diff -uraN gimp-2.2.0/app/actions/documents-commands.c gimp-2.2.1/app/actions/documents-commands.c --- gimp-2.2.0/app/actions/documents-commands.c 2004-10-23 17:30:38.000000000 +0200 +++ gimp-2.2.1/app/actions/documents-commands.c 2004-12-27 20:42:16.000000000 +0100 @@ -248,7 +248,6 @@ gchar *filename; filename = file_utils_uri_to_utf8_filename (uri); - g_message (_("Opening '%s' failed:\n\n%s"), filename, error->message); g_clear_error (&error); diff -uraN gimp-2.2.0/app/actions/gradient-editor-actions.c gimp-2.2.1/app/actions/gradient-editor-actions.c --- gimp-2.2.0/app/actions/gradient-editor-actions.c 2004-11-18 17:04:41.000000000 +0100 +++ gimp-2.2.1/app/actions/gradient-editor-actions.c 2004-12-27 20:42:16.000000000 +0100 @@ -429,6 +429,13 @@ gimp_context_get_background (context, &bg); } + /* pretend the gradient not being editable while the dialog is + * insensitive. prevents the gradient from being modified while a + * dialog is running. bug #161411 --mitch + */ + if (! GTK_WIDGET_SENSITIVE (editor)) + editable = FALSE; + #define SET_ACTIVE(action,condition) \ gimp_action_group_set_action_active (group, action, (condition) != 0) #define SET_COLOR(action,color,set_label) \ diff -uraN gimp-2.2.0/app/actions/gradient-editor-commands.c gimp-2.2.1/app/actions/gradient-editor-commands.c --- gimp-2.2.0/app/actions/gradient-editor-commands.c 2004-10-25 14:42:23.000000000 +0200 +++ gimp-2.2.1/app/actions/gradient-editor-commands.c 2004-12-27 20:42:16.000000000 +0100 @@ -32,6 +32,7 @@ #include "widgets/gimpcolordialog.h" #include "widgets/gimpgradienteditor.h" #include "widgets/gimphelp-ids.h" +#include "widgets/gimpuimanager.h" #include "widgets/gimpviewabledialog.h" #include "dialogs/dialogs.h" @@ -99,6 +100,8 @@ editor); gtk_widget_set_sensitive (GTK_WIDGET (editor), FALSE); + gimp_ui_manager_update (GIMP_EDITOR (editor)->ui_manager, + GIMP_EDITOR (editor)->popup_data); gtk_window_present (GTK_WINDOW (editor->color_dialog)); } @@ -201,6 +204,8 @@ editor); gtk_widget_set_sensitive (GTK_WIDGET (editor), FALSE); + gimp_ui_manager_update (GIMP_EDITOR (editor)->ui_manager, + GIMP_EDITOR (editor)->popup_data); gtk_window_present (GTK_WINDOW (editor->color_dialog)); } @@ -406,8 +411,11 @@ G_CALLBACK (gimp_int_adjustment_update), &editor->replicate_times); - gtk_widget_show (dialog); gtk_widget_set_sensitive (GTK_WIDGET (editor), FALSE); + gimp_ui_manager_update (GIMP_EDITOR (editor)->ui_manager, + GIMP_EDITOR (editor)->popup_data); + + gtk_widget_show (dialog); } void @@ -498,9 +506,11 @@ G_CALLBACK (gimp_int_adjustment_update), &editor->split_parts); - /* Show! */ - gtk_widget_show (dialog); gtk_widget_set_sensitive (GTK_WIDGET (editor), FALSE); + gimp_ui_manager_update (GIMP_EDITOR (editor)->ui_manager, + GIMP_EDITOR (editor)->popup_data); + + gtk_widget_show (dialog); } void @@ -624,6 +634,8 @@ gtk_widget_destroy (editor->color_dialog); editor->color_dialog = NULL; gtk_widget_set_sensitive (GTK_WIDGET (editor), TRUE); + gimp_ui_manager_update (GIMP_EDITOR (editor)->ui_manager, + GIMP_EDITOR (editor)->popup_data); break; case GIMP_COLOR_DIALOG_CANCEL: @@ -633,6 +645,8 @@ gtk_widget_destroy (editor->color_dialog); editor->color_dialog = NULL; gtk_widget_set_sensitive (GTK_WIDGET (editor), TRUE); + gimp_ui_manager_update (GIMP_EDITOR (editor)->ui_manager, + GIMP_EDITOR (editor)->popup_data); break; } } @@ -667,6 +681,8 @@ gtk_widget_destroy (editor->color_dialog); editor->color_dialog = NULL; gtk_widget_set_sensitive (GTK_WIDGET (editor), TRUE); + gimp_ui_manager_update (GIMP_EDITOR (editor)->ui_manager, + GIMP_EDITOR (editor)->popup_data); break; case GIMP_COLOR_DIALOG_CANCEL: @@ -676,6 +692,8 @@ gtk_widget_destroy (editor->color_dialog); editor->color_dialog = NULL; gtk_widget_set_sensitive (GTK_WIDGET (editor), TRUE); + gimp_ui_manager_update (GIMP_EDITOR (editor)->ui_manager, + GIMP_EDITOR (editor)->popup_data); break; } } @@ -763,6 +781,8 @@ { gtk_widget_destroy (widget); gtk_widget_set_sensitive (GTK_WIDGET (editor), TRUE); + gimp_ui_manager_update (GIMP_EDITOR (editor)->ui_manager, + GIMP_EDITOR (editor)->popup_data); if (response_id == GTK_RESPONSE_OK) { @@ -784,6 +804,8 @@ { gtk_widget_destroy (widget); gtk_widget_set_sensitive (GTK_WIDGET (editor), TRUE); + gimp_ui_manager_update (GIMP_EDITOR (editor)->ui_manager, + GIMP_EDITOR (editor)->popup_data); if (response_id == GTK_RESPONSE_OK) { diff -uraN gimp-2.2.0/app/base/brush-scale.c gimp-2.2.1/app/base/brush-scale.c --- gimp-2.2.0/app/base/brush-scale.c 2004-11-11 10:10:48.000000000 +0100 +++ gimp-2.2.1/app/base/brush-scale.c 2004-12-27 20:42:16.000000000 +0100 @@ -28,8 +28,8 @@ MaskBuf * brush_scale_mask (MaskBuf *brush_mask, - gint dest_width, - gint dest_height) + gint dest_width, + gint dest_height) { MaskBuf *scale_brush; gint src_width; @@ -43,7 +43,7 @@ guchar *src, *dest; g_return_val_if_fail (brush_mask != NULL && - dest_width != 0 && dest_height != 0, NULL); + dest_width != 0 && dest_height != 0, NULL); src_width = brush_mask->width; src_height = brush_mask->height; @@ -67,102 +67,102 @@ for (i=0; i> 8; - x++; - fx -= dx; - dx = 0; - } - while (fx >= 256) - { - value += dy * src[x + src_width * y]; - x++; - fx -= 256; - } - if (fx) - { - value += fx * dy * src[x + src_width * y] >> 8; - dx = 256 - fx; - } - y++; - fy -= dy; - dy = 0; - } - - while (fy >= 256) - { - fx = fx0; - x = x0; - dx = dx0; - - if (dx) - { - value += dx * src[x + src_width * y]; - x++; - fx -= dx; - dx = 0; - } - while (fx >= 256) - { - value += 256 * src[x + src_width * y]; - x++; - fx -= 256; - } - if (fx) - { - value += fx * src[x + src_width * y]; - dx = 256 - fx; - } - y++; - fy -= 256; - } - - if (fy) - { - fx = fx0; - x = x0; - dx = dx0; - - if (dx) - { - value += (dx * fy * src[x + src_width * y]) >> 8; - x++; - fx -= dx; - dx = 0; - } - while (fx >= 256) - { - value += fy * src[x + src_width * y]; - x++; - fx -= 256; - } - if (fx) - { - value += (fx * fy * src[x + src_width * y]) >> 8; - dx = 256 - fx; - } - dy = 256 - fy; - } - - *dest++ = MIN ((value / area), 255); - - x0 = x; - dx0 = dx; - } + fy = fy0; + y = y0; + dy = dy0; + + if (dy) + { + fx = fx0; + x = x0; + dx = dx0; + + if (dx) + { + value += (dx * dy * src[x + src_width * y]) >> 8; + x++; + fx -= dx; + dx = 0; + } + while (fx >= 256) + { + value += dy * src[x + src_width * y]; + x++; + fx -= 256; + } + if (fx) + { + value += fx * dy * src[x + src_width * y] >> 8; + dx = 256 - fx; + } + y++; + fy -= dy; + dy = 0; + } + + while (fy >= 256) + { + fx = fx0; + x = x0; + dx = dx0; + + if (dx) + { + value += dx * src[x + src_width * y]; + x++; + fx -= dx; + dx = 0; + } + while (fx >= 256) + { + value += 256 * src[x + src_width * y]; + x++; + fx -= 256; + } + if (fx) + { + value += fx * src[x + src_width * y]; + dx = 256 - fx; + } + y++; + fy -= 256; + } + + if (fy) + { + fx = fx0; + x = x0; + dx = dx0; + + if (dx) + { + value += (dx * fy * src[x + src_width * y]) >> 8; + x++; + fx -= dx; + dx = 0; + } + while (fx >= 256) + { + value += fy * src[x + src_width * y]; + x++; + fx -= 256; + } + if (fx) + { + value += (fx * fy * src[x + src_width * y]) >> 8; + dx = 256 - fx; + } + dy = 256 - fy; + } + + *dest++ = MIN ((value / area), 255); + + x0 = x; + dx0 = dx; + } x0 = 0; dx0 = 0; y0 = y; @@ -180,8 +180,8 @@ MaskBuf * brush_scale_pixmap (MaskBuf *pixmap, - gint dest_width, - gint dest_height) + gint dest_width, + gint dest_height) { MaskBuf *scale_brush; gint src_width; @@ -196,7 +196,7 @@ guchar *src, *src_ptr, *dest; g_return_val_if_fail (pixmap != NULL && pixmap->bytes == 3 && - dest_width != 0 && dest_height != 0, NULL); + dest_width != 0 && dest_height != 0, NULL); src_width = pixmap->width; src_height = pixmap->height; @@ -220,124 +220,124 @@ for (i=0; i> 8; - src_ptr = src + 3 * (x + y * src_width); - ADD_RGB (value, factor, src_ptr); - x++; - fx -= dx; - dx = 0; - } - while (fx >= 256) - { - factor = dy; - src_ptr = src + 3 * (x + y * src_width); - ADD_RGB (value, factor, src_ptr); - x++; - fx -= 256; - } - if (fx) - { - factor = (fx * dy) >> 8; - src_ptr = src + 3 * (x + y * src_width); - ADD_RGB (value, factor, src_ptr); - dx = 256 - fx; - } - y++; - fy -= dy; - dy = 0; - } - - while (fy >= 256) - { - fx = fx0; - x = x0; - dx = dx0; - - if (dx) - { - factor = dx; - src_ptr = src + 3 * (x + y * src_width); - ADD_RGB (value, factor, src_ptr); - x++; - fx -= dx; - dx = 0; - } - while (fx >= 256) - { - factor = 256; - src_ptr = src + 3 * (x + y * src_width); - ADD_RGB (value, factor, src_ptr); - x++; - fx -= 256; - } - if (fx) - { - factor = fx; - src_ptr = src + 3 * (x + y * src_width); - ADD_RGB (value, factor, src_ptr); - dx = 256 - fx; - } - y++; - fy -= 256; - } - - if (fy) - { - fx = fx0; - x = x0; - dx = dx0; - - if (dx) - { - factor = (dx * fy) >> 8; - src_ptr = src + 3 * (x + y * src_width); - ADD_RGB (value, factor, src_ptr); - x++; - fx -= dx; - dx = 0; - } - while (fx >= 256) - { - factor = fy; - src_ptr = src + 3 * (x + y * src_width); - ADD_RGB (value, factor, src_ptr); - x++; - fx -= 256; - } - if (fx) - { - factor = (fx * fy) >> 8; - src_ptr = src + 3 * (x + y * src_width); - ADD_RGB (value, factor, src_ptr); - dx = 256 - fx; - } - dy = 256 - fy; - } - - *dest++ = MIN ((value[0] / area), 255); - *dest++ = MIN ((value[1] / area), 255); - *dest++ = MIN ((value[2] / area), 255); - - x0 = x; - dx0 = dx; - } + { + value[0] = 0; + value[1] = 0; + value[2] = 0; + + fy = fy0; + y = y0; + dy = dy0; + + if (dy) + { + fx = fx0; + x = x0; + dx = dx0; + + if (dx) + { + factor = (dx * dy) >> 8; + src_ptr = src + 3 * (x + y * src_width); + ADD_RGB (value, factor, src_ptr); + x++; + fx -= dx; + dx = 0; + } + while (fx >= 256) + { + factor = dy; + src_ptr = src + 3 * (x + y * src_width); + ADD_RGB (value, factor, src_ptr); + x++; + fx -= 256; + } + if (fx) + { + factor = (fx * dy) >> 8; + src_ptr = src + 3 * (x + y * src_width); + ADD_RGB (value, factor, src_ptr); + dx = 256 - fx; + } + y++; + fy -= dy; + dy = 0; + } + + while (fy >= 256) + { + fx = fx0; + x = x0; + dx = dx0; + + if (dx) + { + factor = dx; + src_ptr = src + 3 * (x + y * src_width); + ADD_RGB (value, factor, src_ptr); + x++; + fx -= dx; + dx = 0; + } + while (fx >= 256) + { + factor = 256; + src_ptr = src + 3 * (x + y * src_width); + ADD_RGB (value, factor, src_ptr); + x++; + fx -= 256; + } + if (fx) + { + factor = fx; + src_ptr = src + 3 * (x + y * src_width); + ADD_RGB (value, factor, src_ptr); + dx = 256 - fx; + } + y++; + fy -= 256; + } + + if (fy) + { + fx = fx0; + x = x0; + dx = dx0; + + if (dx) + { + factor = (dx * fy) >> 8; + src_ptr = src + 3 * (x + y * src_width); + ADD_RGB (value, factor, src_ptr); + x++; + fx -= dx; + dx = 0; + } + while (fx >= 256) + { + factor = fy; + src_ptr = src + 3 * (x + y * src_width); + ADD_RGB (value, factor, src_ptr); + x++; + fx -= 256; + } + if (fx) + { + factor = (fx * fy) >> 8; + src_ptr = src + 3 * (x + y * src_width); + ADD_RGB (value, factor, src_ptr); + dx = 256 - fx; + } + dy = 256 - fy; + } + + *dest++ = MIN ((value[0] / area), 255); + *dest++ = MIN ((value[1] / area), 255); + *dest++ = MIN ((value[2] / area), 255); + + x0 = x; + dx0 = dx; + } x0 = 0; dx0 = 0; y0 = y; diff -uraN gimp-2.2.0/app/core/gimpbrush.c gimp-2.2.1/app/core/gimpbrush.c --- gimp-2.2.0/app/core/gimpbrush.c 2004-08-01 19:20:00.000000000 +0200 +++ gimp-2.2.1/app/core/gimpbrush.c 2004-12-27 20:42:16.000000000 +0100 @@ -263,6 +263,9 @@ brush_width = (gdouble) brush_width / MAX (ratio_x, ratio_y) + 0.5; brush_height = (gdouble) brush_height / MAX (ratio_x, ratio_y) + 0.5; + if (brush_width <= 0) brush_width = 1; + if (brush_height <= 0) brush_height = 1; + mask_buf = brush_scale_mask (mask_buf, brush_width, brush_height); if (pixmap_buf) @@ -545,6 +548,33 @@ /* Check for correct file format */ + if (header.width == 0) + { + g_set_error (error, GIMP_DATA_ERROR, GIMP_DATA_ERROR_READ, + _("Fatal parse error in brush file '%s': " + "Width = 0."), + gimp_filename_to_utf8 (filename)); + return NULL; + } + + if (header.height == 0) + { + g_set_error (error, GIMP_DATA_ERROR, GIMP_DATA_ERROR_READ, + _("Fatal parse error in brush file '%s': " + "Height = 0."), + gimp_filename_to_utf8 (filename)); + return NULL; + } + + if (header.bytes == 0) + { + g_set_error (error, GIMP_DATA_ERROR, GIMP_DATA_ERROR_READ, + _("Fatal parse error in brush file '%s': " + "Bytes = 0."), + gimp_filename_to_utf8 (filename)); + return NULL; + } + switch (header.version) { case 1: diff -uraN gimp-2.2.0/app/core/gimp-gui.c gimp-2.2.1/app/core/gimp-gui.c --- gimp-2.2.0/app/core/gimp-gui.c 2004-11-17 15:51:49.000000000 +0100 +++ gimp-2.2.1/app/core/gimp-gui.c 2004-12-27 20:42:16.000000000 +0100 @@ -29,6 +29,8 @@ #include "gimpimage.h" #include "gimpprogress.h" +#include "libgimpbase/gimputils.h" + #include "gimp-intl.h" @@ -142,15 +144,20 @@ const gchar *domain, const gchar *message) { + gchar *message2 = gimp_any_to_utf8 (message, -1, + "Cannot convert message to utf8."); + g_return_if_fail (GIMP_IS_GIMP (gimp)); if (! domain) domain = _("GIMP"); if (! gimp->console_messages && gimp->gui.message) - gimp->gui.message (gimp, domain, message); + gimp->gui.message (gimp, domain, message2); else - g_printerr ("%s: %s\n\n", domain, message); + g_printerr ("%s: %s\n\n", domain, message2); + + g_free (message2); } void diff -uraN gimp-2.2.0/app/core/gimpitem.c gimp-2.2.1/app/core/gimpitem.c --- gimp-2.2.0/app/core/gimpitem.c 2004-11-19 13:38:33.000000000 +0100 +++ gimp-2.2.1/app/core/gimpitem.c 2004-12-27 20:42:16.000000000 +0100 @@ -55,41 +55,41 @@ /* local function prototypes */ -static void gimp_item_class_init (GimpItemClass *klass); -static void gimp_item_init (GimpItem *item); +static void gimp_item_class_init (GimpItemClass *klass); +static void gimp_item_init (GimpItem *item); -static void gimp_item_finalize (GObject *object); +static void gimp_item_finalize (GObject *object); -static gint64 gimp_item_get_memsize (GimpObject *object, - gint64 *gui_size); +static gint64 gimp_item_get_memsize (GimpObject *object, + gint64 *gui_size); -static GimpItem * gimp_item_real_duplicate (GimpItem *item, - GType new_type, - gboolean add_alpha); -static GimpItem * gimp_item_real_convert (GimpItem *item, - GimpImage *dest_image, - GType new_type, - gboolean add_alpha); -static gboolean gimp_item_real_rename (GimpItem *item, - const gchar *new_name, - const gchar *undo_desc); -static void gimp_item_real_translate (GimpItem *item, - gint offset_x, - gint offset_y, - gboolean push_undo); -static void gimp_item_real_scale (GimpItem *item, - gint new_width, - gint new_height, - gint new_offset_x, - gint new_offset_y, - GimpInterpolationType interpolation, - GimpProgress *progress); -static void gimp_item_real_resize (GimpItem *item, - GimpContext *context, - gint new_width, - gint new_height, - gint offset_x, - gint offset_y); +static GimpItem * gimp_item_real_duplicate (GimpItem *item, + GType new_type, + gboolean add_alpha); +static GimpItem * gimp_item_real_convert_from (GimpItem *item, + GimpImage *dest_image, + GType new_type, + gboolean add_alpha); +static gboolean gimp_item_real_rename (GimpItem *item, + const gchar *new_name, + const gchar *undo_desc); +static void gimp_item_real_translate (GimpItem *item, + gint offset_x, + gint offset_y, + gboolean push_undo); +static void gimp_item_real_scale (GimpItem *item, + gint new_width, + gint new_height, + gint new_offset_x, + gint new_offset_y, + GimpInterpolationType interpolation, + GimpProgress *progress); +static void gimp_item_real_resize (GimpItem *item, + GimpContext *context, + gint new_width, + gint new_height, + gint offset_x, + gint offset_y); /* private variables */ @@ -176,7 +176,8 @@ klass->is_attached = NULL; klass->duplicate = gimp_item_real_duplicate; - klass->convert = gimp_item_real_convert; + klass->convert_from = gimp_item_real_convert_from; + klass->convert_to = NULL; klass->rename = gimp_item_real_rename; klass->translate = gimp_item_real_translate; klass->scale = gimp_item_real_scale; @@ -306,10 +307,10 @@ } static GimpItem * -gimp_item_real_convert (GimpItem *item, - GimpImage *dest_image, - GType new_type, - gboolean add_alpha) +gimp_item_real_convert_from (GimpItem *item, + GimpImage *dest_image, + GType new_type, + gboolean add_alpha) { return gimp_item_duplicate (item, new_type, add_alpha); } @@ -535,11 +536,17 @@ g_return_val_if_fail (GIMP_IS_IMAGE (dest_image), NULL); g_return_val_if_fail (g_type_is_a (new_type, GIMP_TYPE_ITEM), NULL); - new_item = GIMP_ITEM_GET_CLASS (item)->convert (item, dest_image, - new_type, add_alpha); + new_item = GIMP_ITEM_GET_CLASS (item)->convert_from (item, dest_image, + new_type, add_alpha); - if (dest_image != item->gimage) - gimp_item_set_image (new_item, dest_image); + if (new_item) + { + if (dest_image != item->gimage) + gimp_item_set_image (new_item, dest_image); + + if (GIMP_ITEM_GET_CLASS (new_item)->convert_to) + GIMP_ITEM_GET_CLASS (new_item)->convert_to (new_item, item); + } return new_item; } diff -uraN gimp-2.2.0/app/core/gimpitem.h gimp-2.2.1/app/core/gimpitem.h --- gimp-2.2.0/app/core/gimpitem.h 2004-10-22 14:32:30.000000000 +0200 +++ gimp-2.2.1/app/core/gimpitem.h 2004-12-27 20:42:16.000000000 +0100 @@ -64,58 +64,60 @@ void (* linked_changed) (GimpItem *item); /* virtual functions */ - gboolean (* is_attached) (GimpItem *item); - GimpItem * (* duplicate) (GimpItem *item, - GType new_type, - gboolean add_alpha); - GimpItem * (* convert) (GimpItem *item, - GimpImage *dest_image, - GType new_type, - gboolean add_alpha); - gboolean (* rename) (GimpItem *item, - const gchar *new_name, - const gchar *undo_desc); - void (* translate) (GimpItem *item, - gint offset_x, - gint offset_y, - gboolean push_undo); - void (* scale) (GimpItem *item, - gint new_width, - gint new_height, - gint new_offset_x, - gint new_offset_y, - GimpInterpolationType interpolation_type, - GimpProgress *progress); - void (* resize) (GimpItem *item, - GimpContext *context, - gint new_width, - gint new_height, - gint offset_x, - gint offset_y); - void (* flip) (GimpItem *item, - GimpContext *context, - GimpOrientationType flip_type, - gdouble axis, - gboolean clip_result); - void (* rotate) (GimpItem *item, - GimpContext *context, - GimpRotationType rotate_type, - gdouble center_x, - gdouble center_y, - gboolean clip_result); - void (* transform) (GimpItem *item, - GimpContext *context, - const GimpMatrix3 *matrix, - GimpTransformDirection direction, - GimpInterpolationType interpolation_type, - gboolean supersample, - gint recursion_level, - gboolean clip_result, - GimpProgress *progress); - gboolean (* stroke) (GimpItem *item, - GimpDrawable *drawable, - GimpContext *context, - GimpStrokeDesc *stroke_desc); + gboolean (* is_attached) (GimpItem *item); + GimpItem * (* duplicate) (GimpItem *item, + GType new_type, + gboolean add_alpha); + GimpItem * (* convert_from) (GimpItem *item, + GimpImage *dest_image, + GType new_type, + gboolean add_alpha); + void (* convert_to) (GimpItem *item, + GimpItem *src_item); + gboolean (* rename) (GimpItem *item, + const gchar *new_name, + const gchar *undo_desc); + void (* translate) (GimpItem *item, + gint offset_x, + gint offset_y, + gboolean push_undo); + void (* scale) (GimpItem *item, + gint new_width, + gint new_height, + gint new_offset_x, + gint new_offset_y, + GimpInterpolationType interpolation_type, + GimpProgress *progress); + void (* resize) (GimpItem *item, + GimpContext *context, + gint new_width, + gint new_height, + gint offset_x, + gint offset_y); + void (* flip) (GimpItem *item, + GimpContext *context, + GimpOrientationType flip_type, + gdouble axis, + gboolean clip_result); + void (* rotate) (GimpItem *item, + GimpContext *context, + GimpRotationType rotate_type, + gdouble center_x, + gdouble center_y, + gboolean clip_result); + void (* transform) (GimpItem *item, + GimpContext *context, + const GimpMatrix3 *matrix, + GimpTransformDirection direction, + GimpInterpolationType interpolation_type, + gboolean supersample, + gint recursion_level, + gboolean clip_result, + GimpProgress *progress); + gboolean (* stroke) (GimpItem *item, + GimpDrawable *drawable, + GimpContext *context, + GimpStrokeDesc *stroke_desc); const gchar *default_name; const gchar *rename_desc; diff -uraN gimp-2.2.0/app/core/gimplayer.c gimp-2.2.1/app/core/gimplayer.c --- gimp-2.2.0/app/core/gimplayer.c 2004-11-16 14:41:55.000000000 +0100 +++ gimp-2.2.1/app/core/gimplayer.c 2004-12-27 20:42:16.000000000 +0100 @@ -79,10 +79,8 @@ static GimpItem * gimp_layer_duplicate (GimpItem *item, GType new_type, gboolean add_alpha); -static GimpItem * gimp_layer_convert (GimpItem *item, - GimpImage *dest_image, - GType new_type, - gboolean add_alpha); +static void gimp_layer_convert_to (GimpItem *item, + GimpItem *src_item); static gboolean gimp_layer_rename (GimpItem *item, const gchar *new_name, const gchar *undo_desc); @@ -241,7 +239,7 @@ item_class->removed = gimp_layer_removed; item_class->is_attached = gimp_layer_is_attached; item_class->duplicate = gimp_layer_duplicate; - item_class->convert = gimp_layer_convert; + item_class->convert_to = gimp_layer_convert_to; item_class->rename = gimp_layer_rename; item_class->translate = gimp_layer_translate; item_class->scale = gimp_layer_scale; @@ -488,62 +486,47 @@ return new_item; } -static GimpItem * -gimp_layer_convert (GimpItem *item, - GimpImage *dest_image, - GType new_type, - gboolean add_alpha) -{ - GimpLayer *layer; - GimpDrawable *drawable; - GimpItem *new_item; - GimpLayer *new_layer; - GimpDrawable *new_drawable; - GimpImageBaseType src_base_type; +static void +gimp_layer_convert_to (GimpItem *item, + GimpItem *src_item) +{ + GimpLayer *layer = GIMP_LAYER (item); + GimpDrawable *drawable = GIMP_DRAWABLE (item); + GimpImageBaseType old_base_type; GimpImageBaseType new_base_type; - g_return_val_if_fail (g_type_is_a (new_type, GIMP_TYPE_DRAWABLE), NULL); - - new_item = GIMP_ITEM_CLASS (parent_class)->convert (item, dest_image, - new_type, add_alpha); + if (GIMP_ITEM_CLASS (parent_class)->convert_to) + GIMP_ITEM_CLASS (parent_class)->convert_to (item, src_item); - if (! GIMP_IS_LAYER (new_item)) - return new_item; - - layer = GIMP_LAYER (item); - drawable = GIMP_DRAWABLE (item); - new_layer = GIMP_LAYER (new_item); - new_drawable = GIMP_DRAWABLE (new_item); - - src_base_type = GIMP_IMAGE_TYPE_BASE_TYPE (gimp_drawable_type (drawable)); - new_base_type = gimp_image_base_type (dest_image); + old_base_type = GIMP_IMAGE_TYPE_BASE_TYPE (gimp_drawable_type (drawable)); + new_base_type = gimp_image_base_type (gimp_item_get_image (item)); - if (src_base_type != new_base_type) + if (old_base_type != new_base_type) { TileManager *new_tiles; GimpImageType new_type; new_type = GIMP_IMAGE_TYPE_FROM_BASE_TYPE (new_base_type); - if (gimp_drawable_has_alpha (new_drawable)) + if (gimp_drawable_has_alpha (drawable)) new_type = GIMP_IMAGE_TYPE_WITH_ALPHA (new_type); - new_tiles = tile_manager_new (gimp_item_width (new_item), - gimp_item_height (new_item), + new_tiles = tile_manager_new (gimp_item_width (item), + gimp_item_height (item), GIMP_IMAGE_TYPE_BYTES (new_type)); switch (new_base_type) { case GIMP_RGB: - gimp_drawable_convert_rgb (new_drawable, + gimp_drawable_convert_rgb (drawable, new_tiles, - src_base_type); + old_base_type); break; case GIMP_GRAY: - gimp_drawable_convert_grayscale (new_drawable, + gimp_drawable_convert_grayscale (drawable, new_tiles, - src_base_type); + old_base_type); break; case GIMP_INDEXED: @@ -551,36 +534,34 @@ PixelRegion layerPR; PixelRegion newPR; - pixel_region_init (&layerPR, new_drawable->tiles, + pixel_region_init (&layerPR, drawable->tiles, 0, 0, - gimp_item_width (new_item), - gimp_item_height (new_item), + gimp_item_width (item), + gimp_item_height (item), FALSE); pixel_region_init (&newPR, new_tiles, 0, 0, - gimp_item_width (new_item), - gimp_item_height (new_item), + gimp_item_width (item), + gimp_item_height (item), TRUE); - gimp_layer_transform_color (dest_image, + gimp_layer_transform_color (gimp_item_get_image (item), &newPR, &layerPR, NULL, - src_base_type); + old_base_type); } break; } - gimp_drawable_set_tiles_full (new_drawable, FALSE, NULL, + gimp_drawable_set_tiles_full (drawable, FALSE, NULL, new_tiles, new_type, GIMP_ITEM (layer)->offset_x, GIMP_ITEM (layer)->offset_y); tile_manager_unref (new_tiles); } - if (new_layer->mask && dest_image != item->gimage) - gimp_item_set_image (GIMP_ITEM (new_layer->mask), dest_image); - - return new_item; + if (layer->mask && item->gimage != src_item->gimage) + gimp_item_set_image (GIMP_ITEM (layer->mask), item->gimage); } static gboolean diff -uraN gimp-2.2.0/app/display/gimpdisplayshell-dnd.c gimp-2.2.1/app/display/gimpdisplayshell-dnd.c --- gimp-2.2.0/app/display/gimpdisplayshell-dnd.c 2004-08-10 20:46:37.000000000 +0200 +++ gimp-2.2.1/app/display/gimpdisplayshell-dnd.c 2004-12-27 20:42:16.000000000 +0100 @@ -18,6 +18,8 @@ #include "config.h" +#include + #include #include "display-types.h" diff -uraN gimp-2.2.0/app/paint/gimpbrushcore.c gimp-2.2.1/app/paint/gimpbrushcore.c --- gimp-2.2.0/app/paint/gimpbrushcore.c 2004-07-19 16:37:40.000000000 +0200 +++ gimp-2.2.1/app/paint/gimpbrushcore.c 2004-12-28 15:38:12.000000000 +0100 @@ -969,7 +969,7 @@ /* Allocate and initialize the accum buffer */ for (i = 0; i < KERNEL_HEIGHT ; i++) - accum[i] = g_new0 (gulong, dest->width); + accum[i] = g_new0 (gulong, dest->width + 1); /* Investigate modifiying kernelgen to make the sum the same * for all kernels. That way kernal_sum becomes a constant diff -uraN gimp-2.2.0/app/plug-in/plug-in-proc-frame.c gimp-2.2.1/app/plug-in/plug-in-proc-frame.c --- gimp-2.2.0/app/plug-in/plug-in-proc-frame.c 2004-12-14 23:42:00.000000000 +0100 +++ gimp-2.2.1/app/plug-in/plug-in-proc-frame.c 2004-12-27 20:42:16.000000000 +0100 @@ -31,6 +31,10 @@ #include "plug-in-progress.h" +static void plug_in_proc_frame_free (PlugInProcFrame *proc_frame, + PlugIn *plug_in); + + /* publuc functions */ PlugInProcFrame * @@ -106,7 +110,7 @@ } } -void +static void plug_in_proc_frame_free (PlugInProcFrame *proc_frame, PlugIn *plug_in) { diff -uraN gimp-2.2.0/app/plug-in/plug-in-proc-frame.h gimp-2.2.1/app/plug-in/plug-in-proc-frame.h --- gimp-2.2.0/app/plug-in/plug-in-proc-frame.h 2004-12-14 23:42:00.000000000 +0100 +++ gimp-2.2.1/app/plug-in/plug-in-proc-frame.h 2004-12-27 20:42:16.000000000 +0100 @@ -51,8 +51,6 @@ void plug_in_proc_frame_dispose (PlugInProcFrame *proc_frame, PlugIn *plug_in); -void plug_in_proc_frame_free (PlugInProcFrame *proc_frame, - PlugIn *plug_in); PlugInProcFrame * plug_in_proc_frame_ref (PlugInProcFrame *proc_frame); void plug_in_proc_frame_unref (PlugInProcFrame *proc_frame, diff -uraN gimp-2.2.0/app/vectors/gimpvectors.c gimp-2.2.1/app/vectors/gimpvectors.c --- gimp-2.2.0/app/vectors/gimpvectors.c 2004-12-02 10:22:12.000000000 +0100 +++ gimp-2.2.1/app/vectors/gimpvectors.c 2004-12-27 20:42:16.000000000 +0100 @@ -69,7 +69,7 @@ static GimpItem * gimp_vectors_duplicate (GimpItem *item, GType new_type, gboolean add_alpha); -static GimpItem * gimp_vectors_convert (GimpItem *item, +static GimpItem * gimp_vectors_convert_from (GimpItem *item, GimpImage *dest_image, GType new_type, gboolean add_alpha); @@ -220,7 +220,7 @@ item_class->is_attached = gimp_vectors_is_attached; item_class->duplicate = gimp_vectors_duplicate; - item_class->convert = gimp_vectors_convert; + item_class->convert_from = gimp_vectors_convert_from; item_class->translate = gimp_vectors_translate; item_class->scale = gimp_vectors_scale; item_class->resize = gimp_vectors_resize; @@ -333,17 +333,17 @@ } static GimpItem * -gimp_vectors_convert (GimpItem *item, - GimpImage *dest_image, - GType new_type, - gboolean add_alpha) +gimp_vectors_convert_from (GimpItem *item, + GimpImage *dest_image, + GType new_type, + gboolean add_alpha) { GimpItem *new_item; g_return_val_if_fail (g_type_is_a (new_type, GIMP_TYPE_VECTORS), NULL); - new_item = GIMP_ITEM_CLASS (parent_class)->convert (item, dest_image, - new_type, add_alpha); + new_item = GIMP_ITEM_CLASS (parent_class)->convert_from (item, dest_image, + new_type, add_alpha); if (! GIMP_IS_VECTORS (new_item)) return new_item; diff -uraN gimp-2.2.0/app/widgets/gimperrordialog.c gimp-2.2.1/app/widgets/gimperrordialog.c --- gimp-2.2.0/app/widgets/gimperrordialog.c 2004-10-13 16:35:28.000000000 +0200 +++ gimp-2.2.1/app/widgets/gimperrordialog.c 2004-12-27 20:42:16.000000000 +0100 @@ -251,7 +251,7 @@ gimp_message_box_set_primary_text (GIMP_MESSAGE_BOX (box), _("%s Message"), domain); - gimp_message_box_set_text (GIMP_MESSAGE_BOX (box), message); + gimp_message_box_set_text (GIMP_MESSAGE_BOX (box), "%s", message); gtk_container_add (GTK_CONTAINER (dialog->vbox), box); gtk_widget_show (box); diff -uraN gimp-2.2.0/app/widgets/gimplayertreeview.c gimp-2.2.1/app/widgets/gimplayertreeview.c --- gimp-2.2.0/app/widgets/gimplayertreeview.c 2004-10-23 02:53:48.000000000 +0200 +++ gimp-2.2.1/app/widgets/gimplayertreeview.c 2004-12-27 20:42:16.000000000 +0100 @@ -21,6 +21,8 @@ #include "config.h" +#include + #include #include "libgimpcolor/gimpcolor.h" diff -uraN gimp-2.2.0/app/widgets/gimpmessagebox.c gimp-2.2.1/app/widgets/gimpmessagebox.c --- gimp-2.2.0/app/widgets/gimpmessagebox.c 2004-10-13 16:35:28.000000000 +0200 +++ gimp-2.2.1/app/widgets/gimpmessagebox.c 2004-12-27 20:42:16.000000000 +0100 @@ -24,6 +24,7 @@ #include #include "libgimpwidgets/gimpwidgets.h" +#include "libgimpbase/gimputils.h" #include "widgets-types.h" @@ -355,7 +356,8 @@ if (format) { - gchar *text = g_strdup_vprintf (format, args); + gchar *text = gimp_any_to_utf8 (g_strdup_vprintf (format, args), -1, + "Cannot convert text to utf8."); gtk_label_set_text (GTK_LABEL (label), text); gtk_widget_show (label); diff -uraN gimp-2.2.0/app/widgets/gimppropwidgets.c gimp-2.2.1/app/widgets/gimppropwidgets.c --- gimp-2.2.0/app/widgets/gimppropwidgets.c 2004-12-08 13:46:21.000000000 +0100 +++ gimp-2.2.1/app/widgets/gimppropwidgets.c 2004-12-27 20:42:16.000000000 +0100 @@ -2431,6 +2431,11 @@ if (! old_x_value || ! old_y_value || (unit_param_spec && ! old_unit_value)) return; + /* + * FIXME: if the entry was created using gimp_coordinates_new, then + * the chain button is handled automatically and the following block + * of code is unnecessary (and, in fact, redundant). + */ if (x_value != y_value) { GtkWidget *chainbutton; @@ -2438,7 +2443,8 @@ chainbutton = g_object_get_data (G_OBJECT (sizeentry), "chainbutton"); if (chainbutton && - gimp_chain_button_get_active (GIMP_CHAIN_BUTTON (chainbutton))) + gimp_chain_button_get_active (GIMP_CHAIN_BUTTON (chainbutton)) && + ! g_object_get_data (G_OBJECT (chainbutton), "constrains-ratio")) { if (x_value != *old_x_value) y_value = x_value; diff -uraN gimp-2.2.0/app/widgets/gimpsizebox.c gimp-2.2.1/app/widgets/gimpsizebox.c --- gimp-2.2.0/app/widgets/gimpsizebox.c 2004-12-09 17:22:25.000000000 +0100 +++ gimp-2.2.1/app/widgets/gimpsizebox.c 2004-12-28 16:22:32.000000000 +0100 @@ -20,7 +20,7 @@ */ #include "config.h" - +#include #include #include "libgimpbase/gimpbase.h" @@ -202,198 +202,89 @@ GObject *object; GimpSizeBox *box; GtkWidget *entry; - GtkWidget *table; GtkWidget *hbox; - GtkWidget *width; - GtkWidget *height; - GtkWidget *chain; - GtkWidget *vbox; GtkWidget *label; - GtkObject *adjustment; - GList *focus_chain = NULL; GimpSizeBoxPrivate *priv; object = G_OBJECT_CLASS (parent_class)->constructor (type, n_params, params); box = GIMP_SIZE_BOX (object); - - table = gtk_table_new (3, 3, FALSE); - gtk_table_set_col_spacing (GTK_TABLE (table), 0, 6); - gtk_table_set_row_spacings (GTK_TABLE (table), 6); - gtk_table_set_row_spacing (GTK_TABLE (table), 0, 2); - gtk_box_pack_start (GTK_BOX (box), table, FALSE, FALSE, 0); - gtk_widget_show (table); - - width = gimp_spin_button_new (&adjustment, - 1, 1, 1, 1, 10, 0, - 1, 2); - gtk_entry_set_width_chars (GTK_ENTRY (width), SB_WIDTH); - - height = gimp_spin_button_new (&adjustment, - 1, 1, 1, 1, 10, 0, - 1, 2); - gtk_entry_set_width_chars (GTK_ENTRY (height), SB_WIDTH); - - entry = gimp_size_entry_new (0, box->unit, "%p", - TRUE, TRUE, FALSE, SB_WIDTH, - GIMP_SIZE_ENTRY_UPDATE_SIZE); - - label = gtk_label_new_with_mnemonic (_("_Width:")); - gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); - gtk_label_set_mnemonic_widget (GTK_LABEL (label), width); - gtk_table_attach (GTK_TABLE (table), label, 0, 1, 0, 1, - GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0); - gtk_widget_show (label); - - label = gtk_label_new_with_mnemonic (_("H_eight:")); - gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); - gtk_label_set_mnemonic_widget (GTK_LABEL (label), height); - gtk_table_attach (GTK_TABLE (table), label, 0, 1, 1, 2, - GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0); - gtk_widget_show (label); + priv = GIMP_SIZE_BOX_GET_PRIVATE (box); hbox = gtk_hbox_new (FALSE, 0); - gtk_table_attach_defaults (GTK_TABLE (table), hbox, 1, 2, 0, 2); + gtk_box_pack_start (GTK_BOX (box), hbox, FALSE, FALSE, 0); gtk_widget_show (hbox); - gtk_table_set_row_spacing (GTK_TABLE (entry), 0, 2); - gtk_table_set_col_spacing (GTK_TABLE (entry), 1, 2); - gtk_table_set_col_spacing (GTK_TABLE (entry), 2, 2); + entry = gimp_coordinates_new (box->unit, "%p", + TRUE, TRUE, SB_WIDTH, + GIMP_SIZE_ENTRY_UPDATE_SIZE, + TRUE, TRUE, + _("_Width:"), + box->width, box->xresolution, + 1, 1, 1, 10, + _("H_eight:"), + box->height, box->yresolution, + 1, 1, 1, 10); - gtk_box_pack_start (GTK_BOX (hbox), entry, FALSE, FALSE, 0); - gtk_widget_show (entry); - - gimp_size_entry_add_field (GIMP_SIZE_ENTRY (entry), - GTK_SPIN_BUTTON (height), NULL); - gtk_table_attach_defaults (GTK_TABLE (entry), height, 0, 1, 1, 2); - gtk_widget_show (height); - - gimp_size_entry_add_field (GIMP_SIZE_ENTRY (entry), - GTK_SPIN_BUTTON (width), NULL); - gtk_table_attach_defaults (GTK_TABLE (entry), width, 0, 1, 0, 1); - gtk_widget_show (width); + priv->size_entry = GIMP_SIZE_ENTRY (entry); + priv->size_chain = GIMP_COORDINATES_CHAINBUTTON (GIMP_SIZE_ENTRY (entry)); + priv->aspect = (gdouble) box->width / (gdouble) box->height; - gimp_size_entry_set_size (GIMP_SIZE_ENTRY (entry), 0, 0, box->width); - gimp_size_entry_set_size (GIMP_SIZE_ENTRY (entry), 1, 0, box->height); + /* + * let gimp_prop_coordinates_callback know how to + * interpret the chainbutton. This should be removed + * eventually. + */ + g_object_set_data (G_OBJECT (priv->size_chain), + "constrains-ratio", + GINT_TO_POINTER (TRUE)); gimp_prop_coordinates_connect (G_OBJECT (box), - "width", "height", "unit", + "width", "height", + "unit", entry, NULL, - box->xresolution, box->yresolution); + box->xresolution, + box->yresolution); - chain = gimp_chain_button_new (GIMP_CHAIN_RIGHT); - gimp_chain_button_set_active (GIMP_CHAIN_BUTTON (chain), TRUE); - gtk_table_attach_defaults (GTK_TABLE (entry), chain, 1, 2, 0, 2); - gtk_widget_show (chain); - - gimp_help_set_help_data (GIMP_CHAIN_BUTTON (chain)->button, - _("Keep aspect ratio"), NULL); - - vbox = gtk_vbox_new (2, FALSE); - gtk_table_attach_defaults (GTK_TABLE (table), vbox, 1, 3, 2, 3); - gtk_widget_show (vbox); + gtk_box_pack_start (GTK_BOX (hbox), entry, FALSE, FALSE, 0); + gtk_widget_show (entry); label = gtk_label_new (NULL); gimp_label_set_attributes (GTK_LABEL (label), PANGO_ATTR_SCALE, PANGO_SCALE_SMALL, -1); gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.0); - gtk_box_pack_start (GTK_BOX (vbox), label, FALSE, FALSE, 0); + gtk_box_pack_start (GTK_BOX (box), label, FALSE, FALSE, 0); gtk_widget_show (label); - focus_chain = g_list_prepend (focus_chain, GIMP_SIZE_ENTRY (entry)->unitmenu); - focus_chain = g_list_prepend (focus_chain, chain); - focus_chain = g_list_prepend (focus_chain, height); - focus_chain = g_list_prepend (focus_chain, width); - - gtk_container_set_focus_chain (GTK_CONTAINER (entry), focus_chain); - g_list_free (focus_chain); - - priv = GIMP_SIZE_BOX_GET_PRIVATE (box); - - priv->size_entry = GIMP_SIZE_ENTRY (entry); - priv->size_chain = GIMP_CHAIN_BUTTON (chain); priv->pixel_label = label; - priv->aspect = (gdouble) box->width / (gdouble) box->height; + if (box->edit_resolution) { - GtkWidget *xres; - GtkWidget *yres; - - gtk_table_resize (GTK_TABLE (table), 5, 3); - gtk_table_set_row_spacing (GTK_TABLE (table), 3, 2); - - xres = gimp_spin_button_new (&adjustment, - 1, 1, 1, 1, 10, 0, - 1, 2); - gtk_entry_set_width_chars (GTK_ENTRY (xres), SB_WIDTH); - - yres = gimp_spin_button_new (&adjustment, - 1, 1, 1, 1, 10, 0, - 1, 2); - gtk_entry_set_width_chars (GTK_ENTRY (yres), SB_WIDTH); - - /* the resolution labels */ - label = gtk_label_new_with_mnemonic (_("_X resolution:")); - gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); - gtk_label_set_mnemonic_widget (GTK_LABEL (label), xres); - gtk_table_attach (GTK_TABLE (table), label, 0, 1, 3, 4, - GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0); - gtk_widget_show (label); - - label = gtk_label_new_with_mnemonic (_("_Y resolution:")); - gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); - gtk_label_set_mnemonic_widget (GTK_LABEL (label), yres); - gtk_table_attach (GTK_TABLE (table), label, 0, 1, 4, 5, - GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0); - gtk_widget_show (label); - - /* the resolution sizeentry */ hbox = gtk_hbox_new (FALSE, 0); - gtk_table_attach_defaults (GTK_TABLE (table), hbox, 1, 2, 3, 5); + gtk_box_pack_start (GTK_BOX (box), hbox, FALSE, FALSE, 0); gtk_widget_show (hbox); - entry = gimp_size_entry_new (0, box->resolution_unit, _("pixels/%a"), - FALSE, FALSE, FALSE, SB_WIDTH, - GIMP_SIZE_ENTRY_UPDATE_RESOLUTION); - - gtk_table_set_row_spacing (GTK_TABLE (entry), 0, 2); - gtk_table_set_col_spacing (GTK_TABLE (entry), 1, 2); - gtk_table_set_col_spacing (GTK_TABLE (entry), 2, 2); + entry = gimp_coordinates_new (box->resolution_unit, _("pixels/%a"), + FALSE, FALSE, SB_WIDTH, + GIMP_SIZE_ENTRY_UPDATE_RESOLUTION, + TRUE, FALSE, + _("_X resolution:"), + box->xresolution, 1.0, + 1, 1, 1, 10, + _("_Y resolution:"), + box->yresolution, 1.0, + 1, 1, 1, 10); + gtk_box_pack_start (GTK_BOX (hbox), entry, FALSE, FALSE, 0); gtk_widget_show (entry); - gimp_size_entry_add_field (GIMP_SIZE_ENTRY (entry), - GTK_SPIN_BUTTON (yres), NULL); - gtk_table_attach_defaults (GTK_TABLE (entry), yres, 0, 1, 1, 2); - gtk_widget_show (yres); - - gimp_size_entry_add_field (GIMP_SIZE_ENTRY (entry), - GTK_SPIN_BUTTON (xres), NULL); - gtk_table_attach_defaults (GTK_TABLE (entry), xres, 0, 1, 0, 1); - gtk_widget_show (xres); - - /* the resolution chainbutton */ - chain = gimp_chain_button_new (GIMP_CHAIN_RIGHT); - gtk_table_attach_defaults (GTK_TABLE (entry), chain, 1, 2, 0, 2); - gtk_widget_show (chain); - - focus_chain = NULL; - focus_chain = g_list_prepend (focus_chain, - GIMP_SIZE_ENTRY (entry)->unitmenu); - focus_chain = g_list_prepend (focus_chain, chain); - focus_chain = g_list_prepend (focus_chain, yres); - focus_chain = g_list_prepend (focus_chain, xres); - - gtk_container_set_focus_chain (GTK_CONTAINER (entry), focus_chain); - g_list_free (focus_chain); - gimp_prop_coordinates_connect (G_OBJECT (box), "xresolution", "yresolution", "resolution-unit", - entry, chain, + entry, NULL, 1.0, 1.0); } else @@ -403,7 +294,7 @@ PANGO_ATTR_SCALE, PANGO_SCALE_SMALL, -1); gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.0); - gtk_box_pack_start (GTK_BOX (vbox), label, FALSE, FALSE, 0); + gtk_box_pack_start (GTK_BOX (box), label, FALSE, FALSE, 0); gtk_widget_show (label); priv->res_label = label; @@ -428,25 +319,11 @@ { case PROP_WIDTH: box->width = g_value_get_int (value); - if (priv->size_chain && gimp_chain_button_get_active (priv->size_chain)) - { - gint height = ROUND ((gdouble) box->width / priv->aspect); - - if (box->height != height) - gimp_size_entry_set_refval (priv->size_entry, 1, height); - } gimp_size_box_update_size (box); break; case PROP_HEIGHT: box->height = g_value_get_int (value); - if (priv->size_chain && gimp_chain_button_get_active (priv->size_chain)) - { - gint width = ROUND ((gdouble) box->height * priv->aspect); - - if (box->width != width) - gimp_size_entry_set_refval (priv->size_entry, 0, width); - } gimp_size_box_update_size (box); break; diff -uraN gimp-2.2.0/app/widgets/gimptoolbox-dnd.c gimp-2.2.1/app/widgets/gimptoolbox-dnd.c --- gimp-2.2.0/app/widgets/gimptoolbox-dnd.c 2004-10-12 23:28:52.000000000 +0200 +++ gimp-2.2.1/app/widgets/gimptoolbox-dnd.c 2004-12-27 20:42:16.000000000 +0100 @@ -18,6 +18,8 @@ #include "config.h" +#include + #include #include "libgimpwidgets/gimpwidgets.h" diff -uraN gimp-2.2.0/ChangeLog gimp-2.2.1/ChangeLog --- gimp-2.2.0/ChangeLog 2004-12-19 03:10:45.000000000 +0100 +++ gimp-2.2.1/ChangeLog 2004-12-28 16:58:07.000000000 +0100 @@ -1,21166 +1,257 @@ -2004-12-19 Sven Neumann - - * Made 2.2.0 release. - -2004-12-18 Sven Neumann - - * app/tools/gimprotatetool.c (gimp_rotate_tool_dialog): fixed label. - -2004-12-18 Sven Neumann - - * app/dialogs/resize-dialog.c: free the dialog's private data - struct using a weak reference, not in a "destroy" handler. Should - fix bug #161472. - - * app/dialogs/print-size-dialog.c - * app/dialogs/scale-dialog.c: same change here. - -2004-12-18 Sven Neumann - - * app/dialogs/quit-dialog.c: marked a message for translation that - had been forgotten. Fixes bug #161596. - -2004-12-17 Sven Neumann - - * autogen.sh: check for gtk-doc.m4, depend on intltool > 0.31. - -2004-12-17 Sven Neumann - - * app/tools/gimpmovetool.c (gimp_move_tool_cursor_update): don't - use the rect-select cursor if the tool is in move-layer mode. - Spotted by Joao S. O. Bueno, bug #161465. - -2004-12-17 Simon Budig - - * app/tools/gimpcurvestool.c: Kill some nonsensical code that - tried to set control points in a free form curve based on the - image coordinates (huh?). Update the Graph after adding a point. - Untabbified. - -2004-12-17 Sven Neumann - - * app/tools/gimpimagemaptool.c (gimp_image_map_tool_pick_color): - take drawable offsets into account. Fixes bug #161508. - -2004-12-17 Sven Neumann - - * docs/gimp-remote.1.in - * docs/gimp.1.in - * docs/gimptool.1.in: minor tweaks. - -2004-12-17 Simon Budig - - * data/images/gimp-splash.png: Added new splash by - Bill Luhtala . - - * data/images/gimp-logo.png: Added new Image for the about dialog - by Philip Lafleur . - - * app/dialogs/about-dialog.c: Adjusted text colors and placement - to the new image. - - * data/images/gimp2_0_logo.png - * data/images/gimp2_0_splash.png: Added for historical reasons. - - * data/images/gimp_logo.png: Removed (renamed to gimp-logo.png) - * data/images/Makefile.am: changed accordingly. - -2004-12-16 Bill Skaggs - - * app/core/gimpgradient-load.c: reject .ggr files whose - segments don't properly span the range 0-1. - Fixes bug #161430. - -2004-12-16 Manish Singh - - * app/widgets/gimppdbdialog.c (gimp_pdb_dialog_set_property): Cast - result of g_value_dup_object() to GIMP_CONTEXT(). - -2004-12-16 Bill Skaggs - - * plug-ins/script-fu/scripts/circuit.scm: don't try to - desaturate a grayscale layer, fixes bug #161470. - -2004-12-16 Sven Neumann - - * INSTALL: updated location of fontconfig sources. - -2004-12-16 Sven Neumann - - * app/config/gimpconfig-dump.c - * docs/gimp-remote.1.in - * docs/gimp.1.in - * docs/gimprc.5.in: hyphens revisited. - -2004-12-16 Sven Neumann - - * app/config/gimpconfig-dump.c (dump_gimprc_manpage): escape hyphens. - - * docs/gimp.1.in: documented the way that splash images are choosen. - - * docs/gimprc.5.in: regenerated. - -2004-12-16 Michael Natterer - - * app/actions/actions.c (action_data_get_*): get gimp, display or - image from a context only if it isn't NULL. Fixes warnings and - crashes when dragging around some dockables (the dockables' - context temporarily becomes NULL while dragging). - - Reordered checks for the passed "data" to be consistent across the - various functions. - - Removed assertions which said "#warning: remove me before 2.2" - -2004-12-16 Sven Neumann - - * app/dialogs/preferences-dialog.c (prefs_keyboard_shortcuts_dialog): - added a note on how to use the dialog, copied from the GNOME keyboard - shortcuts editor. - -2004-12-15 Sven Neumann - - * tools/pdbgen/pdb/text_tool.pdb: let gimp_text() and - gimp_text_fontname() succeed but return -1 if no layer was created. - Fixes bug #161272. - - * app/pdb/text_tool_cmds.c - * libgimp/gimptexttool_pdb.c: regenerated. - -2004-12-15 Michael Natterer - - * app/core/gimpdrawable-preview.[ch]: added utility function - gimp_drawable_preview_bytes() and use it. Some cleanup, - untabified. - - * app/widgets/gimpviewrendererdrawable.c: use - gimp_drawable_preview_bytes() instead of duplicating its code. - -2004-12-15 Michael Natterer - Sven Neumann - - * app/core/gimpdrawable-preview.c (gimp_drawable_preview_scale): - fixed RGBA resampling by using premultiplied values for the - intermediate accumulation buffer. Fixes bugs #72880 and #72881. - -2004-12-14 Michael Natterer - - * app/plug-in/plug-in-proc-frame.[ch]: added "gint ref_count" to - the PlugInProcFrame struct. Added new functions - plug_in_proc_frame_ref/unref(). - - (plug_in_proc_frame_new): set the ref_count to 1. - - * app/plug-in/plug-in.[ch] (plug_in_proc_frame_push): return the - new proc_frame. - - (plug_in_proc_frame_pop): use unref() instead of free(). - - * app/plug-in/plug-in-run.c (plug_in_temp_run): ref the proc_frame - while running its main loop. Removed the call to - plug_in_proc_frame_pop(). - - * app/plug-in/plug-in-message.c (plug_in_handle_temp_proc_return): - call plug_in_proc_frame_pop() immediately after - plug_in_main_loop_quit() so the proc_frame goes away from the - stack and can't be used accidentially if the core is too busy to - return to the main loop before the next command arrives on the - wire. Really fixes bug #161114 this time. - -2004-12-14 Simon Budig - - * app/vectors/gimpstroke.[ch]: Changed the "gradient" parameter - to "slope" to make it more clear what the returned result is (which - was wrong earlier). - * tools/pdbgen/pdb/paths.pdb: changed accordingly - - * app/pdb/paths_cmds.c - * libgimp/gimppaths_pdb.[ch]: regenerated. - - Fixes bug #161274. - -2004-12-14 Maurits Rijk - - * plug-ins/imagemap/imap_selection.c: don't use - gtk_tree_selection_get_selected with GTK_SELECTION_MULTIPLE. Should - finally fix bug #149157. - -2004-12-14 Sven Neumann - - * libgimpwidgets/gimpstock.c (gimp_stock_init): documented. - -2004-12-14 Sven Neumann - - * plug-ins/imagemap/imap_misc.c (make_toolbar_radio_icon): don't - call gtk_radio_tool_button_new_with_stock_from_widget() with a - NULL widget. Fixes bug #161210. - -2004-12-14 Sven Neumann - - * configure.in: added GIMP_API_VERSION to the generated gimpversion.h. - - * libgimpbase/gimpenv.c (gimp_toplevel_directory): use - GIMP_API_VERSION instead of GIMP_MACRO_VERSION.GIMP_MINOR_VERSION - when building a path to test the plug-in executable path against. - -2004-12-14 Michael Natterer - - * tools/pdbgen/pdb/drawable.pdb: added gimp_drawable_sub_thumbnail() - to enable plug-ins avoiding #142074-alike bugs if they need to. - - * app/pdb/drawable_cmds.c - * app/pdb/internal_procs.c - * libgimp/gimpdrawable_pdb.[ch]: regenerated. - - * libgimp/gimpdrawable.[ch] - * libgimp/gimppixbuf.[ch]: wrap it with the same convenience - APIs as gimp_drawable_thumbnail(). - - * libgimp/gimp.def - * libgimp/gimpui.def: changed accordingly. - -2004-12-13 Sven Neumann - - * HACKING - * autogen.sh - * configure.in: switched to using gtkdocize for the build of the - API docs. - -2004-12-13 Maurits Rijk - - * plug-ins/imagemap/imap_selection.c: don't try do to anything when - selection is empty. Fixes bug #149157. - -2004-12-13 Maurits Rijk - - * plug-ins/imagemap/imap_misc.[ch] - * plug-ins/imagemap/imap_selection.[ch] - * plug-ins/imagemap/imap_toolbar.[ch] - * plug-ins/imagemap/imap_tools.[ch]: removed need for - GTK_DISABLE_DEPRECATED. Looking at #149157 next... - -2004-12-13 Sven Neumann - - * app/tools/gimpcroptool.c: don't show the Crop tool window if - Shift is being pressed on the initial button_press event. - -2004-12-13 Bill Skaggs - - * plug-ins/pygimp/gimpfu.py: display PF_RADIO options vertically - instead of horizontally, as suggested by Joao S. O. Bueno Calligaris. - Fixes bug #160546. - -2004-12-13 Bill Skaggs - - * plug-ins/gfig/gfig.c: make the "gfig" layer parasites persistent, - so that they will be saved in xcf files. Stop printing "GFig - parasite found" message. - -2004-12-13 Michael Natterer - - * app/widgets/gimppdbdialog.[ch]: don't forget the context we - were created with but rmember it as pdb_dialog->caller_context. - - * app/widgets/gimpbrushselect.c - * app/widgets/gimpfontselect.c - * app/widgets/gimpgradientselect.c - * app/widgets/gimppaletteselect.c - * app/widgets/gimppatternselect.c: use the caller_context when - calling the temp_proc so the temp_proc's stack frame doesn't - contain the dialog's private context (which is just a scratch - model for the container views) but the plug-in's real context - which is fully initialized. Fixes bug #161114. - -2004-12-13 Sven Neumann - - * libgimp/gimpdrawablecombobox.c: fixed gtk-doc comment. - -2004-12-13 DindinX - - * plug-ins/gfig/gfig-dialog.c - * plug-ins/gfig/gfig-style.c: let objects keep their own fill_style - context. - -2004-12-13 Sven Neumann - - * app/core/gimpimage-convert.c: applied patch from Adam D. Moss with - more fixed dither improvements (bug #161123). - -2004-12-13 Sven Neumann - - * app/gui/splash.c: restrict splash image to screen size to guard us - from insanely large splash images. - -2004-12-13 Michael Natterer - - * app/widgets/gimpdock.c (gimp_dock_delete_event): invert logic so - everything except GTK_RESPONSE_OK keeps the dock open - (e.g. hitting escape). - -2004-12-12 Michael Natterer - - * app/core/gimpdrawable-preview.c (gimp_drawable_get_sub_preview): - added precondition check for the coords of the src area. Some - cleanup and simplification. - - * app/widgets/gimpviewrendererdrawable.c - (gimp_view_renderer_drawable_render): don't request sub-previews - of area outside the drawable and don't reuqest previews of zero - width or height. Fixes crashes with the new preview code. - -2004-12-12 Sven Neumann - - Applied patch from Adam D. Moss (bug #161113): - - * app/core/gimpimage-convert.c: Use a slower but much nicer - technique for finding the two best colours to dither between when - using fixed/positional dither methods. Makes positional dither - much less lame. - -2004-12-12 Sven Neumann - - * plug-ins/common/film.c (film): push a context around code that - changes the foreground color. - -2004-12-12 Sven Neumann - - * app/batch.c (batch_run): changed handling of the 'gimp -b -' - command-line. It used to spawn three instances of Script-Fu, two - should be more than enough. - -2004-12-12 Bill Skaggs - - * app/widgets/gimpdataeditor.c: make Revert button insensitive - because revert is not yet implemented (bug #152259). - -2004-12-12 Sven Neumann - - * app/widgets/gimpdock.c: show a confirmation dialog if a dock - with multiple tabs is being closed. Sorry for the new strings, - they were carefully copied from gnome-terminal. - -2004-12-12 Bill Skaggs - - * plug-ins/common/pnm.c: make export do the right thing when - saving as .pgm or .ppm. Fixes bug #160045. - -2004-12-12 Sven Neumann - - * libgimp/gimp.def: added gimp_edit_copy_visible. - - * plug-ins/script-fu/scripts/copy-visible.scm: deprecated. - -2004-12-12 Sven Neumann - - * plug-ins/common/winclipboard.c: applied patch from Brion Vibber - that adds an alpha channel to the pasted layer. Fixes bug #148601. - -2004-12-12 Sven Neumann - - * app/base/tile-manager-crop.c: removed trailing whitespace. +2004-12-28 Sven Neumann - * plug-ins/imagemap/imap_selection.c: need to define - GTK_DISABLE_DEPRECATED for gtk_toolbar_append_space(). + * Made 2.2.1 release. -2004-12-12 Michael Natterer +2004-12-28 Sven Neumann - * app/paint-funcs/paint-funcs.[ch]: added new function - copy_region_nocow() as a workaround for the fact that sharing - tiles with the projection is heavily broken. + * libgimp/gimp.[ch] (gimp_install_procedure, gimp_install_temp_proc): + renamed menu_path parameter to menu_label and added a pointer to + gimp_plugin_menu_register() - * app/base/tile-manager.c (tile_invalidate): added a warning when - entering the code path that breaks badly. + * app/widgets/gimpsizebox.c (gimp_size_box_constructor): removed + unused variables. - * app/core/gimp-edit.[ch]: added gimp_edit_copy_visible(), using - the non-COW copying function above. +2004-12-28 Sven Neumann - * app/widgets/gimphelp-ids.h: added GIMP_HELP_COPY_VISIBLE. + * app/paint/gimpbrushcore.c (gimp_brush_core_subsample_mask): + reverted Bill's change since it is obviously not the right fix. + Allocate the array larger to avoid the crash. We need to + investigate bug #161323 further. - * app/actions/edit-actions.c - * app/actions/edit-commands.[ch]: added action & callback for - "edit-copy-visible". +2004-12-27 Bill Skaggs - * menus/image-menu.xml.in: added "edit-copy-visible" to the image - menu. - - * tools/pdbgen/pdb/edit.pdb: added gimp_edit_copy_visible() - PDB wrapper. - - * app/pdb/edit_cmds.c - * app/pdb/internal_procs.c - * libgimp/gimpedit_pdb.[ch]: regenerated. - - * plug-ins/script-fu/scripts/copy-visible.scm: removed all code - and made it a backward compat wrapper around gimp-edit-copy-visible. - Fixes bug #138662. - -2004-12-11 Michael Natterer - - * app/core/gimpdrawable-preview.c (gimp_drawable_preview_private): - implement it using gimp_drawable_get_sub_preview(). Removes - massive code duplication introduced by yesterday's fix. - -2004-12-11 Kevin Cozens - - * plug-ins/script-fu/scripts/copy-visible.scm: Apply the layer mask - when copying a single layer with a layer mask. Fixes bug #138662. - - * plug-ins/script-fu/scripts/t-o-p-logo.scm: Removed ' character. - -2004-12-11 Sven Neumann - - * INSTALL - * NEWS - * README: updates for the GIMP 2.2.0 release. - -2004-12-11 Sven Neumann - - * plug-ins/common/unsharp.c: got rid of a global variable. - - * plug-ins/common/bumpmap.c (dialog_bumpmap_callback): more changes - to restore the gimp-2.0 behaviour. - -2004-12-11 Michael Natterer - - * app/core/gimpdrawable-preview.[ch]: added new function - gimp_drawable_get_sub_preview() which returns a scaled preview of - a part of a drawable. - - (gimp_drawable_preview_scale): made it work with srcPR.x and - srcPR.y being != 0. - - * app/core/gimpimage-preview.c (gimp_image_get_new_preview) - * app/widgets/gimpviewrendererdrawable.c - (gimp_view_renderer_drawable_render): if the area of the drawable - preview is more than 4 times larger than the drawable itself (evil - heuristic, but seems to work fine), use above function to get a - sub-preview of the drawable instead of getting an insanely large - preview of the whole drawable just to use a small part of it. - Fixes bug #142074. - - * app/core/gimpimage-preview.c (gimp_image_get_new_preview): - optimized by skipping layers which do not intersect with the - canvas. - -2004-12-11 Sven Neumann - - * plug-ins/common/bumpmap.c (dialog_bumpmap_callback): do actually - change the bumpmap drawable. Fixes bug #160985, hopefully without - reopening bug #158494. - -2004-12-11 Sven Neumann - - * configure.in: set version to 2.2.0. - - * tools/Makefile.am - * tools/authorsgen/Makefile.am - * tools/authorsgen/authorsgen.pl - * tools/authorsgen/contributors: removed authorsgen, a perl script - that used to be used to create AUTHORS and authors.h. - - * Makefile.am - * authors.dtd - * authors.xml: added a simple XML file that lists authors and - contributors and a DTD to validate it. - - * authors.xsl: a stylesheet to generate AUTHORS from authors.xml. - - * app/dialogs/Makefile.am - * app/dialogs/authors.xsl: a stylesheet to generate authors.h from - authors.xml. - - * app/dialogs/authors.h: regenerated. - - * app/dialogs/about-dialog.c: added a const modifier. - -2004-12-09 Bill Skaggs - - * app/widgets/gimphistogrameditor.c: make histogram editor, - and therefore histogram dialog, use the selection. Should - resolve bug #72959. - - * app/core/gimpdrawable-histogram.h: remove trailing whitespace. + * app/paint/gimpbrushcore.c (gimp_brush_core_subsample_mask): + don't set array outside its bounds. Should fix bug #161323. + Credit to Robert Ögren for figuring out what was wrong. -2004-12-10 Manish Singh - - * app/widgets/gimpdatafactoryview.c - * app/widgets/gimpitemtreeview.c: #include for strcmp() - -2004-12-10 Michael Natterer - - * app/widgets/gimpdatafactoryview.c - (gimp_data_factory_view_tree_name_edited) - * app/widgets/gimpitemtreeview.c - (gimp_item_tree_view_name_edited) - * app/widgets/gimptemplateview.c - (gimp_template_view_tree_name_edited): call gimp_object_set_name() - or gimp_item_rename() only if the item's name has actually changed - and restore the old text otherwise. Fixes one instance of "name is - not updated correctly after editing" for which I blamed GTK+ in - bug #145463 :-) The other instances should be fixed in GTK+ HEAD - and are imho unfixable with GTK+ 2.4. - -2004-12-10 Michael Natterer - - * app/widgets/gimpcontainertreeview.c - (gimp_container_tree_view_clear_items): clear all viewable cell - renderers so they don't keep pointers to layers/masks which don't - exist any more. Fixes the additional problem in bug #148852 but - not the bug itself. - -2004-12-09 Bill Skaggs - - * app/core/gimpbrushpipe.c (gimp_brush_pipe_select_brush): - Don't initialize a new random number generator every time a brush - is selected from a pipe. Fixes bug #148205). - -2004-12-09 DindinX - - * plug-ins/common/cartoon.c: marked the menu entry for translation - (reported by Zigomar) - -2004-12-09 Michael Natterer - - * app/dialogs/print-size-dialog.c - * app/widgets/gimpsizebox.c: set a focus_chain on the size_entries - so the focus order is width->height->chain->unitmenu and not - width->chain->height->unitmenu. - - * app/widgets/gimptemplateeditor.c: changed focus_chain code to - work like above (cosmetics). - -2004-12-09 Sven Neumann - - * app/gui/splash.c (splash_update): only expose the area of the - window that actually changed. - - * app/plug-in/plug-in-rc.c (plug_in_rc_write): changed the header - and footer to be more in line with the other rc files. - -2004-12-08 Bill Skaggs - - * app/dialogs/print-size-dialog.c (print_size_dialog_size_changed): - Previous fix only worked if units were inches -- now seems to - work for all units. (fixes #159273 ?) - -2004-12-08 Bill Skaggs - - * plug-ins/common/randomize.c: Changed algorithm for Pick and - Slur to treat all channels within a pixel in the same way; - intended to fix bug #72852. - -2004-12-08 Bill Skaggs - - * app/dialogs/print-size-dialog.c (print_size_dialog_size_changed): - fixed kludgy use of size entry, seems to fix bug #159273. - -2004-12-08 Michael Natterer - - * app/widgets/gimpuimanager.[ch]: renamed - gimp_ui_manager_get_action() to gimp_ui_manager_find_action(). - - * app/widgets/gimpcolormapeditor.c - * app/widgets/gimpitemtreeview.c - * app/widgets/gimppaletteeditor.c - * app/widgets/gimptoolbox.c - * app/widgets/gimptooloptionseditor.c - * app/display/gimpdisplayshell-close.c: changed accordingly. - - (this change is quite useless as it stands, but will help keeping - the diff between 2.2 and 2.3 small as soon as we're branched). - - * app/widgets/gimpcolormapeditor.c - (gimp_colormap_preview_button_press): invoke the "edit-color", not - "new-color" action upon double click. - - (palette_editor_select_entry): update the ui manager after - selecting the entry so the entry-specific actions become sensitive - if there was no entry selected before. - -2004-12-08 Michael Natterer - - * app/widgets/gimppropwidgets.[ch]: added new prop_widget - gimp_prop_int_combo_box_new() which takes a pre-built GimpIntStore - and allows to create views on int properties with arbitrary sets - of values (not just enums). - - * app/widgets/gimpcontrollereditor.c - (gimp_controller_editor_constructor): added support for generic - combo boxes controlled exclusively by controller properties: if an - int property "foo" is followed by an object property "foo-values" - and the contained object is a GimpIntStore, use that store as - model for selecting "foo"'s values using - gimp_prop_int_combo_box_new(). - - (Allows for more flexible controller configuration, the actual use - case in the midi controller is still work in progress). - -2004-12-06 Sven Neumann +2004-12-27 Sven Neumann - * tools/authorsgen/contributors: removed duplicate entry for Roman. + * plug-ins/common/colortoalpha.c: if possible, use + gimp_preview_draw_buffer() so that the selection mask is correctly + previewed. Minor cleanups. - * AUTHORS - * app/dialogs/authors.h: regenerated. +2004-12-27 Sven Neumann -2004-12-06 Roman Joost + * libgimp/gimpregioniterator.c: added some checks to avoid + division by zero. - * tools/authorsgen/contributors: added Róman Joost to - contributors + * libgimpwidgets/gimppreviewarea.[ch]: minor cleanups, improved + API documentation. -2004-12-06 Michael Natterer - - * app/tools/gimptransformtool.c: applied patch from Sven Neumann - which removes code that prevents layers with mask from being - transformed. - - * app/tools/gimptransformtool.[ch]: added "gboolean mask_empty" - parameter to GimpTransformTool::transform(). Needed because the - selection gets cleared by cutting from the drawable and we need - the selection's state before that cutting. - - (gimp_transform_tool_doit): pass "mask_empty" to - GimpTransformTool::transform(): - - * app/tools/gimptransformtool.c (gimp_transform_tool_real_transform) - * app/tools/gimpfliptool.c (gimp_flip_tool_transform): when - transforming a layer with mask and there is no selection, - transform the mask just as if it was a linked item. - Fixes bug #143837 and bug #159697. - -2004-12-05 Sven Neumann - - * app/core/gimp-transform-utils.c (gimp_transform_matrix_flip_free): - applied patch from Joao S. O. Bueno that fixes bug #160339. - -2004-12-05 Sven Neumann - - * plug-ins/help/domain.c - * plug-ins/help/gimp-help-lookup.c - * plug-ins/help/help.[ch]: if the help files are not installed, - uninstall the temporary procedure and quit. Fixes bug #160258. - -2004-12-05 Sven Neumann - - * plug-ins/common/lic.c: applied patch from Joao S. O. Bueno that - sets a lower limit for the filter length (bug #160121). The patch - also makes the plug-in work on drawables with alpha channel. - -2004-12-05 Sven Neumann - - * plug-ins/common/wmf.c: applied patch from Karine Proot that - limits the size of the preview in the WMF loader (bug #133521). - -2004-12-04 DindinX +2004-12-26 DindinX * plug-ins/gfig/gfig-arc.c - * plug-ins/gfig/gfig-arc.h * plug-ins/gfig/gfig-bezier.c - * plug-ins/gfig/gfig-bezier.h * plug-ins/gfig/gfig-circle.c - * plug-ins/gfig/gfig-circle.h - * plug-ins/gfig/gfig-dobject.c - * plug-ins/gfig/gfig-dobject.h + * plug-ins/gfig/gfig-dialog.c * plug-ins/gfig/gfig-ellipse.c - * plug-ins/gfig/gfig-ellipse.h * plug-ins/gfig/gfig-line.c - * plug-ins/gfig/gfig-line.h * plug-ins/gfig/gfig-poly.c - * plug-ins/gfig/gfig-poly.h - * plug-ins/gfig/gfig-preview.c * plug-ins/gfig/gfig-spiral.c - * plug-ins/gfig/gfig-spiral.h * plug-ins/gfig/gfig-star.c - * plug-ins/gfig/gfig-star.h: updating a object is now a virtual - function. - -2004-12-03 Michael Natterer - - * app/core/gimpimage-undo-push.c (undo_pop_layer): when removing - the floating selection, call gimp_drawable_invalidate_boundary() - *before* setting gimage->floating_sel to NULL because otherwise - gimp_display_shell_selection_invis() won't clear the correct - selection bounds and leave garbage on screen. Fixes bug #160247. - -2004-12-02 Michael Natterer - - * app/actions/tool-options-actions.c - (tool_options_actions_update_presets): don't forget to initialize - the "value_variable" boolean of GimpEnumActionEntry. Fixes myriads - of warnings about wrong values for boolean properties. + * plug-ins/gfig/gfig-style.h + * plug-ins/gfig/gfig.h: plugged some memory-leaks, and done some + cleanups. - * app/actions/file-actions.c (file_actions_setup): same - here. Fixes nothing but is cleaner. +2004-12-26 Bill Skaggs -2004-12-02 Simon Budig + * app/core/gimpbrush.c: don't ask for preview with + zero width or height, fixes bug #162232. - * app/vectors/gimpvectors.c: Fixed stupid typo that caused - distorted vectors on scaling after resizing. Spotted by - Joao S. O. Bueno. + * app/base/brush-scale.c: remove tabs and trailing + whitespace. - Fixes bug #157852. +2004-12-26 Bill Skaggs -2004-12-01 Sven Neumann + * app/actions/documents-commands.c + * app/actions/file-commands.c + * app/dialogs/file-open-dialog.c + * app/dialogs/file-open-location-dialog.c + * app/display/gimpdisplayshell-dnd.c + * app/widgets/gimplayertreeview.c + * app/widgets/gimptoolbox-dnd.c: undo changes of 12-24, + in favor of a better fix. - * autogen.sh: rephrased the warning that is shown when the - intltool check fails. + * app/widgets/gimperrordialog.c: fix bug #162147 properly, + as suggested by mitch. -2004-12-01 Michael Natterer +2004-12-25 Michael Natterer - * app/widgets/gimpuimanager.c (gimp_ui_manager_ui_get): improved - error message about missing XML files. + * plug-ins/script-fu/scripts/weave.scm: limit the "Thread + intensity" parameter to [0..100] because it's used as layer + opacity. Fixes bug #162182. -2004-12-01 Michael Natterer +2004-12-24 Bill Skaggs - * app/display/gimpdisplayshell-appearance.c - * app/display/gimpdisplayshell.c - * app/widgets/gimpdockable.c - * app/widgets/gimptexteditor.c - * app/widgets/gimptoolbox.c: check if gimp_ui_manager_ui_get() - actually returns something. Prevents crashes caused by missing - ui manager xml files. Fixes bug #159346. + * app/actions/documents-commands.c + * app/actions/file-commands.c + * app/dialogs/file-open-dialog.c + * app/dialogs/file-open-location-dialog.c + * app/display/gimpdisplayshell-dnd.c + * app/widgets/gimplayertreeview.c + * app/widgets/gimptoolbox-dnd.c: replace % with space + in file name before showing error message, + fixes bug #162147. -2004-12-01 Michael Natterer + * app/core/gimp-gui.c + * app/widgets/gimpmessagebox.c: be a bit more paranoid + about validating utf8 for messages. - * app/widgets/gimptoolview.c (gimp_tool_view_select_item): no need - to update the ui manager here, the parent class already does it. +2004-12-23 Bill Skaggs -2004-11-30 DindinX + * gimp/app/widgets/gimpsizebox.c: fix incorrect Update + Policy for size entry as pointed out by mitch. + +2004-12-23 Bill Skaggs - * plug-ins/gfig/README: removed some very obsolete stuff. + * plug-ins/common/cartoon.c + * plug-ins/common/cubism.c + * plug-ins/common/displace.c + * plug-ins/common/dog.c + * plug-ins/common/emboss.c + * plug-ins/common/engrave.c + * plug-ins/common/gauss.c + * plug-ins/common/glasstile.c + * plug-ins/common/neon.c + * plug-ins/common/noisify.c + * plug-ins/common/oilify.c + * plug-ins/common/photocopy.c + * plug-ins/common/ripple.c + * plug-ins/common/sharpen.c + * plug-ins/common/shift.c + * plug-ins/common/sobel.c + * plug-ins/common/softglow.c + * plug-ins/common/spread.c + * plug-ins/common/tileit.c + * plug-ins/common/whirlpinch.c: make sure tile cache is allocated + before preview is shown -- significant speedup in some cases, + minimal in others. - * plug-ins/gfig/gfig-arc.c - * plug-ins/gfig/gfig-arc.h - * plug-ins/gfig/gfig-bezier.c - * plug-ins/gfig/gfig-bezier.h - * plug-ins/gfig/gfig-circle.c - * plug-ins/gfig/gfig-circle.h - * plug-ins/gfig/gfig-dobject.c: small cleanups + * plug-ins/common/sel_gauss.c: give it a tile cache (didn't + have one). Still very slow but a little better. + +2004-12-24 Sven Neumann -2004-11-30 Michael Natterer + * plug-ins/common/despeckle.c (despeckle_median): don't call + gimp_progress_update() for each and every pixel. Every few rows + should be enough. Fixes bug #162129. - * app/gui/themes.c (themes_init): use gtk_rc_parse() instead of - gtk_rc_add_default_file() to add ~/.gimp-2.2/themerc to the list - of files parsed by GTK+ because the latter works only before - gtk_init(). Fixes bug #155963. + * plug-ins/common/blur.c: set progress to 1.0 when done, not to 100. -2004-11-30 Michael Natterer +2004-12-23 Bill Skaggs - * app/dialogs/print-size-dialog.c: reordered prototypes to match - order of implementations. + * plug-ins/common/mblur.c: set up tile cache before + creating dialog -- major speedup in preview. + +2004-12-23 Bill Skaggs -2004-11-30 Sven Neumann + * gimp/app/widgets/gimpsizebox.c: use gimp_coordinates_new() + instead of duplicating a lot of code. Fixes bug #161756. + + * gimp/app/widgets/gimppropwidgets.c: small change in + chainbutton handling to make above work. - * app/sanity.c: we check for the same version of freetype on all - platforms, no need for an ifdef here. +2004-12-23 Sven Neumann -2004-11-30 Sven Neumann + * app/plug-in/plug-in-proc-frame.[ch]: made plug_in_proc_frame_free() + a static function. - * libgimp/gimpexport.c: some more HIG-ification tweaks to the - Export dialogs. +2004-12-23 Michael Natterer -2004-11-30 Michael Natterer + Item conversion depends on the old *and* the new item type, so + it can't live in the old item's vtable only: - * app/widgets/gimpactiongroup.c - (gimp_action_group_set_action_color) - (gimp_action_group_set_action_color): allow to set color and - viewable to NULL, GimpAction handles this nicely. Fixes warnings - some foo_actions_update() functions were triggering. + * app/core/gimpitem.[ch]: split GimpItem::convert() into + GimpItem::convert_from() (which is called on the old item and + creates the new item) and GimpItem::convert_to() (which is called + on the new item). This way functions from the old *and* new items' + vtables are called and it's possible to convert between item types + which live on different branches of the class hierarchy or to item + types which live further down the class tree than the old item. -2004-11-30 DindinX + (gimp_item_convert): call ::convert_to() on the new item created + by ::convert_from(). - * plug-ins/gfig/*[ch]: code cleanup + * app/vectors/gimpvectors.c: changed ::convert() implementation + to ::convert_from(). -2004-11-29 Michael Natterer + * app/core/gimplayer.c: changed ::convert() to ::convert_to(). + Fixes bug #161877. - * tools/pdbgen/pdb/display.pdb: make it work as documented (fail - if the new_image already has a display). Also fail if the - old_image doesn't have any display (changed docs accordingly). - On success, take over the initial reference count of the new - image, just as the gimp_display_new() PDB wrapper does. - Fixes bug #159051. +2004-12-22 Sven Neumann - * app/pdb/display_cmds.c - * libgimp/gimpdisplay_pdb.c: regenerated. + * plug-ins/script-fu/scripts/Makefile.am + * plug-ins/script-fu/scripts/asc2img.scm: removed this script as it + is broken beyond repair and the functionality is provided by the + text tool itself. -2004-11-29 Sven Neumann +2004-12-22 Sven Neumann - * app/file/file-save.c (file_save_as): when the image filename - changes, forget the filename that was last used with "save-a-copy". + * NEWS: added NEWS for the stable branch (no, we haven't branched + yet). -2004-11-29 Sven Neumann + * Makefile.am + * NEWS.pre-2.2: moved old NEWS here. + +2004-12-21 Sven Neumann - * libgimpwidgets/gimppreview.c (gimp_preview_toggle_callback): - change the "update" property and notify listeners (in particular - GimpDrawablePreview) before invalidating the preview. Plug-ins - might (needlessly) look at the property to decide whether they - need to redraw. Fixes bug #159816. + * plug-ins/common/unsharp.c (blur_line): fixed the degenerate case + where the source image is smaller than the blurred area. This used + to give artefacts at the borders. - * plug-ins/common/unsharp.c (preview_update): no need to look at - the value of the "Preview" toggle. GimpPreview takes care this. +2004-12-21 Sven Neumann -2004-11-29 DindinX + * plug-ins/common/unsharp.c: more code cleanup and micro + optimizations. - * plug-ins/gfig/gfig-dialog.c: issue a repaint after the - "show previous", "show next" and "show all" callbacks. +2004-12-21 Sven Neumann - * plug-ins/gfig/gfig-style.c: fixed some comments. + * plug-ins/common/unsharp.c: reverted the last change since it + introduced artefacts. Even had to increase the border around the + previewed area. Fixed a bug in unsharp_region() where it was using + the wrong source region for blurring. -2004-11-29 Sven Neumann +2004-12-21 Sven Neumann - * plug-ins/imagemap/imap_preview.c - * plug-ins/imagemap/imap_selection.c: undeprecated. + * plug-ins/common/unsharp.c: compute preview for the displayed area + only, some more code cleanup. -2004-11-28 DindinX +2004-12-21 Sven Neumann - * plug-ins/gfig/gfig-dobject.c: copy the style of the object when - pushing it to the undo stack, so undoing works as expected. + * plug-ins/common/unsharp.c (preview_update): fixed bug #157910. + More code cleanup and some trivial optimizations. -2004-11-28 DindinX +2004-12-21 Michael Natterer - * plug-ins/gfig/gfig-style.c - * plug-ins/gfig/gfig-style.h: create a new function to get the current - style instead of using a global pointer for this - (gfig_context_get_current_style ()) + * app/actions/gradient-editor-actions.c + (gradient_editor_actions_update): if the dialog is insensitive, + disable all actions which modify the gradient. Fixes bug #161411. - * plug-ins/gfig/gfig-circle.c - * plug-ins/gfig/gfig-dialog.c - * plug-ins/gfig/gfig-dobject.c - * plug-ins/gfig/gfig.h: use this function everywhere it is needed. And - remove the current_style field from GfigContext. + * app/actions/gradient-editor-commands.c: update the UI manager + after setting the dialog sensitive/insensitive so te above works. - (unrelated): - * plug-ins/FractalExplorer/Dialogs.h - * plug-ins/FractalExplorer/FractalExplorer.c: small cleanups +2004-12-20 Sven Neumann -2004-11-28 Sven Neumann + * plug-ins/common/unsharp.c: more code cleanup. - * plug-ins/gfig/gfig-dialog.c - * plug-ins/gfig/gfig-style.[ch] - * plug-ins/gfig/gfig.h: removed unused stack of styles. Removed - gimp_style from GFigContext. +2004-12-20 Sven Neumann -2004-11-28 Sven Neumann + * libgimp/gimpdrawablepreview.c (gimp_drawable_preview_draw_region): + unset the dirty flag on the GimpPixelRgn used to iterate the region. - * plug-ins/gfig/gfig.c (run): push a context for GFig. + * libgimp/gimppixelrgn.c (gimp_pixel_rgn_init): improved docs. -2004-11-28 DindinX +2004-12-20 Sven Neumann - * plug-ins/gfig/gfig-dialog.[ch] - * plug-ins/gfig/gfig-dobject.c: renamed undo_water_mark to undo_level. - Fixed the style handling when clearing the whole thing and undoing in - some very particular cases. The undo part should certainly be redone - to some extent. + * plug-ins/common/unsharp.c: code cleanup, no real changes. - Btw, this is the revision 1.10000 of the ChangeLog, yeah! +2004-12-20 Sven Neumann -2004-11-28 Bill Skaggs + * configure.in: bumped version to 2.2.1. - * plug-ins/gfig/gfig-style.c: make sure PaintType is saved and - loaded with the style. - -2004-11-28 DindinX + * plug-ins/FractalExplorer/FractalExplorer.c: applied patch from + Yeti that fixes a memory corruption (bug #161729). - * plug-ins/gfig/gfig-dialog.c: correctly initializes the paint_type - field of the default style. +2004-12-19 Sven Neumann - * plug-ins/gfig/gfig-style.c: don't print an useless error message - where no-one can see it when loading an other with no style but use - the default style instead. - -2004-11-28 Sven Neumann - - * plug-ins/gfig/gfig-dialog.[ch] - * plug-ins/gfig/gfig-dobject.c: moved Undo and Clear to the Edit - menu. Added a utility function to set the sensitivity of an action - by name. Cleaned up action callbacks. - - * plug-ins/gfig/gfig-style.c: minor cleanup. - -2004-11-28 DindinX - - * plug-ins/gfig/gfig-arc.c - * plug-ins/gfig/gfig-bezier.c - * plug-ins/gfig/gfig-circle.c - * plug-ins/gfig/gfig-dialog.c - * plug-ins/gfig/gfig-ellipse.c - * plug-ins/gfig/gfig-line.c - * plug-ins/gfig/gfig-poly.c - * plug-ins/gfig/gfig-spiral.c - * plug-ins/gfig/gfig-star.c: made the class name uppercase since it is - used to parse a gfig file. - -2004-11-28 Sven Neumann - - * plug-ins/gfig/gfig-dialog.c: make sure that widgets in the Grid - and Preferences dialogs are only accessed while the dialogs exist. - -2004-11-28 Sven Neumann - - * plug-ins/gfig/gfig-dialog.c: made the Grid and Preferences - dialogs singletons and declared them as transient to the GFig - window. Don't let them run their own main loop. - -2004-11-28 Sven Neumann - - * plug-ins/gfig/gfig-dialog.c: added a Close menu item to the - menubar. Removed help buttons from popup dialogs. Set the same - default directory in load and save filechoosers. - -2004-11-27 Manish Singh - - * tools/pdbgen/pdb/drawable_transform.pdb: escape utf8 as hex, to - avoid perl trying to be so smart that it's stupid. - - * app/pdb/drawable_transform_cmds.c: regenerated. - -2004-11-27 Manish Singh - - * plug-ins/common/jpeg.c (save_image): thumbnail buffer variable - declarations should be guarded under HAVE_EXIF. - -2004-11-27 Manish Singh - - * plug-ins/pygimp/plug-ins/colorxhtml.py: s/colorhtml/colorxhtml/, - so it doesn't clash with the perl version. - - * plug-ins/pygimp/plug-ins/Makefile.am: reflect filename change. - -2004-11-27 Sven Neumann - - * plug-ins/common/jpeg.c: delay the creation of the display for - the export image preview until the user requests a preview. Fixes - bug #159376. - -2004-11-27 Øyvind Kolås - - * libgimp/gimpexport.c: minor layout adjustments for HIG compliance. - -2004-11-27 Kevin Cozens - - * plug-ins/script-fu/scripts/spyrogimp.scm: Force number of teeth - to be integer values. Changed default for Outer teeth to give a - more interesting image. Detabified file. Fixes bug #158448. - -2004-11-27 Sven Neumann - - * plug-ins/script-fu/script-fu-scripts.c (script_fu_script_proc): - don't look at the menu path to determine if the script is - image-based. Instead look at the number of parameters we are being - called with. - -2004-11-27 Sven Neumann - - * app/tools/gimpinkoptions-gui.c: made the Size scale logarithmic - as suggested in bug #159632. - -2004-11-27 Sven Neumann - - * plug-ins/common/tiff.c (save_image): tell the user that we can't - handle indexed images with alpha channel (bug #159600). - -2004-11-27 Sven Neumann - - * app/main.c - * app/widgets/gimpenumstore.h - * app/widgets/gimpunitstore.c - * plug-ins/common/retinex.c: applied patch by Tim Mooney that - removes extraneous ; - -2004-11-27 Sven Neumann - - * plug-ins/common/wmf.c (run): applied patch by Tim Mooney that - increase the size of values[] to accomodate the use of - file_wmf_load_thumb (bug #159601). - -2004-11-27 Sven Neumann - - * tools/pdbgen/pdb/drawable.pdb: minor change to the PDB docs. - - * libgimp/gimpdrawable_pdb.c - * tools/pdbgen/pdb/drawable.pdb: regenerated. - -2004-11-27 Sven Neumann - - * plug-ins/winicon/icosave.c - * plug-ins/winicon/main.[ch]: moved code around. - -2004-11-26 Manish Singh - - * plug-ins/common/dog.c: make sure the preview image type matches - the source image type. - -2004-11-26 Sven Neumann - - * plug-ins/winicon/icosave.c: don't fiddle with the source image, - a save plug-in should save, nothing else. - - * plug-ins/winicon/main.[ch]: handle all sorts of image types. - Fixes bug #157803. - -2004-11-26 Sven Neumann - - * tools/pdbgen/pdb/drawable.pdb: fixed docs for - gimp_drawable_type_with_alpha(). - - * app/pdb/drawable_cmds.c - * libgimp/gimpdrawable_pdb.c: regenerated. - -2004-11-26 Sven Neumann - - * plug-ins/winicon/main.[ch] (ico_image_get_reduced_buf) - * plug-ins/winicon/icodialog.c - * plug-ins/winicon/icoload.c - * plug-ins/winicon/icosave.c: fixed drawable handling. This - plug-in is still a complete mess and needs a lot more work. - -2004-11-26 Sven Neumann - - * app/tools/gimppaintoptions-gui.c (gimp_paint_options_gui): only - show the Incremental toggle for tools that use it (bug #159306). - -2004-11-26 Sven Neumann - - * app/core/gimpdocumentlist.c (gimp_document_list_deserialize): - don't add documents w/o a name to the list. Fixes bug #159510. - - * app/core/gimpdrawable.c (gimp_drawable_resize): extended the - check to take the offsets into account as well. - -2004-11-25 Manish Singh - - * plug-ins/common/dog.c: Add the temporary layers to the image, so - things work. Fixes bug #158895. - - * plug-ins/common/iwarp.c: Fix same naughtiness as above. There's - other naughtiness still though. - - * plug-ins/common/sunras.c: use gboolean for byte2bit invert argument. - -2004-11-25 Manish Singh - - * plug-ins/common/jpeg.c: Use a jpeg_error_mgr that lives within - PreviewPersistent, instead of an automatic variable in save_image. - Fixes bug #159076. - -2004-11-25 Simon Budig - - * modules/controller_linux_input.c: Add some sample code to retrieve - the name of the connected MIDI device (ALSA). - Do not set the "name" when connected to Alsa, since snd_seq_name() - returns an uninteresting name. - -2004-11-24 Michael Natterer - - * app/gui/gui.c (gui_display_changed): if the active display - becomes NULL (e.g. by closing a view), don't leave the user - context with an image but no display. Instead, try to find another - display of the same image and if that fails set the image to NULL. - - Prevents the various foo_actions_update() functions from being - called with a NULL display while there is still an active image in - the context. - - Fixes bug #159304. - - (Removed #warning about being misplaced from that function because - it's a typical piece of ugly glue code that belongs exactly here). - -2004-11-24 Simon Budig - - * modules/controller_linux_input.c: Accept >= 0 return values of the - ioctl() to figure out the device name. Apparently it is the number of - bytes written to the string, so we might omit the strlen() following, - but I don't like to rely on that... - -2004-11-24 Michael Natterer - - * libgimpwidgets/gimpcontroller.[ch]: guarded the whole header - with GIMP_ENABLE_CONTROLLER_UNDER_CONSTRUCTION because it's no - fixed API yet. Added a "state" property bacause "name" was abused - as the controller's state. Added "help_domain" to the controller - class. - - * libgimpwidgets/gimpwidgets.h: don't include gimpcontroller.h - - * modules/controller_linux_input.c - * modules/controller_midi.c: set the "name" property to the name - retrieved from the device, or to a default string if no name is - available. Store the status in the "state" property. Added and - changed some strings, but it's better to have the controller - strings untranslated than to have no tooltips at all or misleading - labels. - - * app/widgets/gimpcontrollerkeyboard.c - * app/widgets/gimpcontrollerwheel.c: set default strings for both. - - * app/widgets/gimpcontrollereditor.c: added a GUI for the "state" - property. - - * app/widgets/gimpcontrollerkeyboard.h - * app/widgets/gimpcontrollerwheel.h - * app/widgets/gimpcontrollerinfo.c - * app/widgets/gimpcontrollers.c: #define - GIMP_ENABLE_CONTROLLER_UNDER_CONSTRUCTION (just as in all files - above). - - * app/widgets/gimphelp-ids.h: added the IDs of all controller - modules and also of all other modules. The defines are not - actually used, but this file is the canonical place to collect all - the core's help IDs. - -2004-11-23 Sven Neumann - - * app/core/gimp-templates.[ch] - * app/dialogs/user-install-dialog.c: merge the migrated user - templaterc with the system templaterc so the users who have used - gimp-2.0 before get our changes to the default templates. - -2004-11-23 Michael Natterer - - * app/widgets/gimpwidgets-utils.[ch]: added new function - gimp_toggle_button_set_visible() which can be used as "toggled" - callback on a GtkToggleButton and sets a widget (in)visible - according to the toggle's "active" state. - - * app/tools/gimpblendoptions.c - * app/tools/gimppaintoptions-gui.c - * app/tools/gimpselectionoptions.c: use it to hide (rather than - just insensitize) the seldomly used "Feather edges", "Autoshrink - selection", "Adaptive supersampling", "Fade out" and "Use color - from gradient" widgets when their enabling toggle is unchecked. - Makes the affected tool options much less crowded and noisy in - their default appearance. Fixes bug #159008. - -2004-11-23 Michael Natterer - - * app/menus/plug-in-menus.c (plug_in_menus_add_proc): create - dynamic sub-menus using a separate, ui-manager-global merge_id - instead of the procedure's merge_id. Has the effect that the ui - manager keeps around these sub-menus forever, even if the - procedure that initially registered them is unregistered. - Fixes menu ordering after Script-Fu->Refresh. - -2004-11-23 Michael Natterer - - * app/core/gimpparasitelist.c: cosmetics, untabified. - - * libgimpbase/gimpparasiteio.[ch]: added g_return_if_fail()'s - to all functions. - - (gimp_pixpipe_params_parse): changed "gchar*" param to "const - gchar*" (sortof API change, but these files are most probably only - used by GIMP itself). Still uses strtok() on the internal copy, - but at least not on the passed string. - - * plug-ins/common/csource.c - * plug-ins/common/gif.c - * plug-ins/common/gih.c - * plug-ins/common/jpeg.c - * plug-ins/common/png.c - * plug-ins/common/tiff.c: use parasite getters instead of - accessing the scruct members directly. Always use g_strndup() - instead of just g_strdup() to get strings stored in parasites - because there is no guarantee that they are nul-terminated. - -2004-11-23 Sven Neumann - - * plug-ins/imagemap/imap_file.c (do_file_save_as_dialog): do - actually use a save dialog here. Fixes bug #159194. - -2004-11-23 Sven Neumann - - * app/core/gimpdrawable.c (gimp_drawable_resize): do nothing if - the size doesn't change. This keeps text layers from being - modified when an image is cropped and the layer is entirely inside - the cropped area. - - * menus/image-menu.xml.in: put the Quit item back for now. We - should think about this again in the next development cycle. - -2004-11-22 Kevin Cozens - - * plug-ins/script-fu/scripts/copy-visible.scm: Fixed incorrect - comparison in if statement. Partial(?) fix for bug #138662. - -2004-11-22 Manish Singh - - * plug-ins/pygimp/Makefile.am - * plug-ins/pygimp/pygimp-logo.png: New pygimp logo, by Carol Spears. - - * plug-ins/pygimp/gimpfu.py: Use new external logo file, some layout - tweaks. - -2004-11-22 Michael Natterer - - * app/widgets/gimpcontrollerinfo.c (gimp_controller_info_init): - always create the event mapping table. Fixes tons of warnings and - non-functional controller mapping dialog when an empty controller - was deserialized from controllerrc. Spotted by drc. - -2004-11-22 Sven Neumann - - * app/app_procs.c (app_exit_after_callback): call base_exit() - before quitting the application using exit(). Fixes bug #159019. - - * app/base/tile-swap.c: moved the warning about a non-empty swap - file into #ifdef GIMP_UNSTABLE ... #endif. - -2004-11-22 DindinX - - * plug-ins/gfig/gfig-dialog.c: correctly initialize the Antialising - check box. Reported by Zigomar. - -2004-11-22 Michael Natterer - - * plug-ins/script-fu/script-fu-scripts.c: sort the SFMenu structs - by their menu_paths *and* the procedure's menu_labels. Fixes menu - item sorting after "Refresh". - -2004-11-22 Michael Natterer - - * app/tools/gimptextoptions.[ch] (gimp_text_options_editor_new): - added a "menu_factory" parameter instead of trying to get it from - the toplevel GimpDock (which does not exists if the tool options - dialog does not exist). Fixes bug #159071. - - * app/tools/gimptexttool.c (gimp_text_tool_editor): pass the - menu_factory. - - * app/dialogs/dialogs.c (dialogs_init): pass the global menu - factory also when constructing the "toplevel" dialog factory so - the above works. - -2004-11-22 Michael Natterer - - * libgimpbase/gimputils.c (gimp_any_to_utf8): use g_strndup() - instead of g_strdup() if a length was passed. - - * app/dialogs/info-window.c: g_strndup() the comment parasite's - data and pass -1 as length to gimp_any_to_utf8() so we don't - encounter the questionable (buggy?) behavior of g_utf8_validate() - to fail upon finding '\0' within the "length" passed. - Fixes bug #159051. - -2004-11-22 Michael Natterer - - * plug-ins/common/struc.c: applied patch from Wolfgang Hofer - which makes the plug-in use its procedure name for - storing the "last_vals" struct. Fixes bug #159028. - - * plug-ins/common/tileit.c: ditto. Fixes bug #159029. - -2004-11-22 DindinX - - * plug-ins/gfig/gfig-line.c: fixed a stupid bug which made all lines - half-selected. - -2004-11-22 Sven Neumann - - * app/dialogs/file-open-location-dialog.c: changed border-size of - GimpContainerEntry to 0. - -2004-11-21 Sven Neumann - - * tools/gimp-remote.c: added --no-splash command-line option that - is passed to gimp. Addresses Debian bug report #277989. - - * docs/gimp-remote.1.in: document the new option. - -2004-11-21 Manish Singh - - * configure.in: reverted previous change, as not all the lv.pos are - in CVS yet. - -2004-11-21 Peteris Krisjanis - - * configure.in: Added Latvian (lv) language support to ALL_LINGUAS. - -2004-11-21 Kevin Cozens - - * plug-ins/script-fu/scripts/erase-rows.scm: Applied patch from BM - which makes the script work layers that have their top-left corner - at a position other than the top-left corner of the image. - Fixes bug #158863. - -2004-11-21 DindinX - - * plug-ins/gfig/gfig-arc.c - * plug-ins/gfig/gfig-bezier.c - * plug-ins/gfig/gfig-circle.c - * plug-ins/gfig/gfig-dialog.c - * plug-ins/gfig/gfig-dobject.c - * plug-ins/gfig/gfig-ellipse.c - * plug-ins/gfig/gfig-line.c - * plug-ins/gfig/gfig-poly.c - * plug-ins/gfig/gfig-spiral.c - * plug-ins/gfig/gfig-star.c - * plug-ins/gfig/gfig.h: makes which object is selected more obvious by - using filled handles for the selected object. Not perfect, but - certainly a good hint. - -2004-11-21 DindinX - - * plug-ins/gfig/gfig-preview.c: call gfig_grid_colours() in the - realize callback of the preview, so the gray gc of the grid works - again. Reported by Zigomar. - - * plug-ins/gfig/gfig-dobject.c - * plug-ins/gfig/gfig-preview.h - * plug-ins/gfig/gfig-spiral.h - * plug-ins/gfig/gfig-star.h - * plug-ins/gfig/notes.txt: small cosmetics fixes. - -2004-11-21 Sven Neumann - - * plug-ins/common/compose.c - * plug-ins/common/decompose.c: transfer the image resolution to - newly created images. - -2004-11-21 Sven Neumann - - * plug-ins/gimpressionist/Brushes/snow1.pgm: reverted a change - that Hans Breuer committed here, probably accidentally. - - * plug-ins/script-fu/script-fu.c - * plug-ins/script-fu/siod-wrapper.c: reverted Hans's changes. There - is indeed a Script-Fu server on Win32. - -2004-11-21 Sven Neumann - - * menus/image-menu.xml.in: removed "Quit" from the image menu. - -2004-09-21 Hans Breuer - - * app/dialogs/makefile.msc : [new file] - app/dialogs/Makefile.am : added to EXTRA_DIST - - * **/makefile.msc app/gimpcore.def : updated - - * app/gimp.rc : let wilber be first - - * app/widgets/gimppropwidgets.c : msvc6 can't cast uint64 either - - * libgimpbase/gimpwin32-io.h : make up recent loss of ftruncate in GLib - - * libgimpthumbnail/gimpthumbnail.c : for getpid() on win32 - - * plug-ins/helpbrowser/dialog.c : include gimpwin32-io.h - - * plug-ins/script-fu/siodwrapper.c plug-ins/script-fu/script-fu.c : - there is no script-fu-server on win32 - -2004-11-21 Michael Schumacher - - * plug-ins/script-fu/scripts/addborder.scm: first resize the - image, then add the border layer and then fill it - -2004-11-20 Kevin Cozens - - * plug-ins/script-fu/script-fu-scripts.c: Need to call gettext in - script-fu_menu_compare. Spotted by Sven. Removed obsolete #define's. - -2004-11-20 Michael Natterer - - * plug-ins/script-fu/script-fu-scripts.c: renamed variable - "script_list" to "script_tree" because it's a GTree. - - (script_fu_remove_script): g_list_free() the right list (don't - leak all lists of scripts at the tree leaves). - -2004-11-20 Sven Neumann - - * Made 2.2-pre2 release. - -2004-11-20 Sven Neumann - - * plug-ins/common/glob.c: added an (optional) parameter that - allows to request the output in the filesystem encoding. - -2004-11-19 Sven Neumann - - * plug-ins/script-fu/script-fu-scripts.c (script_fu_menu_compare): - compare the menu paths, not the struct pointers. - -2004-11-19 Sven Neumann - - * plug-ins/common/glob.c: added a naive glob() implementation - which handles the most common use case and is certainly better - than nothing. Closes bug #143661 again. - -2004-11-19 Sven Neumann - - * libgimp/gimp.c: converted a g_warning() to g_printerr(). - -2004-11-19 Sven Neumann - - * plug-ins/common/xpm.c: just some minor code cleanup. - -2004-11-19 Sven Neumann - - * plug-ins/gfig/gfig-dialog.c - * plug-ins/gfig/gfig-style.c: combined two "Stroke" labels into a - single one. - -2004-11-19 Sven Neumann - - * plug-ins/common/noisify.c: applied a (modified) patch that adds - the possibility to correlate the noise with the signal. Adds the - new PDB procedure "plug_in_scatter_rgb". Fixes bug #158700. - - * plug-ins/helpbrowser/dialog.c: set a reasonable default size. - -2004-11-19 Sven Neumann - - * plug-ins/common/postscript.c (skip_ps) (ps_close): fixed use of - fread(). Unfortunately this slowed down the plug-in again. - Disabled the code that reads the pipe to the end. This brings it - back to speed. Seems to work fine for me, let's see if this causes - problems for anyone... - -2004-11-19 Sven Neumann - - * plug-ins/script-fu/scripts/selection-round.scm: moved into the - /Select/Modify menu now that we can safely use placeholders - from Script-Fu. - -2004-11-19 Michael Natterer - - * tools/pdbgen/lib.pl - * tools/pdbgen/stddefs.pdb: added support for deprecated procedures - without any replacement. - - * app/plug-in/plug-in-message.c (plug_in_handle_proc_run): added - a special warning for procedures without replacement. - - * tools/pdbgen/pdb/drawable.pdb: deprecated drawable_set_image() - without any replacement and made it a nop (which fails if the - passed image is different from the drawable's image). It's not - needed any longer since 2.0 and moreover dangerous to use. - - * app/pdb/drawable_cmds.c - * libgimp/gimpdrawable_pdb.[ch]: regenerated. - - * app/core/gimpitem.c (gimp_item_set_image): replaced assertion - for gimp_item_is_floating() by !gimp_item_is_attached(). The - former warned when adding a layer with already added mask to the - image (which is a perfectly valid operation). - -2004-11-18 Sven Neumann - - * plug-ins/common/wmf.c: added a thumbnail load procedure - (bug #158193). - -2004-11-18 Michael Natterer - - Script-Fu string cleanup/simplification: apply the same fix for - menu path translation that was done for plug-ins a while ago. - - * plug-ins/script-fu/script-fu.c (script_fu_auxillary_init): use - gimp_plugin_menu_register() on the "Refresh" temp_proc. - - * plug-ins/script-fu/scripts/*.scm: ported all scripts to use - script-fu-menu-register and pass just the menu label in - script-fu-register. Cleaned up all register calls to share a - somewhat similar formatting. - -2004-11-18 Sven Neumann - - * plug-ins/common/postscript.c: changed the default to load only - the first page of the document and added a tooltip describing how - to specify what pages to get. - -2004-11-18 Sven Neumann - - * app/file/file-open.c (file_open_thumbnail): fixed check for - number of return values. - -2004-11-18 Sven Neumann - - * plug-ins/common/postscript.c: speed up loading of multi-page - documents significantly by skipping in large chunks instead of using - fgetc() to crawl through the stream. - -2004-11-18 Sven Neumann - - * app/file/file-open.c (file_open_thumbnail): check the number of - return values. Only retrieve width and height if the thumbnail - load procedure does actually provide this information. - - * plug-ins/common/postscript.c: added a procedure to load a - thumbnail. For now it only renders the first page of the - document at low resolution. It should be extended to load an - embedded thumbnail if one is available. - - * plug-ins/common/jpeg.c - * plug-ins/common/svg.c: no need to register a menu label for the - thumbnail loaders. Allocate the return_vals array large enough to - hold all return values. - -2004-11-18 Michael Natterer - - * app/widgets/gimpenumaction.[ch]: added boolean property - "value-variable" which specifies if the GimpEnumAction::selected() - signal may be emitted with arbirtary values (value-variable = TRUE) - or *only* with enum_action->value (value-variable = FALSE). - - * app/widgets/gimpactiongroup.[ch]: added "gboolean - value_variable" to GimpEnumActionEntry and set it in - gimp_action_group_add_enum_actions(). - - * app/actions/channels-actions.c - * app/actions/colormap-editor-actions.c - * app/actions/context-actions.c - * app/actions/drawable-actions.c - * app/actions/edit-actions.c - * app/actions/error-console-actions.c - * app/actions/gradient-editor-actions.c - * app/actions/image-actions.c - * app/actions/layers-actions.c - * app/actions/palette-editor-actions.c - * app/actions/plug-in-actions.c - * app/actions/vectors-actions.c - * app/actions/view-actions.c: set "variable" to FALSE for all enum - actions except those which are used with the GIMP_ACTION_SELECT_SET - voodoo. - - * app/widgets/gimpcontrollers.c (gimp_controllers_event_mapped): - fall back to gtk_action_activate() if the action specified in a - GIMP_CONTROLLER_EVENT_VALUE mapping is not variable. Enables - triggering of enum actions from GIMP_CONTROLLER_EVENT_VALUE events - (like midi note-on and note-off). - -2004-11-18 Michael Natterer - - * acinclude.m4: pasted the complete alsa.m4 so compiling from - CVS doesn't require alsa.m4 to be installed. - - * configure.in: check for alsa >= 1.0.0 and define HAVE_ALSA - if found. - - * modules/Makefile.am: build controller_midi with ALSA_CFLAGS - and ALSA_LIBS. - - * modules/controller_midi.c: s/HAVE_ALSALIB_H/HAVE_ALSA/. - -2004-11-18 Michael Natterer - - * plug-ins/common/compressor.c (compressors): added back the - .xcf.gz and .xcf.bz2 extensions because they are the only way - to figure the special nature of this plug-in's extensions. - - * app/widgets/gimpfileprocview.[ch]: keep a list of "meta - extensions" (extensions which have a '.' themselves). - - * app/widgets/gimpfiledialog.c (gimp_file_dialog_proc_changed): - try to replace the whole extension if the last extension is one of - the meta extensions kept by GimpFileProcView. Fixes bug #158377. - -2004-11-18 Sven Neumann - - * plug-ins/maze/maze.[ch] - * plug-ins/maze/maze_face.c: removed the extra help button from - the Maze plug-in. Fixes bug #158605. - -2004-11-18 Michael Natterer - - The following fixes have no visible effect because nobody - uses gimp_plugin_menu_register() on temp_procs yet: - - * app/actions/plug-in-actions.[ch]: added - plug_in_actions_add_path() which just adds the actions needed for - a given menu math, but not the procedure action itself. - - * app/gui/gui-vtable.c (gui_menus_create_entry): create the - menu_path's actions using above function so adding of submenus to - existing ui managers works. - - * tools/pdbgen/pdb/plug_in.pdb (plugin_menu_register_invoker): - don't add a menu if "no_interface" is TRUE. - - * app/pdb/plug_in_cmds.c: regenerated. - - * plug-ins/script-fu/script-fu-scripts.c: pass untranslated - menu_paths to the core, not translated ones. Don't store the - scripts directly in the "script_list" tree but use a list of - scripts per key because there can be identical keys for different - scripts now. Fixed sorting of menu entries and menus. - -2004-11-18 Simon Budig - - * modules/controller_midi.c: implemented support for ALSA-midi, - currently disabled. Needs a configure-check and proper linking - against libasound. - -2004-11-17 Dave Neary - - * plug-ins/common/bumpmap.c: Fixed initialisation issue - that was crashing the plug-in on repeat runs. Fixes bug - #158494. - -2004-11-17 Sven Neumann - - * app/dialogs/print-size-dialog.c: added missing callbacks for the - size entries. Needs some more work though... - -2004-11-17 Manish Singh - - * plug-ins/dbbrowser/Makefile.am: make libgimpprocbrowser a libtooled - library. - - * plug-ins/dbbrowser/gimpprocbrowser.[ch]: add a user_data pointer - for GimpProcBrowserApplyCallback. - - * plug-ins/dbbrowser/gimpprocbrowser.c: only convert the name to - scheme style if scheme_names in the proc info pane too. - - * plug-ins/dbbrowser/procedure-browser.c - * plug-ins/script-fu/script-fu-console.c: pass NULL as user_data. - - * plug-ins/script-fu/Makefile.am: reference libgimpprocbrowser.la. - - * plug-ins/pygimp/Makefile.am - * plug-ins/pygimp/procbrowser.c: new module, which wraps - libgimprocbrowser. - - * plug-ins/pygimp/gimpmodule.c - * plug-ins/pygimp/pygimp.h - * plug-ins/pygimp/pygimp-pdb.c: export GimpPDBFunction so other - modules can use it. - - * plug-ins/pygimp/plug-ins/pdbbrowse.py - * plug-ins/pygimp/plug-ins/gimpcons.py: use gimpprocbrowser. - -2004-11-17 Sven Neumann - - * plug-ins/script-fu/script-fu-interface.c: added a utility - function to reduce code duplication. - -2004-11-17 Michael Natterer - - * plug-ins/script-fu/script-fu-scripts.[ch] - * plug-ins/script-fu/siod-wrapper.c: appled patch from Kevin - Cozens which adds (script-fu-menu-register) and allows scripts to - register their menu_paths the same undeprecated way as plug-ins. - Fixes bug #158117. - - * plug-ins/script-fu/scripts/test-sphere.scm: example how to use - the new API. Doesn't change strings because test-shpere.scm is an - untranslated example script. - -2004-11-17 Michael Natterer - - Made plug-in menu registration work the same way for ordinary and - temporary procedures. Addresses bug #158117. - - * app/core/gimp-gui.[ch]: added "const gchar *menu_path" to - gimp_menus_create_entry(). - - * app/gui/gui-vtable.c (gui_menus_create_entry): if menu_path is - NULL, behave as before and create an action and its menu entries - for all the procedure's menu_paths. If it is non-NULL, skip action - creation and create a menu entry just for that path. - - * app/plug-in/plug-ins.c (plug_ins_temp_proc_def_add): call - gimp_menus_create_entry() with a NULL menu path and call it if - proc_def->menu_paths *or* proc_def->menu_label is non-NULL, so - it creates at least the procedure's action, even if it has - no menu_path (yet). - - * tools/pdbgen/pdb/plug_in.pdb (plugin_menu_register): check both - the list of procs and temp_procs when trying to register the - entry. Allow ordinary procedures and extensions to install stuff - at query() and init() time and allow temp_procs to install stuff - at any time. - - * app/pdb/plug_in_cmds.c: regenerated. - -2004-11-17 Michael Natterer - - * plug-ins/dbbrowser/gimpprocbox.c - * plug-ins/dbbrowser/gimpprocbrowser.[ch] - * plug-ins/dbbrowser/gimpprocview.c: some cleanup in preparation - of moving it to a more public place. - - * plug-ins/dbbrowser/procedure-browser.c - * plug-ins/script-fu/script-fu-console.c: changed accordingly. - -2004-11-17 Sven Neumann - - * Makefile.am (DISTCHECK_CONFIGURE_FLAGS): removed --enable-gtk-doc - here since it only causes 'make distcheck' to break earlier as usual. - -2004-11-17 Sven Neumann - - * plug-ins/rcm/Makefile.am - * plug-ins/rcm/rcm_callback.c - * plug-ins/rcm/rcm_dialog.c - * plug-ins/rcm/rcm_stock.[ch]: applied a patch from Karine Proot - that replaces the XPM icons with stock icons (bug #140202). - - * plug-ins/rcm/pixmaps/*.xpm: removed. - - * plug-ins/Lighting/lighting_stock.c - * plug-ins/MapObject/mapobject_stock.c - * plug-ins/gfig/gfig-stock.c: fixed a common but harmless mistake - in the icon factory code. - -2004-11-16 Manish Singh - - * app/widgets/gimpvectorstreeview.c: Hide SVG drop g_print under - be_verbose. - -2004-11-16 Manish Singh - - * plug-ins/pygimp/gimpui.py: Handle placeholder defaults for gimp - objects (bug #158392). Patch by Joao S. O. Bueno. - -2004-11-16 Manish Singh - - * plug-ins/pygimp/gimpui.py: Use img.name if filename is not - available (bug #158392). Patch by Joao S. O. Bueno. - -2004-11-16 Manish Singh - - * plug-ins/pygimp/gimpfu.py - * plug-ins/pygimp/gimpui.py: Add a palette selector (bug #155325). - Patch by Joao S. O. Bueno. - -2004-11-16 Manish Singh - - * plug-ins/pygimp/gimpfu.py: Fix -fu slider behavior (bug #155103). - Patch by Joao S. O. Bueno. - -2004-11-16 Manish Singh - - * plug-ins/common/glasstile.c: Remove unnecessary G_OBJECT() casts. - -2004-11-16 Manish Singh - - * configure.in: - * plug-ins/pygimp/Makefile.am: Compile pygimp with - -fno-strict-aliasing if the compiler supports it. - - * plug-ins/pygimp/gimpui.py: Make "..." into "Browse..." for - everything but the filesel, for slightly more consistency with - script-fu. Addresses #124791. - - * plug-ins/pygimp/gimpmodule.c: Wrapped - gimp_context_{get,set}_gradient and - gimp_gradient_get_{uniform,custom}_samples. Deprecated the deprecated - versions of these, and rewrote them in terms of the new functions. - -2004-11-17 Michael Natterer - - * app/plug-in/plug-in.c (plug_in_close): replaced the - while(plug_in->temp_procs) "loop" which called - plug_in_proc_frame_quit() by a real for()-loop iterating over the - list of PlugInProcFrames, calling g_main_loop_quit() on each main - loop. The old version did not unroll the stack but looped - infinitely. Spotted by Yosh. - -2004-11-17 Sven Neumann - - * plug-ins/imagemap/imap_selection.c - * plug-ins/imagemap/imap_preferences.c: silent the compiler. - -2004-11-17 Michael Natterer - - * plug-ins/common/jpeg.c: applied (modified) patch from S. Mukund - which adds EXIF thumbnail loading and saving. - Fixes bugs #155761 and #158190. - -2004-11-16 DindinX - - * plug-ins/gfig/gfig-arc.c - * plug-ins/gfig/gfig-bezier.c - * plug-ins/gfig/gfig-circle.c - * plug-ins/gfig/gfig-dialog.c - * plug-ins/gfig/gfig-ellipse.c - * plug-ins/gfig/gfig-line.c - * plug-ins/gfig/gfig-poly.c - * plug-ins/gfig/gfig-spiral.c - * plug-ins/gfig/gfig-star.c - * plug-ins/gfig/gfig-style.c - * plug-ins/gfig/gfig-style.h - * plug-ins/gfig/gfig-types.h - * plug-ins/gfig/gfig.h: added a toggle so we can now choose to stroke - the painting or not. - -2004-11-16 DindinX - - * plug-ins/gfig/gfig-dialog.c: implemented the gradient fill, using a - shapeburst blend. This is very slow, but I dont see how it could be - done otherwise. - -2004-11-16 Michael Natterer - - * app/widgets/gimpfgbgeditor.c: get rid of the - gimp_fg_bg_editor_context_changed() callback and - g_signal_connect_swapped() gtk_widget_queue_draw() directly. - -2004-11-16 Michael Natterer - - * app/widgets/gimpchanneltreeview.c: implement - GimpDockedInterface::set_context() and set the context of the - embedded GimpComponentEditor. Fixes NULL-context crashes in - action callbacks when invoked from the component editor. - Spotted by Jimmac. - - Unrelated: - - * app/widgets/gimpitemtreeview.c: get rid of the - gimp_item_tree_view_context_changed() callback and - g_signal_connect_swapped() gimp_item_tree_view_set_image() - directly. - -2004-11-16 Sven Neumann - - * plug-ins/common/jigsaw.c: added missing braces around initializer. - -2004-11-16 Michael Natterer - - * tools/pdbgen/pdb/drawable_transform.pdb: renamed the new - drawable_foo_defaults() functions to drawable_foo_default() to be - consistent with paintbrush_default() and friends. - - * tools/pdbgen/pdb/transform_tools.pdb - * libgimp/gimp.def: changed accordingly. - - * app/pdb/drawable_transform_cmds.c - * app/pdb/transform_tools_cmds.c - * libgimp/gimpdrawabletransform_pdb.[ch] - * libgimp/gimptransformtools_pdb.c: regenerated. - - * plug-ins/script-fu/scripts/coolmetal-logo.scm - * plug-ins/script-fu/scripts/image-structure.scm - * plug-ins/script-fu/scripts/text-circle.scm: follow the API change. - -2004-11-16 Sven Neumann - - * app/config/gimpbaseconfig.c: increased default tile-cache-size - to 128MB. - - * app/config/gimpcoreconfig.c: increased default undo size to 16MB. - -2004-11-16 Michael Natterer - - * tools/pdbgen/pdb/image.pdb - * tools/pdbgen/pdb/selection.pdb: entirely removed the deprecated - functions "selection_clear", "image_set_cmap" and "image_get_cmap". - - * app/pdb/procedural_db.c: and added them to the compat hash table - because they have undeprecated replacements with identical - signature. - - * libgimp/gimpselection.[ch]: added gimp_selection_clear() here - instead because we need the symbol in libgimp. - - * app/pdb/image_cmds.c - * app/pdb/internal_procs.c - * app/pdb/selection_cmds.c - * libgimp/gimpselection_pdb.[ch]: regenerated. - -2004-11-16 DindinX - - * plug-ins/gfig/gfig-dobject.h: renamed the DObject type to - GfigObject, according to our common type naming. This type will - certainly become an abstract class in a near future. - - * plug-ins/gfig/gfig-arc.c - * plug-ins/gfig/gfig-bezier.c - * plug-ins/gfig/gfig-bezier.h - * plug-ins/gfig/gfig-circle.c - * plug-ins/gfig/gfig-dialog.c - * plug-ins/gfig/gfig-dobject.c - * plug-ins/gfig/gfig-ellipse.c - * plug-ins/gfig/gfig-line.c - * plug-ins/gfig/gfig-line.h - * plug-ins/gfig/gfig-poly.c - * plug-ins/gfig/gfig-poly.h - * plug-ins/gfig/gfig-spiral.c - * plug-ins/gfig/gfig-star.c - * plug-ins/gfig/gfig-types.h - * plug-ins/gfig/gfig.c - * plug-ins/gfig/gfig.h: changed accordingly. - -2004-11-16 Michael Natterer - - * app/core/gimpitem-linked.[ch] (gimp_item_linked_get_list): - removed redundant "gimage" parameter. - - * app/tools/gimpeditselectiontool.c: changed accordingly. - -2004-11-16 Michael Natterer - - * app/core/gimpchannel-select.c - * app/core/gimpchannel.c - * app/core/gimpdrawable-desaturate.c - * app/core/gimpdrawable-equalize.c - * app/core/gimpdrawable-histogram.c - * app/core/gimpdrawable-invert.c - * app/core/gimpdrawable-levels.c - * app/core/gimpdrawable-offset.c - * app/core/gimpdrawable-stroke.c - * app/core/gimpdrawable-transform.c - * app/core/gimpdrawable.c - * app/core/gimpitem-linked.c - * app/core/gimpitem.c - * app/core/gimplayer.c - * app/core/gimpselection.c - * app/paint/gimppaintcore-stroke.c - * app/text/gimptextlayer.c: in all functions which somehow - (explicitely or implicitely) touch undo, either g_return_if_fail() - on gimp_item_is_attached() or simply don't push an undo step if - feasible (e.g. for simple stuff like layer opacity). - - * tools/pdbgen/pdb/color.pdb - * tools/pdbgen/pdb/drawable.pdb - * tools/pdbgen/pdb/image.pdb - * tools/pdbgen/pdb/layer.pdb - * tools/pdbgen/pdb/paint_tools.pdb: let PDB wrappers fail - accordingly so they don't run into the assertions added above. - - * app/pdb/color_cmds.c - * app/pdb/drawable_cmds.c - * app/pdb/image_cmds.c - * app/pdb/layer_cmds.c - * app/pdb/paint_tools_cmds.c: regenerated. - -2004-11-16 Sven Neumann - - * app/actions/file-commands.c - * app/dialogs/file-save-dialog.c - * app/file/file-save.[ch] - * app/widgets/gimpfiledialog.[ch]: combined "set_uri_and_proc" and - "set_image_clean" parameters into a single "save_a_copy" - parameter. When saving a copy, attach the used URI to the image and - let the "Save a Copy" file chooser default to the last used value. - -2004-11-16 Sven Neumann - - * plug-ins/script-fu/scripts/glossy.scm: fixed typo (bug #158425). - -2004-11-15 DindinX - - * plug-ins/gfig/gfig.c: added a blurb proposed by Alan Horkan. - - * plug-ins/gfig/gfig-line.[ch]: smallish style fix. - -2004-11-15 DindinX - - * plug-ins/gfig/images/stock-ellipse.png: better icon for the ellipse - tool (a lot more elliptical) by Jimmac and Zigomar. - -2004-11-15 Sven Neumann - - * app/widgets/gimpfiledialog.c (gimp_file_dialog_add_filters): - limit the number of file extensions that are added to the file - filter menu to keep the file dialog from growing too wide. - -2004-11-15 Philip Lafleur - - * app/display/gimpdisplayshell-preview.c: Further optimization of - perspective tool preview - never calculate the same vertex more - than once. - -2004-11-15 Sven Neumann - - * app/widgets/gimpfileprocview.c (gimp_file_proc_view_get_proc) - * app/widgets/gimpfiledialog.c (gimp_file_dialog_proc_changed): - better fix for bug #158369. - -2004-11-15 Sven Neumann - - * app/widgets/gimpfiledialog.c (gimp_file_dialog_proc_changed): - return early if gimp_file_proc_view_get_proc() didn't return a file - procedure. Should fix bug #158369. - -2004-11-15 Øyvind Kolås - - * docs/gimp.txt: removed, outdated. - * docs/make_todo: removed, unused. - -2004-11-15 Sven Neumann - - * app/dialogs/print-size-dialog.c: started to redo this dialog - without using a GimpSizeBox. The widgets aren't connected, so it - isn't usable yet. - - * app/widgets/gimpprogressbox.c - * app/widgets/gimpprogressdialog.c - * app/widgets/gimpsizebox.c: trivial cleanups. - - * data/images/gimp-splash.png: splash for 2.2-pre2, done by Jimmac. - -2004-11-14 Sven Neumann - - * app/actions/image-commands.c: converted error messages that should - never appear to warnings. - -2004-11-14 DindinX - - * plug-ins/gfig/gfig-dialog.c - * plug-ins/gfig/gfig-dobject.c - * plug-ins/gfig/gfig-dobject.h: fixed a crash (the one triggered by - this sequence: draw a line, delete it, redraw something), and - corrected some ui spacing. - -2004-11-14 Sven Neumann - - * app/core/gimppalette-import.c: applied a (slightly modified) - patch from Nickolay V. Shmyrev that changes the palette import - function to not only read palettes in the RIFF format but also - GIMP and Photoshop ACT palette files (bug #158297). - -2004-11-14 Sven Neumann - - * Makefile.am (EXTRA_DIST) - * MAINTAINERS - * PLUGIN_MAINTAINERS - * TODO.xml: removed these files from the tarball and from CVS. - Doesn't make sense to keep unmaintained files around that provide - outdated and in large parts wrong information. - -2004-11-14 Sven Neumann - - * plug-ins/gfig/gfig-dialog.c (load_button_callback): use the - proper parent widget. - -2004-11-14 DindinX - - * plug-ins/gfig/gfig-dialog.c - * plug-ins/gfig/gfig-types.h: small UI tweaks, suggested by Sven. - -2004-11-14 Sven Neumann - - * configure.in - * plug-ins/rcm/Makefile.am - * plug-ins/rcm/images/Makefile.am - * plug-ins/rcm/images/rcm-360.png - * plug-ins/rcm/images/rcm-a-b.png - * plug-ins/rcm/images/rcm-ccw.png - * plug-ins/rcm/images/rcm-cw.png: added PNG versions of the XPM - icons used by the RCM plug-in. Added rules to build a header file - that can be used to get rid of the XPM files (bug #140202). - -2004-11-14 DindinX - - * plug-ins/gfig/gfig-dialog.c - * plug-ins/gfig/gfig-dialog.h - * plug-ins/gfig/gfig-dobject.c - * plug-ins/gfig/gfig-dobject.h - * plug-ins/gfig/gfig-types.h - * plug-ins/gfig/gfig.c - * plug-ins/gfig/gfig.h: replace the crappy DAllObjs struct by a GList. - Makes the code cleaner and less error prone. - -2004-11-14 Sven Neumann - - * plug-ins/pagecurl/pagecurl.c: applied a patch from Karine Proot - that replaces the XPM icons with pixbufs (bug #140202). - - * plug-ins/pagecurl/curl[0-7].xpm: removed. - -2004-11-14 Sven Neumann - - * plug-ins/gimpressionist/Makefile.am: fixed typo. - - * plug-ins/pagecurl/Makefile.am - * plug-ins/pagecurl/curl[0-7].png: added PNG versions of the XPM - icons used by the PageCurl plug-in. Added rules to build a header - file that can be used to get rid of the XPM files (bug #140202). - -2004-11-14 Philip Lafleur - - * app/display/gimpdisplayshell-preview.c: Eliminated about 396 - floating-point divides per frame in the persective preview. - -2004-11-13 Manish Singh - - Fix a bunch of warnings from Sparse: - - * app/actions/dockable-commands.c - * app/actions/layers-actions.c - * app/actions/view-commands.c - * app/base/pixel-surround.c - * app/config/gimpconfig-utils.c - * app/config/gimpscanner.c - * app/core/gimpbrushgenerated.c - * app/core/gimpcontainer.c - * app/core/gimpimage.c - * app/dialogs/palette-import-dialog.c - * app/file/gimprecentlist.c - * app/plug-in/plug-in-params.c - * app/text/gimptext-compat.c - * app/text/gimptext-parasite.c - * app/vectors/gimpbezierstroke.c - * app/vectors/gimpstroke.c - * app/widgets/gimpcellrendereraccel.c - * app/widgets/gimpselectiondata.c - * app/xcf/xcf.c - * libgimp/gimp.c - * libgimpthumb/gimpthumb-utils.c - * libgimpthumb/gimpthumbnail.c - * modules/cdisplay_proof.c - * plug-ins/Lighting/lighting_ui.c - * plug-ins/common/csource.c - * plug-ins/common/glasstile.c - * plug-ins/common/nova.c - * plug-ins/common/pcx.c - * plug-ins/common/pnm.c - * plug-ins/common/randomize.c - * plug-ins/common/screenshot.c - * plug-ins/common/sel_gauss.c - * plug-ins/common/spheredesigner.c - * plug-ins/common/wind.c - * plug-ins/gfig/gfig-dialog.c - * plug-ins/gfig/gfig-dobject.c - * plug-ins/gimpressionist/gimpressionist.c - * plug-ins/ifscompose/ifscompose.c - * plug-ins/print/gimp_main_window.c - * plug-ins/print/print.c: Cleanup integer vs. pointer confusion. - - * app/base/temp-buf.c - * app/dialogs/about-dialog.c - * plug-ins/common/bumpmap.c - * plug-ins/common/jigsaw.c - * plug-ins/gfig/gfig-dobject.c: Cosmetic cleanups. - - * app/config/gimpconfig-deserialize.c - * app/config/gimpconfig-path.c - * app/config/gimpconfigwriter.c - * app/core/gimpgradient.c - * app/tools/gimpdrawtool.c - * plug-ins/common/nlfilt.c - * plug-ins/common/unsharp.c - * plug-ins/common/zealouscrop.c: Define inline functions before they - are used. - - * app/core/gimpdrawable-blend.c: PixelRegion definition was changed - some time ago, but the initialization here didn't change. Fix it. - - * app/plug-in/plug-in-rc.c (plug_in_extra_deserialize): No need to - assign token twice in a row. - - * libgimpbase/gimpdatafiles.c (gimp_datafiles_read_directories): No - need to initialize file_data, since the code fills out all the fields. - - * plug-ins/common/CML_explorer.c - * plug-ins/common/vpropagate.c: Declare function pointers fully. - - * plug-ins/common/grid.c (pix_composite): G_INLINE_FUNC isn't needed, - we assume we can use the "inline" keyword always. - - * plug-ins/common/psd_save.c - * plug-ins/common/vinvert.c - * plug-ins/gfig/gfig-arc.c - * plug-ins/gfig/gfig-bezier.c - * plug-ins/gfig/gfig-circle.c - * plug-ins/gfig/gfig-dialog.c - * plug-ins/gfig/gfig-dobject.c - * plug-ins/gfig/gfig-ellipse.c - * plug-ins/gfig/gfig-line.c - * plug-ins/gfig/gfig-poly.c - * plug-ins/gfig/gfig-spiral.c - * plug-ins/gfig/gfig-star.c - * plug-ins/gfig/gfig.c - * plug-ins/gimpressionist/orientmap.c - * plug-ins/gimpressionist/placement.c - * plug-ins/gimpressionist/sizemap.c - * plug-ins/imagemap/imap_grid.c - * plug-ins/imagemap/imap_main.c - * plug-ins/imagemap/imap_preferences.c - * plug-ins/imagemap/imap_settings.c - * plug-ins/maze/maze.c - * plug-ins/sel2path/curve.c - * plug-ins/sel2path/fit.c - * plug-ins/sel2path/pxl-outline.c - * plug-ins/sel2path/spline.c - * plug-ins/xjt/xjt.c: Functions with no args should be declared - with (void). - - * plug-ins/common/retinex.c (MSRCR): Initialize max_preview to quiet - the compiler. - -2004-11-14 Sven Neumann - - * themes/Default/images/Makefile.am - * themes/Default/images/stock-center-16.png - * themes/Default/images/stock-center-24.png - * themes/Default/images/stock-print-resolution-16.png - * themes/Default/images/stock-print-resolution-24.png: new icons - drawn by Jimmac. - - * libgimpwidgets/gimpstock.[ch]: registered the new icons. - - * app/actions/image-actions.c - * app/dialogs/print-size-dialog.c - * app/dialogs/resize-dialog.c - * plug-ins/ifscompose/ifscompose.c: use them. - -2004-11-14 Sven Neumann - - * configure.in: bumped version to 2.2-pre2. - -2004-11-13 Manish Singh - - * tools/pdbgen/pdb/image.pdb: Adapted Sven's code into pdbgen so - that gimp_image_set_filename() validates that it is called with - a filename in the filesystem encoding which can safely be converted - to UTF-8 and back. Fixes #153751. - - * app/pdb/image_cmds.c - * libgimp/gimpimage_pdb.c: Regenerated. - -2004-11-13 Sven Neumann - - * app/dialogs/Makefile.am - * app/dialogs/print-size-dialog.[ch]: new files for the Print Size - dialog that was missing. Still work in progress... - - * app/actions/image-actions.c - * app/actions/image-commands.[ch] - * app/widgets/gimphelp-ids.h - * menus/image-menu.xml.in: integrate the new dialog. - -2004-11-13 Sven Neumann - - * tools/pdbgen/pdb/selection.pdb: deprecate gimp_selection_clear() - in favor of gimp_selection_none(). Fixes bug #156765. - - * app/pdb/selection_cmds.c - * libgimp/gimpselection_pdb.[ch]: regenerated. - -2004-11-13 Kevin Cozens - - * plug-ins/gfig/gfig.c - * plug-ins/gfig/gfig-dialog.c: Changed gimp_selection_clear() to - gimp_selection_none() (bug #156765). - -2004-11-13 Kevin Cozens - - * plug-ins/script-fu/scripts/gimp-headers.scm - * plug-ins/script-fu/scripts/gimp-labels.scm - * plug-ins/script-fu/scripts/news-text.scm - * plug-ins/script-fu/scripts/speed-text.scm: Changed calls to - gimp-selection-clear to use gimp-selection-none in preparation - for the deprecation of -clear. (bug #156765) - -2004-11-13 Sven Neumann - - * tools/pdbgen/pdb/image.pdb: document the fact that - gimp_image_get_filename() returns the filename in the filesystem - encoding. Fixed gimp_image_get_name() to actually return the name - in UTF-8 encoding. - - * app/pdb/image_cmds.c - * libgimp/gimpimage_pdb.c: Regenerated. - - * app/vectors/gimpbezierstroke.h: formatting. - -2004-11-13 Sven Neumann - - * app/core/gimpimagefile.[ch] - * app/file/file-open.c - * app/file/file-save.c: pass the MIME type from the save procedure - to gimp_imagefile_save_thumbnail() so that it can be stored with - the thumbnail. - - * tools/pdbgen/pdb/fileops.pdb - * app/pdb/fileops_cmds.c: changed accordingly. - -2004-11-13 Sven Neumann - - * app/plug-in/plug-in-proc-def.[ch] - * app/plug-in/plug-in-rc.c - * app/plug-in/plug-ins.[ch]: allow to associate a procedure for - thumbnail loading with any file load procedure. - - * tools/pdbgen/pdb/fileops.pdb: export this functionality to the - PDB as gimp_register_thumbnail_loader(). - - * app/pdb/fileops_cmds.c - * app/pdb/internal_procs.c - * libgimp/gimpfileops_pdb.[ch]: regenerated. - - * app/core/gimpimagefile.c - * app/file/file-open.[ch]: when creating a thumbnail for an image - file, use a thumbnail load procedure if available. - - * plug-ins/common/svg.c: added "file_svg_load_thumb", a procedure - that allows to load a small preview of the SVG image. - -2004-11-13 DindinX - - * app/actions/layers-actions.c: added back H as a shortcut - for "Anchor Layer". Spotted by Bruno Ronzani. - -2004-11-13 DindinX - - * plug-ins/common/retinex.c: use a GimpAspectPreview instead of a - GimpDrawablePreview. Fixes bug #157915. Also fixed the funny behaviour - of the progress bar. - -2004-11-13 Sven Neumann - - * libgimpbase/gimputils.c (gimp_strip_uline): changed based on a - patch by Joao S. O. Bueno to remove mnemonics as used in languages - like Chinese. Fixes bug #157561. - -2004-11-13 Sven Neumann - - * plug-ins/ifscompose/README.ifscompose: updated link to the - tutorial (pointed out by Alan Horkan) and added another link. - - * plug-ins/ifscompose/ifscompose.c: changed plug-in name from - "IfsCompose" to "IFS Fractal". Sorry for the late string changes - but the old name definitely was akward and probably hard to - translate anyway. Fixes bug #157135. - - * plug-ins/ifscompose/ifscompose_storage.c: removed trailing - whitespace. - -2004-11-13 Sven Neumann - - * plug-ins/common/retinex.c (retinex_dialog): fixed table size. - -2004-11-13 Simon Budig - - * app/core/gimpimage-merge.c: Return the active layer instead of - the bottom layer when just merging down a floating selection. - Untabbified. - - Fixes bug #158130. - -2004-11-12 Sven Neumann - - * app/config/gimpconfig-dump.c: better fix for bug #157971. - - * docs/gimprc.5.in: regenerated. - -2004-11-12 DindinX - - * plug-ins/gfig/images/stock-show-all.png - * plug-ins/gfig/images/stock-select-object.png: new icons made by - Jimmac. - -2004-11-12 Michael Natterer - - * app/core/gimpimage-undo-push.c: disallow non-attached items - to be pushed to the undo stack. - -2004-11-12 DindinX - - * plug-ins/gfig/images/stock-show-all.png - * plug-ins/gfig/images/stock-select-object.png: added these two stock - icons. Jimmac, these two are screaming to be redone, please. - - * plug-ins/gfig/images/Makefile.am: added these icons. - - * plug-ins/gfig/gfig-bezier.c - * plug-ins/gfig/gfig-bezier.h - * plug-ins/gfig/gfig-dialog.c - * plug-ins/gfig/gfig-poly.c - * plug-ins/gfig/gfig-poly.h - * plug-ins/gfig/gfig-spiral.c - * plug-ins/gfig/gfig-spiral.h - * plug-ins/gfig/gfig-star.c - * plug-ins/gfig/gfig-star.h - * plug-ins/gfig/gfig-stock.c - * plug-ins/gfig/gfig-stock.h - * plug-ins/gfig/gfig.h: moved all the buttons to a GtkUIManager - toolbar, which makes the code simpler and easier to read. - -2004-11-12 Sven Neumann - - * app/dialogs/tips-dialog.c: added icons to the Previous/Next - buttons (bug #158004). - -2004-11-11 Sven Neumann - - * app/gui/splash.c: lowered labels a few pixels. - -2004-11-11 Sven Neumann - - * plug-ins/gfig/gfig-dialog.c: minor code cleanup. - -2004-11-11 DindinX - - * plug-ins/gfig/gfig-dialog.c: use a GtkUIManager for the menu and - automagically have it translated! The button bar will follow the same - path. Remove the now useless "Paint" button. - -2004-11-11 Sven Neumann - - * app/config/gimpconfig-dump.c: groff doesn't like lines to start - with a single quote, we better escape it. Fixes bug #157971. - - * docs/gimprc.5.in: regenerated. - -2004-11-11 Michael Natterer - - * app/core/gimp-edit.c - * app/core/gimpdrawable-blend.c - * app/core/gimpdrawable-bucket-fill.c - * app/core/gimpitem.c (gimp_item_stroke): added precondition - checks for gimp_item_is_attached() and removed checks for - gimp_item_get_image() to actually return an image (because it - always returns an image). - - * tools/pdbgen/pdb/edit.pdb: let all wrappers fail if the drawable - is not attached. - - * app/pdb/edit_cmds.c: regenerated. - -2004-11-11 Michael Natterer - - * plug-ins/script-fu/scripts/add-bevel.scm - * plug-ins/script-fu/scripts/addborder.scm - * plug-ins/script-fu/scripts/carve-it.scm - * plug-ins/script-fu/scripts/carved-logo.scm - * plug-ins/script-fu/scripts/chip-away.scm - * plug-ins/script-fu/scripts/clothify.scm - * plug-ins/script-fu/scripts/font-map.scm - * plug-ins/script-fu/scripts/slide.scm - * plug-ins/script-fu/scripts/swirltile.scm: don't call gimp-edit-* - functions on drawables which are not added to an image because - this will be forbidden soon (because it can trash the image's undo - stack). - -2004-11-11 Michael Natterer - - * plug-ins/script-fu/scripts/lava.scm: replaced - undo-disable/enable by undo-group-start/end. - -2004-11-11 Michael Natterer - - * app/tools/gimpimagemaptool.c (gimp_image_map_tool_response): - call gimp_image_flush() after committing the image_map so the - menus are up-to-date. Fixes bug #157914. - -2004-11-11 Philip Lafleur - - * app/display/gimpdisplayshell-preview.c: Use the transform - tool coordinates when creating subdivisions, not the - texture coordinates. Fixes breakage with layers that are not - the image size. - -2004-11-11 Jay Cox - - * app/base/brush-scale.c: Keep computed brush values from - overflowing with large reduction factors. Fixes bug #76228. - -2004-11-11 Sven Neumann - - * libgimpwidgets/gimpintstore.c - * app/vectors/gimpvectors-import.c: please the overly pedantic - IRIX MIPSpro compiler and don't initialize structs with - non-constant values. - -2004-11-10 Sven Neumann - - * app/file/file-open.c (file_open_layer): add the image to the - list of recently used documents. Fixes bug #157879. - -2004-11-10 DindinX - - * plug-ins/gfig/gfig-dialog.c: moved the tool options closer to the - tools and made the dialog a bit smaller. - -2004-11-10 Sven Neumann - - * plug-ins/common/mail.c: added a menu icon (compiled-in). - -2004-11-10 Michael Natterer - - * app/display/gimpdisplayshell-handlers.c - (gimp_display_shell_resolution_changed_handler): if dot_for_dot is - off, resolution change has the same effect as size change, so call - gimp_display_shell_size_changed_handler(). Fixes display garbage. - -2004-11-10 Michael Natterer - - * plug-ins/winicon/icodialog.[ch] - * plug-ins/winicon/icoload.[ch] - * plug-ins/winicon/icosave.[ch] - * plug-ins/winicon/main.[ch]: call progress functions - unconditionally; removed global "interactive" variable; use - standard strings for open/save progress messages; gui, indentation - & coding style cleanup; untabified. - -2004-11-10 Michael Schumacher - - * plug-ins/winsnap/winsnap.c: applied a patch from Sven Neumann - with some minor modifications. Fixes bug #157612 - Removed some unused variables. - -2004-11-10 Michael Natterer - - * libgimpbase/gimputils.c (gimp_escape_uline): "Since: GIMP 2.2". - -2004-11-10 Sven Neumann - - * app/dialogs/preferences-dialog.c: set the padding-mode to custom - color if a custom color is choosen. Fixes bug #157844. - -2004-11-10 Michael Natterer - - * plug-ins/dbbrowser/plugin-browser.c (browser_dialog_new): fixed - capitalization of notebook tab label. - -2004-11-10 Michael Natterer - - * libgimpbase/gimputils.[ch]: renamed gimp_flags_get_value() to - gimp_flags_get_first_value(). Reordered functions so enum and - flags functions are grouped together. Added missing docs. - - * libgimpbase/gimpbase.def: changed accordingly. - -2004-11-09 Jay Cox - - * plug-ins/common/psd.c: Skip resources with unknown signatures - instead of quiting. Fixes bug #142468, and bug #152728 - - * app/core/gimpdrawable.c: in functions gimp_drawable_mask_bounds, - and gimp_drawable_mask_intersect: reinitialize the return values - after calling gimp_channel_bounds because gimp_channel_bounds - overwrites the values even when it returns false. This fixes the - bug where the gimp crashes when running color tools on layers - smaller than the image, and processes only part of the image when - the layer is larger than the image size. - -2004-11-10 Sven Neumann - - * HACKING: some updates. - -2004-11-10 Michael Natterer - - * plug-ins/ifscompose/ifscompose.c: use a UI manager created - toolbar instead of two rows of buttons. Added a "dummy-menubar" so - the popup menu shows shortcuts again. Removed "Preview" and "Auto" - buttons since the preview doesn't block the GUI and can always be - updated. - -2004-11-10 Michael Natterer - - * app/display/gimpstatusbar.[ch]: added new function - gimp_statusbar_push_length(), which works exactly like - push_coords() but takes only one value plus a GimpOrientationType - for specifying the value's axis. - - * app/tools/gimptool.[ch]: added the corresponding - gimp_tool_push_status_length(). - - * app/tools/gimpmovetool.c: use gimp_tool_push_status_length() - so the guide position is shown in the selected display unit. - Cleaned up the status message code a bit. - -2004-11-10 Sven Neumann - - * plug-ins/helpbrowser/dialog.c: use an idle handler to jump to the - anchor. - -2004-11-09 Manish Singh - - * plug-ins/common/bmpread.c: if the file has space in the colormap for - more than 256 entries, ignore them instead of failing. Fixes bug - #157775. - -2004-11-09 Manish Singh - - * plug-ins/common/bmpread.c: Fix cut'n'paste err so grayscale images - load again. Fixes bug #157764. - -2004-11-09 Michael Natterer - - * app/display/gimpdisplayshell-callbacks.c - (gimp_display_shell_canvas_tool_events): pass (gint)-truncated - coordinates instead of RINT()-rounded ones to - gimp_display_shell_update_cursor(). Restores correct coordinates - display for zoomed-in display and fixes bug #153534. - - * app/tools/gimpmovetool.c: added statusbar messages including the - (rounded) guide coordinate. Keeps bug #141719 closed. - -2004-11-09 Michael Natterer - - * app/display/gimpdisplayshell.c (gimp_display_shell_new): don't - connect to "event" and don't connect any canvas event to - gimp_display_shell_events(). Connect all tool events separately - (doesn't include "configure-event" and thus fixes bug #141543). - - * app/display/gimpdisplayshell-callbacks.c - (gimp_display_shell_canvas_tool_events): call - gimp_display_shell_events() manually before doing tool event - processing. - - * app/display/gimpdisplayshell.c - * app/display/gimpdisplayshell-callbacks.[ch]: connect to - "size_allocate" of the canvas, not to "configure_event" - (suggested by Owen in bug #141543). - - * app/display/gimpdisplayshell-callbacks.[ch]: removed - gimp_display_shell_popup_menu(). - - (gimp_display_shell_origin_button_press): emit "popup-menu" on the - shell manually instead of calling above function. - - * app/display/gimpdisplayshell.c: added the whole menu popup code - here. - -2004-11-09 Sven Neumann - - * libgimpwidgets/gimpoffsetarea.c (gimp_offset_area_resize): queue - a resize. Fixes remaining issues with bug #157495. - -2004-11-09 Sven Neumann - - * plug-ins/common/url.c: removed debug output. - -2004-11-08 Sven Neumann - - * app/dialogs/user-install-dialog.c (user_install_migrate_files): - don't copy menurc, the format changed anyway. - -2004-11-08 Sven Neumann - - * plug-ins/script-fu/script-fu-interface.c (script_fu_ok): - actually retrieve the value from the GtkEntry for SF-VALUE. - -2004-11-08 Michael Natterer - - * tools/pdbgen/pdb/layer.pdb: applied modified patch from Geert - Jordaens which adds the missing gimp_layer_from_mask() API. - Addresses bug #138662. - - * app/pdb/internal_procs.c - * app/pdb/layer_cmds.c - * libgimp/gimplayer_pdb.[ch]. regenerated. - - * libgimp/gimp.def: changed accordingly. - -2004-11-08 Michael Natterer - - * plug-ins/script-fu/scripts/selection-round.scm: removed garbage - from beginning of file. Removed DOS line breaks. - -2004-11-08 Michael Natterer - - * libgimp/gimppixelfetcher.c: added docs derived from a patch from - Cai Qian (bug #156271). - -2004-11-08 Sven Neumann - - * plug-ins/common/screenshot.c: changed label of default action - button to "Grab". - -2004-11-08 Sven Neumann - - * plug-ins/common/CEL.c - * plug-ins/common/CML_explorer.c - * plug-ins/common/channel_mixer.c - * plug-ins/common/gqbist.c - * plug-ins/common/spheredesigner.c - * plug-ins/flame/flame.c - * plug-ins/ifscompose/ifscompose.c: don't set help-ids on plug-in - file chooser dialogs. Set the default response for file dialogs. - -2004-11-08 Michael Natterer - - * app/dialogs/resize-dialog.c (resize_dialog_response) - * app/dialogs/scale-dialog.c (scale_dialog_response): replaced - "case GTK_RESPONSE_CANCEL:" by "default:" so it also catches - hitting the escape key or clicking the WM close button. - -2004-11-08 Øyvind Kolås - - * plug-ins/common/gqbist.c: fixed typo in construction of file - chooser, use gtk_dialog_run instead of separate callbacks for - the responses of the file chooser dialog. - -2004-11-08 Sven Neumann - - * app/core/gimpdrawable.c (gimp_drawable_mask_bounds) - (gimp_drawable_mask_intersect): initialize the return values before - checking if the drawable is attached. Keeps GIMP from going mad if - this assertion is ever triggered. - -2004-11-07 Sven Neumann - - * plug-ins/helpbrowser/dialog.c: don't connect the help browser to - the help system. - -2004-11-07 Sven Neumann - - * plug-ins/script-fu/scripts/selection-round.scm: register the - compatibility procedure with the correct name. - -2004-11-07 Sven Neumann - - * libgimpwidgets/gimpcolorbutton.c: fixed unused code (tooltip was - taken from label field). - -2004-11-07 Sven Neumann - - * plug-ins/ifscompose/ifscompose.c: ported to GtkUIManager. - -2004-11-07 Sigurd Gartmann - - * configure.in: Added support for the new locale nb to ALL_LINGUAS. - -2004-11-07 Sven Neumann - - * plug-ins/common/channel_mixer.c (query): the menu label should - have three dots (bug #157580). - -2004-11-07 DindinX - - * plug-ins/gflare/gflare.c: removed #undef GTK_DISABLE_DEPRECATED and - use a GtkListStore instead of the long-time deprecated GtkList. Done - some small cleanups, too. - -2004-11-06 Sven Neumann - - * app/core/gimpbrushgenerated.c: changed minimum brush radius from - 1.0 to 0.1. - - * app/widgets/gimpbrusheditor.c: allow a smaller brush radius to - be set in the brush editor. Fixes bug #157508. - -2004-11-06 Sven Neumann - - * app/dialogs/scale-dialog.c (scale_dialog_reset): same fix here. - -2004-11-06 Sven Neumann - - * app/dialogs/preferences-dialog.c: fixed typo (bug #157513). - -2004-11-06 Sven Neumann - - * app/dialogs/convert-dialog.c (convert_dialog_new): removed - trailing period from check button label. Fixes bug #157511. - -2004-11-06 Sven Neumann - - * app/dialogs/resize-dialog.c (resize_dialog_reset): fixed most of - the Reset functionality (bug #157495). The offset box is still not - working correctly. - - * app/widgets/gimpsizebox.c (gimp_size_box_update_resolution): - check for availability of the size entry before accessing it. - -2004-11-06 Sven Neumann - - New Win32 icons contributed by Jernej Simoncic: - - * app/Makefile.am - * app/makefile.msc - * app/gimp.rc - * app/fileicon.ico: added new file icon for the Win32 build. - - * app/wilber.ico: nicer application icon for the Win32 build. - -2004-11-05 Michael Natterer - - * plug-ins/maze/maze.c - * plug-ins/maze/maze_face.c: some irrelevant cleanups while doing - code review. - -2004-11-05 Michael Natterer - - * plug-ins/flame/flame.c: removed #undef GTK_DISABLE_DEPRECATED - because it's no longer needed. Cleaned up #defines and - declarations. Removed tabs and trailing whitespace. - -2004-11-04 Sven Neumann - - * app/widgets/gimpsessioninfo.c: be more tolerant and silently - skip entries that the dialog factory doesn't recognize. - - * app/widgets/gimpdialogfactory.c: minor cleanup. - -2004-11-04 Sven Neumann - - * app/dialogs/user-install-dialog.c (user_install_response): don't - save the (empty) gimprc after migrating the user settings. - -2004-11-04 Michael Natterer - - * plug-ins/common/uniteditor.c: undeprecated by using a - GtkUIManager for creating the toolbar. Some cleanup and code - reordering. - -2004-11-04 Michael Natterer - - * configure.in: disable the whole bunch of FOO_DISABLE_DEPRECATED - only for future versions of GLib, GTK+ and Pango because the - upcoming new stable versions add no new deprecations that are - relevant for the GIMP source. - -2004-11-04 Michael Natterer - - * plug-ins/ifscompose/ifscompose.c: some undeprecation and - cleanup. Still uses GtkItemFactory. - -2004-11-04 Michael Natterer - - Don't use deprecated GtkToolbar API in GimpTextEditor: - - * app/actions/Makefile.am - * app/actions/actions.c - * app/actions/text-editor-actions.[ch] - * app/actions/text-editor-commands.[ch]: added acions and - callbacks for the new "text-editor" action group. - - * app/menus/menus.c: register a "" UI manager. - - * menus/Makefile.am - * menus/text-editor-toolbar.xml: new file for the toolbar. - - * app/widgets/gimptexteditor.[ch]: use the toolbar created by the - UI manager instead of constructing it using deprecated API. - - * app/tools/gimptextoptions.c: changed accordingly. - - * app/widgets/gimpwidgets-utils.[ch]: added gimp_text_buffer_load() - (used by text-editor-commands.c). - -2004-11-04 Michael Natterer - - * plug-ins/ifscompose/ifscompose.c: #undef GTK_DISABLE_DEPRECATED. - -2004-11-04 Michael Natterer - - * libgimpwidgets/gimpcolorbutton.[ch]: use a GtkUIManager instead - of a GtkItemFactory. Added virtual function ::get_action_type() - and create the manager's actions manually using that action type - instead of using gtk_action_group_add_actions(). - - * app/widgets/gimpcolorpanel.c: override ::get_action_type() so it - creates GimpActions (which can have a color attached) instead of - GtkActions. Changed the menu item visibility and color preview - code accordingly. - - * app/widgets/Makefile.am - * app/widgets/gimpitemfactory.[ch]: finally removed. - - * configure.in: added -DGTK_DISABLE_DEPRECATED to CPPFLAGS again. - -2004-11-04 Michael Natterer - - * libgimpwidgets/gimpoldwidgets.c: #undef GTK_DISABLE_DEPRECATED - - * libgimpwidgets/gimpunitmenu.h: #include - explicitely and #undef GTK_DISABLE_DEPRECATED only around the - inclusion if it was defined before. - -2004-11-04 Michael Natterer - - * libgimp/gimpunitcache.h - * libgimpbase/gimpchecks.h - * libgimpbase/gimpdatafiles.h - * libgimpbase/gimplimits.h - * libgimpbase/gimpmemsize.h - * libgimpbase/gimputils.h - * libgimpbase/gimpwin32-io.h - * libgimpthumb/gimpthumb-enums.h - * libgimpthumb/gimpthumb-error.h - * libgimpwidgets/gimppreviewarea.h: added G_BEGIN_DECLS / G_END_DECLS. - -2004-11-04 Michael Natterer - - * plug-ins/common/ccanalyze.c - * plug-ins/common/uniteditor.c - * plug-ins/gfig/gfig-dialog.c - * plug-ins/gfig/gfig-preview.c - * plug-ins/ifscompose/ifscompose.c - * plug-ins/imagemap/imap_misc.c - * plug-ins/imagemap/imap_selection.c - * plug-ins/imagemap/imap_toolbar.c - * plug-ins/imagemap/imap_tools.c - * plug-ins/print/gimp_color_window.c: stop using deprecated - functions, added some #undef GTK_DISABLE_DEPRECATED where needed. - -2004-11-03 Michael Natterer - - * app/dialogs/module-dialog.c - * plug-ins/dbbrowser/gimpprocbrowser.c - * plug-ins/dbbrowser/plugin-browser.c: use - gtk_tree_model_get_iter_first() instead of the deprecated - _get_iter_root(). - - * app/display/gimpdisplayshell-callbacks.c: don't include - "widgets/gimpitemfactory.h". - -2004-11-03 Øyvind Kolås - - * app/base/gimphistogram.h: %s/historgam/histogram/ - -2004-11-03 Michael Natterer - - * app/widgets/gimpdasheditor.c (gimp_dash_editor_finalize): don't - forget to g_free(editor->segments). - -2004-11-03 Michael Natterer - - * app/display/gimpscalecombobox.c - (gimp_scale_combo_box_mru_remove_last) - * app/widgets/gimpeditor.c (gimp_editor_add_action_button) - * app/xcf/xcf-load.c (xcf_load_old_path): plugged some small leaks. - -2004-11-03 Sven Neumann - - * app/widgets/gimpfiledialog.c (gimp_file_dialog_add_filters): - plugged a mem-leak. - - * app/widgets/gimpviewrendererimagefile.c - (gimp_view_renderer_imagefile_render): don't leak the pixbuf here. - - * app/widgets/gimpviewrenderer-frame.c: added a comment. - -2004-11-03 Michael Natterer - - * app/paint-funcs/paint-funcs.c (combine_sub_region): applied - patch from Joao S. O. Bueno which moves assignments into an "else" - branch and thus optimizes the (common) "if" branch. Did some - cosmetic cleanups. - -2004-11-02 Michael Natterer - - * plug-ins/script-fu/script-fu-interface.c (script_fu_interface): - don't silently return when there is already a script running but - show a message instead. Unfortunately introduces two new strings, - but bugs are bugs. Fixes bug #123882. - -2004-11-02 Sven Neumann - - * app/core/gimpimagefile.c (gimp_imagefile_save_thumb): minor - cleanup. - - * libgimpthumb/gimpthumb-utils.c (_gimp_thumbs_delete_others): do - the right thing. Used to do the wrong thing when called with a - thumbnail size which is not from the GimpThumbSize enum. - -2004-11-02 Sven Neumann - - * app/actions/image-commands.c (image_new_from_image_cmd_callback): - call image_new_dialog_set() unconditionally. Fixes bug #157096. - -2004-11-02 Michael Natterer - - * tools/pdbgen/pdb/drawable_transform.pdb: factored out the - "invoke" bodies to two utility functions, getting rid of *tons* of - duplicated code. - - * app/pdb/drawable_transform_cmds.c: regenerated (only whitespace - and comments changed). - -2004-11-02 Michael Natterer - - * tools/pdbgen/pdb/drawable_transform.pdb (drawable_*_defaults): - renamed parameter "interpolation" to "interpolate" as suggested by - pippin. - - * app/pdb/drawable_transform_cmds.c - * libgimp/gimpdrawabletransform_pdb.[ch]: regenerated. - -2004-11-02 Michael Natterer - - * app/dialogs/user-install-dialog.c (user_install_migrate_files): - don't copy pluginrc* and themerc*. - -2004-11-02 Michael Natterer - - * libgimp/gimpimage.h: one more s/cmap/colormap/. - -2004-11-02 Michael Natterer - - * tools/pdbgen/pdb/transform_tools.pdb: deprecated all functions. - - * app/pdb/transform_tools_cmds.c - * libgimp/gimptransformtools_pdb.[ch]: regenerated. - - * plug-ins/common/tiff.c - * plug-ins/script-fu/scripts/3dTruchet.scm - * plug-ins/script-fu/scripts/coolmetal-logo.scm - * plug-ins/script-fu/scripts/image-structure.scm - * plug-ins/script-fu/scripts/perspective-shadow.scm - * plug-ins/script-fu/scripts/text-circle.scm - * plug-ins/script-fu/scripts/truchet.scm: use the new transform API. - -2004-11-02 Michael Natterer - - * tools/pdbgen/pdb/drawable_transform.pdb: added _defaults() - variants (flip_defaults, rotate_defaults, ...) for all transform - functions which finally call gimp_drawable_transform_affine(). - The _defaults() functions don't take the whole interpolation_type, - supersample etc. parameter overkill, but only a "interpolation" - boolean like the old PDB wrappers. - - * libgimp/gimp.def: changed accordingly. - - * app/pdb/drawable_transform_cmds.c - * app/pdb/internal_procs.c - * libgimp/gimpdrawabletransform_pdb.[ch]: regenerated. - -2004-11-02 Michael Natterer - - * tools/pdbgen/pdb/drawable_transform.pdb: renamed flip() and - rotate() to flip_simple() and rotate_simple(). Renamed flip_free() - and rotate_free() to flip() and rotate() (the special cases should - have a special suffix, not the general ones). - - * libgimp/gimp.def: changed accordingly. - - * app/pdb/drawable_transform_cmds.c - * libgimp/gimpdrawabletransform_pdb.[ch]: regenerated. - -2004-11-02 Michael Natterer - - * plug-ins/common/compressor.c (compressors): added missing bzip2 - command lines for Win32. - -2004-11-02 Michael Natterer - - * plug-ins/bmp/bmpread.c - * plug-ins/bmp/bmpwrite.c - * plug-ins/common/CEL.c - * plug-ins/common/animationplay.c - * plug-ins/common/animoptimize.c - * plug-ins/common/autostretch_hsv.c - * plug-ins/common/c_astretch.c - * plug-ins/common/ccanalyze.c - * plug-ins/common/color_enhance.c - * plug-ins/common/film.c - * plug-ins/common/gee.c - * plug-ins/common/gee_zoom.c - * plug-ins/common/gif.c - * plug-ins/common/gifload.c - * plug-ins/common/grid.c - * plug-ins/common/header.c - * plug-ins/common/mng.c - * plug-ins/common/normalize.c - * plug-ins/common/pcx.c - * plug-ins/common/png.c - * plug-ins/common/pnm.c - * plug-ins/common/postscript.c - * plug-ins/common/psd.c - * plug-ins/common/psd_save.c - * plug-ins/common/raw.c - * plug-ins/common/sunras.c - * plug-ins/common/tga.c - * plug-ins/common/tiff.c - * plug-ins/common/tile.c - * plug-ins/common/vinvert.c - * plug-ins/common/winclipboard.c - * plug-ins/common/winprint.c - * plug-ins/common/xbm.c - * plug-ins/common/xpm.c - * plug-ins/common/xwd.c - * plug-ins/fits/fits.c - * plug-ins/gfli/gfli.c - * plug-ins/imagemap/imap_preview.c - * plug-ins/print/print.c - * plug-ins/pygimp/pygimp-image.c - * plug-ins/winicon/main.c: use the new "colormap" functions - instead of the deprecated "cmap" ones. - -2004-11-02 Michael Natterer - - More final API cleanup: - - * tools/pdbgen/pdb/image.pdb: added gimp_image_set,get_colormap() - and deprecated set,get_cmap(). - - * libgimpwidgets/gimppreviewarea.[ch]: renamed - gimp_preview_area_set_cmap() to set_colormap(). - - * libgimp/gimp.def - * libgimp/gimpdrawablepreview.c - * libgimp/gimpexport.c - * libgimp/gimpimage.[ch] - * libgimpwidgets/gimpwidgets.def: changed accordingly. - - * app/pdb/image_cmds.c - * app/pdb/internal_procs.c - * libgimp/gimpimage_pdb.[ch]: regenerated. - - (undeprecation of plug-ins will follow...) - -2004-11-02 Michael Natterer - - * app/tools/gimpcroptool.c (crop_recalc): added "gboolean - recalc_highlight" and call gimp_display_shell_set_highlight() only - when it's TRUE. Pass TRUE from all places where the crop outline - actually changed. - - (gimp_crop_tool_control): added back the call to crop_recalc() for - the RESUME case so the outline gets updated on zoom/scroll, but pass - recalc_highlight = FALSE because it has not changed. - Fixes bug #157001. - -2004-11-02 Michael Natterer - - * tools/pdbgen/pdb/drawable_transform.pdb (flip): renamed - parameter "center" to "auto_center" and removed - "transform_direction". Renamed rotate() to rotate_free() and - added a "gboolean auto_center" parameter. Added new function - rotate() which takes enum GimpRotationType instead of an - arbiatrary angle so the flip and rotate APIs are symmetric. - - * libgimp/gimp.def: added the gimp_drawable_transform_* stuff. - - * app/pdb/drawable_transform_cmds.c - * app/pdb/internal_procs.c - * libgimp/gimpdrawabletransform_pdb.[ch]: regenerated. - -2004-11-02 Sven Neumann - - * app/dialogs/image-scale-dialog.c (image_scale_callback): actually - use the choosen interpolation type. Fixes bug #157102. - -2004-11-02 DindinX - - * plug-ins/gfig/gfig-dobject.c - * plug-ins/gfig/gfig-dobject.h - * plug-ins/gfig/gfig-preview.c - * plug-ins/gfig/gfig-style.h - * plug-ins/gfig/gfig-types.h - * plug-ins/gfig/gfig.h: some more cleanups. The current_style bug is - still there :( - -2004-11-01 Øyvind Kolås - - * app/xcf/xcf-load.c: applied patch from David Gowers, extra sanity - checking for the xcf loader, colormaps read from non indexed images - are discarded. Does not fix bug #134097, but prevents gimp from - reloading an impossible state. - -2004-11-01 Michael Natterer - - * app/core/gimpdrawable-transform.[ch] - (gimp_drawable_transform_flip): renamed "center" to "auto_center". - - (gimp_drawable_transform_rotate): added missing parameters so it - can be used for a to-be-added PDB wrapper offering a - GimpRotationType based rotate API. - - Both functions: always clip when transforming a whole channel, - since they must keep their size. - - (gimp_drawable_transform_affine): actually forward the passed - "clip_result" to transform_tiles_affine() instead of always FALSE. - -2004-11-01 Øyvind Kolås - - * app/pdb/color_cmds.c - * app/pdb/internal_procs.c - * libgimp/gimpcolor_pdb.c - * libgimp/gimpcolor_pdb.h: regenerated - * tools/pdbgen/pdb/color.pdb: added levels-stretch to @procs, removed - metainformation from deprecated levels-auto. - -2004-11-01 Øyvind Kolås - - * app/actions/drawable-actions.c - * app/actions/drawable-commands.c - * app/actions/drawable-commands.h - * app/base/levels.c - * app/base/levels.h - * app/core/gimpdrawable-levels.c - * app/core/gimpdrawable-levels.h - * app/pdb/color_cmds.c - * app/tools/gimplevelstool.c - * libgimp/gimpcolor_pdb.c - * menus/image-menu.xml - * menus/image-menu.xml.in - * tools/pdbgen/pdb/color.pdb: renamed [drawable-]levels-auto - to [drawable-]levels-stretch, anticipating other ways to automatically - determine levels settings, old PDB command maintained, but marked - as deprecated. - -2004-11-01 Sven Neumann - - * app/widgets/gimpfiledialog.c (gimp_file_dialog_add_filters): - don't check for file_proc->menu_paths. Our load and save procedure - don't necessarily register a menu path any longer. - - * app/plug-in/plug-ins.c: minor cleanup. - - * app/xcf/xcf.c (xcf_init): no need for adding menu paths for the - XCF load and save procedures. - - * tools/pdbgen/pdb/fileops.pdb: fixed outdated documentation. - - * app/pdb/fileops_cmds.c - * libgimp/gimpfileops_pdb.c: regenerated. - -2004-11-01 Michael Natterer - - * tools/pdbgen/pdb/drawable_transform.pdb: added "clip_result" to - the transform_options_args() utility function and changed all - wrappers accordingly. Removed "interpolation", "supersample" and - "recursion_level" args from drawable_transform_flip(). - - * app/pdb/drawable_transform_cmds.c - * libgimp/gimpdrawabletransform_pdb.[ch]: regenerated. - -2004-11-01 Sven Neumann - - * plug-ins/common/tiff.c (query): fixed typo. - -2004-11-01 Michael Natterer - - * app/actions/drawable-actions.c: trailing whitespace. - - * app/actions/drawable-commands.[ch]: partly revert alphabetical - ordering. Instead, group them as in drawable-actions.c and order - by alphabet inside the groups (different ordering in *-actions.c - and *-commands.c is inconvenient for the usual workflow of editing - both files at the same time). - - * app/core/gimpdrawable-levels.h: indentation. - -2004-11-01 Michael Natterer - - * themes/Small/gtkrc: don't change GtkDialog::button_spacing and - ::action_area_border because it breaks alignment with all other - dialog spacings or borders (which are hardcoded). - -2004-11-01 DindinX - - * plug-ins/gfig/gfig-types.h: new file to hold the types gfig uses. - This makes the sources easier to read. - - * plug-ins/gfig/Makefile.am: added gfig-types.h - - * plug-ins/gfig/gfig.h: removed some types definitions and put them - in gfig-types.h and ... - - * plug-ins/gfig/gfig-dobject.h - * plug-ins/gfig/gfig-style.h: ...into these files. - -2004-10-31 Sven Neumann - - * Made 2.2-pre1 release. - -2004-10-31 Simon Budig - - * data/images/gimp-splash.png: new splash based on a great photo - (and pumpkin) by Seth Burgess . - -2004-10-31 Simon Budig - - * plug-ins/common/plasma.c: Fixed handling of 1x1 selection and - selection out of drawable. - -2004-10-31 Sven Neumann - - * plug-ins/gfig/Makefile.am (EXTRA_DIST): removed pix-data.h. - -2004-10-31 Sven Neumann - - * configure.in: changed gimp_version to 2.2-pre1, to match the - naming scheme of the 2.0 pre-releases. - -2004-10-31 Sven Neumann - - * plug-ins/common/newsprint.c: removed an unused variable. - -2004-10-31 Sven Neumann - - * app/dialogs/user-install-dialog.c: when migrating the user - settings, tolerate errors and create the tmp directory that was - explicitely not copied. - -2004-10-31 Sven Neumann - - * app/config/gimpconfig-utils.c (gimp_config_file_copy): copy the - file permissions also. - - * app/dialogs/user-install-dialog.c: added code to migrate user - settings from ~/.gimp-2.0. It copies all files (except GIMP swap - files) and all subdirectories (except tmp) with all files. It - doesn't recurse into subdirectories. - -2004-10-31 Sven Neumann - - * app/config/gimpguiconfig.c: disabled the image area by default - to reduce some clutter. - -2004-10-31 Sven Neumann - - * app/dialogs/user-install-dialog.c: fixed page logic for migration - of user settings. Still missing code to actually copy the files. - -2004-10-31 Sven Neumann - - * libgimpwidgets/gimpmemsizeentry.c: don't use camel case in memory - size identifiers. - -2004-10-31 Sven Neumann - - * app/widgets/gimpimageeditor.c (gimp_image_editor_set_context): - set the active image. Fixes bug #156942. - -2004-10-31 Sven Neumann - - * app/dialogs/user-install-dialog.c: started to work on migration of - user settings (bug #156636). Not at all functional yet. - -2004-10-31 Sven Neumann - - * libgimpwidgets/gimpwidgets.c: allow for mnemonics in radio - groups created with gimp_radio_group_new(). - -2004-10-31 DindinX - - * plug-ins/gfig/gfig-dialog.c - * plug-ins/gfig/gfig-dobject.c: some more UI improvements. - -2004-10-31 Sven Neumann - - * app/widgets/gimpsizebox.c: added a size entry to edit the - resolution. This should close bug #151022. - -2004-10-31 Sven Neumann - - * app/dialogs/resize-dialog.c: connect the offset controls. - -2004-10-30 DindinX - - * plug-ins/gfig/gfig-dobject.c - * plug-ins/gfig/gfig-style.c: fixed some annoying popup messages at - the price of a smallish mem-leak that I will fix later. - -2004-10-30 Sven Neumann - - * app/composite/gimp-composite-generic.c - (gimp_composite_hue_any_any_any_generic): do nothing if the color - has no saturation. Patch by Joao S. Bueno. Fixes bug #123296. - -2004-10-30 Sven Neumann - - * app/actions/image-commands.c (image_scale_cmd_callback): destroy - the scale dialog when the display is disconnected. - - * app/dialogs/resize-dialog.c: fixed a couple of bugs related to - the offset area. Still work in progress. - -2004-10-30 DindinX - - * plug-ins/common/newsprint.c: Moved the preview to the left, as - suggested by Joao S. O. Bueno. - -2004-10-30 DindinX - - * plug-ins/gfig/gfig-dialog.c - * plug-ins/gfig/gfig-line.c - * plug-ins/gfig/gfig-line.h - * plug-ins/gfig/gfig-poly.c - * plug-ins/gfig/gfig-preview.c - * plug-ins/gfig/gfig-star.c - * plug-ins/gfig/gfig-style.c - * plug-ins/gfig/gfig-style.h: some more cleanups and UI tweaks. Still - work in progress. - - * plug-ins/gfig/pix-data.h: removed this empty, unused file. - -2004-10-30 Sven Neumann - - * app/config/gimpguiconfig.[ch] - * app/config/gimprc-blurbs.h - * app/dialogs/preferences-dialog.c - * app/tools/gimpmoveoptions.[ch] - * app/tools/gimpmovetool.[ch]: reverted changes for bug #156801. - Instead added a gimprc option that allows to get the old behaviour - back. - -2004-10-30 Sven Neumann - - * app/tools/gimpmoveoptions.[ch] - * app/tools/gimpmovetool.[ch]: applied (cleaned up version of) a - patch from Joao S. O. Bueno that adds a tool-option to restore the - old Move tool behaviour. Fixes bug #156801. - -2004-10-30 Sven Neumann - - * plug-ins/common/despeckle.c: applied a patch from Geert Jordaens - that improves the Despeckle algorithm. See bug #72862. - -2004-10-29 Kevin Cozens - - * plug-ins/script-fu/siod-wrapper.c (init_constants): Updated to - use convert_string() to change name of constant to Scheme format. - -2004-10-30 Sven Neumann - - * INSTALL - * NEWS - * README: updated for 2.2 pre-releases. - -2004-10-30 Sven Neumann - - * plug-ins/common/grid.c (run): applied patch by Joao S. O. Bueno - that implements the opacity parameters the way it is documented. - Fixes bug #156750. - -2004-10-30 Sven Neumann - - * plug-ins/common/glasstile.c: applied patch from Yeti, updated by - Kevin Cozens and modified by me. Fixes bug #85261. - -2004-10-29 Øyvind Kolås - - * tools/pdbgen/pdb/color.pdb: moved body of code from here. - - * app/core/gimpdrawable-levels.[ch]: to here. - * app/core/Makefile.am: added gimpdrawable-levels.[ch]. - * app/pdb/color_cmds.c: regenerated. - - * app/actions/drawable-actions.c - * app/actions/drawable-commands.[ch]: added drawable-layers-auto - action. - - * app/widgets/gimphelp-ids.h: added GIMP_HELP_LAYER_WHITE_BALANCE. - * app/menus/image-menu.xml.in: added new auto/White Balance action. - * app/menus/image-menu.xml: regenerated. - -2004-10-29 Sven Neumann - - * app/widgets/gimpuimanager.c (gimp_ui_manager_entry_load) - * app/widgets/gimpclipboard.c (gimp_clipboard_init): only be - verbose on request. - - * app/plug-in/plug-in.c (plug_in_close): turned warnings into - messages and respect gimp->be_verbose. - -2004-10-29 Øyvind Kolås - - * app/actions/drawable-commands.[ch] - * app/actions/drawable-actions.[ch]: alphabetized file pending - addition. - -2004-10-29 Kevin Cozens - - * plug-ins/script-fu/scripts/test-sphere.scm: Added notes about - use of SF-PALETTE. - -2004-10-29 Sven Neumann - - * plug-ins/common/jpeg.c: pass the name in filesystem encoding to - gimp_image_set_filename(). Fixes bug #153751 for the JPEG plug-in. - -2004-10-29 Sven Neumann - - * app/file/file-utils.c (file_utils_uri_to_utf8_filename): when - the filename cannot be converted to UTF-8, warn and return the URI - instead. This is a workaround for the crash described in bug #153751. - -2004-10-29 Michael Natterer - - * app/dialogs/dialogs.c (toplevel_entries): added foreign entries - for the keyboard shortcut and the controller action dialogs. - - * app/dialogs/preferences-dialog.c - * app/widgets/gimpcontrollereditor.c: register the dialogs with - the "toplevel" dialog factory so they remember their size and - position. - -2004-10-29 Michael Natterer - - * plug-ins/dbbrowser/gimpprocbrowser.c - * plug-ins/dbbrowser/plugin-browser.c: don't say "1 Procedures" or - "1 Plug-In Interfaces" but use the singular form instead. - -2004-10-29 Michael Natterer - - * plug-ins/common/flarefx.c - * plug-ins/common/nova.c: changed preview cursors to GDK_CROSSHAIR. - - * plug-ins/common/iwarp.c - * plug-ins/gflare/gflare.c - * plug-ins/ifscompose/ifscompose.c: added GDK_CROSSHAIR preview - cursors. Not quite perfect for IfsCompose (actually needs tool- - and constext-sensitive cursors) but definitely better than - before. Fixes bug #90519. - -2004-10-29 Sven Neumann - - * tools/pdbgen/pdb/edit.pdb: mention gimp_drawable_fill() in the - docs for gimp_edit_fill(). - - * app/pdb/edit_cmds.c - * libgimp/gimpedit_pdb.c: regenerated. - -2004-10-28 DindinX - - * plug-ins/gfig/gfig-arc.c - * plug-ins/gfig/gfig-bezier.c - * plug-ins/gfig/gfig-bezier.h - * plug-ins/gfig/gfig-dialog.c - * plug-ins/gfig/gfig-dialog.h - * plug-ins/gfig/gfig-dobject.c - * plug-ins/gfig/gfig-dobject.h - * plug-ins/gfig/gfig-ellipse.c - * plug-ins/gfig/gfig-grid.c - * plug-ins/gfig/gfig-grid.h - * plug-ins/gfig/gfig.c: small cleanups - -2004-10-28 Sven Neumann - - * libgimp/gimpdrawablecombobox.c - * libgimp/gimpimagecombobox.c: changed the API docs to suggest to - use gimp_int_combo_box_connect() with these widgets. We don't want - more people to be caught by bug #156659. - -2004-10-28 Sven Neumann - - * plug-ins/common/grid.c: fixed a long-standing cut'n'paste bug - which caused the intersection color to be drawn with the wrong - shade of gray when drawing on a grayscale drawable. - -2004-10-28 Sven Neumann - - * app/dialogs/resize-dialog.c: added the offset area back. Still - work in progress. - -2004-10-28 Sven Neumann - - * plug-ins/helpbrowser/dialog.c: only create a "Document not - found" error page if the requested URL was a page to load, not a - supplementary URL like an image. Fixes bug #138275. - -2004-10-28 Sven Neumann - - * plug-ins/bmp/bmp.c - * plug-ins/common/CEL.c - * plug-ins/common/aa.c - * plug-ins/common/compressor.c - * plug-ins/common/csource.c - * plug-ins/common/dicom.c - * plug-ins/common/gbr.c - * plug-ins/common/gif.c - * plug-ins/common/gifload.c - * plug-ins/common/gih.c - * plug-ins/common/gtm.c - * plug-ins/common/header.c - * plug-ins/common/jpeg.c - * plug-ins/common/mng.c - * plug-ins/common/pat.c - * plug-ins/common/pcx.c - * plug-ins/common/pix.c - * plug-ins/common/png.c - * plug-ins/common/pnm.c - * plug-ins/common/postscript.c - * plug-ins/common/psd.c - * plug-ins/common/psd_save.c - * plug-ins/common/psp.c - * plug-ins/common/sunras.c - * plug-ins/common/svg.c - * plug-ins/common/tga.c - * plug-ins/common/tiff.c - * plug-ins/common/url.c - * plug-ins/common/wmf.c - * plug-ins/common/xbm.c - * plug-ins/common/xpm.c - * plug-ins/common/xwd.c - * plug-ins/faxg3/faxg3.c - * plug-ins/fits/fits.c - * plug-ins/gfli/gfli.c - * plug-ins/sgi/sgi.c - * plug-ins/winicon/main.c - * plug-ins/xjt/xjt.c: removed the calls to gimp_plugin_menu_register() - from all plug-ins. File plug-ins don't register into a menu any longer. - -2004-10-28 Sven Neumann - - * plug-ins/common/raw.c (query): do not install an extension for - the raw plug-in to avoid confusion with the dcraw format. - -2004-10-28 Sven Neumann - - * app/actions/layers-actions.c (layers_actions_update): do not set - the "layers-mask-add" action insensitive if there's no alpha channel. - - * app/actions/layers-commands.c (layers_add_mask_response): add an - alpha channel if there isn't one already. Fixes bug #156676. - -2004-10-28 Sven Neumann - - * plug-ins/script-fu/script-fu-interface.c (script_fu_interface): - use gimp_int_combo_box_connect() so that the initial selection - causes the "changed" callback to be run. Should fix bug #156659. - -2004-10-28 Øyvind Kolås - - * app/display/gimpdisplayshell-preview.c: Improve preview accuracy of - perspective transform, by subdiving into a 5x5 grid. - - Fixes bug #152222. - -2004-10-27 Philip Lafleur - - * app/display/gimpdisplayshell-preview.c: Really fixed all cases - of the perspective tool preview breaking with certain orientations by - using triangles instead of quads. - -2004-10-27 Philip Lafleur - - * app/display/gimpdisplayshell-preview.c: Hopefully fixed all cases - of the perspective tool preview breaking with certain orientations. - -2004-10-27 Manish Singh - - * tools/pdbgen/enumcode.pl: Don't declare $first twice. - - * libgimp/Makefile.am: Be sure to distribute gimpenums.c.tail. - - * libgimp/gimpenums.c.tail: Added into CVS. - -2004-10-27 DindinX - - * plug-ins/gfig/gfig-bezier.[ch]: added a notebook page for the - bezier tool options instead of yet another popup window. - - * plug-ins/gfig/gfig-dialog.c: modified accordingly and HIGed a bit. - -2004-10-27 Øyvind Kolås - - * app/core/gimpdrawable-transform.c: made the fixed point used in - supersampling configurable (in source) and changed from 15.16 to - 21.10 fixed point. - - Fixes bug #128594 for drawables less than 2G wide. - -2004-10-27 Michael Schumacher - - * app/widgets/gimpwidgets-utils.c: fixed a typo in - #include "libgimpbase/gimpwin32-io.h" - -2004-10-27 DindinX - - * plug-ins/gfig/gfig-dialog.[ch] - * plug-ins/gfig/gfig-poly.[ch] - * plug-ins/gfig/gfig-spiral.[ch] - * plug-ins/gfig/gfig-star.[ch] - * plug-ins/gfig/gfig.h: first step of moving all the hidden popup - dialogs for the tool options in a GtkNotebook showing the options - within one page for each tool. - -2004-10-27 Sven Neumann - - * tools/pdbgen/enumcode.pl: removed trailing commmas from output. - -2004-10-27 Sven Neumann - - * tools/pdbgen/enumcode.pl: fixed loop control in - _gimp_enums_init(). This caused all plug-ins to crash immidiately. - You will need to make sure that libgimp/gimpenums.c.tail is - recreated and appended to libgimp/gimpenums.c - -2004-10-27 Michael Natterer - - * app/core/gimp-transform-utils.[ch]. switch from x1,y1,x2,y2 - bounding boxes to x,y,width,height ones. Added - gimp_transform_matrix_flip_free(). Renamed some parameters to be - consistent with others. Some internal cleanup. - - * app/tools/gimpperspectivetool.c - * app/tools/gimpscaletool.c - * app/tools/gimpsheartool.c - * tools/pdbgen/pdb/drawable_transform.pdb - * tools/pdbgen/pdb/transform_tools.pdb: changed accordingly. - - * tools/pdbgen/pdb/drawable_transform.pdb - * tools/pdbgen/pdb/transform_tools.pdb: guard all transform - wrappers with if(gimp_drawable_mask_intersect(...)), also the - ones which don't need the returned bounding box. - - * tools/pdbgen/pdb/drawable_transform.pdb: renamed some parameters - and added gimp_drawable_transform_matrix() which takes the 9 - coefficients of a 3x3 matrix for ultimate flexibility ;) - - * app/pdb/drawable_transform_cmds.c - * app/pdb/internal_procs.c - * app/pdb/transform_tools_cmds.c - * libgimp/gimpdrawabletransform_pdb.[ch]: regenerated. - -2004-10-27 Sven Neumann - - * app/actions/dockable-actions.c (dockable_toggle_actions): changed - menu label from "Show Image Menu" to "Show Image Selection". - - * app/widgets/gimpsizebox.c: unmarked a string for translation. - - * app/dialogs/scale-dialog.c: added back the message when scaling - an indexed image. - -2004-10-27 DindinX - - * libgimp/gimpaspectpreview.c: really use the second parameter of - gimp_aspect_preview_new (), so plug-ins can now really remember the - state of the preview between invocations. - - * libgimpwidgets/gimpscrolledpreview.c: fix a little typo - - * plug-ins/common/channel_mixer.c: fix a warning by using TRUE for a - boolean value (initial state of the preview) instead of a weird NULL. - -2004-10-27 Michael Natterer - - * modules/controller_linux_input.c - * modules/controller_midi.c: don't g_free(error) but - g_clear_error(&error) the GError. - -2004-10-27 Sven Neumann - - * app/dialogs/resize-dialog.[ch]: started to redo the Resize - dialog in the style of the new Scale dialog. Only halfway done but - at least the new API is there. - - * app/actions/image-commands.c - * app/actions/layers-commands.c: changed accordingly. - - * app/dialogs/image-scale-dialog.c: cosmetics. - -2004-10-27 DindinX - - * plug-ins/gfig/*[ch]: preliminary cleanups: removed all trailing - spaces. - -2004-10-26 Manish Singh - - * tools/pdbgen/pdb/drawable_transform.pdb: removed abuse of init, - called pdb_misc in all procedures. - - * app/pdb/drawable_transform_cmds.c - * libgimp/gimpdrawabletransform_pdb.c: regenerated. - -2004-10-27 Sven Neumann - - * libgimp/Makefile.am (PDB_WRAPPERS_H, PDB_WRAPPERS_C): added new - files gimpdrawabletranform_pdb.[ch]. - -2004-10-27 Sven Neumann - - * app/dialogs/Makefile.am - * app/dialogs/image-scale-dialog.[ch]: a wrapper around the scale - dialog that takes care of verifying the user input and optionally - asking for confirmation. Most of this moved out of image-commands.c. - - * app/actions/image-commands.c: use the new image scale dialog - even though it doesn't allow to edit the resolution yet. That's a - temporary regression that will get fixed soon. - - * app/actions/layers-commands.c: cosmetics. - - * app/dialogs/scale-dialog.c (scale_dialog_reset): also reset the - resolution. - - * app/widgets/gimpsizebox.c: fixed cut'n'paste error. - -2004-10-27 Sven Neumann - - * app/widgets/gimpsizebox.[ch]: added a resolution label similar - to one in the template editor. Prepared for editable resolution, - work in progress... - - * app/dialogs/scale-dialog.[ch]: added resolution and resolution - unit parameters to ScaleDialogCallback. - - * app/actions/layers-commands.c: changed accordingly. - -2004-10-26 Sven Neumann - - * app/widgets/gimptemplateeditor.c: commented out the memory size - label. The visual clutter of it's bold appearance was IMO not - appropriate. I think the dialog is better without it. - - * app/widgets/gimpsizebox.c: added a pixel size label as in the - Image New dialog. - -2004-10-26 Sven Neumann - - * tools/pdbgen/enumcode.pl: added gtk-doc comment for - gimp_enums_get_type_names(). - -2004-10-26 Sven Neumann - - * plug-ins/common/retinex.c: applied patch by Geert Jordaens that - lets Retinex deal with RGBA drawables. Closes bug #135594 again. - -2004-10-26 Sven Neumann - - Added new drawable transform API to the PDB. Largely based on - patches from Joao S. O. Bueno. Fixes bug #137053. - - * app/core/gimpdrawable-transform.[ch]: added missing parameters - to gimp_drawable_transform_flip(). - - * tools/pdbgen/pdb/transform_tools.pdb: changed accordinly. - - * app/base/base-enums.h - * app/core/core-enums.h: removed pdp-skip for GimpInterpolationType - and GimpTransformDirection enums. - - * libgimp/gimpenums.h - * plug-ins/pygimp/gimpenums.py - * tools/pdbgen/enums.pl - * tools/pdbgen/groups.pl: regenerated. - - * tools/pdbgen/Makefile.am - * tools/pdbgen/pdb/drawable_transform.pdb: added new file defining - the new PDB calls. - - * app/pdb/Makefile.am - * app/pdb/drawable_transform_cmds.c - * app/pdb/internal_procs.c - * app/pdb/transform_tools_cmds.c - * libgimp/gimp_pdb.h - * libgimp/gimpdrawabletransform_pdb.[ch]: regenerated. - -2004-10-26 Michael Natterer - - * modules/controller_linux_input.c - * modules/controller_midi.c: don't enter an infinite blocking loop - when the user selects an input file that can be opened, but not - read (like a directory). - -2004-10-26 Michael Natterer - - * app/widgets/gimpactionview.[ch] (gimp_action_view_new): added - parameter "const gchar *select_action" and preselect the passed - action if non-NULL. Made the column enum public to users of this - widget can get data from its tree store. - - * app/dialogs/preferences-dialog.c (prefs_keyboard_shortcuts_dialog): - pass NULL because we don't want a preselected action here. - - * app/widgets/gimpcontrollereditor.[ch]: added "Edit" and "Delete" - buttons to change the event -> action mapping. Implement a action - chooser dialog using GimpActionView. Fixes bug #106920. - -2004-10-26 Sven Neumann - - * app/actions/channels-commands.c - * app/core/gimpchannel-select.c - * app/core/gimpimagefile.c - * app/core/gimpundo.c - * app/widgets/gimpcomponenteditor.c: use the new enum utility - functions from libgimpbase instead of accessing enum_value->value_name. - -2004-10-26 Michael Natterer - - * app/dialogs/quit-dialog.c (quit_dialog_container_changed): when - changing the button's label to "Quit", also make it the default - action. - -2004-10-26 Michael Natterer - - * app/widgets/Makefile.am - * app/widgets/widgets-types.h - * app/widgets/gimpcontrollereditor.[ch]: new widget built from - preliminary code from the prefs dialog. Prerequisite for finally - fixing bug #106920. - - * app/dialogs/preferences-dialog.c: use the new widget. - -2004-10-26 Michael Natterer - - * plug-ins/common/retinex.c: cleaned up the GUI and GIMP-specific - code a bit. Use gimp_drawable_mask_intersect(). - -2004-10-25 Manish Singh - - * tools/pdbgen/enumcode.pl: Use $1 instead of deprecated \1 for - regexp group. - -2004-10-26 Michael Natterer - - * plug-ins/script-fu/siod-wrapper.c (marshall_proc_db_call): - my last change removed the sanity check for array_length >= 0. - Put it back. - -2004-10-26 Michael Natterer - - * libgimpbase/gimpbase.def: updated. - -2004-10-25 DindinX - - * plug-ins/common/retinex.c: added this new plug-in. - Addresses bug #135594 - - * plug-ins/common/plugin-defs.pl: modified accordingly. - - * plug-ins/common/.cvsignore - * plug-ins/common/Makefile.am: regenerated. - - * plug-ins/gfig/gfig-arc.c - * plug-ins/gfig/gfig-arc.h - * plug-ins/gfig/gfig-circle.c - * plug-ins/gfig/gfig-circle.h - * plug-ins/gfig/gfig-dialog.c: smallish style cleanups - -2004-10-25 Michael Natterer - - * plug-ins/script-fu/siod-wrapper.c (marshall_proc_db_call): - silently accept arrays which are longer than specified. Nothing - bad can happen and it's common practice to resize arrays in fixed - size chunks so avoid frequent resizing. Fixes bug #155359. - -2004-10-25 Michael Natterer - - * plug-ins/script-fu/siod-wrapper.c (init_constants): removed - debugging output i forgot. - -2004-10-25 Sven Neumann - - * app/dialogs/quit-dialog.c: change the action button's label to - "Quit" if there are no images with unsaved changes. - -2004-10-25 Michael Natterer - - * libgimpbase/gimpbaseenums.[ch]: register some missing enums. - - * tools/pdbgen/enumcode.pl: removed code to generate - plug-ins/script-fu/script-fu-constants.c, generate code to - explicitely initialize and query all of libgimp*'s enums - and write it to libgimp/gimpenums.c.tail - - * libgimp/gimpenums.h: regenerated. - - * libgimp/Makefile.am: append gimpenums.c.tail to gimpenums.c - - * libgimp/gimp.c (gimp_main): call g_type_init() and - _gimp_enums_init(). - - * libgimp/gimp.def: added gimp_enums_get_type_names(). - - * plug-ins/script-fu/Makefile.am - * plug-ins/script-fu/script-fu-constants.[ch]: removed these files. - - * plug-ins/script-fu/siod-wrapper.c: dynamically register all - constants using gimp_enums_get_type_names() and introspection. - Also register the built-in unit types. - - * plug-ins/script-fu/script-fu.c: changed accordingly. - -2004-10-25 Michael Natterer - - Don't store human readable and translatable enum/flag strings in - GEnumValue's and GTypeValue's fields but attach them to their - GType using separate structs and utility functions: - - * tools/gimp-mkenums: added params and perl voodoo to support - generating a second array of values, which is used by the - Makefiles below to create and register arrays of value - descriptions. - - * libgimpbase/gimpbasetypes.[ch]: added API to attach/retreive - arrays of translatable strings to/from enum and flags types. Added - structs GimpEnumDesc and GimpFlagsDesc for that purpose. - - * libgimpbase/gimputils.[ch]: changed existing enum utility - functions, added new ones and added a symmetric API for flags. - - * app/base/Makefile.am - * app/core/Makefile.am - * app/display/Makefile.am - * app/paint/Makefile.am - * app/text/Makefile.am - * app/tools/Makefile.am - * app/widgets/Makefile.am - * libgimp/Makefile.am - * libgimpbase/Makefile.am: changed *-enums.c generation rules - accordingly. - - * app/base/base-enums.c - * app/core/core-enums.c - * app/display/display-enums.c - * app/paint/paint-enums.c - * app/text/text-enums.c - * app/tools/tools-enums.c - * app/widgets/widgets-enums.c - * libgimpbase/gimpbaseenums.c: regenerated. - - * app/widgets/gimpenumstore.c - * app/widgets/gimpenumwidgets.c - * app/widgets/gimptemplateeditor.c - * libgimpwidgets/gimppreviewarea.c: follow the enum utility - function API changes. - -2004-10-25 Sven Neumann - - * plug-ins/imagemap/imap_cmd_gimp_guides.c - * plug-ins/imagemap/imap_edit_area_info.c - * plug-ins/imagemap/imap_main.c - * plug-ins/imagemap/imap_menu.[ch] - * plug-ins/imagemap/imap_menu_funcs.[ch] - * plug-ins/imagemap/imap_misc.c - * plug-ins/imagemap/imap_settings.c - * plug-ins/imagemap/imap_source.c: added a menu entry for Help. - Did more minor layout adjustments for HIG compliance. - -2004-10-25 Michael Natterer - - * app/core/gimpobject.c: #include "libgimpbase/gimpbase.h", not - just gimputils.h - -2004-10-25 Michael Natterer - - * menus/toolbox-menu.xml.in: commented out the "Debug" submenu. - Should do this via an xsltproc --param actually... - -2004-10-25 DindinX - - * plug-ins/common/newsprint.c: removed debugging g_print and - remove my memory fix, since it was buggy and shouldn't be done. - My fix just broke this plug-in (reported by Joao S. O. Bueno - Calligaris) - -2004-10-25 Simon Budig - - * app/tools/gimpvectortool.c: Switch to design mode when - Escape gets pressed. Untabbified. - -2004-10-25 Michael Natterer - - * app/actions/gradient-editor-commands.c - * app/display/gimpdisplayshell-preview.c: irrelevant coding style - and spacing cleanups. - - * app/widgets/gimpimageeditor.c: removed utility function - gimp_image_editor_context_changed() and connect - gimp_image_editor_set_image() directly using - g_signal_connect_swapped(). - -2004-10-25 Sven Neumann - - * plug-ins/imagemap/imap_circle.c - * plug-ins/imagemap/imap_cmd_gimp_guides.c - * plug-ins/imagemap/imap_cmd_guides.c - * plug-ins/imagemap/imap_default_dialog.[ch] - * plug-ins/imagemap/imap_edit_area_info.c - * plug-ins/imagemap/imap_grid.c - * plug-ins/imagemap/imap_main.c - * plug-ins/imagemap/imap_misc.c - * plug-ins/imagemap/imap_polygon.c - * plug-ins/imagemap/imap_preferences.c - * plug-ins/imagemap/imap_rectangle.c - * plug-ins/imagemap/imap_selection.c - * plug-ins/imagemap/imap_source.c - * plug-ins/imagemap/imap_toolbar.c - * plug-ins/imagemap/imap_tools.c: reviewed for HIG - compliance. Various other minor fixes. Closes bug #150004. - -2004-10-25 Kevin Cozens - - * plug-ins/script-fu/scripts/test-sphere.scm: Added parameter - missing from argument list. - -2004-10-25 Michael Natterer - - * tools/pdbgen/enumcode.pl - * libgimp/Makefile.am: register all enums in libgimp/gimpenums.h - with the type system. - - * libgimp/gimpenums.h: regenerated. - - * libgimp/gimp.def: updated. - -2004-10-25 Sven Neumann - - * configure.in: gimp_user_version should be 2.2. - - * libgimpmodule/Makefile.am (AM_CPPFLAGS): cleanup. - -2004-10-25 Sven Neumann - - * configure.in: - * app/Makefile.am - * tools/Makefile.am: bumped version to 2.2.0-pre1, set app version - to 2.2, reset other versions to 2.0. Changed library versioning so - we install with the same soname as gimp-2.0 again. - -2004-10-25 Sven Neumann - - * app/core/gimpimagefile.c (gimp_imagefile_get_desc_string): say - "Click to create preview" if no preview is available. - -2004-10-25 Michael Natterer - - * app/widgets/gimpwidgets-utils.[ch]: added gimp_text_buffer_save() - which saves a GtkTextBuffer's contents to a file. - - * app/widgets/gimperrorconsole.c: use - gimp_editor_add_action_button() and removed all "clicked" - callbacks, including all file saving code. - - * app/actions/error-console-actions.c - * app/actions/error-console-commands.[ch]: added the code removed - above to the action callbacks. Use gimp_text_buffer_save(). - -2004-10-24 Michael Natterer - - * app/widgets/gimpgradienteditor.[ch] - * app/widgets/gimppaletteeditor.[ch]: added public APIs for - zooming the editors. Use gimp_editor_add_action_button() to create - all buttons. Removed all button callbacks and all duplicated - button sensitivity logic. - - * app/widgets/gimpdataeditor.c (gimp_data_editor_set_data): update - the editor's UI manager if it exists. - - * app/actions/gradient-editor-actions.c - * app/actions/gradient-editor-commands.[ch]: added zoom actions - and callback and call gimp_gradient_editor_zoom(). Fixed - gradient_editor_actions_update() to actually set all items' - sensitivity (it was possible to modify read-only gradients and - even to crash GIMP). - - * app/actions/palette-editor-actions.c - * app/actions/palette-editor-commands.[ch]: changed "new" and - "zoom" actions to actually do their job instead of calling - gtk_button_clicked(editor->foo_button). - -2004-10-24 Michael Natterer - - * app/widgets/gimpcolormapeditor.c: removed the "Edit Color" - dialog callbacks and use gimp_editor_add_action_button() for - the edit button. Removed button sensitivity logic. Hide the - color dialog when the image's mode changes. - - * app/actions/colormap-editor-actions.c: added missing tooltip - for the edit action. - - * app/actions/colormap-editor-commands.c: implement the dialog - here. - -2004-10-24 DindinX - - * app/core/gimpdrawable-desaturate.c: only return early if there's - nothing to desaturate. - -2004-10-24 Michael Natterer - - * app/actions/vectors-commands.c: don't leak the filenames of the - import and export dialogs. - -2004-10-24 Michael Natterer - - * app/dialogs/Makefile.am - * app/dialogs/vectors-export-dialog.[ch] - * app/dialogs/vectors-import-dialog.[ch]: new files. - - * app/actions/vectors-commands.c: use the new dialogs and remember - their last values. - -2004-10-23 Sven Neumann - - * app/actions/vectors-commands.c: added missing controls to the - path import and export dialogs. - -2004-10-23 DindinX - - * plug-ins/common/newsprint.c: cleaned it up, fixed a (documented) - memory leak and the weird behaviour of the resolution scales. - -2004-10-23 DindinX - - * plug-ins/common/newsprint.c: added a preview. - -2004-10-23 Michael Natterer - - * libgimp/gimpaspectpreview.h - * libgimp/gimpdrawablepreview.h - * libgimp/gimpprogressbar.h - * libgimpwidgets/gimpcellrenderercolor.h - * libgimpwidgets/gimpcellrenderertoggle.h - * libgimpwidgets/gimpframe.h - * libgimpwidgets/gimpintcombobox.h - * libgimpwidgets/gimpintstore.h - * libgimpwidgets/gimppreview.h - * libgimpwidgets/gimppreviewarea.h - * libgimpwidgets/gimpscrolledpreview.h: added padding to all class - structs which have been added since 2.0. - -2004-10-23 Michael Natterer - - * app/actions/file-commands.c (file_save_cmd_callback): don't - g_return_if_fail() if there is no active drawable, just silently - return. - - * app/actions/image-commands.c: remember the last merge_type of - the "Merge Visible Layers" dialog. - - * app/actions/layers-commands.c: remeber the last values of the - "Add Layer Mask" dialog. - - * app/actions/select-commands.c: renamed a bunch of static - variables to be consistent with other variables used to remember - dialog values. - - * app/actions/view-commands.c (view_fullscreen_cmd_callback): it's - useless to update the "view-fullscreen" actions here because the - "fullscreen" state of the shell changes asynchronously - -2004-10-23 Michael Natterer - - * app/dialogs/image-merge-layers-dialog.c - * app/dialogs/layer-add-mask-dialog.c: made them not resizable. - - * app/dialogs/convert-dialog.c - * app/dialogs/offset-dialog.c: renamed ugly variables. - - * app/dialogs/image-new-dialog.c - * app/dialogs/stroke-dialog.c: irrelevant pedantic code reordering. - -2004-10-23 Michael Natterer - - * app/dialogs/Makefile.am - * app/dialogs/image-merge-layers-dialog.[ch]: one more dialog split - out of actions/. - - * app/actions/image-commands.c: removed it here. Some cleanup. - -2004-10-23 Sven Neumann - - * libgimpthumb/gimpthumb-utils.[ch] - * libgimpthumb/gimpthumbnail.[ch] - * libgimpthumb/gimpthumb.def: added missing API, mainly for deleting - thumbnails. - - * app/core/gimpimagefile.[ch]: when saving a thumbnail, delete a - failure thumbnail if one exists. Unless the thumbnail was created - explicitely, remove all other thumbnails for this image. - - * app/actions/documents-commands.c: changed accordingly. - - * app/file/file-open.c: only save a thumbnail if there isn't a - valid thumbnail already. - - * app/widgets/gimpthumbbox.c: before attempting to create a new - thumbnail, check if there's an uptodate failure thumbnail. - -2004-10-23 Michael Natterer - - * app/dialogs/Makefile.am - * app/dialogs/layer-add-mask-dialog.[ch]: one more dialog split - out of actions/. - - * app/actions/layers-commands.c: removed it here. Some cleanup. - -2004-10-23 Michael Natterer - - * autogen.sh: don't tell nonsense by printing "I am going to run - ./configure with no arguments", because we always pass at least - --enable-maintainer-mode. Instead, simply always print all - arguments. Also removed --copy from the calls to glib-gettextize - and intltoolize. - -2004-10-23 Michael Natterer - - * libgimpwidgets/gimpstock.c: added labels ("_Stroke") to the - SLEECTION_STROKE and PATH_STROKE stock items so they can be used - in action areas. - - * app/widgets/gimpstrokeeditor.c: changed mnemonic to no clash - with "_Stroke" and reordered some code. - - * app/dialogs/stroke-dialog.[ch]: use the passed stock_id instead - of GTK_STOCK_OK. Added parameters to specify the dialog's title - so it doesn't say "Stroke Options". - - * app/actions/select-commands.c - * app/actions/vectors-commands.c - * app/tools/gimpvectortool.c: pass "Stroke Selection" and "Stroke - Path" as dialog titles. - -2004-10-23 Michael Natterer - - When there are variants of actions with and without dialog, let - the dialog-less actions try to use the values from the last dialog - invocation: - - * app/actions/channels-actions.c - * app/actions/channels-commands.[ch] - * app/actions/layers-actions.c - * app/actions/layers-commands.[ch] - * app/actions/vectors-actions.c - * app/actions/vectors-commands.[ch]: renamed the foo-new-defaults - actions to foo-new-last-values and use the last values entered in - the dialogs. - - * app/widgets/gimpchanneltreeview.c - * app/widgets/gimpitemtreeview.c - * app/widgets/gimplayertreeview.c - * app/widgets/gimpvectorstreeview.c: changed accordingly. Show - the dialog on clicking "New" and call the last-values action on - +click. - - * app/actions/select-actions.c - * app/actions/vectors-commands.c: renamed the foo-stroke-last-vals - to -last-values. - - * app/widgets/gimpselectioneditor.c - * app/widgets/gimpvectorstreeview.c: stroke with last values on - clicking the stroke buttons. - -2004-10-23 Sven Neumann - - * libgimpthumb/gimpthumbnail.c (gimp_thumbnail_save): save to a - temporary file to avoid problems with concurrent thumbnail - creation. - -2004-10-23 Michael Natterer - - * app/dialogs/Makefile.am - * app/dialogs/layer-options-dialog.[ch]: the new/edit layer dialog. - - * app/actions/layers-commands.c: use it here. - -2004-10-22 Sven Neumann - - * app/tools/gimpimagemaptool.[ch] - * app/tools/gimpcurvestool.c - * app/tools/gimplevelstool.c: allow to Shift-click the Load and - Save buttons to skip the file chooser dialog and reuse the last - used filename. Fixes bug #75558. - -2004-10-22 Michael Natterer - - * app/dialogs/Makefile.am - * app/dialogs/template-options-dialog.[ch]: the new/edit template - dialog. - - * app/actions/templates-commands.c: removed the code here and use - template_options_dialog_new(). Removed utility functions. Some - cleanup. - -2004-10-22 Michael Natterer - - * app/widgets/gimpeditor.c (gimp_editor_ensure_button_box): make - sure the button_box is always interted at the very bottom of the - editor. - - * app/widgets/gimpviewabledialog.c: changed the "description" - property from CONSTRUCT_ONLY to CONSTRUCT. - - * app/widgets/gimpcolormapeditor.c: show the index of the edited - color in the color dialog and use the correct icon. Replaced label - "Hex triplet" by "HTML notation" to be consistent with the color - dialog. Removed wrong 2 pixel border around the table below the - preview. - -2004-10-22 Sven Neumann - - * plug-ins/common/wmf.c: fixed non-interactive call with default - values. - -2004-10-22 Sven Neumann - - * app/actions/colormap-editor-actions.c - * app/actions/dialogs-actions.c - * app/core/gimpimage-colormap.c - * app/dialogs/convert-dialog.c - * app/dialogs/dialogs.c - * app/widgets/gimpcolormapeditor.c: use the term "Colormap" - instead of "Indexed Palette". Fixes bug #155829. - -2004-10-22 Sven Neumann - - * plug-ins/common/wmf.c: applied a patch by Karine Proot that adds - a preview to the load dialog and a similar UI as the SVG loader. - Fixes bug #133519 and bug #133521. - -2004-10-22 Michael Natterer - - * app/core/core-enums.[ch]: added new enum GimpStrokeMethod which - can be one of { LIBART, PAINT_CORE }. - - * app/core/Makefile.am - * app/core/core-types.h - * app/core/gimpstrokedesc.[ch]: new object which encapsulates - the params and setup logic for the different stroke methods. - - * app/core/gimpitem.[ch]: use it in GimpItem::stroke() and - in the gimp_item_stroke() wrapper. - - * app/core/gimpchannel.c (gimp_channel_stroke) - * app/core/gimpselection.c (gimp_selection_stroke) - * app/vectors/gimpvectors.c (gimp_vectors_stroke): changed accprdingly. - - * app/actions/select-commands.c - * app/actions/vectors-commands.c - * app/dialogs/stroke-dialog.c - * tools/pdbgen/pdb/edit.pdb - * tools/pdbgen/pdb/paths.pdb: use GimpStrokeDesc. Simplifies the - code quite a bit. - - * app/pdb/edit_cmds.c - * app/pdb/paths_cmds.c: regenerated. - -2004-10-22 Michael Natterer - - * app/widgets/gimppropwidgets.c: remember the param_spec with each - radio button instead of with the box/frame around them. - -2004-10-21 Kevin Cozens - - * plug-ins/script-fu/script-fu.c: Removed _() tag from two strings - that should not have been marked for translation. - -2004-10-21 Kevin Cozens - - * plug-ins/script-fu/scripts-fu.c: Fixed spelling error. - -2004-10-21 Michael Natterer - - * app/actions/select-actions.c - * app/actions/select-commands.[ch] - * app/actions/vectors-actions.c - * app/actions/vectors-commands.[ch]: added actions and callbacks - to stroke with the last values used without showing the stroke - dialog. The actions have no menu entries but can be called via - shortcuts. Fixes bug #135746. - - (Disclaimer: the uglyness of the callbacks shows the need for a - stroke API overhaul). - -2004-10-20 Michael Natterer - - * app/core/gimpdrawable-stroke.c - (gimp_drawable_stroke_scan_convert): Replacing the call to - gimp_channel_is_empty() by a simple gimp_drawable_mask_intersect() - was wrong because gimp_channel_is_empty() makes sure that the - selection doesn't mask itself while being stroked. - -2004-10-20 Michael Natterer - - * plug-ins/common/raw.c: ported to GimpPreviewArea. - -2004-10-20 Michael Natterer - - * plug-ins/common/raw.c: new plug-in from Tim Copperfield, made - work with the GIMP 2.1 API by Philipp Gühring, then heavily - cleaned up and undeprecated by myself. Fixes bug #144943. - - (still uses GtkPreview, but i wanted a sane state in cvs to diff - against before replacing it) - - * plug-ins/common/plugin-defs.pl: changed accordingly. - - * plug-ins/common/Makefile.am: regenerated. - -2004-10-20 Michael Natterer - - Fixed bug #155733 for libgimp: - - * tools/pdbgen/pdb/drawable.pdb: export drawable_mask_intersect() - to the PDB and improved documentation for drawable_mask_bounds(). - - * app/pdb/drawable_cmds.c - * app/pdb/internal_procs.c - * libgimp/gimpdrawable_pdb.[ch]: regenerated. - - * libgimp/gimp.def: changed accordingly. - -2004-10-20 Michael Natterer - - * app/core/gimpdrawable.[ch]: added gimp_drawable_mask_intersect() - which returns the same bounding box as gimp_drawable_mask_bounds(), - but returns TRUE only if there is a non-empty intersection between - the drawable and the selection, or no selection at all. It also - returns the intersection as x,y,width,height instead of the - eeky x1,y1,x2,y2. - - * app/core/gimp-edit.c - * app/core/gimpdrawable-blend.c - * app/core/gimpdrawable-bucket-fill.c - * app/core/gimpdrawable-desaturate.c - * app/core/gimpdrawable-equalize.c - * app/core/gimpdrawable-histogram.c - * app/core/gimpdrawable-invert.c - * app/core/gimpdrawable-stroke.c - * app/core/gimpimagemap.c - * app/core/gimpselection.c - * tools/pdbgen/pdb/color.pdb - * tools/pdbgen/pdb/transform_tools.pdb: either switch from - gimp_drawable_mask_bounds() to _intersect() or check the return - values of _mask_bounds() manually to avoid operations on empty - areas. Return successfully because it's a nop, not a failure. - Fixes bug #155733 for the core. - - * app/pdb/color_cmds.c - * app/pdb/transform_tools_cmds.c: regenerated. - -2004-10-19 Michael Natterer - - * app/tools/gimptextoptions.c (gimp_text_options_gui): removed - 3 mnemonics. No other tool options label has a mnemonic. - Addresses bug #155861. - -2004-10-19 Michael Natterer - - * app/dialogs/Makefile.am - * app/dialogs/vectors-options-dialog.[ch]: one more dialog split - out of actions/. - - * app/actions/vectors-commands.c: removed it here. Merged more - utility functions into their only callers. - - * app/actions/dockable-commands.c - * app/actions/edit-commands.c - * app/actions/file-commands.c - * app/actions/palettes-commands.c - * app/actions/tool-options-commands.c - * app/actions/view-commands.c: renamed "qbox" and "query_box" - variables to "dialog". - -2004-10-19 Michael Natterer - - * plug-ins/common/screenshot.c (shoot_dialog): don't forget to set - the mnemonic widgets for the labels. Fixes bug #155811. - -2004-10-19 Michael Natterer - - * app/dialogs/Makefile.am - * app/dialogs/channel-options-dialog.[ch]: new files implementing - the channel options dialog with a horrid number of 13 construction - parameters. Still better than having the same code twice, only - differing in strings used... - - * app/actions/channels-commands.c - * app/actions/qmask-commands.c: removed the dialog code here and - use channel_options_dialog_new(). - -2004-10-19 Jay Cox - - * plug-ins/common/psd_save.c: don't try to save psd files that are - larger than 30000 pixels in either direction. Fixed the rle code - to compress more compactly. Fixed a memmory leak in - save_channel_data. - -2004-10-18 Michael Natterer - - Action code review and pre-release consistency cleanup: - - * app/actions/*-actions.c: added some missing and resolved - conflicting mnemonics, added missing help IDs. Cleaned up the - *_actions_update() functions. - - * app/actions/channels-actions.c - * app/actions/layers-actions.c - * app/actions/vectors-actions.c (*_actions_update): simplified - the code that figures the prev and next channel,layer,vectors. - - * app/actions/qmask-actions.c: use the same accelerator for - "qmask-active" and "qmask-toggle". Fixed action sensitivity. - - * app/actions/channels-commands.c - * app/actions/dockable-commands.c - * app/actions/documents-commands.c - * app/actions/gradients-commands.c - * app/actions/layers-commands.c - * app/actions/palettes-commands.c - * app/actions/image-commands.c - * app/actions/select-commands.c - * app/actions/vectors-commands.c: folded tons of private utility - functions into their only callers (they used to be public and - called from outside before the switch to action based menus). - Renamed functions and variables saying "query" or "qbox" to - "dialog". Moved static functions to the end of the files. Misc - minor cleanups. - - * app/actions/drawable-actions.c - * app/actions/drawable-commands.c: made the "drawable-visible" and - "drawable-linked" actions affect the layer if the active drawable - is a layer mask. - - * app/actions/select-commands.c: added action to stroke with the - last values used in an attempt to address bug #135746 but #if 0'ed - it because the approach is too ugly. - - * app/tools/gimpiscissorstool.c: changed mnemonic from I to S. - - * menus/image-menu-xml.in: added more stuff to the (commented out) - "context" menu. - -2004-10-17 DindinX - - * libgimp/gimppixelrgn.c: some more clues in the documentation - (suggested by nomis) - -2004-10-17 DindinX - - * libgimp/gimppixelrgn.c: clarify some usecases for - gimp_pixel_rgn_init(). - -2004-10-17 DindinX - - * plug-ins/common/colortoalpha.c: Added a preview. - -2004-10-17 DindinX - - * plug-ins/common/glasstile.c: use a GimpDrawablePreview. - -2004-10-17 DindinX - - * plug-ins/common/borderaverage.c: smallish cleanups. - -2004-10-17 DindinX - - * plug-ins/common/displace.c: Added a preview and minor cleanups. - Can someone provide useful testcases for this plug-in? - -2004-10-16 Michael Natterer - - * app/widgets/gimpitemtreeview.[ch]: moved "item_type" and - "signal_name" from GimpItemTreeView to GimpItemTreeViewClass. - Removed them from gimp_item_tree_view_new(). Require the view_type - instead of item_type in gimp_item_tree_view_new(). - - * app/widgets/gimpitemtreeview.c - * app/widgets/gimpdrawabletreeview.c (get_type): made them - abstract base classes. - - * app/widgets/gimpchanneltreeview.c - * app/widgets/gimplayertreeview.c - * app/widgets/gimpvectorstreeview.c (class_init): set the - item_type and signal_name members if GimpItemTreeViewClass. - - * app/dialogs/dialogs-constructors.c: changed accordingly. - -2004-10-16 Manish Singh - - * autogen.sh: Add support for automake 1.9. Also rm autom4te.cache, - since it might interfere with differing autoconf versions. - -2004-10-16 Michael Natterer - - * app/widgets/gimpuimanager.[ch]: added utility function - gimp_ui_manager_get_action() which takes "group_name" and - "action_name". - - * app/display/gimpdisplayshell-close.c - * app/widgets/gimpitemtreeview.c - * app/widgets/gimptoolbox.c - * app/widgets/gimptooloptionseditor.c: use it. - -2004-10-16 Michael Natterer - - * app/actions/channels-actions.c - * app/actions/colormap-editor-actions.c - * app/actions/documents-actions.c - * app/actions/tool-options-actions.c - * app/actions/vectors-actions.c: added more tooltips for actions - which are used as extended dialog button callbacks. - - * app/widgets/gimpeditor.c (gimp_editor_add_action_button): keep - the list of extended actions in reverse order. - - * app/widgets/gimpchanneltreeview.c - * app/widgets/gimpcolormapeditor.c - * app/widgets/gimpdocumentview.c - * app/widgets/gimpitemtreeview.c - * app/widgets/gimplayertreeview.c - * app/widgets/gimpselectioneditor.c - * app/widgets/gimptooloptionseditor.c - * app/widgets/gimpvectorstreeview.c: don't set the tooltips - manually. Removes another bunch of insane translatable multiline - format strings. Pass the extended actions in the right order - to gimp_editor_add_action_button(). - -2004-10-16 Michael Natterer - - * app/actions/vectors-commands.c (vectors_linked_cmd_callback): - call gimp_item_set_linked(), not gimp_item_set_visible(). - Fixes bug #155578 - -2004-10-16 Michael Natterer - - Ported the layers, channels and paths dialogs from - gimp_editor_add_button() to gimp_editor_add_action_button(), - removing a massive amount of duplicated code, sensitivity logic - and confusing utility functions. - - * app/actions/channels-actions.c - * app/actions/channels-commands.[ch] - * app/actions/layers-actions.c - * app/actions/layers-commands.[ch] - * app/actions/vectors-actions.c - * app/actions/vectors-commands.[ch]: added "foo-new-default" - actions and callbacks which create items without a dialog, - optionally using default values from a passed template. Removed - all public utility function that were passed as function pointers - to widget construtors. Added tooltips to all actions which are now - used for dialog buttons. - - * app/widgets/gimpeditor.c (gimp_editor_add_action_button): - automatically create multi-line tooltips showing the modifiers for - extended action buttons. Removes the need for lots of insane - format strings that need to be translated correctly. - - * app/widgets/gimpitemtreeview.[ch] (struct GimpItemTreeViewClass): - replaced tooltip and help_id strings by action names. - - (struct GimpItemTreeView) - (gimp_item_tree_view_new): removed "edit", "new" and "activate" - function pointers. - - (gimp_item_tree_view_constructor): create all buttons - with gimp_editor_add_action_button(), using the action names - from GimpItemTreeViewClass. - - Removed tons of "clicked" callbacks and all code which sets the - buttons' sensitivity. They are not needed any longer. - - Require all subclasses to implement GimpItemTreeView::new_item(), - a new virtual function which creates a plain new item without - showing a dialog. - - * app/widgets/gimpdrawabletreeview.c - * app/widgets/gimpchanneltreeview.c - * app/widgets/gimplayertreeview.c - * app/widgets/gimpvectorstreeview.c: fill in the action names and - implement GimpItemTreeView::new_item(). Removed all button - sensitivity logic. - - * app/dialogs/dialogs-constructors.c: changed accordingly. Doesn't - include anything from actions/ any more. - -2004-10-15 Michael Natterer - - * tools/pdbgen/pdb/layer.pdb: fixed parameter descriptions for - layer_add_mask() and layer_remove_mask(). - - * app/pdb/layer_cmds.c - * libgimp/gimplayer_pdb.c: regenerated. - -2004-10-15 Michael Natterer - - * app/actions/images-commands.[ch] - * app/actions/templates-commands.[ch]: made some public functions - private or removed them entirely by folding their code into their - callers. They used to be passed as function pointers to widgets in - the pre action-based dialog buttons era. - -2004-10-15 Michael Natterer - - * app/dialogs/quit-dialog.c: raise the image's displays on - double-click in the dirty image list. - -2004-10-15 Michael Natterer - - Fixed bug #155328: - - * app/actions/vectors-actions.c (vectors_actions_update): don't - set the "selection to path" actions sensitive if there is no - image. - - * app/widgets/gimpitemtreeview.c: update the UI manager after - setting the view's image. Connect to GimpImage::flush() and - update the UI manager in the callback, too. - -2004-10-15 Michael Natterer - - * app/actions/view-actions.c (view_zoom_actions): removed - duplicate "view-zoom-in" action (cut'n'paste error) and fixed the - swapped "zoom in/out a lot" actions. Fixes bug #155446. - -2004-10-15 Sven Neumann - - * Made 2.1.7 release. - -2004-10-15 Sven Neumann - - * app/tools/gimptransformoptions.c: removed the "Density" label. - It wasn't helpful and caused the transform options to be wider than - necessary. - - * app/tools/gimpblendoptions.c - * app/tools/gimppaintoptions-gui.c - * app/tools/gimptransformoptions.c: let combo boxes expand - horizontally like we do in other (all?) dialogs. - - * app/widgets/gimptemplateeditor.c - (gimp_template_editor_aspect_callback): update the pixel size label. - -2004-10-15 Sven Neumann - - * data/images/gimp-splash.png: new splash by Jimmac. - -2004-10-15 DindinX - - * plug-ins/common/scatter_hsv.c: ported to GimpDrawablePreview, and - removed many lines of codes. - -2004-10-14 Kevin Cozens - - * plug-ins/script-fu/scripts/neon.scm: Fixed minor error in script. - (Related to bug #153900 and compatability with Tiny-Fu) - -2004-10-14 DindinX - - * plug-ins/common/neon.c: fixed the handling of drawable with alpha. - -2004-10-14 DindinX - - * plug-ins/common/nlfilt.c: Ported to GimpDrawablePreview, the - previous preview was absolutely useless. Done some cleanups, too. - - * plug-ins/common/spread.c: remember the preview state between - invocations. - -2004-10-14 DindinX - - * plug-ins/common/emboss.c: use a GimpDrawablePreview instead of a - GimpAspectPreview, since this plug-in is somewhat edge-oriented and - this makes the code simpler ;) - -2004-10-14 Michael Natterer - - * themes/Default/images/stock-gradient-bilinear-16.png - * themes/Default/images/stock-gradient-linear-16.png: rotate them - by 90 degrees. All our gradient previews and icons go left->right, - not top->bottom. - -2004-10-14 Manish Singh - - * plug-ins/common/bmpread.c: Make sure we have a bpp value we can - handle, and fail gracefully if not. Fixes bug #155401. - -2004-10-14 Michael Natterer - - * libgimpwidgets/gimpwidgets.c - * app/widgets/gimpenumwidgets.[ch] - * app/widgets/gimppropwidgets.c - * app/actions/layers-commands.c - * app/dialogs/convert-dialog.c - * app/tools/gimpblendoptions.c - * app/tools/gimpbucketfilloptions.c - * app/tools/gimpcolorbalancetool.c - * app/tools/gimpcolorizetool.c - * app/tools/gimpcoloroptions.c - * app/tools/gimpcurvestool.c - * app/tools/gimphuesaturationtool.c - * app/tools/gimpinkoptions-gui.c - * app/tools/gimplevelstool.c - * app/tools/gimppaintoptions-gui.c - * app/tools/gimpselectionoptions.c - * app/tools/gimptransformoptions.c: the child of a GimpFrame must - not have any border width. Fixes many subtle misalignments. - -2004-10-14 Sven Neumann - - * app/core/gimpprogress.[ch]: added "message" function to the - GimpProgress interface. Call gimp_message() if it is unimplemented. - - * app/plug-in/plug-in-progress.[ch]: added new function - plug_in_progress_message() that passes the message to the current - proc_frame's progress. - - * app/widgets/gimpthumbbox.c: implement GimpProgress::message. - Just do nothing in the implementation. We don't want to see - messages from file plug-ins that we use to create the thumbnails. - - * tools/pdbgen/pdb/message.pdb - * app/pdb/message_cmds.c: if there's a current plug-in, dispatch - the message by calling plug_in_progress_message(). - - * app/display/gimpdisplayshell-close.c: fixed wrong types in - function calls. - -2004-10-14 Michael Natterer - - * app/widgets/gimpcolordialog.c (gimp_color_dialog_new): use - GIMP_HELP_COLOR_DIALOG as help_id. - -2004-10-14 Michael Natterer - - * app/actions/dialogs-commands.c: purely cosmetic. - -2004-10-14 Michael Natterer - - * app/core/core-enums.[ch]: register GimpConvertPaletteType with - the type system. - - * tools/pdbgen/enums.pl: regenerated. - - * app/widgets/gimpwidgets-utils.c (gimp_enum_radio_frame_add): - fixed to insert the widget at the right place in the radio box. - - * app/dialogs/convert-dialog.c: use enum widgets and - gimp_enum_radio_frame_add(), resulting in a much better looking - dialog with much less lines of code. - -2004-10-14 Sven Neumann - - * plug-ins/helpbrowser/dialog.c: changed "Home" button to "Index". - "Home" is misleading and leads to problems in some locales (see - bug #148120). - -2004-10-14 Michael Natterer - - * tools/authorsgen/contributors: correct UTF-8 spelling of - João S. O. Bueno Calligaris. - - * AUTHORS - * app/dialogs/authors.h: regenerated. - -2004-10-14 Kevin Cozens - - * plug-ins/script-fu/scripts/circuit.scm: Fixed to allow use of - script on original layer. (bug #155358) Fixed spelling error. - -2004-10-13 Manish Singh - - * tools/pdbgen/Makefile.am: Remove stamp files during - maintainer-clean. Addresses bug #155357. Also flesh out the - dependencies some so rebuilds get triggered when all their - dependent files change. - -2004-10-14 Sven Neumann - - * app/actions/file-commands.c (file_revert_cmd_callback): creata - an UTF-8 filename from the image URI and display that instead of - the URI. - - * app/dialogs/convert-dialog.c (convert_dialog_new): removed the - palette size warning for transparent images. The number of colors - is already adjusted to 255. This text was IMO more frightening - than helpful. - -2004-10-13 Kevin Cozens - - * plug-ins/script-fu/scripts/add-bevel.scm: two variables were - not defined before first use (bug #153900). - -2004-10-13 Kevin Cozens - - * app/widgets/gimpactionview.c: Fixed a spelling error. - -2004-10-13 DindinX - - * plug-ins/common/colorify.c: Added a preview. - -2004-10-13 Sven Neumann - - * libgimpwidgets/gimppreview.c: removed trailing whitespace. - - * libgimpwidgets/gimpwidgets.def: added - gimp_preview_set_default_cursor. - -2004-10-13 Sven Neumann - - * app/widgets/gimpmessagedialog.c: improved handling of parent - widget; probably just being paranoid here. - - * app/actions/image-commands.c - * app/dialogs/image-new-dialog.c: ported memory size confirmation - dialogs to GimpMessageDialog. - -2004-10-13 DindinX - - * libgimpwidgets/gimppreview.[ch]: added a new function to set the - default cursor on preview: gimp_preview_set_default_cursor(). - - * libgimpwidgets/gimpscrolledpreview.c: changed accordlingly. - - * plug-ins/common/flarefx.c: - * plug-ins/common/nova.c: use this function. - - This addresses bug #90519. - -2004-10-13 DindinX - - * plug-ins/common/cubism.c: Added a preview and done some cleanups. - -2004-10-13 Sven Neumann - - * app/actions/plug-in-commands.c - * app/actions/templates-commands.c - * app/actions/tool-options-commands.c: ported more boolean queries - to GimpMessageDialog. - -2004-10-13 Sven Neumann - - * app/widgets/gimpmessagedialog.c: handle parent widget not being - a GtkWindow by calling gtk_widget_get_toplevel(). - - * app/actions/data-commands.c - * app/actions/edit-commands.c - * app/actions/file-commands.c: ported more boolean queries to - GimpMessageDialog. - -2004-10-13 Sven Neumann - - * app/widgets/Makefile.am - * app/widgets/widgets-types.h - * app/widgets/gimpmessagedialog.[ch]: added a simple message - dialog to avoid code duplication. - - * app/widgets/gimpmessagebox.c: set the border width to 12 pixels. - - * app/dialogs/file-save-dialog.c - * app/dialogs/quit-dialog.c - * app/display/gimpdisplayshell-close.c - * app/widgets/gimperrordialog.c - * app/widgets/gimphelp.c - * app/widgets/gimpactionview.c: use the new GimpMessageDialog. - -2004-10-13 Michael Natterer - - * app/actions/image-actions.c - * menus/image-menu.xml.in: added menu branch "/Image/Guides". - - * plug-ins/script-fu/scripts/Makefile.am - * plug-ins/script-fu/scripts/guides-from-selection.scm - * plug-ins/script-fu/scripts/guides-new-percent.scm - * plug-ins/script-fu/scripts/guides-new.scm - * plug-ins/script-fu/scripts/guides-remove-all.scm: added new - scripts from Alan Horkan. Fixes bug #119667. - -2004-10-13 Michael Natterer - - * plug-ins/common/flarefx.c: cleaned up and simplified the - FlareCenter code even more. - - * plug-ins/common/nova.c: did the same changes for the NovaCenter - stuff. - - Also added code which sets an appropriate cursor on "realize" to - fix bug #90519, but GimpPreview currently prevents this from - working correctly... - -2004-10-13 Sven Neumann - - * app/widgets/widgets-enums.[ch]: changed the description for - GIMP_HELP_BROWSER_GIMP. - - * app/dialogs/file-save-dialog.c: - * app/widgets/gimphelp.c: use a GimpDialog embedding a - GimpMessageBox instead of gimp_query_boolean_box which looks - somewhat old fashioned. - -2004-10-13 Sven Neumann - - * app/widgets/gimphelp.c: improved error messages on missing help - browser plug-in. - - * libgimpthumb/gimpthumb-utils.c - * libgimpthumb/gimpthumbnail.c: improved documentation. - -2004-10-13 Sven Neumann - - * app/display/gimpdisplayshell-close.c - (gimp_display_shell_close_dialog): changed button label. - -2004-10-12 Kevin Cozens - - * plug-ins/script-fu/scripts/asc2img.scm: Fixed error in name of - script used in second register line. - -2004-10-13 Sven Neumann - - * app/display/gimpdisplayshell-close.c: changed rounding. - -2004-10-13 Michael Natterer - - * app/dialogs/image-new-dialog.c (image_new_response): don't - forget to reset the template combo on RESPONSE_RESET. - -2004-10-13 Michael Natterer - - * app/display/gimpdisplay-foreach.c: keep the container of dirty - images up to date. - - * app/dialogs/quit-dialog.c: fixed model/view behavior here, too. - - (both are still far from perfect) - -2004-10-13 Sven Neumann - - * app/display/gimpdisplayshell-close.c - (gimp_display_shell_close_dialog): keep the time uptodate. - -2004-10-13 Sven Neumann - - * app/core/gimpimagefile.c (gimp_imagefile_create_thumbnail): ref - the imagefile while creating the thumbnail. - - * app/core/gimpimagefile.[ch] - * app/widgets/gimpthumbbox.c (gimp_thumb_box_auto_thumbnail): moved - the tricky part about thumbnail creation into the new function - gimp_imagefile_create_thumbnail_weak(). - -2004-10-13 Michael Natterer - - * plug-ins/pagecurl/pagecurl.c: forgot to remove N_() from - gimp_plugin_menu_register(). - -2004-10-13 Michael Natterer - - * app/dialogs/preferences-dialog.c (prefs_dialog_new): added - missing and resolved conflicting mnemonics. - -2004-10-12 Sven Neumann - - * plug-ins/script-fu/scripts/selection-round.scm: moved out of the - "Modify" placeholder. Using placeholders from Script-Fu breaks - i18n. We will need to change menu registration for scripts but - this will have to wait.. - -2004-10-12 Michael Natterer - - * plug-ins/*/*.c: all plug-ins except script-fu: removed the - translation marks from the menu paths passed to - gimp_plugin_menu_register(). All default menu branches used by - included plug-ins are created and translated by the core now. - -2004-10-12 Sven Neumann - - * app/core/gimpimage.[ch]: renamed struct member "unit" to - "resolution_unit". - - * app/actions/image-commands.c - * app/core/gimp-edit.c - * app/core/gimpimage-duplicate.c - * app/core/gimpimage-undo-push.c - * app/dialogs/info-window.c - * app/vectors/gimpvectors-export.c - * app/widgets/gimptoolbox-dnd.c: - * app/xcf/xcf-load.c - * app/xcf/xcf-save.c: changed accordingly. Use gimp_image_get_unit() - where appropriate. - - * app/core/gimptemplate.c (gimp_template_set_from_image): fixed - unit handling. Don't touch the template unit, it is used as the - initial display unit. This will need further changes... - -2004-10-12 Michael Natterer - - * app/widgets/gimpwidgets-utils.c (gimp_enum_radio_frame_add): - need to pack the widget expanding. Fixes pattern container - entries. - -2004-10-12 Sven Neumann - - * app/dialogs/info-window.[ch]: fixed unit handling. Right-align - the labels displaying the cursor position. Renamed the "Extended" - tab to "Cursor". Renamed the API accordingly. - - * app/display/gimpdisplayshell-cursor.c: changed accordingly. - -2004-10-12 Michael Natterer - - * app/actions/drawable-commands.c (drawable_rotate_cmd_callback): - if the drawable is a channel, pass clip_result as FALSE. Need to - do this here for rotating only because it can't be decided - generically in GimpChannel. Fixes crash when rotating channels - or layer masks. - - Use the undo_desc from GimpItemClass instead of passing "Flip - Layer" and "Rotate Layer". - -2004-10-12 Sven Neumann - - * app/file/file-open.c: minor cleanup. - - * app/file/file-save.c (file_save_as): no need to fiddle with the - image name, the URI is taken from the imagefile anyway. - -2004-10-12 Sven Neumann - - * app/actions/layers-actions.c (layers_actions_update): set - "layers-crop" insensitive if the selection is empty. - - * plug-ins/script-fu/scripts/alien-glow-button.scm - * plug-ins/script-fu/scripts/alien-glow-logo.scm - * plug-ins/script-fu/scripts/basic2-logo.scm - * plug-ins/script-fu/scripts/gradient-bevel-logo.scm: use "Sans - Bold" instead of "Futura_Poster". The underscore in the font name - used to confuse intltool (bug #137029) and the freefont package - isn't that widely used any longer anyway. - -2004-10-12 Sven Neumann - - * app/widgets/Makefile.am - * app/widgets/widgets-types.h - * app/widgets/gimpsizebox.[ch]: added new widget GimpSizeBox. - - * app/widgets/gimppropwidgets.c: the order of setting the X and Y - properties does matter. - - * app/dialogs/Makefile.am - * app/dialogs/scale-dialog.[ch]: added first version of a new - Scale dialog in an attempt to address bug #151022. - - * app/actions/layers-commands.c: use the new scale dialog. - -2004-10-12 Sven Neumann - - * app/widgets/gimptemplateeditor.c: added mnemonics for the size - entries. - -2004-10-12 Michael Natterer - - * libgimpwidgets/gimpwidgets.c (gimp_table_attach_aligned): - instead of simply using the passed widget as mnemonic_widget for - the GtkLabel, call the new utility function find_mnemonic_widget() - which recursively searches the passed widget until it finds one - that actually can be mnemonic-activated. Fixes lots of mnemonics - where the attached widget is e.g. a GtkEventBox or GtkComboBox. - -2004-10-12 Michael Natterer - - * app/tools/gimptooloptions-gui.[ch]: removed the recently added - utility functions again. - - * app/widgets/Makefile.am - * app/widgets/gimpviewablebox.[ch] - * app/widgets/gimpwidgets-utils.[ch]: and added cleaned up - versions here. - - * app/tools/gimpbucketfilloptions.c - * app/tools/gimpclonetool.c - * app/tools/gimppaintoptions-gui.c - * app/tools/gimptextoptions.c: changed accordingly. - - * app/dialogs/convert-dialog.c: use gimp_palette_box_new() instead - of reinventing the wheel. - -2004-10-12 Sven Neumann - - * app/widgets/gimpaction.c (gimp_action_set_proxy): use a larger - icon size for GimpImagefile views. - - * themes/Default/images/stock-frame-64.png: removed the 1 pixel - wide empty border around the frame. - - * app/widgets/gimpviewrenderer-frame.c: adjusted the hardcoded values. - -2004-10-12 Sven Neumann - - * Makefile.am: defined DISTCHECK_CONFIGURE_FLAGS with the - configure options that are needed to run 'make dist'. - -2004-10-12 Sven Neumann - - * app/widgets/gimptemplateeditor.c: tweaked table spacings to get - the Height label aligned with the entry again. - -2004-10-12 Sven Neumann - - * app/widgets/gimpprogressdialog.c (gimp_progress_dialog_new): set - the "skip_taskbar_hint" and "skip_pager_hint" properties on the - progress window. - -2004-10-11 Manish Singh - - * plug-ins/fp/fp.c: Moved from here... - - * plug-ins/common/fp.c: ... to here. - - * plug-ins/common/plugin-defs.pl: changed accordingly. - - * plug-ins/common/.cvsignore - * plug-ins/common/Makefile.am: regenerated. - - * configure.in - * plug-ins/Makefile.am - * plug-ins/fp: Removed directory. - -2004-10-11 DindinX - - * plug-ins/common/jigsaw.c: ported to GimpAspectPreview. - -2004-10-11 Michael Natterer - - * plug-ins/common/flarefx.c: use a GimpSizeEntry for specifying - the flare center. Fixed flare center dragging. Lots of cleanup. - -2004-10-11 Michael Natterer - - * app/dialogs/dialogs-types.h: removed ColorDialog typedef. - -2004-10-11 Michael Natterer - - * app/tools/gimptooloptions-gui.[ch]: added utility functions - which create a GimpViewableButton+GimpContainerEntry combo for - brushes, patterns, gradients and fonts and a very ugly utility - function which packs one of these combos into a GtkFrame returned - by gimp_prop_enum_radio_frame_new(). This stuff does not really - belong here but is too ugly to be moved to a more general place. - - * app/tools/gimpbucketfilloptions.c - * app/tools/gimppaintoptions-gui.c - * app/tools/gimptextoptions.c: use the new utility functions. Moved - the pattern previews into the radio frame where using the pattern - is selected. Make them insensitive if using the pattern is not - selected. - -2004-10-11 Sven Neumann - - * app/config/gimprc-blurbs.h: tweaked the thumbnail related blurbs. - - * app/dialogs/preferences-dialog.c: group the thumbnail related - controls together. Could probably still be improved... - -2004-10-11 Sven Neumann - - * app/actions/documents-commands.c - (documents_recreate_preview_cmd_callback): when recreating the - thumbnail, delete old thumbnails and create it in the configured - thumbnail size instead of the container view preview size. - - * libgimpthumb/gimpthumbnail.c (gimp_thumbnail_update_thumb): - reset the image info when the thumbnail state changes. - -2004-10-11 Sven Neumann - - * app/widgets/gimpfiledialog.c: construct a case-insensitive glob - pattern to use when filtering for file extensions. - -2004-10-11 Michael Natterer - - * app/widgets/gimpthumbbox.c (gimp_thumb_box_create_thumbnails): - user-visible counting starts at 1, not 0. - -2004-10-11 Michael Natterer - - * tools/authorsgen/contributors: added missing contributors. - Thanks to Kevin Cozens for going through ChangeLog and making a list. - - * AUTHORS - * app/dialogs/authors.h: regenerated. - -2004-10-11 Sven Neumann - - * libgimpthumb/gimpthumbnail.c: ooops, forgot to disable the debug - output again. - -2004-10-11 Sven Neumann - - * app/batch.c: clarified. - -2004-10-08 Kevin Cozens - - * configure.in: removed duplicate GETTEXT_PACKAGE line. - -2004-10-11 Sven Neumann - - * libgimpthumb/gimpthumb-utils.[ch] - * libgimpthumb/gimpthumb.def: added an API to delete thumbnails. - - * app/widgets/gimpthumbbox.c (gimp_thumb_box_create_thumbnail): - when recreating a thumbnail on user request, delete all existing - thumbnails for it. - - * plug-ins/common/AlienMap2.c: removed unused variable. - -2004-10-10 Sven Neumann - - * libgimpthumb/gimpthumb-utils.[ch] - * libgimpthumb/gimpthumb.def - * libgimpthumb/gimpthumbnail.c: added support for local thumbnails - as introduced by version 0.7 of the thumbnail spec. Untested, but - at least the API is there. - -2004-10-10 DindinX - - * plug-ins/common/AlienMap2.c: ported to GimpAspectPreview, and some - minor cleanups. - -2004-10-10 DindinX - - * plug-ins/common/vpropagate.c: added a preview. - -2004-10-10 DindinX - - * plug-ins/common/flarefx.c - * plug-ins/common/waves.c: cleanups and ported to GimpAspectPreview. - -2004-10-10 Sven Neumann - - * app/widgets/gimpcontainerview.c (gimp_container_view_lookup): - handle NULL as viewable parameter as a workaround for bug #149906. - - * app/widgets/gimpthumbbox.c (gimp_thumb_box_auto_thumbnail): made - the code more robust. - - * app/xcf/xcf-private.h - * app/xcf/xcf.c: added a const qualifier. - -2004-10-09 DindinX - - * app/dialogs/dialogs.h: fixed a typo in the double-inclusion guard. - -2004-10-09 Sven Neumann - - * AUTHORS - * app/dialogs/authors.h: regenerated. Someone should look into - updating the list of contributors for the 2.2 release ... - -2004-10-08 Kevin Cozens - - * tools/authorsgen/contributors: Added my name to the - list of contributors. - -2004-10-08 Sven Neumann - - * app/widgets/gimpthumbbox.c: tweaked the text shown while - updating the preview so that the dialog doesn't need to resize. - -2004-10-08 Sven Neumann - - * app/config/gimpcoreconfig.[ch] - * app/config/gimprc-blurbs.h: added new gimprc option - "thumbnail-filesize-limit" that allows to control the maximum - filesize for automatic thumbnail creation. - - * app/dialogs/preferences-dialog.c: added a GUI for it, needs - review. - - * app/core/gimpimagefile.[ch]: minor cleanups. Moved call to - gimp_thumbnail_peek_image() from gimp_imagefile_save_thumb() to - gimp_imagefile_save_thumbnail() to avoid it being called twice. - - * app/file/file-utils.[ch]: export utility function - file_utils_find_proc_by_extension() that allows to check for a - file plug-in by looking at the filename extension only. - - * app/widgets/gimpthumbbox.[ch]: automatically create or update - thumbnails for image files with a known extension that are smaller - than "thumbnail-filesize-limit". Fixes bug #137176. - -2004-10-08 Sven Neumann - - * plug-ins/common/ripple.c: handle the tile parameter identically - for preview and final result. Set Edges options insensitive when - "Retain tileability" is checked. Reported by Olivier. - -2004-10-08 Sven Neumann - - * plug-ins/common/apply_lens.c (lens_dialog): invalidate the - preview when the toggle buttons are used. Reported by Olivier. - - * app/widgets/gimpview.c: minor cleanup. - -2004-10-08 Michael Natterer - - * app/tools/gimpmeasuretool.c: implement GimpTool::key_press() and - cancel the tool on GDK_Escape. Come cleanup. - -2004-10-08 Michael Natterer - - Made the text options about two toolbox grid columns smaller. - Addresses bug #122862. - - * app/widgets/gimppropwidgets.c (gimp_prop_size_entry_new): use - the number of digits of the property's max_val plus two as number - of chars for the sizeentry'y spinbutton (instead of always 10 as - before). - - * app/tools/gimptextoptions.c (gimp_text_options_gui): GtkEntry - has a minimal width of 150 pixels (eek). Set a silly small minimal - width instead (the entry expands to the available width anyway). - -2004-10-08 Sven Neumann - - * app/file/file-utils.c: added lots of const qualifiers. - -2004-10-08 Michael Natterer - - * app/tools/gimppaintoptions-gui.c: the gradient button in blend - options got lost, added it back. Also moved creation of the brush, - pattern and gradient buttons to utility functions and cleaned up - the whole file a bit. - -2004-10-08 Michael Natterer - - * app/display/gimpdisplayshell.c (gimp_display_shell_real_scaled) - (gimp_display_shell_flush) - * app/gui/gui-vtable.c (gui_display_create): always pass a - GimpDisplay, not a GimpDisplayShell as "data" to - gimp_ui_manager_update(). - - * app/actions/actions.c (action_data_get_*): removed checks if the - passed data is a GimpDisplayShell and temporarily added g_assert() - to be sure. The assertions will be removed before 2.2. - -2004-10-07 Sven Neumann - - * libgimpthumb/gimpthumbnail.c: added some (disabled) debug output. - - * app/widgets/gimpviewrenderer-frame.[ch]: added a way to retrieve - the size of the frame borders. - - * app/widgets/gimpthumbbox.c: don't set an arbitrary padding but - exactly the size of the frame borders. Otherwise we get large - thumbnails (scaled down) if we request normal sized ones. - -2004-10-07 Kevin Cozens - - * plug-ins/script-fu/scripts/selection-round.scm: Changed deprecated - constant ADD to CHANNEL-OP-ADD. - -2004-10-07 Michael Natterer - - Merged the gz and bz2 plug-ins into one generic compression - handler that can be extended by adding entries to a table of - compressor definitions: - - * configure.in: removed bz2 special casing for win32. - - * plug-ins/common/bz2.c - * plug-ins/common/gz.c: removed. - - * plug-ins/common/compressor.c: new plug-in. - - * plug-ins/common/plugin-defs.pl: changed accordingly. - - * plug-ins/common/.cvsignore - * plug-ins/common/Makefile.am: regenerated. - -2004-10-07 Simon Budig - - * app/actions/view-commands.c: fill in the formula... :-) - untabbified. - - * app/display/gimpdisplayshell-scale.c: Micro-Cleanup, untabbified. - -2004-10-07 Michael Natterer - - * app/actions/view-actions.c: changed zoom actions to be - GimpEnumActions using the GimpActionSelectType enum. Enables - keyboard shortcuts for useless stuff like "zoom out a lot", and - makes them better accessible for external controllers. - - * app/actions/view-commands.[ch]: renamed view_zoom_cmd_callback() - to view_zoom_explicit_cmd_callback(), removed the zoom_in and - zoom_out callbacks and added a new view_zoom_cmd_callback() for - the new GimpActionSelectType-based actions. The implementation of - the new zoom types is questionable but now there is a place where - nomis can fill in nice formulas... - -2004-10-06 Michael Natterer - - * app/tools/gimpeditselectiontool.[ch]: added new parameter - "gboolean propagate_release" to gimp_edit_slection_tool_start() - and remember it in the GimpEditSelectionTool struct. If requested, - propagate GimpTool::button_release() to the tool below in the tool - stack. - - * app/tools/gimpselectiontool.c (gimp_selection_tool_start_edit): - pass FALSE so we don't get the button_release(). - - * app/tools/gimpmovetool.[ch]: pass TRUE so we get - button_release(). If moving a layer or path in "pick active" mode, - remember the old active layer/path and switch back to it in - button_release(). Fixes bug #97734. - - Unrelated: - - * app/tools/gimpeditselectiontool.c - (gimp_edit_selection_tool_motion): set "first_move" to FALSE only - if a move actually happened. Fixes un-undoable moves at high zoom - factors. - -2004-10-06 Michael Natterer - - * app/widgets/gimpdnd.c (gimp_dnd_data_drag_begin): remember for - which GdkDragContext the icon_widget was made. - - (gimp_dnd_data_drag_end): destroy the icon_widget only if it was - created for this GdkDragContext. Fixes broken DND icon_widgets - when dragging the same source again while the old icon_widget is - still floating back from an unsuccessful drop. Fixes bug #139337. - -2004-10-05 Manish Singh - - * tools/pdbgen/lib.pl: Slight cleanup of doc generating code. - -2004-10-06 Michael Natterer - - * tools/pdbgen/lib.pl: for deprecated procedures, create a gtk-doc - comment that contains a link to the replacement procedure and - doesn't contain redundant information. - - * tools/pdbgen/pdb/text_tool.pdb: fixed names of replacement - procedures. - - * libgimp/gimpbrushes.c - * libgimp/gimpgradients.c - * libgimp/gimppalettes.c - * libgimp/gimppatterns.c: made the handwritten gtk-doc comments of - deprecated procedures look like the generated ones. - - * app/pdb/text_tool_cmds.c - * libgimp/gimpbrushes_pdb.c - * libgimp/gimpgradients_pdb.c - * libgimp/gimppalettes_pdb.c - * libgimp/gimppatterns_pdb.c - * libgimp/gimptexttool_pdb.c: regenerated. - -2004-10-06 Michael Natterer - - * app/tools/gimp-tools.c (gimp_tools_restore): reset the tool - options before deserializing so they have the correct default - values. Fixes bug #120832. - - * app/tools/gimpbucketfilloptions.c - * app/tools/gimpmagnifyoptions.c - * app/tools/gimpselectionoptions.c - * app/tools/gimptransformoptions.c: removed all set_defaults() - utility functions and moved their code to reset(). The change - above calls them automatically so there is no need to call them - from the GUI constructors any more. - -2004-10-06 Michael Natterer - - * plug-ins/script-fu/scripts/selection-round.scm: use a - scale_entry instead of a spinbutton, changed mnemonic from "R" to - "E", indentation. - - * plug-ins/script-fu/scripts/test-sphere.scm: s/SF_BRUSH/SF-BRUSH/ - in a comment. - -2004-10-06 Sven Neumann - - * plug-ins/script-fu/scripts/selection-round.scm: applied patch by - Alan Horkan that improves usability and usefulness of this script. - Did some code cleanup and added the old procedure for backward - compatibility. Fixes bug #145147. - - * menus/image-menu.xml.in: renamed placeholder in Image->Select - from "Outline" to "Modify". - -2004-10-06 Sven Neumann - - * plug-ins/common/postscript.c (ps_open): tweaked error message. - -2004-10-06 Michael Natterer - - * app/pdb/procedural_db.h (struct ProcRecord): changed new member - "deprecated" from "gboolean" to a "gchar*" which holds the name of - the replacement procedure. - - * tools/pdbgen/app.pl: changed accordingly. - - * app/plug-in/plug-in-message.c (plug_in_handle_proc_run): show - the name of the replacement procedure in the warning message. - - * tools/pdbgen/stddefs.pdb: added utility function - std_pdb_deprecated() which takes the name of the replacement - procedure and fills the blurb, help, author, copyright, date and - deprecated fields of the procedure definition. - - * tools/pdbgen/pdb/brushes.pdb - * tools/pdbgen/pdb/gradients.pdb - * tools/pdbgen/pdb/image.pdb - * tools/pdbgen/pdb/palettes.pdb - * tools/pdbgen/pdb/patterns.pdb - * tools/pdbgen/pdb/text_tool.pdb: use it instead of duplicating - the same code and strings for all deprecated procedures. - - * app/pdb/*_cmds.c - * libgimp/gimppatterns_pdb.c - * libgimp/gimptexttool_pdb.c: regenerated. - -2004-10-06 Michael Natterer - - Fixed the scale constraints radio buttons: - - * app/tools/gimptransformoptions.c (gimp_transform_options_gui): - initialize the radio group with the correct value instead of - resetting the model before creating the group. - - (gimp_scale_options_constrain_callback): change the model - only if the radio button became active. - - (gimp_scale_options_constrain_notify): new callback which makes - the radio buttons a real view on the model again (fixes GUI - updates on modifier press/release). - -2004-10-06 Sven Neumann - - * app/actions/plug-in-actions.c (plug_in_actions_update): an image - doesn't necessarily have a drawable. Handle the case when it doesn't. - -2004-10-06 Sven Neumann - - * app/app_procs.[ch] - * app/batch.[ch] - * app/main.c: added new command-line option "--batch-interpreter" - that allows to specify the procedure to use to process batch - commands. Removed the perl-server hack but kept Script-Fu as the - default for backward compatibility. - - * docs/gimp.1.in: documented the new option. - -2004-10-06 Michael Natterer - - * app/actions/file-commands.c (file_revert_confirm_callback): - removed the code which sets the new image on all contexts where - the old image was set... - - * app/display/gimpdisplay-foreach.c (gimp_displays_reconnect): - ...and added it here so it happens for all calls of this function, - also from the PDB. Fixes bug #154638. - -2004-10-06 Sven Neumann - - * libgimp/gimp.def: updated. - -2004-10-06 Michael Natterer - - * tools/pdbgen/pdb/brush.pdb: return the mask's bpp and the - brush's pixmap data if it has one. - - * tools/pdbgen/pdb/pattern.pdb: cleaned up. - - * tools/pdbgen/pdb/image.pdb: added $deprecated = 1 to deprecated - functions even if they are not exported to libgimp any more. - - * app/pdb/procedural_db.h (struct ProcRecord): added member - "gboolean deprecated". - - * tools/pdbgen/app.pl - * app/xcf/xcf.c: fill it accordingly. - - * app/plug-in/plug-in-message.c (plug_in_handle_proc_run): warn - not only for deprecated procedured which are in the compat hach - table, but also for procedures with deprecated flag set to TRUE. - - * app/pdb/*_cmds.c - * libgimp/gimpbrush_pdb.[ch] - * libgimp/gimppattern_pdb.[ch]: regenerated. - - * libgimp/gimpbrushmenu.c - * plug-ins/gfig/gfig-style.c: changed accordingly. - -2004-10-05 Manish Singh - - * tools/pdbgen/lib.pl: Fix array return value generation when there - are more args after it. - -2004-10-06 Sven Neumann - - * configure.in: bumped version number to 2.1.7. - -2004-10-06 Sven Neumann - - * tools/pdbgen/lib.pl: put subsequent deprecated prototypes into - a single #ifndef ... #endif pair. - - * libgimp/gimpbrushes_pdb.h - * libgimp/gimpgradients_pdb.h - * libgimp/gimppalettes_pdb.h - * libgimp/gimppatterns_pdb.h - * libgimp/gimptexttool_pdb.h: regenerated. - -2004-10-06 Sven Neumann - - * app/core/gimpimage.[ch]: store the time when the image is first - dirtied. - - * app/display/gimpdisplayshell-close.c: tell the user what time - period of changes will be lost when the image is not saved. - -2004-10-06 Michael Natterer - - * tools/pdbgen/pdb/brushes.pdb (brushes_get_brush_data) - * tools/pdbgen/pdb/gradients.pdb (gradients_sample_uniform) - (gradients_sample_custom) (gradients_get_gradient_data) - * tools/pdbgen/pdb/patterns.pdb (patterns_get_pattern_data): - deprecated. - - * tools/pdbgen/pdb/brush.pdb - * tools/pdbgen/pdb/gradient.pdb - * tools/pdbgen/pdb/palette.pdb - * tools/pdbgen/pdb/pattern.pdb: added replacements for the - deprecated functions. Removed the silly feature that passing NULL - as name operates on the current brush, pattern etc. - - * app/pdb/brush_cmds.c - * app/pdb/brushes_cmds.c - * app/pdb/gradient_cmds.c - * app/pdb/gradients_cmds.c - * app/pdb/internal_procs.c - * app/pdb/palette_cmds.c - * app/pdb/pattern_cmds.c - * app/pdb/patterns_cmds.c - * libgimp/gimpbrush_pdb.[ch] - * libgimp/gimpbrushes_pdb.[ch] - * libgimp/gimpgradient_pdb.[ch] - * libgimp/gimpgradients_pdb.[ch] - * libgimp/gimppalette_pdb.c - * libgimp/gimppattern_pdb.[ch] - * libgimp/gimppatterns_pdb.[ch]: regenerated. - - * libgimp/gimpbrushmenu.c - * libgimp/gimpgradientmenu.c - * libgimp/gimppatternmenu.c - * plug-ins/FractalExplorer/Dialogs.c - * plug-ins/common/gradmap.c - * plug-ins/common/sample_colorize.c - * plug-ins/flame/flame.c - * plug-ins/gfig/gfig-style.c - * plug-ins/gflare/gflare.c - * plug-ins/pagecurl/pagecurl.c - * plug-ins/script-fu/scripts/spyrogimp.scm: changed accordingly. - -2004-10-06 Sven Neumann - - * plug-ins/common/spheredesigner.c: improved the dialog a bit, - needs more work. - -2004-10-05 Sven Neumann - - * plug-ins/script-fu/scripts/addborder.scm: simple change to make - the script work on all image types, not only RGB. - -2004-10-05 Sven Neumann - - * Made 2.1.6 release. - -2004-10-05 Sven Neumann - - * plug-ins/helpbrowser/dialog.c: added a close button. Launch the - browser with the HTML focused. - -2004-10-05 Sven Neumann - - * libgimpwidgets/gimpwidgets.c (gimp_table_attach_aligned): - left-justify the label. - - * libgimpwidgets/gimpdialog.c: if a button with GTK_RESPONSE_HELP - is being added, hide the automatically added help button. - - * plug-ins/script-fu/script-fu-interface.c: five buttons are too - much for the action area. Renamed the About button to Help and - resurrected the help button in the about dialog as a way to get to - the actual help pages (pressing F1 will get you there as well). - -2004-10-05 Sven Neumann - - * app/widgets/gimpfiledialog.c: added a help button. - -2004-10-05 Michael Natterer - - * plug-ins/script-fu/siod-wrapper.c (marshall_proc_db_call): - - check the number of elements of array parameters against - the actually passed array and spit a proper error message - instead of trashing the wire. Fixes bug #154266. - - g_strdup()/g_free() the proc_name so it doesn't get mungled - by convert_string(). - - added missing implementation of INT16ARRAY return values. - - cleaned up STRINGARRAY value implementations to work like - all other array values. - -2004-10-04 Sven Neumann - - * plug-ins/script-fu/script-fu-interface.c (script_fu_reset): - fixed reset for SF_TEXT values. - -2004-10-04 Sven Neumann - - * plug-ins/script-fu/script-fu-interface.c (script_fu_interface): - oops, didn't meant to remove that line. - -2004-10-04 Sven Neumann - - * plug-ins/imagemap/Makefile.am (imagemap_SOURCES): removed pix-data.h. - -2004-10-04 Sven Neumann - - * libgimp/gimpdrawablepreview.c (gimp_drawable_preview_draw_area): - take drawable offsets into account when masking the preview with - the selection mask. - -2004-10-04 Michael Natterer - - * tools/pdbgen/pdb/gimprc.pdb (gimprc_query, gimprc_set): disallow - the empty string as token. Spotted by Kevin Cozens. - - * app/pdb/gimprc_cmds.c: regenerated. - -2004-10-04 Sven Neumann - - * libgimp/gimpaspectpreview.c (gimp_aspect_preview_draw_buffer): - no need to set bpp before calling gimp_drawable_get_thumbnail_data(). - -2004-10-04 DindinX - - * libgimp/gimpaspectpreview.c: (gimp_aspect_preview_draw_buffer): - only apply the effect inside the current selection. This, together - with my previous commit fixes bug #132194. - -2004-10-04 DindinX - - * plug-ins/common/channel_mixer.c: Ported to GimpAspectPreview. This - addresses but not totally fixes bug #132194. - -2004-10-04 Sven Neumann - - * app/config/gimpguiconfig.[ch] - * app/config/gimprc-blurbs.h: added gimprc option "show-help-button". - - * app/dialogs/preferences-dialog.c: added a GUI for it. - - * app/dialogs/file-save-dialog.c - * app/dialogs/image-new-dialog.c - * app/dialogs/quit-dialog.c - * app/display/gimpdisplayshell-close.c - * app/widgets/gimphelp-ids.h: don't set help-ids on confirmation - dialogs. - - * libgimpbase/gimpprotocol.[ch] - * libgimp/gimp.[ch]: added boolean "show_help_button" to the - config message. - - * app/plug-in/plug-in-run.c: pass the new preference to the plug-in. - - * libgimpwidgets/gimpdialog.[ch]: added new function that allows to - set whether new dialogs should get a help button added. - - * app/gui/gui.c - * libgimp/gimpui.c: call gimp_dialogs_show_help_button() according - to the gimprc settings. - -2004-10-04 Sven Neumann - - * plug-ins/script-fu/script-fu-interface.c (script_fu_about): set - the help_func again (but not the help_id). - -2004-10-04 Sven Neumann - - * plug-ins/script-fu/script-fu-interface.c (script_fu_about): - enabled line wrapping on labels. - (script_fu_interface): substitute underscores by hyphens to - generate the help-id from the procedure name. - -2004-10-04 Michael Natterer - - * libgimpbase/gimpwire.c: added assertions to make sure "count" is - always >= 0. Turns the crash described in bug #154266 into a - warning plus corrupted wire state :) Real fix (in script-fu) will - follow. Untabified. - -2004-10-04 Michael Natterer - - * libgimpwidgets/gimphelpui.c: untabified. - - (gimp_help_callback): use GIMP_HELP_ID instead of "gimp-help-id". - -2004-10-04 Sven Neumann - - * plug-ins/script-fu/script-fu-interface.c (script_fu_interface): - set a minimum width for the color button again. - (script_fu_about): don't set help_func and help_id on the about - dialog. - -2004-10-04 Michael Natterer - - * tools/pdbgen/pdb/brush.pdb - * tools/pdbgen/pdb/gradient.pdb - * tools/pdbgen/pdb/palette.pdb: disallow the empty string for - new brushes, gradients and palettes and check the return value - of gimp_data_factory_data_new(). Cleanup. - - * app/core/gimpbrushgenerated.c (gimp_brush_generated_new) - * app/core/gimpgradient.c (gimp_gradient_new) - * app/core/gimpdatafactory.c (gimp_data_factory_data_new): same - here. Fixes bug #154264. - - * app/core/gimpdata.[ch] (gimp_data_set_filename): added boolean - "deletable" parameter because it's not derivable from "writable". - - * app/core/gimpdatafactory.c (gimp_data_factory_load_data): need - to figure "deletable" separately from "writable" to be able to - delete unsavable stuff in the user-writable data directories. - Fixes bug #154410. - - (gimp_data_factory_data_save_single): cleaned up. - - * app/pdb/brush_cmds.c - * app/pdb/gradient_cmds.c - * app/pdb/palette_cmds.c - * libgimp/gimpbrush_pdb.c - * libgimp/gimpgradient_pdb.c - * libgimp/gimppalette_pdb.c: regenerated. - -2004-10-04 Sven Neumann - - * plug-ins/script-fu/scripts/asc2img.scm: a cleaned up version of - the script contributed by Kevin Cozens (see bug #153900). - - * plug-ins/script-fu/scripts/predator.scm: applied patch by Kevin - Cozens that fixes use of the script on original layer (bug #152678). - -2004-10-04 Sven Neumann - - * plug-ins/script-fu/scripts/3d-outline.scm - * plug-ins/script-fu/scripts/blended-logo.scm - * plug-ins/script-fu/scripts/camo.scm - * plug-ins/script-fu/scripts/clothify.scm - * plug-ins/script-fu/scripts/flatland.scm - * plug-ins/script-fu/scripts/glossy.scm - * plug-ins/script-fu/scripts/land.scm - * plug-ins/script-fu/scripts/predator.scm - * plug-ins/script-fu/scripts/rendermap.scm - * plug-ins/script-fu/scripts/ripply-anim.scm - * plug-ins/script-fu/scripts/speed-text.scm - * plug-ins/script-fu/scripts/spinning-globe.scm: applied patches - from Kevin Cozens that define variables before first use (bug - #153900). - -2004-10-04 Sven Neumann - - * libgimp/gimpgradientmenu.c: handle allocation > requisition for - the gradient preview. - - * plug-ins/script-fu/script-fu-interface.c: added a horizontal - size group for the left-aligned controls. - -2004-10-03 DindinX - - * plug-ins/common/destripe.c: ported to GimpDrawablePreview. - -2004-10-03 DindinX - - * plug-ins/common/nova.c: ported to GimpAspectPreview. - -2004-10-03 DindinX - - * plug-ins/common/max_rgb.c: ported to GimpAspectPreview. - -2004-10-03 Michael Schumacher - - * plug-ins/dbbrowser/Makefile.am - * plug-ins/script-fu/Makefile.am: moved the libgimpprocbrowser to - the beginning of LDADD - -2004-10-03 DindinX - - * libgimp/gimpaspectpreview.c: limit the size of the preview to 512 - pixels. This prevents plug-ins using gimp_drawable_get_thumbnail_data - to crash. - -2004-10-03 DindinX - - * plug-ins/common/emboss.c: ported to GimpAspectPreview and made some - cleanups so this plug-in now use the same naming scheme as other - plug-ins do. - -2004-10-03 DindinX - - * plug-ins/common/whirlpinch.c: ported to GimpAspectPreview. - -2004-10-03 Sven Neumann - - * tools/pdbgen/pdb/color.pdb: export the Colorize tool to the PDB. - Fixes bug #154368. - - * app/pdb/color_cmds.c - * app/pdb/internal_procs.c - * libgimp/gimpcolor_pdb.[ch]: regenerated. - -2004-10-03 DindinX - - * plug-ins/common/blinds.c: use a GimpAspectPreview to make the - preview resizable. - -2004-10-03 DindinX - - * plug-ins/common/ripple.c: Added a preview. - -2004-10-02 DindinX - - * plug-ins/common/polar.c: use a GimpAspectPreview. - -2004-10-02 DindinX - - * plug-ins/common/mapcolor.c: use a GimpAspectPreview and made the - code much simpler. - -2004-10-02 DindinX - - * plug-ins/common/illusion.c: use a GimpAspectPreview so the preview - is now resizable. - -2004-10-02 DindinX - - * plug-ins/common/apply_lens.c: added a preview. This plug-in still - need some work. - -2004-10-01 Michael Natterer - - * app/display/gimpdisplayshell-callbacks.c - (gimp_display_shell_tool_events): dispatch GDK_Escape to - GimpTool::key_press(). - - * app/tools/gimpcroptool.c (gimp_crop_tool_key_press) - * app/tools/gimpimagemaptool.c (gimp_image_map_tool_key_press): - * app/tools/gimptransformtool.c (gimp_transform_tool_key_press): - cancel the tool on . - -2004-10-01 Sven Neumann - - * plug-ins/dbbrowser/plugin-browser.c: it's Plug-In, not Plugin. - -2004-10-01 Sven Neumann - - * app/tools/gimpcroptool.c (crop_response): destroy the info - dialog instead of hiding it. Fixes session management. - -2004-10-01 Sven Neumann - - * app/tools/gimpcroptool.c: unset the highlight from - crop_response() so it gets called when cropping is cancelled. - - * app/dialogs/info-dialog.c (info_dialog_show): do what the - function name says, show the window, but don't present it. - Fixes bugs #128833 and #138816. - -2004-10-01 Sven Neumann - - * themes/Default/images/stock-frame-64.png: replaced the obtrusive - drop-shadow by a thin white frame with a subtle shadow. Taken from - a mockup done by Jimmac. - - * app/widgets/gimpviewrenderer-frame.c: changed the hardcoded - offsets for the new frame image :( - -2004-10-01 Sven Neumann - - * app/display/gimpdisplayshell-callbacks.c: no need to include - gimpdisplayshell-render.h here. - - * app/display/gimpdisplayshell-draw.c - * app/display/gimpdisplayshell-render.[ch] - - * app/display/gimpdisplayshell.[ch]: added an API to highlight a - rectangle (specified in image coordinates). Actually it doesn't - highlight but dims the area outside the rectangle. - - * app/tools/gimpcroptool.c: use the new functionality to show the - area to be cropped. Fixes bug #93360. - -2004-09-30 Michael Natterer - - * plug-ins/script-fu/script-fu-types.h (struct SFScript): renamed - member "decription" to "menu_path". - - * plug-ins/script-fu/script-fu-interface.c: changed accordingly. - - * plug-ins/script-fu/script-fu-scripts.c: ditto. Don't pass the - menu_path as "blurb" to gimp_install_temp_proc(). Instead, - pass "help" as "blurb" and nothing as "help". - - * plug-ins/script-fu/scripts/test-sphere.scm: shortened overly - long and useless help text. - -2004-09-30 Michael Natterer - - * plug-ins/dbbrowser/gimpprocbox.c: don't include - "libgimp/stdplugins-intl.h". - - * plug-ins/dbbrowser/gimpprocbrowser.c - * plug-ins/dbbrowser/plugin-browser.c: use gimp_destroy_paramdefs() - so we don't leak all param names and descriptions. - - * plug-ins/dbbrowser/gimpprocview.c: don't show empty rows or - redundant information (help == blurb for deprecated procedures). - -2004-09-30 Michael Natterer - - * plug-ins/dbbrowser/Makefile.am - * plug-ins/dbbrowser/gimpprocbox.c: new files holding more common - code from the two browsers. - - * plug-ins/dbbrowser/gimpprocbrowser.c: use it. - - * plug-ins/dbbrowser/plugin-browser.c: ditto. Re-enabled sorting - by all columns in both views. More cleanup. - -2004-09-30 Sven Neumann - - * README: added missing linebreak. - - * plug-ins/imagemap/imap_about.c (do_about_dialog): should not - mark email address for translation. - -2004-09-30 Daniel Egger - - * README: Applied proofreading patch from Jonathan Levi - . - -2004-09-30 Michael Natterer - - Cleaned up the DB Browser and Plugin Details code and GUI. It's - not perfect yet but at least they don't look like crap any more. - Fixes bug #131490. - - * plug-ins/common/plugin-defs.pl - * plug-ins/common/plugindetails.c: removed this plugin. - - * plug-ins/common/.cvsignore - * plug-ins/common/Makefile.am: regenerated. - - * plug-ins/dbbrowser/Makefile.am - * plug-ins/dbbrowser/dbbrowser.c - * plug-ins/dbbrowser/dbbrowser_utils.[ch]: removed these files. - - * plug-ins/dbbrowser/gimpprocbrowser.[ch] - * plug-ins/dbbrowser/gimpprocview.[ch]: new cleaned up files. - - * plug-ins/dbbrowser/plugin-browser.c: the former plugindetails. - * plug-ins/dbbrowser/procedure-browser.c: the former dbbrowser. - - * plug-ins/script-fu/Makefile.am: link against the new library - libgimpprocbrowser.a - - * plug-ins/script-fu/script-fu-console.c: changed #includes - accordingly. Minor cleanup. - - * tools/pdbgen/pdb/plug_in.pdb (plugins_query): fixed menu_path - return value. Was broken since the plug-in menu registering - changes. - - * app/pdb/plug_in_cmds.c: regenerated. - -2004-09-30 Sven Neumann - - * app/widgets/gimphelp.c (gimp_help_get_locales): fixed brokeness - I introduced with my last cleanup. - -2004-09-29 Manish Singh - - * plug-ins/pygimp/plug-ins/gimpfu.py: applied slightly tweaked patch - from Joao S. O. Bueno, which adds a mutliline text field (PF_TEXT) and - untabbifies things. Closes bug #153921. - - * plug-ins/pygimp/plug-ins/gimpplugin.py - * plug-ins/pygimp/plug-ins/gimpshelf.py - * plug-ins/pygimp/plug-ins/gimpui.py: Untabbify. - -2004-09-29 Manish Singh - - * plug-ins/pygimp/plug-ins/gtkcons.py: minor tweak to history - behavior. - - * plug-ins/pygimp/plug-ins/clothify.py - * plug-ins/pygimp/plug-ins/foggify.py - * plug-ins/pygimp/plug-ins/gimpcons.py - * plug-ins/pygimp/plug-ins/gtkcons.py - * plug-ins/pygimp/plug-ins/pdbbrowse.py - * plug-ins/pygimp/plug-ins/shadow_bevel.py - * plug-ins/pygimp/plug-ins/sphere.py - * plug-ins/pygimp/plug-ins/whirlpinch.py: Untabbify. - -2004-09-29 Sven Neumann - - * app/tools/gimpcropoptions.c (gimp_crop_options_gui): plugged a - tiny memleak spotted by Olivier. - -2004-09-29 Sven Neumann - - * libgimpwidgets/gimppreview.[ch] - * libgimpwidgets/gimpwidgets.def: added gimp_preview_draw_buffer(). - - * libgimp/gimpaspectpreview.[ch] - * libgimp/gimpdrawablepreview.[ch] - * libgimp/gimpui.def: removed the public draw_buffer API. - Implement the virtual GimpPreview::draw_buffer method instead. - - * plug-ins/common/cartoon.c - * plug-ins/common/deinterlace.c - * plug-ins/common/despeckle.c - * plug-ins/common/dog.c - * plug-ins/common/edge.c - * plug-ins/common/engrave.c - * plug-ins/common/exchange.c - * plug-ins/common/gauss.c - * plug-ins/common/grid.c - * plug-ins/common/neon.c - * plug-ins/common/noisify.c - * plug-ins/common/oilify.c - * plug-ins/common/photocopy.c - * plug-ins/common/plasma.c - * plug-ins/common/sel_gauss.c - * plug-ins/common/sharpen.c - * plug-ins/common/shift.c - * plug-ins/common/snoise.c - * plug-ins/common/sobel.c - * plug-ins/common/spread.c - * plug-ins/common/struc.c: changed accordingly. Don't pass the - preview around as GimpDrawablePreview or GimpAspectPreview. It - should whenever possible be accessed as GimpPreview. - -2004-09-29 Sven Neumann - - * libgimpwidgets/gimppreview.[ch] - * libgimpwidgets/gimpscrolledpreview.[ch] - * libgimpwidgets/gimpwidgets.def: moved the offsets and the - draw_thumb method back to the GimpPreview class. - - * libgimp/gimpdrawablepreview.c: changed accordingly. - - * plug-ins/common/bumpmap.c - * plug-ins/common/cartoon.c - * plug-ins/common/deinterlace.c - * plug-ins/common/despeckle.c - * plug-ins/common/dog.c - * plug-ins/common/edge.c - * plug-ins/common/engrave.c - * plug-ins/common/exchange.c - * plug-ins/common/gauss.c - * plug-ins/common/grid.c - * plug-ins/common/mblur.c - * plug-ins/common/neon.c - * plug-ins/common/noisify.c - * plug-ins/common/oilify.c - * plug-ins/common/photocopy.c - * plug-ins/common/sel_gauss.c - * plug-ins/common/sharpen.c - * plug-ins/common/shift.c - * plug-ins/common/sobel.c - * plug-ins/common/softglow.c - * plug-ins/common/spread.c - * plug-ins/common/struc.c - * plug-ins/common/unsharp.c - * plug-ins/common/wind.c: back to using gimp_preview_get_position(). - - * libgimp/gimpregioniterator.c (gimp_rgn_iterator_new): corrected - gtk-doc comment. - -2004-09-29 DindinX - - * plug-ins/common/snoise.c: Use a GimpAspectPreview here, so the - preview is resizable. - -2004-09-29 Sven Neumann - - * libgimp/gimpui.def - * libgimpwidgets/gimpwidgets.def: updated. - -2004-09-29 DindinX - - * libgimpwidgets/gimppreview.c - * libgimpwidgets/gimppreview.h: split this widget into itself (more - abstract now) and ... - - * libgimpwidgets/gimpscrolledpreview.c - * libgimpwidgets/gimpscrolledpreview.h: this widget which also have - some scrollbars and a nagivation preview. - - * libgimpwidgets/Makefile.am - * libgimpwidgets/gimpwidgetstypes.h: changed accordingly. - - * libgimp/gimpaspectpreview.c - * libgimp/gimpaspectpreview.h: Added this widget, derived from - GimpPreview, which has always the same ratio has the given drawable. - This widget has almost the same api as GimpDrawablePreview, and is - useful for plug-ins that show the whole (scaled) drawable in their - preview. - - * libgimp/gimpdrawablepreview.c - * libgimp/gimpdrawablepreview.h: GimpDrawablePreview is now derived - from GimpScrolledPreview. - - * libgimp/Makefile.am - * libgimp/gimpui.h - * libgimp/gimpuitypes.h: changed accordingly. - - * plug-ins/common/plasma.c: use a GimpAspectPreview. - - * plug-ins/common/bumpmap.c - * plug-ins/common/cartoon.c - * plug-ins/common/deinterlace.c - * plug-ins/common/despeckle.c - * plug-ins/common/dog.c - * plug-ins/common/edge.c - * plug-ins/common/engrave.c - * plug-ins/common/exchange.c - * plug-ins/common/gauss.c - * plug-ins/common/grid.c - * plug-ins/common/mblur.c - * plug-ins/common/neon.c - * plug-ins/common/noisify.c - * plug-ins/common/oilify.c - * plug-ins/common/photocopy.c - * plug-ins/common/sel_gauss.c - * plug-ins/common/sharpen.c - * plug-ins/common/shift.c - * plug-ins/common/sobel.c - * plug-ins/common/softglow.c - * plug-ins/common/spread.c - * plug-ins/common/struc.c - * plug-ins/common/unsharp.c - * plug-ins/common/wind.c: use gimp_scrolled_preview_get_position - instead of gimp_preview_get_position. - -2004-09-29 Michael Natterer - - * libgimp/gimpregioniterator.[ch]: renamed the "run_mode" - parameters to "unused" and remode the rum_mode member from the - private GimpRgbIterator struct. - - * plug-ins/common/AlienMap2.c - * plug-ins/common/autostretch_hsv.c - * plug-ins/common/c_astretch.c - * plug-ins/common/color_enhance.c - * plug-ins/common/colorify.c - * plug-ins/common/colortoalpha.c - * plug-ins/common/gradmap.c - * plug-ins/common/mapcolor.c - * plug-ins/common/max_rgb.c - * plug-ins/common/noisify.c - * plug-ins/common/normalize.c - * plug-ins/common/sample_colorize.c - * plug-ins/common/scatter_hsv.c - * plug-ins/common/semiflatten.c - * plug-ins/common/threshold_alpha.c - * plug-ins/common/vinvert.c - * plug-ins/fp/fp.c: made "run_mode" a private variable of run() - and pass 0 to gimp_rgn_iterate*(). Minor cleanups. - -2004-09-29 Sven Neumann - - * libgimp/gimp.def - * libgimp/gimpui.def - * libgimpwidgets/gimpwidgets.def: updated. - -2004-09-29 Michael Natterer - - * tools/pdbgen/Makefile.am - * tools/pdbgen/groups.pl: renamed group "gradient_edit" to - "gradient" and added "brush", "palette" and "pattern" groups. - - * tools/pdbgen/pdb/gradient_edit.pdb: removed. - - * tools/pdbgen/pdb/brush.pdb - * tools/pdbgen/pdb/gradient.pdb - * tools/pdbgen/pdb/palette.pdb - * tools/pdbgen/pdb/pattern.pdb: new files containing functions - which create, duplicate, rename, delete, query and manipulate - a single brush, pattern etc. - - * tools/pdbgen/pdb/brushes.pdb - * tools/pdbgen/pdb/gradients.pdb - * tools/pdbgen/pdb/palettes.pdb - * tools/pdbgen/pdb/patterns.pdb: deprecated stuff that is obsolete - now and simply removed the procedures that were added after 2.0. - - * app/pdb/gradient_edit_cmds.c - * libgimp/gimpgradientedit_pdb.[ch]: removed. - - * app/pdb/brush_cmds.c - * app/pdb/gradient_cmds.c - * app/pdb/palette_cmds.c - * app/pdb/pattern_cmds.c - * libgimp/gimpbrush_pdb.[ch] - * libgimp/gimpgradient_pdb.[ch] - * libgimp/gimppalette_pdb.[ch] - * libgimp/gimppattern_pdb.[ch]: new files. - - * app/pdb/brushes_cmds.c - * app/pdb/gradients_cmds.c - * app/pdb/internal_procs.c - * app/pdb/palettes_cmds.c - * app/pdb/patterns_cmds.c - * libgimp/gimp_pdb.h - * libgimp/gimpbrushes_pdb.[ch] - * libgimp/gimpgradients_pdb.[ch] - * libgimp/gimppalettes_pdb.[ch] - * libgimp/gimppatterns_pdb.[ch]: regenerated. - - * app/pdb/Makefile.am - * libgimp/Makefile.am - * plug-ins/gfig/gfig-style.c: changed accordingly. - -2004-09-28 Sven Neumann - - * app/file/gimprecentlist.c (gimp_recent_list_write): don't write - empty groups. - - * app/file/gimprecentlist.c: disabled the code for the win32 - platform. It doesn't make much sense there anyway. If someone - wants to contribute a win32 specific implementation, we'd welcome - that. A Mac OS X implementation would be nice to have as well. - -2004-09-28 Sven Neumann - - * etc/ps-menurc: updated for GIMP 2.1 by Eric Pierce. - -2004-09-28 Maurits Rijk - - * plug-ins/imagemap/imap_circle.c: - * plug-ins/imagemap/imap_cmd_gimp_guides.c - * plug-ins/imagemap/imap_edit_area_info.c - * plug-ins/imagemap/imap_grid.c - * plug-ins/imagemap/imap_polygon.c - * plug-ins/imagemap/imap_rectangle.c - * plug-ins/imagemap/imap_settings.c: first set of changes to make - imagemap fully HIG compliant. More to come. - -2004-09-28 Sven Neumann - - * app/file/gimprecentlist.c: seek to the start of the file before - calling lockf(). - -2004-09-28 Maurits Rijk - - * plug-ins/common/borderaverage.c: added size entry. Fixes #143156 - (Use size entry widget in Borderaverage plug-in) - -2004-09-28 Sven Neumann - - * docs/gimp.1.in: updated name of the splash image. - -2004-09-28 Michael Natterer - - * app/core/gimppalette.c: code review / cleanup. - - (gimp_palette_delete_entry): don't add "Black" when the last color - gets removed, a palette can easily live with zero colors. - - * app/widgets/gimppaletteeditor.c - (palette_editor_invalidate_preview): also update the entry which - shows the palette_entry's name. - -2004-09-28 Sven Neumann - - * app/file/gimprecentlist.c (gimp_recent_list_write_raw): handle - EINTR while writing. - -2004-09-28 Sven Neumann - - * app/config/gimpxmlparser.[ch]: added new convenience function - gimp_xml_parser_parse_fd(). - - * app/file/Makefile.am - * app/file/gimprecentitem.[ch] - * app/file/gimprecentlist.[ch]: added an implementation of the - recent-files spec as found on freedesktop.org. This code is taken - from libegg and has been edited to fit the GIMP needs. - - * app/file/file-open.c - * app/file/file-save.c: update the ~/.recently-used file. Fixes - bug #131206. - -2004-09-28 Michael Natterer - - * app/widgets/gimpcontainerbox.c (gimp_container_box_get_preview): - removed hack which strcmp()s the property name to figure the - preview's border_width and use the container view's - preview_border_width instead. - -2004-09-28 Sven Neumann - - * app/tools/gimpimagemaptool.c (gimp_image_map_tool_settings_dialog): - simplified code and removed a compiler warning. - -2004-09-28 Carol Spears - - * data/images/gimp-splash.png there was a white spot that was making - me crazy. It is gone now. - -2004-09-28 Sven Neumann - - * app/widgets/gimpaction.c (gimp_action_set_proxy): added a hack - to get rid of the border drawn around thumbnails in the "Open Recent" - menu. - -2004-09-28 Sven Neumann - - * app/tools/gimpimagemaptool.c (gimp_image_map_tool_settings_dialog): - add a shortcut to the filechooser that points to the user's folder. - - * app/actions/vectors-commands.c: added a file filter to the SVG - import dialog. - -2004-09-27 Sven Neumann - - * app/widgets/gimpthumbbox.c (gimp_thumb_box_new): added some - padding for the shadow frame to avoid scaling the thumbnail. - -2004-09-27 Sven Neumann - - * themes/Default/images/Makefile.am - * themes/Default/images/stock-frame-64.png: added a stock icon - that shows a simple drop shadow but could be exchanged for other - image decorations. - - * libgimpwidgets/gimpstock.[ch]: register the new icon. - - * app/widgets/Makefile.am - * app/widgets/gimpviewrenderer-frame.[ch]: new file that holds some - ugly code to draw a frame around a preview pixbuf. - - * app/widgets/gimpviewrenderer.[ch]: the frame pixbuf is attached - to the GimpViewRenderer class so it can be shared by all renderers. - - * app/widgets/gimpviewrendererimagefile.c: use the new functionality - to draw a nice frame around imagefile previews. - - * app/widgets/gimpcontainerbox.c: draw imagefile preview w/o a border. - -2004-09-27 Michael Natterer - - * app/actions/data-commands.c: cleanup. - - * app/actions/vectors-commands.c - * app/display/gimpdisplayshell.c - * tools/pdbgen/pdb/paint_tools.pdb: removed unused #includes. - - * app/text/gimptext-bitmap.c - * app/text/gimptext-parasite.c - * app/text/gimptext-vectors.c - * app/text/gimptext-xlfd.c - * app/text/gimptext.c - * app/text/gimptextlayer-xcf.c: include "text-types.h" instead - of "text/text-types.h". - - * app/widgets/gimppatternselect.c: create a GimpPatternFactoryView - instead of GimpDataFactoryView. - - * app/pdb/paint_tools_cmds.c: regenerated. - -2004-09-27 Michael Natterer - - * app/actions/brushes-actions.c - * app/actions/gradients-actions.c - * app/actions/palettes-actions.c - * app/actions/patterns-actions.c: made the "foo-edit" actions - GimpStringActions and pass the identifier of the editor dialog - to the callback. - - * app/actions/data-commands.[ch] (data_edit_data_cmd_callback): - show the editor dialog here instead of calling view->edit_func(). - - * app/dialogs/dialogs-constructors.[ch]: removed the brush, - gradient and palette edit_funcs. - - * app/widgets/widgets-types.h: removed typedef GimpDataEditFunc. - - * app/widgets/gimpdatafactoryview.[ch]: removed the edit_func - member and parameters and create the edit button unconditionally. - - * app/widgets/gimpbrushfactoryview.[ch] - * app/widgets/gimppatternfactoryview.[ch]: changed accordingly. - - * app/widgets/Makefile.am - * app/widgets/gimpdataselect.[ch]: removed this class, it's not - needed any longer. - - * app/widgets/gimpbrushselect.[ch] - * app/widgets/gimpgradientselect.[ch] - * app/widgets/gimppaletteselect.[ch] - * app/widgets/gimppatternselect.[ch]: derive them from GimpPdbDialog - and follow the edit_func removal. - - * app/gui/gui-vtable.c (gui_pdb_dialog_new): removed edit_func - stuff. - - * app/widgets/gimpcontainereditor.c: minor unrelated cleanup. - -2004-09-27 Michael Natterer - - * app/dialogs/dialogs-constrcutors.[ch]: renamed some constructors - for consistency and added a (useless) template grid. - - * app/dialogs/dialogs.c: make the arrays of GimpDialogFactoryEntries - more readable by using macros to define them. - -2004-09-27 Sven Neumann - - * app/core/gimpimagefile.c: removed conversion to TempBuf. - Instead implement GimpViewable::get_new_pixbuf by compositing the - thumbnail on a checkerboard. - - * app/widgets/gimpviewrenderer.[ch]: renamed the no_view_pixbuf - struct member to pixbuf. - (gimp_view_renderer_real_render): try gimp_viewable_get_pixbuf() - and render the pixbuf before falling back to the TempBuf preview. - (gimp_view_renderer_render_pixbuf): new function that sets a - pixbuf for the renderer and flushes the render_buffer. - - * app/widgets/gimpviewrendererimagefile.c - (gimp_view_renderer_imagefile_render): render the pixbuf. - - * app/dialogs/dialogs-constructors.c: create the document history - dockable with a zero borderwidth. - -2004-09-27 Sven Neumann - - * tools/pdbgen/pdb/fileops.pdb (file_load_thumbnail_invoker): use - the GIMP_CHECK_SIZE_SM define, not the enum value - GIMP_CHECK_SIZE_SMALL_CHECKS which is 0 (eeek!). - - * app/pdb/fileops_cmds.c: regenerated. - - * app/widgets/gimphelp.c (gimp_help_get_locales): minor cleanup. - -2004-09-26 Michael Natterer - - * app/widgets/gimpdataeditor.[ch]: added "data" property. - - * app/widgets/gimpbrusheditor.c - * app/widgets/gimpgradienteditor.c - * app/widgets/gimppaletteeditor.c: pass the current data to - g_object_new() so we never end up with initially empty editors. - -2004-09-26 Michael Natterer - - * app/widgets/gimpdataeditor.[ch]: added CONSTRUCT_ONLY - "data-factory" property. Removed gimp_data_editor_construct(). - - * app/widgets/gimpbrusheditor.c - * app/widgets/gimpgradienteditor.c - * app/widgets/gimppaletteeditor.c: pass the construct parameters - to g_object_new(). - -2004-09-26 Sven Neumann - - * app/widgets/gimpcolorframe.c: changed label alignment to be more - HIG conformant and consistent with the rest of the user interface. - -2004-09-26 Michael Natterer - - * app/widgets/gimpdialogfactory.[ch]: added "name", "blurb", - "stock_id" and "help_id" to struct GimpDialogFactoryEntry and to - gimp_dialog_factory_dialog_register(). Added typedef - GimpDialogConstructor which takes a GimpDialogFactoryEntry in - addition to the parameters GimpDialogNewFunc takes. Added a - constructor function pointer to GimpDialogFactory which defaults - to a function that just returns entry->new_func(). Use that - constructor instead of entry->new_func() for creating - dialogs. Added public API gimp_dialog_factory_set_constructor(). - - * app/dialogs/dialogs.c: register name, blurb, stock_id and - help_id for all dockables so all the dialog info lives in one huge - ugly table now. For the global_toolbox_factory and the - global_dock_factory, set a constructor which creates a dockable - around the widget returned by entry->new_func(). - - * app/dialogs/dialogs-constructors.[ch]: don't create the dockable - in each dialog constructor. Removes tons of code and reduces most - constructors to a "return gimp_foo_new(...)" one-liner. Got rid of - all static variables, they were from a time when GimpDialogFactory - was unable to manage singletons. - - * app/widgets/gimpbrusheditor.[ch] - * app/widgets/gimpgradienteditor.[ch] - * app/widgets/gimppaletteeditor.[ch]: return GtkWidget, not - GimpDataEditor from gimp_foo_editor_new(). - - * app/widgets/gimpdataeditor.c: minor cleanups. - -2004-09-26 Michael Natterer - - * app/widgets/gimpcolordialog.c: moved stuff from new() to init(). - -2004-09-26 Michael Natterer - - Ported GimpNavigationView to use actions for its buttons: - - * app/menus/menus.c (menus_init): register a - UI manager containing the "view" action group. - - * app/actions/actions.c (action_data_get_foo): handle "data" being - a GimpNavigationEditor. - - * app/actions/view-actions.c (view_actions): added tooltips for - the actions used in the editor. - - (view_actions_update): use action_data_get_display() instead of - checking the type of "data" manually. - - * app/widgets/gimpeditor.c (gimp_editor_add_action_button): use - a GtkToggleButton instead of GimpButton for GtkToggleActions. - - * app/display/gimpnavigationeditor.[ch]: added a GimpMenuFactory - parameter to the public constructor and removed all other - parameters. Simplified gimp_navigation_editor_new_private() and - use gimp_editor_add_action_button() instead of just add_button() - for creating the buttons. Made gimp_navigation_view_set_shell() - private. Update the UI manager when the shell zooms or scrolls. - - * app/dialogs/dialogs-constructors.c (dialogs_navigation_view_new): - pass the menu_factory to gimp_navigation_editor_new(). - - Removed #includes which are not needed any more. - -2004-09-26 DindinX - - * plug-ins/common/exchange.c: use the same preview as in all other - plug-ins. - -2004-09-25 Sven Neumann - - * plug-ins/imagemap/imap_stock.c: removed C++ style comment. - -2004-09-25 Maurits Rijk - - * plug-ins/imagemap/imap_stock.[ch] - * plug-ins/imagemap/Makefile.am - * plug-ins/imagemap/*.xpm: get rid of all .xpm images - - * configure.in - * plug-ins/imagemap/images/*: and add them as .png here - - * plug-ins/imagemap/imap_browse.c: remove unused include. - -2004-09-25 Sven Neumann - - * app/widgets/gimpviewrenderer.h: removed trailing whitespace. - -2004-09-25 Sven Neumann - - * app/display/gimpdisplayshell-close.c: changed mnemonic so that - you can close an image w/o saving it by using Ctrl-W Alt-W. - -2004-09-25 Michael Natterer - - * app/core/gimpimage-qmask.h: added comment about not changing the - silly "Qmask" string because it is used to identify the Quick Mask - in the XCF. - - * app/core/gimpchannel.c: implement GimpViewable::get_description() - and return "Quick Mask" if it's the Quick Mask. - - * app/actions/qmask-actions.c - * app/actions/qmask-commands.c - * app/core/core-enums.[ch] - * app/core/gimpimage-qmask.c - * app/display/gimpdisplayshell.c: s/QuickMask/Quick Mask/. - -2004-09-25 DindinX - - * plug-ins/common/engrave.c: Added a preview and #if'ed out some - unreachable code. - -2004-09-25 Michael Natterer - - * app/core/gimppickable.[ch]: added new vitrual function - GimpPickableInterface::get_image() - - * app/core/gimpdrawable.c - * app/core/gimpimagemap.c - * app/core/gimpprojection.[ch]: implement it. - -2004-09-25 Michael Natterer - - * app/widgets/gimpcolormapeditor.[ch] - * app/widgets/gimphistogrameditor.[ch] - * app/widgets/gimpselectioneditor.[ch]: removed redundant "gimage" - parameters from public constructors. They are all GimpImageEditor - widgets which get their image via gimp_docked_set_context() and - gimp_image_editor_set_image() later anyway. Fixes uglyness as well - as problems where the editors had an image but no context, causing - strange behavior in their foo_actions_update() functions. - - * app/dialogs/dialogs-constructors.c: changed accordingly. Removed - redundant calls to gimp_dockable_set_context() on newly created - dockables because they will get a context when added to their - containers. - -2004-09-25 Michael Natterer - - * app/widgets/gimpcolormapeditor.c: moved stuff from - gimp_colormap_editor_new() to - gimp_colormap_editor_init(). Untabified. - -2004-09-25 DindinX - - * plug-ins/common/dog.c: made the preview behave like in all other - plug-ins by using a GimpDrawablePreview. This allowed to remove a - bunch of complicated code. - -2004-09-25 Sven Neumann - - * app/widgets/gimptemplateeditor.[ch]: added resolution and image - type information which is usually hidden in the Advanced Options. - -2004-09-25 DindinX - - * plug-ins/common/oilify.c: Added a preview and made some small - cleanups. - -2004-09-24 Sven Neumann - - * app/config/gimprc-blurbs.h (LAYER_PREVIEW_SIZE_BLURB): try to - improve the tooltip for the layer-preview-size gimprc setting. - Addresses bug #153603. - -2004-09-24 Michael Natterer - - * app/core/gimpimage-undo-push.c (undo_pop_fs_to_layer): factored - common code out of the UNDO amd REDO cases. Use gimp_drawable_update() - instead of gimp_viewable_invalidate_preview() so the projection - gets updated correctly. Fixes bug #149558. - - * app/core/gimplayer-floating-sel.c (floating_sel_to_layer): - removed unused variables and their assignments. - -2004-09-24 Sven Neumann - - * app/widgets/gimptemplateeditor.[ch]: added a label that shows - the pixel size (as in the initial mockup done by Jimmac). - -2004-09-24 Michael Natterer - - * app/tools/gimpimagemaptool.c - (gimp_image_map_tool_settings_dialog): set the folder using - gtk_file_chooser_set_current_folder(), not set_filename(). - -2004-09-24 Sven Neumann - - * app/base/curves.[ch] - * app/tools/gimpcurvestool.c: defined CURVES_NUM_POINTS and use it. - - * tools/pdbgen/pdb/color.pdb (curves_spline_invoker): unset the - last control point which got initialized to (255,255) by - curves_init(). Fixes bug #153635. - - * app/pdb/color_cmds.c: regenerated. - -2004-09-24 Sven Neumann - - * app/plug-in/plug-in-message.c: removed a linebreak from a - warning message. - -2004-09-24 Michael Natterer - - * app/paint/gimpairbrushoptions.c - * app/paint/gimpcloneoptions.c - * app/paint/gimpconvolveoptions.c - * app/paint/gimpdodgeburnoptions.c - * app/paint/gimperaseroptions.c - * app/paint/gimpinkoptions.c - * app/paint/gimppaintoptions.c - * app/paint/gimppenciloptions.c - * app/paint/gimpsmudgeoptions.c - * app/tools/gimpblendoptions.c - * app/tools/gimpbucketfilloptions.c - * app/tools/gimpcoloroptions.c - * app/tools/gimpcolorpickeroptions.c - * app/tools/gimpcropoptions.c - * app/tools/gimpflipoptions.c - * app/tools/gimphistogramoptions.c - * app/tools/gimpimagemapoptions.c - * app/tools/gimpmagnifyoptions.c - * app/tools/gimpmeasureoptions.c - * app/tools/gimpmoveoptions.c - * app/tools/gimppaintoptions-gui.c - * app/tools/gimpselectionoptions.c - * app/tools/gimptextoptions.c - * app/tools/gimptransformoptions.c - * app/tools/gimpvectoroptions.c: code cleanup: untabified and - trailing whitespace removal, removed empty instance_init() - funcions, cleaned up variable declarations/initializations. - -2004-09-23 Michael Natterer - - * app/tools/gimpairbrushtool.c (gimp_airbrush_tool_register) - * app/tools/gimppenciltool.c (gimp_pencil_tool_register): - add GIMP_CONTEXT_GRADIENT_MASK to the tools' context_props because - these tools use the current gradient. Fixes bug #153584. - -2004-09-23 Michael Natterer - - * app/dialogs/Makefile.am - * app/dialogs/color-dialog.[ch]: removed... - - * app/widgets/Makefile.am - * app/widgets/widgets-types.h - * app/widgets/gimpcolordialog.[ch]: ...and added as widget. - - * app/core/gimpmarshal.list: new marshaller VOID__BOXED_ENUM. - - * app/widgets/widgets-enums.[ch]: new enum GimpColorDialogState. - - * app/widgets/gimpcolormapeditor.[ch] - * app/widgets/gimpcolorpanel.[ch] - * app/widgets/gimpgradienteditor.[ch] - * app/widgets/gimppaletteeditor.[ch] - * app/widgets/gimptoolbox-color-area.c - * app/actions/gradient-editor-commands.c - * app/actions/view-commands.c: ported to GimpColorDialog. Removes - a whole bunch of ugly widgets/ -> dialogs/ dependencies. - -2004-09-23 Sven Neumann - - * plug-ins/script-fu/script-fu-interface.c: put the text view into - a scrolled window. Removed "changed" callbacks for GtkEntry and - GtkTextView. Instead retrieve the final string when the dialog is - confirmed. - - * plug-ins/script-fu/scripts/carved-logo.scm - * plug-ins/script-fu/scripts/chrome-it.scm - * plug-ins/script-fu/scripts/crystal-logo.scm - * plug-ins/script-fu/scripts/sota-chrome-logo.scm: use - gimp-data-directory instead of the deprecated constant - gimp-data-dir. - - * plug-ins/script-fu/scripts/mkbrush.scm: unmarked strings for - translation that I marked yesterday. Won't work unfortunately. - -2004-09-23 Sven Neumann - - * plug-ins/script-fu/scripts/blended-logo.scm: fixed context - push/pop. - -2004-09-23 Sven Neumann - - * plug-ins/script-fu/script-fu-enums.h - * plug-ins/script-fu/script-fu-interface.c - * plug-ins/script-fu/script-fu-scripts.c - * plug-ins/script-fu/siod-wrapper.c: applied a patch by Kevin - Cozens, based on a patch by Dov Grobgeld. Implements multi-line - text input in Script-Fu (bug #124394). - - * plug-ins/script-fu/scripts/test-sphere.scm: test the new SF-TEXT - parameter. - -2004-09-23 Sven Neumann - - * libgimp/gimppixbuf.c (gimp_drawable_get_thumbnail, - gimp_image_get_thumbnail): use the exported symbols from - libgimp, not the private _gimp_drawable_thumbnail() - and _gimp_image_thumbnail() functions. - - * libgimp/gimp.def: added new symbols, removed - _gimp_image_thumbnail and _gimp_drawable_thumbnail. - -2004-09-23 Michael Natterer - - * tools/pdbgen/pdb/brushes.pdb - * tools/pdbgen/pdb/gradients.pdb - * tools/pdbgen/pdb/palettes.pdb - * tools/pdbgen/pdb/patterns.pdb: removed the foos_set_foo() - procedures and marked the foos_get_foo() ones as deprecated. For - brushes, patterns and palettes, added foos_get_foo_info() - procedures which work like foos_get_foo_data() but return just the - properties, not the actual data. Allow NULL or "" to be passed - as name to all functions (use the current brush, pattern etc. - in this case). - - * tools/pdbgen/pdb/fonts.pdb: cleanup. - - * app/pdb/procedural_db.c: added the removed ones to the compat - hash table. - - * libgimp/Makefile.am - * libgimp/gimpbrushes.[ch] - * libgimp/gimpgradients.[ch] - * libgimp/gimppalettes.[ch] - * libgimp/gimppatterns.[ch]: new files with compat functions - wich call the resp. gimp_context_*() functions. - - * libgimp/gimp.h: changed accordingly. - - * app/pdb/brushes_cmds.c - * app/pdb/gradients_cmds.c - * app/pdb/internal_procs.c - * app/pdb/palettes_cmds.c - * app/pdb/patterns_cmds.c - * libgimp/gimpbrushes_pdb.[ch] - * libgimp/gimpgradients_pdb.[ch] - * libgimp/gimppalettes_pdb.[ch] - * libgimp/gimppatterns_pdb.[ch]: regenerated. - - * plug-ins/FractalExplorer/Dialogs.c - * plug-ins/gfig/gfig-dialog.c - * plug-ins/gfig/gfig-style.[ch] - * plug-ins/gflare/gflare.c: changed accordingly. - -2004-09-23 Michael Natterer - - * plug-ins/common/bumpmap.c (bumpmap_dialog): added a GtkPaned for - packing preview and controls so the controls are resizable again. - -2004-09-23 Michael Natterer - - * plug-ins/script-fu/scripts/3d-outline.scm - * plug-ins/script-fu/scripts/beveled-pattern-arrow.scm - * plug-ins/script-fu/scripts/beveled-pattern-bullet.scm - * plug-ins/script-fu/scripts/beveled-pattern-button.scm - * plug-ins/script-fu/scripts/beveled-pattern-heading.scm - * plug-ins/script-fu/scripts/beveled-pattern-hrule.scm - * plug-ins/script-fu/scripts/blended-logo.scm - * plug-ins/script-fu/scripts/carve-it.scm - * plug-ins/script-fu/scripts/carved-logo.scm - * plug-ins/script-fu/scripts/chip-away.scm - * plug-ins/script-fu/scripts/chrome-it.scm - * plug-ins/script-fu/scripts/coffee.scm - * plug-ins/script-fu/scripts/comic-logo.scm - * plug-ins/script-fu/scripts/coolmetal-logo.scm - * plug-ins/script-fu/scripts/crystal-logo.scm - * plug-ins/script-fu/scripts/frosty-logo.scm - * plug-ins/script-fu/scripts/glossy.scm - * plug-ins/script-fu/scripts/hsv-graph.scm - * plug-ins/script-fu/scripts/land.scm - * plug-ins/script-fu/scripts/lava.scm - * plug-ins/script-fu/scripts/mkbrush.scm - * plug-ins/script-fu/scripts/rendermap.scm - * plug-ins/script-fu/scripts/select-to-brush.scm - * plug-ins/script-fu/scripts/select-to-pattern.scm - * plug-ins/script-fu/scripts/sota-chrome-logo.scm - * plug-ins/script-fu/scripts/spyrogimp.scm - * plug-ins/script-fu/scripts/starburst-logo.scm - * plug-ins/script-fu/scripts/starscape-logo.scm - * plug-ins/script-fu/scripts/t-o-p-logo.scm - * plug-ins/script-fu/scripts/test-sphere.scm - * plug-ins/script-fu/scripts/textured-logo.scm: use the new - opacity, paint_mode, brush, pattern, gradient, palette and font - accessors. - -2004-09-23 Sven Neumann - - Converted the last bunch of scripts to the new context API: - - * plug-ins/script-fu/scripts/[s-z]*.scm - -2004-09-23 Sven Neumann - - Converted more scripts to the new context API: - - * plug-ins/script-fu/scripts/glossy.scm - * plug-ins/script-fu/scripts/hsv-graph.scm - * plug-ins/script-fu/scripts/image-structure.scm - * plug-ins/script-fu/scripts/perspective-shadow.scm - * plug-ins/script-fu/scripts/pupi-button.scm - * plug-ins/script-fu/scripts/rendermap.scm - * plug-ins/script-fu/scripts/ripply-anim.scm - -2004-09-23 Sven Neumann - - * plug-ins/script-fu/scripts/hsv-graph.scm: - - * tools/pdbgen/pdb/context.pdb: oops, should probably pop, not - push a context in gimp_context_pop(). - - * app/pdb/context_cmds.c: regenerated. - - * plug-ins/script-fu/scripts/mkbrush.scm: don't fiddle with the - brush description, simply use the name choosen by the user. - -2004-09-23 Sven Neumann - - Converted the next bunch of scripts to the new context API: - - * plug-ins/script-fu/scripts/[d-n]*.scm: push and pop a context. - Removed code that used to restore the context values changed by - the scripts. - -2004-09-23 Michael Natterer - - * app/plug-in/plug-in-message.c (plug_in_handle_proc_return_priv): - removed warning about entering a dead code path. That path is not - dead at all :) - -2004-09-23 Michael Natterer - - * tools/pdbgen/pdb/context.pdb: added accessors for the context's - brush, pattern, gradient, palette and brush. Deprecation of old - functions will follow. Fixes gimp-context-set-background wrapper. - Cleanup. - - * tools/pdbgen/pdb/patterns.pdb - * libgimp/gimpbrushes.h: minor fixes. - - * app/pdb/context_cmds.c - * app/pdb/internal_procs.c - * app/pdb/patterns_cmds.c - * libgimp/gimpcontext_pdb.[ch]: regenerated. - -2004-09-23 Sven Neumann - - * plug-ins/common/bumpmap.c (bumpmap_dialog): cosmetics. - -2004-09-22 Kevin Turner - - * plug-ins/pygimp/gimpfu.py (register): clean up errors in - parameter checking. - -2004-09-22 Michael Natterer - - * tools/pdbgen/pdb/brushes.pdb: removed the opacity and paint_mode - functions... - - * tools/pdbgen/pdb/context.pdb: ...and added them here. - - * app/pdb/procedural_db.c: added them to the pdb_compat hash table. - - * libgimp/Makefile.am - * libgimp/gimpbrushes.[ch]: new files with compat functions - which call the gimp_context_*() functions. - - * libgimp/gimp.h: changed accordingly. - - * app/pdb/brushes_cmds.c - * app/pdb/context_cmds.c - * app/pdb/internal_procs.c - * libgimp/gimpbrushes_pdb.[ch] - * libgimp/gimpcontext_pdb.[ch]: regenerated. - -2004-09-22 Michael Natterer - - * tools/pdbgen/Makefile.am - * tools/pdbgen/groups.pl - * tools/pdbgen/pdb/palette.pdb: removed the "Palette" pdb group... - - * tools/pdbgen/pdb/context.pdb: and added its functions to the - "Context" namespace instead. - - * app/pdb/Makefile.am - * app/pdb/palette_cmds.c: removed. - - * app/pdb/procedural_db.c: added them to the pdb_compat hash table. - - * libgimp/Makefile.am - * libgimp/gimppalette_pdb.[ch]: removed. - - * libgimp/gimppalette.[ch]: new files holding compat functions - which call gimp_context_*() functions. - - * libgimp/gimp.h - * libgimp/gimpui.c: changed accordingly. - - * app/pdb/context_cmds.c - * app/pdb/internal_procs.c - * libgimp/gimp_pdb.h - * libgimp/gimpcontext_pdb.[ch]: regenerated. - - * plug-ins/MapObject/mapobject_image.c - * plug-ins/MapObject/mapobject_preview.c - * plug-ins/common/apply_lens.c - * plug-ins/common/blinds.c - * plug-ins/common/borderaverage.c - * plug-ins/common/checkerboard.c - * plug-ins/common/colortoalpha.c - * plug-ins/common/cubism.c - * plug-ins/common/exchange.c - * plug-ins/common/film.c - * plug-ins/common/gif.c - * plug-ins/common/grid.c - * plug-ins/common/mapcolor.c - * plug-ins/common/mblur.c - * plug-ins/common/mng.c - * plug-ins/common/mosaic.c - * plug-ins/common/papertile.c - * plug-ins/common/png.c - * plug-ins/common/polar.c - * plug-ins/common/semiflatten.c - * plug-ins/common/sinus.c - * plug-ins/common/sparkle.c - * plug-ins/common/vpropagate.c - * plug-ins/common/warp.c - * plug-ins/common/whirlpinch.c - * plug-ins/gfig/gfig-style.c - * plug-ins/gfli/gfli.c - * plug-ins/ifscompose/ifscompose.c - * plug-ins/maze/handy.c - * plug-ins/pagecurl/pagecurl.c - * plug-ins/pygimp/gimpmodule.c - * plug-ins/script-fu/scripts/*.scm: changed accordingly. - -2004-09-22 Sven Neumann - - * app/actions/view-actions.c (view_zoom_actions): mark menu label - as translatable (bug #153456). - -2004-09-22 Sven Neumann - - * plug-ins/script-fu/siod-wrapper.c - * plug-ins/script-fu/scripts/mkbrush.scm - * plug-ins/script-fu/scripts/select-to-brush.scm - * plug-ins/script-fu/scripts/select-to-pattern.scm: applied a - patch from Kevin Cozens that adds constants for the directory - names exposed by libgimpbase. Fixes bug #153327. - -2004-09-22 Sven Neumann - - Converted the first bunch of Script-Fu to the new context API: - - * plug-ins/script-fu/scripts/[3a-c]*.scm: push and pop a context. - Removed code that used to restore the context values changed by - the scripts. - -2004-09-22 Michael Natterer - - * app/plug-in/plug-in-proc-frame.[ch] (plug_in_proc_frame_init): - removed assertion about proc_rec != NULL because that happens - when query()ing and init()int plug-ins. - - Replaced "context" by "main_context" plus "context_stack". - - * app/plug-in/plug-in-context.c: implement plug_in_context_push() - and plug_in_context_pop(). - - * app/plug-in/plug-in-message.c - * app/plug-in/plug-in-progress.c: changed accordingly. - - * tools/pdbgen/pdb/context.pdb: use the return values of - plug_in_context_push() and _pop(). - - * app/pdb/context_cmds.c: regenerated. - - * plug-ins/script-fu/scripts/test-sphere.scm: use - gimp-context-push and gimp-context-pop instead of remembering the - old values for FG, BG etc. - -2004-09-22 Sven Neumann - - * tools/pdbgen/Makefile.am - * tools/pdbgen/pdb/context.pdb: new files that will hold context - related PDB functions. - - * tools/pdbgen/groups.pl - * app/pdb/Makefile.am - * app/pdb/context_cmds.c - * app/pdb/internal_procs.c - * app/pdb/progress_cmds.c - * libgimp/gimp_pdb.h - * libgimp/gimpcontext_pdb.[ch]: (re)generated. - - * app/plug-in/Makefile.am - * app/plug-in/plug-in-context.[ch]: new files that will hold code - that implements a context stack in the plug-in's proc-frame. - - * app/plug-in/plug-in.[ch]: new function plug_in_get_proc_frame(). - - * app/plug-in/plug-in-message.c - * app/plug-in/plug-in-progress.c: use the new function instead of - duplicating it all over the place. - -2004-09-22 Michael Natterer - - * app/plug-in/Makefile.am - * app/plug-in/plug-in-proc.[ch]: removed... - * app/plug-in/plug-in-proc-def.[ch]: ...and added with a new name. - - * app/plug-in/plug-in-def.[ch] - * app/plug-in/plug-in-message.[ch] - * app/plug-in/plug-in-progress.[ch] - * app/plug-in/plug-in-rc.[ch] - * app/plug-in/plug-in-run.[ch] - * app/plug-in/plug-in.[ch] - * app/plug-in/plug-ins.[ch] - * app/actions/plug-in-actions.c - * app/actions/plug-in-commands.c - * app/file/file-open.[ch] - * app/file/file-save.[ch] - * app/file/file-utils.[ch] - * app/gui/gui-vtable.c - * app/menus/plug-in-menus.c - * app/widgets/gimpfiledialog.c - * app/widgets/gimpfileprocview.c - * app/widgets/gimppluginaction.c - * app/xcf/xcf.c - * tools/pdbgen/pdb/fileops.pdb - * tools/pdbgen/pdb/plug_in.pdb: changed accordingly plus some - minor cosmetic cleanups. - - * app/pdb/fileops_cmds.c - * app/pdb/plug_in_cmds.c: regenerated. - -2004-09-22 Michael Natterer - - * app/widgets/gimplayertreeview.c - (gimp_layer_tree_view_floating_selection_changed): removed the - hack that was displaying "Floating Selection" instead of the - floating layer's real name. - - * app/core/gimplayer.c: implement GimpViewable::get_description() - instead and special case floating selections with a two-line - text that contains "Floating Selection". - - * app/core/gimplayer-floating-sel.c - * app/core/gimpimage-undo-push.c: emit "name_changed" on the layer - when it changes its state from floating to normal or vice versa - so the views can update accordingly. - - * app/core/gimpselection.c: s/"Selection"/"Floated Layer"/. - - * app/tools/gimpeditselectiontool.c: - s/"Floating Layer"/"Floating Selection"/. - -2004-09-22 Michael Natterer - - * app/plug-in/Makefile.am - * app/plug-in/plug-in-proc-frame.[ch]: new files containing - utility functions for initializing/freeing PlugInProcFrames. - Added the progress stuff to the proc_frame. - - * app/plug-in/plug-in.[ch]: removed the progress stuff from the - PlugIn struct and use the new proc_frame utility functions. - - * app/plug-in/plug-in-message.c - * app/plug-in/plug-in-progress.c - * app/plug-in/plug-in-run.c: changed accordingly. - -2004-09-22 Michael Natterer - - Prepare for enabling private contexts for plug-ins and scripts: - - * app/plug-in/plug-in.[ch]: removed the "context" member from - the PlugIn struct and added it to PlugInProcFrame instead. - - * app/plug-in/plug-in-message.c - * app/plug-in/plug-in-progress.c - * app/plug-in/plug-in-run.c: changed accordingly. - -2004-09-22 Sven Neumann - - * plug-ins/common/bumpmap.c: moved the preview to the left. - -2004-09-22 Michael Natterer - - * app/plug-in/plug-in-types.h - * app/plug-in/plug-in.[ch]: added struct PlugInProcFrame which - contains the ProcRecord, the proc's GMainLoop and its return - values. - - Use the same struct for the plug-in's main proc and its - temp_procs, so we finally have one set of return values per call - frame, and not just one per plug-in. - - Added plug_in_proc_frame_push()/pop() and changed - plug_in_main_loop[_quit]() accordingly. - - * app/plug-in/plug-in-message.c - * app/plug-in/plug-in-progress.c - * app/plug-in/plug-in-run.c: changed accordingly. - -2004-09-22 Sven Neumann - - * app/text/gimptextlayout.c (gimp_text_get_pango_context): - workaround Pango bug #143542 (PangoFT2Fontmap leak, see also bug - #148997). Based on a patch by Robert Ögren. - -2004-09-22 Sven Neumann - - * app/widgets/gimpviewabledialog.c: removed the prelit event box - from the header frame, use a smaller font for the subtitle, - removed the separator. - - * app/dialogs/preferences-dialog.c: removed the prelit event box - from the header frame. Perhaps we should have subtitles here with - a more verbose description of the settings page? - -2004-09-21 Michael Natterer - - * app/actions/file-actions.c (file_actions): resolved conflicting - mnemonics. - -2004-09-21 Sven Neumann - - * data/images/Makefile.am (imagedata_DATA): renamed gimp_splash.png - to gimp-splash.png. - - * data/images/gimp-splash.png: new splash, courtesy of Dave Neary. - - * app/gui/splash.c: look for gimp-splash.png in the users - directory, then in the systemwide images directory. - -2004-09-21 Sven Neumann - - * plug-ins/script-fu/script-fu-server.c: got rid of two the global - file descriptor sets. Use the client hash-table instead. - -2004-09-21 Sven Neumann - - * plug-ins/script-fu/script-fu-server.c: enabled build of the - Script-Fu server for the Win32 platform using the winsock API. - - * plug-ins/script-fu/Makefile.am: link with -lwsock32 on Win32. - - * plug-ins/script-fu/script-fu-console.c - * plug-ins/script-fu/script-fu.c - * plug-ins/script-fu/siod-wrapper.c: removed Win32 specific code - that isn't needed any longer. - -2004-09-21 Michael Natterer - - For the sake of completeness, added a GUI for the hidden - "Open as Layer" feature: - - * app/actions/file-actions.c - * app/actions/file-commands.[ch]: added "file-open-as-layer" - action and callback. Abuse the "gimage" field of GimpFileDialog to - indicate layer opening (it's otherwise unused for file-open). - - * app/dialogs/file-open-dialog.c: if dialog->gimage is non-NULL, - open the selected files as layers for that image. - - * app/widgets/gimphelp-ids.h: added GIMP_HELP_FILE_OPEN_AS_LAYER. - - * menus/image-menu.xml.in: added it to the menu. - -2004-09-21 Sven Neumann - - * plug-ins/common/jpeg.c (save_dialog): let the dialog collapse - with the expander by making it not resizable. - -2004-09-21 Sven Neumann - - * app/display/gimpdisplayshell-close.c - (gimp_display_shell_close_dialog): resolved a mnemonics collision. - -2004-09-21 Dave Neary - - * plug-ins/common/psd.c: Correctly set overlay, hard light and - soft light modes from .psd files. Fixes bug #153229. - -2004-09-21 Sven Neumann - - * plug-ins/common/svg.c (SVG_DEFAULT_RESOLUTION): set to 90dpi as - a workaround for bug #143300. - -2004-09-20 Maurits Rijk - - * plug-ins/imagemap/imap_cmd_guides.c - * plug-ins/imagemap/imap_default_dialog.c - * plug-ins/imagemap/imap_menu.c - * plug-ins/imagemap/imap_preferences.c - * plug-ins/imagemap/imap_tools.c: disabled functionality that doesn't - fully work yet. Bug #136713 now becomes an enhancement request. - -2004-09-20 Sven Neumann - - * plug-ins/common/bumpmap.c: added tooltips, enabled "Compensate - for darkening" by default, some minor cleanups. - -2004-09-20 Michael Natterer - - * app/dialogs/dialogs-constructors.c: removed useless #includes. - -2004-09-20 Michael Natterer - - * app/actions/buffers-commands.c - * app/actions/file-commands.c - * app/actions/layers-commands.c - * app/actions/plug-in-actions.c - * app/actions/tools-actions.c: removed useless #includes, cleanup. - -2004-09-20 Michael Natterer - - * app/dialogs/dialogs.[ch] (dialogs_init): added GimpMenuFactory - parameter and removed inclusion on "menus/menus.h". - - * app/menus/menus.[ch] (menus_init): added GimpActionFactory - parameter and removed inclusion of "actions/actions.h". - - * app/gui/gui.c (gui_restore_callback): pass the factories to the - above functions. - -2004-09-20 Sven Neumann - - * configure.in: bumped version number to 2.1.6. - -2004-09-20 DindinX - - * plug-ins/common/deinterlace.c: added a preview. Not sure if it is - really useful... - -2004-09-20 DindinX - - * plug-ins/common/shift.c: added a preview. - -2004-09-20 Michael Natterer - - * libgimpwidgets/gimpcolorselect.c (gimp_color_select_xy_events): - removed "case GDK_CONFIGURE" because it's not needed and did - "break" instead of "return FALSE", causing random color changes - when resizing and initially showing the widget. - -2004-09-20 Sven Neumann - - * Made 2.1.5 release. - -2004-09-20 Michael Natterer - - * app/Makefile.am (gimp_2_1_LDFLAGS): removed all -u hacks. - - (gimp_2_1_LDADD) - (gimp_console_2_1_LDADD): reordered .a files correctly. The core - seems to be cleaned up enough to have proper dependencies now. - -2004-09-20 Michael Natterer - - * app/actions/channels-commands.c - * app/actions/vectors-commands.c: removed massive code duplication - by factoring out the code that creates the "New Channel/Path" and - "Edit Channel/Path Attributes" dialogs out to utility functions. - GUI spacing and Code cleanup. - - * app/actions/layers-commands.c: minor GUI spacing and code - cleanup. - -2004-09-19 Sven Neumann - - * app/base/tile-manager.c (tile_manager_get_memsize): count valid - tiles, not dirty ones. - -2004-09-19 Sven Neumann - - * plug-ins/common/bumpmap.c: some tweaks to the dialog layout. - -2004-09-19 Michael Natterer - - * app/actions/qmask-commands.c (qmask_invert_cmd_callback): is a - GtkRadioAction callback but behaved like a GtkToggleAction - callback. Fixes bug #152948. - -2004-09-19 DindinX - - * plug-ins/common/bumpmap.c: use a GimpDrawablePreview instead of a - very complicated homemade preview. Many small changes in the code - too, and some cleanups. I hope I didn't break anything. - -2004-09-19 Bill Skaggs - - * app/tools/gimppaintoptions-gui.c: clean up ugliness introduced - by my previous commit -- no functional change. - -2004-09-19 Sven Neumann - - Improved undo memory calculation for paint operations (bug #153035): - - * app/base/tile-manager.[ch] (tile_manager_get_memsize): added a - "gboolean sparse" parameter to get more accurate results for - sparse tile-managers. - - * app/core/gimpbuffer.c - * app/core/gimpdrawable.c - * app/core/gimpimage-undo-push.c - * app/core/gimpimage.c - * app/core/gimplayer.c - * app/core/gimpprojection.c: changed accordingly. - -2004-09-19 Sven Neumann - - * app/dialogs/Makefile.am (libappdialogs_a_SOURCES): added authors.h. - -2004-09-19 Bill Skaggs - - * app/tools/gimppaintoptions-gui.c: rearrange tool options as - described in bug #153014. - -2004-09-19 Sven Neumann - - * app/widgets/gimperrordialog.c (gimp_error_dialog_add): fixed - handling of too many error messages. - -2004-09-19 Sven Neumann - - Try to make floating selections more obvious: - - * app/widgets/gimplayertreeview.c - (gimp_layer_tree_view_floating_selection_changed): always display - "Floating Selection" as the name for a floating selection. - - * app/core/gimpselection.c (gimp_selection_float): call the new - layer "Selection" instead of "Floating Selection". This is what - will be displayed if the FS is turned into a layer. - - * app/actions/layers-commands.c (layers_edit_layer_query): don't - special case floating selections here. - - * app/core/gimplayer-floating-sel.c: cosmetics. - -2004-09-19 Sven Neumann - - * plug-ins/common/postscript.c (ps_open): applied a patch by Peter - Kirchgessner that solves a problem with the recognition of the - bounding box. Fixes bug #152829. - -2004-09-19 Sven Neumann - - * libgimpcolor/gimprgb-parse.c (gimp_rgb_parse_hex): fixed gtk-doc - comment. - -2004-09-18 Simon Budig - - * libgimpwidgets/gimpcolorhexentry.c: Removed check for len % 3 == 0, - so that the entry accepts hex colors starting with "#" again. - Untabbified. - -2004-09-18 Manish Singh - - * app/Makefile.am: remove LDFLAGS references to now private - file_open_dialog_show, file_open_location_dialog_show, and - file_save_dialog_show. - -2004-09-18 Sven Neumann - - * app/actions/qmask-commands.c - * libgimpcolor/gimprgb.c (gimp_rgba_distance): just some cleanup. - - * app/core/gimpimage-qmask.c (gimp_image_set_qmask_color): always - set gimage->qmask_color regardless of the qmask state. - - * libgimpwidgets/gimpcolorbutton.c (gimp_color_button_new): set - the type before setting the color. - -2004-09-17 Michael Natterer - - * app/widgets/gimpcomponenteditor.c - (gimp_component_editor_renderer_update): use - gimp_component_editor_get_iter() instead of duplicating its code. - -2004-09-17 Simon Budig - - * app/widgets/gimpbrusheditor.[ch]: Added a slider for the - brush spacing to the brush editor. Should make it more obvious - how to change it. - -2004-09-17 Sven Neumann - - * app/core/gimp-edit.c (gimp_edit_paste): based on a patch from - Joao S. O. Bueno: Ensure that the pasted layer is always within - the image, if it fits and aligned at top left if it doesn't. - Fixes bug #142944. - -2004-09-16 Sven Neumann - - * INSTALL: updated. - -2004-09-16 Sven Neumann - - * libgimpwidgets/gimpwidgets.c (gimp_scale_entry_set_logarithmic): - applied a patch by Joao S. O. Bueno that fixes bug #152820. - -2004-09-16 Dave Neary - - * plug-ins/script-fu/scripts/burn-in-anim.scm: patch from Kevin - Cozens which reinstates corona. Fixes bug #142282. - -2004-09-16 Michael Natterer - - * configure.in: depend on GLib >= 2.4.5 and GTK+ >= 2.4.4. - - * app/gui/gui.c: changed accordingly. - - * app/sanity.c: ditto. Added check for GLib and put each check - into its own utility function. Enabled #if 0'ed check for - FreeType >= 6.2.7. - - * app/widgets/gimpactiongroup.c - * app/widgets/gimpcursor.c - * app/widgets/gimpselectiondata.c - * app/widgets/gimpuimanager.c - * app/widgets/gimpwidgets-utils.c: removed workarounds for library - versions we refuse to start with. - -2004-09-16 Michael Natterer - - * app/widgets/gimpdnd.c (gimp_dnd_uri_list_dest_add): reverse - order of DND dests so "text/uri-list" is preferred again after my - DND change of 2004-06-29. Fixes dropping of multiple files. - -2004-09-16 Michael Natterer - - * app/widgets/gimpcomponenteditor.[ch]: set the viewable - renderer's "renderer" property to NULL when clearing the - view to work around bug #149906. - -2004-09-16 Sven Neumann - - * app/core/gimpscanconvert.c (VALUE_TO_PIXEL): replaced a bitshift - with a binary and. Should be unnoticeably faster ;) - -2004-09-16 Michael Natterer - - * app/pdb/procedural_db.c: removed #if 0'ed code, took assignments - out of if()-conditions, minor cleanup. - -2004-09-16 Simon Budig - - * app/core/gimpscanconvert.c: Implemented an own rendering - callback for libart and use it instead of art_gray_svp_aa(). - This now handles non-antialiased scan conversions itself. It - also basically shows the way to implement a LUT for the - scan conversion. - -2004-09-16 Sven Neumann - - * app/dialogs/quit-dialog.c: removed code that isn't needed any - longer now that the dialog is a singleton. - -2004-09-15 DindinX - - * plug-ins/common/mblur.c: fix the preview for the zoom blur mode. - -2004-09-15 Sven Neumann - - * libgimpwidgets/gimppreviewarea.c - (gimp_preview_area_[draw|blend|mask]): fixed code that handles - drawing outside of the preview area. - - * plug-ins/common/unsharp.c (preview_update): draw the preview - directly from the pixel region. - -2004-09-15 Manish Singh - - * modules/controller_linux_input.c: use guint16 instead of __u16. - Should fix bug #152746. - -2004-09-15 Sven Neumann - - * libgimp/gimpdrawablepreview.[ch] - * libgimp/gimpui.def: renamed gimp_drawable_preview_draw() to - gimp_drawable_preview_draw_buffer() and added a rowstride - parameter. Added new functions gimp_drawable_preview_get_drawable() - and gimp_drawable_preview_draw_region(). - - * plug-ins/common/mblur.c: added a preview that uses the - shadow tiles as the preview buffer and draws using the new - gimp_drawable_preview_draw_region() API. - - * plug-ins/common/photocopy.c - * plug-ins/common/softglow.c: use gimp_drawable_preview_draw_region(). - - * plug-ins/common/cartoon.c - * plug-ins/common/despeckle.c - * plug-ins/common/edge.c - * plug-ins/common/gauss.c - * plug-ins/common/grid.c - * plug-ins/common/neon.c - * plug-ins/common/noisify.c - * plug-ins/common/sel_gauss.c - * plug-ins/common/sharpen.c - * plug-ins/common/sobel.c - * plug-ins/common/spread.c - * plug-ins/common/struc.c - * plug-ins/common/unsharp.c - * plug-ins/common/wind.c: use gimp_drawable_preview_draw_buffer(). - -2004-09-15 Michael Natterer - - * app/widgets/gimphelp-ids.h: added help IDs for the drawable- and - vectors-visible and -liked actions as well as for the layer mask - property action. - - * app/actions/drawable-actions.c - * app/actions/vectors-actions.c: use them. - - * app/actions/layers-actions.c - * app/actions/layers-commands.[ch]: ditto. Use - GIMP_STOCK_TRANSPARENCY for all layer opacity actions. Replaced - "paint_mode" by "mode" in all action and function/variable names - because this is the layer mode, not a paint mode. - - * app/actions/channels-commands.c - * app/actions/layers-commands.c - * app/actions/vectors-commands.c: set the "activates-default" - property on the name entry in all "New Foo" and "Edit Foo - Attributes" dialogs except in the "New Layer" dialog. - Addresses bug #148026. - - * menus/image-menu.xml.in: added a (commented out) layer - properties menu containing all the new actions. - -2004-09-15 Michael Natterer - - * app/actions/layers-actions.c - * app/actions/layers-commands.[ch]: added actions and callbacks - "layers-preserve-transparency" and - "layers-paint-mode-first,last,previous,next". Update the "active" - state of the recently added layer mask property actions in - layers_actions_update(). - - * app/actions/drawable-actions.c - * app/actions/drawable-commands.[ch]: added actions and callbacks - for "drawable-visible" and "drawable-linked". Fixes bug #152597. - - * app/actions/vectors-actions.c - * app/actions/vectors-commands.[ch]: same here ("vectors-visible" - and "vectors-linked"). - - * app/widgets/gimplayertreeview.c - (gimp_layer_tree_view_preserve_button_toggled): flush the image - so the new actions are updated. Compress preserve_trans undos. - - * menus/image-menu.xml.in: added the layer mask property actions - to the Layers/Mask submenu. - - * menus/layers-menu.xml: reordered the mask property actions - to have the same order as in the image menu. - -2004-09-15 Sven Neumann - - * app/widgets/gimpcontainertreeview.c - (gimp_container_tree_view_menu_position): improved the fix for bug - #152662 and removed trailing whitespace. - -2004-09-15 Nathan Summers - - * app/widgets/gimpcontainertreeview.c - (gimp_container_tree_view_menu_position): clamp the popup menu's Y - position to the visible area of the GtkTreeView. Fixes #152662. - -2004-09-14 Michael Natterer - - * libgimpwidgets/gimpquerybox.c: set the "activates-default" - property on the entries in all query boxes so hitting "return" - confirms them. Addresses bug #148026. - -2004-09-14 Michael Natterer - - * app/widgets/gimpbufferview.c: simplified the code which deals - with the global_buffer's preview. The new buffer view renderer - does the aspect ratio magic all by itself now. - - * app/actions/image-commands.h: removed trailing whitespace. - -2004-09-14 Michael Natterer - - * app/widgets/Makefile.am - * app/widgets/widgets-types.h - * app/widgets/gimpviewrendererbuffer.[ch]: added a view renderer - which knows how to preserve a GimpBuffer's aspect ratio if the - view's aspect ratio is different. - - * app/widgets/gimpviewrenderer-utils.c - (gimp_view_renderer_type_from_viewable_type): use it for viewables - of type GimpBuffer. Fixes bug #152531 - -2004-09-14 Sven Neumann - - * plug-ins/common/flarefx.c - * plug-ins/common/nova.c: embed the preview into a sunken frame - and put it into the upper left corner of the dialog. - -2004-09-14 Sven Neumann - - * app/dialogs/dialogs-constructors.[ch] - * app/dialogs/dialogs.c - * app/gui/gui.c: let the dialog factory handle the quit dialog - as singleton. Fixes bug #151914. - - * app/dialogs/quit-dialog.c: added a warning here. We need a - container of dirty images for the above change to work correctly. - -2004-09-13 Sven Neumann - - * plug-ins/common/jpeg.c (save_dialog): make the "Save EXIF data" - toggle insensitive when no EXIF data is present (bug #140042). - - * app/display/gimpdisplayshell-close.c: as suggested by the HIG, - ask the user to save the image when the last display is being - closed. Addresses some issues raised in bug #106726. - -2004-09-13 Michael Natterer - - * app/app_procs.c (app_run): install the message handler for the - "Gimp-Dialogs" domain. - -2004-09-13 Michael Natterer - - * app/actions/file-commands.c: resurrected file_open_dialog_show() - and file_save_dialog_show() as private utility functions to get - rid of code duplication. - -2004-09-13 Michael Natterer - - Manage the file-save dialog using the dialog factory and stop - making menu items insensitive while it is open. Fixes bug #81407. - - * app/dialogs/Makefile.am - * app/dialogs/file-dialog-utils.[ch]: removed these files. - - * app/dialogs/file-save-dialog.[ch]: removed functions - file_save_dialog_show() and file_save_a_copy_dialog_show() and - changed internal function file_save_dialog_create() to - file_save_dialog_new(). - - * app/dialogs/dialogs.c - * app/dialogs/dialogs-constructors.[ch]: made it completely - managed by the dialog factory. - - * app/actions/file-commands.c: create it using the dialog - factory. Attach it to the image so we open only one save - dialog per image. - - * app/dialogs/file-open-dialog.c: added precondition checks - to file_open_dialog_new(). - -2004-09-13 Sven Neumann - - * plug-ins/common/jpeg.c: some code cleanup. - -2004-09-13 Michael Natterer - - * app/dialogs/file-open-dialog.[ch]: removed function - file_open_dialog_show() and changed internal function - file_open_dialog_create() to file_open_dialog_new(). - - * app/dialogs/dialogs.c - * app/dialogs/dialogs-constructors.[ch]: made it completely - managed by the dialog factory. - - * app/actions/file-commands.c: create it using the dialog factory. - -2004-09-13 Michael Natterer - - * configure.in - * app/Makefile.am: added new directory app/dialogs and link - libappdialogs.c into the gimp binary. - - * app/gui/Makefile.am - * app/gui/gui-types.h - * app/gui/gui-vtable.c - * app/gui/gui.c - - * app/gui/about-dialog.[ch] - * app/gui/authors.h - * app/gui/color-notebook.[ch] - * app/gui/convert-dialog.[ch] - * app/gui/dialogs-constructors.[ch] - * app/gui/dialogs.[ch] - * app/gui/file-dialog-utils.[ch] - * app/gui/file-new-dialog.[ch] - * app/gui/file-open-dialog.[ch] - * app/gui/file-open-location-dialog.[ch] - * app/gui/file-save-dialog.[ch] - * app/gui/grid-dialog.[ch] - * app/gui/info-dialog.[ch] - * app/gui/info-window.[ch] - * app/gui/module-browser.[ch] - * app/gui/offset-dialog.[ch] - * app/gui/palette-import-dialog.[ch] - * app/gui/preferences-dialog.[ch] - * app/gui/quit-dialog.[ch] - * app/gui/resize-dialog.[ch] - * app/gui/resolution-calibrate-dialog.[ch] - * app/gui/stroke-dialog.[ch] - * app/gui/tips-dialog.[ch] - * app/gui/tips-parser.[ch] - * app/gui/user-install-dialog.[ch]: removed these files... - - * app/dialogs/Makefile.am - * app/dialogs/dialogs-types.h - - * app/dialogs/*.[ch]: ...and added them here. Changed some - filenames like module-browser -> module-dialog. - - * app/app_procs.c - * app/actions/actions-types.h - * app/actions/actions.c - * app/actions/dialogs-actions.c - * app/actions/dialogs-commands.c - * app/actions/dockable-commands.c - * app/actions/drawable-commands.c - * app/actions/edit-commands.c - * app/actions/file-commands.c - * app/actions/gradient-editor-commands.c - * app/actions/image-commands.c - * app/actions/layers-commands.c - * app/actions/palettes-commands.c - * app/actions/select-commands.c - * app/actions/templates-commands.c - * app/actions/templates-commands.h - * app/actions/vectors-commands.c - * app/actions/view-commands.c - * app/display/gimpdisplayshell-cursor.c - * app/display/gimpdisplayshell-title.c - * app/display/gimpdisplayshell.[ch] - * app/tools/gimpcroptool.c - * app/tools/gimpperspectivetool.c - * app/tools/gimprotatetool.c - * app/tools/gimpscaletool.c - * app/tools/gimpsheartool.c - * app/tools/gimptransformtool.[ch] - * app/tools/gimpvectortool.c - * app/widgets/gimpcolormapeditor.[ch] - * app/widgets/gimpcolorpanel.c - * app/widgets/gimpgradienteditor.[ch] - * app/widgets/gimppaletteeditor.[ch] - * app/widgets/gimptoolbox-color-area.c - * menus/toolbox-menu.xml.in - * tools/authorsgen/authorsgen.pl: changed accordingly. - -2004-09-13 Michael Natterer - - Restore binary compatibility of the wire protocol that was - broken by the recent GPConfig changes: - - * libgimpbase/gimpprotocol.[ch] (struct _GPConfig) - (_gp_config_read) - (_gp_config_write): argh, we can't use the two bytes padding - because that's just a binary compatible struct change, but inserts - two bytes into the byte stream that goes over the wire. Use the - first two bytes of the former "gdouble gamma" instead. - - * app/plug-in/plug-in-run.c (plug_in_run) - * libgimp/gimp.c (gimp_config): changed accordingly. - -2004-09-13 Sven Neumann - - * app/widgets/gimphelp.c: simulate the behaviour of GNU gettext and - look at the LANGUAGE environment variable if the locale is not "C". - -2004-09-13 Simon Budig - - * app/tools/gimpcroptool.c: Fix trailing whitespace introduced by me. - /me hides embarrassed in a corner... :) - -2004-09-13 Simon Budig - - * app/tools/gimpcroptool.c: Fix warnings and coding style. - -2004-09-12 Nathan Summers - - * app/tools/gimpcroptool.c: disable crop and resize buttons while the - operation is being processed. Fixes #152372. - -2004-09-12 Sven Neumann - - * plug-ins/common/aa.c (aa_dialog): use a combo box for format - selection. - -2004-09-12 Sven Neumann - - * libgimp/gimppixelrgn.c: fixed gtk-doc comments, removed trailing - whitespace. - -2004-09-12 DindinX - - * libgimp/gimppixelrgn.c: some more fixes by nomis. - -2004-09-12 DindinX - - * libgimp/gimppixelrgn.c: nomis helped me to make some correction to - the documentation. - -2004-09-12 DindinX - - * libgimp/gimppixelrgn.c: more documentation. - -2004-09-11 DindinX - - * plug-ins/common/edge.c: added a default value (TRUE) for the - update_preview toggle. - - * plug-ins/common/wind.c: ported to GimpPreviewArea, so the preview is - much more useful now. - -2004-09-11 DindinX - - * libgimp/gimppixelrgn.c: added some gtk-doc documentation to pixel - region related functions. (work in progress) - -2004-09-11 Simon Budig - - * app/widgets/gimpdialogfactory.[ch]: Added boolean parameter to - gimp_dialog_factories_toggle to make it possible to ensure a visible - toolbox. - - * app/actions/dialogs-commands.c: Use the new parameter to ensure - toolbox visibility after the last image window closes. - - * app/display/gimpdisplayshell-callbacks.c: Changed accordingly. - - Fixes bug #137057 (the discussion is in bug #152285) - -2004-09-11 DindinX - - * plug-ins/common/edge.c: ported to GimpPreviewArea. 100 less lines of - code and much more features! - -2004-09-11 DindinX - - * plug-ins/common/oilify.c: some code cleanup and small optimisations. - -2004-09-10 Sven Neumann - - * plug-ins/common/xpm.c (query): fixed spelling. - -2004-09-10 Bill Skaggs - - * app/widgets/gimperrorconsole.c: fix typo - -2004-09-10 Michael Natterer - - * libgimpwidgets/gimpcolorselect.c: untabified, removed useless - inclusion of . - -2004-09-10 Sven Neumann - - * libgimpwidgets/gimpcolorselect.c: ported to GimpPreviewArea. - Destroy the GdkGC in unrealize() instead of in finalize(). - -2004-09-10 Michael Natterer - - * app/widgets/gimpcontainertreeview-dnd.c - (gimp_container_tree_view_drop_status): always call - gdk_drag_status() before returning FALSE. - - (gimp_container_tree_view_drag_motion): never return FALSE, an - impossible drop location is now reported by calling - gdk_drag_status() above. Always returning TRUE makes sure - gimp_container_tree_view_drag_leave() is called unconditionally - and can remove the scroll_timeout set in drag_motion(). - - Fixes bug #152193 and many other obscure DND crashes caused by the - scroll_timeout being invoked after the widget is destroyed. - -2004-09-10 Sven Neumann - - * plug-ins/common/xpm.c: improved PDB blurb and help. Very loosely - based on a patch attached to bug #151912. - -2004-09-10 Sven Neumann - - * libgimp/gimpdrawablepreview.c (gimp_drawable_preview_draw_thumb): - also handle GRAY and GRAYA thumbnails. - - * tools/pdbgen/pdb/drawable.pdb - * tools/pdbgen/pdb/image.pdb: corrected documentation for - _gimp_drawable_thumbnail() and _gimp_image_thumbnail(). - - * app/pdb/drawable_cmds.c - * app/pdb/image_cmds.c - * libgimp/gimpdrawable_pdb.c - * libgimp/gimpimage_pdb.c: regenerated. - -2004-09-10 Sven Neumann - - * libgimpwidgets/gimppreview.c: fixed positioning of the - navigation marker and handling of motion events. - -2004-09-10 Sven Neumann - - * libgimpwidgets/gimppreview.c - * libgimpwidgets/gimppreviewarea.c: documented new functions. - -2004-09-09 Sven Neumann - - * libgimp/gimpdrawablepreview.c - * libgimpwidgets/gimppreview.[ch]: added a navigation popup - similar to the one in the image window. Needs some more work. - -2004-09-09 DindinX - - * libgimpwidgets/gimppreviewarea.c: added a utility function - gimp_preview_area_queue_draw(), which queue the right part of the - preview to be redrawn. And use it in all the drawing functions. This - fix a problem where the preview wasn't updated correctly after a - resize. - -2004-09-09 Michael Natterer - - * plug-ins/common/cartoon.c - * plug-ins/common/despeckle.c - * plug-ins/common/gauss.c - * plug-ins/common/grid.c - * plug-ins/common/neon.c - * plug-ins/common/noisify.c - * plug-ins/common/photocopy.c - * plug-ins/common/sel_gauss.c - * plug-ins/common/sharpen.c - * plug-ins/common/sobel.c - * plug-ins/common/softglow.c - * plug-ins/common/spread.c - * plug-ins/common/struc.c - * plug-ins/common/unsharp.c: pack all drawable previews expanding. - Also did some general cleanups like consistently naming the dialog - variable "dialog" and the main vbox "main_vbox". - -2004-09-09 Sven Neumann - - * libgimpwidgets/gimppreview.[ch]: right-align the preview for RTL - layouts. - -2004-09-09 Sven Neumann - - * libgimpwidgets/gimppreviewarea.[ch]: allow to set a maximum size - and center the preview area if its allocation extends the maximum. - - * libgimpwidgets/gimppreview.[ch]: derive from GtkVBox, moved the - toggle button out of the table and put the table into an aspect - frame. Added an API to set the preview boundaries. Set the maximum - size of the GimpPreviewArea from that function. - - * libgimpwidgets/gimpwidgets.def: added new entries. - - * libgimp/gimpdrawablepreview.c: use gimp_preview_set_bounds(). - - * plug-ins/common/gauss.c: pack the preview widget so that it - resizes with the dialog. - -2004-09-09 DindinX - - * libgimpwidgets/gimppreviewarea.c (gimp_preview_area_blend) - (gimp_preview_area_mask): optimized the case where both buffers have - the same alpha for a given pixel. - -2004-09-09 Michael Natterer - - * app/widgets/gimpviewrendererbrush.c - * app/widgets/gimpviewrendererdrawable.c - * app/widgets/gimpviewrenderergradient.c - * app/widgets/gimpviewrendererimage.c - * app/widgets/gimpviewrendererimagefile.c - * app/widgets/gimpviewrendererlayer.c - * app/widgets/gimpviewrenderervectors.c: purely cosmetic cleanup. - -2004-09-09 Michael Natterer - - * app/widgets/gimppdbdialog.c (gimp_pdb_dialog_constructor): use - g_type_name(dialog_type) instead of just "pdb dialog" as name for - the dialog's private context. - -2004-09-09 Michael Natterer - - * app/gui/convert-dialog.[ch] (convert_dialog_new): changed - GimpDisplay* parameter to GimpProgress* because that's what it's - used for. - - * app/actions/image-commands.c (image_convert_cmd_callback): - changed accordingly. - - * app/gui/convert-dialog.c: massively cleaned up internals. Use a - GimpViewableButton + GimpContainerEntry combo as in text options - for selecting the custom palette. Use a filtered container which - contains only palettes with a maximum of 256 colors. - Fixes bug #136574 - -2004-09-09 Michael Natterer - - * app/gui/file-open-location-dialog.[ch]: changed - file_open_location_dialog_show() to - file_open_location_dialog_new() and return the dialog. - - * app/gui/dialogs.c - * app/gui/dialogs-constructors.[ch]: added a constructor for it - and let the dialog factory manage it entirely. - - * app/actions/file-commands.c - (file_open_location_dialog_cmd_callback): use the dialog factory - to create it. - -2004-09-09 Michael Natterer - - * app/widgets/gimpdialogfactory.c - (gimp_dialog_factory_dialog_new_internal): renamed parameter - "gboolean raise_if_found" to "return_existing" and added - additional parameter "gboolean present". - - (gimp_dialog_factory_dialog_new) - (gimp_dialog_factory_dialog_raise) - (gimp_dialog_factory_dockable_new): pass both parameters (passing - "present" as "raise_if_found" was not quite correct). - -2004-09-08 DindinX - - * libgimpwidgets/gimppreviewarea.c: fixed a stupid typo. - -2004-09-08 Sven Neumann - - * libgimpwidgets/gimppreviewarea.c (gimp_preview_area_fill): - optimized solid color fills. - -2004-09-08 Sven Neumann - - * libgimpwidgets/gimppreviewarea.c: factored out common code. - Reduced indentation level by closing a switch earlier. - -2004-09-08 DindinX - - * libgimpwidgets/gimppreviewarea.c: (gimp_preview_area_blend) - use gimp_preview_area_draw when the opacity is 0 or 255, instead of - duplicating code. - -2004-09-07 Sven Neumann - - * libgimpwidgets/gimpwidgets.def: added new entries. - - * libgimpwidgets/test-preview-area.c: fit output into 80 columns. - - * libgimp/gimpdrawablepreview.c (gimp_drawable_preview_draw): some - code cleanup. - -2004-09-07 DindinX - - * libgimpwidgets/test-preview-area.c: added some tests for - gimp_preview_area_blend() and gimp_preview_area_mask(). - -2004-09-07 DindinX - - * libgimpwidgets/gimppreviewarea.c - * libgimpwidgets/gimppreviewarea.h: added two functions: - gimp_preview_area_blend() to draw the blending of two buffers with - an opacity parameter, and gimp_preview_area_mask() to draw the - blending of two buffers, with a mask buffer. The code still needs some - polish, though. - - * libgimp/gimpdrawablepreview.c - * libgimp/gimpdrawablepreview.h: use gimp_preview_area_mask() in - gimp_drawable_preview_draw(), so the previews are now much more - accurate (respecting the selection, if any). - - Also made the buf parameter of gimp_drawable_preview_draw() a pointer - to constants. - -2004-09-07 Michael Natterer - - * app/display/gimpdisplayshell-draw.c - (gimp_display_shell_draw_grid): #define the constant crosshair - size for the INTERSECTION grid style instead of using an eeky - "const gint". - -2004-09-07 Michael Natterer - - * app/gui/dialogs.c (toplevel_entries): added a foreign entry - "gimp-file-open-loaction-dialog". - - * app/gui/file-open-location-dialog.c: register the dialog - with the toplevel dialog factory so it remembers its position. - -2004-09-07 Michael Natterer - - * app/actions/context-actions.c - * app/actions/context-commands.[ch]: applied a heavily modified - patch from David Gowers which adds actions to modify the context's - paint_mode. Fixes bug #151471. - - * menus/image-menu.xml.in: added them to the (commentd out) - "Context" submenu. - -2004-09-07 Michael Natterer - - * plug-ins/common/edge.c: indentation and whitespace cleanup. - - * plug-ins/common/struc.c: minor coding style issues. - -2004-09-07 Michael Natterer - - * plug-ins/common/xwd.c (query): applied patch from Alan Horkan - which improves the blurb and help texts. Fixes bug #151912. - - Unrelated: did coding style / indentation cleanup in the whole file. - -2004-09-07 Michael Natterer - - * app/widgets/gimpfiledialog.c (gimp_file_dialog_set_uri): - simplified the code that selects an image file by its URI. - -2004-09-07 Simon Budig - - * app/widgets/gimpviewrendererbrush.c: Added an indicator for - generated brushes. Pretty straightforward, suggestions for - improvements are welcome. - -2004-09-06 DindinX - - * plug-ins/common/struc.c: added a preview. - -2004-09-06 Simon Budig - - * app/tools/gimpcroptool.c: reordered info_dialog_hide() and - crop_tool_crop_image(), which avoids the repeated popping up - of the info dialog and avoids a crash. - - Fixes bug #151712 - -2004-09-05 DindinX - - * plug-ins/common/cartoon.c: use gimp_preview_invalidate() where - appropriate. - - * plug-ins/common/photocopy.c: Added a preview. - -2004-09-05 Sven Neumann - - * configure.in: bumped version number to 2.1.5. - - * app/widgets/gimpfiledialog.c (gimp_file_dialog_set_uri): select - the image file, not only the folder it lives in. Fixes bug #151638. - -2004-09-05 DindinX - - * plug-ins/common/cartoon.c: Added a preview. - -2004-09-05 Simon Budig - - * plug-ins/common/autocrop.c: fix handling of layers with an - offset. Resize the image before cropping when the covered area - of a layer is partially outside the image area. Make math more - comprehensible. - -2004-09-05 Sven Neumann - - * plug-ins/common/convmatrix.c - * plug-ins/common/smooth_palette.c - * plug-ins/flame/flame.c: renamed functions from doit() to - something less silly. - -2004-09-05 Sven Neumann - - * Made 2.1.4 release. - -2004-09-05 Simon Budig - - * tools/pdbgen/pdb/image.pdb: improved documentation for - gimp_image_resize_to_layers - - * libgimp/gimp.def: added gimp_image_resize_to_layers - - * app/pdb/image_cmds.c - * libgimp/gimpimage_pdb.c: regenerated - -2004-09-05 Simon Budig - - * app/core/gimpimage-resize.[ch]: Implement function to resize - the image to contain all layers completely. Untabified. - - * app/actions/image-actions.c - * app/actions/image-commands.[ch] - * app/widgets/gimphelp-ids.h - * menus/image-menu.xml.in: Make it available in the GUI. - - * tools/pdbgen/pdb/image.pdb: Make it available in the PDB. - - * app/pdb/image_cmds.c - * app/pdb/internal_procs.c - * libgimp/gimpimage_pdb.[ch]: regenerated. - -2004-09-04 DindinX - - * plug-ins/common/noisify.c: ported to GimpDrawablePreview. - -2004-09-04 Michael Schumacher - - * libgimp/gimp.def - * libgimpbase/gimpbase.def - * libgimpwidgets/gimpwidgets.def: added the check(erboard) related - entries - -2004-09-04 Sven Neumann - - * libgimpwidgets/gimppreviewarea.[ch]: pass a GdkEventButton to - gimp_preview_area_menu_popup(). - - * libgimpwidgets/gimppreview.c: implement GtkWidget::popup_menu(). - -2004-09-04 DindinX - - * libgimpwidgets/gimppreview.c: Changed the way we attach the preview - area frame to the table so very small drawables don't cause a - malicious bug. - -2004-09-04 DindinX - - * plug-ins/common/sel_gauss.c: ported to GimpDrawablePreview. - -2004-09-04 DindinX - - * plug-ins/common/sharpen.c: ported to GimpDrawablePreview. - -2004-09-03 Sven Neumann - - * libgimpwidgets/gimppreviewarea.[ch]: added - gimp_preview_area_menu_popup(). Not completely finished yet... - - * libgimpwidgets/gimppreview.c: use the new function. - -2004-09-03 Sven Neumann - - * libgimp/gimpdrawablepreview.c (gimp_drawable_preview_set_drawable): - take care of setting the colormap for indexed drawables. - - * libgimpwidgets/gimppreview.c (gimp_preview_area_event): pan with - the first mouse button only. We will need the other buttons. - -2004-09-03 Sven Neumann - - * plug-ins/common/grid.c: ported to GimpDrawablePreview. - -2004-09-03 Sven Neumann - - * plug-ins/common/plasma.c (plasma_dialog): left-align the preview. - - * plug-ins/common/grid.c (dialog): pack the preview as in other - plug-in dialogs and embed it into a GtkFrame. - -2004-09-03 Michael Natterer - - * app/widgets/gimpdevicestatus.c: removed "Configure input - devices" button. Fixes bug #150177. - -2004-09-03 Simon Budig - - * app/gui/info-window.c: Applied modified patch by Kevin Cozens - that implements a "Comments" tab in the image info dialog. - - Fixes bug #151719. - -2004-09-03 Sven Neumann - - * libgimpwidgets/gimppreviewarea.c (CHECK_COLOR): swapped light - and gray checks to get a checkerboard that matches the image window. - -2004-09-03 Michael Natterer - - * libgimpbase/gimpprotocol.h (struct _GPConfig): replaced the - never used "gdouble gamma" with 8 reserved gint8 and stuffed two - gint8 behind "gint8 show_tool_tips" where they fit in in a binary - compatible way due to 32bit aligning of the following "gint32 - min_colors". Use the latter ones for "check_size" and - "check_type". - - * libgimpbase/gimpprotocol.c (_gp_config_read,write): changed - accordingly to pass the new stuff over the wire. - - * app/plug-in/plug-in-run.c: ditto. Pass the transpareny values - from GimpDisplayConfig to plug-ins. - - * libgimp/gimp.[ch] (gimp_config): remember the new config values. - (gimp_check_size,type): new functions returning the new config values. - - * libgimp/gimpdrawablepreview.c (gimp_drawable_preview_init): - use the new values to configure preview->area accordingly. - -2004-09-03 Sven Neumann - - * libgimpbase/gimpchecks.h - * libgimpbase/gimplimits.h: moved check size and check color - defines. It makes a lot more sense to keep them in gimpchecks.h. - - * libgimpbase/gimpchecks.c (gimp_checks_get_shades): documented. - - * libgimp/gimpdrawablepreview.c (gimp_drawable_preview_draw): - added a sanity check so we don't crash if the drawable pointer - should ever be NULL here. - -2004-09-02 Helvetix Victorinox - - * app/composite/gimp-composite-*test.c: a regression test now - iterates over 8388625 pixels per pass. - - * app/composite/gimp-composite-mmx.c - * app/composite/gimp-composite-sse.c - * app/composite/gimp-composite-sse2.c: - Ensured that a clobbered condition code register is reflected in - the clobbered register list for each asm() statement. - This should FIX bug #147013. - -2004-09-03 Sven Neumann - - * libgimpbase/Makefile.am - * libgimpbase/gimpchecks.[ch] added gimp_checks_get_shades(). - - * app/base/temp-buf.c - * app/display/gimpdisplayshell-render.c - * libgimpwidgets/gimppreviewarea.c: use the new function instead - of replicating these numbers in three different places. - -2004-09-03 DindinX - - * plug-ins/gimpressionist/*.c: made the code much more readable by - applying the gimp's coding standard (intentation, space, etc.), and - remove the GTK_DISABLE_DEPRECATED warnings, since these files don't use - any deprecated stuff anymore. - -2004-09-02 Michael Schumacher - - * libgimp/gimpui.def - * libgimpbase/gimpbase.def - * libgimpwidgets/gimpwidgets.def: added the preview and progress - related entries - -2004-09-02 Michael Natterer - - * plug-ins/common/neon.c - * plug-ins/common/noisify.c - * plug-ins/common/sobel.c - * plug-ins/common/softglow.c - * plug-ins/common/spread.c - * plug-ins/common/unsharp.c: fixed various coding style and naming - issues and added some missing signal connections to update the new - previews. - -2004-09-02 DindinX - - * plug-ins/common/despeckle.c: don't assume the preview has always the - same size, and do the memory allocation in preview_update(). As a side - effect, this fix a segfault :-). Also save the preview toggle state - between invocations. - -2004-09-02 Sven Neumann - - * app/display/gimpdisplayshell-render.c (check_combos): light and - dark check color were swapped for GIMP_CHECK_TYPE_GRAY_CHECKS. - - * libgimpwidgets/gimppreviewarea.[ch]: added "check-size" and - "check-type" properties and draw the checkerboard accordingly. - -2004-09-02 Sven Neumann - - * app/base/base-enums.[ch] - * libgimpbase/gimpbaseenums.[ch]: moved GimpCheckSize and - GimpCheckType enums to libgimpbase. Correctly prefix the enum - values. - - * app/base/temp-buf.c - * app/config/gimpdisplayconfig.c - * app/display/gimpdisplayshell-render.c - * app/pdb/fileops_cmds.c - * tools/pdbgen/pdb/fileops.pdb: changed accordingly. - -2004-09-02 Michael Natterer - - * plug-ins/script-fu/script-fu-interface.c (script_fu_ok) - * plug-ins/script-fu/script-fu-scripts.c (script_fu_script_proc): - use a GString for assembling the commands string instead of - g_sprintf()ing into a buffer. Removes the need for a separate loop - over all args to determine the buffer's length and makes the - remaining code smaller and more readable. - -2004-09-02 Sven Neumann - - * libgimpwidgets/gimppreview.[ch]: made gimp_preview_draw() public, - added some gtk-doc comments. - (gimp_preview_toggle_callback): immidiately invalidate the preview. - - * plug-ins/common/gauss.c (gauss): fixed (and simplified) handling - of zero radii by using the new GimpPreview API. - -2004-09-01 Helvetix Victorinox - - * app/composite/gimp-composite-mmx.[ch]: Added - gimp_composite_addition_va8_va8_va8_mmx(). - - * app/composite/make-installer.py: Regression tests now include - printing the image type for each test. - - * app/composite/gimp-composite-mmx-test.c - * app/composite/gimp-composite-regression.c - * app/composite/gimp-composite-sse-test.c - * app/composite/gimp-composite-sse2-test.c - * app/composite/gimp-composite-x86.h: regenerated. - -2004-09-02 Sven Neumann - - * plug-ins/common/borderaverage.c - * plug-ins/common/checkerboard.c - * plug-ins/common/diffraction.c - * plug-ins/common/illusion.c - * plug-ins/common/polar.c - * plug-ins/common/ripple.c - * plug-ins/common/spread.c - * plug-ins/common/video.c: don't pass run_mode to - gimp_rgn_iterator_new(), it's unused. Removes the need for it being - a global variable. - -2004-09-01 Michael Natterer - - * app/display/gimpdisplay.c - * app/widgets/gimpprogressdialog.c: gracefully handle progress - calls after the widget is destroyed. Re-fixes bug #150194. - -2004-09-01 Sven Neumann - - * libgimp/gimpdrawablepreview.[ch] - * libgimpwidgets/gimppreview.[ch]: always show the "Preview" check - button. Simplified the preview APIs, moved the "size" style - property to the GimpPreview class. - - * etc/gtkrc: changed the example accordingly. - - * plug-ins/common/despeckle.c - * plug-ins/common/gauss.c - * plug-ins/common/neon.c - * plug-ins/common/sobel.c - * plug-ins/common/softglow.c - * plug-ins/common/spread.c - * plug-ins/common/unsharp.c: follow change in GimpDrawablePreview API. - -2004-09-01 Michael Natterer - - * plug-ins/script-fu/script-fu-types.h (struct SFOption): changed - "guint history" to "gint history". - - * plug-ins/script-fu/script-fu-interface.c: added callbacks for - string entries and combo boxes and connect *all* widgets to callbacks. - - (script_fu_ok): don't touch the widgets at all but get the values - directly now that the callbacks correctly write them to their - structs. - - (script_fu_reset): don't copy the default values manually but - simply set the default values on the widgets; their callbacks will - do the rest. - - * plug-ins/script-fu/script-fu-scripts.c (script_fu_add_script): - added some line breaks and spaces to make it more readable. - -2004-09-01 Michael Natterer - - * libgimp/Makefile.am - * libgimp/gimpui.h - * libgimp/gimpuitypes.h - * libgimp/gimpprogressbar.[ch]: new widget GimpProgressBar which - automatically redirects any progress calls to itself while - it exists. - - * plug-ins/script-fu/script-fu-interface.c: removed all progress - callbacks and simply use a GimpProgressBar. - -2004-09-01 Sven Neumann - - * libgimpwidgets/gimppreview.[ch]: set a busy cursor while the - preview is being recalculated. - - * libgimp/gimpdrawablepreview.c (gimp_drawable_preview_draw_original): - do nothing if there's no drawable. - -2004-09-01 Sven Neumann - - * libgimpwidgets/gimppreviewarea.c (CHECK_COLOR): oops, swapped x - and y variables. - - * libgimpwidgets/gimppreview.c: some minor changes, mainly cleanup. - -2004-09-01 Manish Singh - - * plug-ins/pygimp/gimpfu.py - * plug-ins/pygimp/gimpmodule.c: Hacked up support for the new - progress interface. Emphasis on hacked. - - * plug-ins/pygimp/gimpmodule.c: Wrapped gimp_extension_enable(). Minor - cleanups. - - * plug-ins/pygimp/pygimp-image.c - * plug-ins/pygimp/pygimp-tile.c: Minor cleanups. - -2004-08-31 Manish Singh - - * plug-ins/pygimp/plug-ins/gimpcons.py - * plug-ins/pygimp/plug-ins/pdbbrowse.py: remove deprecated mainloop - calls. - -2004-09-01 Sven Neumann - - * libgimp/gimpdrawablepreview.c: increased default preview size to - 150 pixels. Added a border of 2 pixels around the bounding box of - the selection. - - * libgimpwidgets/gimppreview.[ch]: only show the GDK_FLEUR cursor - if there's something to pan. Set the correct page size on the - scrollbar adjustments. - -2004-09-01 Sven Neumann - - * libgimpwidgets/gimppreviewarea.[ch]: added new function - gimp_preview_area_set_offsets(). - - * libgimpwidgets/gimppreview.c: use the new function to let the - checkerboard scroll with the preview. - -2004-09-01 Sven Neumann - - * libgimpwidgets/gimppreview.[ch]: delay the emission of the - "invalidated" signal using a timeout. Removed hack that used to - invalidate the preview on button-release. - - * plug-ins/common/unsharp.c: no need to fiddle with the slider - update policies any longer. - -2004-09-01 Sven Neumann - - * app/widgets/gimpdialogfactory.[ch]: added a boolean parameter to - gimp_dialog_factory_dialog_new() to let the caller decide whether - the window should be presented or not. - - * app/actions/dialogs-commands.c - * app/actions/image-commands.c - * app/actions/templates-commands.c - * app/gui/gui-vtable.c - * app/gui/gui.c - * app/widgets/gimpsessioninfo.c: changed accordingly. Do not let - gimp_dialog_factory_dialog_new() present the dialog if we need to - change it after creation. This avoids annoying resizes, noticeable - especially with the error dialog. - -2004-08-31 Sven Neumann - - * app/widgets/gimpdockable.c - * libgimp/gimpdrawablepreview.c: converted tabs to spaces. - -2004-08-31 Sven Neumann - - * libgimp/gimpdrawablepreview.c: added a style property for the - minimum size. - - * etc/gtkrc: show how to adjust the size of GimpDrawablePreviews. - -2004-08-31 Michael Natterer - - * app/widgets/gimpdatafactoryview.c - (gimp_data_factory_view_activate_item): emit "clicked" on the - edit_button only if it exists and is sensitive. Fixes bug #151343. - -2004-08-31 Manish Singh - - * app/plug-in/plug-in.c (plug_in_open): cast plug_in_recv_message - to GSourceFunc. - -2004-08-31 Sven Neumann - - * libgimpwidgets/gimppreview.c: handle the widget size dynamically. - Hide scrollbars when there's nothing to scroll. - - * libgimp/gimpdrawablepreview.c: simplified a lot. The scrollbars - are handled completely in the GimpPreview widget now. - -2004-08-31 Sven Neumann - - * libgimpwidgets/gimppreview.c: removed the hardcoded preview size, - removed some redundant assertions. - -2004-08-31 Michael Natterer - - * plug-ins/script-fu/script-fu-scripts.[ch]: removed the GUI code... - Also did some minor cleanups. - - * plug-ins/script-fu/script-fu-interface.[ch]: ...and added it here. - - * plug-ins/script-fu/script-fu-types.h: new file keeping the - various struct defs needed by both the above files. - - * plug-ins/script-fu/Makefile.am - * plug-ins/script-fu/siod-wrapper.c: changed accordingly. - -2004-08-31 Michael Natterer - - * libgimpwidgets/gimppreview.c (gimp_preview_toggle_callback): - notify the "update" property on the preview, not the toggle. - -2004-08-31 Sven Neumann - - * libgimpwidgets/gimppreview.c: allow to pan the preview with all - mouse buttons. Set a cursor to indicate that panning is possible. - -2004-08-31 DindinX - - * libgimpwidgets/gimppreview.c - * libgimpwidgets/gimppreview.h: renamed the "updated" signal to - "invalidated" and the confusing "update" virtual function to "draw". - - Gave the properties saner names, too. - - Removed _get_width and _get_height functions in favor of a _get_size - one. - - Added gimp_preview_invalidate function that emits the "invalidated" - signal if needed. - - * libgimp/gimpdrawablepreview.c - * libgimp/gimpdrawablepreview.h: modified accordingly and fixed the - scrollbar range. - - * plug-ins/common/despeckle.c - * plug-ins/common/gauss.c - * plug-ins/common/neon.c - * plug-ins/common/sobel.c - * plug-ins/common/softglow.c - * plug-ins/common/spread.c - * plug-ins/common/unsharp.c: modified accordingly. - -2004-08-31 Michael Natterer - - * plug-ins/script-fu/script-fu-scripts.c: removed the script title - label and moved the "About" button to the action_area. Minor - cleanups. - -2004-08-31 Michael Natterer - - * app/core/gimpdrawable-transform.[ch]: added GimpProgress - parameter to gimp_drawable_transform_affine(). - - * tools/pdbgen/pdb/edit.pdb - * tools/pdbgen/pdb/transform_tools.pdb: show progress for "blend" - and all transform functions. - - * app/pdb/edit_cmds.c - * app/pdb/transform_tools_cmds.c: regenerated. - -2004-08-31 Sven Neumann - - * plug-ins/common/curve_bend.c: don't use GDK_TOP_LEFT_ARROW - to restore the default cursor, simply pass NULL to - gdk_window_set_cursor(). - -2004-08-31 Michael Natterer - - * app/paint/gimppaintoptions.[ch]: added "GimpPaintInfo *paint_info" - member and construct property. Changed gimp_paint_options_new() - to take only a GimpPaintInfo parameter. - - * app/core/gimpitem.c (gimp_item_stroke) - * app/core/gimppaintinfo.c (gimp_paint_info_new): changed accordingly. - - * app/core/gimpchannel.c (gimp_channel_stroke) - * app/vectors/gimpvectors.c (gimp_vectors_stroke): use - paint_options->paint_info->paint_type directly instead of casting - to GimpToolOptions and using - tool_options->tool_info->paint_info->paint_type (eek). Fixes crash - when stroking via the PDB because newly created GimpToolOptions - instances have no "tool_info" pointer yet. - - * tools/pdbgen/pdb/paint_tools.pdb: changed all paint PDB wrappers - accordingly. - - * app/pdb/paint_tools_cmds.c: regenerated. - -2004-08-31 Michael Natterer - - * app/config/gimpconfig.c (gimp_config_iface_duplicate): set - construct_param->foo, not construct_param*s*->foo, so we don't set - the first construct param again and crash. - -2004-08-31 Michael Natterer - - * plug-ins/common/cubism.c: added "..." to the progress text. - -2004-08-31 Michael Natterer - - * app/actions/file-actions.c (file_actions): added "..." to "Revert". - -2004-08-31 Sven Neumann - - * libgimp/gimpuitypes.h - * libgimpwidgets/gimpwidgetstypes.h: moved the GimpDrawablePreview - typedef to the header file that it belongs to. - - * libgimp/gimpdrawablepreview.[ch]: minor include cleanups and - gtk-doc fixes. - -2004-08-31 Sven Neumann - - * plug-ins/common/gauss.c (gauss_dialog): update the preview when - the blur radius is being changed. gimp_coordinates_new() seems to - be broken though; there shouldn't be two signal connections needed - here. - -2004-08-31 Sven Neumann - - * libgimp/gimpdrawablepreview.[ch] - * libgimpwidgets/gimppreview.[ch]: minor code cleanup, fixes to - gtk-doc comments and to the handling of object properties. - -2004-08-31 DindinX - - * libgimpwidgets/gimppreview.c - * libgimpwidgets/gimppreview.h: added a GimpPreview widget, abstract - base for a GimpDrawablePreview. - - * libgimpwidgets/Makefile.am - * libgimpwidgets/gimpwidgets.h - * libgimpwidgets/gimpwidgetstypes.h: modified accordingly. - - * libgimp/gimpdrawablepreview.c - * libgimp/gimpdrawablepreview.h: added a GimpDrawablePreview widget - to ease the use of previews by plug-ins. - - * libgimp/Makefile.am - * libgimp/gimpui.h: Changed accordingly. - - * plug-ins/common/despeckle.c - * plug-ins/common/gauss.c - * plug-ins/common/neon.c - * plug-ins/common/sobel.c - * plug-ins/common/softglow.c - * plug-ins/common/spread.c - * plug-ins/common/unsharp.c: use a GimpDrawablePreview with these - plug-ins. - -2004-08-30 Michael Natterer - - * app/plug-in/plug-in-progress.[ch]: added boolean return values - to plug_in_progress_install(), uninstall() and cancel(). Added - checks to make sure the installed progress_callback exists, has - the correct signature and was installed by this plug-in. - - * tools/pdbgen/pdb/progress.pdb: use the return values to let the - PDB wrappers succeed/fail. - - * app/pdb/progress_cmds.c: regenerated. - -2004-08-30 Michael Schumacher - - * libgimp/gimp.def: added gimp_progress_install & - gimp_progress_uninstall - -2004-08-30 Sven Neumann - - * libgimp/gimpregioniterator.c: document the fact that "run_mode" - is unused. Also did some code cleanup. - -2004-08-30 Michael Natterer - - * libgimp/gimpregioniterator.c: always update the progress. - Makes all "run_mode" parameters useless. - -2004-08-30 Michael Natterer - - * plug-ins/common/gauss.c: add "..." to the progress text. - -2004-08-30 Sven Neumann - - * libgimp/gimpprogress.c: added some gtk-doc comments, could be - improved further. - -2004-08-30 Sven Neumann - - * plug-ins/common/colortoalpha.c - * plug-ins/common/compose.c - * plug-ins/common/decompose.c - * plug-ins/common/film.c - * plug-ins/fits/fits.c: always use the progress API, not doing it - in non-interactive mode has always been wrong. - -2004-08-30 Manish Singh - - * libgimp/gimpprogress.[ch] (gimp_progress_uninstall): return the - user_data pointer on uninstall. Eases language binding work. - -2004-08-30 Sven Neumann - - * libgimp/gimpbrushmenu.c (gimp_brush_select_preview_draw): fixed - drawing of brushes that extend beyond the preview. - -2004-08-30 Sven Neumann - - * app/tools/gimpvectortool.[ch] (gimp_vector_tool_status_set): - avoid excessive use of strdup() and strcmp(). The strings are all - constant anyway. - -2004-08-30 Michael Natterer - - Brought the PDB progress into a working state. Fixes bug #6010, - addresses bugs #97266 and #135185 and unfortunately reopens bug - #150194 (will fix that later). - - * libgimpbase/gimpbaseenums.h: added enum GimpProgressCommand. - - * app/core/gimppdbprogress.c - * libgimp/gimpprogress.c: use the enum instead of integer - constants for the different progress commands. Cleanup. - - * app/plug-in/plug-in-progress.c - * app/plug-in/plug-in-run.c - * app/plug-in/plug-in.c: switch back to real refcounting for - plug_in->progress (reopens bug #150194) and enabled the PDB - progress code. - - * plug-ins/script-fu/script-fu-scripts.c: cleaned up the - progress stuff and the script-fu interface a bit. - - * plug-ins/pygimp/gimpenums.py - * plug-ins/script-fu/script-fu-constants.c - * tools/pdbgen/enums.pl: regenerated. - -2004-08-29 Manish Singh - - * app/plug-in/plug-in.c (plug_in_open): set can_recurse on the - recv_message watch, so we don't block on recursive calls to the - handler. plug_in_recv_message needs some refcounting help now - though. - -2004-08-29 Helvetix Victorinox - - * app/composite/gimp-composite-x86.h - * app/composite/gimp-composite-sse.c - * app/composite/gimp-composite-sse2.c: Fixed a bunch of - warnings due to bad type casting. - - * app/composite/gimp-composite-mmx.c - * app/composite/gimp-composite-sse.c - * app/composite/gimp-composite-x86.h - * app/composite/gimp-composite-sse2.c: - The last changes to fix the the clobber registers bug #147013. - Commented out some dead code to be reviewed later. - -2004-08-29 Michael Natterer - - Added an API to allow plug-ins to embed the progress for the - actions they trigger into their own GUI (attention: half-done and - broken code ahead...) - - * app/core/Makefile.am - * app/core/core-types.h - * app/core/gimppdbprogress.[ch]: new object implementing dispatching - progress calls to a temporary PDB procedure in a plug-in. - - * app/Makefile.am: force to link gimppdbprogress.o, bah! - - * app/plug-in/plug-in-progress.[ch]: added API to install, - uninstall and cancel a PDB progress for this plug-in, but disabled - the implementation because it doesn't work yet. - - * tools/pdbgen/pdb/progress.pdb: added pdb wrappers for the new - install, uninstall and cancel functions. - - * libgimp/Makefile.am - * libgimp/gimp.h - * libgimp/gimpprogress.[ch]: added an API around the PDB progress - stuff. - - * app/pdb/internal_procs.c - * app/pdb/progress_cmds.c - * libgimp/gimpprogress_pdb.[ch]: regenerated. - - * plug-ins/script-fu/script-fu-scripts.c: use the new API to show - the progress in the script-fu dialog. - -2004-08-29 Michael Schumacher - - * libgimpwidgets/gimpwidgets.def: added - gimp_scale_entry_set_logarithmic - -2004-08-29 Sven Neumann - - * app/config/gimpconfigwriter.c: don't emit critical warnings - about a messed up state of GimpConfigWriter if the writer is - disabled because of a write error that occured earlier. - -2004-08-29 DindinX - - * app/core/core-enums.h: Renamed GimpPreviewSize to GimpViewSize. - - * app/core/core-enums.c: Regenerated. - - * app/actions/dockable-actions.c - - * app/config/gimpcoreconfig.c - * app/config/gimpcoreconfig.h - * app/config/gimpdisplayconfig.c - * app/config/gimpdisplayconfig.h - - * app/core/gimpundo.c - - * app/display/gimpnavigationeditor.c - - * app/gui/dialogs.c - * app/gui/file-open-location-dialog.c - - * app/tools/gimppaintoptions-gui.c - * app/tools/gimptextoptions.c - - * app/widgets/gimpbrushselect.c - * app/widgets/gimpcontainerpopup.c - * app/widgets/gimpcontainerview.c - * app/widgets/gimpdialogfactory.c - * app/widgets/gimpfontselect.c - * app/widgets/gimpgradientselect.c - * app/widgets/gimppaletteselect.c - * app/widgets/gimppatternselect.c - * app/widgets/gimpselectioneditor.c - * app/widgets/gimpsessioninfo.c - * app/widgets/gimptemplateeditor.c - * app/widgets/gimpundoeditor.c - * app/widgets/gimpundoeditor.h - * app/widgets/gimpviewablebutton.c: Changed accordingly. - -2004-08-28 Helvetix Victorinox - - * app/composite/gimp-composite-sse.c - * app/composite/gimp-composite-sse2.c: More updates to accomodate - the clobber registers. Additional progress against bug #147013. - - * app/composite/gimp-composite-sse.h: Fixed a bug where the wrong - manifest constant definition caused sse2 instructions to never be - compiled. - -2004-08-28 Sven Neumann - - * plug-ins/common/vpropagate.c (run): fixed confusion about which - mode to use when being run with last values (bug #151308). - -2004-08-28 Simon Budig - - * plug-ins/common/plugindetails.c: workaround to avoid a warning - by gcc about the use of "%c" in the format string for strftime. - -2004-08-28 Sven Neumann - - * libgimpwidgets/gimpwidgets.[ch]: applied a patch from Joao - S. O. Bueno which adds an API that allows to make the scale widget - of a GimpScaleEntry behave logarithmic. Fixes bug #149420. - - * app/widgets/gimpbrusheditor.c: use the new functionality for the - radius control. - -2004-08-28 Sven Neumann - - * plug-ins/common/compose.c (compose_dialog): applied patch from - Markus Triska that improves which layers are choosen by - default (bug #148172). - -2004-08-28 Sven Neumann - - * app/core/gimpimage-contiguous-region.c - (find_contiguous_region_helper): applied a patch from Eric Cheung - that changes the function to use a GQueue to implement recursion - instead of recursive function calls. Fixes bug #151124. - - * plug-ins/common/noisify.c (noisify_dialog): left-align the - preview. - -2004-08-28 Sven Neumann - - * app/widgets/gimphelp-ids.h - * app/widgets/gimptoolbox.c (toolbox_create_image_area): added a - help-id for the image area. - -2004-08-27 Michael Natterer - - Moved the gimp_progress_init() and gimp_progress_update() PDB - functions to their own group because they don't belong to the - "Plug-In" namespace and will soon get more functions. - - * tools/pdbgen/pdb/plug_in.pdb: removed the progress stuff... - - * tools/pdbgen/pdb/progress.pdb: ...and added it here. - - * tools/pdbgen/Makefile.am - * tools/pdbgen/groups.pl - * app/pdb/Makefile.am - * libgimp/Makefile.am: changed accordingly. - - * app/pdb/progress_cmds.c - * libgimp/gimpprogress_pdb.[ch]: new generated files. - - * app/pdb/internal_procs.c - * app/pdb/plug_in_cmds.c - * libgimp/gimp_pdb.h - * libgimp/gimpplugin_pdb.[ch]: regenerated. - -2004-08-27 Michael Natterer - - * app/widgets/gimpcontainereditor.c - (gimp_container_editor_construct): call - gimp_container_editor_select_item() manually at construction time - so views show the initially selected object's state correctly - (e.g. the brush spacing). Fixes bug #151227. - -2004-08-27 DindinX - - * app/widgets/gimpnavigationpreview.c - * app/widgets/gimpnavigationpreview.h: renamed these files to ... - - * app/widgets/gimpnavigationview.c - * app/widgets/gimpnavigationview.h: to these. - And renamed the GimpNavigationPreview type to GimpNavigationView. - - Hopefully, this is the last change in file names for the Preview->View - renaming process. - - * app/display/gimpnavigationeditor.c - - * app/widgets/Makefile.am - * app/widgets/widgets-types.h: Changed accordingly. - -2004-08-26 Michael Natterer - - * app/core/gimpitem.[ch]: removed "gboolean use_default_values" - from GimpItem::stroke(). - - * app/core/gimpchannel.c - * app/core/gimpselection.c - * app/vectors/gimpvectors.c: changed accordingly. - -2004-08-26 Michael Natterer - - * app/core/gimpitem.c (gimp_item_stroke): implement the whole - paint_options fiddling here instead of in each subclass and pass - either GimpStrokeOptions or GimpPaintOptions (instead of - GimpStrokeOptions or GimpPaintInfo) to GimpItem::stroke(). - - Also copied code (that needs to be abstracted to a utility - function) from the tool_manager which makes sure we really use the - global brush, pattern etc. if these options are checked in prefs. - Fixes bug #150716. - - * app/core/gimpchannel.c (gimp_channel_stroke) - * app/vectors/gimpvectors.c (gimp_vectors_stroke): removed the - duplicated code mentioned above and simply use the paint_options - passed. - -2004-08-26 DindinX - - * app/widgets/gimpviewrenderervectors.h: GimpViewRendererVector is - really derived from GimpViewRenderer and not from - GimpViewRendererDrawable. - -2004-08-26 DindinX - - * app/widgets/gimppreviewrenderer-utils.c - * app/widgets/gimppreviewrenderer-utils.h - * app/widgets/gimppreviewrendererbrush.c - * app/widgets/gimppreviewrendererbrush.h - * app/widgets/gimppreviewrendererdrawable.c - * app/widgets/gimppreviewrendererdrawable.h - * app/widgets/gimppreviewrenderergradient.c - * app/widgets/gimppreviewrenderergradient.h - * app/widgets/gimppreviewrendererimage.c - * app/widgets/gimppreviewrendererimage.h - * app/widgets/gimppreviewrendererimagefile.c - * app/widgets/gimppreviewrendererimagefile.h - * app/widgets/gimppreviewrendererlayer.c - * app/widgets/gimppreviewrendererlayer.h - * app/widgets/gimppreviewrenderervectors.c - * app/widgets/gimppreviewrenderervectors.h: Renamed all these files... - - * app/widgets/gimpviewrenderer-utils.c - * app/widgets/gimpviewrenderer-utils.h - * app/widgets/gimpviewrendererbrush.c - * app/widgets/gimpviewrendererbrush.h - * app/widgets/gimpviewrendererdrawable.c - * app/widgets/gimpviewrendererdrawable.h - * app/widgets/gimpviewrenderergradient.c - * app/widgets/gimpviewrenderergradient.h - * app/widgets/gimpviewrendererimage.c - * app/widgets/gimpviewrendererimage.h - * app/widgets/gimpviewrendererimagefile.c - * app/widgets/gimpviewrendererimagefile.h - * app/widgets/gimpviewrendererlayer.c - * app/widgets/gimpviewrendererlayer.h - * app/widgets/gimpviewrenderervectors.c - * app/widgets/gimpviewrenderervectors.h: ... to these names. And also - changed all the GimpPreviewRenderer* types to GimpViewRenderer* ones. - - * app/tools/gimppaintoptions-gui.c - - * app/widgets/Makefile.am - * app/widgets/gimpcomponenteditor.c - * app/widgets/gimpfiledialog.c - * app/widgets/gimpgradienteditor.c - * app/widgets/gimpview.c - * app/widgets/widgets-types.h - * app/widgets/gimpviewrenderer.c - * app/widgets/gimpviewrenderer.h: modified accordingly. - -2004-08-26 Sven Neumann - - * app/sanity.c (sanity_check_filename_encoding): try to convert - the result of gimp_directory() to UTF-8 and bail out with a - moderately helpful error message if this conversion fails. Works - around bug #150917. Also marked these strings for translation. - -2004-08-26 Sven Neumann - - * app/tools/gimp-tools.c (gimp_tools_register): set the paintbrush - as the default tool as suggested in bug #151091. - -2004-08-26 DindinX - - * app/widgets/gimppreview-popup.c - * app/widgets/gimppreview-popup.h - * app/widgets/gimppreviewrenderer.c - * app/widgets/gimppreviewrenderer.h: really removed these files from - cvs. - -2004-08-25 Manish Singh - - * plug-ins/common/gifload.c: Guard against bogus logical screen - dimensions. Fixes bug #151053. - -2004-08-26 DindinX - - * app/widgets/gimppreview-popup.c - * app/widgets/gimppreview-popup.h: renamed these files... - - * app/widgets/gimpview-popup.c - * app/widgets/gimpview-popup.h: .. to these files, and changed the - GimpPreviewPopup type to GimpViewPopup. - - * app/widgets/gimppreviewrenderer.c - * app/widgets/gimppreviewrenderer.h: renamed these files... - - * app/widgets/gimpviewrenderer.c - * app/widgets/gimpviewrenderer.h: .. to these files, and changed - GimpPreviewRenderer to GimpViewRenderer. - - This is the second step of the great Preview->View renaming process. - - * app/display/gimpdisplayshell-layer-select.c - * app/display/gimpnavigationeditor.c - - * app/widgets/Makefile.am - * app/widgets/gimpbrushfactoryview.c - * app/widgets/gimpbufferview.c - * app/widgets/gimpcellrendererviewable.c - * app/widgets/gimpcellrendererviewable.h - * app/widgets/gimpcomponenteditor.c - * app/widgets/gimpcontainerbox.c - * app/widgets/gimpcontainercombobox.c - * app/widgets/gimpcontainereditor.c - * app/widgets/gimpcontainerentry.c - * app/widgets/gimpcontainergridview.c - * app/widgets/gimpcontainerpopup.c - * app/widgets/gimpcontainertreeview-dnd.c - * app/widgets/gimpcontainertreeview.c - * app/widgets/gimpcontainerview.c - * app/widgets/gimpdatafactoryview.c - * app/widgets/gimpitemtreeview.c - * app/widgets/gimplayertreeview.c - * app/widgets/gimpnavigationpreview.c - * app/widgets/gimppatternfactoryview.c - * app/widgets/gimppreviewrenderer-utils.c - * app/widgets/gimppreviewrendererbrush.c - * app/widgets/gimppreviewrendererbrush.h - * app/widgets/gimppreviewrendererdrawable.c - * app/widgets/gimppreviewrendererdrawable.h - * app/widgets/gimppreviewrenderergradient.c - * app/widgets/gimppreviewrenderergradient.h - * app/widgets/gimppreviewrendererimage.c - * app/widgets/gimppreviewrendererimage.h - * app/widgets/gimppreviewrendererimagefile.c - * app/widgets/gimppreviewrendererimagefile.h - * app/widgets/gimppreviewrendererlayer.c - * app/widgets/gimppreviewrenderervectors.c - * app/widgets/gimpselectioneditor.c - * app/widgets/gimptemplateview.c - * app/widgets/gimptooloptionseditor.c - * app/widgets/gimptoolview.c - * app/widgets/gimpview.c - * app/widgets/gimpview.h - * app/widgets/gimpviewablebutton.c - * app/widgets/widgets-enums.h - * app/widgets/widgets-types.h: Modified accordingly. - -2004-08-25 Sven Neumann - - * app/widgets/gimperrordialog.[ch] (gimp_error_dialog_add): stop - adding message boxes and redirect messages to stderr if there are - too many messages. - -2004-08-25 Bill Skaggs - - * devel-docs/ggr.txt: fix incorrect statement, add note re SVG. - -2004-08-25 Sven Neumann - - * app/widgets/gimpmessagebox.[ch]: added gimp_message_box_repeat(). - - * app/widgets/Makefile.am - * app/widgets/widgets-types.h - * app/widgets/gimperrordialog.[ch]: added new dialog that adds a new - GimpMessageBox for each message added. Fixes bug #92604. - - * app/widgets/gimpwidgets-utils.[ch]: removed old gimp_message_box() - functionality. - - * app/gui/gui.c (gui_abort): use a GimpMessageBox in a GimpDialog. - - * app/gui/dialogs-constructors.[ch] - * app/gui/dialogs.c: manage GimpErrorDialog as singleton. - - * app/gui/gui-vtable.c (gui_message): use the new error dialog. - - * app/core/gimp-gui.c (gimp_message): substitue "GIMP" for a NULL - domain. - - * app/widgets/gimperrorconsole.c (gimp_error_console_add): fail - when being called with a NULL domain. - -2004-08-25 DindinX - - * app/display/gimpnavigationeditor.[ch]: eradicate some more previews - in favor of views. - -2004-08-25 Bill Skaggs - - * devel-docs/Makefile.am - * devel-docs/ggr.txt: added new file decribing the ggr (Gimp - gradient) file format. - -2004-08-25 DindinX - - * app/display/gimpnavigationview.c - * app/display/gimpnavigationview.h: renamed these files to... - - * app/display/gimpnavigationeditor.c - * app/display/gimpnavigationeditor.h: ... these files, and of course - changed GimpNavigationView to GimpNavigationEditor since it is really - inherited from GimpEditor anyway. - - This will leave the gimp_navigation_view namespace for the renaming - from gimp_navigation_preview. - - * app/display/Makefile.am - * app/display/display-types.h - * app/display/gimpdisplayshell-callbacks.c - * app/gui/dialogs-constructors.c: Changed accordlingly. - -2004-08-25 Michael Natterer - - * app/display/gimpdisplayshell-title.c - (gimp_display_shell_format_title): print bad '%' sequences - literally instead of warning (g_warning() is for programming - errors only and must never be triggered by bad or intermediate - user input). Fixes bug #150676 - -2004-08-24 Sven Neumann - - * app/widgets/gimpmessagebox.c: put the icon to the right for RTL - layouts. - - * app/display/gimpdisplayshell-close.c - * app/gui/quit-dialog.c: use a GimpMessageBox. - -2004-08-24 Sven Neumann - - * app/widgets/gimpmessagebox.[ch]: added API to change the labels. - Modeled after the proposed new API for GtkMessageDialog. - - * app/widgets/gimpwidgets-utils.c: changed accordingly. - -2004-08-24 DindinX - - * app/widgets/gimppreview.c - * app/widgets/gimppreview.h: renamed these two files to... - - * app/widgets/gimpview.c - * app/widgets/gimpview.h: ... these files. - - Also renamed GimpPreview to GimpView. - This is the first step of the great Preview->View renaming process. - - * app/actions/palettes-commands.c - - * app/display/gimpdisplayshell-layer-select.c - * app/display/gimpnavigationview.c - - * app/gui/palette-import-dialog.c - - * app/tools/gimppaintoptions-gui.c - - * app/widgets/Makefile.am - * app/widgets/gimpaction.c - * app/widgets/gimpactiongroup.c - * app/widgets/gimpbrusheditor.c - * app/widgets/gimpbufferview.c - * app/widgets/gimpcontainerbox.c - * app/widgets/gimpcontainergridview.c - * app/widgets/gimpcontainergridview.h - * app/widgets/gimpdevicestatus.c - * app/widgets/gimpdnd.c - * app/widgets/gimpdockbook.c - * app/widgets/gimpfiledialog.c - * app/widgets/gimpgradienteditor.c - * app/widgets/gimpnavigationpreview.c - * app/widgets/gimpnavigationpreview.h - * app/widgets/gimppaletteeditor.c - * app/widgets/gimppreview-popup.c - * app/widgets/gimppropwidgets.c - * app/widgets/gimpselectioneditor.c - * app/widgets/gimpthumbbox.c - * app/widgets/gimptoolbox-image-area.c - * app/widgets/gimptoolbox-indicator-area.c - * app/widgets/gimptooloptionseditor.c - * app/widgets/gimpviewabledialog.c - * app/widgets/widgets-types.h: changed accordingly. - -2004-08-24 Sven Neumann - - * app/widgets/Makefile.am - * app/widgets/widgets-types.h - * app/widgets/gimpmessagebox.[ch]: added new widget GimpMessageBox. - - * app/widgets/gimpwidgets-utils.c: use it for message dialogs. - -2004-08-23 Sven Neumann - - * app/widgets/gimpfiledialog.c (gimp_file_dialog_set_image): unset - the filename if gtk_file_chooser_set_uri() failed. - - * app/actions/file-commands.c - * app/gui/file-save-dialog.c: trivial cleanups. - - * app/widgets/gimpwidgets-utils.c: removed an unused extern - variable declaration. - -2004-08-23 DindinX - - * app/tools/tools-utils.c: fixed a typo that broke the build. - -2004-08-22 Sven Neumann - - * app/tools/Makefile.am - * app/tools/tools-utils.[ch]: added gimp_tool_motion_constrain(), - - * app/paint/gimppaintcore.[ch]: removed gimp_paint_core_constrain(). - - * app/tools/gimppainttool.c: changed accordingly. - - * app/tools/gimpblendtool.[ch]: use gimp_tool_motion_constrain() - instead of duplicating that functionality. - - * app/tools/gimpmeasuretool.c: use gimp_tool_motion_constrain() - instead of implementing completely different constraints. - -2004-08-22 Simon Budig - - * app/vectors/gimpbezierstroke.c: Implemented the ellipse basic - shape differently to avoid possible rounding issues with - the _arcto () command. - - * app/vectors/gimpvectors-import.c: properly close the rounded - rectangles. - -2004-08-21 Sven Neumann - - * app/vectors/gimpvectors-import.c (parse_svg_transform): support - optional center coordinates for the "rotate" transformations. - (parse_svg_transform): apply transformations in reverse order. The - SVG spec is rather confusing here. - -2004-08-21 Sven Neumann - - * app/vectors/gimpbezierstroke.c (gimp_bezier_stroke_arcto): fixed - a bug I introduced with my last commit. - - * app/vectors/gimpvectors-import.c: added support for the basic - SVG shape "rect". Fixed handling of SVG lengths in basic shapes. - -2004-08-21 Sven Neumann - - * app/vectors/gimpbezierstroke.[ch]: added new function - gimp_bezier_stroke_new_ellipse() that provides a simple API to - create a bezier stroke that represents an ellipse. - - * app/vectors/gimpvectors-import.c: added support for the basic - SVG shapes "circle" and "ellipse". - -2004-08-21 Simon Budig - - * plug-ins/common/gih.c: Fix some GUI issues. Make the relation - between the dimension parameter and the rank thingies more clear - also changed to a nicer layout. - -2004-08-21 Sven Neumann - - * app/vectors/gimpvectors-import.c: added support for the basic - SVG shapes "polyline" and "polygon". - -2004-08-21 Sven Neumann - - * app/vectors/gimpvectors-import.c: added support for importing - the basic SVG shape "line". Other shapes will follow... - -2004-08-21 Sven Neumann - - * app/actions/layers-actions.[ch] - * app/actions/layers-commands.[ch] - * app/widgets/gimplayertreeview.c: added actions to handle layer - masks as suggested in bug #150446. - - * menus/layers-menu.xml: added menu entries for new actions, - commented out raise/lower menu entries. - -2004-08-20 Sven Neumann - - * modules/controller_linux_input.c: declare local function as static. - -2004-08-19 Michael Schumacher - - * plug-ins/common/guillotine.c: modified the coordinate insertion - into the file name to leave the file extension intact, changed the - format of the coordinates. Fixes bug #101901. - -2004-08-18 Manish Singh - - * app/widgets/gimpcellrendereraccel.c - * app/widgets/gimphistogrambox.c - * plug-ins/gfig/gfig-dialog.c: Get rid of some unnecessary casts. - -2004-08-18 Sven Neumann - - * app/gui/color-notebook.c: no need to set a size_request here. - - * libgimpwidgets/gimpcolorselection.c: HIG-ified spacings. - - * libgimpwidgets/gimpcolorscales.c - * modules/colorsel_cmyk.c: don't set a minimum width on the color - scales. Improves behaviour for narrow color dockables. - -2004-08-18 Sven Neumann - - * modules/colorsel_triangle.c: fixed crashes that occured with - small sizes, some code cleanups and a simple optimization. - -2004-08-18 Sven Neumann - - * app/widgets/gimphelp-ids.h: define GIMP_HELP_DOCK_SEPARATOR. - - * app/widgets/gimpdock.c - * app/widgets/gimpdockable.c: help-ids are never used directly, - use the defines from app/widgets/gimphelp-ids.h instead. - -2004-08-17 Simon Budig - - * modules/colorsel_triangle.c: Made the triangle colorselector - resizeable. Removed minimum size request (would probably need some - testing for *very* small sizes though). - -2004-08-17 Bill Skaggs - - * app/widgets/gimpdock.c - * app/widgets/gimpdockable.c: add help-ids. - -2004-08-17 Sven Neumann - - * app/plug-in/plug-in-progress.c (plug_in_progress_start): reset - the "cancel" signal handler id when a new progress is set. - -2004-08-17 Sven Neumann - - * modules/colorsel_cmyk.c: minor cleanups. - - * modules/colorsel_water.c: let the widget take the available - space, don't set a minimum size. - -2004-08-17 Sven Neumann - - * app/plug-in/plug-in-progress.c - * app/plug-in/plug-in-run.c - * app/plug-in/plug-in.c: don't keep a strong reference to the - GimpProgress object, instead use a weak reference and deal with - the progress being destroyed while the plug-in is running. - Fixes bug #150194. - -2004-08-16 Sven Neumann - - * app/widgets/gimpcolorframe.c (gimp_color_frame_update): fixed - labels in CMYK mode. Fixes bug #150213. - -2004-08-16 DindinX - - * plug-ins/common/iwarp.c: fixed a typo preventing the preview to be - redrawn correctly in some case. Reported by AndyFitz. - -2004-08-15 Sven Neumann - - * modules/colorsel_triangle.c: minor cleanups. - - * modules/colorsel_water.c: GimpPreviewArea seems like overkill - here, use a GtkDrawingArea instead. - -2004-08-15 DindinX - - * modules/colorsel_triangle.c - * modules/colorsel_water.c: Replaced the GtkPreviews by - GimpPreviewAreas. - -2004-08-14 Manish Singh - - * libgimpbase/gimpprotocol.c (_gp_params_read): make sure array - length values are not negative, to prevent bad calls to g_new. - Addresses bug #150154. - -2004-08-14 Sven Neumann - - * plug-ins/help/Makefile.am: no need to link gimp-help-lookup with - any GIMP libraries. - - * plug-ins/help/domain.[ch]: allow to specify the location of the - index files independently from the base URL. - - * plug-ins/help/help.c: changed accordingly. - - * plug-ins/help/gimp-help-lookup.c: added command-line options to - specify base URI and root directory for index files. - -2004-08-14 Sven Neumann - - * plug-ins/help/locales.c (locales_parse): don't mess up the order - of languages. - - * plug-ins/help/gimp-help-lookup.c: parse command-line options, - added --help output. - -2004-08-14 Sven Neumann - - * plug-ins/help/help.[ch]: moved some defines to the header file. - - * plug-ins/help/domain.c: trivial change to remove the libgimpbase - dependency. - - * plug-ins/help/Makefile.am - * plug-ins/help/gimp-help-lookup.c: added a very simple - command-line tool that allows to lookup a help-id. - -2004-08-13 DindinX - - * plug-ins/common/edge.c: update the preview when the user choose a - different algorithm from the combo box. This was one of the main - reasons to have a preview here, after all. - -2004-08-13 Sven Neumann - - * plug-ins/common/edge.c (edge_dialog): use a combo box instead of - too many radio buttons. - -2004-08-12 Michael Natterer - - * app/widgets/gimpmenufactory.c (gimp_menu_factory_manager_new): - make sure that all actions, even if they have no menu proxy, can - be invoked by their accelerators. Fixes bug #149938. - - * app/widgets/gimpimagedock.c (gimp_image_dock_constructor): - removed the same code here. - - * app/widgets/gimpactionview.[ch] (gimp_action_view_dispose): new - function which disconnects from "accel_changed" of the accel_group - before upchaining (== before emitting "destroy"). - - The above changes make this one redundant, but since the crash in - bug #149938 was triggered by "accel_changed" emitted in the middle - of g_object_unref(tree_model), it feels better to be paranoic here - (fiddling with objects in destruction is no fun). - - (gimp_action_view_accel_edited): don't warn if assigning the same - accel to the same action again. - - (gimp_action_view_new): don't leak all accel_closures. - -2004-08-12 DindinX - - * plug-ins/common/edge.c: added a preview. - -2004-08-12 Sven Neumann - - * plug-ins/common/sel_gauss.c - * plug-ins/common/unsharp.c: place the preview widget into the - upper left corner like all other plug-ins do. - - * plug-ins/help/domain.c: added some (disabled) debug output. - -2004-08-12 DindinX - - * plug-ins/common/sel_gauss.c: added a preview. - - * plug-ins/common/unsharp.c: removed unused variables. - -2004-08-12 Sven Neumann - - * app/actions/context-actions.c: changed the icons to indicate - what part of the context is affected by the action. Looks better - in the shortcut editor. - -2004-08-11 Michael Natterer - - * plug-ins/common/cartoon.c - * plug-ins/common/neon.c - * plug-ins/common/photocopy.c - * plug-ins/common/softglow.c: added four new plug-ins contributed - by Spencer Kimball. Ported them from 1.2 to 2.1 APIs. - - * plug-ins/common/plugin-defs.pl: added them here. - - * plug-ins/common/mkgen.pl: removed tab insanity now that - libgimpoldpreview is gone. - - * plug-ins/common/.cvsignore - * plug-ins/common/Makefile.am: regenerated. - -2004-08-11 DindinX - - Bad DindinX! Don't break the build! - - * configure.in - * plug-ins/common/mkgen.pl - * plug-ins/common/plugin-defs.pl: removed libgimpoldpreview from - here too. - - * plug-ins/common/Makefile.am: regenerated. - -2004-08-11 DindinX - - Removed the GimpOldPreview stuff. Die, crap, die! - - * plug-ins/libgimpoldpreview/*: removed. - - * plug-ins/Makefile.am - * plug-ins/common/Makefile.am: changed accordingly. - - * plug-ins/common/max_rgb.c - * plug-ins/common/noisify.c - * plug-ins/common/tileit.c: removed last forgotten - #include "libgimpoldpreview.h". - -2004-08-11 Michael Natterer - - * app/widgets/gimpcontainercombobox.[ch] - * app/widgets/gimpcontainertreeview.c: when removing the last item - from the view, manually clear all GimpCellRendererViewables' - "renderer" properties; otherwise we have stale GimpPreviewRenderers - with still-refed viewables hanging around in the cells. - Works around GTK+ bug #149906. - -2004-08-11 Michael Natterer - - * app/core/gimp.c - * app/core/gimpimagefile.c: converted tabs to spaces, cosmetic - changes. - -2004-08-11 DindinX - - * plug-ins/common/waves.c: GimpPreviewArea-ified. - -2004-08-11 Michael Natterer - - Restored sane sorting order for menus which are created - entirely by plug-ins (like Xtns/Script-Fu/...). - - * app/menus/plug-in-menus.c (plug_in_menus_build_path): made it - return the built path. For each sub-menu created, add a "Menus" - placeholder and a separator. Make sure all sub-menus end up in the - "Menus" placeholder. More readable because we can use the path - returned by the recursive invocation now. - - (plug_in_menus_add_proc): simplified by using the path - plug_in_menus_build_path() returns. - -2004-08-11 Michael Natterer - - * app/core/gimpprogress.[ch]: added virtual function - gboolean GimpProgressInterface::is_active(). - - * app/display/gimpdisplay.c - * app/display/gimpstatusbar.c - * app/widgets/gimpfiledialog.c - * app/widgets/gimpprogressbox.c - * app/widgets/gimpprogressdialog.c - * app/widgets/gimpthumbbox.c: implement it. - - * app/plug-in/plug-in.h: removed "gboolean progress_active" and - added "gulong progress_cancel_id" instead. - - * app/plug-in/plug-in-progress.c: changed accordingly. Make sure - we correctly handle the "cancel" connections of progress instances - passed from other plug-ins. - -2004-08-11 Michael Natterer - - * app/plug-in/plug-in-message.c - * app/plug-in/plug-in-run.c (plug_in_temp_run) - * libgimp/gimp.c (gimp_temp_proc_run): removed ENABLE_TEMP_RETURN - #define and all code which was in #ifndef ENABLE_TEMP_RETURN. - -2004-08-11 Michael Natterer - - * app/core/gimp-gui.[ch]: added "display_ID" to gimp_new_progress(). - - * app/gui/gui-vtable.c: changed accordingly. - - * app/plug-in/plug-in-progress.[ch]: reenabled showing the - progress in a particular display. - -2004-08-11 Michael Natterer - - * etc/controllerrc: added a commented-out midi controller entry - with some example mappings. - -2004-08-11 DindinX - - * plug-ins/common/plasma.c: converted to GimpPreviewArea. - -2004-08-11 DindinX - - * plug-ins/common/noisify.c: converted to GimpPreviewArea. Also added - scrollbars to move around. The preview was rather useless without - them. - -2004-08-11 Michael Natterer - - * app/core/gimpdrawable-blend.c - * app/core/gimpprogress.c: some progress cleanup. - - * app/display/gimpstatusbar.c (gimp_statusbar_progress_start): no - need to warn if there is already a progress active, just silently - return NULL as all other GimpProgressInterface implementors. - - * app/plug-in/plug-in-progress.c: several progress fixes. - It's still a mess. - - * plug-ins/common/url.c: don't show progress depending on - run_mode. Run the actual file plug-in with the same run_mode we - were invoked with. - -2004-08-11 Sven Neumann - - * app/gui/file-open-location-dialog.c - * app/widgets/gimpprogressbox.c: increased horizontal size request - to reduce resizing. - -2004-08-11 Michael Natterer - - * app/widgets/gimpthumbbox.c (gimp_thumb_box_create_thumbnails): - fixed annoying resizing when thumbnailing exactly one image. - -2004-08-11 Michael Natterer - - * app/widgets/Makefile.am - * app/widgets/widgets-types.h - * app/widgets/gimpprogressbox.[ch]: new GtkVBox subclass featuring - a label and a progressbar. Implements GimpProgressIterface. - - * app/widgets/gimpprogressdialog.[ch]: replaced label and progress - by a GimpProgressBox. Delegate most progress functionality to it. - - * app/widgets/gimpwidgets-utils.[ch]: factored out utility - function gimp_dialog_set_sensitive(). - - * app/widgets/gimpfiledialog.c (gimp_file_dialog_set_sensitive): - use it. - - * app/gui/file-open-location-dialog.c (file_open_location_response): - embed the called file procedure's progress using a GimpProgressBox. - -2004-08-10 Michael Natterer - - * app/widgets/gimpfiledialog.[ch] - (gimp_file_dialog_set_sensitive): new function which works on all - widgets in the dialog except the cancel button. - - Remember if the active progress is cancelable and added two - booleans "busy" and "canceled". Added GtkDialog::response() - implementation which, if the dialog is busy, cancels the active - progress and sets the dialog's "canceled" state. - - Moved the progress bar right above the action area so it is next - to the cancel button and in the same place for both open and save - dialogs. - - * app/gui/file-open-dialog.c - * app/gui/file-save-dialog.c: use the new API to make image loading - and saving cancelable again. - - * app/widgets/gimpthumbbox.c: use the same stuff to make - thumbnailing cancelable. Increased the minimum height a bit so it - doesn't resize when the progress bars are shown. - -2004-08-10 Michael Natterer - - Redid the whole internal progress stuff: don't pass around - progress_callback and progress_data; instead, provide a - pointer to a GimpProgressInterface which can be implemented - by a variety of backends. - - Addresses (but not yet fixes) bugs #6010, #97266 and #135185. - - * app/display/Makefile.am - * app/display/gimpprogress.[ch]: removed the old progress hack. - - * app/core/Makefile.am - * app/core/core-types.h - * app/core/gimpprogress.[ch]: implement GimpProgressInterface. - - * app/widgets/Makefile.am - * app/widgets/widgets-types.h - * app/widgets/gimpprogressdialog.[ch]: the standalone progress - dialog as widget implementing GimpProgressInterface. - - * app/display/gimpdisplay.c - * app/display/gimpstatusbar.[ch] - * app/widgets/gimpfiledialog.[ch] - * app/widgets/gimpthumbbox.[ch]: added GimpProgressInterface - implementation to these classes. - - * app/core/gimp-gui.[ch] - * app/gui/gui-vtable.c: replaced the old progress vtable entries - by two new to create and destroy a GimpProgressDialog in case - no other progress is available. - - * app/pdb/procedural_db.[ch] - * app/plug-in/plug-in-run.[ch] - * tools/pdbgen/app.pl: pass a GimpProgress to all PDB wrappers and - all plug-ins. - - * app/plug-in/plug-in.[ch] - * app/plug-in/plug-ins.c - * app/plug-in/plug-in-message.c - * app/plug-in/plug-in-progress.c: handle the case there the - plug-in was crated with a progress as well as the case where it - wasn't. - - * app/app_procs.c - * app/batch.c - * app/xcf/xcf.c - * app/file/file-open.[ch] - * app/file/file-save.[ch] - * app/widgets/gimphelp.c - * app/widgets/gimpbrushselect.c - * app/widgets/gimpfontselect.c - * app/widgets/gimpgradientselect.c - * app/widgets/gimppaletteselect.c - * app/widgets/gimppatternselect.c: changed accordingly. - - * app/core/gimpimagefile.[ch] - * app/display/gimpdisplayshell-dnd.c - * app/gui/file-open-dialog.c - * app/gui/file-open-location-dialog.c - * app/gui/file-save-dialog.c - * app/widgets/gimplayertreeview.c - * app/widgets/gimptoolbox-dnd.c: pass a GimpProgress to all file - related functions. Embed the progress in the file dialog where - possible. - - * app/core/gimpdrawable-blend.[ch] - * app/core/gimpdrawable-transform.[ch] - * app/core/gimpimage-convert.[ch] - * app/core/gimpimage-flip.[ch] - * app/core/gimpimage-resize.[ch] - * app/core/gimpimage-rotate.[ch] - * app/core/gimpimage-scale.[ch] - * app/core/gimpitem-linked.[ch] - * app/core/gimpitem.[ch] - * app/core/gimpchannel.c - * app/core/gimpdrawable.c - * app/core/gimplayer.c - * app/core/gimpselection.c - * app/vectors/gimpvectors.c: replaced callback/data by GimpProgress. - - * app/tools/gimpblendtool.c - * app/tools/gimptransformtool.c - * app/gui/convert-dialog.c - * app/actions/documents-commands.c - * app/actions/file-commands.c - * app/actions/image-commands.c - * app/actions/layers-commands.c - * app/actions/plug-in-commands.c - * app/actions/vectors-commands.c - * tools/pdbgen/pdb/convert.pdb - * tools/pdbgen/pdb/edit.pdb - * tools/pdbgen/pdb/image.pdb - * tools/pdbgen/pdb/layer.pdb: changed callers accordingly. - - * app/pdb/*_cmds.c: regenerated. - -2004-08-10 DindinX - - * plug-ins/common/blinds.c: GimpPreviewArea-ified. - -2004-08-10 DindinX - - * plug-ins/common/AlienMap2.c: Ported to GimpPreviewArea, use an enum - for the color model instead of some defines and use gboolean instead - of gint where appropriate. - -2004-08-10 Sven Neumann - - * app/core/gimpbrushgenerated.c (gimp_brush_generated_load): - plugged more file descriptor leaks. - -2004-08-10 DindinX - - * app/core/gimpbrushgenerated.c: don't leak a file descriptor when - reading a bad .vbr file. - -2004-08-10 Sven Neumann - - * plug-ins/common/unsharp.c: don't show progress on the image - window while updating the preview. - -2004-08-09 Sven Neumann - - * plug-ins/common/unsharp.c (unsharp_region): reset the progress - when done; some code cleanup. - -2004-08-09 DindinX - - * plug-ins/common/unsharp.c: continuously show the (original) image - during a scrollbar movement. This makes it easier to navigate. - -2004-08-09 Michael Natterer - - Applied (slightly modified) patch from Shlomi Fish which adds a - progress bar to the RGB -> INDEXED conversion. Fixes bug #145274 - and shows that we really really need a GimpProgressInterface in - the core to give progress users full access to the progress API. - - * app/core/gimpimage-convert.[ch]: added special - GimpImageConvertProgress function typedef to cope with the - different stages of converting. Support passing such a callback & - data to gimp_image_convert() and update the progress accordingly. - - * app/gui/convert-dialog.[ch]: added a convert progress callback - and pass it to gimp_image_convert(). - - * app/actions/image-commands.c - * tools/pdbgen/pdb/convert.pdb: changed accordingly. - - * app/pdb/convert_cmds.c: regenerated. - -2004-08-09 Sven Neumann - - * data/misc/gimp.desktop.in.in: added GenericName and Version, - updated Categories. - -2004-08-09 Michael Natterer - - * app/plug-in/plug-ins.c - (plug_ins_file_register_magic) - (plug_ins_file_register_mime): don't dereference - gimp->current_plug_in->plug_in_def if it's NULL. - Fixes bug #149678. - - (plug_ins_file_register_mime): moved returning the proc_def inside - the right if() statement. - -2004-08-09 Hans Breuer - - * app/core/gimp-edit.c (gimp_edit_paste_as_new): - gimp_create_display() with the right parameters order - - * app/widgets/gimpwidgets-utils.c (gimp_message_box_set_icons) - handle gtk_style_lookup_icon_set() returnig NULL - - * app/gimpcore.def app/widgets/makefile.msc - themes/default/images/makefile.msc : updated - -2004-08-09 Sven Neumann - - * plug-ins/common/postscript.c (save_ps_header): use the basename - as Title, not the full filename. Fixes bug #149669. - -2004-08-08 Sven Neumann - - * plug-ins/script-fu/siod/sliba.c (array_prin1): when printing a - character array, don't flush the buffer for each byte but wait - until it is filled. - -2004-08-08 Sven Neumann - - * plug-ins/script-fu/siod-wrapper.[ch] (siod_output_string): use - g_strdup_vprintf() instead of guessing the string length. Also - declare the function using G_GNUC_PRINTF(). - -2004-08-08 Bill Skaggs - - * plug-ins/ifscompose/README.ifscompose: fix out of date info, - pointed out by the author. - -2004-08-08 Sven Neumann - - * libgimpwidgets/Makefile.am: do not build test-preview-area by - default, put it into EXTRA_PROGRAMS. Fixes parallel builds. - -2004-08-08 Michael Natterer - - * app/plug-in/plug-in-proc.[ch] (plug_in_proc_def_get_sensitive): - new function which checks a GimpImageType against the - proc_def->image_types_val mask. - - * app/actions/plug-in-actions.c: use the new function here. Also - separated setting the "Repeat last" and "Reshow last" actions' - labels from setting their sensitivity and made them use the same - sensitivity logic as all other plug-in actions. Fixes bug #149567. - -2004-08-07 Simon Budig - - * libgimpwidgets/gimpcolorscales.c: emit the COLOR_CHANGED signal - when the hex entry is changed. - -2004-08-07 Sven Neumann - - * app/sanity.c: abort if the configured filename encoding can't be - converted to UTF-8. Fixes bug #149464 for the HEAD branch. - -2004-08-07 Sven Neumann - - * libgimp/gimpgradientmenu.c (gimp_gradient_select_preview_expose): - corrected dither offset. - -2004-08-07 DindinX - - * plug-ins/common/max_rgb.c: use a GimpPreviewArea instead of - GimpOldPreview. - -2004-08-07 Sven Neumann - - * libgimp/gimpgradientmenu.c: use a GtkDrawingArea instead of - GtkPreview. - - * libgimp/gimpbrushmenu.c - * libgimp/gimppatternmenu.c: minor cleanup. - -2004-08-07 DindinX - - * plug-ins/common/jigsaw.c: ported to GimpPreviewArea, did some - cleanup and removed tabs. - -2004-08-07 Sven Neumann - - * configure.in: bumped version number to 2.1.4. - -2004-08-07 DindinX - - * plug-ins/common/illusion.c: ported to GimpPreviewArea. - -2004-08-07 DindinX - - * libgimpwidgets/gimppreviewarea.c: fixed the rendering for INDEXED - and INDEXEDA image types. - - * plug-ins/common/grid.c: ported to GimpPreviewArea. - -2004-08-06 DindinX - - * plug-ins/common/glasstile.c: ported to GimpPreviewArea. - -2004-08-06 DindinX - - * plug-ins/common/nlfilt.c: ported to GimpPreviewArea. - -2004-08-06 Michael Natterer - - * app/tools/gimptransformtool.h: removed the recently added - "gdouble aspect_ratio"... - - * app/tools/gimpscaletool.[ch]: ...and added it where it belongs. - -2004-08-06 Michael Natterer - - Transform tool cleanup: - - * app/tools/gimptransformtool.[ch]: added new virtual function - GimpTransformTool::dialog_update(). - Made wrapper for ::recalc() public and function - transform_bounding_box() private. - Call ::dialog_update() and transform_bounding_box() from the - ::recalc() wrapper. - - * app/tools/gimpperspectivetool.[ch] - * app/tools/gimprotatetool.[ch] - * app/tools/gimpscaletool.[ch] - * app/tools/gimpsheartool.[ch]: turned all info_dialog update - functions into GimpTransformTool::dialog_update() implementations - and don't call them from ::recalc(), also removed calls to - transform_bounding_box(); both functions are called by the parent - class now. Call gimp_transform_tool_recalc() when dialog values - were changed, not the tool's internal function. - Moved all static variables to the instance structs. - -2004-08-06 Michael Natterer - - * app/tools/gimpsheartool.[ch]: applied (modified) patch from Ari - Pollak which enables controlling the shear direction from the - dialog and changing the shear direction without hitting "Reset". - Fixes bug #149467. - - Also moved all static variables to the GimpShearTool struct and - converted tabs to spaces. - -2004-08-06 DindinX - - * plug-ins/common/nova.c: ported to GimpPreviewArea. - -2004-08-06 Sven Neumann - - * Made 2.1.3 release. - -2004-08-06 DindinX - - * plug-ins/common/polar.c: ported to GimpPreviewArea (from - GimpOldPreview). - -2004-08-06 Sven Neumann - - * libgimpcolor/test-color-parser.c: include . - -2004-08-06 Sven Neumann - - * plug-ins/common/depthmerge.c: - * plug-ins/common/despeckle.c: removed unused variables. - -2004-08-06 DindinX - - * plug-ins/common/flarefx.c: ported to GimpPreviewArea (from - GimpOldPreview) - -2004-08-06 Sven Neumann - - * plug-ins/twain/Makefile.am (EXTRA_DIST): forgot to remove - tw_sess.c here. - -2004-08-05 DindinX - - * plug-ins/common/wind.c: ported to GimpPreviewArea (from - GimpOldPreview) - -2004-08-05 Michael Natterer - - * app/tools/gimpiscissorstool.c: increased the handle size from 8 - to 9 pixels (which is the same as in the path tool) as suggested - in bug #134250. - -2004-08-05 Michael Natterer - - * app/display/gimpstatusbar.c: make the cursor coordinates label - insensitive when displaying out-of-image coordinates. - -2004-08-05 Michael Natterer - - * app/config/gimprc-blurbs.h (INSTALL_COLORMAP_BLURB): - s/pseudocolor visuals/8-bit (256 colors) displays/. - Fixes bug #137078. - -2004-08-05 Michael Natterer - - Enabled previewing items without selecting them in all list and - grid views using mouse button 2. Implicitly enables previewing of - items in container popups and thus fixes bug #121011: - - * app/widgets/gimppreview.c (gimp_preview_button_press_event) - * app/widgets/gimpcellrendererviewable.c - (gimp_cell_renderer_viewable_clicked): show the preview also on - mouse button 2 click. - - * app/widgets/gimpcontainertreeview.c - (gimp_container_tree_view_button_press): dispatch mouse button 2 - clicks to GimpCellRendererViewable, but don't select or change - anything in the tree_view. - - Unrelated cleanup: - - * app/widgets/gimppreview.c (gimp_preview_button_press_event): - don't offset bevent->x,y by widget->allocation.x,y before calling - gimp_preview_popup_show() ... - - * app/widgets/gimppreview-popup.c (gimp_preview_popup_show): - ... instead, do it here generically (check if the parent widget is - GTK_WIDGET_NO_WINDOW()). - -2004-08-05 Michael Natterer - - * libgimpwidgets/gimpintstore.c (gimp_int_store_add_empty): - allocate the empty_iter using g_new0(). Fixes valgrind warnings - about reads from uninitialized memory. - -2004-08-05 Michael Natterer - - * app/actions/context-actions.c: use GTK_STOCK_JUMP_TO for - all "Set" actions (like context-foreground-red-set). - -2004-08-05 Michael Natterer - - * app/tools/gimpscaletool.c - * app/tools/gimptransformtool.h: applied patch from Jordi Gay - (attached to bug #131111) which adds an aspect ratio spinbutton to - the scale dialog and keeps the aspect ratio intact when width or - height are changed using the dialog. Fixes bug #132274. - - * app/tools/gimpcroptool.c - * app/tools/gimpscaletool.c: don't set the aspect spinbuttons to - "wrap" and decrease their climb_rate. - -2004-08-05 Michael Natterer - - * app/actions/context-actions.c - * app/actions/context-commands.[ch] - * menus/image-menu.xml.in: added actions, callbacks and menu items - for the brush shape and spikes. - -2004-08-04 Simon Budig - - * plug-ins/common/grid.c: changed the default colors for the - first invocation to the current foregroud color which is more - likely to be useful than the blue shades. - -2004-08-04 Sven Neumann - - * themes/Default/images/Makefile.am - * themes/Default/images/stock-brush-generated-*-16.png: removed ... - - * themes/Default/images/stock-shape-*-16.png: ... and added back - with more generic names. - - * libgimpwidgets/gimpstock.[ch] - * app/widgets/gimpbrusheditor.c: changed accordingly. - - * app/tools/gimpinkoptions-gui.c: use the new stock icons here as - well. - - * app/widgets/Makefile.am - * app/widgets/widgets-types.h - * app/widgets/gimpblobeditor.[ch]: added a simple blob shape - editor widget factored out of app/tools/gimpinkoptions-gui.c. - -2004-08-04 Simon Budig - - * app/core/gimpbrushgenerated.c: Enhanced the range of the hardness - parameter to make more soft brushes possible. Please note that this - makes existing generated brushes look more soft. But since people - apparently rarely use more than one or two generated brushes and - these get changed frequently I guess it should be OK. - -2004-08-04 Michael Natterer - - Allow URI drops from apps linked against GLib < 2.4.4 to GIMP - linked against GLib >= 2.4.5. Fixes bug #148140. - - * app/core/gimp-utils.[ch]: added gimp_check_glib_version(). - - * app/widgets/gimpselectiondata.c: added runtime check for GLib - versions that encode file:// URIs correctly (>= 2.4.5). For older - (broken) GLibs, leave the code path as is, for newer (fixed) ones, - perform an additional check if the dropped URI is in the (broken) - escaped-UTF-8 format and convert it to local filename encoding. - - * app/gui/gui.c: warn the user that non-ASCII filenames can't - be used when linked against GLib 2.4.4. - -2004-08-04 Michael Natterer - - * app/core/gimp.[ch]: changed member "ProcRecord *last_plug_in" - to "PlugInProcDef *last_plug_in". Added function - gimp_set_last_plug_in() and signal Gimp::last-plug-in-changed. - - * app/actions/plug-in-commands.c - * app/plug-in/plug-in-run.c: changed accordingly. - - * app/actions/plug-in-actions.c: factored out updating of the - "Reshow Last" and "Rerun Last" actions to a private function. - Connect each "plug-in" action group to Gimp::last-plug-in-changed - and update the actions' label and sensitivity in the - callback. Fixes bug #149139. - -2004-08-04 Michael Natterer - - * app/widgets/gimplayertreeview.c: #include "core/gimpimage-undo.h" - -2004-08-04 Manish Singh - - * configure.in: Really really really really fix WINDRES logic. - -2004-08-03 DindinX - - * plug-ins/winicon/icodialog.c: ported to GimpPreviewArea. Still needs - work. - -2004-08-03 Michael Natterer - - * app/widgets/gimpcontainergridview.c - (gimp_container_grid_view_item_context): ref/unref the view around - the calls to gimp_container_view_item_selected() and _item_context() - because the former may destroy the view which leads to a crash - when trying the latter. Fixes bug #148955. - -2004-08-03 Michael Natterer - - * app/core/gimpimage-undo.[ch] (gimp_image_undo_can_compress): - new function which checks if undo compression is possible: - - (1) is the image dirty? Fixes bug #148853. - (2) is redo stack empty? - (3) do both the passed undo object_type and undo_type - match the top undo item? - - Consistently name the GType and GimpUndoType passed to undo - functions "object_type" and "undo_type" to avoid confusion. - - * app/actions/layers-commands.c - * app/tools/gimpeditselectiontool.c - * app/tools/gimptexttool.c - * app/widgets/gimpitemtreeview.c - * app/widgets/gimplayertreeview.c: use the new utility function - instead of checking the above conditions manually. - -2004-08-03 Michael Natterer - - * app/core/gimpbrushgenerated.c (gimp_brush_generated_load): don't - leak the brush's name if parsing the shape fails. - - (gimp_brush_generated_dirty): shut up bogus compiler warnings - about uninitialized variables. - -2004-08-03 Shlomi Fish - - * plug-ins/imagemap/imap_preview.c - * plug-ins/imagemap/imap_preview.h: ported to GimpPreviewArea. - -2004-08-03 DindinX - - * plug-ins/ifscompose/ifscompose.c: ported to GimpPreviewArea. - -2004-08-03 DindinX - - * plug-ins/fp/fp.c: converted to GimpPreviewArea. - -2004-08-03 DindinX - - * plug-ins/rcm/rcm_callback.c - * plug-ins/rcm/rcm_dialog.c - * plug-ins/rcm/rcm_misc.c: Ported to GimpPreviewArea. - -2004-08-02 Simon Budig - - * app/widgets/gimpbrusheditor.c: Fixed brush spacing for brushes - with >= 2 spikes. Spotted by Joao S. O. Bueno. - - Fixes bug #149099. - -2004-08-02 DindinX - - * plug-ins/common/whirlpinch.c: ported to GimpPreviewArea. - -2004-08-02 DindinX - - * plug-ins/common/video.c: ported to GimpPreviewArea. - -2004-08-02 DindinX - - * plug-ins/common/unsharp.c: ported to GimpPreviewArea. Centered the - preview, too. - -2004-08-01 DindinX - - * plug-ins/common/tileit.c: ported to GimpPreviewArea. - -2004-08-01 DindinX - - * plug-ins/common/sinus.c: ported to GimpPreviewArea. - -2004-08-01 Manish Singh - - * configure.in: Really really really fix WINDRES logic. - -2004-08-01 Manish Singh - - * plug-ins/common/mkgen.pl: update install-% rule to match newer - libtool commands. - - * plug-ins/common/Makefile.am: regenerated. - -2004-08-01 Manish Singh - - * configure.in: Really really fix WINDRES logic. - -2004-08-01 Manish Singh - - * configure.in: Really fix WINDRES logic. - -2004-08-01 DindinX - - * plug-ins/common/scatter_hsv.c: ported to GimpPreviewArea. - -2004-08-01 Hans Breuer - - * app/display/makefile.msc app/widgets/makefile.msc : build - but *dont link* display-enums.obj, widget-enums.obj and - gimpdisplayoptions.obj. They must be in the dll - * app/makefile.msc : build gimp.exe and gimp-console.exe both - using the same gimp-core.dll - * app/gimpcore.def : new file, exports for gimp-core.dll - * app/Makefile.am : added to EXTRA_DIST - - * cursors/makefile.msc : new file to create gimp-tool-cursors.h - * cursors/Makefile.am : added to EXTRA_DIST - - * **/makefile.msc : updated - - * app/main.c app/app_procs.c : moved code to close the console - from the former to the later. It only is to be used if The Gimp - is not build as console app. - - * plug-ins/gfig/gfig.c : dont gimp_drawable_detach() the same - drawable twice - * plug-ins/gfig-dialog.c() : added a g_return_if_fail() to avoid - crashing on File/Import - -2004-08-01 Simon Budig - - * app/widgets/gimpbrusheditor.c: Fixed oversight that accidentially - reset the number of spikes to 2. - -2004-08-01 Simon Budig - - * app/core/gimpbrushgenerated.[ch]: Added optional spikes for - the generated brushes, enabling star shaped generated brushes. - - * app/widgets/gimpbrusheditor.[ch]: GUI for this. - - * app/core/gimpbrush.c: changed accordingly. - -2004-08-01 DindinX - - * plug-ins/common/mapcolor.c - * plug-ins/common/sample_colorize.c: ported to GimpPreviewArea. - - * plug-ins/common/newsprint.c: ported to GimpPreviewArea, even though - it should use some pngs instead. - -2004-08-01 Michael Schumacher - - * configure.in: modified the checks. hopefully it works on all - platforms this time. - -2004-08-01 Michael Schumacher - - * configure.in: move an AM_CONDITIONAL out of an if block - -2004-08-01 Michael Schumacher - - * configure.in: added checks for windres. Fixes bug #148443 - together with my last commit. - -2004-08-01 Michael Schumacher - - * app/Makefile.am: added checks and rules to build and link the - win32 icon resource if the resource compiler windres is found by - configure. First part of a fix for bug #148443. - -2004-08-01 Michael Schumacher - - * libgimpwidgets/gimpwidgets.def: added gimp_preview_area_fill - -2004-08-01 Shlomi Fish - - * plug-ins/flame/flame.c: ported to GimpPreviewArea. - -2004-08-01 Simon Budig - - * app/core/core-enums.h - * app/core/gimpbrushgenerated.[ch]: Implement three different - brush shapes for generated brushes. - - * app/core/gimpbrush.c: changed accordingly. - * app/core/core-enums.c: regenerated. - - * app/widgets/gimpbrusheditor.[ch]: Add toggles for the shape. - * themes/Default/images/stock-brush-generated-*-16.png: New stock - icons for the brush shapes. - - * themes/Default/images/Makefile.am - * libgimpwidgets/gimpstock.[ch]: changed accordingly - - untabified the files touched. - -2004-08-01 DindinX - - * plug-ins/common/iwarp.c: ported to GimpPreviewArea. - -2004-07-31 DindinX - - * plug-ins/common/gqbist.c: ported to GimpPreviewArea. - -2004-07-31 DindinX - - * plug-ins/common/fractaltrace.c: ported to GimpPreviewArea. - -2004-07-31 DindinX - - * plug-ins/common/exchange.c: ported to GimpPreviewArea. - -2004-07-31 DindinX - - * plug-ins/common/emboss.c: ported to GimpPreviewArea. - -2004-07-31 DindinX - - * plug-ins/common/diffraction.c: ported to GimpPreviewArea. - -2004-07-31 DindinX - - * plug-ins/common/despeckle.c: use even more GimpPreviewArea's - facilities. - - * plug-ins/common/destripe.c: ported to GimpPreviewArea. - -2004-07-31 Shlomi Fish - - * plug-ins/gflare/gflare.c: ported to GimpPreviewArea. - -2004-07-31 DindinX - - * plug-ins/common/despeckle.c: ported to GimpPreviewArea. - -2004-07-31 Shlomi Fish - - * plug-ins/gimpressionist/brush.c - * plug-ins/gimpressionist/orientmap.c - * plug-ins/gimpressionist/paper.c - * plug-ins/gimpressionist/preview.c - * plug-ins/gimpressionist/size.c: - Converted the code from using GtkPreview to GimpPreviewArea. - -2004-07-30 Seth Burgess - - * plug-ins/common/gauss.c: added some non-interactive modes (if called - from the pdb with RUN_INTERACTIVE). - -2004-07-31 Sven Neumann - - * libgimpwidgets/gimpcolorselect.c: minor cleanup. - -2004-07-31 Sven Neumann - - * libgimp/gimppatternmenu.c: ported to GimpPreviewArea. - - * libgimp/gimpbrushmenu.c: some small changes for consistency. - -2004-07-31 Sven Neumann - - * libgimpwidgets/gimppreviewarea.[ch]: added new function - gimp_preview_area_fill(). - - * libgimpwidgets/test-preview-area.c: added a test for new function. - - * libgimp/gimpbrushmenu.c: ported to GimpPreviewArea. - -2004-07-31 DindinX - - * plug-ins/common/depthmerge.c: use a GimpPreviewArea instead of a - GtkPreview. Some code cleanup, too. - -2004-07-31 Sven Neumann - - * libgimp/gimpmenu.c (gimp_menu_make_preview): use a GtkImage and - a GdkPixbuf instead of the deprecated GtkPreview widget. - -2004-07-30 DindinX - - * plug-ins/common/curve_bend.c: Use a GimpPreviewArea instead of - GtkPreview. - -2004-07-30 Sven Neumann - - Applied a bunch of small changes contributed by Tim Mooney to fix - stack corruption on Tru64 and Aix (bug #129867). - - * app/Makefile.am - * plug-ins/script-fu/Makefile.am: changed the dependency order so - that $(REGEXREPL) is linked earlier. - - * regexrepl/regex.[ch]: fixed check for __STDC__, merged upstream - fix for re_max_failures value. - -2004-07-30 Sven Neumann - - * configure.in: always do the check for perl and use the - substituted perl executable name in the call for gimp-mkenums. - Fixes the build on platforms where perl is not available as - /usr/bin/perl. Closes bug #148813. - - * app/widgets/gimpenumstore.c: added missing include. - -2004-07-30 DindinX - - * plug-ins/common/channel_mixer.c: GtkPreview->GtkDrawingArea, plus - some minor code cleanups. - -2004-07-30 DindinX - - * plug-ins/common/CML_explorer.c: Transformed one GtkPreview to a - GimpPreviewArea and the other to a simple GtkDrawingArea, since this - makes the code simpler. - -2004-07-30 Shlomi Fish - - * libgimpwidgets/gimppreviewarea.c (gimp_preview_area_draw): - corrected a typo causing mayhem in previews of non-alpha grayscale - images. Fixes bug #148873. - -2004-07-30 Sven Neumann - - * plug-ins/common/ccanalyze.c (fillPreview): optimized preview - filling a little bit, removed trailing whitespace. - -2004-07-30 DindinX - - * plug-ins/common/ccanalyze.c: converted to use a GimpPreviewArea, - and some small cleanups (g_malloc to g_new, removing tabs) - -2004-07-30 Sven Neumann - - * libgimpwidgets/gimppreviewarea.c (gimp_preview_area_draw): - optimized alpha blending. - -2004-07-30 Sven Neumann - - Applied a bunch of AIX portability fixes (bug #148813): - - * configure.in: when testing for Xmu library, link with -lXt -lX11. - - * app/gui/tips-parser.c - * app/gui/user-install-dialog.c - * app/tools/tools-enums.h - * app/widgets/gimpdasheditor.c - * app/widgets/widgets-enums.h - * libgimpthumb/gimpthumb-error.h - * libgimpwidgets/gimpcolorbutton.c - * plug-ins/common/edge.c: removed trailing commas from enums. - - * plug-ins/common/snoise.c: renamed defines to avoid collision - with system headers. - - * plug-ins/imagemap/imap_cmd_move.c: no C++ style comments. - - * app/paint-funcs/paint-funcs-generic.h - * app/paint-funcs/paint-funcs.c: use integers for bit fields. - -2004-07-30 Sven Neumann - - * plug-ins/common/bumpmap.c: removed preview code that isn't used - any longer. - -2004-07-30 DindinX - - * plug-ins/common/bumpmap.c: use GimpPreviewArea instead of - GtkPreview (which leads to much simpler code) - -2004-07-29 Sven Neumann - - * libgimpwidgets/gimppreviewarea.c: only invalidate the buffer - on size_allocate; allocate a new one on the next call to - gimp_preview_area_draw(). Fixed buffer offset in expose method. - - * libgimpwidgets/Makefile.am - * libgimpwidgets/test-preview-area.c: more a benchmark than a - test; quite similar to testrgb from the GTK+ source tree. - -2004-07-29 DindinX - - * plug-ins/FractalExplorer/Dialogs.c: converted all GtkPreview - widgets to GimpPreviewArea. - -2004-07-29 Michael Natterer - - * libgimpmodule/gimpmoduledb.c: converted tabs to spaces, removed - unused #if 0'ed prototype and unused #includes, minor cleanups. - -2004-07-29 Shlomi Fish - - * plug-ins/gimpressionist/*.[ch]: normalized the names of the fields - of gimpressionist_vals_t. - -2004-07-29 Sven Neumann - - * libgimpwidgets/Makefile.am - * libgimpwidgets/gimpwidgets.def - * libgimpwidgets/gimpwidgets.h - * libgimpwidgets/gimpwidgetstypes.h - * libgimpwidgets/gimppreviewarea.[ch]: added GimpPreviewArea, a - replacement for GtkPreview, loosely based on patches from Geert - Jordaens and David Odin. Fixes bug #144759. - - * plug-ins/common/sharpen.c: use the new widget instead of a - GtkPreview; saves about 100 lines of rather complex code :) - -2004-07-29 Michael Natterer - - * etc/controllerrc: changed default configuration of the keyboard - controller: scroll the display one step on cursor_key, scroll by - one page on +cursor_key and scroll to top/bottom/left/right - on +cursor_key. Fixes bug #53988. - - Moved the old opacity-modifying actions to +cursor_key. - -2004-07-29 Michael Natterer - - Replaced the concept of having a boolean indicating if an undo - step dirties the image by a bitfield indicating which parts - of the image are dirtied: - - * app/core/core-enums.[ch]: reordered two values in enum - GimpUndoType, added GIMP_DIRTY_IMAGE_SIZE to enum GimpDirtyMask. - - The values of GimpDirtyMask are still questionable and will - probably change... - - * app/core/gimpimage.[ch]: removed signal "undo_start" and added - a GimpDirtyMask parameter to the "dirty" and "clean" signals. - - * app/core/gimpimage-undo.[ch] (gimp_image_undo_push): replaced - "gboolean dirties_image" by "GimpDirtyMask dirty_mask" and pass - it to gimp_image_dirty(). - - (gimp_image_undo_group_start): added *ugly* code which tries to - figure GimpDirtyMask from the group's GimpUndoType and store it in - the GimpUndoGroup. Call gimp_image_dirty() instead of the removed - gimp_image_undo_start(). This means the undo group now dirties the - image just like one of its undo steps, but that's no problem since - undoing cleans it in the same way. - - * app/core/gimpundo.[ch]: s/dirties_image/dirty_mask/g - - (gimp_undo_pop): emit clean/dirty signals *before* performing the - actual undo step so listeners can detach from the image before it - is changed by undo. - - * app/core/gimpimage-undo-push.c (gimp_image_undo_push_*): pass a - GimpDirtyMask instead of TRUE/FALSE to gimp_image_undo_push(). - - * app/core/gimpimagemap.[ch]: removed "gboolean interactive" - because it makes no sense to use GimpImageMap noninteractively. - Don't freeze()/thaw() undo while the image_map is active which - fixes many ways of trashing the image's undo state but probably - introduces new ways of doing evil things. - - * app/display/gimpdisplay-foreach.c - * app/display/gimpdisplayshell-handlers.c: changed according - to the GimpImage::clean()/dirty() signal changes. Small fixes - in the quit dialog's dirty image container. - - * app/tools/gimptoolcontrol.[ch]: added member and API to - set/get the dirty_mask. - - * app/tools/gimpcroptool.c - * app/tools/gimpimagemaptool.c - * app/tools/gimpiscissorstool.c - * app/tools/gimptexttool.c - * app/tools/gimptransformtool.c: whenever setting "preserve" to - FALSE, also set a "dirty_mask" which specifies on which image - changes the tool wants to be canceled. - - * app/tools/tool_manager.c: removed "undo_start" connection and - connect to both "dirty" *and* "clean" to check if the active_tool - needs to be canceled. Cancel the tool only if the dirty_mask - passed in the signal has common bits with the tool's dirty_mask. - - Fixes bug #109561 and probably opens some new ones... - -2004-07-29 Michael Schumacher - - * libgimp/gimp.def - * libgimp/gimpui.def: added some missing symbols - -2004-07-29 Sven Neumann - - * libgimpbase/gimpbase.def: added new symbols. - -2004-07-29 Michael Natterer - - Added support for motion event history as provided by some input - device drivers. If you have a tablet driver supporting this, - please try and report back. - - * app/display/gimpdisplayshell.h (struct GimpDisplayShell): added - member "guint32 last_motion_time". - - * app/display/gimpdisplayshell-callbacks.c - (gimp_display_shell_tool_events): remember the last_motion_time on - button_press() and after motion() and ask the current device for - its motion history; in motion(), if the active_tool asks for exact - motions, check if the input device recorded a motion history and - process the history instead of the motion event. - - (gimp_display_shell_get_time_coords): new utility function which - gets GimpCoords from a GdkTimeCoord struct as used by the motion - history. - -2004-07-29 Shlomi Fish - - * plug-ins/gimpressionist/repaint.c: converted a multiple if into - a nested one. - -2004-07-29 Sven Neumann - - * app/core/core-enums.h: removed enums GimpImageType and - GimpImageBaseType ... - - * libgimpbase/gimpbaseenums.h: ... and added them here. Also moved - all enums from gimpbasetypes.h to this new file. - - * libgimpbase/Makefile.am - * tools/pdbgen/Makefile.am: changed accordingly. - - * app/core/core-enums.c - * libgimp/gimpenums.h - * libgimpbase/gimpbaseenums.c - * tools/pdbgen/enums.pl: regenerated. - - * libgimpbase/gimpparasite.c - * libgimpbase/gimpprotocol.c - * libgimp/gimp.c: include - - * libgimpbase/gimpbasetypes.[ch]: added API to set and get a - translation domain on a GType. This is used for translatable enum - values. - - * libgimpbase/gimputils.[ch]: added API to retrieve the translated - name for an enum value. - - * app/widgets/gimpenumstore.c - * app/widgets/gimpenumwidgets.c: use the new API in libgimpbase. - -2004-07-29 Sven Neumann - - * libgimp/gimpdrawable.c: fixed gtk-doc comments. - -2004-07-29 Dave Neary - - * app/core/gimpdrawable-transform.c: Stop signed ints overflowing - while getting the mean by replacing (a + b) / 2 with a / 2 + b / 2. - Fixes bug #128594 for drawables less than 32K wide. - -2004-07-29 Michael Natterer - - * app/gui/preferences-dialog.c: renamed "Cleared saved foobar now" - buttons to "Reset saves foobar to default values". Fixes bug #5673. - Added mnemonics for all the configure/save/reset buttons. - -2004-07-29 Sven Neumann - - * plug-ins/script-fu/script-fu-scripts.c (script_fu_free_script): - applied patch by Kevin Cozens that moves a g_free() to the right - place (bug #148729). - -2004-07-28 Michael Natterer - - * app/actions/actions.c (action_groups): register the - GIMP_STOCK_VISIBLE icon with the "view" action group. - -2004-07-28 Shlomi Fish - - * plug-ins/gimpressionist/brush.c: removed a redundant parameter - from one of the internal functions. - * plug-ins/gimpressionist/utils.c: Made sure that resources that - are selected by the presets will position their list views - accordingly. - -2004-07-28 Sven Neumann - - * autogen.sh: if the check for libtoolize fails, try glibtoolize. - -2004-07-28 Shlomi Fish - - * plug-ins/gimpressionist/presets.c: created a base function for - two functions with duplicate code. - -2004-07-28 Sven Neumann - - * plug-ins/imagemap/imap_default_dialog.c: no need to include - "libgimp/stdplugins-intl.h" here. - -2004-07-28 Michael Natterer - - * app/gui/preferences-dialog.c (prefs_dialog_new): reordered - buttons in the Interface -> Keyboard Shortcuts section to be - consistent with other sections which provide configure/save/clear - buttons. - -2004-07-28 Michael Natterer - - * app/tools/gimpbycolorselecttool.c (gimp_by_color_select_tool_init) - * app/tools/gimpcolorpickertool.c (gimp_color_picker_tool_init): - don't call gimp_tool_control_set_preserve (tool->control, FALSE) - because these tools don't cache any image state and don't care - about the image changing under their feet. - -2004-07-28 Michael Natterer - - * app/display/gimpdisplayshell.c (gimp_display_shell_reconnect): - emit "reconnect" *before* emitting scale and scroll events so - listeners (the navigation view) can switch to the new image at the - right time. - -2004-07-28 Sven Neumann - - Applied a patch from Brion Vibber that makes the TWAIN plug-in - available on Mac OS X (bug #147962): - - * configure.in - * plug-ins/Makefile.am: check for Mac OS X twain support. - - * plug-ins/twain/Makefile.am - * plug-ins/twain/tw_local.h - * plug-ins/twain/tw_mac.c - * plug-ins/twain/tw_platform.h - * plug-ins/twain/tw_win.c: new files with platform specific code. - - * plug-ins/twain/README - * plug-ins/twain/tw_dump.[ch] - * plug-ins/twain/tw_func.[ch] - * plug-ins/twain/tw_util.[ch] - * plug-ins/twain/twain.c: changed accordingly. - - * plug-ins/twain/gimp-twain.png: twain application icon used by - the Mac port. - - * plug-ins/twain/tw_sess.c: removed, doesn't seem to be used. - -2004-07-28 Michael Natterer - - * tools/pdbgen/pdb/image.pdb (image_is_dirty): fix typo in - parameter description. - - * app/pdb/image_cmds.c - * libgimp/gimpimage_pdb.c: regenerated. - -2004-07-28 DindinX - - * plug-ins/common/unsharp.c: Added a toggle button to enable/disable - preview updating. Should fix #144972. - -2004-07-28 DindinX - - * plug-ins/common/shift.c - * plug-ins/common/sinus.c - * plug-ins/common/snoise.c - * plug-ins/common/spheredesigner.c: added missing calls to - g_rand_free (), remove tabs while I was at it. - - * plug-ins/common/smooth_palette.c: minor cleanup - - * plug-ins/common/spread.c: removed tabs. - -2004-07-28 Michael Natterer - - * app/core/core-enums.h: added still unused flags type - GimpDirtyMask. - - * app/base/Makefile.am - * app/core/Makefile.am - * app/display/Makefile.am - * app/paint/Makefile.am - * app/text/Makefile.am - * app/tools/Makefile.am - * app/widgets/Makefile.am - * libgimpthumb/Makefile.am: changed calls to gimp-mkenums to - support GTypeFlags and to make the value arrays private to the - get_type() functions. - - * app/base/base-enums.c - * app/core/core-enums.c - * app/display/display-enums.c - * app/paint/paint-enums.c - * app/text/text-enums.c - * app/tools/tools-enums.c - * app/widgets/widgets-enums.c: regenerated. - -2004-07-28 Michael Natterer - - * app/paint/gimpclone.c: converted tabs to spaces. - -2004-07-28 DindinX - - * plug-ins/common/spread.c: fix a smallish memory leak. - -2004-07-28 Sven Neumann - - * tools/gimp-mkenums: synced with glib-mkenums (execept for the - newly added template feature). - -2004-07-28 Michael Natterer - - * libgimp/gimpbrushselect.c - * libgimp/gimpfontselect.c - * libgimp/gimpgradientselect.c - * libgimp/gimppalettemenu.c - * libgimp/gimppaletteselect.c - * libgimp/gimppatternselect.c (gimp_*_select_destroy): don't - leak the selected object's name and its data (brush mask etc). - - * libgimp/gimpfontmenu.c: moved the icon to the left side of the - button. - - * libgimp/gimppalettemenu.c: ditto. Added "Since: GIMP 2.2" to - API docs. - -2004-07-28 Michael Natterer - - * app/widgets/gimpactiongroup.c - (gimp_action_group_set_action_label): forgot to strip mnemonics - here. - -2004-07-28 Michael Natterer - - Enabled disabling all menu mnemonics. Addresses bug #120034: - - * app/config/gimpguiconfig.[ch] - * app/config/gimprc-blurbs.h: added boolean RESTART property - "menu-menonics". - - * app/gui/preferences-dialog.c: added a GUI for it. - - * app/widgets/gimpactiongroup.[ch]: added boolean CONSTRUCT_ONLY - property "mnemonics". - - (gimp_action_group_add_*_actions): call gimp_strip_uline() on - the actions' labels if mnemonics is FALSE. - - * app/widgets/gimpactionfactory.[ch] - * app/actions/actions.c: pass gui_config->menu_menmonics to - all action groups. - -2004-07-27 Sven Neumann - - * menus/image-menu.xml.in: commented out "Context" menu now that - we have a shortcut editor. - -2004-07-27 Sven Neumann - - * app/core/gimpgradient-load.c: don't leak empty SVG gradients. - -2004-07-27 Sven Neumann - - * app/actions/image-commands.c: include "libgimpbase/gimpbase.h", - not an individual header out of libgimpbase. - -2004-07-27 Sven Neumann - - * libgimpbase/Makefile.am - * libgimpbase/gimpbase.h - * libgimpbase/gimpbase.def - * libgimpbase/gimpmemsize.[ch]: added new files with memsize - related functions (moved here from gimputil.c) and - GIMP_TYPE_MEMSIZE (moved here from app/config/gimpconfig-types.[ch]). - - * libgimpbase/gimputils.[ch]: removed gimp_memsize_to_string() here. - - * libgimpbase/gimpunit.[ch]: added GIMP_TYPE_UNIT (moved here from - app/config/gimpconfig-types.[ch]). - - * libgimpbase/gimpbase-private.c - * libgimp/gimptile.c - * libgimp/gimpunitcache.c - * plug-ins/help/domain.c - * app/xcf/xcf-read.c: need to include glib-object.h. - - * plug-ins/common/uniteditor.c: use GIMP_TYPE_UNIT. - - * app/config/gimpconfig-types.[ch]: removed code that lives in - libgimpbase now. - - * app/config/gimpconfig-deserialize.c: changed accordingly. - - * app/config/gimpbaseconfig.c - * app/config/gimpdisplayconfig.c - * app/core/gimpcontext.c - * app/gui/grid-dialog.c - * app/tools/gimpcolortool.c - * app/widgets/gimpaction.c - * app/widgets/gimpunitstore.c: no need to include gimpconfig-types.h - any longer. - -004-07-27 Michael Natterer - - * libgimp/Makefile.am - * libgimp/gimp.h - * libgimp/gimpui.h - * libgimp/gimppalettemenu.[ch] - * libgimp/gimppaletteselect.[ch]: added palette select wrapper and - widget (straight copy & string replace of the font select stuff). - Fixes bug #136130. - - * plug-ins/script-fu/script-fu-enums.h - * plug-ins/script-fu/script-fu-scripts.c - * plug-ins/script-fu/siod-wrapper.c: added SF_PALETTE so it can - be used in scripts. - - * plug-ins/script-fu/scripts/test-sphere.scm: added a palette - parameter to the test script. - -2004-07-27 Michael Natterer - - * app/core/gimpimage.c (gimp_image_finalize): remove the image - from the image hash table and set its "gimp" pointer to NULL - *after* all layers, channels, vectors and the selection are - finalized; otherwise these items have no chance of removing - themselves from the item hash table (because image->gimp is - already NULL). Spotted by pgimeno and nomis. - (should be backported after it got some testing) - -2004-07-27 Sven Neumann - - * app/widgets/gimpfiledialog.c (gimp_file_dialog_new): string change. - -2004-07-27 Michael Natterer - - * app/widgets/gimpfiledialog.c (gimp_file_dialog_set_uri): make - sure we always set a non-null URI. - -2004-07-27 Sven Neumann - - * app/widgets/gimphelp-ids.h removed unused help IDs - GIMP_HELP_FILE_OPEN_XCF and GIMP_HELP_FILE_SAVE_XCF. The help IDs - for these entries are generated from the procedure names. - -2004-07-27 Sven Neumann - - * app/widgets/gimphelp.c (gimp_help): print the help-id and - help-domain to stdout if gimp was started with the --verbose - command-line option. - -2004-07-27 Sven Neumann - - * app/widgets/gimpfiledialog.c (gimp_file_dialog_add_filters): - show extensions in the filters menu. Is this a good idea at all? - -2004-07-27 Sven Neumann - - * libgimp/gimpbrushmenu.c - * libgimp/gimppatternmenu.c: attempt to make the brush and pattern - selectors look less like buttons (supposed to fix bug #147777). - -2004-07-27 Sven Neumann - - * libgimpwidgets/gimpcolorhexentry.c (gimp_color_hex_entry_events): - also accept the short hexadecimal notation (3 hex digits). - -2004-07-26 Sven Neumann - - * libgimpwidgets/Makefile.am (libgimpwidgetsinclude_HEADERS): - added new files. - -2004-07-26 Sven Neumann - - * app/widgets/Makefile.am - * app/widgets/gimpcellrenderertoggle.[ch]: moved to libgimpwidgets. - - * app/widgets/gimpcomponenteditor.c - * app/widgets/gimpcontainertreeview.c - * app/widgets/gimpitemtreeview.c - * app/widgets/gimplayertreeview.c - * app/widgets/gimptoolview.c - * app/widgets/widgets-types.h: changed accordingly. - - * libgimpwidgets/Makefile.am - * libgimpwidgets/gimpwidgets.def - * libgimpwidgets/gimpwidgets.h - * libgimpwidgets/gimpwidgetsmarshal.list - * libgimpwidgets/gimpwidgetstypes.h - * libgimpwidgets/gimpcellrenderertoggle.[ch]: custom toggle cell - renderer moved here from app/widgets. - - * libgimpwidgets/gimpcellrenderercolor.[ch]: unified code with the - new toggle cell renderer. - -2004-07-26 Michael Natterer - - * app/pdb/procedural_db.[ch] (procedural_db_free_data): new - function which clears the whole list of data set by plug-ins. - - (procedural_db_free): use it. - - * app/actions/plug-in-actions.c - * app/actions/plug-in-commands.[ch]: added action, callback and - confirmation dialog for "Reset all filters to default values". - Somehow addresses bug #81015. - - * app/widgets/gimphelp-ids.h: added a help ID for the new action. - - * menus/image-menu.xml.in: added it to the "Filters" submenu. - -2004-07-26 Sven Neumann - - * libgimpwidgets/gimpcellrenderercolor.c - (gimp_cell_renderer_color_get_size): fine-tuning. - -2004-07-26 Michael Natterer - - * app/config/gimpconfig-types.h: removed GIMP_TYPE_COLOR. - - * app/config/gimpconfig-params.[ch]: renamed GimpParamSpecColor - to GimpParamSpecRGB. - - * app/config/gimpconfig-deserialize.c - * app/config/gimpconfig-dump.c - * app/config/gimpconfig-serialize.c - * app/config/gimpscanner.c - * app/core/gimp-utils.c - * app/core/gimpcontext.c - * app/core/gimpgrid.c - * app/display/gimpdisplayoptions.c - * app/text/gimptext.c - * app/tools/gimpcolortool.c - * app/widgets/gimpaction.c - * app/widgets/gimpcolorbar.c - * app/widgets/gimppropwidgets.c: changed accordingly. - -2004-07-26 Shlomi Fish - - * plug-ins/gimpressionist/: added a de-allocation to the PPM's - allocated by the size map dialog. - -2004-07-26 Sven Neumann - - * app/core/gimpgradient-load.c: load all linear gradients from an - SVG file, not only the first one. - -2004-07-26 Michael Natterer - - * app/core/gimpdatafactory.h: added "gboolean writable" to the - GimpDataFactoryLoaderEntry struct. Return a GList* instead of - GimpData* from GimpDataLoadFunc so it's possible to load more than - one data object from one file. - - * app/core/gimpdatafactory.c (gimp_data_factory_load_data): - changed accordingly: add all items of the returned lists to the - data factory. Make the data object writable only if it's in the - writable path *and* its loader entry says it's a writable format - *and* the returned list contains exactly one element. - - * app/core/gimp.c (gimp_real_initialize): declare all loader - entries as writable where we have code to read and write exactly - one object per file; all others are not writable. - - * app/core/gimpbrush.[ch] - * app/core/gimpbrushgenerated.[ch] - * app/core/gimpbrushpipe.[ch] - * app/core/gimpgradient-load.[ch] - * app/core/gimppalette.[ch] - * app/core/gimppattern.[ch] (all load functions): return a list - containing the loaded object instead of the object itself. - -2004-07-26 Sven Neumann - - * libgimpwidgets/Makefile.am - * libgimpwidgets/gimpwidgets.def - * libgimpwidgets/gimpwidgets.h - * libgimpwidgets/gimpwidgetstypes.h - * libgimpwidgets/gimpcellrenderercolor.[ch]: added a GimpRGB cell - renderer. - - * libgimpwidgets/gimpcolorarea.[ch]: exported the function that - renders the color to a buffer for internal use in libgimpwidgets. - - * libgimpwidgets/gimpcolorhexentry.c: use the new cell renderer - for the completion popup. - -2004-07-26 Sven Neumann - - * libgimpcolor/gimpcolor.def - * libgimpwidgets/gimpwidgets.def: added new symbols. - -2004-07-26 Sven Neumann - - * libgimpcolor/gimprgb.[ch]: register GimpRGB as a boxed type. - - * libgimpcolor/gimpadaptivesupersample.c - * libgimpcolor/gimpcolorspace.c - * libgimpcolor/gimprgb-parse.c - * libgimp/gimp.h: include instead of . - -2004-07-26 Shlomi Fish - - * plug-ins/gimpressionist/: placed all the orientation map-related - public functions in orientmap.h. Now we're freeing the PPM's that it - is allocating by a call to orientation_map_free_resources(). - -2004-07-26 Michael Natterer - - * app/core/core-types.h: removed unused typedef - GimpDataObjectLoaderFunc. - -2004-07-26 Sven Neumann - - * libgimpcolor/gimprgb-parse.c - * libgimpcolor/gimprgb.h: added new function gimp_rgb_list_names() - that gives access to the list of SVG color keywords. - - * libgimpwidgets/Makefile.am - * libgimpwidgets/gimpwidgets.h - * libgimpwidgets/gimpwidgetstypes.h - * libgimpwidgets/gimpcolorhexentry.[ch]: added new widget that - allows to enter colors in hex notation or by using color names. - - * libgimpwidgets/gimpcolorscales.c: use a GimpColorHexEntry. - -2004-07-26 Michael Natterer - - * app/tools/gimpeditselectiontool.[ch]: renamed init_edit_selection() - to gimp_edit_selection_tool_start(). Removed enum EditType. - - * app/tools/tools-enums.h: added enum GimpTranslateMode instead. - - * app/tools/gimpmovetool.c: changed accordingly. - - * app/tools/gimpselectiontool.[ch]: added protected utility - function gimp_selection_tool_start_edit(). - - * app/tools/gimpfreeselecttool.c - * app/tools/gimpfuzzyselecttool.c - * app/tools/gimprectselecttool.c: use the new function instead of - duplicating the same code three times, don't include - "gimpeditselectiontool.h". - - * app/tools/gimpiscissorstool.c: don't include - "gimpeditselectiontool.h". - -2004-07-26 Michael Natterer - - * app/tools/gimpeditselectiontool.c: don't freeze()/thaw() the - image's undo to prevent live-movement from ending up on the undo - stack. Instead, just stop pushing undo steps after the initial - movement. Simplifies edit_select's undo code quite a bit and fixes - bug #148458. - -2004-07-26 Sven Neumann - - * libgimpwidgets/gimpcolorscales.c (gimp_color_scales_hex_events): - accept SVG color names in the hex entry. Not very intuitive but - probably a nice experts feature and it can be improved later. - -2004-07-26 Michael Natterer - - * app/main.c (main): use #ifdef GIMP_UNSTABLE instead of looking - at GIMP_MINOR_VERSION. - - * app/app_procs.c: don't #include "tools/gimp-tools.h". - -2004-07-26 Sven Neumann - - * plug-ins/bmp/bmp.h - * plug-ins/bmp/bmpread.c: applied a patch by Brion Vibber that - fixes extra data overflow, nonstandard 16bpp field arrangement - and unrecognized compression (bug #143682). - -2004-07-25 Bill Skaggs - - * plug-ins/common/decompose.c: clamp results of LAB decomposition - so that out-of-gamut conversions do not overflow and get badly - distorted. Fixes bug #147603. Note that it would probably be a - good idea to do similar things for other conversion types. - -2004-07-25 Shlomi Fish - - * plug-ins/gimpressionist/: converted checks for initialization of - ppm's done by checking the "col" buffer, to macro calls. - -2004-07-25 Shlomi Fish - - * plug-ins/gimpressionist/: fixed bug #148088: ("Gimpressioinst - crashes if given malicious presets with out of range values, in - the radio buttons group numeric values: "placetype", "orienttype", - etc. "). - - This was done by adding clamps to the relevant values in the preset. - -2004-07-25 Raphaël Quinet - - * INSTALL: Minor fixes and improvements. Suggest using a - different prefix and setting PKG_CONFIG_LIBDIR if old versions of - GTK+ libs are found and cannot be removed without breaking other - packages. - -2004-07-23 Shlomi Fish - - * plug-ins/gimpressionist/: created a header "orientation.h" - for the Orientation tab specific declarations. - -2004-07-23 Sven Neumann - - * libgimp/gimppixbuf.c (gimp_pixbuf_from_data): added missing code - for grayscale previews. - -2004-07-23 Sven Neumann - - * app/core/gimpgradient-load.c (svg_parser_end_element): fixed - handling of the last gradient segment and did some code cleanup. - -2004-07-23 Sven Neumann - - * app/core/gimpgradient-load.c (gimp_gradient_load_svg): improved - error message. - (svg_parser_end_element): don't crash on empty gradient definitions. - -2004-07-23 Sven Neumann - - * libgimpcolor/test-color-parser.c: added more test samples. - - * libgimpcolor/gimprgb-parse.c: fixed a bug that I found with the - new tests. - - * app/core/gimpgradient-load.c: changed SVG parser to handle - gradients that are defined more deeply in the SVG hierarchy. Added - a simplistic CSS style parser to deal with gradient definitions - that use CSS to define the gradient stop properties (closes bug - #148127). - -2004-07-23 Sven Neumann - - * app/core/gimpdatafactory.c: some newlines to improve error - messages. - - * app/core/gimpgradient-load.c (gimp_gradient_load_svg): fixed - error handling. - -2004-07-23 Sven Neumann - - * libgimpcolor/Makefile.am - * libgimpcolor/test-color-parser.c: added a simple unit test - framework for the color parser. - - * libgimpcolor/gimprgb-parse.c: fixed parsing of rgba() values. - - * libgimpmath/test-md5.c: minor cleanup. - -2004-07-23 Sven Neumann - - * libgimpcolor/gimprgb-parse.c (gimp_rgba_parse_css): added support - for the "transparent" color name. - -2004-07-22 Sven Neumann - - * libgimpcolor/gimprgb-parse.c - * libgimpcolor/gimprgb.h: improved the CSS color parser code, - added new function gimp_rgba_parse_css(), added support for HSL - color values. - -2004-07-22 Sven Neumann - - * libgimpcolor/gimprgb-parse.c - * libgimpcolor/gimprgb.h: use a signed integer to pass the string - length to the new parser functions. The API explicitely asks for - -1 to be passed... - - * app/core/gimp.c - * app/core/gimpgradient-load.[ch] - * app/core/gimpgradient.h: added preliminary support for loading - simple SVG gradients (see bug #148127). Be careful with this new - feature; editing the loaded gradient will cause the SVG file to be - overwritten! Work in progress... - -2004-07-22 Sven Neumann - - * app/core/Makefile.am - * app/core/gimpgradient-load.[ch] - * app/core/gimpgradient-save.[ch] - * app/core/gimpgradient.[ch]: moved gradient file handling out of - gimpgradient.c to new files. - - * app/core/gimp.c - * app/actions/gradients-commands.c: changed accordingly. - - * libgimpcolor/gimpcolor.def: added gimp_rgb_parse_name. - -2004-07-22 Michael Natterer - - * data/misc/gimp.desktop.in.in (MimeType): image/g -> image/g3fax. - -2004-07-22 Sven Neumann - - * app/widgets/gimpactionview.c: rephrased the text for the dialog - that appears if a new shortcut collides with an existing one. - - * libgimpcolor/gimprgb.[ch]: added new function gimp_rgb_parse_name() - which accepts RGB colors in hexadecimal notation or as SVG color - keywords. - -2004-07-22 Michael Natterer - - * app/display/gimpdisplayshell.c (gimp_display_shell_resume): - s/pause/resume/ in the API docs. - -2004-07-22 Michael Natterer - - * tools/gimp-remote.c (main): correctly convert relative paths to - URIs. Append the resulting URI only if it's not NULL. - -2004-07-22 Michael Natterer - - * app/widgets/gimptoolbox.c (toolbox_create_tools): connect to - "accel-changed" of the accel_group using connect_object(), not - just connect() so we don't crash when it's emitted after the - toolbox is destroyed. - -2004-07-21 Ray Strode - - * gimp/data/misc/gimp.desktop.in.in: Add MimeType line to desktop - file for new MIME system. - -2004-07-21 Sven Neumann - - * plug-ins/common/gif.c: declared global const variable as static. - Fixes compiler warnings seen with gcc 3.4.1 (don't ask me why). - -2004-07-21 Michael Natterer - - * app/widgets/gimptemplateeditor.c - * plug-ins/common/gif.c - * plug-ins/common/jpeg.c: set GTK_SHADOW_IN on scrolled windows of - text views. Fixes bug #148025. - -2004-07-21 Michael Natterer - - Enabled the various "Clear saved foobar now" buttons in prefs: - - * app/gui/session.[ch] - * app/menus/menus.[ch] - * app/widgets/gimpdevices.[ch]: implemented the _clear() - functions: unlink() the rc file and set an internal flag that it - has been deleted. Added "gboolean always_save" parameter to the - _save() functions and don't save anything if it is FALSE and the - internal deletion flag has been set. - - * app/gui/gui.c - * app/widgets/gimpdevicestatus.c: changed accordingly. - - * app/gui/preferences-dialog.c: added callbacks for all "Save now" - and "Clear now" buttons and show error messages if clearing fails. - Inform the user that she has to restart GIMP to see the effect of - the clearing. - -2004-07-21 Michael Natterer - - * app/core/gimpmarshal.list - * app/widgets/gimpcellrendereraccel.[ch]: added "gboolean delete" - parameter to the GimpCellRendererAccel::accel_edited() signal. - - * app/widgets/gimpactionview.c: distinguish between deletion of an - accelerator and the user entering an invalid accelerator. - -2004-07-21 Shlomi Fish - - * plug-ins/gimpressionist/: normalized the identifiers in - placement.c. - -2004-07-21 Michael Natterer - - * app/actions/context-actions.c: changed names of actions which - select brushes, patterns etc. from e.g. "context-brush-first" to - "context-brush-select-first". - - * menus/image-menu.xml.in: changed accordingly. - -2004-07-21 Michael Natterer - - * app/gui/preferences-dialog.c: remember the keyboard shortcut - dialog and show it only once. - - * app/widgets/gimpactionview.c - * app/widgets/gimpcellrendereraccel.c: minor cleanups. - - Seems to work pretty well now and thus fixes bug #142922. - -2004-07-21 Michael Natterer - - * app/core/gimpmarshal.list - * app/widgets/Makefile.am - * app/widgets/widgets-types.h - * app/widgets/gimpcellrendereraccel.[ch]: new cell renderer - which displays an accelerator and allows to edit it (ripped - out of libegg and modified). - - * app/widgets/gimpactionview.c: use the new renderer and connect - to its "accel-edited" signal (its callback is one huge mess that - needs to be cleaned up). Added ugly hack to work around GTK+ API - limitation that seems to prevent implementing a shortcut editor in - a sane way. - - * app/actions/file-actions.c - * app/actions/image-actions.c - * app/actions/tools-actions.c: added ugly hacks here, too. - - * app/gui/preferences-dialog.c: relaced Cancel/Ok in the shortcut - editor by Close. - -2004-07-20 Sven Neumann - - * configure.in (ALL_LINGUAS): added back "pa" for Punjabi now that - the missing po files have been added (tips/pa.po is still missing - though). - -2004-07-20 Michael Natterer - - * app/widgets/gimpactionfactory.[ch] - * app/widgets/gimpactiongroup.[ch]: added "label" and "stock-id" - properties to GtkActionGroup and allow to register them in the - GimpActionFactory. - - * app/actions/actions.c: register user visible labels and icons - with all action groups. - - * app/widgets/Makefile.am - * app/widgets/widgets-types.h - * app/widgets/gimpactionview.[ch]: new widget which shows a - treeview of action groups and their actions & shortcuts. - - * app/widgets/gimpaction.[ch]: added gimp_action_name_compare() - utility function. - - * app/widgets/gimpwidgets-utils.[ch]: added - gimp_get_accel_string() utility function. - - * app/widgets/gimpcontrollers.[ch]: added - gimp_controllers_get_ui_manager() which will be used for setting - up the controller mapping dialog. - - * app/gui/preferences-dialog.c: added a "Configure Keyboard - Shortcuts" button which pops up a GimpActionView. Work in - progress... - -2004-07-20 Michael Natterer - - * app/actions/image-actions.c: make sure that the "image-new" and - "image-new-from-image" actions always have the same shortcut. - -2004-07-20 Bill Skaggs - - * plug-ins/Lighting/lighting_main.c - * plug-ins/Lighting/lighting_main.h - * plug-ins/Lighting/lighting_preview.c - * plug-ins/Lighting/lighting_preview.h - * plug-ins/Lighting/lighting_shade.c - * plug-ins/Lighting/lighting_ui.c: completely reworked UI for - lighting page. Now supports up to 6 lights (more is trivial). - Added ability to temporarily isolate selected light. Added - light intensity controls. Can interactively position each light - (does not quite work yet for directional lights). - -2004-07-20 Michael Natterer - - * app/actions/tools-actions.c: added an icon to the - "tools-visibility" action. - -2004-07-20 Sven Neumann - - * app/composite/gimp-composite.c (gimp_composite_init): now that - the output depends on --verbose, enable it for stable releases also. - -2004-07-20 Shlomi Fish - - * plug-ins/gimpressionist/presets.c: fixed the incorrect strings - for input and output of the preset's fields. (a relic of an - irresponsible search-and-replace script). - - * plug-ins/gimpressionist/: normalized the identifiers of - orientmap.c. - -2004-07-20 Helvetix Victorinox - - * app/composite/Makefile.am (regenerate): Updated make-installer.py - command line to take advantage of the new compile time method of - determining which instruction set to compile. - - * app/composite/gimp-composite.c (gimp_composite_init): Print the - list of active instruction sets if the --verbose command line - switch is ON (via be_verbose) - - * app/composite/gimp-composite-x86.h: Factored code from the mmx, - and sse implementations. - - * app/composite/make-installer.py: Raised the number of test - iterations from 1 to 10. - - * app/composite/gimp-composite-3dnow.[ch] - * app/composite/gimp-composite-3dnow-test.c - * app/composite/gimp-composite-3dnow-installer.c - * app/composite/gimp-composite-altivec.[ch] - * app/composite/gimp-composite-altivec-test.c - * app/composite/gimp-composite-altivec-installer.c - * app/composite/gimp-composite-mmx.[ch] - * app/composite/gimp-composite-altivec-test.c - * app/composite/gimp-composite-altivec-installer.c - * app/composite/gimp-composite-sse.[ch] - * app/composite/gimp-composite-sse-test.c - * app/composite/gimp-composite-sse-installer.c - * app/composite/gimp-composite-sse2.[ch] - * app/composite/gimp-composite-sse2-test.c - * app/composite/gimp-composite-sse2-installer.c - * app/composite/gimp-composite-vis.[ch] - * app/composite/gimp-composite-vis-test.c: - Regenerated sources via make-installer.py - -2004-07-20 Sven Neumann - - * app/app_procs.c - * app/base/base.[ch] - * app/composite/gimp-composite.[ch]: pass "be_verbose" to the base - and composite subsystems. - -2004-07-20 Sven Neumann - - * autogen.sh: added some empty lines to improve readability of the - output in case of problems. - - * configure.in: bumped version number to 2.1.3. - -2004-07-19 Helvetix Victorinox - - * app/composite/gimp-composite-mmx.c - (xxxgimp_composite_dodge_rgba8_rgba8_rgba8_mmx) - * app/composite/gimp-composite-mmx.c - (xxxgimp_composite_divide_rgba8_rgba8_rgba8_mmx) - * app/composite/gimp-composite-mmx.c - (gimp_composite_difference_rgba8_rgba8_rgba8_mmx) - * app/composite/gimp-composite-mmx.c - (gimp_composite_darken_rgba8_rgba8_rgba8_mmx): More clobber - register corrections. - -2004-07-20 Sven Neumann - - * Made 2.1.2 release. - -2004-07-20 Sven Neumann - - * plug-ins/winicon/icoload.c - * plug-ins/winicon/icosave.c: added explicit casts to please the - compiler. - -2004-07-20 Sven Neumann - - * plug-ins/gimpressionist/Makefile.am (gimpressionist_sources): - added paper.h. - - * plug-ins/MapObject/Makefile.am (MapObject_SOURCES): added back - arcball.h. - - * plug-ins/MapObject/mapobject_main.c - * plug-ins/MapObject/mapobject_preview.c: no need to include - arcball.h here. - - * plug-ins/gfig/Makefile.am (SUBDIRS): added back gfig-examples - - * plug-ins/gfig/gfig-examples/Makefile.am: cleanup. - -2004-07-20 Sven Neumann - - * plug-ins/Lighting/lighting_ui.c: fixed some GUI issues: - left-align labels, use stock buttons, added line-breaks to make - the code fit into 80 columns. - -2004-07-19 Sven Neumann - - * plug-ins/Lighting/lighting_ui.c: fixed a couple of issues with - the new code: don't include individual glib headers, never ever - use sprintf(), mark user-visible strings for translations, use - default messages, removed trailing whitespace. - -2004-07-19 Bill Skaggs - - * plug-ins/Lighting/lighting_ui.c: added ability to save and load - presets for lights. - -2004-07-19 Shlomi Fish - - * plug-ins/gimpressionist/orientation.c: normalized some variables - in the module and fixed some indentation. - -2004-07-19 Helvetix Victorinox - - * app/composite/gimp-composite-mmx.c - (gimp_composite_addition_rgba8_rgba8_rgba8_mmx) - * app/composite/gimp-composite-mmx.c - (gimp_composite_burn_rgba8_rgba8_rgba8_mmx) - * app/composite/gimp-composite-x86.h: Correction of clobbered - register lists, as additional progress against bug #147013. - -2004-07-19 Michael Natterer - - * app/core/gimpmarshal.list: removed unused VOID:UINT,STRING. - -2004-07-19 Michael Natterer - - * app/gui/file-open-location-dialog.c - (file_open_location_dialog_show): added the "web" icon left of - label & entry. - -2004-07-19 Michael Natterer - - * app/paint/gimppaintcore.h: removed enum GimpPaintCoreState. - - * app/paint/paint-enums.h: added enum GimpPaintState (with values - that have a name space). - - * app/paint/gimppaintcore.[ch] - * app/paint/gimpairbrush.c - * app/paint/gimpbrushcore.c - * app/paint/gimpclone.c - * app/paint/gimpconvolve.c - * app/paint/gimpdodgeburn.c - * app/paint/gimperaser.c - * app/paint/gimpink.c - * app/paint/gimppaintbrush.c - * app/paint/gimppaintcore-stroke.c - * app/paint/gimpsmudge.c - * app/tools/gimppainttool.c: changed accordingly. - - * app/tools/gimpinktool.c: removed unused #include. - -2004-07-19 Sven Neumann - - * app/core/gimpchannel-combine.c (gimp_channel_combine_ellipse): - moved variable declarations to the scope they are being used in, - removed trailing whitespace, minor cleanups. - -2004-07-19 Bill Skaggs - - * app/core/gimpchannel-combine.c: put in two lines accidentally - omitted in previous change, improve doc comment. - -2004-07-19 Michael Natterer - - * libgimpbase/gimpwin32-io.h: added copyright header, added - #defines for access(), F_OK, R_OK and X_OK. - - * app/core/gimpdata.c: include the above instead of defining - the workarounds here. - - * app/base/tile-swap.c - * app/config/gimpconfig-dump.c - * libgimpthumb/gimpthumb-utils.c - * libgimpthumb/gimpthumbnail.c: for consistency, #include - gimpwin32-io.h with "" instead of <>. - -2004-07-19 Michael Natterer - - * app/core/gimpchannel-combine.c (gimp_channel_combine_ellipse): - comments not intended for gtk-doc must not start with '/**'. - -2004-07-19 Michael Natterer - - * app/plug-in/plug-in.h (struct _PlugIn): removed obsolete - compile-time check for GLIB >= 2.3.5. - -2004-07-19 Shlomi Fish - - * ChangeLog: Fixed a copy-and-paste error with the dates of my commits. - * plug-ins/gimpressionist/ppmtool.c: removed a few commented-out - asserts, and the function that was used to implement them. - -2004-07-19 Michael Natterer - - * app/widgets/widgets-types.h: reordered and commented to match - API docs. - -2004-07-19 Sven Neumann - - * plug-ins/imagemap/imap_browse.[ch]: renamed struct member - file_selection to file_chooser. - -2004-07-19 Michael Natterer - - * app/config/config-types.h: removed GimpConfigInterface typedef, - added comments to typedefs which don't belong here. - - * app/config/gimpconfig.h: added GimpConfigInterface typedef. - - * app/core/core-types.h - * app/display/display-types.h: added commented out typedefs for - types that live in config-types.h for obscure reasons. - - * app/core/core-types.h: reordered stuff to match the order in the - API docs (makes keeping stuff in sync much easier). - -2004-07-19 Shlomi Fish - - * plug-ins/gimpressionist/repaint.c: replaced a few if's+destructors - pairs for ppm_ with just the destructors. - -2004-07-19 Shlomi Fish - - * plug-ins/gimpressionist/repaint.c: normalized some identifiers of - repaint.c, and corrected some indentation there. - -2004-07-18 Bill Skaggs - - * app/core/gimpchannel-combine.c: improve anti-aliasing for - elliptical selections, as described in bug #147836. - -2004-07-18 Sven Neumann - - * app/composite/gimp-composite-mmx.h: don't start a comment with - /** unless it's meant to be parsed by gtk-doc. - - * app/actions/Makefile.am: - * app/actions/file-dialog-commands.[ch]: removed, not used any - longer. - -2004-07-18 Philip Lafleur - - * app/paint/gimpink-blob.c (blob_make_convex): Check if the - array index is legal before using it, not the other way around. - Fixes bug #144856. - -2004-07-17 Philip Lafleur - - * plug-ins/common/polar.c (dialog_update_preview): Fixed a - write to unallocated memory that was causing crashes in various - spots. - -2004-07-17 Philip Lafleur - - * plug-ins/common/polar.c (polarize_func): moved array - initialization out of variable declaration. Fixes bug #147799. - -2004-07-17 Michael Natterer - - * app/widgets/gimphelp-ids.h: added the removed help IDs back. - - * app/widgets/gimpfileprocview.[ch]: cache all file_procs' help - IDs and added gimp_file_proc_view_get_help_id() which returns the - selected item's help ID. - - * app/widgets/gimpfiledialog.c: added a custom help func which - shows the help for the selected file_proc if the proc_view has the - focus. - -2004-07-17 Sven Neumann - - * app/actions/file-actions.c (file_actions): use GIMP_STOCK_WEB - for "file-open-location". - - * app/widgets/gimpfiledialog.c: create the scrolled window with - shadow_type GTK_SHADOW_IN. - - * app/widgets/gimpfileprocview.c (gimp_file_proc_view_new): skip - procedures that register a prefix (the URL loader). - - * app/widgets/gimphelp-ids.h: removed help IDs that used to be - used from the file-open and file-save menus. - - * plug-ins/common/xwd.c (query): "X window dump" seems to be more - appropriate than "X window image". - -2004-07-17 Sven Neumann - - * app/actions/Makefile.am - * app/actions/file-dialog-actions.[ch] - * app/actions/file-open-actions.[ch] - * app/actions/file-save-actions.[ch]: these aren't needed any - longer. - - * app/actions/actions.c: changed accordingly. - - * app/menus/Makefile.am - * app/menus/file-dialog-menu.[ch] - * app/menus/file-open-menu.[ch] - * app/menus/file-save-menu.[ch]: these aren't needed any longer. - - * app/menus/menus.c: changed accordingly. - - * menus/Makefile.am - * menus/file-open-menu.xml - * menus/file-save-menu.xml: these are also not needed any longer. - -2004-07-17 Philip Lafleur - - * plug-ins/bmp/bmpwrite.c (WriteImage): Applied a patch from - Brion Vibber that fixes corruption when saving RLE-encoded - BMPs on big endian hosts. Fixes bug #147759. - -2004-07-17 Shlomi Fish - - * plug-ins/gimpressionist/: normalized the identifiers of - general.c and general.h. Also, renamed a callback from _store - to simply _callback to avoid confusion with the _store methods. - Some of the member variables of the pcvals struct were changed - as a result. - -2004-07-16 Helvetix Victorinox - - * app/composite/gimp-composite-mmx.[ch] - * app/composite/gimp-composite-sse.[ch] - * app/composite/gimp-composite-sse2.[ch]: - - We've had trouble compiling with the Intel compiler which - identifies itself as GCC, but doesn't support the same extended - assembly features/misfeatures as GCC. With the help of the Intel - compiler group, we've determined that the Intel compiler can be - identified at compile time by the definition of the preprocessor - variable __INTEL_COMPILER. - - These changes make all of the assembly code currently written to - simply avoid the Intel compiler. - - This is an interim solution to get a build working despite the - Intel compiler. A more correct solution has been identified, see - the discussion of bug #147013 for more information. - -2004-07-17 Sven Neumann - - * app/xcf/xcf.c (xcf_init): also register the internal XCF - handlers according to the new scheme. - - * plug-ins/common/Makefile.am - * plug-ins/common/plugin-defs.pl - * plug-ins/common/hrz.c: removed the HRZ file plug-in since it - doesn't seem to be very useful. - -2004-07-17 Sven Neumann - - * app/plug-in/plug-ins.c (plug_ins_temp_proc_def_add) - (plug_ins_init_file): use g_slist_prepend() instead of - g_slist_append(). - - * plug-ins/common/url.c (query): ported to the new PDB registration - scheme. - -2004-07-16 Sven Neumann - - * app/plug-in/plug-ins.c (plug_ins_init): sort the file procedures - by their menu labels. - - * app/widgets/gimpfileprocview.c: removed the sort function here. - -2004-07-16 Sven Neumann - - * app/widgets/Makefile.am - * app/widgets/widgets-types.h - * app/widgets/gimpfileprocview.[ch]: added new widget that offers - a treeview on file procedures. - - * app/widgets/gimpfiledialog.[ch]: replaced the file type option - menu with the new GimpFileProcView widget. - (gimp_file_dialog_set_image): reset the file type to Automatic - (fixes bug #141535). - - * app/actions/file-commands.c - * app/gui/file-open-dialog.[ch] - * app/gui/file-save-dialog.[ch]: changed accordingly. - - * plug-ins/common/bz2.c - * plug-ins/common/gz.c: don't register "xcf.gz" and "xcf.bz2" - extension. It's redundant and breaks the code that sets the - extension from the selected file-type. - - * plug-ins/common/dicom.c: register a shorter menu label. - - * plug-ins/common/gbr.c - * plug-ins/common/gih.c - * plug-ins/common/pat.c - * plug-ins/common/url.c: register stock icons. - -2004-07-16 Bill Skaggs - - * plug-ins/Lighting/lighting_main.[ch] - * plug-ins/Lighting/lighting_preview.[ch] - * plug-ins/Lighting/lighting_shade.c - * plug-ins/Lighting/lighting_ui.c: Made this plug-in support - multiple light sources; implemented three, architecture now - supports any number. Changed material properties to more intuitve - names; added "metallic" property. Cleaned out some unused, - commented-out code. - -2004-07-16 Michael Natterer - - * tools/pdbgen/pdb.pl: include "libgimpbase/gimpbase.h" instead of - "libgimpbase/gimpparasite.h" for getting the GimpParasite type. - - * tools/pdbgen/app.pl - * tools/pdbgen/pdb/drawable.pdb - * tools/pdbgen/pdb/edit.pdb - * tools/pdbgen/pdb/gradients.pdb - * tools/pdbgen/pdb/guides.pdb - * tools/pdbgen/pdb/image.pdb: removed redundant #includes. - - * tools/pdbgen/pdb/plug_in.pdb: standardized "success" logic. - Consistently fail if there is no currently queried plugin. - - * app/pdb/*.c: regenerated. - -2004-07-16 Michael Natterer - - * app/display/gimpdisplayshell-transform.c: made gtk-doc even - happier; clarified meaning of the "use_offsets" parameter. - -2004-07-16 Sven Neumann - - * app/core/gimpdata.c: - * app/display/gimpcanvas.c: - * app/display/gimpdisplayshell.c - * app/display/gimpdisplayshell-transform.c: corrected API - documentation, removed trailing whitespace. - - Please do always build the documentation if you add or change any - gtk-doc comments. - -2004-07-15 Bill Skaggs - - * app/display/gimpcanvas.c: - * app/display/gimpdisplayshell-transform.c: added gtk-doc - comments for all public functions that lack them. - - * app/display/gimpdisplayshell.c: added a couple of - gtk-doc comments. - -2004-07-15 Bill Skaggs - - * app/core/gimpdata.c: added gtk-doc comments for - public functions. - -2004-07-15 Shlomi Fish - - * plug-ins/gimpressionist/: normalized the identifiers of - paper.c and paper.h. Made one variable local to the function - instead of module static. - -2004-07-15 Shlomi Fish - - * plug-ins/gimpressionist/: normalized the ppmtools.c and - ppmtool.h identifiers. Also fixed some (but not all) of the - syntax. - -2004-07-15 Philip Lafleur - - * plug-ins/winicon/icoload.c: - * plug-ins/winicon/icosave.c: Applied a patch from Brion Vibber - that fixes byte-swapping on big endian hosts. Fixes bug #147610. - -2004-07-15 Sven Neumann - - * plug-ins/helpbrowser/dialog.c - * plug-ins/helpbrowser/uri.c: don't warn if no help pages are - installed and the Home button is clicked. - -2004-07-15 Michael Natterer - - * app/file/file-open.c (file_open_layer): don't crash if no - layer or only one layer is visible. Fixes bug #143804. - - * app/app_procs.c (app_run): fixed log domain registration. - -2004-07-15 Michael Natterer - - * app/core/gimpviewable.[ch]: corrected API docs and fixed - function parameter names to silent gtk-doc warnings. - -2004-07-15 Michael Natterer - - * app/app_procs.c (app_run): register a log handler for the - "Gimp-Menus" domain. - -2004-07-15 Philip Lafleur - - * plug-ins/common/mng.c: cleanup. - -2004-07-15 Bill Skaggs - - * app/core/gimpviewable.c: added gtk-doc comments for public - functions. - -2004-07-15 Michael Natterer - - * app/actions/file-commands.h: reordered to match the .c file. - - * app/core/gimpitem.c - * app/vectors/gimpvectors-import.c: fixed API docs. - -2004-07-14 Philip Lafleur - - * plug-ins/common/png.c: - * plug-ins/common/mng.c: Fixed erroneously reported warning - message when saving indexed layers with an alpha channel but - no transparent pixels. - -2004-07-14 Sven Neumann - - * app/app_procs.c (app_run): register a log handler for the - "Gimp-Actions" domain. - -2004-07-14 Bill Skaggs - - * devel-docs/objects.txt: . . . and removed because it is - redundant with devel-docs/app/app.hierarchy. - -2004-07-14 Bill Skaggs - - * devel-docs/objects.txt: added file containing a map of Gimp's - GObject hierarchy . - -2004-07-14 Michael Natterer - - * app/display/gimpstatusbar.[ch]: massively changed: removed - message_ids, the message mem chunk and all signals. Added new - function gimp_statusbar_replace() which updates a message without - moving it to the top of the stack. Fixes bug #120175. - - * app/display/gimpdisplayshell-title.[ch]: renamed - gimp_display_shell_update_title() to - gimp_display_shell_title_update() and switched from pop()/push() - to replace() so the title message keeps its place in the stack. - Added new function gimp_display_shell_title_init() which push()es - the title message to the stack. - - * app/display/gimpdisplayshell.c (gimp_display_shell_new): call - gimp_display_shell_title_init() so the "title" message is at the - bottom of the stack. - - * app/display/gimpdisplayshell-callbacks.c - * app/display/gimpdisplayshell-handlers.c: changed accordingly. - -2004-07-14 Sven Neumann - - * plug-ins/script-fu/script-fu-console.[ch] - * plug-ins/script-fu/script-fu.c - * plug-ins/script-fu/siod-wrapper.[ch] - * plug-ins/script-fu/siod/slib.c: applied a patch from Kevin - Cozens that removes an unneeded pipe which was causing problems - on long output from the SIOD interpreter (bug #139200). Also - shortened the welcome message. - -2004-07-14 Sven Neumann - - * plug-ins/pagecurl/pagecurl.c: GUI polishing. - -2004-07-14 Shlomi Fish - - * plug-ins/gimpressionist/: Added more underscores to identifiers. - Fixed some of the style issues (added whitespace before the '(' in - function calls). - -2004-07-14 Philip Lafleur - - * plug-ins/common/mng.c: Now writes a global palette chunk, and - empty palette chunks for the frames that use it. This saves a - bit of diskspace. - -2004-07-14 Michael Natterer - - * app/core/gimpimage.c: added properties "gimp", "id", "width", - "height" and "base-type". Moved all code from gimp_image_new() - to GObject::constructor(). - - * app/core/gimpimage-convert.c - * app/core/gimpimage-crop.c - * app/core/gimpimage-resize.c - * app/core/gimpimage-rotate.c - * app/core/gimpimage-scale.c - * app/core/gimpimage-undo-push.c: set "width", "height" and - "base-type" with g_object_set() so "notify" is emitted on the - properties. - - * app/core/gimpimage-undo.c (gimp_image_undo_pop_stack): - freeze/thaw property notifications around undoing/redoing so they - are not emitted in the middle of the undo operation. - -2004-07-14 Michael Natterer - - * app/core/gimpitem.c: converted tabs to spaces, cleanup, - reviewed new API docs. - -2004-07-14 Sven Neumann - - * plug-ins/common/tiff.c: applied a patch done by Brion Vibber - and Philip Lafleur that fixes loading of CMYK TIFF images on - big-endian hardware (bug #147328). - -2004-07-14 Philip Lafleur - - * plug-ins/common/mng.c (respin_cmap): Properly check the return - value of find_unused_ia_color(). The plugin will now save indexed - MNGs correctly; fixes bug #139947. Also converted tabs to spaces. - -2004-07-14 Michael Natterer - - Code review & cleanup: - - * app/config/gimpguiconfig.[ch]: removed transparency-size, - transparency-type and snap-distance properties... - - * app/config/gimpdisplayconfig.[ch]: ...and added them here. - - * app/display/gimpdisplayshell.c - * app/tools/gimpmovetool.c: changed accordingly. - - * app/core/gimpimage-scale.[ch] (gimp_layer_scale_check): added a - "max_memsize" parameter instead of looking it up in GimpGuiConfig. - - * app/actions/image-commands.c: changed accordingly. - - * app/core/gimparea.c - * app/core/gimpdrawable.c: converted tabs to spaces, cleanup. - - * app/core/gimpprojection.[ch]: renamed IdleRenderStruct to - GimpProjectionIdleRender, reordered functions, cleanup. - - * app/display/gimpdisplay-handlers.c - * app/display/gimpdisplay.c: removed unused #includes. - - * app/display/gimpdisplayshell.[ch] - * app/display/gimpdisplayshell-close.c: renamed - shell->warning_dialog to shell->close_dialog, some random - cleanups. - - * app/display/gimpdisplayshell-handlers.c - * app/widgets/gimpselectioneditor.c: minor coding style cleanup. - -2004-07-13 Bill Skaggs - - * app/core/gimpitem.c: added documentation comments to some - of the functions. - -2004-07-14 Michael Natterer - - * app/display/Makefile.am - * app/display/gimpdisplayshell-close.[ch]: new files for - gimp_display_shell_close() and its dialog & callback. - - * app/display/gimpdisplayshell.[ch]: removed from here. - - * app/actions/view-actions.c (view_close_view_cmd_callback): - changed accordingly. - -2004-07-14 Sven Neumann - - * plug-ins/pagecurl/pagecurl.c: code cleanup. Use enums instead of - a plethora of booleans. Added some macros for readability. Allow - to use a reversed gradient for colorizing the curl. - -2004-07-14 Michael Natterer - - * app/core/Makefile.am - * app/core/core-types.h - * app/core/gimppickable.[ch]: new interface which has - get_image_type(), get_tiles() and get_color_at() methods. - - * app/core/gimpdrawable.[ch] - * app/core/gimpimagemap.[ch] - * app/core/gimpprojection.[ch]: implement GimpPickableInterface - and removed public get_colot_at() functions. - - * app/core/gimpimage-pick-color.[ch]: removed typedef - GimpImagePickColorFunc and gimp_image_pick_color_by_func(). Use - gimp_pickable_pick_color() instead. - - * app/core/gimpimage-contiguous-region.c - * app/core/gimpimage-crop.c - * app/gui/info-window.c - * app/paint/gimpconvolve.c - * app/paint/gimpsmudge.c - * app/tools/gimpbycolorselecttool.c - * app/tools/gimpimagemaptool.c - * app/widgets/gimpselectioneditor.c: use GimpPickable functions - instead of the various get_color_at() functions. Simplifies code - which has a "sample_merged" boolean. Various cleanups. - -2004-07-13 Shlomi Fish - - * plug-ins/gimpressionist/presets.c: Added underscores between - words in function names according to the GIMP's (and common - sense) convention. - -2004-07-13 Shlomi Fish - - * plug-ins/gimpressionist/: Moved the global declarations of - img_has_alpha and create_colorpage to more specialized headers. - -2004-07-13 Shlomi Fish - - * plug-ins/gimpressionist/: Added the paper.h header for the functions - defined in the paper.c module. (thus removing more declarations - from gimpressionist.h) - -2004-07-13 Bill Skaggs - - * plug-ins/gfig/gfig-dialog.c - * plug-ins/gfig/gfig-preview.[ch} - * plug-ins/gfig/gfig.h: Made Cancel work properly. Moved "show grid", - "snap to grid", and "show image" checkbuttons back onto main - interface. Eliminated GtkPreview and removed undef of - GTK_DISABLE_DEPRECATED from gfig-preview.c. Removed some - unused code. - -2004-07-13 Sven Neumann - - * plug-ins/gflare/gflare.c (preview_handle_idle): use - gtk_widget_queue_draw_area() instead of the deprecated - gtk_widget_draw() routine. - - * plug-ins/gimpressionist/orientmap.c - * plug-ins/gimpressionist/paper.c - * plug-ins/gimpressionist/sizemap.c: use gtk_widget_queue_draw() - instead of the deprecated gtk_widget_draw() routine. - -2004-07-13 Shlomi Fish - - * plug-ins/gimpressionist/preview.c - * plug-ins/gimpressionist/sizemap.c: - eliminated two compile-time warnings. - -2004-07-13 Michael Natterer - - Added a GimpProjection object which maintains the idle projection - logic that was in GimpDisplay and takes care of constructing the - projection even without any display open. Makes color picking and - other reads from the projection work without display and fixes the - major bug that we were constructing the projection n times (!) - for n displays. - - * app/core/Makefile.am - * app/core/gimpimage-projection.[ch]: removed. - - * app/core/core-types.h - * app/core/gimpmarshal.list - * app/core/gimparea.[ch] - * app/core/gimpprojection.[ch] - * app/core/gimpprojection-construct.[ch]: new files assembled from - the pieces of gimpdisplay.c and gimpimage-projection.c. - - * app/core/gimpimage.[ch]: create a GimpProjection. - Removed explicit projection realloc calls because the projection - connects to the relevant GimpImage signals now. - Added gimp_image_coords_in_active_drawable(). - - * app/display/Makefile.am - * app/display/gimpdisplay-area.[ch]: removed. - - * app/display/gimpdisplay.[ch]: stripped away the idle render stuff - and just keep a list of update_areas which is painted on flush(). - Removed gimp_display_coords_in_active_drawable(). - - * app/display/gimpdisplay-foreach.[ch]: removed - gimp_display_finish_draw(). - - * app/core/gimpchannel.c - * app/core/gimpimage-contiguous-region.c - * app/core/gimpimage-convert.c - * app/core/gimpimage-crop.c - * app/core/gimpimage-merge.c - * app/core/gimpimage-pick-color.c - * app/core/gimpimage-scale.c - * app/core/gimppalette-import.c - * app/display/gimpdisplay-handlers.c - * app/display/gimpdisplayshell-render.c - * app/display/gimpdisplayshell.c - * app/gui/info-window.c - * app/tools/gimpbucketfilltool.c - * app/tools/gimpbycolorselecttool.c - * app/tools/gimpclonetool.c - * app/tools/gimpcolortool.c - * app/tools/gimpeditselectiontool.c - * app/tools/gimpfliptool.c - * app/tools/gimpimagemaptool.c - * app/tools/gimpiscissorstool.c - * app/tools/gimppainttool.c - * app/tools/gimpselectiontool.c - * app/tools/gimptransformtool.c - * app/widgets/gimpselectioneditor.c: changed accordingly. - -2004-07-13 Sven Neumann - - * libgimpwidgets/gimppixmap.[ch]: declared GimpPixmap as deprecated. - - * libgimpwidgets/gimpwidgets.[ch]: ditto for gimp_pixmap_button_new(). - - * plug-ins/Lighting/ChangeLog: removed outdated and unused ChangeLog. - - * plug-ins/Lighting/Makefile.am - * plug-ins/Lighting/*.xpm: removed XPM files... - - * configure.in - * plug-ins/Lighting/images: ... and added them as PNG images here. - These should be redone with antialiased edges. - - * plug-ins/Lighting/lighting_stock.[ch] - * plug-ins/Lighting/lighting_ui.c: register stock icons and use - those instead of GimpPixmaps. - - * plug-ins/MapObject/Makefile.am - * plug-ins/MapObject/*.xpm: removed duplicated XPM files. - - * plug-ins/MapObject/mapobject_stock.[ch]: register stock icons - reusing the generated header from the Lighting plug-in. - - * plug-ins/MapObject/mapobject_ui.c: use them. - - * plug-ins/pagecurl/pagecurl.c: undef GIMP_DISABLE_DEPRECATED until - GimpPixmap has been replaced here as well. - -2004-07-13 Shlomi Fish - - * plug-ins/gimpressionist/presets.c: fixed bug #147483 (gimpressionist - will delete global presets if the user running GIMP has priviliges to - do so). This was done by creating a function to check if a preset is - global, and by making sure the delete button is in-sensitive when - this is the case. - -2004-07-13 Sven Neumann - - * libgimpwidgets/gimpcolorbutton.c - * libgimpwidgets/gimpcolornotebook.c - * libgimpwidgets/gimpcolorscale.c - * libgimpwidgets/gimpcolorscales.c - * libgimpwidgets/gimpcolorselect.c - * libgimpwidgets/gimpcolorselection.c - * libgimpwidgets/gimpframe.c - * libgimpwidgets/gimppickbutton.c - * libgimpwidgets/gimpunitmenu.c: some code review and cosmetics. - -2004-07-13 Shlomi Fish - - * plug-ins/gimpressionist/*.[ch]: normalized some of brush.c's - identifiers (= variable names and function name) - -2004-07-13 Sven Neumann - - * app/core/gimp-utils.c (gimp_g_value_get_memsize): handle NULL - string values. - -2004-07-13 Sven Neumann - - * plug-ins/common/jpeg.c: override the output_message error - handler in order to propagate warnings to the user interface - (related to bug #145212). - -2004-07-13 Sven Neumann - - * app/core/gimp-utils.[ch]: added new function - gimp_g_value_get_memsize() that attempts to calculate the memory - requirements for a GValue. - - * app/text/gimptextundo.c (gimp_text_undo_get_memsize): use the - new function to obtain a better estimate for the size of the text - undo. - -2004-07-13 Sven Neumann - - * app/tools/gimptexttool.c (gimp_text_tool_create_layer): plugged - a tiny memory leak. - -2004-07-13 Sven Neumann - - * app/core/gimpimage-undo.c: resurrected some bit-rotting debug - code. Might become useful one day. - -2004-07-13 Sven Neumann - - * autogen.sh: when automake 1.8 is being used, require at least - version 1.8.3. Earlier versions of the automake-1.8 series don't - handle gimp-console correctly. - -2004-07-13 Michael Natterer - - * app/config/gimpconfig-dump.c - * app/display/gimpdisplayshell-title.c - (gimp_display_shell_format_title): applied patch from Dave Neary - which adds %B which expands to (modified) if the image is - dirty. Also added %A which expands to (clean) because we also have - a short indicator for the clean image. Fixes bug #130943. - -2004-07-13 Sven Neumann - - * app/Makefile.am: removed hack for gimp-console compilation. - automake seems to handle it correctly all by itself. - -2004-07-12 Michael Schumacher - - * app/app_procs.c: added - #ifdef G_OS_WIN32 - #include - #endif - -2004-07-12 Michael Natterer - - * app/widgets/gimpbufferview.[ch]: added a preview of the global - buffer. - -2004-07-12 Sven Neumann - - * app/Makefile.am: make sure that gimp-console is enabled for - 'make dist'. Use it to dump the system gimprc and gimprc man-page. - -2004-07-12 Michael Natterer - - * app/text/gimptextundo.[ch]: removed member "guint time"... - - * app/core/gimpundo.[ch]: ...and added it here. - - * app/tools/gimptexttool.c (gimp_text_tool_apply): changed - accordingly. Reordered undo compression code to look like other - pieces of code which do undo compression. - -2004-07-12 Michael Natterer - - * app/core/gimpundo.[ch] - * app/core/gimpitemundo.[ch] - * app/text/gimptextundo.[ch]: removed all _new() functions and - added properties and GObject::constructor() implementations - instead. - - * app/core/gimpimage-undo.[ch] (gimp_image_undo_push): added - "GType undo_gtype" parameter and allow to pass name-value pairs as - "...". Use the new GParameter utility functions to construct the - appropriate undo step with g_object_newv(). - - (gimp_image_undo_push_item): removed. - - (gimp_image_undo_push_undo): removed. Merged its code back into - gimp_image_undo_push(), where it originally came from. - - * app/core/gimpimage-undo-push.c - * app/core/gimpundostack.c - * app/paint/gimppaintcore-undo.c - * app/tools/gimptransformtool-undo.c - * app/widgets/gimpundoeditor.c: changed accordingly. - -2004-07-12 Sven Neumann - - * plug-ins/gfig/gfig-dialog.c - * plug-ins/gfig/gfig-preview.c - * plug-ins/gfig/gfig-style.c - * plug-ins/gfig/gfig.c: some include cleanups. Use - libgimpbase/gimpwin32-io.h instead of defining W_OK explicitely. - Don't undef GTK_DISABLE_DEPRECATED except for gfig-preview.c. - -2004-07-12 Michael Natterer - - * plug-ins/script-fu/scripts/round-corners.scm: applied patch from - Dave Neary that changes the behavior from undo disable/enable to - using an undo group if the script doesn't work on a copy of the - image. Fixes bug #146344. - -2004-07-12 Michael Natterer - - * menus/toolbox-menu.xml.in: applied patch from Brion Vibber - which adds /Acquire/Paste as new. Fixes bug #147358. - -2004-07-12 Michael Natterer - - * app/core/gimp-modules.c: don't do anything if gimp->no_interface - is TRUE. - -2004-07-12 Michael Natterer - - Made the gimp-console binary compile. - Finishes core/GUI separation and fixes bug #71514: - - * configure.in: removed the crazy-hacker warning for - --enable-gimp-console. - - * app/Makefile.am: for gimp-console, copy app_procs.c to - app_procs_console.c and compile it instead of app_procs.c with - -DGIMP_CONSOLE_COMPILATION - - * app/app_procs.[ch]: added some #ifndef GIMP_CONSOLE_COMPILATION - to skip GUI stuff for the gimp-console case. - Renamed app_gui_libs_init() to app_libs_init(), renamed - app_gui_abort() to app_abort() and added app_exit() so everything - that needs #ifdefs lives here now. - - * app/main.c: changed accordingly. - - * app/gui/gui.c (gui_abort): really abort (call exit()). - -2004-07-12 Sven Neumann - - * INSTALL: made the suggestion to use binary packages more - prominent, mention --enable-gimp-console. - -2004-07-12 Sven Neumann - - * app/sanity.[ch]: removed the gtk+ sanity check here ... - - * app/gui/gui.c: ... and do it here from gui_libs_init(). - - * app/main.c: changed accordingly. - -2004-07-12 Sven Neumann - - * app/app_procs.s: don't use gtk_main() / gtk_main_quit() but run - our own main-loop like we already used to do when being run - non-interactively. - -2004-07-12 Michael Natterer - - * app/widgets/gimpdialogfactory.c - (gimp_dialog_factories_set_busy_foreach) - (gimp_dialog_factories_unset_busy_foreach): set/unset the busy - cursor on all windows which have widget->window, not only for - those which are GTK_WIDGET_VISIBLE. Fixes stale busy cursors when - dialogs are hidden while the busy cursor is active and later shown - again. - -2004-07-12 Michael Natterer - - * app/display/gimpdisplay.c: added an "id" CONSTRUCT_ONLY - property. Some minor cleanup. - -2004-07-12 Michael Natterer - - * app/core/Makefile.am - * app/core/gimp-gui.[ch]: new files defining a GimpGui vtable - struct and contianing all the vtable wrapper functions. Reordered - and renamed some functions for consistency. - - * app/core/gimp.[ch]: removed all the vtable code. - - * app/gui/gui-vtable.c: changed accordingly. - -2004-07-12 Sven Neumann - - * app/display/gimpdisplay-foreach.c - (gimp_displays_get_dirty_images): remove images from the - container when they become clean. Should move to the Gimp object. - - * app/gui/quit-dialog.c: some cosmetic changes. - -2004-07-12 Sven Neumann - - * plug-ins/common/tiff.c: applied a patch from Brion Vibber that - sets the 'Save color values from transparent pixels' insensitive - when there's no alpha channel. - -2004-07-11 Hans Breuer - - * **/makefile.msc : updated - app/actions/makefile.msc app/menus/makefile.msc : (new files) - app/actions/Makefile.msc app/menus/Makefile.am : added to EXTRA_DIST - - * libgimpbase/gimputils.c libgimpwidgets/gimpmemsizeentry.c - app/widgets/gimppropwidgets.c : bumped compiler version check, - msvc6 still can't cast from unsigned __int64 to double - - * app/actions/debug-actions.c : only use debug_*_callback - and thus debug_action if ENABLE_DEBUG_MENU - - * app/core/gimpalette-import.c : added gimpwin32-io.h - - * plug-ins/common/convmatrix.c : s/snprintf/g_snprintf/ - - * plug-ins/common/screenshot.c : make it compile with msvc, - but still no win32 specific implementation ... - -2004-07-11 Bill Skaggs - - * plug-ins/gfig/gfig-dobject.h: fix commit error that - broke build. - -2004-07-11 Bill Skaggs - - * plug-ins/gfig/gfig-dialog.c - * plug-ins/gfig/gfig-dobject.[ch] - * plug-ins/gfig/gfig.c: added buttons to select an object, and - raise or lower the selected object; also a few minor cleanups. - -2004-07-11 Philip Lafleur - - * app/widgets/gimpdevices.c (gimp_devices_check_change): Applied a - patch from Robert Ögren, moved here from toolbox_check_device(). - Only change devices if the event came from a widget that accepts - extension events. Fixes bug #115774. - -2004-07-11 Michael Natterer - - * app/core/gimp-utils.[ch] (gimp_parameters_append) - (gimp_parameters_append_valist) - (gimp_parameters_free): new utility functions which create and - destroy GParameter arrays for g_object_newv(). - - * app/gui/gui-vtable.c (gui_pdb_dialog_new): use them. - -2004-07-10 Michael Natterer - - Removed any remaining GUI dependency from the PDB wrappers: - - * app/core/gimp.[ch]: added vtable entries for the display and - help stuff. - - * app/widgets/gimphelp.[ch]: renamed gimp_help() to - gimp_help_show(). - - * app/gui/gui-vtable.c: implement the new display and help vtable - entries. - - * tools/pdbgen/pdb.pl - * tools/pdbgen/pdb/display.pdb - * tools/pdbgen/pdb/help.pdb: use the new functions of the Gimp - object instead of using stuff from display/ and widgets/. - - * tools/pdbgen/app.pl: removed bad hacks which enabled including - stuff from gui/, display/ and widgets/. - - * app/Makefile.am: link widgets-enums.o, display-enums.o and - gimpdisplayoptions.o into the gimp-console binary because they are - needed for the config system and don't depend on any GUI stuff. - - * app/pdb/Makefile.am: s/GTK_CFLAGS/GDK_PIXBUF_CFLAGS/ - - * app/pdb/display_cmds.c - * app/pdb/help_cmds.c: regenerated. - -2004-07-10 Sven Neumann - - * app/gui/quit-dialog.c (quit_dialog_new): let the labels line-wrap. - -2004-07-10 Sven Neumann - - * app/display/gimpdisplay-foreach.[ch]: added new function - gimp_displays_get_dirty_images(). - - * app/gui/quit-dialog.c: show a container treeview of all dirty - images in the quit dialog. Still work in progress... - -2004-07-09 Bill Skaggs - - * gimp/plug-ins/gfig/gfig-circle.c - * gimp/plug-ins/gfig/gfig-dialog.c - * gimp/plug-ins/gfig/gfig-dobject.c - * gimp/plug-ins/gfig/gfig-ellipse.c - * gimp/plug-ins/gfig/gfig-poly.c - * gimp/plug-ins/gfig/gfig-preview.c - * gimp/plug-ins/gfig/gfig-star.c - * gimp/plug-ins/gfig/gfig-style.c - * gimp/plug-ins/gfig/gfig-style.h - * gimp/plug-ins/gfig/gfig.c - * gimp/plug-ins/gfig/gfig.h: Made FG, BG, and pattern fill work for - fillable objects; other miscellaneous cleanups and minor fixes. - -2004-07-09 Sven Neumann - - * app/gui/gui.c: removed the quit dialog code here. - - * app/gui/Makefile.am - * app/gui/quit-dialog.[ch]: added new files that hold the old code - for now. - -2004-07-09 Michael Natterer - - * app/pdb/procedural_db.c: #include instead of - . - -2004-07-09 Michael Natterer - - * app/gui/Makefile.am - * app/gui/brush-select.[ch] - * app/gui/font-select.[ch] - * app/gui/gradient-select.[ch] - * app/gui/palette-select.[ch] - * app/gui/pattern-select.[ch]: removed... - - * app/widgets/Makefile.am - * app/widgets/widgets-types.h - * app/widgets/gimppdbdialog.[ch] - * app/widgets/gimpdataselect.[ch] - * app/widgets/gimpbrushselect.[ch] - * app/widgets/gimpgradientselect.[ch] - * app/widgets/gimppaletteselect.[ch] - * app/widgets/gimppatternselect.[ch] - * app/widgets/gimpfontselect.[ch]: ...and added here as a - hierarchy of widgets. - - * app/widgets/gimpdatafactoryview.h: removed typdef - GimpDataEditFunc, it's in widgets-types.h now. - - * app/gui/convert-dialog.c: changed accordingly. - - * app/core/gimp.[ch]: added vtable entries for creating, closing - and setting PDB dialogs. - - * app/gui/gui-vtable.c: implement the vtable entries using the new - widgets. - - * tools/pdbgen/pdb/brush_select.pdb - * tools/pdbgen/pdb/font_select.pdb - * tools/pdbgen/pdb/gradient_select.pdb - * tools/pdbgen/pdb/palette_select.pdb - * tools/pdbgen/pdb/pattern_select.pdb: use the new functions of - the Gimp object to create / manage the selection dialogs. The - generated files don't depend on GUI stuff any longer. - - * app/pdb/brush_select_cmds.c - * app/pdb/font_select_cmds.c - * app/pdb/gradient_select_cmds.c - * app/pdb/palette_select_cmds.c - * app/pdb/pattern_select_cmds.c: regenerated. - -2004-07-09 Sven Neumann - - * app/gui/file-save-dialog.c (file_save_overwrite): improved text - of the dialog. - -2004-07-09 Sven Neumann - - * libgimpwidgets/gimpdialog.c (gimp_dialog_class_init): document - that "help-func" and "help-id" properties have been added for 2.2. - -2004-07-09 Sven Neumann - - * app/widgets/gimphistogrameditor.c - (gimp_histogram_editor_menu_update): reverted my last change. - (gimp_histogram_editor_item_visible): fix the problem here instead. - -2004-07-08 Michael Natterer - - * libgimpwidgets/gimpdialog.c: removed "role" property because - GtkWindow has an equivalent property now. Added "help-func" and - "help-id" construct properties. - - * app/widgets/gimptexteditor.c - * app/widgets/gimptooldialog.c - * app/widgets/gimpviewabledialog.c: removed calls to - gimp_help_connect() and pass help_func and help_id to - g_object_new(). - -2004-07-08 Michael Natterer - - * libgimpwidgets/gimphelpui.c (gimp_context_help): fixed typo in - API docs. - -2004-07-08 Shlomi Fish - - * plug-ins/gimpressionist/Presets: converted the newlines in the - descriptions to whitespaces, so they'll simply wrap (in accordance - with making the description label wrappable). - -2004-07-08 Shlomi Fish - - * plug-ins/gimpressionist: Various Gimpressionist Cleanups. Made most - remaining non-static global variables static, and created functions - that manipulate them. Created new headers. Renamed some variables and - functions to make their names more menanigful. - -2004-07-08 Sven Neumann - - * app/widgets/gimphistogrameditor.c - (gimp_histogram_editor_menu_update): set the active item of the - combo-box after changing the visibility filter. - -2004-07-08 Michael Natterer - - * app/widgets/gimppropwidgets.c (gimp_prop_boolean_combo_box_notify): - same fix as below. - -2004-07-08 Sven Neumann - - * app/widgets/gimppropwidgets.c (gimp_prop_enum_combo_box_notify): - block gimp_prop_enum_combo_box_callback() before changing the - combo-box. - -2004-07-08 Sven Neumann - - * app/widgets/gimpsessioninfo.c: only write aux-info for properties - that have been changed from their default values. - - * app/widgets/gimphistogrameditor.c: some code cleanup. - -2004-07-08 Michael Natterer - - * app/widgets/gimpselectiondata.[ch]: added a "const gchar *format" - parameter to gimp_selection_data_set_pixbuf() which selects the - format in which to encode the pixbuf (was defaulting to "png" - before). - - * app/widgets/gimpclipboard.c: when copying, offer all formats which - are savable with GdkPixbuf. Added a GimpClipboard struct which is - attached to the Gimp and which stores all the persistent data - needed by the clipboard. Renamed some private functions. - - (unfortunately this change breaks pasting to AbiWord: - http://bugzilla.abisource.com/show_bug.cgi?id=7068) - -2004-07-08 Sven Neumann - * app/config/gimpconfig-deserialize.c - * app/config/gimpconfig-serialize.c: removed redundant casts. - - * app/widgets/gimpsessioninfo.[ch]: added convenience functions to - get and set aux-info based on object properties. - - * app/widgets/gimphistogrameditor.c: use the new functions to save - a histogram's channel and scale in the sessionrc. - -2004-07-07 Sven Neumann - - * app/widgets/gimpclipboard.c: sort the list of pixbuf formats so - that PNG is the preferred format and GIF and JPEG come last. - -2004-07-07 Bill Skaggs - - * plug-ins/gfig/*.[ch]: Use single centralized functions to - create, load, and save objects, instead of separate functions - for each type of object. A few other miscellaneous fixes. - -2004-07-07 Michael Natterer - - * app/widgets/gimpclipboard.[ch]: changed to allow pasting any - GdkPixbuf supported format (makes pasting from OpenOffice - work). Cleaned up a bit to perpare pasting of SVG data. - -2004-07-07 Sven Neumann - - * app/core/gimplayer.c (gimp_layer_new_from_tiles): add an alpha - channel if the src tile-manager doesn't have one. Warn on - unsupported type conversions instead of silently doing the wrong - thing. Fixes bug #145482. - - * app/core/gimpbuffer.c: cosmetics. - -2004-07-07 Michael Natterer - - * app/gui/Makefile.am - * app/gui/clipboard.[ch]: removed... - - * app/widgets/Makefile.am - * app/widgets/gimpclipboard.[ch]: ...and added here. - - * app/actions/edit-commands.c - * app/gui/gui.c: changed accordingly. - -2004-07-07 Michael Natterer - - Made the undo system robust against the currently pushed undo - being too large according to prefs settings. Fixes bug #145379. - - * app/core/gimpimage-undo.[ch] (gimp_image_undo_push_undo) - (gimp_image_undo_group_end): emit "undo-event" *before* calling - gimp_image_undo_free_space() so the undo history doesn't try to - remove an item that has never been added. - - (gimp_image_undo_push_undo): added boolean return value indicating - if the undo could be pushed (FALSE means the undo was to large - and was discarded right away). - - (gimp_image_undo_push_item): return NULL if the above returned - FALSE. - - * app/core/gimpimage-undo-push.c (gimp_image_undo_push_text_layer): - changed accordingly. - -2004-07-07 Manish Singh - - * plug-ins/common/jpeg.c: Don't try to load EXIF data if any warnings - happened, cause that likely means corruption and libexif doesn't - handle that very happily. Addresses bug #145212. Perhaps the error and - warning messages should be propagated to the user in the GUI somehow, - currently they are not. - -2004-07-07 Michael Natterer - - * app/actions/edit-actions.c (edit_actions): added "..." to "Clear - undo history" because it has a confirmation dialog. - - * app/actions/edit-commands.c: cleanup: moved static functions to - the end of the file and prototyped them. - -2004-07-07 Sven Neumann - - * app/widgets/gimphistogramview.c (gimp_histogram_view_expose): - fixed a drawing bug I introduced earlier today. - -2004-07-07 Michael Natterer - - * app/actions/view-actions.c - * app/actions/view-commands.[ch]: added actions and callbacks for - scrolling the view. Not used in menus but useful for controllers. - -2004-07-07 Sven Neumann - - * app/tools/gimpeditselectiontool.c - (gimp_edit_selection_tool_key_press): adapt the arrow key velocity - to the display scale factor. Please test and complain if you - dislike this behaviour. - - * themes/Default/images/Makefile.am - * themes/Default/images/stock-color-pick-from-screen-16.png: new - icon drawn by Jimmac. - - * libgimpwidgets/gimpstock.[ch]: register the new icon. - - * libgimpwidgets/gimppickbutton.c: use it for the screen color - picker instead of reusing the color picker tool icon. - -2004-07-06 Bill Skaggs - - * plug-ins/gfig/*.[ch]: a bunch of code clean-up and - debugging. Created "classes" for the objects, and - attached functions to classes rather than objects. - -2004-07-06 Sven Neumann - - Added an RGB histogram based on a patch by Tor Lillqvist. Fixes - bug #145401. - - * app/base/base-enums.[ch]: added GIMP_HISTOGRAM_RGB, don't export - it to the PDB. - - * app/base/gimphistogram.c: implemented histogram functions for - the RGB mode. - - * app/base/levels.c - * app/tools/gimpcurvestool.c - * app/tools/gimplevelstool.c - * app/widgets/gimpcolorbar.c - * app/widgets/gimphistogrameditor.c: handle the new enum value. - - * app/widgets/gimphistogramview.c: for GIMP_HISTOGRAM_RGB mode, - draw a histogram that shows the RGB channels simultaneously - -2004-07-06 Sven Neumann - - * libgimpmodule/gimpmodule.c: comply with C99 aliasing rules. - -2004-07-06 Michael Natterer - - * app/widgets/gimpwidgets-utils.c (gimp_menu_position) - (gimp_button_menu_position): call gtk_menu_set_monitor() only - for GTK+ < 2.4.4 and added a #warning about it. - -2004-07-06 Sven Neumann - - * plug-ins/gimpressionist: applied patch from Shlomi Fish that - fixes confusion of filenames and user-visible object names (bug - #132621). Also removed function remove_trailing_whitespace() that - used to duplicate functionality from GLib and updated - preset_create_filename(). - -2004-07-06 Michael Natterer - - * app/widgets/gimppreviewrenderer.c - (gimp_preview_renderer_set_viewable): queue an idle update when - setting the viewable to NULL so the view gets cleared correctly. - - (gimp_preview_renderer_idle_update): call - gimp_preview_renderer_update() even if renderer->viewable is NULL - so clearing the viewable gets propagated to the GUI. - - Moved clearing the viewable and removing the idle from - GObject::finalize() to GObject::dispose() because calling - set_viewable() with a NULL viewable triggers typechecking casts - and queuing idle functions, which is not nice in finalize(). - -2004-07-06 Sven Neumann - - * modules/Makefile.am (libcdisplay_proof_la_LIBADD): added back - $(LCMS_LIBS) that I had accidentally removed. - -2004-07-06 Sven Neumann - - * app/widgets/gimpvectorstreeview.c (gimp_vectors_tree_view_drag_svg): - return the proper type. - -2004-07-06 Michael Natterer - - * app/widgets/gimpcontainertreeview.c: connect to - "editing-canceled" of the name cell renderer and restore the - original text in the callback. Doesn't work reliably until GTK+ - bug #145463 is fixed. - -2004-07-05 Sven Neumann - - * app/plug-in/plug-in-rc.c (plug_in_icon_deserialize): fixed a - compiler warning. - - * plug-ins/common/dog.c: removed some redundant casts and other - trivial cleanups. - -2004-07-06 Michael Natterer - - * libgimpwidgets/gimpcontroller.h: removed #define - GIMP_CONTROLLER_PARAM_SERIALIZE. - - * libgimpmodule/gimpmoduletypes.h: added - GIMP_MODULE_PARAM_SERIALIZE instead. - - * modules/controller_linux_input.c - * modules/controller_midi.c: changed accordingly. - - * modules/cdisplay_colorblind.c - * modules/cdisplay_gamma.c - * modules/cdisplay_highcontrast.c - * modules/cdisplay_proof.c: made the new properties serializable. - -2004-07-05 Michael Natterer - - * tools/pdbgen/Makefile.am (enum_headers): don't scan - app/paint-funcs/paint-funcs-types.h for enums. - - * app/paint-funcs/paint-funcs-types.h: removed /*< pdb-skip >*/ - - * app/core/core-types.h: reordered opaque typedefs to somehow - match the categories in the comments. - -2004-07-05 Michael Natterer - - * app/core/core-types.h: removed enum SizeType. - - * app/text/text-enums.h: added it as enum GimpSizeType and added - comment that it's for backward compatibility only. - - * tools/pdbgen/Makefile.am - * tools/pdbgen/pdb/text_tool.pdb: changed accordingly. - - * libgimp/gimpenums.h - * plug-ins/pygimp/gimpenums.py - * plug-ins/script-fu/script-fu-constants.c - * tools/pdbgen/enums.pl: regenerated (pdbgen insisted on - reordering the enums). - -2004-07-05 Michael Natterer - - * app/core/core-types.h: #define MIN and MAX values for - GimpCoords.pressure, .tilt and .wheel. - - * app/display/gimpdisplayshell-callbacks.c - (gimp_display_shell_get_event_coords) - (gimp_display_shell_get_device_coords): use the #defines instead - of hardcoded magic values when CLAMP()ing event or device values. - -2004-07-05 Sven Neumann - - * modules/Makefile.am: link all modules with libgimpmodule. - -2004-07-05 Bill Skaggs - - * plug-ins/common/dog.c: improved defaults. use gimp_invert() - instead of rolling own. Use nasty hack to get previews to - work with grayscale images. Accept grayscale images. - -2004-07-05 Sven Neumann - - * app/core/gimpdata.[ch] (gimp_data_create_filename): Removed the - basename parameter and use the object name instead. Convert it to - the filesystem encoding. - - * app/core/gimpdatafactory.c: changed accordingly. - -2004-07-05 Sven Neumann - - * plug-ins/gimpressionist: applied patch from Shlomi Fish that - fixes a number of bugs in the gimpressionst plug-in (bug #145309). - - Also added some const qualifiers, cleaned up includes and removed - degtorad() and radtodeg() functions that used to duplicate - functionality from libgimpmath. - -2004-07-05 Michael Natterer - - * app/widgets/gimptemplateview.c - (gimp_template_view_tree_name_edited): removed unused local variables. - -2004-07-05 Sven Neumann - - * plug-ins/gfig/gfig-dialog.c: don't g_free() a GdkPixbuf, it's an - object. Removed trailing whitespace. - - * plug-ins/gfig/gfig-preview.c (draw_background): fixed declaration. - -2004-07-05 Michael Natterer - - * app/tools/gimpcolorizetool.c (gimp_colorize_tool_initialize): - return TRUE if initialization was successful. Makes the - tool->drawable pointer being set correctly by the calling code and - fixes bugs where colorize was leaving the drawable in a modified - but non-undoable state when cancelling or changing images. - -2004-07-05 Sven Neumann - - * modules/cdisplay_proof.c: use object properties for the - configurable values. - -2004-07-05 Michael Natterer - - * app/core/gimpchannel.[ch]: added signal "color-changed" and emit - it in gimp_channel_set_color() and gimp_channel_set_opacity(). - - * app/core/gimpimage-qmask.[ch]: added new functions - gimp_image_set,get_qmask_color(). - - * app/core/gimpimage.[ch]: install a "color-changed" handler on - gimage->channels and update gimage->qmask_color when the qmask's - color changes. Fixes bug #145361. - - * app/actions/qmask-commands.c: use the new qmask color API. - -2004-07-04 Simon Budig - - * app/actions/dialogs-commands.c - * app/display/gimpdisplayshell-dnd.c - * app/gui/preferences-dialog.c - * app/tools/gimppainttool.c - * app/widgets/gimpdeviceinfo.c - * app/widgets/gimpitemtreeview.c - * plug-ins/imagemap/imap_selection.c - * tools/pdbgen/pdb/gradients.pdb: Small changes to make GIMP - CVS compile with gcc 2.95 again. Mostly double semicolons and - variable declarations after other stuff. Spotted by Martin - Renold. - - * app/pdb/gradients_cmds.c: regenerated. - - (there is one issue left, see his patch at - http://old.homeip.net/martin/gcc-2.95.diff, I did not - copy the #define va_copy __va_copy, since I don't know - what happens here.) - -2004-07-04 Bill Skaggs - - * plug-ins/gfig/gfig-dialog.[ch]: - * plug-ins/gfig/gfig-style.[ch]: - * plug-ins/gfig/notes.txt: New files. - * plug-ins/gfig/*.[ch]: Complete reworking of the gfig plug-in. - See 'notes.txt' for a summary of what has changed, and how to use - it now. Plenty of bugs have been introduced, which will take a - while to straighten out. - -2004-07-04 Tor Lillqvist - - * app/core/gimpdrawable-equalize.c (gimp_drawable_equalize): Drop - a couple of unused variables. - - * libgimpmodule/gimpmodule.def: Add gimp_module_register_enum. - -2004-07-04 Sven Neumann - - * libgimpmodule/gimpmodule.[ch]: added gimp_module_register_enum(), - a function to register an enum type for a GTypeModule. - - * modules/cdisplay_colorblind.c: use an object property for the - color deficiency enum. - -2004-07-04 Sven Neumann - - * plug-ins/common/channel_mixer.c: don't attempt to store a - pointer to the last used filename in the plug-in parameter - struct. Fixes bug #145380. - -2004-07-04 Sven Neumann - - * modules/cdisplay_gamma.c - * modules/cdisplay_highcontrast.c: added object properties for - configurable values. - - * app/widgets/gimpcolordisplayeditor.c - * libgimpwidgets/gimpcolordisplaystack.c - * modules/cdisplay_colorblind.c - * modules/cdisplay_proof.c: cosmetic changes. - -2004-07-03 Michael Natterer - - * app/core/gimpcontext.[ch]: added context->serialize_props mask - which enables specifying exactly which properties will be - serialized. Also fixes a bug that prevented undefined properties - from being serialized, breaking tool_options and device status - serialization. - - * app/core/gimptoolinfo.c (gimp_tool_info_new): make only the - properties in the tool_info->context_props mask serializable, also - configure/initialize tool_info->tool_options. - - * app/tools/gimp-tools.c (gimp_tools_register): removed - tool_options initialization that is now done in - gimp_tool_info_new(). - - * app/widgets/gimpdeviceinfo.c: make only the properties in - GIMP_DEVICE_INFO_CONTEXT_MASK serializable. - - * app/widgets/gimpdevicestatus.c: add the device table to its - parent container again. Fixes "missing" devices. - - * app/core/gimptooloptions.c - * app/widgets/gimpdevices.c: cleanup / code review. - -2004-07-03 Michael Natterer - - * app/tools/gimppainttool.c (gimp_paint_tool_cursor_update): if - the color tool is enabled, skip cursor hiding entirely. - -2004-07-03 Sven Neumann - - * plug-ins/common/dog.c (dog): removed #ifdef'ed code that isn't - any longer needed. - -2004-07-02 Philip Lafleur - - * app/tools/gimptransformoptions.[ch]: - * app/tools/gimptransformtool.c: - * app/tools/tools-enums.[ch]: Replaced "Preview" checkbutton with - a combobox with options "Outline", "Grid", "Image", and - "Image + Grid". Addresses bug #108172. - -2004-07-02 Sven Neumann - - * app/actions/edit-actions.c: don't let the Paste menu items - sensitivity depend on the availability of clipboard data because - we aren't notified when the GDK clipboard changes. - -2004-07-02 Sven Neumann - - * app/gui/Makefile.am - * app/gui/clipboard.[ch]: new files implementing a clipboard for - image data based on GDK_SELECTION_CLIPBOARD (bug #133247). - - * app/actions/edit-actions.c - * app/actions/edit-commands.c: use the new clipboard API. - - * app/gui/gui.c: initialize and shutdown the clipboard. - - * app/core/gimpbuffer.c: cosmetics. - - * app/actions/actions.c - * app/menus/menus.c: added sanity checks to exit functions. - - * app/display/gimpdisplayshell-dnd.[ch]: let - gimp_display_shell_drop_svg() take a guchar * buffer. - - * app/widgets/gimpselectiondata.c (gimp_selection_data_get_pixbuf): - fixed the implementation. - -2004-07-02 Michael Natterer - - * plug-ins/gimpressionist/Makefile.am - * plug-ins/gimpressionist/*.[ch]: applied patch from Shlomi Fish - that massively cleans up gimppressionist (touching all files and - addding some new ones) and adds a simple PDB interface for - selecting one of the previously created presets. - Fixes bugs #145191, #144913 and #144922. - -2004-07-01 Sven Neumann - - * configure.in: bumped version number to 2.1.2. - -2004-07-01 Michael Schumacher - - * plug-ins/common/align_layers.c: there seems to be no reason why - this plug-in should not work on INDEXED* images, added it to the - registered image types - -2004-07-01 Roman Joost - - * plug-ins/script-fu/scripts/blend-anim.scm - * plug-ins/script-fu/scripts/glossy.scm - * plug-ins/script-fu/scripts/test-sphere.scm: fixed typos - -2004-07-01 Sven Neumann - - * app/widgets/gimpselectiondata.[ch]: added (yet unused) functions - gimp_selection_data_[get|set]_pixbuf(). - -2004-07-01 Michael Natterer - - * app/widgets/gimpfgbgarea.[ch]: implement GtkWidget::drag_motion() - and set the FG/BG depending on where the color was dropped. Also - set the drag status accordingly so the cursor indicates whether - dropping will have an effect or not. Fixes bug #145219. - -2004-07-01 Sven Neumann - - * app/core/gimptemplate.c: do like Liam taught us and use the - golden ratio as default for new images. - -2004-06-30 Philip Lafleur - - * app/tools/gimppainttool.c (gimp_paint_tool_cursor_update): - Chain up if the color tool is enabled. This fixes the problem of - the color picker cursor not appearing when using a paint tool - in color picking mode while "Show Paint Tool Cursor" is off. - -2004-06-30 Bill Skaggs - - * libgimp/gimpdrawable.c: moved call to - _gimp_tile_cache_flush_drawable() from gimp_drawable_detach() to - gimp_drawable_flush(), to resolve problem described in bug - #145051. - -2004-06-30 Michael Natterer - - * app/plug-in/plug-ins.[ch] (plug_ins_init): added a GimpContext - parameter and use it to start plug-ins. - - * app/core/gimp.c (gimp_real_restore): pass the user context. - Restores script-fu's access to the global FG, FG, brush, ... - -2004-06-30 Sven Neumann - - * app/core/core-enums.c - * app/display/display-enums.c - * app/paint/paint-enums.c - * app/text/text-enums.c - * app/widgets/widgets-enums.c: regenerated. - -2004-06-30 Bill Skaggs - - * app/actions/file-commands.c: revert previous change that was - intended to fix bug #141971. - -2004-06-30 Bill Skaggs - - * app/*/*-enums.h: did HIG-compliant capitalization in the right - place, instead of the auto-generated *-enums.c files. - -2004-06-30 Michael Natterer - - * app/widgets/gimpdnd.[ch] - * app/widgets/gimpselectiondata.[ch] - * app/widgets/gimpcontainertreeview.[ch]: changed "files" and "uris" - to "uri_list" in all function names, parameters and typedefs. - - * app/widgets/gimpcontainertreeview-dnd.c - * app/widgets/gimpdocumentview.c - * app/widgets/gimplayertreeview.c - * app/widgets/gimptoolbox-dnd.c - * app/display/gimpdisplayshell-dnd.[ch] - * app/display/gimpdisplayshell.c: changed accordingly. - -2004-06-30 Sven Neumann - - * plug-ins/maze/maze_face.c: made the dialog look a little less - clumsy. - -2004-06-30 Sven Neumann - - * tools/pdbgen/pdb/drawable.pdb - * libgimp/gimppixbuf.c: raised the maximum size for thumbnails - from 256 to 512 pixels. - - * app/pdb/drawable_cmds.c - * libgimp/gimpdrawable_pdb.c: regenerated. - - * plug-ins/gfig/gfig-preview.c - * plug-ins/gfig/gfig.c: redone Bill's fix using - gimp_image_get_thumbnail(). A lot simpler, renders the alpha - checkerboard and also works for grayscale images. - -2004-06-30 Michael Natterer - - Fixed a 1.2 -> 2.0 regression that was forgotten: - - * app/widgets/widgets-enums.[ch]: added enum GimpColorPickState - which can be one of { NEW, UPDATE }. - - * app/widgets/gimppaletteeditor.[ch]: changed #if 0'ed function - gimp_palette_editor_update_color() to - gimp_palette_editor_pick_color() and restored the functionality of - creating/updating colors via this API - - Changed button_press handler to only edit the color on double - click if it's really a double click on the same color. - Fixes bug #141381. - - * app/tools/gimpcolorpickeroptions.[ch]: added boolean property - "add-to-palette" and a GUI for it. - - * app/core/gimpmarshal.list - * app/tools/gimpcolortool.[ch]: added a GimpColorPickState - parameter to the "color_picked" signal. Pass NEW on button_press - and UPDATE on motion. - - * app/tools/gimpcurvestool.c (gimp_curves_tool_color_picked) - * app/tools/gimplevelstool.c (gimp_levels_tool_color_picked) - * app/tools/gimppainttool.c (gimp_paint_tool_color_picked): - changed accordingly - - * app/tools/gimpcolorpickertool.c (gimp_color_picker_tool_picked): - If "add-to-palette" is TRUE, get the palette editor and call - gimp_palette_editor_pick_color(). - -2004-06-30 Sven Neumann - - * app/widgets/gimpselectiondata.[ch]: renamed the SVG related - functions so that they deal with an anonymous data stream that - could as well be a PNG image. - - * app/widgets/gimpdnd.[ch] - * app/widgets/gimpcontainertreeview-dnd.c: changed accordingly. - - * app/display/gimpdisplayshell-dnd.[ch] - * app/vectors/gimpvectors-import.[ch] - * app/widgets/gimpcontainertreeview-dnd.c - * app/widgets/gimpvectorstreeview.c: use gsize for the length of - the buffer. - - * app/widgets/gimpdnd.[ch] - * app/widgets/widgets-enums.[ch]: added GIMP_DND_TYPE_PNG which isn't - used yet. - -2004-06-30 Michael Natterer - - * app/core/gimppalette.[ch] (gimp_palette_add_entry): take - const GimpRGB* instead of just GimpRGB*. - Converted tabs to spaces. - -2004-06-30 Michael Natterer - - * widgets/gimpselectiondata.[ch] (gimp_selection_data_get_svg): - changed return value from gchar* to const gchar*. Renamed - parameters to be consistent with other SVG functions. - - * widgets/gimpcontainertreeview-dnd.c - * widgets/gimpdnd.c: changed accordingly. - -2004-06-30 Simon Budig - - * app/vectors/gimpstroke.[ch] - * tools/pdbgen/pdb/paths.pdb: Applied a modified patch from - Geert Jordaens that implements the gimp-path-get-point-at-dist - PDB function (fixes bug #138754). - - * app/pdb/paths_cmds.c: regenerated. - -2004-06-30 Michael Natterer - - * app/widgets/gimptoolbox.c (gimp_toolbox_button_accel_changed): - do like GtkAccelLabel does and turn underscores in accels into - spaces so e.g. "Page_Up" becomes "Page Up". - -2004-06-29 Michael Natterer - - * app/display/gimpdisplayshell.c: reordered drop destinations - so vectors are preferred over SVG. - - * app/vectors/gimpvectors-import.[ch]: added "gint position" - parameter to all import functions so the imported vectors can be - added at any position in the vectors stack. - - * app/actions/vectors-commands.c - * app/display/gimpdisplayshell-dnd.c - * tools/pdbgen/pdb/paths.pdb: changed accordingly (pass -1 as - position). - - * app/pdb/paths_cmds.c: regenerated. - - * app/widgets/gimpvectorstreeview.c: implemented SVG DND from and - to the paths dialog. - -2004-06-29 Michael Natterer - - * app/widgets/gimpcontainertreeview-dnd.c: don't free the SVG data - after dropping, it's owned by GtkSelectionData. - -2004-06-29 Michael Natterer - - * app/widgets/gimpdnd.c: use gtk_target_list_add() instead of - gtk_target_list_add_table() because the latter prepends the - targets to the internal list which screws the order (== priority) - of DND targets. - - * app/widgets/gimpselectiondata.c: added some more checks for - failed drops (selection_data->length < 0). - -2004-06-29 Philip Lafleur - - * plug-ins/common/unsharp.c: The preview's row buffer was - accidentally made way too large. - -2004-06-29 Michael Natterer - - * app/widgets/gimpwidgets-utils.[ch]: added new function - gimp_get_mod_string() which takes a GdkModifierType and returns - correctly formated strings for all shift,control,alt combinations. - - * app/tools/gimpbucketfilloptions.c - * app/tools/gimpcolorpickeroptions.c - * app/tools/gimpconvolvetool.c - * app/tools/gimpcropoptions.c - * app/tools/gimpdodgeburntool.c - * app/tools/gimperasertool.c - * app/tools/gimpflipoptions.c - * app/tools/gimpmagnifyoptions.c - * app/tools/gimpmoveoptions.c - * app/tools/gimptransformoptions.c - * app/tools/gimpvectoroptions.c - * app/widgets/gimpchanneltreeview.c - * app/widgets/gimpcolormapeditor.c - * app/widgets/gimpdocumentview.c - * app/widgets/gimperrorconsole.c - * app/widgets/gimpgradienteditor.c - * app/widgets/gimpitemtreeview.c - * app/widgets/gimppaletteeditor.c - * app/widgets/gimpselectioneditor.c - * app/widgets/gimpthumbbox.c - * app/widgets/gimptooloptionseditor.c - * app/widgets/gimpvectorstreeview.c: use the new function instead - of gimp_get_mod_name_shift(),control(),alt(),separator(). This - kindof addresses the issue of configurable modifier keys but is - actually indended to ease translation of format strings ("%s" is - easier to get right than "%s%s%s"). - -2004-06-28 Michael Natterer - - Allow all sorts of things to be dropped on or in between the - items of a GimpContainerTreeView: - - * app/widgets/gimpcontainertreeview.[ch]: added more parameters to - GimpContainerTreeView::drop_possible() to specify where ecactly - the drop should take place (between or into items) and to support - dropping all sorts of things. - - Renamed ::drop() to ::drop_viewable() and added ::drop_color(), - ::drop_files() and ::drop_svg(), which cover all possible drop - types. - - * app/widgets/gimpcontainertreeview-dnd.[ch]: changed accordingly. - Dispatch all kinds of drops to the resp. virtual functions. - - * app/widgets/gimpitemtreeview.c: changed accordingly. - - * app/widgets/gimplayertreeview.c: allow to drop URIs, colors - and patterns to the layers dialog. Fixes bugs #119506 and #139246. - -2004-06-28 Michael Natterer - - * app/file/file-open.[ch] (file_open_layer): new utility function - which opens an image, flattens it if needed and returns the only - layer, converted for a passed destination image. - - * app/display/gimpdisplayshell-dnd.c - (gimp_display_shell_drop_files): use the new function. - -2004-06-28 Michael Natterer - - * app/widgets/Makefile.am - * app/widgets/gimpselectiondata.[ch]: new files containing the - code which encodes/decodes all sorts of stuff to/from its - GtkSelectionData representation. Used to live in gimpdnd.c - - * app/widgets/gimpdnd.c: use the new functions (unclutters the - file quite a bit), converted tabs to spaces. - -2004-06-28 Michael Natterer - - * app/widgets/gimpcontainergridview.c: - #include "libgimpwidgets/gimpwidgets.h" - -2004-06-28 Michael Natterer - - Fixed bug #141930 while keeping bug #132322 fixed: - - * app/base/curves.c (curves_lut_func) - * app/base/levels.c (levels_lut_func): changed meaning of channel - slots for GRAYA images: just as for GRAY images, expect the value - channel in slot 0 and the alpha channel in slot 1, so it matches - the meaning of slots of GimpHistogram (before this change, only - GRAY images had their value in slot 0 and GRAYA images had it in - slot 1, whereas the histogram had the value channel in slot 0, - which was breaking auto levels for GRAYA images). - - * app/tools/gimpcurvestool.c - * app/tools/gimplevelstool.c - * tools/pdbgen/pdb/color.pdb: adjusted channel fiddling for GRAY - and GRAYA images accordingly. - - * app/tools/gimpcurvestool.c (curves_update) - * app/tools/gimplevelstool.c (levels_update): call - gimp_color_bar_set_buffers() with the right buffers. - - * app/pdb/color_cmds.c: regenerated. - -2004-06-28 Sven Neumann - - * app/gui/gui.c (gui_initialize_after_callback): select the - standard tool. - - * app/tools/tool_manager.c: cosmetics. - -2004-06-28 Michael Natterer - - * app/tools/gimplevelstool.c: reverted fix for bug #141930. These - hacks are there because the enum used in levels doesn't match - the enum used by the combo box and the histogram widget. - -2004-06-28 Michael Natterer - - * app/tools/gimpclonetool.c (gimp_clone_tool_button_release): - removed again (tools must not draw outside GimpDrawTool::draw()). - - (gimp_clone_tool_draw): removed check for gimp_draw_tool_is_active() - because the draw function would not be called if the draw tool was - inactive. Simplified check for whether or not to draw the src - location. - - * app/tools/gimppainttool.c (gimp_paint_tool_button_release): - pause/resume the draw tool across all button_release actions so - tools (clone) have a chance to draw different things depending on - gimp_tool_control_is_active(tool->control). Fixes bug #145022. - -2004-06-28 Sven Neumann - - * app/actions/actions.c (action_select_object): added missing - return value. - -2004-06-28 Sven Neumann - - * plug-ins/common/dog.c: applied HIG rules to the GUI and slightly - rearranged it to get a more compact layout. Applied GIMP coding - style. - -2004-06-28 Sven Neumann - - * libgimp/gimpdrawable.c: removed wrong note about using - _gimp_tile_cache_flush_drawable() from the API docs. - -2004-06-28 Sven Neumann - - * plug-ins/common/dog.c (dog): ifdef'ed out calls to - _gimp_tile_cache_flush_drawable() since it can't be used from a - plug-in. Removed trailing whitespace and redundant includes. - - * libgimp/gimp.def: removed _gimp_tile_cache_flush_drawable again. - -2004-06-28 Simon Budig - - * app/tools/gimpvectortool.c: fixed drawing code to properly - update after deleting nodes via BackSpace/Delete. - -2004-06-27 Bill Skaggs - - * app/tools/gimplevelstool.c: removed two small chunks of code. - Fixes bug #141930. Possibly unfixes bug #132322. - -2004-06-27 Michael Schumacher - - * libgimp/gimp.def: added _gimp_tile_cache_flush_drawable because - it is used in a plug-in. See bug #145051. - -2004-06-26 Philip Lafleur - - * plug-ins/common/unsharp.c: Preview now works correctly with - RGBA and grayscale-alpha images. Fixes bug #144971. - -2004-06-26 Bill Skaggs - - * app/tools/gimpclonetool.c: added button_release callback - to fix bug #145022. - -2004-06-26 Philip Lafleur - - * plug-ins/common/unsharp.c: Use GTK_PREVIEW_GRAYSCALE if source - is grayscale or grayscale-alpha. Partial fix for bug #144971. - -2004-06-25 Bill Skaggs - - * plug-ins/common/unsharp.c: speed up preview by allocating tile - cache before creating dialog. Should fix bug #144972. - -2004-06-25 Philip Lafleur - - * plug-ins/common/zealouscrop.c: Moved Zealous Crop from - /Layer/Crop to /Image/Crop because it affects the - entire image. - -2004-06-25 Bill Skaggs - - * plug-ins/common/dog.c: added Difference of Gaussians edge - detect plug-in. - - * plug-ins/common/plugin-defs.pl: - * plug-ins/common/Makefile.am: added dog and regenerated - Makefile. - -2004-06-25 Michael Natterer - - * app/actions/context-actions.c: added GIMP_ACTION_SELECT_SET - actions which set a generated brush's properties directly. - - * app/actions/context-commands.c: adjust the range of possible - brush radius and aspect_ratio values to be actually usable. - -2004-06-25 Michael Natterer - - * app/core/gimpbrushgenerated.[ch]: reordered parameters and - members to be consistent with other places where generated - brushes are used. Check for errors when loading a brush and - utf8-validate its name. Cleanup. - - * app/core/gimpbrush.c - * app/core/gimpbrushpipe.c: cleanup. - -2004-06-25 Michael Natterer - - * app/gui/preferences-dialog.c (prefs_dialog_new): work around - GTK+ bug #143270 (set the cursor on the selected model path - instead of selecting the iter in the selection). Fixes random - theme switching when selecting the "Theme" page. - -2004-06-25 Michael Natterer - - * app/core/gimpbrushgenerated.c: added properties for all brush - parameters. - - * app/widgets/gimpbrusheditor.c: listen to property changes of the - edited brush and update the scales accordingly. - -2004-06-25 Michael Natterer - - * app/gui/preferences-dialog.c: more work on the controller page, - made integer controller properties editable. - - * modules/controller_midi.c: allow to specify the MIDI channel to - generate events from. Default to -1 (all channels). - -2004-06-24 Bill Skaggs - - * plug-ins/gfig/gfig.[ch]: - * plug-ins/gfig/gfig-preview.c: Let gfig use a thumbnail of the - image as background for its preview, if the image is RGB and "Show - image" is checked in the Options tab. (Next best thing to - previewing in the image.) - -2004-06-25 Michael Natterer - - * app/widgets/gimpcontrollerinfo.[ch]: added a boolean property - "debug-events" and honor it when printing debugging output. - Should add an event console window so the user doesn't need to - have a terminal to inspect input module output. - - * app/gui/prefereces-dialog.c: HIGified some forgotten labels. - Renamed the "Pointer Movement Feedback" frame to "Mouse Cursors". - Replaced some forgotten "Dir" with "Folder". - Made more GimpControllerInfo and GimpController properties - editable and cleaned up the controller page. - -2004-06-25 Michael Natterer - - * app/widgets/gimppropwidgets.[ch]: added gimp_prop_label_new(). - - * app/widgets/gimpgrideditor.c: HIGified capitalization. - -2004-06-25 Michael Natterer - - * modules/controller_linux_input.c - * modules/controller_midi.c: remember the source ID returned by - g_io_add_watch() and remove it when changing the device, so the - file descritor gets actually closed. Minor cleanups. - -2004-06-24 Michael Natterer - - * app/widgets/gimpcontrollerwheel.[ch]: renamed function - gimp_controller_wheel_scrolled() to - gimp_controller_wheel_scroll(). - - * app/display/gimpdisplayshell-callbacks.c - (gimp_display_shell_canvas_tool_events): changed accordingly. - -2004-06-24 Michael Natterer - - * etc/controllerrc: fix typo in wheel controller mapping. - -2004-06-24 Michael Natterer - - * app/tools/gimptool.[ch] - * app/tools/tool_manager.[ch]: added boolean return value to - GimpTool::key_press() which indicates if the event was handled. - - * app/tools/gimpcroptool.c - * app/tools/gimpeditselectiontool.[ch] - * app/tools/gimptransformtool.c - * app/tools/gimpvectortool.c: return TRUE if the key event was handled. - - * app/tools/gimppainttool.c: removed key_press() implementation. - - * app/widgets/Makefile.am - * app/widgets/widgets-types.h - * app/widgets/gimpcontrollerkeyboard.[ch]: new controller class - which takes GdkEventKey and emits controller events for all - combinations of modifiers and cursor keys. - - * app/widgets/gimpcontrollers.[ch]: added new function - gimp_controllers_get_keyboard(). - - * app/display/gimpdisplayshell-callbacks.c: if a key event was not - handled by the active tool, dispatch it to the keyboard controller. - - * etc/controllerrc: add a keyboard controller which is configured - to do the same as the removed gimp_paint_tool_key_press(). - -2004-06-23 Bill Skaggs - - * libgimp/gimpdrawable.c: added some documentation for - a few important functions with no API docs. - -2004-06-24 Sven Neumann - - * Made 2.1.1 release. - -2004-06-23 Bill Skaggs - - * app/actions/file-commands.c: make "Revert" only ask for - confirmation if image is dirty. Fixes bug #141971. - -2004-06-23 Bill Skaggs - - * app/gui/*.c: - * app/widgets/*.c: - * etc/templaterc: HIGify capitalization. Should finish bug #123699 - except for everything I missed or got wrong. - -2004-06-24 Sven Neumann - - * etc/controllerrc: commented out the linux_input controller - configuration. - -2004-06-23 Bill Skaggs - - * app/tools/*.c: HIGify capitalization for dialogs. More - progress on bug #123699. - -2004-06-23 Michael Natterer - - * modules/controller_midi.c: added utility function midi_event() - which assembles a GimpControllerEventValue and emits it. - -2004-06-23 Michael Natterer - - * app/widgets/gimpenumaction.[ch] - * app/widgets/gimppluginaction.[ch] - * app/widgets/gimpstringaction.[ch]: added parameters to the - gimp_*_action_selected() function so the "selected" signal can be - emitted with value != action->value. Changed GtkAction::activate() - implementations accordingly (pass action->value). - - * app/widgets/gimpcontrollers.c: call gimp_enum_action_selected() - and pass the value of the GimpControllerEventValue instead of - temporarily replacing action->value and calling - gtk_action_activate(). - - * app/widgets/gimpcontrollerinfo.c: fixed debugging output. - -2004-06-23 Michael Natterer - - * app/paint/gimpbrushcore.[ch]: added signal "set-brush" which is - G_SIGNAL_RUN_LAST so we can connect before and after the default - implementation. Moved the brush setting and outline invalidation - stuff to its default implementation. Also remember the outline's - width and height. Call gimp_brush_core_set_brush() from - gimp_brush_core_invalidate_cache() so "set-brush" is emitted - whenever a generated brush becomes dirty. - - * app/tools/gimppainttool.c (gimp_paint_tool_button_press): don't - pause/resume but rather stop/start the draw_tool. Fixes straight - line preview aretefacts. - - (gimp_paint_tool_oper_update): set the brush_core's brush before - starting the draw_tool. - - (gimp_paint_tool_draw): never free the brush_core's cached brush - outline because the brush_core does that by itself now. - - (gimp_paint_tool_set_brush) - (gimp_paint_tool_set_brush_after): new callbacks which pause and - resume the draw_tool. Fixes brush outline artefacts when modifying - the current brush e.g. by using the mouse wheel. - -2004-06-23 Michael Natterer - - * app/actions/context-commands.h: removed enum GimpContextSelectType. - - * app/actions/actions-types.h: added enum GimpActionSelectType. - - * app/actions/actions.[ch]: added utility functions - action_select_value() and action_select_object(). - - * app/actions/context-actions.c - * app/actions/context-commands.c: changed accordingly. - - * app/actions/layers-actions.c - * app/actions/layers-commands.[ch]: merged the layer select - callbacks into one using the GimpActionSelectType functions. Added - actions and callbacks for modifying the active layer's opacity. - - * app/menus/menus-types.h: #incude "actions/action-types.h". - - * app/gui/gui-types.h: #incude "menus/menus-types.h". - - * app/gui/preferences-dialog.c: allow to enable/disable input - controllers. - -2004-06-22 Bill Skaggs - - * app/tools/gimpcurvestool.c: try again to revert. - -2004-06-22 Bill Skaggs - - * app/tools/gimpcurvestool.c: reverted. - -2004-06-22 Bill Skaggs - - * plug-ins/script-fu/scripts: HIG-ified capitalization on - all. Finishes this for everything in plug-ins. Bug #123699 is - now mostly fixed. - -2004-06-22 Sven Neumann - - * app/composite/gimp-composite-regression.c: define timersub() - macro in case it's undefined. Patch by Tim Mooney, fixes 'make - check' on Tru64 (bug #144780). - -2004-06-22 Bill Skaggs - - * app/tools/gimpcurvestool.c: added Store/Recall buttons for - one-click saving and loading of curves. Should create stock - labels for them. Hopefully resolves bug #75558. - -2004-06-22 Michael Natterer - - * app/actions/view-actions.c - * app/actions/view-commands.[ch]: added actions & callbacks to - configure the canvas padding color. - - * app/widgets/gimphelp-ids.h - * menus/image-menu.xml.in: added the actions' help IDs and menu entries. - - * app/display/display-enums.h: added /*< skip >*/'ed enum value - GIMP_CANVAS_PADDING_MODE_RESET. - - * app/display/gimpdisplayshell-appearance.c - * app/display/gimpdisplayshell-callbacks.[ch] - * app/display/gimpdisplayshell-handlers.c - * app/display/gimpdisplayshell.[ch]: removed the canvas padding - button and its popup menu (fixes bug #142996). Instead, added a - toggle button which allows to zoom the image when the window is - resized (as known from sodipodi, except it doesn't work as nice - yet :-) improvements to the algorithm are welcome). - Cleaned up the GimpDisplayShell struct a bit and renamed some - of its members. - - * libgimpwidgets/gimpstock.[ch] - * themes/Default/images/Makefile.am - * themes/Default/images/stock-zoom-follow-window-12.png: added new - icon for the new display toggle button. - -2004-06-22 Michael Natterer - - * app/tools/gimpclonetool.c (gimp_clone_tool_draw): chain up - unconditionally now that we draw the brush outline while - painting. Fixes brush outline artefacts on button_press and - button_release. Spotted by sjburges. - -2004-06-22 Sven Neumann - - * app/widgets/gimpfiledialog.c (gimp_file_dialog_set_image): unset - the filename if the image is unnamed. - - * configure.in - * app/sanity.c: depend on gtk+ >= 2.4.1. - - * app/widgets/gimpthumbbox.[ch]: changed gimp_thumb_box_set_uris() - to gimp_thumb_box_take_uris() since the function takes ownership - of the list, - - * app/widgets/gimpfiledialog.c: changed accordingly. Removed code - that worked around a problem in gtk+ < 2.4.1. - -2004-06-22 Sven Neumann - - * libgimpwidgets/gimpcolorarea.c (gimp_color_area_set_color): use - gimp_rgb_distance() for flat color areas. Fixes bug #144786. - -2004-06-22 Sven Neumann - - * tools/pdbgen/pdb/fileops.pdb: app/pdb/fileops_cmds.c is a - generated file, need to do the documentation change here. - - * app/pdb/fileops_cmds.c - * libgimp/gimpfileops_pdb.c: regenerated. - -2004-06-21 Bill Skaggs - - * app/tools/gimptransformoptions.c: use radio buttons - for constraint options. Makes all options visible, - should resolve bug #68106. - -2004-06-21 Bill Skaggs - - * app/gui/file-save-dialog.c: to reduce clutter, hide overwrite - query dialog after user has responded. - -2004-06-21 Bill Skaggs - - * plug-ins/common/noisify.c: changed handling of alpha - channel in an attempt to deal with bug #72853. - Changed menu entry from "Noisify" to "Scatter RGB". - -2004-06-21 Bill Skaggs - - * app/pdb/fileops_cmds.c: fixed incorrect documentation for - gimp_file_load, which was the root cause of bug #118811. - -2004-06-21 Bill Skaggs - - * plug-ins: finish implementing HIG capitalization in dialogs. - Scripts remain to be done. More progress on bug #123699. - -2004-06-21 Michael Natterer - - * app/widgets/widgets-enums.[ch] (enum GimpCursorFormat): removed - value GIMP_CURSOR_FORMAT_PIXBUF_PREMULTIPLY because it's the job - of GDK to do that (it was GDK that was broken, not some of the X - servers). - - * app/widgets/gimpcursor.c (gimp_cursor_new): premultiply the - cursor's pixels for GTK+ < 2.4.4. - -2004-06-21 Sven Neumann - - * app/gui/gui.c (gui_exit_callback): improved message in quit - dialog just in case that we don't manage to redo this dialog - before 2.2. - -2004-06-21 Sven Neumann - - * libgimpwidgets/gimpwidgets.[ch] - * libgimpwidgets/gimpwidgets.def: added new utility function - gimp_label_set_attributes(). - - * app/display/gimpdisplayshell.c - * app/gui/preferences-dialog.c - * app/gui/resolution-calibrate-dialog.c - * app/widgets/gimpviewabledialog.c - * app/widgets/gimpwidgets-utils.c: use the new function. - - * app/widgets/gimpcontainergridview.c - * app/widgets/gimphistogrameditor.c: display the name in italic. - - * plug-ins/common/jpeg.c: display the file size in italic. - -2004-06-20 Bill Skaggs - - * plug-ins/common/url.c: if url does not end in a recognized - extension, open it as an unnamed image. Fixes bug #118811. - -2004-06-20 Sven Neumann - - * app/widgets/gimphistogrambox.[ch]: removed the label between the - spinbuttons, it looks silly. Converted tabs to spaces, removed - trailing whitespace. - - * app/widgets/gimphistogrameditor.c - * app/tools/gimpthresholdtool.c: changed accordingly. - -2004-06-19 Bill Skaggs - - * plug-ins: changed dialogs to follow HIG capitalization style - wherever they didn't. Scripts remain to be done. Partially - fixes bug #123699. - -2004-06-19 Bill Skaggs - - * app/widgets/gimphistogrambox.[ch]: - * app/tools/gimpthresholdtool.c: Changed the threshold tool dialog - so that it uses a two-triangle-slider scale of the sort used in the - levels tool. Almost all of the changes are actually in the - histogram-box widget code, which is only used by the threshold - tool. Fixes bug #137521. - -2004-06-20 Sven Neumann - - * plug-ins/common/jpeg.c: removed redundant hboxes and other - layout cleanups. - -2004-06-20 Philip Lafleur - - * app/display/gimpdisplayshell-scale.[ch]: - * app/display/gimpnavigationview.[ch]: - * app/actions/view-actions.c: - * app/actions/view-commands.[ch]: - * app/widgets/gimphelp-ids.h: - * menus/image-menu.xml.in: Changed "Zoom to Fit Window" command - to "Fit Image in Window" and added another command, "Fit Image - to Window", that zooms according to the opposite dimension. Fixes - bug #144597. - -2004-06-19 Michael Schumacher - - * libgimpwidgets/gimpwidgets.def: added missing - gimp_controller_* entries - -2004-06-19 Michael Schumacher - - * modules/controller_midi.c: #ifdef G_OS_WIN32 for an O_NONBLOCK - -2004-06-19 Bill Skaggs - - * plug-ins/common/jpeg.c: more changes to save dialog. Moved - comment field to Advanced area. Don't set restart marker - frequency stuff insensitive. Changed range for quality - scale from 0-1 to 0-100 to follow the jpeg spec (but left - allowable range for pdb at 0-1 to avoid breaking anything). - -2004-06-19 Bill Skaggs - - * app/tools/gimpscaletool.c: fixed my fix for bug # 68106, which - worked incorrectly for two of the control points. - -2004-06-19 Michael Natterer - - * modules/controller_midi.c (midi_read_event): simplified - swallowing of SysEx messages and unwanted data bytes. Reordered - and commented stuff to be more readable. - -2004-06-19 Michael Natterer - - * modules/Makefile.am - * modules/controller_midi.c: new controller for MIDI input. Maps - all note on and note off events and all MIDI controllers to - GimpContollerEvents. Should parse any MIDI stream. Code based on - blinkenmedia stuff from Daniel Mack. - -2004-06-19 Sven Neumann - - Applied a patch from Geert Jordaens that implements the - GtkStatusbar functionality in GimpStatusbar so that we can redo it - in order to fix bug #120175: - - * app/core/gimpmarshal.list: added VOID: UINT, STRING. - - * app/display/gimpstatusbar.[ch]: copied GtkStatusbar code. - - * app/display/gimpdisplayshell.c: changed accordingly. - -2004-06-19 Sven Neumann - - * plug-ins/ifscompose/ifscompose_utils.c (create_brush): use - G_SQRT2; some coding style cleanups. - -2004-06-19 Sven Neumann - - * app/vectors/gimpbezierstroke.c (arcto_ellipsesegment): moved - array initialization out of variable declaration (bug #144632). - -2004-06-19 Sven Neumann - - * app/vectors/gimpbezierstroke.c (arcto_ellipsesegment): use - G_SQRT2 to make circlemagic a constant value so we can initialize - the array on declaration. Fixes bug #144632. - -2004-06-19 Sven Neumann - - * devel-docs/parasites.txt: document "exif-data" parasite. - -2004-06-18 Manish Singh - - * plug-ins/common/film.c: Don't use deprecated gimp_text functions, - clean up font name string handling a bit, default is now "Monospace" - instead of "Courier". - -2004-06-19 Michael Natterer - - * app/widgets/gimpcontrollers.c (gimp_controllers_event_mapped): - start supporting GIMP_CONTROLLER_EVENT_VALUE of type gdouble. - Assume the double value is in a [0.0..1.0] range and temporarily - change the value of the called GimpEnumAction to a range of - [0..1000] when invoking it. All still very hackish... - -2004-06-19 Michael Natterer - - * app/widgets/gimpcontrollerinfo.c (gimp_controller_info_event): - more debugging output. - -2004-06-18 Bill Skaggs - - * app/tools/gimpscaletool.c: changed algorithm for scaling when - aspect ratio is constrained, to fix strange behavior described - in bug # 68106. - -2004-06-18 Bill Skaggs - - * plug-ins/common/jpeg.c: redid save dialog along lines suggested - in bug # 138929 - - Only create an exif data parasite on loading file if the file actually - contains exif data. - - Call exif data parasite "exif-data" instead of "jpeg-exif-data", - because it should be interchangeable with TIFF exif data. - -2004-06-18 Michael Natterer - - * app/actions/context-actions.c - * app/actions/context-commands.[ch]: added tons of new actions to - modify the current FG/BG color's RGB components. - - Added new enum value GIMP_CONTEXT_SELECT_SET which allows to set - values, not only increase/decrease them. - - Changed context_select_value() utility function to interpret - GimpEnumAction::value being >= GIMP_CONTEXT_SELECT_SET as settings - in a range from 0 to 1000. Yes, that's a hack... - -2004-06-18 Philip Lafleur - - * app/tools/gimptransformtool.c: reverted my fix to bug #144570. - -2004-06-18 Philip Lafleur - - * app/tools/gimpfuzzyselecttool.c: Fix fuzzy select menu label. - -2004-06-18 Philip Lafleur - - * app/tools/gimptransformtool.c (gimp_transform_tool_bounds): - If transforming a path, use the path bounds rather than the mask - bounds. Fixes bug #144570. - -2004-06-17 Michael Natterer - - * app/core/gimp-utils.[ch]: added gimp_boolean_handled_accum(). - - * app/core/gimp.c - * app/widgets/gimpcontrollerinfo.c: use it. - -2004-06-17 Michael Natterer - - * app/core/gimpcontainer.c (gimp_container_deserialize): add newly - created children to the container *after* deserializing them so - GimpContainer::add() callbacks get the already deserialized - object. - - * app/widgets/gimpcontrollers.c: connect to "add" and "remove" of - the controller list and remember / clear the wheel controller when - it appears / disappears. - -2004-06-17 Sven Neumann - - * autogen.sh: check for xsltproc and mention that the intltool - version mismatch is harmless. - -2004-06-17 Pedro Gimeno - - * tools/pdbgen/pdb/paths.pdb: Fix typos and improve documentation. - Addresses bug #144267. - - * app/pdb/paths_cmds.c - * libgimp/gimppaths_pdb.c: regenerated. - -2004-06-17 Michael Natterer - - * libgimpwidgets/gimpcontroller.[ch]: removed "enabled" - property. Removed GIMP_CONTROLLER_PARAM_SERIALIZE from the "name" - property because it's the hardware-determined name of this - controller instance. - - * app/widgets/gimpcontrollerwheel.c - * modules/controller_linux_input.c: set the name. - - * libgimpwidgets/gimpwidgets.h: #include gimpcontroller.h. - - * app/widgets/gimpcontrollerinfo.[ch]: added "enabled" here - instead. Don't dispatch events if the controller is - disabled. Made everything work (not crash) with info->mapping - being NULL. - - * etc/controllerrc: updated again with the changed format. - - * app/widgets/gimpcontrollers.[ch]: added - gimp_controllers_get_list() which returns the container of - controllers. - - * app/widgets/gimphelp-ids.h - * app/gui/preferences-dialog.c: added controller configuration - (can't change anything yet, just view the current settings). - Resurrected the "Input Devices" page and removed the "Session" - page by moving its widgets to other pages. Pack the various - "Save now"/"Clear now" buttons vertically, not horizontally. - Fixes bug #139069. - - * themes/Default/images/preferences/Makefile.am - * themes/Default/images/preferences/controllers.png - * themes/Default/images/preferences/theme.png: new icons for new - prefs pages. Someone needs to make them nice... - -2004-06-17 Michael Natterer - - * app/display/gimpdisplayshell.c: GtkUIManager makes the menu bar - visible by default, hide it if options->show_menubar is FALSE. - Fixes bug #143243. - -2004-06-17 Sven Neumann - - * configure.in: bumped version to 2.1.1. Allow to disable the - build of the linux_input controller module. - -2004-06-17 Philip Lafleur - - * app/core/gimpdrawable-transform.c - (gimp_drawable_transform_tiles_affine): Make transforms (most - notably perspective transforms) conform exactly to specified - edges. Includes a patch by David Gowers. Fixes bug #144352. - -2004-06-16 Manish Singh - - * modules/controller_linux_input.c: put BTN_{WHEEL,GEAR_DOWN,GEAR_UP} - usage in #ifdefs, since pre-2.6 kernels do not have them. - - * modules/controller_linux_input.c (linux_input_read_event): n_bytes - should be a gsize. - -2004-06-16 Michael Natterer - - * app/actions/context-actions.c - * app/actions/context-commands.[ch]: added actions & callback - to select the first/last/prev/next tool. - -2004-06-16 Simon Budig - - * modules/controller_linux_input.c: removed BTN_MISC, - since it is the same as BTN_0 in the input.h header file. - -2004-06-16 Michael Natterer - - * libgimpwidgets/gimpcontroller.c (gimp_controller_get_event_name) - (gimp_controller_get_event_blurb): always return a non-NULL - string (return "" as fallback). - - * modules/controller_linux_input.c: reenabled button event - dispatching. - - * app/widgets/gimpcontrollerinfo.c: fixed debugging output. - -2004-06-16 Simon Budig - - * modules/controller_linux_input.c: break out of the - loop after we handled the first matching rel_event. - -2004-06-16 Michael Natterer - - * libgimpwidgets/gimpcontroller.[ch]: added #define - GIMP_CONTROLLER_PARAM_SERIALIZE. Made all properties serializable. - - * modules/controller_linux_input.c: made "device-name" - serializable. - - * app/config/gimpconfig-params.h: added macro - GIMP_CONFIG_INSTALL_PROP_POINTER() which needs to be handled - by custom (de)serialize_property() implementations. - - * app/config/gimpconfig-deserialize.c - * app/config/gimpconfig-serialize.c: made object (de)serialization - work for object properties which are *not* GIMP_PARAM_AGGREGATE. - Write/parse the exact type of the object to create to enable this. - - * app/core/gimpmarshal.list: new marshaller for GimpControllerInfo. - - * app/widgets/gimpcontrollerinfo.[ch]: implement GimpConfigInterface - and add "controller" and "mapping" properties. Add "event-mapped" - signal which carries the action_name. - - * app/widgets/gimpcontrollers.c: removed all deserialization code - and simply (de)serialize the controller container. Install a - container handler for "event-mapped" and do the action_name -> - action mapping in the callback. - - * etc/controllerrc: regenerated with new syntax. Delete your old one! - -2004-06-16 Sven Neumann - - * app/widgets/gimpcontrollerwheel.c - (gimp_controller_wheel_get_event_name): don't use gettext() here. - - * modules/controller_linux_input.c: added more button events, set - the device name, some cleanup. - -2004-06-16 Sven Neumann - - * plug-ins/common/plugin-defs.pl: changed dependencies for blur. - - * plug-ins/common/Makefile.am: regenerated. - - * plug-ins/common/blur.c: no need to include libgimpui.h any longer. - -2004-06-16 Bill Skaggs - - * plug-ins/common/blur.c: removed randomize and repeat options; - made to run without popping a dialog. (bug #142318) - -2004-06-16 Simon Budig - - * modules/controller_linux_input.c: enable dial-events for - e.g. the powermate. Fixed typo. - -2004-06-16 Sven Neumann - - * menus/image-menu.xml.in: added missing menu entries (bug #144449). - -2004-06-16 Michael Natterer - - * libgimpwidgets/gimpcontroller.[ch]: added - GimpController::get_event_blurb() which returns the strings that - were returned by get_event_name(). The latter returns - untranslatable event identifiers now. - - * app/widgets/gimpcontrollerwheel.c - * modules/controller_linux_input.c: changed accordingly. - - * app/widgets/gimpcontrollerinfo.c - * app/widgets/gimpcontrollers.c: changed the event mapping from - event-id -> action-name to event-name -> action-name. - - * etc/controllerrc: changed accordingly (finally readable now). - -2004-06-16 Michael Natterer - - * app/widgets/Makefile.am - * app/widgets/widgets-types.h - * app/widgets/gimpcontrollerinfo.[ch]: made an object out of - the GimpControllerInfo struct. - - * app/widgets/gimpcontrollers.c: changed accordingly. - -2004-06-16 Jakub Steiner - - * etc/controllerrc: fix typo - -2004-06-16 Sven Neumann - - * modules/controller_linux_input.c - * etc/controllerrc: preliminary wheel event support. - -2004-06-16 Michael Natterer - - * app/widgets/gimpcontrollers.c: better debugging output. - -2004-06-16 Sven Neumann - - * app/widgets/gimpcontrollers.c: bug fix. - - * configure.in: check for linux/input.h. - - * modules/Makefile.am - * modules/controller_linux_input.c: added a prototype controller - module using the linux input event interface. - - * etc/controllerrc: added example config for linux input device. - -2004-06-16 Michael Natterer - - * app/widgets/gimpcontrollers.c: load the controller's - properties from the controllerrc file. - - * etc/controllerrc: set the wheel's properties. - -2004-06-16 Michael Natterer - - * etc/controllerrc: use the 10% actions for opacity. - -2004-06-16 Michael Natterer - - * app/widgets/gimpcontrollers.c: ref the actions when putting - them in the mapping table. - - * app/actions/context-actions.c: added actions to change the - opacity in 10% steps. - -2004-06-16 Michael Natterer - - * libgimpwidgets/gimpcontroller.[ch]: added a "name" property. - Dispatch events only if the controller is enabled. - - * app/widgets/gimpcontrollerwheel.c: added controller events for - all possible modifier combinations. - - * etc/Makefile.am - * etc/controllerrc: default controllerrc which maps all unused - wheel+modifier combinations to more-or-less usefull stuff. - -2004-06-16 Michael Natterer - - Started to fix bug #106920 in a more genreral way: - - * libgimpwidgets/Makefile.am - * libgimpwidgets/gimpwidgetstypes.h - * libgimpwidgets/gimpwidgetsmarshal.list - * libgimpwidgets/gimpcontroller.[ch]: new abstract base class - which provides an API for pluggable input controller modules - (mouse wheel, usb/midi stuff etc.). - - * app/widgets/Makefile.am - * app/widgets/widgets-types.h - * app/widgets/gimpcontrollerwheel.[ch]: subclass of the above - which maps wheel mouse scroll events to controller events. - - * app/widgets/gimpcontrollers.[ch]: manager for controllers. - reads $(gimpdir)/controllerrc and keeps a mapping of controller - events to GtkActions. - - * app/gui/gui.c: initialize and shut down the controller stuff. - - * app/display/gimpdisplayshell-callbacks.c - (gimp_display_shell_canvas_tool_events): if a wheel controller - exists, dispatch GdkEventScroll to it first and return if it was - handled. - -2004-06-15 Sven Neumann - - * tools/pdbgen/pdb/text_tool.pdb: deprecate the XLFD-based API - gimp_text() and gimp_text_get_extents(). - - * app/pdb/text_tool_cmds.c - * libgimp/gimptexttool_pdb.[ch]: regenerated. - -2004-06-15 Manish Singh - - * tools/pdbgen/pdbgen.pl - * tools/pdbgen/lib.pl: some simplistic code to add a $deprecated - flag to pdb definitions, which translates into GIMP_DISABLE_DEPRECATED - guards in lib headers. - -2004-06-15 Michael Natterer - - * app/actions/Makefile.am - * app/actions/context-actions.[ch] - * app/actions/context-commands.[ch]: added new action group to - modify all GimpContext properties. So far there are actions to - cycle through the lists of brushes, patterns etc., to change the - opacity, to swap and default colors and to edit generated brushes. - - * app/actions/actions.c: register the new "context" action group. - - * app/actions/tools-actions.c - * app/actions/tools-commands.[ch]: removed "tools-default-colors" - and "tools-swap-colors" actions and callbacks because they are - in the "context" action group now. - - * app/menus/menus.c: add the "context" group to the and - UI managers. - - * menus/image-menu.xml.in: changed accordingly. Added a temporary - "Context" menu to test and debug the new actions. - -2004-06-15 Philip Lafleur - - * app/tools/gimpcroptool.c (crop_selection_callback): Force - aspect ratio to match selection when 'From Selection' is clicked. - Fixes bug #144361. Also converted tabs to spaces. - -2004-06-15 Sven Neumann - - * plug-ins/common/mng.c (respin_cmap): applied the fix for empty - colormaps (bug #143009) here as well. - -2004-06-15 Philip Lafleur - - * app/core/gimpdrawable-transform.c - (gimp_drawable_transform_tiles_affine): Don't round texture - coordinates when not using interpolation. Fixes bug #144352 for - the nearest neighbor case only. - -2004-06-14 Sven Neumann - - * app/paint/gimpinkoptions.c: replaced some arbitrary values with - larger but still arbitrary values (default and limit for ink size). - -2004-06-14 Michael Natterer - - * app/paint/gimppaintcore.[ch]: removed PRETRACE_PAINT and - POSTTRACE_PAINT from the GimpPaintCoreState enum. Removed - "gboolean traces_on_window" from GimpPaintCoreClass. - - * app/paint/gimpclone.[ch] - * app/paint/gimpink.c - * app/tools/gimpclonetool.c: changed accordingly. - - * app/tools/gimppainttool.c: ditto. Show the brush outline - while painting. Fixes bug #118348. - -2004-06-14 Michael Natterer - - * app/tools/gimptransformtool.c: use gimp_draw_tool_is_active() - instead of GIMP_IS_DISPLAY(draw_tool->gdisp). - -2004-06-14 Michael Natterer - - * app/widgets/gimpactiongroup.c (gimp_action_group_add_*_actions): - do the workaround for "" accelerators only if the GTK+ version - is smaller than 2.4.3. Fixes bug #144342 for GTK+ >= 2.4.3. - -2004-06-14 Sven Neumann - - * app/core/gimpdrawable-transform.c: declared - gimp_drawable_transform_cubic() as inline function. Makes - sample_cubic() run about 10% faster and causes a 7% speedup on - cubic transformations. - - * app/paint-funcs/paint-funcs.c (border_region): avoid an - unnecessary memory allocation. - -2004-06-14 Philip Lafleur - - * app/tools/gimptransformtool.c: Disable preview in corrective - mode, and notify preview when switching transform type and - direction. - -2004-06-14 Michael Natterer - - * app/paint/gimppaintcore.[ch]: added new virtual function - GimpPaintCore::post_paint() and call it after calling - GimpPaintCore::paint(). - - * app/paint/gimpbrushcore.[ch]: renamed brush_core->grr_brush - to brush_core->main_brush and reset brush_core->brush - to brush_core->main_brush in GimpPaintCore::post_paint(). - - * app/paint/gimpbrushcore.c - * app/paint/gimppaintcore-stroke.c - * app/tools/gimppainttool.c: removed all code which restores - the brush_core's old brush after painting since post_paint() - does this automatically now. - - * app/paint/gimpclone.[ch]: moved static variables to the - GimpClone struct. - -2004-06-14 Sven Neumann - - * app/paint-funcs/paint-funcs-generic.h (color_pixels): some code - cleanup I did while attempting to optimize this code further. - -2004-06-14 Henrik Brix Andersen - - * app/plug-in/plug-in-run.c: let extensions run synchronously when - called via PDB. Fixes bug #140112. - -2004-06-14 Philip Lafleur - - * app/tools/gimptransformtool.c: Preview is now only used for - layer transformations. - -2004-06-14 Michael Natterer - - * app/tools/gimpperspectivetool.c - * app/tools/gimprotatetool.c - * app/tools/gimpscaletool.c - * app/tools/gimpsheartool.c: removed calls to - gimp_transform_tool_expose_preview() from all - GimpTransformTool::motion() implementations... - - * app/tools/gimptransformtool.c: ...and call it after calling - tr_tool_class->preview(). - -2004-06-14 Michael Natterer - - * app/display/gimpdisplayshell.[ch]: remember the last used - GimpCursorFormat so changing the format in prefs applies - instantly, and not after the next tool change. - - * app/display/gimpdisplayshell-cursor.[ch] - * app/tools/gimptool.[ch] - * app/tools/gimptoolcontrol.[ch] - * app/tools/gimpclonetool.c - * app/tools/gimpcolortool.c - * app/tools/gimpcroptool.c - * app/tools/gimpcurvestool.c - * app/tools/gimpiscissorstool.c - * app/tools/gimpmeasuretool.c - * app/tools/gimpmovetool.c - * app/tools/gimptransformtool.c: s/GdkCursorType/GimpCursorType/g - -2004-06-14 Philip Lafleur - - * app/tools/gimptransformtool.c (gimp_transform_tool_doit): Preview - wasn't being turned off before performing a transformation. Also - converted tabs to spaces. - -2004-06-14 Philip Lafleur - - * app/display/gimpdisplayshell-preview.c: Transformation previews now - use the selection mask if it is present. - -2004-06-13 Manish Singh - - * configure.in: Make sure PangoFT2 is using a recent enough fontconfig - since many people have broken and confused setups. - -2004-06-13 Manish Singh - - * tools/pdbgen/pdb/gradient_edit.pdb: cleans ups so generated - output doesn't warn about uninitialize variable use, and whitespace - cosmetic cleanups. - - * app/pdb/gradient_edit_cmds.c: regenerated. - -2004-06-13 Manish Singh - - * app/base/cpu-accel.c: Reorged, to address bug #142907 and - bug #143069. Accel implementations #define HAVE_ACCEL, and cpu_accel() - keys on that. Both PPC and X86 implementations check for __GNUC__. - X86 stuff is only used with USE_MMX is defined. The SSE OS check - is now checked in arch_accel(), not cpu_accel(). Finally, the - arch x86_64 checks now are EM64T aware (which didn't matter in - practice). - -2004-06-13 Philip Lafleur - - * app/display/gimpdisplayshell-preview.c: use drawable_mask_bounds() - for texture coordinates instead of the drawable's width and height. - -2004-06-13 Sven Neumann - - * app/paint-funcs/paint-funcs.c (shapeburst_region): don't call - tile_ewidth() three times from the inner loop. - - * app/base/tile-manager.c (tile_manager_get): don't call - tile_size() twice on the same tile. - - * app/base/tile-private.h: added tile_size_inline(), an inline - version of the tile_size() function. - - * app/base/tile-cache.c - * app/base/tile-manager.c - * app/base/tile-swap.c - * app/base/tile.c: use tile_size_inline() from inside the tile - subsystem. - -2004-06-13 Simon Budig - - * app/tools/gimpiscissorstool.c: Minor tweaks to two macros. - Shouldn't change anything. - -2004-06-13 Jakub Steiner - - * cursors/tool-zoom.png: - * cursors/cursor-zoom.png: minor fsckup - -2004-06-13 Jakub Steiner - - * cursors/gimp-tool-cursors.xcf - * cursors/tool-burn.png: the burn tool doesn't really have an - inverted handle - -2004-06-13 Sven Neumann - - * app/paint-funcs/paint-funcs.[ch] (shapeburst_region): added - progress callback. - - * app/core/gimpdrawable-blend.c: show a progress while calculating - the Shapeburst. Not perfect but better than not showing any - progress at all. - -2004-06-13 Michael Natterer - - * app/widgets/widgets-enums.[ch]: added enum GimpCursorFormat - which can be one of { BITMAP, PIXBUF, PIXBUF-PREMULTIPLY } to - work around broken X servers. - - * app/config/gimpguiconfig.[ch] - * app/config/gimprc-blurbs.h: added GimpGuiConfig::cursor-format. - - * app/gui/preferences-dialog.c: added a GUI for the new option. - - * app/widgets/gimpcursor.[ch]: added cursor_format parameter - to gimp_cursor_new() and _set(). - - * app/display/gimpdisplayshell-cursor.c - * app/tools/gimpcurvestool.c - * app/widgets/gimpdialogfactory.c: pass an appropriate cursor_mode. - -2004-06-12 Philip Lafleur - - * app/core/gimpdrawable-blend.c: added missing semicolon. - -2004-06-12 Philip Lafleur - - * app/display/gimpdisplayshell-callbacks.c: Fixed incorrect logic that - caused perfect-but-slow pointer tracking to be used in tools that - don't request exact mode. - - * app/display/Makefile.am: - * app/display/gimpdisplayshell-appearance.[ch]: - * app/display/gimpdisplayshell-callbacks.c: - * app/display/gimpdisplayshell.[ch]: - * app/display/gimpdisplayshell-preview.[ch]: added - * app/tools/gimpperspectivetool.c: - * app/tools/gimprotatetool.c: - * app/tools/gimpscaletool.c: - * app/tools/gimpsheartool.c: - * app/tools/gimptransformoptions.[ch]: - * app/tools/gimptransformtool.[ch]: Implemented live transformation - previews, available through tool options. Fixes bug #108172. - -2004-06-13 Sven Neumann - - * app/core/gimpdrawable-blend.c (gradient_render_pixel): inline - the repeat functions. - - * app/core/gimpgradient.c: inline the curve functions. - -2004-06-13 Jakub Steiner - - * cursors/gimp-tool-cursors.xcf - * cursors/tool-zoom.png: make more transparent - -2004-06-13 Jakub Steiner - - * cursors/gimp-tool-cursors.xcf - * cursors/tool-blur.png - * cursors/tool-bucket-fill.png - * cursors/tool-dodge.png - * cursors/tool-eraser.png - * cursors/tool-hand.png: fix a few problems hidden by low opacity - -2004-06-13 Jakub Steiner - - * cursor/*png: updated the cursors - -2004-06-13 Michael Natterer - - * cursors/gimp-tool-cursors.xcf: added nice new antialiased - cursor layers made by Jimmac. - -2004-06-13 Sven Neumann - - * app/core/gimppalette.c (gimp_palette_load): don't use the rather - inefficient gimp_palette_add_entry() when loading a palette. - -2004-06-13 Michael Natterer - - * app/core/gimpdata.[ch]: added "gint freeze_count" and - gimp_data_freeze()/thaw() functions. Emit "dirty" only if - freeze_count either is 0 or drops to 0. - - * app/core/gimpbrushgenerated.[ch] - * app/core/gimpgradient.[ch]: removed freeze/thaw stuff that - was duplicated in these two subclasses and use the new - GimpData API instead. - - * app/widgets/gimpbrusheditor.c - * app/widgets/gimpgradienteditor.c: changed accordingly. - -2004-06-12 Sven Neumann - - * app/widgets/gimpcolorbar.c (gimp_color_bar_expose): don't copy - the first row onto itself. - -2004-06-12 Simon Budig - - * app/tools/gimptransformtool.c: Make Enter/Return apply the - transformation, Backspace/Delete resets the transformation. - - * app/tools/gimpcroptool.c: Simplify the key_press callback. - -2004-06-12 Simon Budig - - * app/tools/gimpcroptool.c: Make the Enter/Return key do - the crop action. - - * app/tools/gimpeditselectiontool.c - * app/tools/gimpvectortool.c: Make the _key_press functions - safe for non-arrow keys. - -2004-06-12 Sven Neumann - - * app/composite/gimp-composite.[ch]: just some cleanup. - -2004-06-12 Michael Natterer - - * app/display/gimpdisplayshell-callbacks.c - (gimp_display_shell_events): ported some forgotten #if 0'ed - GtkItemFactory stuff to GtkUIManager. - -2004-06-12 Simon Budig - - * app/tools/gimptool.[ch]: renamed the "arrow_key" member - to "key_press", since it is now no longer about just the arrow - keys. - - * app/tools/gimpcroptool.c - * app/tools/gimpeditselectiontool.c - * app/tools/gimpeditselectiontool.h - * app/tools/gimpmovetool.c - * app/tools/gimppainttool.c - * app/tools/gimpselectiontool.c - * app/tools/gimptexttool.c - * app/tools/gimpvectortool.c - * app/tools/tool_manager.c: Changed accordingly. - -2004-06-12 Michael Natterer - - * app/display/gimpdisplayshell.c (gimp_display_shell_init): add - the file DND destination before all others so the DND code will - implicitly use its destination properties. Works around Konqueror - offering only file MOVE, not COPY and fixes bug #144168. - -2004-06-12 Sven Neumann - - * plug-ins/common/sample_colorize.c: reindented, some minor cleanup. - -2004-06-12 Simon Budig - - * app/tools/tool_manager.[ch]: renamed - tool_manager_arrow_key_active to tool_manager_key_press_active. - - * app/display/gimpdisplayshell-callbacks.c: Also dispatch - GDK_Return/KP_Enter/BackSpace/Delete to the tools, the - "arrow_key" member of GimpTool probably should be renamed. - - * app/tools/gimpvectortool.c: Use Enter/Return to convert the - current path to a selection, use Backspace/Delete to delete the - currently active anchors in a path. - - Implemented on Jimmacs request - thanks to him and Iva for being - a great host :) - -2004-06-12 Sven Neumann - - * app/widgets/gimphistogrameditor.c (gimp_histogram_editor_init): - set the initially selected channel on the histogram combobox. - Fixes bug #144225. - -2004-06-12 Philip Lafleur - - * app/paint/gimppaintoptions.[ch]: renamed all "pressure-pressure" - variables to "pressure-hardness". - - * app/paint/gimpairbrush.c: - * app/tools/gimppaintoptions-gui.c: changed accordingly. - -2004-06-10 Michael Natterer - - * libgimpwidgets/gimpcolorarea.c: replaced destroy() by - finalize(), converted tabs to spaces, cleanup. - -2004-06-10 Michael Natterer - - * app/widgets/gimpthumbbox.c (gimp_thumb_box_new): line-wrap the - filename label if it's too long instead of cutting it off. - -2004-06-10 Michael Natterer - - * app/widgets/widgets-enums.h (enum GimpCursorModifier): - s/GIMP_LAST_CURSOR_MODIFIER_ENTRY/GIMP_CURSOR_MODIFIER_LAST/. - - * app/widgets/gimpcursor.c: changed accordingly. Renamed struct - GimpBitmapCursor to GimpCursor. More cleanup. - -2004-06-10 Michael Natterer - - * app/actions/image-actions.c - * app/actions/image-commands.[ch] - * app/actions/layers-actions.c - * app/actions/layers-commands.[ch]: made the - "image-convert-rgb/grayscale/indexed" and the - "layers-mask-apply/delete" actions GimpEnumActions and merged - their callbacks. - -2004-06-10 Philip Lafleur - - * app/gui/preferences-dialog.c: restored the 'Show Paint Tool - Cursor' option that was removed during clean-up. - -2004-06-10 Philip Lafleur - - * app/paint/gimpbrushcore.c (gimp_brush_core_pressurize_mask): - avoided some redundant calculations. - -2004-06-10 Sven Neumann - - * app/gui/user-install-dialog.c: removed the monitor calibration - from the user installation process. It's not a vital setting and - can be done from the Preferences dialog later. - - * app/gui/resolution-calibrate-dialog.[ch]: simplified the - resolution calibration dialog by removing the hacks that were - needed for drawing it in the user-installation style. - - * app/gui/preferences-dialog.c: changed accordingly. Also removed - the separator from the Display page. - -2004-06-10 Sven Neumann - - * app/widgets/gimptemplateeditor.[ch]: added an API to - expand/collapse the "Advanced Options" frame. - - * app/gui/preferences-dialog.c - * app/widgets/gimphelp-ids.h: applied a patch done by William - Skaggs that cleans up and reorganizes the Preferences dialog - (bug #144060). - -2004-06-09 Simon Budig - - * app/core/gimpcoords.[ch]: renamed gimp_coords_length2 to - gimp_coords_length_squared. - - * app/vectors/gimpbezierstroke.c: Changed accordingly - -2004-06-09 Sven Neumann - - * app/tools/gimppenciltool.c (gimp_pencil_tool_init): no need to - request GIMP_MOTION_MODE_EXACT here since the parent class does - that already. - - * app/tools/gimpinktool.c (gimp_ink_tool_init): ditto. Enable the - color picker feature for the ink tool. - -2004-06-09 Sven Neumann - - * menus/image-menu.xml.in: added "Selection Editor" to the - Selection menu. Still hoping for the great menu reorganization - though... - - * app/actions/select-actions.c (select_actions_update): "Save to - Channel" makes sense without a selection also, so don't set it - insensitive. - -2004-06-07 Sven Neumann - - * plug-ins/common/glob.c: the glob(3) function is not available on - Win32 and also isn't necessarily UTF-8 safe. Started to add an - alternative implementation. Right now there's just some code taken - from GTK+ (an UTF-8 save fnmatch() implementation) and the plug-in - does nothing useful. I will add some stripped-down glob code based - on the code in glibc later. - -2004-06-07 Michael Natterer - - * app/core/gimplayer.c (gimp_layer_set_tiles): don't set - layer->mask's offsets. It is wrong because GimpDrawable::set_tiles() - is a lowlevel function which is used by stuff like scale and - resize which keep the mask in sync explicitely and don't expect it - to be moved in the middle of chaining up. Fixes bug #143860. - -2004-06-07 Michael Natterer - - * app/actions/view-actions.c - * app/actions/view-commands.[ch]: added separate callback for - "view-zoom-other" and connect GtkAction::activate manually so - "Other..." can be selected even if it's the active item in the - zoom radio group. Fixes bug #143850. - -2004-06-07 Sven Neumann - - * plug-ins/common/tileit.c (tileit_dialog): fixed a typo. - -2004-06-07 Sven Neumann - - * app/menus/plug-in-menus.c (plug_in_menus_setup): sort the menus - by the translated menu path stripped from underscores. - -2004-06-06 Sven Neumann - - * plug-ins/common/gauss.c (gauss): fixed a stupid cut'n'paste bug - I introduced yesterday. - -2004-06-06 Sven Neumann - - * plug-ins/common/gauss.c (query): register the menu entry the new - way and install a mnemonic for Gaussian Blur. - -2004-06-05 Sven Neumann - - * plug-ins/common/curve_bend.c: applied a patch from Henrik Brix - Andersen that tells the user that Curve Bend cannot operate on - layers with masks instead of silently applying the mask - (bug #134748). - -2004-06-05 Sven Neumann - - * plug-ins/common/plugin-defs.pl - * plug-ins/common/Makefile.am - * plug-ins/common/gauss_iir.c - * plug-ins/common/gauss_rle.c: removed the two gaussian blur - plug-ins... - - * plug-ins/common/gauss.c: and added a merged version done by - William Skaggs. Fixes bug #134088. - -2004-06-05 Sven Neumann - - * plug-ins/sgi/sgi.c: applied a patch from Philip Lafleur that - makes the plug-in handle images with more than 4 channels. At the - moment the extra information is discarded (bug #143673). - -2004-06-05 Sven Neumann - - * plug-ins/common/unsharp.c: applied a modified patch from Geert - Jordaens that adds a preview to the Unsharp Mask plug-in. Fixes - bug #140974. - -2004-06-05 Sven Neumann - - * app/paint/gimppaintcore.c - * app/paint-funcs/paint-funcs-generic.h - * app/paint-funcs/paint-funcs.[ch]: applied a patch from Philip - Lafleur that changes the way that paint is applied during a paint - stroke. Fixes bug #124225. - -2004-06-05 Sven Neumann - - * plug-ins/common/Makefile.am - * plug-ins/common/plugin-defs.pl - * plug-ins/common/glob.c: added a simple glob plug-in based on - some old code by George Hartz. This plug-in is very useful when - you need to do batch processing, especially from Script-Fu. - Fixes bug #143661. - -2004-06-05 Sven Neumann - - * app/widgets/gimpgradienteditor.c: applied a patch from David - Gowers that makes the gradient editor display the perceptual - intensity of the color under the cursor (bug #135037). - -2004-06-05 Sven Neumann - - * plug-ins/common/snoise.c: applied a modifed patch from Yeti that - adds a preview to the Solid Noise plug-in (bug #142587). - -2004-06-05 Sven Neumann - - * plug-ins/common/tiff.c: save the proper value for type of alpha - channel. Fixes bug #143522; patch by Philip Lafleur. - -2004-06-05 Manish Singh - - * app/gui/preferences-dialog.c (prefs_dialog_new): update call - to prefs_spin_button_add for num-processors too. - -2004-06-05 Sven Neumann - - * plug-ins/script-fu/script-fu-scripts.c (script_fu_interface): - left align toggle buttons. - -2004-06-05 Sven Neumann - - * app/text/gimptextlayer-transform.[ch]: updated the (still unused) - text transformation code. - - * app/text/gimptext-bitmap.c: removed a redundant transformation. - -2004-06-05 Michael Natterer - - * cursors/Makefile.am - * cursors/cursor-none.png - * cursors/xbm/cursor-none.xbm: new empty cursor images. - - * app/config/gimpdisplayconfig.[ch] - * app/config/gimprc-blurbs.h - * app/widgets/widgets-enums.h - * app/widgets/gimpcursor.c - * app/display/gimpdisplayshell-cursor.c - * app/tools/gimppainttool.[ch] - * app/tools/gimpinktool.c - * app/gui/preferences-dialog.c: applied patches from Philip - Lafleur which implement hiding the cursor completely for paint - tools. Changed the name of the config option from - "hide-paint-tool-cursor" to "show-paint-tool-cursor" and default - to TRUE because this needs the brush outline being visible while - painting to be really usable. Fixes bug #132163. - - * app/widgets/widgets-enums.h: renamed all GimpCursorType and - GimpToolCursorType enum values to GIMP_CURSOR_* and - GIMP_TOOL_CURSOR_*. - - * app/widgets/gimpcursor.c - * app/display/gimpdisplayshell-callbacks.c - * app/display/gimpdisplayshell-cursor.c - * app/tools/gimp*tool.c; changed accordingly. - -2004-06-04 Michael Natterer - - * app/widgets/gimpcursor.c: changed create_cursor_foo() utility - functions to get_cursor_foo() and use them as accessors instead of - using cursor->member. Use gdk_pixbuf_copy() instead of compositing - the initial image onto an empty pixbuf. - -2004-06-04 Sven Neumann - - * app/widgets/gimptexteditor.c (gimp_text_editor_new): set the - focus on the text area. - -2004-06-04 Sven Neumann - - * app/tools/gimptexttool.c (gimp_text_tool_class_init): allow to - move a text layer using the cursor keys. - -2004-06-04 Michael Natterer - - * cursors/*.xbm: removed... - - * cursors/xbm/*.xbm: ...and added here instead. Renamed them - all to match the PNG file names. - - * cursors/Makefile.am: changed accordingly. - - * app/widget/gimpcursor.c: ditto. Merged the two cursor creating - functions again because they duplicated too much code. - -2004-06-04 Sven Neumann - - * app/menus/plug-in-menus.c (plug_in_menus_setup): populate the - tree with collation keys and use strcmp() instead of - g_utf8_collate() as the tree's sort function. - -2004-06-04 Sven Neumann - - * app/paint/gimppaintoptions.c (DEFAULT_PRESSURE_PRESSURE): - applied a patch by Philip Lafleur that changes the default to - FALSE. Fixes bug #143626. - -2004-06-03 Michael Natterer - - * app/widgets/gimptoolbox.c (gimp_toolbox_size_allocate): use - gtk_widget_size_request() instead of _get_child_requisition() - because we need to know the size of the toolbox' areas - even if they are invisible. Fixes SIGFPE spotted by Jimmac. - -2004-06-03 Michael Natterer - - * app/widgets/gimpcursor.c: some cleanup. Make the tool_cursor - and cursor_modifier components slightly transparent. - - * cursors/cursor-mouse.png: was the wrong image. - -2004-06-03 Michael Natterer - - * cursors/Makefile.am - * cursors/*.png: added PNG version of all cursors. - - * cursors/gimp-tool-cursors.xcf: reordered and renamed all layers - to match the new PNG filenames. - - * app/widgets/gimpcursor.[ch]: create cursors with alpha and color - if the GdkDisplay supports it. Fall back to the old stuff - otherwise. - -2004-06-03 Sven Neumann - - * app/core/gimppattern.c (gimp_pattern_load_pixbuf): if a Title is - set, use that as the pattern name. - -2004-06-03 Sven Neumann - - * app/core/gimpdatafactory.c (gimp_data_factory_load_data): - removed commented-out message. - - * app/core/gimppattern.[ch]: fixed handling of errors and PNG - comments in new pattern loader. Renamed functions for consistency - with other data loaders. - - * app/core/gimp.c: changed accordingly. - -2004-06-03 Dave Neary - - * app/core/gimp.c: - * app/core/gimpdatafactory.c: - * app/core/gimppattern.[ch]: Add support for GdkPixbuf patterns, - so now all of png, jpex, pnm, xbm, bmp, gif, ico, pcx, ras, tga, - xpm and tiff can be used for patterns. - -2004-06-03 Michael Natterer - - * app/actions/vectors-actions.c: added alternative actions - "vectors-selection-from-vectors" and - "vectors-selection-to-vectors-short" with different labels suited - for the "Select" menu. - - * app/actions/select-actions.c: removed "select-from-vectors" - and "select-to-vectors" (to vectors was crashing anyway). - - * app/actions/select-commands.[ch]: removed - select_from_vectors_cmd_callback(). Fixes code dupliction. - - * menus/image-menu.xml.in - * menus/selection-editor-menu.xml: changed accordingly. - -2004-06-03 Michael Natterer - - * app/widgets/gimpgradienteditor.c (control_motion): use the newly - added GimpGradient API to set the segment's handles instead of - setting the values directly. Dirties the gradient correctly and - makes the preview update instantly again. Fixes bug #143605. - -2004-06-03 Sven Neumann - - * app/gui/file-open-location-dialog.c - (file_open_location_completion): check for NULL pointer before - passing it to g_utf8_normalize(). Just a workaround for a problem - in GimpContainerView. - -2004-06-02 Sven Neumann - - * INSTALL: more updates. - -2004-06-02 Sven Neumann - - * Made 2.1.0 development release. - -2004-06-02 Sven Neumann - - * app/display/gimpdisplayshell-scale.c - * app/gui/info-window.c - * app/gui/preferences-dialog.c - * app/gui/resize-dialog.c - * app/tools/gimpcolorbalancetool.c - * app/tools/gimpcurvestool.c - * app/tools/gimphuesaturationtool.c - * app/tools/gimplevelstool.c - * app/tools/gimpthresholdtool.c - * app/widgets/gimpdockable.c - * app/widgets/gimpfiledialog.c - * app/widgets/gimpgradienteditor.c - * app/widgets/gimphistogrambox.c - * app/widgets/gimplayertreeview.c - * app/widgets/gimpstrokeeditor.c: tweaked some spacings for - consistency and better HIG compliance. - -2004-06-02 Michael Natterer - - * tools/pdbgen/pdb/gradient_edit.pdb: set_blending_function() and - set_coloring_type() work on segment ranges, renamed them - accordingly. Spotted by Shlomi Fish. - - * app/pdb/gradient_edit_cmds.c - * libgimp/gimpgradientedit_pdb.[ch]: regenerated. - -2004-06-02 Michael Natterer - - * app/widgets/gimpdnd.[ch]: removed utility funtion - gimp_dnd_open_files(). - - * app/widgets/gimptoolbox-dnd.c: added gimp_toolbox_drop_files() - instead. - - * app/display/gimpdisplayshell-dnd.c (gimp_display_shell_drop_files): - show the error message if opening a dropped file fails. - -2004-06-02 Sven Neumann - - * libgimpthumb/gimpthumbnail.c: plugged a small memory leak. - -2004-06-02 Michael Natterer - - * app/widgets/gimpdnd.h: removed enum GimpDndType... - - * app/widgets/widgets-enums.h: ...and added it here. - - * app/widgets/gimpdnd.c: added more g_return_if_fail(). Allow - all gimp_dnd_foo_dest_add() functions to be called without - callback (just add the target if callback is NULL). - - (gimp_dnd_open_files): removed the checks for validity of the - passed filenames/uris... - - (gimp_dnd_set_file_data): ...and added it here so all callbacks - get an already sanitized list of strings. - -2004-06-02 Sven Neumann - - * app/actions/Makefile.am (EXTRA_DIST) - * app/menus/Makefile.am (EXTRA_DIST): removed makefile.msc until - they have been added. - -2004-06-02 Sven Neumann - - * app/widgets/gimpcontainerview.c: create the hash table when - inserting items; removes redundant create/destroy cycles and plugs - a memory leak. - -2004-06-02 Sven Neumann - - * INSTALL: updated for gimp-2.1. Suggest to use gimp-print - version 4.2.7-pre1 in case of problems (see bug #138273). - -2004-06-02 Michael Natterer - - * app/display/gimpdisplayshell-dnd.c - (gimp_display_shell_drop_files): copy the merged layer, not the - first one. Preserve the type of the layer to make e.g. dropping an - XCF with a single text layer work. - -2004-06-02 Sven Neumann - - * NEWS - * README: updated. - -2004-06-02 Michael Natterer - - * app/display/gimpdisplayshell.c (gimp_display_shell_init): accept - file/uri drops. - - * app/display/gimpdisplayshell-dnd.[ch] - (gimp_display_shell_drop_files): open any kind of image and turn - it into a single layer which is added to the image (suggested by - Antenne Springborn). - -2004-06-02 Sven Neumann - - * tools/pdbgen/pdb/gradient_edit.pdb - * tools/pdbgen/pdb/gradients.pdb: mark new API as new using $since. - - * libgimp/gimpgradientedit_pdb.c - * libgimp/gimpgradients_pdb.c: regenerated. - -2004-06-02 Michael Natterer - - * tools/pdbgen/pdb/gradient_edit.pdb: forgot two more s/int32/enum/. - - * app/pdb/gradient_edit_cmds.c - * libgimp/gimpgradientedit_pdb.[ch]: regenerated. - -2004-06-01 Sven Neumann - - * tools/pdbgen/pdb/image.pdb - * app/pdb/image_cmds.c - * app/core/gimpimage.[ch]: reverted changes I did to the image - unit earlier. As in 2.0, it will continue to not accept pixels. - This makes the PDB API and the XCF format compatible again and - fixes bug #142961 (and to some extent bug #137704). - - * app/core/Makefile.am - * app/core/gimpimage-unit.[ch]: removed these files. The - convenience accessors defined here aren't commonly used any - longer. - - * app/display/gimpdisplay.[ch] - * app/display/gimpdisplayshell.[ch]: added a unit parameter to - gimp_display_new(). Made "unit" and "scale" properties of - GimpDisplayShell. - - * app/actions/image-commands.c - * app/actions/images-commands.c - * app/actions/layers-commands.c - * app/actions/select-commands.c - * app/actions/view-commands.c - * app/core/gimp-edit.c - * app/core/gimp.[ch] - * app/core/gimptemplate.c - * app/display/gimpdisplayshell-handlers.c - * app/display/gimpdisplayshell-scale.c - * app/display/gimpdisplayshell-title.c - * app/display/gimpstatusbar.c - * app/file/file-open.c - * app/gui/gui-vtable.c - * app/gui/info-window.c - * app/gui/offset-dialog.c - * app/gui/resize-dialog.[ch] - * app/pdb/display_cmds.c - * app/tools/gimpcroptool.c - * app/tools/gimpmeasuretool.c - * app/tools/gimppainttool.c - * app/tools/gimprectselecttool.c - * app/tools/gimprotatetool.c - * app/tools/gimpscaletool.c - * app/vectors/gimpvectors-export.c - * app/widgets/gimptoolbox-dnd.c - * tools/pdbgen/pdb/display.pdb: changed accordingly. Use the - display unit where the image unit was used before. - -2004-06-01 Michael Natterer - - * tools/pdbgen/pdb/gradient_edit.pdb: use enums instead of - integers, cleanup. - - * app/pdb/gradient_edit_cmds.c - * libgimp/gimpgradientedit_pdb.[ch]: regenerated. - -2004-06-01 Michael Natterer - - * app/core/gimpdatafactory.[ch]: added new function - gimp_data_factory_data_delete(). - - * app/actions/data-commands.c (data_delete_callback): use it. - - * tools/pdbgen/pdb/gradients.pdb: applied (slightly modified) - patch from Shlomi Fish which adds PDB wrappers to create, delete, - duplicate and rename gradients. Fixes bug #143528. - - * app/pdb/gradients_cmds.c - * app/pdb/internal_procs.c - * libgimp/gimpgradients_pdb.[ch]: regenerated. - -2004-06-01 Michael Natterer - - * app/core/core-enums.h: renamed the values of the - GimpGradientSegment* enums from GIMP_GRAD_* to - GIMP_GRADIENT_SEGMENT_* because they are exported now. - - * app/core/gimp-gradients.c - * app/core/gimpgradient.c - * app/actions/gradient-editor-actions.c: changed accordingly. - - * libgimp/gimpenums.h - * plug-ins/pygimp/gimpenums.py - * plug-ins/script-fu/script-fu-constants.c - * tools/pdbgen/enums.pl: regenerated. - -2004-06-01 Sven Neumann - - * plug-ins/common/tiff.c: don't call gtk_entry_set_text() with a - NULL text. - -2004-06-01 Michael Natterer - - * app/widgets/gimpcontainertreeview-dnd.c - * app/widgets/gimpitemtreeview.c: some cleanup in the tree view - DND code. - -2004-06-01 Michael Natterer - - * app/widgets/gimpsessioninfo.c (gimp_session_info_restore): added - a horrible hack that sets the paned's position after the first - "size-allocate" after "map". Makes position remembering work for - the toolbox and fixes bug #142697. - - * app/widgets/gimpdockable.[ch]: added new function - gimp_dockable_set_tab_style() - - * app/actions/dockable-commands.c (dockable_tab_style_cmd_callback) - * app/widgets/gimpsessioninfo.c (gimp_session_info_restore): - use gimp_dockable_set_tab_style(). - -2004-06-01 Michael Natterer - - * app/widgets/gimptoolbox.c (toolbox_area_notify): removed - unused variable. - -2004-06-01 Sven Neumann - - * plug-ins/common/autocrop.c (query): register as "Autocrop Image" - and "Autocrop Layer". - -2004-06-01 Sven Neumann - - * app/actions/image-commands.c (image_new_cmd_callback): - initialize the dialog by calling file_new_dialog_set(). Fixes bug - #143477. - -2004-05-31 Sven Neumann - - * app/widgets/gimpcontainerentry.[ch]: export the column enum. - - * app/gui/file-open-location-dialog.c: use a GimpContainerEntry - on the documents list. Use a custom match function that matches - without the leading protocol part. - -2004-05-31 Michael Natterer - - * app/widgets/Makefile.am - * app/widgets/gimptoolbox-image-area.[ch]: new toolbox area which - shows the active image. - - * app/config/gimpguiconfig.[ch] - * app/config/gimprc-blurbs.h: added config options to control the - visibility of the toolbox' color, indicator and image areas. - - * app/widgets/gimptoolbox.[ch]: added the image area and honor the - new config options. Put the various areas into their own wrap box. - - * app/widgets/gimptoolbox-dnd.c: changed accordingly. - - * app/widgets/gimphelp-ids.h: added a help ID for the image area. - - * app/widgets/gimptoolbox-indicator-area.c: made the previews - a bit larger, cleanup. - - * app/gui/preferences-dialog.c: added a "Toolbox" page as GUI for - the new config options. - - * themes/Default/images/preferences/Makefile.am - * themes/Default/images/preferences/toolbox.png: a (wrong) icon - for the "Toolbox" prefs page. Needs to be replaced. - -2004-05-31 Sven Neumann - - * app/widgets/Makefile.am - * app/widgets/widgets-types.h - * app/widgets/gimpcontainerentry.[ch]: added new widget - GimpContainerEntry, a GtkEntry with completion that implements the - GimpContainerView interface. - - * app/tools/gimptextoptions.c (gimp_text_options_gui): added a - GimpContainerEntry to select the font. - -2004-05-31 Sven Neumann - - * app/Makefile.am - * app/actions/file-actions.c - * app/actions/file-commands.[ch] - * app/gui/Makefile.am - * app/gui/file-open-location-dialog.[ch] - * app/widgets/gimphelp-ids.h - * menus/image-menu.xml.in - * menus/toolbox-menu.xml.in: added a rudimentary "Open Location" - dialog. - -2004-05-31 Sven Neumann - - * plug-ins/common/mblur.c (mblur_zoom): push pixels outwards not - to the center as suggested by Chad Daelhousen (bug #142968). - -2004-05-31 Sven Neumann - - * plug-ins/common/mblur.c: applied patch from William Skaggs that - adds the possibility to choose the center of radial and zoom - motion blurs (bug #113711). - -2004-05-31 Sven Neumann - - * app/paint/gimpconvolve.c - * app/paint-funcs/paint-funcs.[ch] - * app/tools/gimpiscissorstool.c: reverted last change and applied - new patch instead (bug #72878). - -2004-05-31 Sven Neumann - - * app/paint/gimpconvolve.c - * app/paint-funcs/paint-funcs.[ch] - * app/tools/gimpiscissorstool.c: applied a patch from Philip - Lafleur that fixes RGBA resampling in Convolve tool (bug #72878). - -2004-05-31 Sven Neumann - - * plug-ins/imagemap/imap_cmd_gimp_guides.c - * plug-ins/imagemap/imap_edit_area_info.c - * plug-ins/imagemap/imap_preferences.c - * plug-ins/imagemap/imap_settings.c: need to include gimpwidgets.h. - -2004-05-31 Michael Natterer - - * app/core/core-enums.h - * app/core/gimpgradient.[ch] - * app/pdb/Makefile.am - * app/widgets/gimpgradienteditor.c - * tools/pdbgen/Makefile.am - * tools/pdbgen/groups.pl - * tools/pdbgen/pdb/gradient_edit.pdb: applied a patch from Shlomi - Fish that adds lots of gradient edit functions to - gimpgradient.[ch] and makes them available through the PDB. - Fixes bug #129675 and bug #129678. - - Did some cleanups / enhancments to the patch: - - * app/core/gimpgradient.[ch]: changed the naming scheme of the new - functions and changed old functions to match the new scheme. - Introduce a "freeze_count" and public freeze()/thaw() API which - enables subsequent gradient changes without "dirty" being emitted - all the time. Added GimpGradient parameters to all functions - which modify the gradient. - - * app/widgets/gimpgradienteditor.c: use the new freeze/thaw - stuff to keep the gradient from updating when not in - "Instant Update" mode. - - * app/actions/gradient-editor-commands.c: removed all gradient - editing code and call the new core functions. - - * libgimp/Makefile.am - * tools/pdbgen/pdb/gradient_edit.pdb: changed the namespace of all - added functions. Generate libgimp wrappers for them.. - - * app/pdb/gradient_edit_cmds.c - * app/pdb/internal_procs.c - * libgimp/gimp_pdb.h - * libgimp/gimpenums.h - * libgimp/gimpgradientedit_pdb.[ch] - * plug-ins/pygimp/gimpenums.py - * plug-ins/script-fu/script-fu-constants.c - * tools/pdbgen/enums.pl: (re)generated. - -2004-05-29 Sven Neumann - - * plug-ins/common/autocrop.c: applied patch from Philip Lafleur - that makes Autocrop register a new procedure that autocrops a - single layer as requested in bug #142618. - - * tools/pdbgen/pdb/layer.pdb - * app/pdb/layer_cmds.c - * libgimp/gimplayer_pdb.c: fixed documentation for gimp_resize_layer. - Patch provided by Philip Lafleur (bug #142618). - -2004-05-29 Sven Neumann - - * app/widgets/gimptemplateeditor.c - (gimp_template_editor_constructor): add the spinbuttons to the - size entry in the correct order. Fixes bug #143347. - -2004-05-28 Michael Natterer - - * app/widgets/gimpdnd.c (gimp_dnd_open_files): if the dropped - stuff is a local filename (no file URI), convert it to an - URI instead of forwarding it unmodified. - -2004-05-28 Michael Natterer - - * app/widgets/gimppreview.c (gimp_preview_button_press_event): - don't invoke the popup preview if there is no viewable. - -2004-05-28 Sven Neumann - - * app/widgets/gimppropwidgets.c: same workaround for tooltips on - combo boxes. - -2004-05-28 Sven Neumann - - * plug-ins/Lighting/lighting_ui.c - * plug-ins/MapObject/mapobject_ui.c - * plug-ins/common/warp.c - * plug-ins/gfig/gfig.c: tooltips can't be set on a GtkComboBox so - we need to pack it into a GtkEventBox when a tooltip is needed. - -2004-05-28 Michael Natterer - - * app/text/gimpfont.c (gimp_font_get_popup_size) - (gimp_font_get_new_preview): take both logical and ink rectangle - into account to avoid clipping away parts of the font preview. - Fixes bug #142277. - -2004-05-28 Michael Natterer - - * app/widgets/gimpcontainerview.[ch]: added "preview-size" and - "preview-border-width" properties. Cleanup. - - * app/widgets/gimpcontainerbox.c - * app/widgets/gimpcontainercombobox.c: implement them. - -2004-05-28 Michael Natterer - - * app/widgets/gimpcontainergridview.[ch] - * app/widgets/gimpcontainertreeview.[ch]: removed "reorderable" - from gimp_container_foo_view_new(). - - * app/widgets/gimpcontainereditor.[ch]: removed "reorderable" from - gimp_container_editor_construct(). Automatically set the view to - reorderable if the viewed container has no sort_func. - - * app/widgets/gimpbufferview.c - * app/widgets/gimpdatafactoryview.c - * app/widgets/gimpdocumentview.c - * app/widgets/gimpimageview.c - * app/widgets/gimptemplateview.c - * app/widgets/gimptoolview.c - * app/widgets/gimpundoeditor.c: removed reoderable stuff because - GimpContainerEditor does this generically now. - - * app/widgets/gimpcontainerpopup.c - * app/widgets/gimpfontview.c: set reorderable to FALSE because - they should not be reodered even if they don't have a sort_func. - - * app/gui/font-select.c: removed reorderable stuff. Some cleanup. - - * app/gui/brush-select.c - * app/gui/gradient-select.c - * app/gui/palette-select.c - * app/gui/pattern-select.c: same cleanups as in font-select.c - -2004-05-28 Michael Natterer - - * app/paint/gimpbrushcore.c - * app/paint/gimpdodgeburn.c - * app/paint/gimppaintcore.[ch] - * app/tools/gimpairbrushtool.c - * app/tools/gimpclonetool.c - * app/tools/gimpconvolvetool.c - * app/tools/gimpdodgeburntool.c - * app/tools/gimpinktool.c - * app/tools/gimppaintbrushtool.c - * app/tools/gimppenciltool.c - * app/tools/gimpsmudgetool.c: code review / cleanup. - -2004-05-28 Sven Neumann - - * plug-ins/common/CML_explorer.c - * plug-ins/maze/maze_face.c: added size groups. - - * plug-ins/common/sinus.c: HIG-ified. - -2004-05-28 Sven Neumann - - * plug-ins/Lighting/lighting_ui.c: tuned dialog layout for - consistency. - - * plug-ins/common/warp.c: added size groups to nicely align the - widgets. - -2004-05-27 Michael Natterer - - * app/paint/gimp-paint.c (gimp_paint_init): register ink between - airbrush and clone so the stroke dialog's menu of paint functions - has the same order as the default toolbox order. - -2004-05-27 Michael Natterer - - * app/paint/gimppaintcore.[ch]: removed enum GimpPaintCoreFlags - and member GimpPaintCore::flags. Added "gboolean traces_on_window" - to GimpPaintCoreClass (defaults to FALSE). - - * app/paint/gimpclone.c: set traces_on_window = TRUE. - - * app/paint/gimpbrushcore.[ch]: added - "gboolean handles_changing_brush" to GimpBrushCoreClass (defaults - to FALSE). - - * app/paint/gimpclone.c - * app/paint/gimpdodgeburn.c - * app/paint/gimperaser.c - * app/paint/gimppaintbrush.c - * app/paint/gimppaintcore.c: set handles_changing_brush = TRUE. - - * app/tools/gimppainttool.c: changed accordingly. - -2004-05-27 Maurits Rijk - - * plug-ins/common/ccanalyze.c: code clean-up. Improved speed a lot - (500 percent for 1000 x 1000 RGB image) by replacing O(n^2) algorithm - with O(n) version. - - * plug-ins/common/gif.c - * plug-ins/common/gih.c - * plug-ins/common/glasstile.c - * plug-ins/common/gqbist.c - * plug-ins/common/gradmap.c - * plug-ins/common/gtm.c - * plug-ins/common/guillotine.c: Use HIG capitalization style plus - minor code clean-up. - -2004-05-27 Sven Neumann - - * plug-ins/common/png.c (respin_cmap): handle an empty colormap. - Fixes bug #143009. - -2004-05-27 Sven Neumann - - * libgimpwidgets/gimppickbutton.c: applied patch from Philip - Lafleur that fixes color picking for XInput devices (bug #143166). - -2004-05-27 Sven Neumann - - * app/display/gimpdisplayshell-draw.c (gimp_display_shell_draw_grid): - fixed handling of grid offsets in the grid drawing routine. - -2004-05-27 Michael Natterer - - * app/widgets/widgets-enums.[ch]: added enum GimpActiveColor which - can be one of { FOREGROUND, BACKGROUND }. - - * app/widgets/Makefile.am - * app/widgets/gimpfgbgeditor.[ch]: new widget implementing the - FG/BG/Swap/Default color area known from the toolbox. - - * app/widgets/gimptoolbox-color-area.c: use the new widget. - - * app/widgets/gimpcoloreditor.[ch]: replaced the FG/BG buttons and - the color area by a GimpFgBgEditor. - -2004-05-27 Michael Natterer - - * app/widgets/gimpdocumentview.c (gimp_document_view_new): - gimp_editor_add_action_button() takes a va_list, terminate - it with NULL. Fixes bug #143258. - -2004-05-26 Michael Natterer - - * app/paint/gimpink.c: restored old time/speed sensitivity - behaviour by doing nothing except figuring if we draw a straight - line in INIT_PAINT. Instead, do all the Blob creating in - MOTION_PAINT and special case the initial (null) "motion" - accordingly. - -2004-05-26 Maurits Rijk - - * plug-ins/common/video.c: code clean-up. Twice as fast now. - - * plug-ins/common/flarefx.c: removed timing stuff. - -2004-05-26 Sven Neumann - - * app/core/core-enums.[ch]: shorter names for the gradient types - to reduce the width of the blend tool options. - -2004-05-26 Maurits Rijk - - * plug-ins/common/decompose.c - * plug-ins/common/deinterlace.c - * plug-ins/common/depthmerge.c - * plug-ins/common/despeckle.c - * plug-ins/common/destripe.c - * plug-ins/common/diffraction.c - * plug-ins/common/displace.c - * plug-ins/common/edge.c - * plug-ins/common/emboss.c - * plug-ins/common/engrave.c - * plug-ins/common/exchange.c - * plug-ins/common/film.c - * plug-ins/common/flarefx.c: Use HIG capitalization style. - Added GPL license in a few places. Minor code clean-up. - -2004-05-26 Sven Neumann - - * app/widgets/gimpcolordisplayeditor.c - * modules/cdisplay_colorblind.c - * modules/cdisplay_gamma.c - * modules/cdisplay_highcontrast.c - * modules/cdisplay_proof.c: HIG-ified color display filters. - -2004-05-26 Michael Natterer - - * app/paint/gimppaintcore.[ch]: added "guint32 time" parameters - to GimpPaintCore::paint() and ::interpolate(). - - * app/paint/gimpairbrush.c - * app/paint/gimpbrushcore.c - * app/paint/gimpclone.c - * app/paint/gimpconvolve.c - * app/paint/gimpdodgeburn.c - * app/paint/gimperaser.c - * app/paint/gimppaintbrush.c - * app/paint/gimpsmudge.c: changed accordingly. - - * app/paint/gimpink.c: ditto and use the passed time instead of - hardcoded dummy values. - - * app/paint/gimppaintcore-stroke.c: pass '0' as time. - - * app/tools/gimppainttool.c: pass the GdkEvent time. - -2004-05-26 Michael Natterer - - * app/paint/Makefile.am - * app/paint/gimpink-blob.[ch] - * app/paint/gimpink.[ch] - * app/paint/gimpinkoptions.[ch]: new files. Ported the ink tool - to be a direct GimpPaintCore subclass without any GUI. - - * app/paint/gimp-paint.c: register GimpInk with the list of paint - cores. - - * app/tools/Makefile.am - * app/tools/gimpinkoptions.[ch] - * app/tools/gimpinktool-blob.[ch]: removed these files. - - * app/tools/gimpinkoptions-gui.[ch]: new files containing only - the GUI for GimpInkOptions. - - * app/tools/gimpinktool.[ch]: reduced to some few lines which - implement a simple GimpPaintTool subclass. - - * app/tools/gimp-tools.c: associate the GimpInk paint_core with - the GimpInkTool. - -2004-05-26 Michael Natterer - - * app/paint/gimppaintcore-stroke.c: check if we really have - a GimpBrushCore before casting and accessing its members. - -2004-05-26 Michael Natterer - - * app/paint/gimpbrushcore.h - * app/paint/gimppaintcore.h: some cleanup. - -2004-05-26 Sven Neumann - - * app/display/gimpdisplayshell-layer-select.c - * app/display/gimpprogress.c - * app/gui/brush-select.c - * app/gui/color-notebook.c - * app/gui/convert-dialog.c - * app/gui/font-select.c - * app/gui/gradient-select.c - * app/gui/info-dialog.c - * app/gui/offset-dialog.c - * app/gui/palette-select.c - * app/gui/pattern-select.c - * app/gui/stroke-dialog.c - * app/gui/tips-dialog.c - * app/tools/gimpmeasuretool.c - * app/tools/gimptexttool.c - * app/widgets/gimpcolordisplayeditor.c - * app/widgets/gimpcolorframe.c - * app/widgets/gimpdevicestatus.c - * app/widgets/gimpviewabledialog.c: adjusted dialog spacings. - -2004-05-26 Michael Natterer - - * app/paint/gimppaintcore.c: don't do special stuff if a virtual - function doesn't exist. Instead, added default implementations - which do the special stuff and call the virtual functions - unconditionally. - - * app/tools/gimppainttool.c: some stylistic cleanup. - -2004-05-26 Michael Natterer - - * app/paint/gimppaintcore.[ch] (gimp_paint_core_paste) - (gimp_paint_core_replace): replaced the "MaskBuf *paint_mask" - parameters by "PixelRegion *mask_bufPR", so subclasses can pass in - any kind of paint_mask buffer and are not restricted to MaskBufs. - - Also removes implicit knowledge about the MaskBuf originating from - a brush in paint_mask_to_canvas_buf() and _to_canvas_tiles() which - don't need to offset the mask by width/2 height/2 any more. - - Made gimp_paint_core_validate_undo_tiles() and - gimp_paint_core_validate_canvas_tiles() protected functions. - - * app/paint/gimpbrushcore.c (gimp_brush_core_paste_canvas) - (gimp_brush_core_replace_canvas): create correctly positioned - PixelRegions from the MaskBufs before passing them to the - paint_core. - -2004-05-26 Michael Natterer - - * app/paint/gimppaintcore.[ch]: removed "gdouble scale" parameter - and added "GimpPaintOptions" in GimpPaintCore::get_paint_area(). - Check if virtual functions exist befoe calling them. - - * app/paint/gimpbrushcore.[ch]: added "gdouble scale" to GimpBrushCore - and "gboolean use_scale" to GimpBrushCoreClass (defaults to TRUE). - Set scale from paint_options in GimpPaintCore::get_paint_area(). - Removed "scale" parameter from gimp_brush_core_paste_canvas() - and _replace_canvas(). - - * app/paint/gimpsmudge.c (gimp_smudge_class_init): set use_scale - to FALSE. - - * app/paint/gimpclone.c - * app/paint/gimpconvolve.c - * app/paint/gimpdodgeburn.c - * app/paint/gimperaser.c - * app/paint/gimppaintbrush.c: removed all scale calculations and - simply pass paint_options to GimpPaintCore::get_paint_area(). - -2004-05-26 Michael Natterer - - * app/tools/gimppainttool.c (gimp_paint_tool_button_press): check - if the GimpPaintCore really is a GimpBrushCore before casting and - fiddling with internaly. - -2004-05-25 Michael Natterer - - * app/paint/Makefile.am - * app/paint/gimpbrushcore-kernels.h - * app/paint/gimpbrushcore.[ch]: new GimpPaintCore subclass - containing all the brush painting specific stuff. - - * app/paint/gimppaintcore-kernels.h: removed this file. - - * app/paint/gimppaintcore.[ch]: removed all brush stuff. - - * app/paint/gimpairbrush.c - * app/paint/gimpclone.[ch] - * app/paint/gimpconvolve.[ch] - * app/paint/gimpdodgeburn.[ch] - * app/paint/gimperaser.[ch] - * app/paint/gimppaintbrush.[ch] - * app/paint/gimppencil.c - * app/paint/gimpsmudge.[ch]: changed accordingly. Derive all - classes which used to derive directly from GimpPaintCore from - GimpBrushCore now. Lots of cleanup. - - * app/paint/paint-types.h - * app/paint/gimp-paint.c - * app/paint/gimppaintcore-stroke.c - * app/tools/gimppainttool.c - * tools/kernelgen.c: changed accordingly. - -2004-05-25 Maurits Rijk - - * plug-ins/common/align_layers.c - * plug-ins/common/animoptimize.c - * plug-ins/common/animationplay.c - * plug-ins/common/apply_lens.c - * plug-ins/common/autocrop.c - * plug-ins/common/autostretch_hsv.c - * plug-ins/common/blinds.c - * plug-ins/common/blur.c - * plug-ins/common/borderaverage.c - * plug-ins/common/bz2.c - * plug-ins/common/c_astretch.c - * plug-ins/common/ccanalyze.c - * plug-ins/common/channel_mixer.c - * plug-ins/common/color_enhance.c - * plug-ins/common/colorify.c - * plug-ins/common/colortoalpha.c - * plug-ins/common/csource.c - * plug-ins/common/cubism.c - * plug-ins/common/curve_bend.c: Use HIG capitalization style. - Added GPL license in a few places. Minor code clean-up. - -2004-05-25 Sven Neumann - - Sorry, couldn't resist to finish this task... - - * plug-ins/script-fu/script-fu-console.c - * plug-ins/script-fu/script-fu-scripts.c - * plug-ins/script-fu/script-fu-server.c: HIG-ified. - -2004-05-25 Sven Neumann - - * plug-ins/gimpressionist/brush.c - * plug-ins/gimpressionist/color.c - * plug-ins/gimpressionist/general.c - * plug-ins/gimpressionist/gimpressionist.[ch] - * plug-ins/gimpressionist/orientation.c - * plug-ins/gimpressionist/orientmap.c - * plug-ins/gimpressionist/paper.c - * plug-ins/gimpressionist/placement.c - * plug-ins/gimpressionist/presets.c - * plug-ins/gimpressionist/preview.c - * plug-ins/gimpressionist/size.c - * plug-ins/gimpressionist/sizemap.c: HIG-ified. - -2004-05-25 Michael Natterer - - * app/widgets/gimpitemtreeview.h: added GimpContext parameters - to GimpActivateItemFunc, GimpNewItemFunc and GimpEditItemFunc. - - * app/widgets/gimpdrawabletreeview.c - * app/widgets/gimpitemtreeview.c: pass the view's context to - the functions. - - * app/actions/actions.c (action_data_get_context): return - gimp_get_user_context() if "data" is a Gimp. - - * app/actions/channels-commands.[ch] - * app/actions/layers-commands.[ch] - * app/actions/vectors-commands.[ch]: added GimpContext parameters - to the resp. activate, new and edit functions and use the passed - context instead of gimp_get_user_context(). - - * app/actions/layers-commands.[ch]: removed the merge and flatten - callbacks. - - * app/actions/image-commands.[ch]: made public layer merge utility - function private and cleaned the whole file up a lot. - - * app/actions/layers-actions.c: use the callbacks from - image-commands.c for merge and flatten. - - * app/actions/edit-commands.c - * app/actions/file-commands.c - * app/actions/select-commands.c: use action_data_get_context() - instead of gimp_get_user_context(). - - * app/actions/edit-actions.c: some cleanup. - -2004-05-25 Sven Neumann - - * plug-ins/common/plugindetails.c - * plug-ins/dbbrowser/dbbrowser_utils.c - * plug-ins/pagecurl/pagecurl.c: HIG-ified. - -2004-05-25 Sven Neumann - - * plug-ins/print/gimp_color_window.c - * plug-ins/print/gimp_main_window.c: HIG-ified and ported to - GtkFileChooser. - - * plug-ins/ifscompose/ifscompose.c (ifsfile_load_response): ported - forgotten callback to GtkFileChooser. - - * plug-ins/imagemap/imap_browse.c - * plug-ins/imagemap/imap_file.c: finished port to GtkFileChooser. - -2004-05-25 Michael Natterer - - * app/actions/file-actions.c - * app/actions/file-commands.[ch]: removed action "file-new", added - action "file-open-from-image". - - * app/actions/image-actions.c - * app/actions/image-commands.[ch]: added actions "image-new" and - "image-new-from-image". - - * menus/image-menu.xml.in: use the "-from-image" variants of - the "new" and "open" actions so the dialogs are preconfigured - from the image they were invoked from (regression fix). - - * menus/toolbox-menu.xml.in: s/file-new/image-new/. - -2004-05-24 Sven Neumann - - * plug-ins/rcm/rcm.h - * plug-ins/rcm/rcm_dialog.[ch]: rearranged and HIG-ified dialog. - -2004-05-24 Michael Natterer - - * app/widgets/gimptoolbox.c (toolbox_create_tools): added an evil - hack as workaround for the missing gtk_action_get_accel_closure(). - Re-enables accelerator display in the tool button tooltips. - -2004-05-24 Michael Natterer - - * app/vectors/Makefile.am - * app/vectors/gimpcoordmath.[ch]: removed... - - * app/core/Makefile.am - * app/core/gimpcoords.[ch]: ...and added without the "bezier" - namespace. - - * app/vectors/gimpbezierstroke.c: changed accordingly. - - * app/Makefile.am: force it to link gimpcoords.o - -2004-05-24 Michael Natterer - - * app/config/gimpconfigwriter.c - * app/core/gimpstrokeoptions.c - * app/widgets/gimpactiongroup.c - * app/widgets/gimpcolorframe.h - * app/widgets/gimpcolorpanel.h - * app/widgets/gimpcontainerview.[ch] - * app/widgets/gimptooldialog.h - * app/widgets/gimpuimanager.c - * app/widgets/widgets-types.h: fixed various small issues I - stumbled across when updating the API reference for app/. - -2004-05-24 Sven Neumann - - * app/display/gimpscalecombobox.c - (gimp_scale_combo_box_mru_remove_last): removed debugging output. - -2004-05-24 Sven Neumann - - * app/core/gimptoolinfo.[ch]: derive GimpToolInfo from - GimpViewable, it doesn't make sense for it to be a GimpData. - - * app/widgets/gimptooloptionseditor.c - (gimp_tool_options_editor_get_title): do not append " Options" to - the tool name. Fixes bug #142280. - -2004-05-24 Sven Neumann - - * plug-ins/common/mblur.c: fixed range check of blur type - parameter (bug #142965). - -2004-05-24 Sven Neumann - - * plug-ins/maze/maze_face.c: fixed a compiler warning. - -2004-05-24 Sven Neumann - - Applied a patch from Philip Lafleur (bug #142808): - - * app/paint/gimppaintcore.h: define PRESSURE_SCALE to 1.5 - - * app/paint/gimpairbrush.c - * app/paint/gimpclone.c - * app/paint/gimpconvolve.c - * app/paint/gimpdodgeburn.c - * app/paint/gimperaser.c - * app/paint/gimppaintbrush.c - * app/paint/gimpsmudge.c: use the PRESSURE_SCALE constant. - -2004-05-24 Michael Natterer - - Long overdue core container cleanup: - - * app/core/gimplist.[ch]: added "unique-names" and "sort-func" - properties and merged the resp. code from GimpDataList into - GimpList. Removed "policy" parameters from gimp_list_new() and - added "unique_names". Added new constructor gimp_list_new_weak(). - Made public function gimp_list_uniquefy_name() private. - - * app/core/Makefile.am - * app/core/core-types.h - * app/core/gimpdatalist.[ch]: removed. Its functionality is - entirely in GimpList now. - - * app/core/gimpdata.[ch]: added gimp_data_name_compare() which - used to live in GimpDataList. - - * app/core/gimp.c - * app/core/gimpdatafactory.c - * app/core/gimpimage.c - * app/core/gimptoolinfo.c - * app/core/gimpundostack.c - * app/paint/gimp-paint.c - * app/tools/gimp-tools.c - * app/widgets/gimpdevices.c - * app/widgets/gimptemplateeditor.c - * app/widgets/gimpundoeditor.c: changed list creation accordingly. - - Made gimp->templates, gimp->named_buffers, tool_info->presets and - the image's lists of layers, channels and vectors automatically - ensure unique names. - - * app/widgets/gimptemplateview.c - * app/actions/file-commands.c - * app/actions/templates-commands.c - * app/actions/tool-options-commands.c: removed calls to - gimp_list_uniquefy_name(). - - * app/core/gimpitem.c: removed major insanity where the items - themselves where ensuring their unique names. Bah! - - * app/core/gimplayer.c (gimp_layer_name_changed): chain up - conditionally. - - * app/core/gimplayermask.c (gimp_layer_mask_name_changed): removed - because there is no need any more to keep the parent - implementation from being invoked. - -2004-05-23 Sven Neumann - - More fixes for bug #142996: - - * plug-ins/common/postscript.c - * plug-ins/common/sparkle.c - * plug-ins/common/sunras.c - * plug-ins/common/uniteditor.c - * plug-ins/fits/fits.c: fixed typos. - -2004-05-23 Sven Neumann - - Fixes for bug #142996: - - * app/gui/preferences-dialog.c: added missing gettext call. - - * app/config/gimprc-blurbs.h - * app/core/gimptemplate.c - * app/gui/gradient-editor-menu.c: fixed typos. - -2004-05-23 Michael Natterer - - * app/core/gimpdatalist.c: code cleanup, no logic changed. - -2004-05-23 Henrik Brix Andersen - - * app/config/gimprc-blurbs.h - * plug-ins/gfig/gfig-spiral.c (spiral_button_press) - * plug-ins/gimpressionist/orientation.c (create_orientationpage) - * plug-ins/common/diffraction.c (diffraction_dialog) - * plug-ins/common/bumpmap.c (bumpmap_dialog) - * plug-ins/maze/maze.h - * plug-ins/MapObject/mapobject_apply.c (compute_image) - * app/tools/gimpmeasuretool.c (gimp_measure_tool_dialog_update) - * plug-ins/print/gimp_main_window.c (create_scaling_frame): marked - strings for translation, corrected small typos. Fixes part of bug - #142996 - -2004-05-23 Žygimantas Beručka - - * configure.in: Added "lt" to ALL_LINGUAS. - -2004-05-23 Michael Schumacher - - * libgimp/gimp.def: gimp_register_file_handler_mime added - -2004-05-23 Michael Natterer - - * app/widgets/widgets-types.h: reoedered to somehow reflect the - class hierarchy. - - Some dockable context handling cleanup: - - * app/widgets/gimpdocked.[ch]: removed "prev_context" parameter - from GimpDocked::set_context(). Widgets which need the old context - to disconnect from should remember it themselves. - - * app/widgets/gimpdockable.c (gimp_dockable_set_context): don't - pass the old context to gimp_docked_set_context(). - Some cleanup. - - * app/widgets/gimpcontainerbox.c - * app/widgets/gimpcontainereditor.c: changed accordingly. - - * app/display/gimpnavigationview.[ch] - * app/widgets/gimpimageeditor.[ch] - * app/widgets/gimpitemtreeview.[ch]: added a "context" member - which holds the context set by GimpDocked::set_context(). - - * app/widgets/gimpdrawabletreeview.c: use the view's context - instead of gimp_get_user_context(). - - * app/widgets/gimpcoloreditor.[ch]: removed separate API to - set the context because it implements the GimpDockedInterface. - - * app/widgets/gimpcomponenteditor.c - * app/widgets/gimperrorconsole.c: pass "menu-factory", - "menu-identifier" and "ui-path" to g_object_new() instead of - calling gimp_editor_create_menu() later. - - Action cleanup partly related to the context stuff above: - - * app/actions/actions.c (action_data_get_gimp): get the Gimp from - context->gimp, not gimage->gimp because gimage may be NULL. - - (action_data_get_context): changed to use the new context members - added above. - - * app/actions/channels-actions.c (channels_actions_update): cleanup. - - * app/actions/edit-actions.c (edit_actions_update): fixed - sensitivity of "edit-undo-clear". - - * app/actions/vectors-actions.c (vectors_actions_update): make - "vectors-merge-visible" sensitive only if there is more than one - GimpVectors in the image. - - * app/actions/colormap-editor-actions.c - * app/actions/gradient-editor-actions.c - * app/actions/palette-editor-actions.c: added FG/BG color previews - to actions which take colors from them. Changed code to be safe - against "context" being NULL. - - * app/actions/drawable-commands.c: - s/active_drawable/drawable/g. Makes the code more readable. - - * app/actions/select-commands.[ch] - * app/actions/vectors-commands.[ch]: removed public stroke utility - functions and other stuff which is not needed any more because - dialog buttons invoke the correct actions now. Moved the - functions' code to the resp. action callbacks. - -2004-05-21 Nathan Summers - - Somehow some of the changes from my commit on 2004-05-18 seem to have - gotten lost, including the addition to the ChangeLog. Sorry about that. - Recommitted. - - * NEWS: Clarified end-user visible features. - Made sundry small grammar and consistancy fixes. - Reorganized list of changes slightly. - -2004-05-21 Sven Neumann - - * app/paint/gimppaintcore.c (gimp_paint_core_interpolate): better - fix for bug #123811; patch provided by Philip Lafleur. - -2004-05-21 Sven Neumann - - * app/gui/preferences-dialog.c: added some GtkSizeGroups and - changed spacings to improve the dialog layout. - - * app/gui/file-new-dialog.c - * app/widgets/gimpgrideditor.c - * app/widgets/gimptemplateeditor.c: minor changes for consistency. - -2004-05-21 Sven Neumann - - * plug-ins/gflare/gflare.c - * plug-ins/gfli/gfli.c - * plug-ins/ifscompose/ifscompose.c - * plug-ins/sel2path/sel2path.c - * plug-ins/sel2path/sel2path_adv_dialog.c - * plug-ins/sgi/sgi.c - * plug-ins/winicon/icodialog.c: HIG-ification. - -2004-05-21 Michael Natterer - - * app/actions/data-commands.c (data_delete_callback): eek, delete - the data only if "OK" was pressed. - -2004-05-21 Michael Natterer - - * app/widgets/gimperrorconsole.c - (gimp_error_console_save_ext_clicked): use - gtk_widget_get_screen(), not window_get_screen() on a button. - -2004-05-20 Maurits Rijk - - * plug-ins/imagemap/imap_*.[ch]: (partly) HIG-ified, replaced - deprecated widget GtkCList by GtkTreeModel/View (also fixes #136893), - use file choosers instead of file selectors, minor clean-up. - -2004-05-20 Sven Neumann - - * plug-ins/Lighting/lighting_ui.c - * plug-ins/MapObject/mapobject_ui.c - * plug-ins/bmp/bmpwrite.c - * plug-ins/fits/fits.c - * plug-ins/flame/flame.c - * plug-ins/fp/fp.c - * plug-ins/gfig/gfig-preview.c - * plug-ins/gfig/gfig.c: HIG-ified. - -2004-05-20 Sven Neumann - - * plug-ins/FractalExplorer/Dialogs.c - * plug-ins/FractalExplorer/FractalExplorer.c: HIG-ification and - some code cleanup. - -2004-05-19 Manish Singh - - * plug-ins/pygimp/gimpfu.py: Actually return values from the run - function. Fixes #141338. - -2004-05-20 Sven Neumann - - * plug-ins/maze/maze_face.c - * plug-ins/xjt/xjt.c: HIG-ified. Say goodbye to "Parameter Settings". - -2004-05-20 Sven Neumann - - * plug-ins/common/warp.c - * plug-ins/common/whirlpinch.c - * plug-ins/common/wmf.c - * plug-ins/common/xbm.c - * plug-ins/common/xpm.c: HIG-ified. - -2004-05-19 Manish Singh - - * app/actions/file-actions.c: remove unnecessary G_OBJECT() casts. - - * tools/pdbgen/pdb/help.pdb - * tools/pdbgen/pdb/image.pdb - * tools/pdbgen/pdb/paths.pdb - * tools/pdbgen/pdb/plug_in.pdb: a bit of quoting clean up. - - * tools/pdbgen/pdb/plug_in.pdb: handle icon_data_length properly. - - * app/pdb/plug_in_cmds.c: regenerated. - -2004-05-20 Sven Neumann - - * plug-ins/common/tga.c - * plug-ins/common/threshold_alpha.c - * plug-ins/common/tiff.c - * plug-ins/common/tile.c - * plug-ins/common/tileit.c - * plug-ins/common/uniteditor.c - * plug-ins/common/unsharp.c - * plug-ins/common/video.c - * plug-ins/common/vpropagate.c: HIG-ified. - -2004-05-20 Sven Neumann - - * plug-ins/common/randomize.c - * plug-ins/common/ripple.c - * plug-ins/common/sample_colorize.c - * plug-ins/common/scatter_hsv.c - * plug-ins/common/sel_gauss.c - * plug-ins/common/sharpen.c - * plug-ins/common/shift.c - * plug-ins/common/smooth_palette.c - * plug-ins/common/snoise.c - * plug-ins/common/sobel.c - * plug-ins/common/sparkle.c - * plug-ins/common/spread.c - * plug-ins/common/struc.c - * plug-ins/common/sunras.c - * plug-ins/common/svg.c: HIG-ified. - -2004-05-19 Michael Natterer - - * app/widgets/Makefile.am - * app/widgets/widgets-types.h - * app/widgets/gimpaction.[ch]: new GtkAction subclass which can - show either a color or viewable preview in GtkImageMenuItem - proxies. - - * app/widgets/gimpenumaction.[ch] - * app/widgets/gimppluginaction.[ch] - * app/widgets/gimpstringaction.[ch]: derive them from GimpAction. - - * app/widgets/gimpactiongroup.c (gimp_action_group_add_actions): - add GimpActions, not GtkActions. - - (gimp_action_group_set_action_color) - (gimp_action_group_set_action_viewable): removed all hacks and - simply set the "color" or "viewable" properties of the GimpAction - to change. Fixes color/viewable previews in menus. - - * app/actions/file-actions.c: show previews in the "Open Recent" - menu items. - - Unrelated: - - * app/widgets/widgets-types.h: removed GimpDockedInterface typedef... - - * app/widgets/gimpdocked.h: ...and added it here. We don't have - class struct typedefs in the types header either. - - * app/actions/edit-actions.c: added +semicolon as shortcut - for "edit-fill-pattern". - - * app/actions/gradient-editor-actions.c: added some stock IDs. - Please comment. - -2004-05-19 Sven Neumann - - * plug-ins/common/papertile.c - * plug-ins/common/pat.c - * plug-ins/common/pixelize.c - * plug-ins/common/png.c - * plug-ins/common/postscript.c - * plug-ins/common/psp.c: HIG-ified. - -2004-05-19 Sven Neumann - - * plug-ins/common/mapcolor.c - * plug-ins/common/mblur.c - * plug-ins/common/mng.c - * plug-ins/common/mosaic.c - * plug-ins/common/newsprint.c - * plug-ins/common/oilify.c: HIG-ified. - -2004-05-19 Sven Neumann - - * plug-ins/common/hot.c - * plug-ins/common/iwarp.c - * plug-ins/common/jpeg.c - * plug-ins/common/lic.c - * plug-ins/common/mail.c: HIG-ified. - -2004-05-19 Sven Neumann - - * plug-ins/common/gauss_iir.c - * plug-ins/common/gauss_rle.c - * plug-ins/common/gbr.c - * plug-ins/common/gee.c - * plug-ins/common/gee_zoom.c - * plug-ins/common/gif.c - * plug-ins/common/gih.c - * plug-ins/common/glasstile.c - * plug-ins/common/gtm.c: HIG-ified. - -2004-05-19 Sven Neumann - - * plug-ins/common/exchange.c: fixed minor dialog layout issues. - - * plug-ins/common/screenshot.c: added the camera icon to the dialog. - - * plug-ins/common/film.c - * plug-ins/common/fractaltrace.c: HIG-ified. - -2004-05-19 Sven Neumann - - * app/paint/gimppaintcore.c (gimp_paint_core_interpolate): make - sure that pressure never becomes negative. Fixes bug #123811; - thanks to Philip Lafleur for investigating this problem. - -2004-05-19 Sven Neumann - - * plug-ins/common/channel_mixer.c: added some stock icons. - - * plug-ins/common/edge.c - * plug-ins/common/emboss.c - * plug-ins/common/engrave.c - * plug-ins/common/exchange.c: HIG-ified. - - * plug-ins/common/sel_gauss.c: tiny changes for a more consistent - HIG-ification. - -2004-05-19 Michael Natterer - - * tools/pdbgen/pdb/plug_in.pdb: made plugin_icon_register() an - underscore-prefixed function which needs to be wrapped. - - * libgimp/gimpplugin_pdb.[ch]: regenerated. - - * libgimp/Makefile.am - * libgimp/gimp.h - * libgimp/gimpplugin.[ch]: new files containing - gimp_plugin_icon_register() which has no "icon_data_length" - parameter and determines it from the passed icon data. - - * libgimp/gimp.def: added gimp_plugin_icon_register. - - * plug-ins/common/plugindetails.c - * plug-ins/common/screenshot.c - * plug-ins/common/uniteditor.c - * plug-ins/print/print.c: don't pass the icon_data_length. - -2004-05-18 Sven Neumann - - * plug-ins/common/checkerboard.c - * plug-ins/common/colorify.c - * plug-ins/common/colortoalpha.c - * plug-ins/common/compose.c - * plug-ins/common/convmatrix.c - * plug-ins/common/csource.c - * plug-ins/common/cubism.c - * plug-ins/common/decompose.c - * plug-ins/common/deinterlace.c - * plug-ins/common/depthmerge.c - * plug-ins/common/despeckle.c - * plug-ins/common/destripe.c - * plug-ins/common/diffraction.c - * plug-ins/common/displace.c: HIG-ified. - -2004-05-18 Michael Natterer - - Allow plug-ins to register menu icons. Fixes bug #120500. - - * app/core/core-enums.[ch]: added enum GimpIconType which can - be one of { STOCK_ID, IMAGE_FILE, INLINE_PIXBUF }. - - * app/config/gimpconfigwriter.[ch] (gimp_config_writer_data) - * app/config/gimpscanner.[ch] (gimp_scanner_parse_data): new - functions which write/parse raw binary data. Needed for storing - inline pixbufs in pluginrc. - - * app/config/gimpconfigwriter.[ch] (gimp_config_writer_identifier): - new function which writes out an unquoted and unescaped string. - - * app/plug-in/plug-in-proc.[ch] (struct PlugInProcDef): added - new members "icon_type", "icon_data_length" and "icon_data". - Reordered members so file_proc specific stuff is at the end. - - (plug_in_proc_def_get_stock_id) - (plug_in_proc_def_get_pixbuf): new functions to access the - procedure's icon. - - * app/plug-in/plug-in-rc.c: save/restore the registered icons. - - * app/actions/file-dialog-actions.c - * app/actions/plug-in-actions.c: set the action's stock ID from - the procedure's stock ID. - - * app/widgets/gimppluginaction.c - (gimp_plug_in_action_connect_proxy): if the procedure provides a - pixbuf, set it as icon for the menu item. - - * app/menus/file-dialog-menu.[ch] - * app/menus/file-open-menu.c - * app/menus/file-save-menu.c - * app/xcf/xcf.c: changed accordingly. - - * tools/pdbgen/pdb/plug_in.pdb (plugin_icon_register): new PDB - function which can be called during query(). - - * tools/pdbgen/enums.pl - * app/pdb/internal_procs.c - * app/pdb/plug_in_cmds.c - * libgimp/gimpenums.h - * libgimp/gimpplugin_pdb.c - * libgimp/gimpplugin_pdb.h - * plug-ins/pygimp/gimpenums.py - * plug-ins/script-fu/script-fu-constants.c: regenerated. - - * plug-ins/common/plugindetails.c - * plug-ins/common/uniteditor.c - * plug-ins/print/print.c: register stock_id icons. - - * plug-ins/common/screenshot.c: register an inline_pixbuf icon for - testing purposes (used emblem-camera.png from gnome-icon-theme). - - * app/actions/dialogs-actions.c - * app/actions/file-actions.c: unrelated: added some more icons - to menu items. - -2004-05-18 Maurits Rijk - - * plug-ins/common/sel_gauss.c: HIGified, fixed indendation, speed - improvement (around 70 %). - -2004-05-18 Sven Neumann - - * plug-ins/common/blur.c - * plug-ins/common/borderaverage.c - * plug-ins/common/bumpmap.c - * plug-ins/common/ccanalyze.c: HIG-ified. - -2004-05-18 Sven Neumann - - * libgimpwidgets/gimpsizeentry.[ch] (gimp_size_entry_attach_label): - return the created label widget so that it can for example be put - into a GtkSizeGroup. - - * plug-ins/libgimpoldpreview/gimpoldpreview.[ch]: removed the - optional "Preview" frame. Always put the preview into a sunken - frame. - - * plug-ins/common/AlienMap2.c - * plug-ins/common/blinds.c - * plug-ins/common/flarefx.c - * plug-ins/common/glasstile.c - * plug-ins/common/grid.c - * plug-ins/common/illusion.c - * plug-ins/common/jigsaw.c - * plug-ins/common/max_rgb.c - * plug-ins/common/nlfilt.c - * plug-ins/common/noisify.c - * plug-ins/common/nova.c - * plug-ins/common/plasma.c - * plug-ins/common/polar.c - * plug-ins/common/waves.c - * plug-ins/common/wind.c: changed accordingly, HIG-ified. - -2004-05-18 Sven Neumann - - * plug-ins/common/aa.c - * plug-ins/common/align_layers.c - * plug-ins/common/animationplay.c - * plug-ins/common/apply_lens.c: HIG-ified. - -2004-05-18 Michael Natterer - - * app/core/gimptoolinfo.c: made the "visible" property serializable. - - * app/tools/gimp-tools.c: store the tools' order and visibility - in a new config file called "toolrc". - -2004-05-18 Sven Neumann - - * plug-ins/gimpressionist/brush.c: ported to GtkFileChooser. - - * plug-ins/gimpressionist/gimpressionist.h - * plug-ins/gimpressionist/ppmtool.[ch]: sprinkled some const - qualifiers. - -2004-05-18 Sven Neumann - - * plug-ins/common/curve_bend.c - * plug-ins/ifscompose/ifscompose.c: ported to GtkFileChooser and - HIG-ified. - -2004-05-18 Sven Neumann - - * plug-ins/common/channel_mixer.c - * plug-ins/common/gqbist.c: ported to GtkFileChooser and - HIG-ified. - - * plug-ins/common/spheredesigner.c: ditto, but needs more love. - -2004-05-18 Michael Natterer - - * app/plug-in/plug-in-proc.[ch] (plug_in_proc_def_get_label): new - function which returns a newly allocated string which is the menu - item's name stripped of mnemonics an ellipses. - - * app/actions/plug-in-actions.c (plug_in_actions_update) - * app/plug-in/plug-in.c (plug_in_get_undo_desc): use the function - instead of implementing the same twice slightly different. - -2004-05-17 Sven Neumann - - * plug-ins/common/CEL.c - * plug-ins/common/CML_explorer.c: ported to GtkFileChooser and - HIG-ified. - -2004-05-17 Sven Neumann - - * plug-ins/common/AlienMap2.c: HIG-ified (more or less). - -2004-05-17 Michael Natterer - - * menus/menus.xsl: put the image popup menu into a dummy menubar - to work around the silly GtkUIManager restriction that popup menus - can't have tearoff items. - - * app/menus/menus.c - * app/menus/image-menu.c - * app/display/gimpdisplayshell-callbacks.c - * app/gui/gui-vtable.c - * app/menus/plug-in-menus.c: changed accordingly. - - * app/gui/gui.c (gui_restore_after_callback): connect to - "notify::tearoff-menus" of GimpGuiConfig and reconfigure the - global image UI manager accordingly. - - * app/config/gimpguiconfig.c: removed GIMP_PARAM_RESTART from the - "tearoff-menus" property because GtkUIManager can change this on - the fly. - - * app/display/gimpdisplayshell.[ch]: added the menubar to the - GimpDisplayShell struct. Some cleanup in gimp_display_shell_new(). - - * app/display/gimpdisplayshell-appearance.c - (gimp_display_shell_set_show_menubar): use shell->menubar instead - of asking the UI manager. - - * app/widgets/gimpuimanager.[ch]: changed gimp_ui_manager_ui_get() - to transparently load the XML files even if a sub-widget was - requested. Reordered parameters of gimp_ui_manager_ui_popup(). - Lots of internal cleanups. - - * app/widgets/gimpdockable.c - * app/widgets/gimptooloptionseditor.c: simplified accordingly. - - * app/widgets/gimpeditor.[ch]: added new function - gimp_editor_popup_menu() which takes a GimpMenuPositionFunc and - updates/shows the editor's menu. - - * app/widgets/gimpcolormapeditor.c - * app/widgets/gimpcomponenteditor.c - * app/widgets/gimpcontainereditor.c - * app/widgets/gimpcontainergridview.c - * app/widgets/gimpcontainertreeview.c - * app/widgets/gimperrorconsole.c - * app/widgets/gimpgradienteditor.c - * app/widgets/gimpitemtreeview.c - * app/widgets/gimppaletteeditor.c: use gimp_editor_popup_menu(). - - * app/widgets/gimptoolbox.c: moved all code from - gimp_toolbox_new() to GObject::constructor(). - -2004-05-17 Michael Natterer - - * app/actions/tool-options-actions.c: added icons to the Save, - Load, Rename and Delete submenus. - -2004-05-17 Michael Natterer - - * app/actions/edit-actions.c (edit_actions_update): don't forget - to set the sensitivity of "edit-named-copy". - -2004-05-17 Sven Neumann - - * app/core/gimpimage.c (gimp_image_init): initialize the image - unit to GIMP_UNIT_PIXEL. - - * app/pdb/image_cmds.c - * tools/pdbgen/pdb/image.pdb: allow GIMP_UNIT_PIXEL to be used - in the gimp_image_set_unit() PDB call. - -2004-05-16 Sven Neumann - - * plug-ins/script-fu/scripts/old-photo.scm: fixed wrong use of - layer ID; bug #142326. - -2004-05-15 Sven Neumann - - * app/tools/gimpcurvestool.c: fixed position of vertical line - indicating the picked color. Patch from William Skaggs and - Søren Wedel Nielsen; fixes bug #142506. - -2004-05-15 Michael Natterer - - * app/plug-in/plug-in-params.c (plug_in_proc_args_check): changed - warnings to include the invalid menu path. Added check that makes - sure menu paths are either "" or "/foo" but *not* - "foo". - - * app/actions/plug-in-actions.c: added function - plug_in_actions_check_translation() which validates both the - original and translated menu paths and spits detailed error - messages if any of them is broken. Made action creation simpler - (?) and more robust. - - * app/menus/plug-in-menus.c: argh, the translated menu path must - be a sorting criteria *only*. Fixed the whole stuff to always use - the original menu path because translation is done entirely by - plug-in-actions.c. Fixes bad crashes for all locales. Added - boolean return value to plug_in_menus_build_path() and don't try - to create the menu item in an invalid location if creating the - submenus failed. - -2004-05-14 Sven Neumann - - * app/menus/file-dialog-menu.c: check if the file procedure - registered a menu path at all. The menu should probably be created - from the registered menu path, not from gimp->[load|save]_procs. - - * app/plug-in/plug-in-proc.[ch] - * app/plug-in/plug-ins.c: removed broken code that used to sort - the file procedures. - - * plug-ins/common/CEL.c - * plug-ins/common/bz2.c - * plug-ins/common/gz.c - * plug-ins/common/pcx.c - * plug-ins/common/pix.c - * plug-ins/common/sunras.c - * plug-ins/sgi/sgi.c - * plug-ins/xjt/xjt.c: register a mimetype, set a translatable - action name (mostly taken from shared-mime-info) and register to - the and menus using gimp_plugin_menu_register(). - -2004-05-14 Michael Natterer - - * app/pdb/fileops_cmds.c - * libgimp/gimpfileops_pdb.c: regenerated. - -2004-05-14 Michael Natterer - - * app/actions/select-actions.c (select_actions_update): don't - make "select-invert" insensitive if there is no selection. - -2004-05-14 Sven Neumann - - * plug-ins/common/aa.c - * plug-ins/common/gbr.c - * plug-ins/common/gih.c - * plug-ins/common/gtm.c - * plug-ins/common/header.c - * plug-ins/common/pat.c - * plug-ins/common/pnm.c - * plug-ins/common/psp.c - * plug-ins/fits/fits.c - * plug-ins/gfli/gfli.c: register a mimetype, set a translatable - action name (mostly taken from shared-mime-info) and register to - the and menus using gimp_plugin_menu_register(). - -2004-05-14 Sven Neumann - - * tools/pdbgen/pdb/fileops.pdb: added new PDB function - gimp_register_file_handler_mime() that allows to associate a MIME - type with a file procecdurre. - - * app/pdb/fileops_cmds.c - * app/pdb/internal_procs.c - * libgimp/gimpfileops_pdb.[ch]: regenerated. - - * app/plug-in/plug-in-proc.[ch] - * app/plug-in/plug-in-rc.c - * app/plug-in/plug-ins.[ch]: store a mimetype with file procedures. - - * app/actions/file-commands.c - * app/core/gimpdocumentlist.[ch] - * app/core/gimpimagefile.[ch] - * app/file/file-open.[ch] - * app/file/file-save.c: set the thumbnail's mimetype from the file - procedure used to load/save the image. - - * app/xcf/xcf.c - * plug-ins/bmp/bmp.c - * plug-ins/common/csource.c - * plug-ins/common/dicom.c - * plug-ins/common/gif.c - * plug-ins/common/gifload.c - * plug-ins/common/jpeg.c - * plug-ins/common/mng.c - * plug-ins/common/png.c - * plug-ins/common/postscript.c - * plug-ins/common/psd.c - * plug-ins/common/psd_save.c - * plug-ins/common/sunras.c - * plug-ins/common/svg.c - * plug-ins/common/tga.c - * plug-ins/common/tiff.c - * plug-ins/common/wmf.c - * plug-ins/common/xbm.c - * plug-ins/common/xpm.c - * plug-ins/common/xwd.c - * plug-ins/faxg3/faxg3.c - * plug-ins/winicon/main.c: register a mimetype, set a translatable - action name (taken from shared-mime-info) and register to the - and menus using gimp_plugin_menu_register(). - -2004-05-13 Sven Neumann - - * tools/pdbgen/lib.pl - * tools/pdbgen/pdbgen.pl: added new procedure variable 'since' - that allows to specify when a new function was added. Use that - info to generate an appropriate gtk-doc comment. - - * tools/pdbgen/pdb/plug_in.pdb: set since = '2.2' for the new - function gimp_plugin_menu_register(). - - * libgimp/gimpplugin_pdb.c: regenerated. - -2004-05-13 Michael Natterer - - * menus/tool-options-menu.xml: added "name" attributes to all - submenus. - - * app/menus/tool-options-menu.c: use the menu names instead of the - overly long action names. - - * app/actions/colormap-editor-commands.c - * app/actions/tool-options-commands.c: added some callback - implementations. - - * app/widgets/gimpcolormapeditor.c - * app/widgets/gimptooloptionseditor.c: removed the callbacks here - and use action buttons. - - * app/actions/actions.c - * app/actions/colormap-editor-actions.c - * app/actions/edit-actions.c: code review / cleanup. - -2004-05-13 Michael Natterer - - * app/core/gimpcontainer.c (gimp_container_add_handler): don't - try to lookup detailed "notify::foo" signal specs. - -2004-05-13 Michael Natterer - - * app/widgets/gimptoolview.[ch]: if in list mode, add an "eye" - column which toggles tool visibility. - -2004-05-13 Michael Natterer - - * app/actions/tools-actions.c (tools_actions_update): don't use - action_data_get_context() to update the "tools" action group - because it may return NULL. Use gimp_get_user_context() instead - because the active tool is global regardless of the action group's - context. Fixes accidential tool hiding when closing the last - display. - -2004-05-13 Sven Neumann - - * libgimpthumb/gimpthumbnail.c (gimp_thumbnail_save_thumb): oops. - -2004-05-13 Michael Natterer - - Added GimpViewable infrastructure which enables migrating from - TempBuf to GdkPixbuf for both providing and getting previews: - - * app/core/gimpviewable.[ch]: added new virtual functions - GimpViewable::get_pixbuf() and GimpViewable::get_new_pixbuf() - which are implemented exactly as get_preview() and - get_new_preview() except that get_new_pixbuf() has a default - implementation which creates the pixbuf from a TempBuf. - - Renamed public functions _get_preview_pixbuf() and - _get_new_preview_pixbuf() to _get_pixbuf() and _get_new_pixbuf(). - - Added gimp_viewable_get_dummy_pixbuf() and use it from - gimp_viewable_get_dummy_preview(). - - * app/core/gimpimagefile.c (gimp_imagefile_save_thumb) - * app/display/gimpdisplayshell.c (gimp_display_shell_update_icon) - * app/gui/resize-dialog.c (resize_dialog_new): changed accordingly. - -2004-05-13 Sven Neumann - - * libgimpthumb/gimpthumbnail.[ch]: added mime-type support. - -2004-05-13 Michael Natterer - - * app/menus/Makefile.am: added file-menu.[ch] and - file-dialog-menu.[ch] - - * app/menus/menus.[ch]: removed menus_open_recent_add()... - - * app/menus/file-menu.[ch]: ...and added it here as file_menu_setup(). - - * app/menus/image-menu.c - * app/menus/toolbox-menu.c: changed accordingly. - - * app/menus/file-dialog-menu.[ch]: added factored out code from the - file-open and file-save menus as file_dialog_menu_setup(). - - * app/menus/file-open-menu.c - * app/menus/file-save-menu.c: call file_dialog_menu_setup(). - -2004-05-12 Michael Natterer - - * app/actions/documents-actions.c - * app/actions/documents-commands.c - * app/actions/edit-actions.c - * app/actions/edit-commands.[ch] - * app/actions/layers-actions.c - * app/actions/layers-commands.c - * app/actions/select-actions.c - * app/actions/select-commands.[ch] - * app/actions/vectors-actions.c - * app/actions/vectors-commands.[ch]: added tooltips for actions - which are now used for dialog buttons, added callback - implementations which formerly lived in various widgets, moved - some actions around and did some general cleanups. - - * menus/image-menu.xml.in: s/edit-stroke/select-stroke/ - - * menus/Makefile.am - * menus/selection-editor-menu.xml: new popup menu. - - * app/menus/menus.c: register and - UI managers. - - * app/widgets/gimpeditor.[ch]: added construct properties - "menu-factory", "menu-identifier", "ui-path" and "popup-data". - Implement GObject::constructor() and create the UI manager - if all needed properties were set. Enables creating action - buttons at widget construction time because they need a - UI manager. - - (gimp_editor_add_action_button): extended to take a va_list of - "extended" actions which are invoked if the resp. button emits - "extended_clicked". Store the actions and their modifier masks in - a list attached to the button. - - * app/widgets/gimpcontainerview.c - (gimp_container_view_item_selected): if the view has container - *and* context, simply change the context and return. - - (gimp_container_view_context_changed): don't emit "select_item" - manually but simply call gimp_container_view_select_item(). - - (gimp_container_view_viewable_dropped): use - gimp_container_view_item_selected() instead of changing the - context directly. - - * app/widgets/gimpcontainereditor.c - (gimp_container_editor_select_item): update the UI manager. - - * app/widgets/gimpdockable.c: don't try to fiddle with the - dialog's menu if it doesn't have a ui_path (happens if the UI - manager is just a collection of actions for the dialog buttons and - has no menu registered). - - * app/widgets/gimpimageeditor.c: connect to the image's "flush" - signal and update the UI manager in the callback. - - * app/widgets/gimpitemtreeview.c: use GimpEditor's construct - properties to create the UI manager so GimpItemTreeView subclasses - can have action buttons. Update the UI manager in - gimp_item_tree_view_select_item(). - - * app/widgets/gimpbufferview.c - * app/widgets/gimpcolormapeditor.c - * app/widgets/gimpcontainergridview.c - * app/widgets/gimpdatafactoryview.c - * app/widgets/gimpfontview.c - * app/widgets/gimpimageview.c - * app/widgets/gimptemplateview.c - * app/widgets/gimptoolview.c: changed calls to - gimp_editor_add_action_button() accordingly and removed some - unneeded select_item() implementations. - - * app/widgets/gimpchanneltreeview.c - * app/widgets/gimpvectorstreeview.[ch] - * app/widgets/gimpdocumentview.[ch] - * app/widgets/gimplayertreeview.c - * app/widgets/gimpselectioneditor.[ch] - * app/widgets/gimpundoeditor.[ch]: use action buttons and removed - lots of callbacks which went to the resp. action callbacks. - - * app/widgets/widgets-types.h: removed some now unneeded function - prototypes. - - * app/gui/dialogs-constructors.c: changed (simplified) many dialog - constructors accordingly. - -2004-05-12 Sven Neumann - - * libgimpwidgets/gimpwidgets.c (gimp_scale_entry_new_internal) - * app/widgets/gimpwidgets-utils.c (gimp_table_attach_stock): - left-align the label. - - * app/actions/channels-commands.c - * app/actions/layers-commands.c - * app/actions/qmask-commands.c - * app/actions/vectors-commands.c - * app/display/gimpdisplayshell-scale.c - * app/gui/brush-select.c - * app/gui/file-new-dialog.c - * app/gui/info-dialog.c - * app/gui/info-window.c - * app/gui/module-browser.c - * app/gui/offset-dialog.c - * app/gui/palette-import-dialog.c - * app/gui/preferences-dialog.c - * app/gui/resize-dialog.c - * app/tools/gimpblendoptions.c - * app/tools/gimpcroptool.c - * app/tools/gimpmeasuretool.c - * app/tools/gimppaintoptions-gui.c - * app/tools/gimpscaletool.c - * app/tools/gimpselectionoptions.c - * app/tools/gimpsheartool.c - * app/tools/gimptextoptions.c - * app/widgets/gimpcolormapeditor.c - * app/widgets/gimpgrideditor.c - * app/widgets/gimphistogrameditor.c - * app/widgets/gimplayertreeview.c - * app/widgets/gimpstrokeeditor.c - * app/widgets/gimpwidgets-utils.c: left-align labels as suggested - by the HIG. - -2004-05-12 Michael Natterer - - * app/config/gimpconfig-deserialize.c - * app/config/gimpscanner.c - * app/core/gimp-edit.c - * app/core/gimpchannel-combine.c - * app/core/gimpcontainer.c - * app/core/gimpdrawable-bucket-fill.c - * app/core/gimpdrawable-combine.c - * app/core/gimpdrawable.c - * app/core/gimpgradient.c - * app/core/gimpimage-flip.c - * app/core/gimpimage-merge.c - * app/core/gimpimage-projection.c - * app/core/gimpimage.c - * app/display/gimpdisplay-handlers.c - * app/display/gimpdisplayshell-callbacks.c - * app/display/gimpprogress.c - * app/gui/info-dialog.c - * app/gui/module-browser.c - * app/gui/offset-dialog.c - * app/plug-in/plug-in.c - * app/tools/gimpdrawtool.c - * app/tools/tool_manager.c - * app/widgets/gimpactiongroup.c - * app/widgets/gimpdialogfactory.c - * app/widgets/gimpgradienteditor.c - * app/widgets/gimpitemfactory.c - * app/widgets/gimppropwidgets.c - * app/widgets/gimpwidgets-utils.c - * app/xcf/xcf-save.c - * libgimp/gimpexport.c - * libgimpwidgets/gimphelpui.c - * libgimpwidgets/gimppixmap.c - * libgimpwidgets/gimpunitmenu.c: replaced G_GNUC_FUNCTION, - G_GNUC_PRETTY_FUNCTION, G_STRLOC and hardcoded function names in - g_warning()s by G_STRFUNC. - -2004-05-12 Michael Natterer - - * app/actions/gradients-actions.c - * app/actions/palettes-actions.c - * app/actions/patterns-actions.c: added/fixed tooltips. - -2004-05-11 Michael Natterer - - * configure.in: define G*_DISABLE_DEPRECATED for all G* modules - except GTK+. Don't do so if compiling against GLib, GTK+ >= 2.5.0 - and Pango >= 1.5.0 - - * libgimpwidgets/gimpoffsetarea.c: s/gdk_gc_unref/g_object_unref/ - - * app/config/gimpconfig-deserialize.c - * app/widgets/gimpdeviceinfo.c: - s/g_value_set_foo_take_ownership/g_value_take_foo/ - - * app/text/gimptext-vectors.c - * app/text/gimptext-bitmap.c: - s/pango_ft2_font_get_face/pango_fc_font_lock,unlock_face/ - -2004-05-11 Michael Natterer - - * app/actions/images-commands.c: added missing #includes. - -2004-05-11 Michael Natterer - - * app/widgets/Makefile.am - * app/widgets/widgets-types.h - * app/widgets/gimpcontainermenu.[ch] - * app/widgets/gimpcontainermenuimpl.[ch] - * app/widgets/gimpmenuitem.[ch]: removed. Obsoleted by - GimpContainerViewInterface implemented by GimpContainerComboBox. - -2004-05-11 Michael Natterer - - * app/actions/actions.[ch]: added action_data_get_context() and - macro return_if_no_context(). - - * app/actions/brushes-actions.c - * app/actions/buffers-actions.c - * app/actions/buffers-commands.c - * app/actions/data-commands.c - * app/actions/fonts-actions.c - * app/actions/fonts-commands.c - * app/actions/gradients-actions.c - * app/actions/images-actions.c - * app/actions/images-commands.c - * app/actions/palettes-actions.c - * app/actions/patterns-actions.c - * app/actions/templates-actions.c - * app/actions/templates-commands.[ch] - * app/actions/tools-actions.c - * app/actions/tools-commands.c: moved lots of code from widgets/ - to the resp. action callbacks. - - * app/widgets/gimpeditor.[ch]: added gimp_editor_add_action_button() - which creates a GtkButton connected to the resp. action. - - * app/widgets/gimpdatafactoryview.[ch]: added "action_group" - parameters so we can distinguish brushes, patterns etc. actions. - - * app/widgets/gimpimageview.[ch] - * app/widgets/gimpbrushfactoryview.c - * app/widgets/gimpbufferview.c - * app/widgets/gimpfontview.c - * app/widgets/gimpgradienteditor.c - * app/widgets/gimppatternfactoryview.c - * app/widgets/gimptemplateview.[ch] - * app/widgets/gimptoolview.c: removed tons of GtkButton::clicked() - callbacks and use gimp_editor_add_action_button() instead - of simply _add_button(). - - * app/gui/dialogs-constructors.c - * app/gui/gradient-select.c - * app/gui/palette-select.c - * app/gui/pattern-select.c: changed accordingly. - -2004-05-11 Michael Natterer - - * app/widgets/gimpcontainercombobox.c: correctly get the default - GimpContainerViewInterface implementation and chain up to it for - clear_items(). Update the preview renderers on "update", enable - deselecting everything. - - * app/widgets/gimpimagedock.[ch] - * app/gui/file-new-dialog.c - * app/gui/palette-import-dialog.c - * app/gui/preferences-dialog.c - * app/gui/stroke-dialog.c: use GimpContainerComboBox instead of - GimpContainerMenuImpl. - - * app/gui/palette-import-dialog.c: cleanup. - -2004-05-11 Sven Neumann - - * docs/gimptool.1.in: fixed spelling. - -2004-05-11 Sven Neumann - - * app/widgets/gimpcontainertreeview.c: minor cleanup. - -2004-05-11 Michael Schumacher - - * libgimp/gimp.def - * libgimpbase/gimpbase.def: updated - -2004-05-11 Sven Neumann - - * app/gui/user-install-dialog.c: removed the "Aborting - Installation" page. We added it as a nice little gimmick but - obviously people don't understand it's purpose. Fixes bug #142281. - -2004-05-11 Sven Neumann - - * app/widgets/Makefile.am - * app/widgets/widgets-types.h - * app/widgets/gimpcontainercombobox.[ch]: added new widget, almost - finished. - - * app/widgets/gimpcontainerview.[ch]: added convenience functions - to get and set the GimpContainerView properties. - - * app/widgets/gimpcontainerbox.c: use the convenience functions. - - * app/gui/file-new-dialog.c: use the new GimpContainerComboBox. - - * etc/templaterc: use "pixels" as the unit for pixel sized templates. - -2004-05-11 Michael Natterer - - * app/widgets/gimpchanneltreeview.c - * app/widgets/gimpcontainerbox.[ch] - * app/widgets/gimpcontainereditor.c - * app/widgets/gimpcontainergridview.[ch] - * app/widgets/gimpcontainerpopup.c - * app/widgets/gimpcontainertreeview.[ch] - * app/widgets/gimpdatafactoryview.c - * app/widgets/gimpdocumentview.c - * app/widgets/gimpfontview.c - * app/widgets/gimpimageview.c - * app/widgets/gimpitemtreeview.c - * app/widgets/gimplayertreeview.c - * app/widgets/gimppatternfactoryview.c - * app/widgets/gimptemplateview.c - * app/widgets/gimpvectorstreeview.c: code review / cleanup. - -2004-05-11 Michael Natterer - - * app/widgets/widgets-types.h - * app/widgets/gimpcontainerview.[ch]: made GimpContainerView an - interface. Added accessors for all members in the private struct - and made it really private. - - * app/widgets/gimpcontainerbox.[ch]: derive it from GimpEditor and - implement GimpContainerViewInterface and its properties. - - * app/widgets/gimpchanneltreeview.c - * app/widgets/gimpcontainergridview.c - * app/widgets/gimpcontainertreeview.c - * app/widgets/gimpcontainertreeview-dnd.c - * app/widgets/gimpdrawabletreeview.c - * app/widgets/gimpitemtreeview.c - * app/widgets/gimplayertreeview.c - * app/widgets/gimpvectorstreeview.c: implement - GimpContainerViewInterface and use the new accessor functions. - - * app/widgets/gimpcontainerpopup.c - * app/widgets/gimpdocumentview.c: changed accordingly. - - * app/widgets/gimptemplateview.c - * app/widgets/gimpcontainereditor.c - * app/widgets/gimpundoeditor.c - * app/actions/palettes-commands.c: #include "gimpcontainerview.h" - -2004-05-11 Sven Neumann - - * libgimp/gimp.def - * libgimp/gimpui.def - * libgimpbase/gimpbase.def - * libgimpwidgets/gimpwidgets.def: updated. - -2004-05-10 Sven Neumann - - * libgimpwidgets/gimpframe.c (gimp_frame_style_set): removed a - redundant call to gtk_widget_queue_resize(). - -2004-05-10 Sven Neumann - - * app/xcf/xcf-save.c (xcf_save_prop): fixed size of colormap - property. Patch by Daniel Kobras, fixes bug #142149. - -2004-05-10 Henrik Brix Andersen - - * plug-ins/common/screenshot.c (shoot_dialog): fixed the spacing - of the dialog, thanks to Sven for pointing out my mistake. - -2004-05-10 Sven Neumann - - * app/widgets/gimptexteditor.c (gimp_text_editor_set_direction): - don't call gtk_widget_set_direction() on a non-existant widget. - Fixes bug #141792. - -2004-05-10 Sven Neumann - - * app/gui/tips-dialog.c: added missing newline in error message. - -2004-05-10 Michael Natterer - - More GimpContainerView chopping: - - * app/widgets/gimpcontainerview.[ch]: added - GimpContainerViewPrivate struct (which is currently public :-) and - removed all members from the GimpContainerView struct. Added - accessors for "context", "container" and "preview_size / - preview_border_width". Added macro to get the private struct - (*not* via G_TYPE_INSTANCE_GET_PRIVATE because that's unavailable - for interfaces). - - * app/widgets/gimpbrushfactoryview.c - * app/widgets/gimpbufferview.c - * app/widgets/gimpchanneltreeview.c - * app/widgets/gimpcontainerbox.c - * app/widgets/gimpcontainereditor.c - * app/widgets/gimpcontainergridview.c - * app/widgets/gimpcontainerpopup.c - * app/widgets/gimpcontainertreeview-dnd.c - * app/widgets/gimpcontainertreeview.c - * app/widgets/gimpdatafactoryview.c - * app/widgets/gimpdocumentview.c - * app/widgets/gimpfontview.c - * app/widgets/gimpimageview.c - * app/widgets/gimpitemtreeview.c - * app/widgets/gimplayertreeview.c - * app/widgets/gimpsessioninfo.c - * app/widgets/gimptemplateview.c - * app/widgets/gimptoolview.c - * app/actions/brushes-actions.c - * app/actions/buffers-actions.c - * app/actions/dockable-actions.c - * app/actions/dockable-commands.c - * app/actions/documents-actions.c - * app/actions/fonts-actions.c - * app/actions/gradients-actions.c - * app/actions/gradients-commands.c - * app/actions/images-actions.c - * app/actions/palettes-actions.c - * app/actions/palettes-commands.c - * app/actions/patterns-actions.c - * app/actions/templates-actions.c - * app/actions/tools-actions.c - * app/actions/tools-commands.c: changed accordingly. - -2004-05-10 Sven Neumann - - * app/tools/gimpmagnifyoptions.[ch] - * app/tools/gimpmagnifytool.c: applied a patch from William Skaggs - that changes a misleading option label. Fixes bug #137508. - -2004-05-10 Sven Neumann - - * app/config/gimpdisplayconfig.c (DEFAULT_IMAGE_TITLE_FORMAT): - removed the display scale from the default image title because - it's now displayed in the statusbar. Show the image pixel size - instead. - - * app/gui/preferences-dialog.c: include a preset for the title - format string that shows the image size (bug #141720). - -2004-05-10 Michael Natterer - - Prepare for making an interface out of GimpContainerView: - - * app/widgets/Makefile.am - * app/widgets/widgets-types.h - * app/widgets/gimpcontainerbox.[ch]: new GimpContainerView - subclass which implements GimpDocked interface and contains the - vbox-with-scrolled-window stuff common to GimpContainerGridView - and GimpContainerTreeView. - - * app/widgets/gimpcontainerview.[ch]: removed that functionality - here. - - * app/widgets/gimpcontainergridview.[ch] - * app/widgets/gimpcontainertreeview.[ch]: derive them from - GimpContainerBox. - - * app/gui/brush-select.c - * app/gui/font-select.c - * app/gui/gradient-select.c - * app/gui/palette-select.c - * app/gui/pattern-select.c - * app/widgets/gimpcontainerpopup.c: changed accordingly. - -2004-05-10 Sven Neumann - - * app/actions/view-actions.c: added a stock icon for "view-zoom-1-1". - - * app/widgets/gimpunitcombobox.[ch]: added functions to get and - set the active unit. - - * app/widgets/gimpunitstore.c (gimp_unit_store_tree_model_get_value): - need to special case GIMP_UNIT_PIXEL. - - * app/display/Makefile.am - * app/display/display-types.h - * app/display/gimpscalecombobox.[ch]: new widget to be used in the - display's statusbar. - - * app/display/gimpdisplayshell-cursor.[ch]: always display the - cursor position, not only if the cursor is inside the image. Added - new function gimp_display_shell_clear_cursor() to clear the cursor - label. - - * app/display/gimpdisplayshell-callbacks.c: changed accordingly. - - * app/display/gimpstatusbar.[ch] - * app/display/gimpdisplayshell.c - * app/display/gimpdisplayshell-handlers.c - * app/display/gimpdisplayshell-scale.c: do not explicitely resize - the statusbar cursor label, connect to GimpDisplayShell::scaled - instead. Added a GimpScaleComboBox to the status bar. - -2004-05-10 Michael Natterer - - Started making the toolbox configurable. - Addresses bug #105764. Not finished yet. - - * app/core/gimptoolinfo.[ch]: renamed "in_toolbox" to "visible" - and made it a GObject property. - - * app/tools/gimp-tools.[ch]: added new function - gimp_tools_get_default_order() which returns a GList of tool - identifiers. - - * app/actions/tools-actions.c - * app/actions/tools-commands.[ch]: added actions & callbacks for - toggling the "visible" boolean and for resetting all tools. - - * app/widgets/Makefile.am - * app/widgets/widgets-types.h - * app/widgets/gimptoolview.[ch]: new widget which allows to - toggle a tool's visibility and to reorder the tools. - - * app/widgets/gimptoolbox.[ch]: removed member "GtkWidget *trash" - and pack all tool buttons into the same wrap box. Connect to - "reoder" of the tool container and to "notify::visible" of all - tool infos and update the toolbox accordingly. - - * app/gui/dialogs-constructors.c: create a GimpToolView for the - tools list/grid. - - * app/menus/menus.c: register a menu for the dialog above. - - * menus/Makefile.am - * menus/tools-menu.xml: added the menu. - -2004-05-10 Michael Natterer - - * app/widgets/gimpuimanager.c: re-added help for menu items. Still - incomplete because there is no fallback help ID yet when pressing - F1 over a menu item which has a submenu. Added evil workaround and - version check for signal brokenness of GtkUIManager in GTK+ 2.4.1. - -2004-05-09 Hans Breuer - - Merge from stable branch : - - * plug-ins/common/winclipboard.c : support gray images; - fixes bug #141382 - - * plug-ins/common/winprint.c : dito; fixes bug #141145 - -2004-05-09 Maurits Rijk - - * plug-ins/common/aa.c - * plug-ins/common/apply_lens.c - * plug-ins/common/autocrop.c - * plug-ins/common/autostretch_hsv.c: HIGified, GPL license added in - some plug-ins, minor code clean-up. - -2004-05-08 Maurits Rijk - - * plug-ins/common/spread.c: HIGified, simplified and fixes #141733 - -2004-05-08 Henrik Brix Andersen - - * plug-ins/common/screenshot.c (shoot_dialog): HIGify the - screenshot plug-in. Fixes part of bug #141772. - -2004-05-08 Sven Neumann - - * app/display/gimpstatusbar.c (gimp_statusbar_resize_cursor): - added 1 pixel horizontal padding around the label. - -2004-05-08 Sven Neumann - - * app/display/gimpstatusbar.[ch]: renamed struct member combo to - unit_combo. Place the combobox into the cursor frame. - -2004-05-08 Sven Neumann - - * app/widgets/Makefile.am - * app/widgets/widgets-types.h - * app/widgets/gimpunitcombobox.[ch] - * app/widgets/gimpunitstore.[ch]: added a prototype of a unit menu - based on GtkComboBox. Will move this to libgimpwidgets later... - - * app/display/gimpstatusbar.[ch]: use the new GimpUnitComboBox and - GimpUnitStore. - - * themes/Default/gtkrc - * themes/Small/gtkrc: hardcode the appearance of the - GimpUnitComboBox. It uses a hack that doesn't work in list mode. - -2004-05-07 Sven Neumann - - * app/core/gimpimage-colormap.[ch]: added a const qualifier. - - Changed how the image unit and dot-for-dot mode is handled. Might - break things and certainly needs more changes (mainly in tools): - - * app/core/gimptemplate.c: allow GIMP_UNIT_PIXEL as image unit. - - * app/display/gimpdisplayshell-handlers.c - * app/display/gimpdisplayshell-scale.c - * app/display/gimpdisplayshell-title.c - * app/display/gimpstatusbar.c: always use the image unit for the - rulers and to display lengths. - - * app/widgets/gimptemplateeditor.c: redone GimpTemplateEditor - based on a dialog mockup from Jimmac and Tigert. - - * app/core/core-enums.[ch]: changed some descriptions used by the - template editor. - -2004-05-07 Michael Natterer - - * plug-ins/common/AlienMap2.c - * plug-ins/common/CML_explorer.c - * plug-ins/common/animationplay.c - * plug-ins/common/despeckle.c - * plug-ins/fp/fp.c - * plug-ins/gfig/gfig.c - * plug-ins/gflare/gflare.c - * plug-ins/script-fu/script-fu.c - * plug-ins/twain/twain.c: forgot some gimp_plugin_menu_register(). - -2004-05-07 Michael Natterer - - * plug-ins/FractalExplorer/FractalExplorer.c - * plug-ins/Lighting/lighting_main.c - * plug-ins/MapObject/mapobject_main.c - * plug-ins/dbbrowser/dbbrowser.c - * plug-ins/flame/flame.c - * plug-ins/gimpressionist/gimp.c - * plug-ins/ifscompose/ifscompose.c - * plug-ins/imagemap/imap_main.c - * plug-ins/maze/maze.c - * plug-ins/pagecurl/pagecurl.c - * plug-ins/print/print.c - * plug-ins/rcm/rcm.c - * plug-ins/winsnap/winsnap.c - * plug-ins/common/[g-z]*.c: use gimp_plugin_menu_register(). Some - formatting cleanups in some query() functions. - -2004-05-07 Michael Natterer - - * app/plug-in/plug-in-proc.[ch]: removed member "accelerator". - It was never set and this is the conceptually wrong place to store - it anyway. - - * app/actions/file-dialog-actions.c - * app/actions/plug-in-actions.c - * app/plug-in/plug-in-message.c - * app/xcf/xcf.c: changed accordingly. - - * tools/pdbgen/pdb/plug_in.pdb (plugins_query): always return NULL - as accelerator. Cleaned up the function a bit and made it aware of - proc_def->menu_label added below. - - * app/pdb/plug_in_cmds.c: regenerated. - -2004-05-07 Michael Natterer - - Changed plug-in menu registration again to allow passing just the - menu item's label (not the full path) in gimp_install_procedure() - and only the path (excluding the item's label) in - gimp_plugin_menu_register(). Matches the internal action system - better and makes translating the menu paths much easier. - - (Of yourse it's still possible to use the old syntax for backward - compatibility). - - * app/plug-in/plug-in-proc.[ch]: added "gchar *menu_label". - - * app/plug-in/plug-in-params.[ch]: added new functions - plug_in_param_defs_check() and plug_in_proc_args_check() which - check if a procedure's parameters match its menu location - (e.g. needs RUN-MODE, IMAGE, DRAWABLE). - - * app/plug-in/plug-in-message.c (plug_in_handle_proc_install): if - registering an old-style (full) menu_path, use - plug_in_param_defs_check(), set proc_def->menu_label otherwise. - - * tools/pdbgen/pdb/plug_in.pdb (plugin_menu_register): use - plug_in_proc_args_check() on the passed menu_path and make sure - old and new style menu registration are not mixed. - - * app/pdb/plug_in_cmds.c: regenerated. - - * app/plug-in/plug-in-rc.c: save/restore "menu_label". - - * app/actions/file-dialog-actions.c - * app/actions/plug-in-actions.c - * app/menus/plug-in-menus.c: changed action/menu creation - accordingly. Some hacks needed to allow both old and new style - menu_label/menu_paths. - - * app/plug-in/plug-in.c - * app/widgets/gimpfiledialog.c - * app/xcf/xcf.c: changed accordingly. - - * plug-ins/common/align_layers.c - * plug-ins/common/animationplay.c - * plug-ins/common/animoptimize.c - * plug-ins/common/apply_lens.c - * plug-ins/common/autocrop.c - * plug-ins/common/autostretch_hsv.c - * plug-ins/common/blinds.c - * plug-ins/common/blur.c - * plug-ins/common/borderaverage.c - * plug-ins/common/bumpmap.c - * plug-ins/common/c_astretch.c - * plug-ins/common/ccanalyze.c - * plug-ins/common/channel_mixer.c - * plug-ins/common/checkerboard.c - * plug-ins/common/color_enhance.c - * plug-ins/common/colorify.c - * plug-ins/common/colortoalpha.c - * plug-ins/common/compose.c - * plug-ins/common/convmatrix.c - * plug-ins/common/cubism.c - * plug-ins/common/curve_bend.c - * plug-ins/common/decompose.c - * plug-ins/common/deinterlace.c - * plug-ins/common/depthmerge.c - * plug-ins/common/destripe.c - * plug-ins/common/diffraction.c - * plug-ins/common/displace.c - * plug-ins/common/edge.c - * plug-ins/common/emboss.c - * plug-ins/common/engrave.c - * plug-ins/common/exchange.c - * plug-ins/common/film.c - * plug-ins/common/flarefx.c - * plug-ins/common/fractaltrace.c - * plug-ins/common/screenshot.c: ported the first few plug-ins - to the new registration scheme. - -2004-05-06 Manish Singh - - * tools/pdbgen/pdb/app.pl: make libgimp* headers always included - before any app headers. - - * tools/pdbgen/pdb/paint_tools.pdb: Fix silly "Dodgebure" typo. - - * app/pdb/*_cmds.c: regenerated. - -2004-05-06 Sven Neumann - - * app/core/gimpdrawable-preview.c - * app/core/gimpimage-projection.c: added sanity so we don't just - plain crash when an indexed image doesn't have a colormap. - - * plug-ins/common/png.c: keep at least one entry in the colormap. - Fixes bug #142029. - -2004-05-06 Maurits Rijk - - * plug-ins/common/sobel.c: replaced RMS macro by smarter one, - resulting in a doubling in speed for this plug-in. - - * plug-ins/fp/fp.c: include stdlib for free, malloc and abs. - -2004-05-06 Maurits Rijk - - * plug-ins/fp/fp_gdk.c - * plug-ins/fp/fp_gtk.c - * plug-ins/fp/fp_misc.c - * plug-ins/fp/fp.h: removed - - * plug-ins/fp/Makefile.am: changed accordingly - - * plug-ins/fp/fp.c: merged into one single file to get rid of all - global variables and functions. Major clean-up. Still more to come. - -2004-05-06 Sven Neumann - - * app/gui/about-dialog.c: center the about dialog on the monitor, - not on the screen. Fixes window position on xinerama setups. - -2004-05-06 Michael Natterer - - * tools/pdbgen/pdb/plug_in.pdb: renamed gimp_plugin_menu_add() to - gimp_plugin_menu_register() for consistency with other - gimp_plugin_foo_register() functions which can be called during - query(). - - * app/pdb/plug_in_cmds.c - * libgimp/gimpplugin_pdb.[ch]: regenerated. - - * plug-ins/common/ccanalyze.c - * plug-ins/common/colortoalpha.c - * plug-ins/common/screenshot.c - * plug-ins/winsnap/winsnap.c: changed accordingly. - -2004-05-06 Michael Natterer - - Enabled multiple menu entries per plug-in procedure: - - * app/plug-in/plug-in-proc.[ch]: changed "gchar *menu_path" to - "GList *menu_paths". - - * app/plug-in/plug-in-message.c - * app/plug-in/plug-in-rc.c - * app/plug-in/plug-in.c - * app/plug-in/plug-ins.c - * app/menus/menus.c - * app/widgets/gimpfiledialog.c - * app/xcf/xcf.c: changed accordingly. - - * app/actions/file-dialog-actions.c - * app/actions/plug-in-actions.c: create an action for the first - element of proc_def->menu_paths. - - * app/gui/gui-vtable.c - * app/menus/plug-in-menus.[ch]: create proxy widgets for each - element of proc_def->menu_paths. - - * tools/pdbgen/pdb/plug_in.pdb: added new function - gimp_plugin_menu_add() which can be called during query() and adds - a menu path to a procedure registered by the calling plugin. - - * app/pdb/internal_procs.c - * app/pdb/plug_in_cmds.c - * libgimp/gimpplugin_pdb.[ch]: regenerated. - - * menus/image-menu.xml.in - * menus/toolbox-menu.xml.in: added lots of s for - logical groups (like Image/Resize, Image/Scale, Image/Crop - etc.). Added empty placeholder File/Send for stuff like print and - mail. Added an "Acquire" menu under /File - - * plug-ins/common/mail.c - * plug-ins/print/print.c - * plug-ins/common/winprint.c: register under File/Send. - - * plug-ins/common/screenshot.c - * plug-ins/winsnap/winsnap.c: also register under - /File/Acquire. - - * plug-ins/common/autocrop.c - * plug-ins/common/ccanalyze.c - * plug-ins/common/colortoalpha.c - * plug-ins/common/threshold_alpha.c - * plug-ins/common/zealouscrop.c: register additional menu entries - under placeholders in the "Image" and "Layer" menus. This is not - meant to be final but just a hint to keep in mind when - reorganizing the plug-in menus. - -2004-05-06 Sven Neumann - - * app/gui/resize-dialog.[ch]: cleaned up variable names and - external API. Still quite a mess. - - * app/Makefile.am - * app/actions/image-commands.c - * app/actions/layers-commands.c: changed accordingly. - -2004-05-06 Sven Neumann - - * app/menus/menus.c: no need for including gimp-intl.h. - -2004-05-06 Michael Natterer - - * configure.in - * app/Makefile.am - * app/menus/.cvsignore - * app/menus/Makefile.am - * app/menus/menus-types.h - * app/menus/menus.[ch] - * app/menus/file-open-menu.[ch] - * app/menus/file-save-menu.[ch] - * app/menus/image-menu.[ch] - * app/menus/plug-in-menus.[ch] - * app/menus/tool-options-menu.[ch] - * app/menus/toolbox-menu.[ch]: moved all menus files to their - own directory. - - * app/gui/Makefile.am - * app/gui/menus.[ch] - * app/gui/file-open-menu.[ch] - * app/gui/file-save-menu.[ch] - * app/gui/image-menu.[ch] - * app/gui/plug-in-menus.[ch] - * app/gui/tool-options-menu.[ch] - * app/gui/toolbox-menu.[ch]: removed them here. - - * app/actions/debug-commands.c - * app/actions/file-commands.c - * app/gui/brush-select.c - * app/gui/dialogs.c - * app/gui/font-select.c - * app/gui/gradient-select.c - * app/gui/gui-vtable.c - * app/gui/gui.c - * app/gui/palette-select.c - * app/gui/pattern-select.c - * app/gui/preferences-dialog.c: changed #includes accordingly. - -2004-05-05 Sven Neumann - - * app/gui/file-new-dialog.c: use a normal GimpDialog instead of a - GimpViewableDialog that never has a viewable set. - -2004-05-05 Michael Natterer - - * app/gui/brush-select.[ch] (brush_select_new): reordered parameters - so the first four are the same for all foo_select_new() functions. - - * tools/pdbgen/pdb/brush_select.pdb: changed accordingly. - - * app/pdb/brush_select_cmds.c: regenerated. - - * app/gui/font-select.c (font_select_new): set the vbox' - border width to 6 to match the other foo_select dialogs. - -2004-05-05 Michael Natterer - - * app/actions/debug-actions.c - * app/actions/debug-commands.[ch] - * menus/toolbox-menu.xml.in: added action & callback which XML-dump - all UI managers. - -2004-05-05 Michael Natterer - - * app/actions/plug-in-actions.c (plug_in_actions_add_proc): fixed - bug which would have leaked broken menu translations. - - * app/gui/plug-in-menus.c: removed useless #includes. - -2004-05-05 Michael Natterer - - * app/actions/file-actions.c - * app/actions/file-commands.[ch]: remove "file-close" action and - callback... - - * app/actions/view-actions.c - * app/actions/view-commands.[ch]: ...and added it here as - "view-close" because that's what it does. - - * app/actions/qmask-actions.c - * app/actions/qmask-commands.c: s/QMask/QuickMask/g - - * app/gui/menus.c: add the "channels" action group to the - and UI managers, renamed UI manager to - . - - * app/widgets/gimpdockbook.c: s///. - - * menus/image-menu.xml.in: s/file-close/view-close/, added - separators at the end of most menus, moved the bottom group of the - "View" menu after the zoom group. - -2004-05-05 Michael Natterer - - * app/actions/select-actions.c: removed action "select-by-color". - - * app/tools/gimpbycolorselecttool.c: add the shortcut here. - - * app/actions/tools-actions.c: added alternative tool actions for - "by-color-select" and "rotate" which are identical to the ones - generated from the GimpToolInfo except for their label. Make sure - they have the same accelerators as the generated ones. - - * menus/image-menu.xml.in: use the alternative actions for - "/Select/By Color" and - "/Transform/Arbitrary Rotation...". - -2004-05-05 Sven Neumann - - * libgimpwidgets/gimphelpui.c: documentation. - -2004-05-05 Michael Natterer - - Finally enable global accelerators in all docks: - - * app/widgets/gimpimagedock.c (gimp_image_dock_constructor): - iterate all of the UI manager's actions and enable their - accelerators manually. Fixes bug #119878. - -2004-05-05 Sven Neumann - - * app/widgets/gimpviewabledialog.c: added construct properties to - make it possible to derive from GimpViewableDialog. - - * app/widgets/gimptooldialog.[ch]: make GimpToolDialog a real - object, not just a convenience constructor. - - * themes/Default/gtkrc - * themes/Small/gtkrc: set a smaller border_width of 6 pixels for - the action area of tool dialogs. - - * app/tools/gimpcolorpickertool.c - * app/tools/gimpimagemaptool.c: set a smaller border_width of 6 - pixels on tool dialogs to make them more compact. - -2004-05-05 Michael Natterer - - * libgimpwidgets/gimpoffsetarea.[ch]: added new function - gimp_offset_area_set_pixbuf(). Started to clean up the - code a bit. - - * app/gui/resize-dialog.c (resize_widget_new): use the new feature - and set a preview of the image. Fixes bug #78733. - -2004-05-05 Sven Neumann - - * app/gui/info-dialog.c - * app/tools/gimpcolorbalancetool.c - * app/tools/gimpcolorizetool.c - * app/tools/gimpcurvestool.c - * app/tools/gimphuesaturationtool.c - * app/tools/gimpimagemaptool.c - * app/tools/gimplevelstool.c: use GimpFrame widgets, changed spacings. - - * app/widgets/gimptexteditor.c: tweaked. - -2004-05-05 Jakub Steiner - - * data/images/gimp_splash.png: ustable splash - -2004-05-04 Michael Natterer - - * app/gui/menus.c: register a UI manager which has all - action groups has except "view". - - * app/widgets/gimpimagedock.[ch]: re-enabled the global shortcuts, - using UI manager instead of item factory. Unfortunately actions - without proxy widgets can't be activated so this change is pretty - useless. Oh well, will find a hack to work around this later... - -2004-05-04 Sven Neumann - - * app/tools/gimpblendoptions.c - * app/tools/gimpbucketfilloptions.c - * app/tools/gimpcoloroptions.c - * app/tools/gimpinkoptions.c - * app/tools/gimppaintoptions-gui.c - * app/tools/gimpselectionoptions.c - * app/tools/gimptooloptions-gui.c - * app/tools/gimptransformoptions.c: use GimpFrames where GtkFrame - was used. Put "Pressure Sensitivity" frame into a GtkExpander. - -2004-05-04 Sven Neumann - - * libgimpwidgets/gimpframe.c: added a style property to control - boldening of the frame title. - - * themes/Default/gtkrc - * themes/Small/gtkrc: suppress the bold title for GimpFrames in - GimpDockables, - -2004-05-04 Sven Neumann - - * libgimpwidgets/gimpframe.c (gimp_frame_size_allocate): allocate - the full width for the label widget, looks better and is more - convenient to use with activatable widgets such as toggle buttons. - -2004-05-04 Michael Natterer - - * app/widgets/gimpfiledialog.c: removed debugging output, added - #warning about runtime version check that can be removed as soon - as we depend on GTK+ 2.4.1. - -2004-05-04 Michael Natterer - - * app/actions/file-dialog-actions.c (file_dialog_actions_setup): - don't forget to set the action's accelerator. - -2004-05-04 Sven Neumann - - * app/actions/channels-commands.c - * app/actions/gradient-editor-commands.c - * app/actions/image-commands.c - * app/actions/layers-commands.c - * app/actions/qmask-commands.c - * app/actions/templates-commands.c - * app/actions/vectors-commands.c - * app/display/gimpdisplayshell-filter-dialog.c - * app/gui/convert-dialog.c - * app/gui/module-browser.c - * app/gui/offset-dialog.c - * app/gui/palette-import-dialog.c - * app/gui/resize-dialog.c - * app/gui/resolution-calibrate-dialog.c - * app/gui/tips-dialog.c - * app/gui/user-install-dialog.c - * app/widgets/gimpwidgets-utils.c - * libgimpwidgets/gimpquerybox.c: set dialog border spacing to 12. - -2004-05-04 Sven Neumann - - * app/gui/preferences-dialog.c - * app/widgets/widgets-enums.[ch] - * app/widgets/gimpwidgets-utils.c (gimp_window_set_hint): added - new window hint "keep-above" to force toolbox and/or dock windows - to be kept above (if the WM supports this hint). Fixes bug #131672. - -2004-05-04 Michael Natterer - - Fix bug #141719: - - * app/tools/gimpmovetool.c (gimp_move_tool_motion): use RINT() - instead of ROUND() to round double coords to guide positions. - - * app/display/gimpdisplayshell-callbacks.c - (gimp_display_shell_canvas_tool_events): pass RINT()-rounded - coords to gimp_display_shell_update_cursor() instead of implicitly - truncating by casting to int. - -2004-05-04 Michael Natterer - - * app/widgets/gimpundoeditor.c: removed code duplication by adding - utility function gimp_undo_editor_update_buttons(), some general - cleanups. - -2004-05-04 Michael Natterer - - * app/core/gimpimage.c (gimp_image_undo_freeze,thaw): emit the - "undo-freeze" and "undo-thaw" signals only on the first freeze and - last thaw, not on any of them. - - * app/widgets/gimphelp-ids.h: added GIMP_HELP_EDIT_UNDO_CLEAR. - - * app/widgets/gimpundoeditor.[ch]: added a "Clear Undo History" - button. Fixes bug #136300. - - Also don't attach to the image's undo stack if the image's undo is - disabled and set the buttons' sensitivity accordingly. Should fix - all kinds of unpredictable undo history brokenness. - -2004-05-04 Michael Natterer - - Treat FG/BG just like all other context properties: - - * app/paint/gimppaintoptions.h: added GIMP_CONTEXT_FOREGROUND_MASK - and _BACKGROUND_MASK to GIMP_PAINT_OPTIONS_CONTEXT_MASK to specify - that they are used by GimpPaintOptions (automatically affects all - paint tools). - - * app/tools/gimpblendtool.c - * app/tools/gimpbucketfilltool.c - * app/tools/gimpinktool.c: set FOREGROUND_MASK and BACKGROUND_MASK - manually here. - - * app/tools/tool_manager.c (tool_manager_tool_changed): decide - about the globality of FG and BG at the same place where we decide - about the brush's, pattern's etc. globality, but hardcode them to - global = TRUE instead of looking at GimpConfig. - - Fixes bug #141786. - -2004-05-04 Sven Neumann - - * plug-ins/common/sobel.c (sobel_dialog): removed frame, adjusted - spacing, fixes bug #141773. - -2004-05-04 Sven Neumann - - * app/gui/stroke-dialog.c: - * app/widgets/gimpstrokeeditor.c: moved line style options into a - GtkExpander. Changed dialog spacings. - -2004-05-03 Manish Singh - - * app/actions/qmask-actions.c: initialize is_active for qmask-toggle. - - * app/actions/tools-actions.c: set entry help_id from tool_info, - since gimp_action_group_add_string_actions expects it to be there - now. - -2004-05-03 Sven Neumann - - * libgimpwidgets/gimpframe.c (gimp_frame_new): added a hack that - allows to get the label_spacing but no label. Useful when the frame - is packed into a GtkExpander. - - * app/widgets/gimptemplateeditor.c: pack the "Image Comment" frame - into a GtkExpander to reduce clutter and dialog size. - -2004-05-03 Michael Natterer - - * libgimpwidgets/gimphelpui.[ch]: added gimp_help_id_quark() - which is G_GNUC_CONST and a new macro GIMP_HELP_ID as shortcut. - - * app/widgets/gimpactiongroup.c (gimp_action_group_add_*_actions): - attach the help ID to the action using the new quark key. Call - gtk_action_group_add_action() instead of the _with_accel() variant - if the accel is the empty string (== if we explicitely want no - accel even if the stock item specifies one). Fixes warning flood - with GTK+ 2.4.1. - -2004-05-03 Sven Neumann - - * libgimpwidgets/gimpframe.c: if the label_widget is a button, set - the button label as bold. Cache the indentation instead of - calculating it over and over again. - - * themes/Default/gtkrc: set HIG-compliant spacing for the - action_area. - - * app/widgets/gimppropwidgets.[ch]: added - gimp_prop_enum_radio_box_new() for a radio group that is no - embedded in a frame. - - * app/widgets/gimpstrokeeditor.c: use a frame-less radio box for - the Stroke style. - - * app/gui/file-new-dialog.c - * app/gui/grid-dialog.c - * app/gui/stroke-dialog.c: HIG-compliant spacings. - -2004-05-03 Michael Natterer - - * app/widgets/gimpdock.c (gimp_dock_key_press_event): new function - which overrides GtkWindow's default handler in order to give the - focus widget precedence over accelerators for keys without any - modifier or with modifier. Enables e.g. having a +s - accelerator while still being able to enter 'S' in an entry. - Thanks to Tim Janik for the code. - -2004-05-03 Michael Natterer - - * app/actions/actions.h. added the various return_if_no_foo() - macros here. - - * app/actions/channels-commands.c - * app/actions/dialogs-commands.c - * app/actions/drawable-commands.c - * app/actions/edit-commands.c - * app/actions/file-commands.c - * app/actions/image-commands.c - * app/actions/layers-commands.c - * app/actions/qmask-commands.c - * app/actions/select-commands.c - * app/actions/vectors-commands.c - * app/actions/view-commands.c: removed them here. Some cleanup. - -2004-05-03 Michael Natterer - - * app/actions/actions.[ch]: added some utility functions to get a - Gimp, GimpImage, GimpDisplay and GtkWidget from the "data" pointer - passed to action callbacks. - - * app/actions/channels-actions.c - * app/actions/channels-commands.c - * app/actions/drawable-actions.c - * app/actions/drawable-commands.c - * app/actions/edit-actions.c - * app/actions/edit-commands.c - * app/actions/file-actions.c - * app/actions/file-commands.c - * app/actions/help-commands.c - * app/actions/image-actions.c - * app/actions/image-commands.c - * app/actions/layers-actions.c - * app/actions/layers-commands.c - * app/actions/plug-in-actions.c - * app/actions/plug-in-commands.c - * app/actions/qmask-actions.c - * app/actions/qmask-commands.c - * app/actions/select-actions.c - * app/actions/select-commands.c - * app/actions/tools-commands.c - * app/actions/vectors-actions.c - * app/actions/vectors-commands.c - * app/actions/view-commands.c: use the new functions instead of - duplicating insane macros and if() constructs over and over again. - -2004-05-03 Sven Neumann - - * libgimpwidgets/gimpwidgets.c: use a GimpFrame for - gimp_radio_group_new() and friends. - - * themes/Default/gtkrc - * themes/Small/gtkrc: set a smaller label_spacing for GimpFrame - widgets in GimpDockables. Lame hack to keep the tool options - compact. - - * app/actions/image-commands.c: changed spacing. - - * app/gui/offset-dialog.c: merged check and radio buttons into a - single radio button group; changed spacing. - -2004-05-03 Sven Neumann - - * libgimpwidgets/gimpframe.c (gimp_frame_size_allocate): respect - the frame's border width. - - * app/widgets/gimpcolorframe.[ch]: derive from GimpFrame. - - * app/gui/convert-dialog.c - * app/gui/info-window.c - * app/gui/palette-import-dialog.c - * app/gui/resize-dialog.c: use GimpFrames, changed some spacings. - -2004-05-03 Michael Natterer - - * app/actions/dockable-commands.c (dockable_add_tab_cmd_callback): - truncate the passed dialog identifier at the first '|'. Fixes - creating brushes, paterns etc. dialogs from the dockables' - "Add Tab" menu. - -2004-05-02 Sven Neumann - - * libgimpwidgets/gimpframe.c (gimp_frame_size_request): take the - left margin into account. - - * app/widgets/gimpgrideditor.c - * app/widgets/gimptemplateeditor.c: removed container borders that - aren't needed any longer. - -2004-05-02 Sven Neumann - - * app/widgets/gimpenumwidgets.c - * app/widgets/gimpgrideditor.c - * app/widgets/gimptemplateeditor.c: use the GimpFrame widget, - changed some spacings to better comply with the HIG. - -2004-05-02 Sven Neumann - - * libgimpwidgets/Makefile.am - * libgimpwidgets/gimpwidgets.h - * libgimpwidgets/gimpwidgetstypes.h - * libgimpwidgets/gimpframe.[ch]: added new widget GimpFrame, a HIG - compliant variant of GtkFrame. - - * app/gui/preferences-dialog.c: enable the HIG compliant mode by - default and use the new GimpFrame widget for it. - - * themes/Small/gtkrc: set a smaller spacing between the GimpFrame - title label and the frame content. - -2004-05-02 Michael Natterer - - * app/actions/qmask-actions.c: renamed action "qmask-toggle" to - "qmask-active" and added new action "qmask-toggle" with a label - and shortcut suited for the "Select" menu. - - * app/actions/select-actions.c: removed "select-toggle-qmask". - - * app/actions/select-commands.[ch]: removed callback - select_toggle_quickmask_cmd_callback(). - - * app/actions/channels-actions.c (channels_actions_update) - * app/actions/vectors-actions.c (vectors_actions_update): handle - "data" being both GimpDisplay and GimpDisplayShell so the actions - can be used in the image menu. - - * menus/image-menu.xml.in: s/select-toggle-qmask/qmask-toggle/. - - * menus/qmask-menu.xml: s/qmask-toggle/qmask-active/. - -2004-05-02 Sven Neumann - - * menus/image-menu.xml.in - * menus/tool-options-menu.xml - * menus/toolbox-menu.xml.in: use empty elements for empty menus. - Makes the XML somewhat easier to read. - -2004-05-02 Sven Neumann - - * menus/Makefile.am - * menus/dialogs-menuitems.xml: new file that holds menuitems that - appear in several places. - - * menus/dockable-menu.xml.in: new file used to generate - dockable-menu.xml. - - * menus/toolbox-menu.xml.in: new file used to generate - toolbox-menu.xml. - - * menus/image-menu.xml.in: include dialogs-menuitems.xml. - - * menus/menus.xsl: allow inclusion of menuitems using XInclude. - -2004-05-02 Michael Natterer - - * app/actions/Makefile.am - * app/actions/file-dialog-actions.[ch]: new files containing - factored out code to set up the and actions. - Use GimpPlugInActions instead of just GtkActions. - - * app/actions/file-dialog-commands.[ch]: new files containing - file_dialog_type_cmd_callback() which is a - GimpPlugInAction::selected() callback now. - - * app/actions/file-commands.[ch]: removed the callback here. - - * app/actions/file-open-actions.c - * app/actions/file-save-actions.c: removed code duplication and - use file_dialog_actions_setup() instead. - -2004-05-02 Michael Natterer - - * app/actions/*-actions.c: added help IDs to all actions - representing the toplevel popups and menus (as fallbacks for the - still-to-be-written help system intrgration of GimpUIManager). - - * app/display/gimpdisplayshell.c (gimp_display_shell_new): removed - call to gtk_ui_manager_ensure_update() because that's done by - gimp_ui_manager_ui_get() now. - - * app/widgets/gimpmenufactory.[ch]: removed API to register and - create item factories. - - * app/gui/menus.c: changed accordingly. - - * app/gui/dialogs.c - * app/actions/plug-in-commands.c - * app/gui/file-dialog-utils.c - * app/gui/file-save-dialog.c - * app/widgets/gimpdataeditor.c - * app/widgets/gimpdockable.c - * app/widgets/gimpdockbook.[ch] - * app/widgets/gimpimagedock.c - * app/widgets/gimpitemtreeview.c: removed leftover item factory - cruft. - - * app/widgets/widgets-types.h: removed item factory typedefs... - - * app/widgets/gimpitemfactory.h: ...and added them here. - - * app/widgets/gimpactiongroup.[ch]: added new function - gimp_action_group_add_plug_in_actions(). - - * app/actions/plug-in-actions.c: use it here instead of adding - the actions manually. - - * app/widgets/gimptoolbox.c: ported the code which dynamically - updates the tool button tooltips on accelerator changes to - GtkAction. Disabled the whole stuff because GTK+ lacks - gtk_action_get_accel_closure(). - -2004-05-02 Sven Neumann - - * menus/Makefile.am: added a rule to generate gtkuimanager XML - files using an XSL transformation. - - * menus/menus.xsl: a simple XSLT to generate a menubar and a popup - menu with identical content. - - * menus/image-menu.xml: removed this file from CVS ... - - * menus/image-menu.xml.in: ... and added this instead. - - * HACKING: xsltproc is now needed to build from CVS. - -2004-05-01 Sven Neumann - - * configure.in: check for xmllint and xsltproc but don't require - these tools. - - * menus/Makefile.am - * tips/Makefile.am: simplified "validate" targets. - -2004-04-30 Pedro Gimeno - - * app/tools/gimprectselecttool.c: Cleanups. - (gimp_rect_select_tool_coords_to_integer): Undo my bogus fix for - bug #138103, which led to bug #140649. - - * app/pdb/procedural_db.c (procedural_db_init_procs): Add missing - compat procs: gimp_channel_ops_duplicate, gimp_channel_ops_offset. - -2004-04-30 Sven Neumann - - * app/gui/tool-options-menu.c: added casts to please the compiler. - -2004-04-30 Michael Natterer - - * app/widgets/gimpuimanager.[ch]: added signal "update" which - is G_SIGNAL_RUN_LAST, so handlers can hook in before and after - the default implementation. Update the action groups - in the default implementations. - - (gimp_ui_manager_ui_get): make sure we always return a widget - by calling gtk_ui_manager_ensure_update(). - - * app/widgets/gimpdockable.c (gimp_dockable_show_menu): make - sure the dockable menu is loaded before trying to access its - widgets/actions. - - Resurrected the dynamic tool options menus: - - * app/actions/tool-options-actions.c: dynamically destroy/create - actions for the tool options' presets. - - * app/actions/tool-options-commands.[ch]: all callbacks are - GimpEnumAction::selected() callbacks now. - - * app/gui/tool-options-menu.[ch]: connect and connect_after to - GimpUIManager::update(). Remove the old preset menu items - in the former callback, create the new ones in the latter. - Removed the last item factory entries. - - * app/gui/menus.c - * app/widgets/gimptooloptionseditor.c: changed accordingly. - -2004-04-29 Simon Budig - - * app/main.c: when glibc is used, call mallopt, so that memory - chunks >= 4k (= 64*64 pixels, 1bpp - the smallest full tile) - get allocated via mmap. This ensures that after closing an image - the memory allocated for image data gets returned to the system. - - Thanks to Phil Blundell for bringing mallopt - to my attention. - - Please watch closely for performance problems. - -2004-04-29 Michael Natterer - - * app/actions/Makefile.am - * app/actions/file-open-actions.[ch] - * app/actions/file-save-actions.[ch]: actions for the and - menus... - - * menus/Makefile.am - * menus/file-open-menu.xml - * menus/file-save-menu.xml: ...and the menus. - - * app/gui/file-open-menu.[ch] - * app/gui/file-save-menu.[ch]: ported to UI Manager. - - * app/widgets/gimpfiledialog.[ch]: ditto. - - * app/actions/actions.c - * app/gui/menus.c - * app/gui/file-open-dialog.c - * app/gui/file-save-dialog.c: changed accordingly. - - * app/widgets/gimpuimanager.c: removed debugging code which - automatically loaded all registered menus. They are now loaded on - demand only. - -2004-04-29 Michael Natterer - - * libgimpbase/gimputils.[ch] (gimp_escape_uline): new function - which does the opposite of gimp_strip_uline(). - - * app/actions/file-actions.c (file_actions_last_opened_update): - escape ulines in filenames so they don't end up as mnemonics. - Spotted by Pedro Gimeno. - -2004-04-29 Manish Singh - - * plug-ins/pygimp/plug-ins/py-slice.py: Quick fix to make uppercase - tags work properly. - -2004-04-29 Michael Natterer - - * app/tools/gimp*tool.c (gimp_*_tool_register): stripped the menu - paths from the "menu_path". Will be renamed to "action_name" or - something soon... - - * plug-ins/dbbrowser/dbbrowser.c - * plug-ins/common/plugindetails.c - * plug-ins/common/uniteditor.c: register under the new - "Extensions" placeholder. - -2004-04-29 Michael Natterer - - Switch from GtkItemFactory to GtkUIManager. The migration is - almost complete, still stuff missing/incomplete, definitely added - a bunch of new bugs... - - * app/actions/*-commands.[ch]: converted all callback from - GtkItemFactory callbacks to GtkAction callbacks. - - * app/actions/debug-actions.c - * app/actions/gradient-editor-actions.c - * app/actions/help-actions.c - * app/actions/plug-in-actions.c - * app/actions/qmask-actions.c - * app/actions/tool-options-actions.c: various fixes. - - * app/display/gimpdisplay.[ch] - * app/display/gimpdisplayshell-appearance.[ch] - * app/display/gimpdisplayshell-callbacks.c - * app/display/gimpdisplayshell.[ch]: move everything from - GtkItemFactory to GtkUIManager. - - * app/gui/dialogs.[ch]: added new function dialogs_get_toolbox(). - Needed because the action callbacks don't have a widget parameter - and sometimes we need a parent window for showing dialogs. - - * app/gui/Makefile.am - * app/gui/brushes-menu.[ch] - * app/gui/buffers-menu.[ch] - * app/gui/channels-menu.[ch] - * app/gui/colormap-editor-menu.[ch] - * app/gui/dialogs-menu.[ch] - * app/gui/documents-menu.[ch] - * app/gui/error-console-menu.[ch] - * app/gui/fonts-menu.[ch] - * app/gui/gradient-editor-menu.[ch] - * app/gui/gradients-menu.[ch] - * app/gui/images-menu.[ch] - * app/gui/layers-menu.[ch] - * app/gui/palette-editor-menu.[ch] - * app/gui/palettes-menu.[ch] - * app/gui/patterns-menu.[ch] - * app/gui/qmask-menu.[ch] - * app/gui/templates-menu.[ch] - * app/gui/vectors-menu.[ch]: removed these files. - - * app/gui/gui.c: create a global UI manager for the image popup - menu and the toolbox menubar. - - * app/gui/menus.[ch]: removed all GtkItemFactory code. - - * app/gui/image-menu.[ch] - * app/gui/toolbox-menu.[ch]: removed everything except the trivial - setup_funcs. - - * app/gui/file-open-menu.c - * app/gui/file-save-menu.c - * app/gui/tool-options-menu.c: don't use the macros from menus.h - any more, they are gone. - - * app/gui/gui-vtable.c - * app/gui/plug-in-menus.[ch]: create/destroy the dynamic plug-in - menu entries. - - * app/tools/gimpimagemaptool.c: s/gimp_item_factory_update/ - gimp_ui_manager_update/g - - * app/widgets/gimpuimanager.[ch]: added API to get an action - group by name. - - * app/widgets/gimpmenufactory.c: don't choke on the item_factory - entries being NULL. - - * app/widgets/gimpactiongroup.c: make sure booleans set using - g_object_set() only have TRUE or FALSE values. - - * app/widgets/gimpcolormapeditor.c - * app/widgets/gimpcomponenteditor.c - * app/widgets/gimpcontainereditor.[ch] - * app/widgets/gimpcontainergridview.c - * app/widgets/gimpcontainertreeview.c - * app/widgets/gimpdockable.[ch] - * app/widgets/gimpdocked.[ch] - * app/widgets/gimpeditor.[ch] - * app/widgets/gimperrorconsole.c - * app/widgets/gimpgradienteditor.c - * app/widgets/gimpitemtreeview.c - * app/widgets/gimppaletteeditor.c - * app/widgets/gimptoolbox.c - * app/widgets/gimptooloptionseditor.c: removed all GtkItemFactory - code and enable the #if 0'ed UI manager stuff. - - * menus/gradient-editor-menu.xml: fixed typos. - - * menus/image-menu.xml: duplicate everything so we have both - an image menubar and an image popup menu. Badly cries for an - XSL processor. - - * menus/toolbox-menu.xml: added an "Extensions" placeholder. - -2004-04-27 Michael Natterer - - * app/widgets/Makefile.am - * app/widgets/widgets-types.h - * app/widgets/gimppluginaction.[ch]: new GtkAction subclass which - remembers the PlugInProcDef. - - * app/widgets/gimpactiongroup.[ch]: added "gpointer user_data" to - the GimpActionGroup struct and to gimp_action_group_new(). Removed - the user_data parameter from gimp_action_group_add_*_actions(). - - * app/widgets/gimpactionfactory.[ch]: changed accordingly. - - * app/actions/*-actions.[ch]: removed user_data from all setup_funcs. - - * app/actions/plug-in-actions.c: use a GimpPlugInAction and - finally use the right user_data for the callback so plug-in - callbacks have a proper context. - - * app/gui/plug-in-menus.[ch]: renamed plug_in_menus_create2() to - plug_in_menus_setup(). - - * app/gui/image-menu.c - * app/gui/toolbox-menu.c: changed accordingly. - -2004-04-27 Michael Natterer - - * app/widgets/gimpactiongroup.[ch]: removed "translation-domain" - property and simply use gettext(). Plug-In domains are handled - by plug-in-actions.c - - The following change finally starts breaking the old menu system - while the new one is not fully in place yet. Have fun: - - * menus/image-menu.xml: added several s for plug-ins - to register their menu entries in the middle of already existing - menus. - - * app/gui/menus.c - * plug-ins/common/mail.c - * plug-ins/print/print.c - * plug-ins/script-fu/scripts/copy-visible.scm: use the new - placeholders to register menu entries. - -2004-04-27 Michael Natterer - - Correctly translated & sorted plug-in actions & menu entries: - - * app/widgets/gimpuimanager.[ch]: added a "gchar *name" property - and a hash table which keeps all created UI managers (similar to - GimpActionGroup's hash table). Added function - gimp_ui_managers_from_name() which returns a list of all managers - with the given name. - - * app/widgets/gimpmenufactory.c: register a name per UI manager - and pass the name to gimp_ui_manager_new(). - - * app/actions/plug-in-actions.c: added code which correctly - translates the created plug-in actions and also creates translated - menu actions for the plug-in's menu_path elements. - - * app/gui/plug-in-menus.[ch]: sort the plug-ins' menu entries - using a GTree. For each entry, recursivlely create submenus - from the dynamic menu actions created above before creating - the plug-in's menu entry itself. - - * app/gui/image-menu.c (image_menu_setup2) - * app/gui/toolbox-menu.c (toolbox_menu_setup2): call - plug_in_menus_create2(). - - * app/gui/gui-vtable.c (gui_menus_create_entry) - (gui_menus_delete_entry): added some uglyness which maps old - menu identifiers to new-style UI manager plus ui_path tuples and - call plug_in_menus_add,remove_proc() accordingly. - - * menus/image-menu.xml - * menus/toolbox-menu.xml: added name="Foo" attributes to all menus - so plug-in entries find their place. - -2004-04-27 Michael Natterer - - * app/gui/gui.c (gui_restore_callback): call actions_init() - (gui_exit_after_callback): call actions_exit(). - - * app/gui/menus.c (menus_init) - (menu_exit): don't call them here. - -2004-04-26 Michael Natterer - - * app/widgets/widgets-types.h: added GimpUIManagerSetupFunc typedef. - - * app/widgets/gimpuimanager.[ch]: added the setup_func to the - GimpUIManagerUIEntry struct and to gimp_ui_manager_ui_register(). - Call the setup_func after creating the UI. Replaced the term - "identifier" by "ui_path". - - * app/widgets/gimpmenufactory.c: ditto. - - * app/gui/menus.c (menus_init): register the new setup_funcs below. - - * app/gui/menus.[ch] (menus_open_recent_add) - * app/gui/image-menu.[ch] (image_menu_setup2) - * app/gui/toolbox-menu.[ch] (toolbox_menu_setup2): new setup_funcs - which add the "Open Recent" menu items. - - * app/actions/file-actions.c: removed "file-open-recent-empty" - action because it's not needed. - - * menus/image-menu.xml - * menus/toolbox-menu.xml: removed "file-open-recent-empty" menu - items and added s for the "Open Recent" menu items. - -2004-04-26 Michael Natterer - - * app/core/gimp.[ch]: removed "locale_domain" and "help_domain" - parameters from GimpMenusCreateFunc. - - * app/plug-in/plug-ins.c (plug_ins_temp_proc_def_add) - * app/actions/plug-in-actions.[ch] (plug_in_actions_add_proc_def): - changed accordingly. - - * app/widgets/gimpactiongroup.[ch]: remember all created action - groups is a hash table in GimpActionGroupClass. Added - gimp_action_groups_from_name() which returns a GList of all groups - with the given name. - - * app/actions/plug-in-actions.[ch] (plug_in_actions_setup): - removed the tree sorting code. Actions don't need to be ordered - alphabetically. - - (plug_in_actions_update): copied & ported plug_in_menus_update(). - - * app/gui/gui-vtable.c (gui_menus_create,delete_entry): - dynamically add/remove plug-in actions in all "plug-in" action - groups. - -2004-04-25 Michael Natterer - - * app/core/gimp.[ch]: changed GimpMenusDeleteFunc to take - a PlugInProcDef* instead of a const gchar*. - - * app/plug-in/plug-ins.c - * app/gui/gui-vtable.c - * app/gui/plug-in-menus.[ch]: changed accordingly. - -2004-04-25 Sven Neumann - - * plug-ins/common/AlienMap2.c: some UI improvements based on a - patch by William Skaggs (bug #140079). - -2004-04-22 Sven Neumann - - * app/gui/dialogs-constructors.c - * app/gui/preferences-dialog.c: silent the compiler. - - * plug-ins/winicon/icodialog.c: simplified by using a - GimpIntComboBox. - -2004-04-22 Michael Natterer - - * app/widgets/gimpuimanager.[ch]: remember and ref the created - widgets. Added gimp_ui_manager_ui_popup() which pops up a GtkMenu - with a custom GimpMenuPositionFunc and a GtkDestroyNotify which is - called on popdown. - - * app/widgets/gimpmenufactory.c (gimp_menu_factory_finalize): - don't forget to free the list of managed UIs. - - * app/widgets/gimpdockable.[ch] - * app/widgets/gimpdockbook.[ch] - * app/widgets/gimpdocked.[ch] - * app/widgets/gimpeditor.[ch]: added GimpUIManager stuff parallel - to the to-be-removed GtkItemFactory stuff. - - * app/widgets/gimpcolormapeditor.c - * app/widgets/gimpcomponenteditor.c - * app/widgets/gimpcontainereditor.c - * app/widgets/gimpcontainergridview.c - * app/widgets/gimpcontainertreeview.c - * app/widgets/gimperrorconsole.c - * app/widgets/gimpgradienteditor.c - * app/widgets/gimpitemtreeview.c - * app/widgets/gimppaletteeditor.c - * app/widgets/gimptooloptionseditor.c: changed accordingly and added - #if 0'ed code which actually uses all the UI managers. - - * app/display/gimpdisplay.c - * app/display/gimpdisplayshell.c - * app/gui/gui-vtable.c: disabled some gimp_ui_manager_update() - calls because they were invoking toggle and radio callbacks - which still have the wrong signature. - -2004-04-22 Sven Neumann - - * plug-ins/gflare/gflare.c: ported the last plug-in from - GtkOptionMenu to GimpIntComboBox. - - * plug-ins/common/newsprint.c: changed a comment that was still - talking about option menus. - -2004-04-22 Michael Natterer - - * app/gui/menus.c (menus_init): fixed some typos in the UI Manager - registration code. - -2004-04-22 Michael Natterer - - * app/widgets/gimpactiongroup.[ch]: implemented - gimp_action_group_set_action_color() and - gimp_action_group_set_action_viewable(). - - * app/actions/*-actions.c: added stock IDs to all actions which - represent toplevel popup menus. Fixed typos. - - * menus/brushes-menu.xml - * menus/colormap-editor-menu.xml - * menus/dockable-menu.xml - * menus/gradients-menu.xml - * menus/patterns-menu.xml - * menus/toolbox-menu.xml: fixed typos. - -2004-04-22 Sven Neumann - - * plug-ins/rcm/rcm_callback.[ch] - * plug-ins/rcm/rcm_dialog.c: ported from GtkOptionMenu to - GimpIntComboBox. - -2004-04-22 Sven Neumann - - * libgimpwidgets/gimpintstore.[ch]: automatically add an "(Empty)" - item if the store is empty and remove it as soon as other items - are being added. - - * libgimp/gimpdrawablecombobox.c - * libgimp/gimpimagecombobox.c: removed handling of the empty list; - the store does this for us now. - -2004-04-22 Sven Neumann - - * libgimpwidgets/gimpintcombobox.c (gimp_int_combo_box_new): - removed the check for first_label != NULL. Passing a NULL label - makes a perfect empty combo_box. - - * plug-ins/common/newsprint.c - * plug-ins/common/spheredesigner.c: ported from GtkOptioMenu to - GimpIntComboBox. - -2004-04-22 Sven Neumann - - * plug-ins/flame/flame.c - * plug-ins/gimpressionist/brush.c: ported the last two users of - gimpmenu.h to GimpDrawableComboBox. - - * libgimp/gimpmenu.[ch]: declared the functions found here as - deprecated. - - * plug-ins/common/plugindetails.c - * plug-ins/ifscompose/ifscompose.c: silent the compiler. - -2004-04-21 Sven Neumann - - * libgimp/gimpdrawablecombobox.c - * libgimp/gimpimagecombobox.c - * libgimp/gimpmenu.c: changed the label for the empty menu from - "None" to "Empty" since that's what GTK+ uses. - - * libgimpwidgets/gimpintcombobox.[ch]: added convenience function - gimp_int_combo_box_connect(). - - * plug-ins/common/bumpmap.c - * plug-ins/common/compose.c - * plug-ins/common/depthmerge.c - * plug-ins/common/displace.c - * plug-ins/common/lic.c - * plug-ins/common/warp.c: ported to GimpDrawableComboBox. - - * plug-ins/Lighting/lighting_ui.c - * plug-ins/MapObject/mapobject_ui.c - * plug-ins/common/sample_colorize.c: use - gimp_int_combo_box_connect(). This restores the correct behaviour - of setting the drawable_ID to the first drawable from the list if - it's invalid. - -2004-04-21 Michael Natterer - - * app/widgets/Makefile.am - * app/widgets/widgets-types.h - * app/widgets/gimpuimanager.[ch]: new GtkUIManager subclass. Adds - API to update all action groups and knows which UIs it can create - from which XML files. - - * app/widgets/gimpmenufactory.[ch]: register the XML file - basenames along with path of their toplevel menus. Create - GimpUIManagers instead of GtkUIManagers and register the - XML files and menu paths with them. - - * app/gui/menus.c: register all XML files and their toplevel - menu paths. - - * app/widgets/gimpeditor.[ch]: also create a GimpUIManager when - creating the GtkItemFactory. Added "const gchar *ui_identifier" - parameter to gimp_editor_create_menu(). - - * app/widgets/gimpcontainereditor.[ch] - * app/widgets/gimpdataeditor.[ch] - * app/widgets/gimpdatafactoryview.[ch] - * app/widgets/gimpitemtreeview.[ch]: added "ui_identifier" - parameters to all constructors. - - * app/widgets/gimpbrusheditor.c - * app/widgets/gimpbrushfactoryview.c - * app/widgets/gimpbufferview.c - * app/widgets/gimpcolormapeditor.c - * app/widgets/gimpcomponenteditor.c - * app/widgets/gimpcontainerpopup.c - * app/widgets/gimpdocumentview.c - * app/widgets/gimperrorconsole.c - * app/widgets/gimpfontview.c - * app/widgets/gimpgradienteditor.c - * app/widgets/gimpimageview.c - * app/widgets/gimppaletteeditor.c - * app/widgets/gimppatternfactoryview.c - * app/widgets/gimptemplateview.c - * app/widgets/gimptooloptionseditor.c - * app/gui/dialogs-constructors.c - * app/gui/gradient-select.c - * app/gui/palette-select.c - * app/gui/pattern-select.c: pass UI identifiers to the changed - functions above. - - * app/display/gimpdisplayshell.[ch]: added a GimpUIManager for - the menubar (menubar creating code still commented out). - - * app/display/gimpdisplay.c - * app/gui/gui-vtable.c: update the ui manager. - -2004-04-21 Michael Natterer - - * app/actions/actions.c: forgot to register the "patterns" actions. - - * app/actions/*-actions.c: added actions representing the toplevel - menus (popups and menubars). Fixed some typos. - - * menus/*-menu.xml: added action="foo" attributes to all toplevel - menus. Fixed typos here too. - - * menus/gtkuimanager.dtd: fixed possible attributes. - -2004-04-21 Sven Neumann - - * libgimp/gimpmenu.c (gimp_menu_add_none): use the same label as - in the new combo_box widgets. - - * libgimpwidgets/gimpintcombobox.[ch] - * libgimpwidgets/gimpintstore.[ch]: use LibGIMP copyright headers. - -2004-04-21 Sven Neumann - - * libgimp/gimpdrawablecombobox.c - * libgimp/gimpimagecombobox.c - * libgimp/gimppixbuf.c - * libgimpwidgets/gimpintcombobox.c - * libgimpwidgets/gimpintstore.c: API documentation. - -2004-04-21 Sven Neumann - - * libgimpwidgets/gimpintcombobox.[ch]: added new functions - gimp_int_combo_box_[prepend|append]. - - * plug-ins/common/sample_colorize.c: ported to GimpDrawableComboBox. - -2004-04-21 Michael Natterer - - * app/actions/qmask-actions.c - * app/actions/qmask-commands.c: prepared qmask_actions_update() - and the qmask callbacks to be merged into the image ui manager. - - * app/actions/dialogs-actions.c - * app/actions/edit-actions.c - * app/actions/file-actions.c - * app/actions/image-actions.c - * app/actions/layers-actions.c - * app/actions/plug-in-actions.c - * app/actions/tools-actions.c - * app/actions/view-actions.c: fixed lots of typos and buglets - spotted in my first test run. - - * app/gui/menus.c: register the needed action groups with the - menu. - - * app/tools/gimp-tools.c - * app/tools/gimpdodgeburntool.[ch] - * app/tools/gimppaintoptions-gui.c: s/dodgeburn/dodge_burn/g. - - * app/widgets/gimpactionfactory.c - * app/widgets/gimpmenufactory.[ch]: s/G_GNUC_FUNCTION/G_STRFUNC/g, - updated copyright header. - - * menus/image-menu.xml: fixed typos and added the "Filters" - submenus. - -2004-04-21 Michael Natterer - - More unused action stuff: - - * app/widgets/Makefile.am - * app/widgets/widgets-types.h - * app/widgets/gimpactionfactory.[ch]: added a simple factory which - produces GimpActionGroups. - - * app/widgets/gimpactiongroup.[ch]: added an "update_func" member - to the GimpActionGroup struct. Added it as parameter to - gimp_action_group_new(). Added function gimp_action_group_update(). - - * app/widgets/gimpmenufactory.[ch]: added an "action_factory" - member and constructor parameter. Added code to create - GtkUIManagers from registered action group identifiers. - - * app/actions/Makefile.am - * app/actions/actions.[ch]: new files: create a - "global_action_factory" and register all action groups with it. - - * app/actions/edit-actions.c: s/edit_action_update/edit_actions_update/ - - * app/actions/plug-in-actions.[ch]: added API to add/remove - plug-in procedure actions dynamically (unfinished). - - * app/gui/menus.c (menus_init): call actions_init(). - (menus_exit): call actions_exit(). - -2004-04-21 Sven Neumann - - * plug-ins/Lighting/lighting_ui.c - * plug-ins/MapObject/mapobject_ui.c: ported to the new API. - -2004-04-21 Sven Neumann - - * libgimp/Makefile.am - * libgimp/gimpui.h - * libgimp/gimppixbuf.[ch]: new file that holds pixbuf accessors - to gimp data (drawable and image thumbnails for now). - - * libgimp/gimpdrawablecombobox.[ch] - * libgimp/gimpimagecombobox.[ch]: new files with GimpIntComboBox - constructors for image, drawable, channel and layer menus. - - * plug-ins/script-fu/script-fu-scripts.c: use the new functions - instead of the gimpmenu API that is about to be deprecated. - -2004-04-20 Sven Neumann - - * tools/pdbgen/pdb/fileops.pdb (file_load_thumbnail): removed - color cast. Merged from stable branch. - - * app/pdb/fileops_cmds.c: regenerated. - -2004-04-20 Sven Neumann - - * libgimpwidgets/Makefile.am - * libgimpwidgets/gimpwidgets.h - * libgimpwidgets/gimpwidgetstypes.h - * libgimpwidgets/gimpintstore.[ch]: added a GimpIntStore, derived - from GtkListStore, to be used by GimpIntComboBox and also by the - image and drawable menus. - - * libgimpwidgets/gimpintcombobox.c: use the new GimpIntStore. - - * app/widgets/gimpenumstore.[ch]: derive from GimpIntStore, - removed API that is provided by the parent class. - - * app/widgets/gimpenumcombobox.[ch]: derive from GimpIntComboBox, - removed API that is provided by the parent class. - - * app/gui/resize-dialog.c - * app/tools/gimpcurvestool.c - * app/tools/gimplevelstool.c - * app/widgets/gimpcolorframe.c - * app/widgets/gimphistogrameditor.c - * app/widgets/gimppropwidgets.c - * app/widgets/gimpstrokeeditor.c: changed accordingly. - -2004-04-20 Sven Neumann - - * app/widgets/gimpenumstore.[ch] - * app/widgets/gimpenumcombobox.c: let the pixbuf renderer take care - of rendering the pixbuf from the stock_id. - -2004-04-20 Sven Neumann - - * libgimpwidgets/gimpmemsizeentry.c - * modules/cdisplay_colorblind.c - * modules/cdisplay_proof.c: ported to GimpIntComboBox. - - * libgimpwidgets/gimpwidgets.[ch]: declared the gimp option_menu - API as deprecated and removed the code here. - - * libgimpwidgets/Makefile.am - * libgimpwidgets/gimpoldwidgets.[ch]: new files with deprecated - code, guarded with #ifndef GIMP_DISABLE_DEPRECATED ... #endif. - - * libgimpwidgets/gimpintcombobox.h: added G_BEGIN_DECLS, G_END_DECLS. - - * configure.in (CPP_FLAGS): added -DGIMP_DISABLE_DEPRECATED. - - * app/widgets/gimpwidgets-constructors.c: added a #warning and - #undef GIMP_DISABLE_DEPRECATED. The paint mode menu is the last - remaining user of gimp_int_option_menu_new(). - -2004-04-20 Michael Natterer - - * app/gui/convert-dialog.[ch]: renamed convert_to_indexed() - to convert_dialog_new() and return the dialog. Removed - convert_to_rgb() and convert_to_grayscale(). - - * app/gui/offset-dialog.[ch]: renamed offset_dialog_create() - to offset_dialog_new() and return the dialog. - - * app/Makefile.am - * app/actions/drawable-commands.c - * app/actions/image-commands.c: changed accordingly. - -2004-04-20 Michael Natterer - - * app/gui/*-commands.[ch]: removed... - - * app/actions/*-commands.[ch]: ...and added here. - - * app/gui/Makefile.am - * app/gui/*-menu.c - * app/gui/dialogs-constructors.c - * app/gui/gui.c - * app/gui/menus.c - * app/actions/Makefile.am - * app/actions/*-actions.c: changed accordingly. - - * app/actions/plug-in-actions.[ch] - * app/actions/tools-actions.[ch]: new files. - - * app/Makefile.am: had to add more -u evilness because gui/ - and actions/ have cyclic dependencies. - - * menus/image-menu.xml: added some more items. - -2004-04-20 Sven Neumann - - * app/widgets/gimpwidgets-constructors.[ch]: added new function - gimp_paint_mode_menu_set_history(). - - * app/gui/brush-select.c - * app/widgets/gimplayertreeview.c - * app/widgets/gimppropwidgets.c: use the new function instead of - the deprecated gimp_int_option_menu API. - -2004-04-20 Sven Neumann - - * plug-ins/common/align_layers.c - * plug-ins/common/borderaverage.c - * plug-ins/common/channel_mixer.c - * plug-ins/common/gif.c - * plug-ins/common/mng.c - * plug-ins/flame/flame.c - * plug-ins/gfig/gfig.c: ported remaining plug-ins to GimpIntComboBox. - -2004-04-20 Sven Neumann - - * plug-ins/common/iwarp.c (iwarp_get_pixel): check tile != NULL - before unrefing it. Fixes bug #140554; merged from stable branch. - -2004-04-20 Sven Neumann - - * app/widgets/gimpenumcombobox.c: added more sanity checks. - - * libgimpwidgets/gimpintcombobox.[ch]: added another GimpIntComboBox - constructor: gimp_int_combo_box_new_array(). - - * plug-ins/Lighting/lighting_ui.c - * plug-ins/MapObject/mapobject_ui.c - * plug-ins/common/CML_explorer.c: ported to GimpIntComboBox. - -2004-04-20 Sven Neumann - - * libgimpwidgets/Makefile.am - * libgimpwidgets/gimpwidgets.h - * libgimpwidgets/gimpwidgetstypes.h - * libgimpwidgets/gimpintcombobox.[ch]: added new widget - GimpIntComboBox, a GtkComboBox with a simple list store to hold a - label and an associated integer value. This is going to replace - gimp_int_option_menu. - - * plug-ins/common/jpeg.c - * plug-ins/print/gimp_main_window.c: ported these two plug-ins to - the newly added widget. - -2004-04-20 Sven Neumann - - * plug-ins/gfig/gfig.c: removed unused return locations for menu - item pointers. - -2004-04-19 Sven Neumann - - * configure.in: set gimp_plugin_version, gimp_sysconf_version and - gimp_data_version to 2.1 so that the development version is - clearly separated from stable gimp 2.0. - -2004-04-19 Michael Natterer - - * menus/Makefile.am - * menus/image-menu.xml - * menus/tool-options-menu.xml: more menus. - -2004-04-19 Sven Neumann - - * app/widgets/gimpactiongroup.c - * app/widgets/gimpenumcombobox.c - * app/widgets/gimpenumstore.c: fixed inline docs. - - * app/widgets/gimpenumaction.c: fixed property declaration. - -2004-04-19 Michael Natterer - - * app/gui/colormap-editor-commands.[ch] - * app/gui/debug-commands.[ch] - * app/gui/dockable-commands.[ch] - * app/gui/error-console-commands.[ch] - * app/gui/file-commands.[ch] - * app/gui/gradient-editor-commands.[ch] - * app/gui/help-commands.[ch] - * app/gui/qmask-commands.[ch] - * app/gui/tool-options-commands.[ch]: removed "guint action" - parameter from all callbacks which don't need it. - -2004-04-19 Sven Neumann - - * menus/Makefile.am - * menus/gtkuimanager.dtd: added a DTD (basically copied from the - GTK+ API docs). Added a "validate" rule that allows to easily - validate the XML files. - - * menus/*.xml: added a DOCTYPE declaration that refers to the - newly added DTD. - - * app/widgets/gimpenumstore.[ch]: - * app/widgets/gimpenumcombobox.c: documented the new API. - -2004-04-19 Michael Natterer - - * app/actions/Makefile.am - * app/actions/actions-types.h: oops, forgot to commit this one. - -2004-04-19 Michael Natterer - - * menus/Makefile.am - * menus/toolbox-menu.xml: added the toolbox menu. - -2004-04-19 Michael Natterer - - More GtkAction stuff (still unused): - - * configure.in: added new directories menus/ and app/actions/ - - * Makefile.am: build menus/ - - * menus/.cvsignore - * menus/Makefile.am - * menus/*-menu.xml: new files: XML menu descriptions for each menu - which is now defined in gui/*-menu.c. - - * app/widgets/widgets-types.h: some typedefs for GimpActionGroup. - - * app/widgets/gimpactiongroup.[ch]: added a "Gimp" construct-only - property. Added APIs to set actions visible/sensitive/active - and an unimplemented stub for setting the action's color. - - * app/Makefile.am: build actions/ and link libappactions.a - - * app/actions/.cvsignore - * app/actions/Makefile.am - * app/actions/*-actions.[ch]: new files: GtkActions for each - *-commands.c file in gui/. Ported all "update" functions from the - *-menu.c files. - (everything completely unused, untested and partly #if 0'ed) - - * app/core/gimpimage.[ch]: for reasons of (action-) symmetry, added - API to raise/lower channels/vectors to top/bottom. - - * app/gui/channels-commands.[ch] - * app/gui/vectors-commands.[ch]: added callbacks for the new - to top/bottom functions. - - * app/gui/Makefile.am - * app/gui/dockable-commands.[ch]: new files split out of - dialogs-commands.[ch]. - - * app/gui/dialogs-commands.[ch] - * app/gui/dialogs-menu.c: changed accordingly. - - * app/gui/edit-commands.[ch]: added edit_paste_into_cmd_callback() - and remove usage of "guint action". - - * app/gui/image-menu.c: changed accordingly. - - * app/gui/palette-editor-commands.[ch]: split - +palette_editor_new_color_cmd_callback() into separate callbacks - for adding from FG and BG. - - * app/gui/palette-editor-menu.c: changed accordingly. - -2004-04-19 Henrik Brix Andersen - - * plug-ins/script-fu/scripts/gimp-headers.scm - * plug-ins/script-fu/scripts/gimp-labels.scm: applied a patch from - William Skaggs which changes the sub menu title for the gimp web - theme to classic.gimp.org. Fixes bug #137036. - -2004-04-19 Sven Neumann - - * app/widgets/gimpdrawabletreeview.c: removed unused includes. - -2004-04-19 Sven Neumann - - * app/widgets/gimppropwidgets.[ch] - * app/gui/preferences-dialog.c: replaced - gimp_prop_boolean_option_menu_new() with - gimp_prop_boolean_combo_box_new(). - -2004-04-19 Sven Neumann - - * app/widgets/gimpenumstore.[ch]: avoid unnecessary casts. - - * app/widgets/gimpenumcombobox.[ch]: added an API that inserts a - GtkTreeModelFilter to make items invisible. This is a kludge to - workaround bug #135875. - - * app/tools/gimpcurvestool.c - * app/tools/gimplevelstool.c - * app/widgets/gimphistogrameditor.c: use the new function to hide - channels that are not available. - -2004-04-18 Henrik Brix Andersen - - * app/widgets/gimptemplateeditor.c - (gimp_template_editor_constructor): use g_signal_connect_object() - instead of g_signal_connect(). Fixes bug #140315. - -2004-04-18 Pedro Gimeno - - * plug-ins/common/gauss_rle.c (gauss_rle): Oops, fixed my fix. - -2004-04-18 Pedro Gimeno - - * plug-ins/common/gauss_iir.c: Change tabs to spaces all over the - file, in preparation for other changes. Minor cleanup. - - * plug-ins/common/gauss_rle.c (gauss_rle): Plug a leak with the - returned value from make_curve(). - - * plug-ins/common/tga.c (load_image): Fix a condition which was - preventing GRAYA images from loading. - -2004-04-18 Sven Neumann - - * app/widgets/Makefile.am - * app/widgets/widgets-types.h - * app/widgets/gimpenummenu.[ch]: removed GimpEnumMenu. - - * app/widgets/gimpenumwidgets.[ch]: moved widget constructors that - don't use GimpEnumMenu from gimpenummenu.[ch] to these new files. - - * app/widgets/gimpenumcombobox.[ch]: added a GtkComboBox widget - using GimpEnumStore; replaces GimpEnumMenu. - - * app/widgets/gimpenumstore.[ch]: added new function - gimp_enum_store_lookup_by_value(). - - * app/widgets/gimppropwidgets.[ch]: replaced - gimp_prop_enum_option_menu_new() with gimp_prop_enum_combo_box_new(). - - * app/gui/brush-select.[ch] - * app/gui/convert-dialog.c - * app/gui/layers-commands.c - * app/gui/preferences-dialog.c - * app/gui/resize-dialog.c - * app/tools/gimpblendoptions.c - * app/tools/gimpcolorbalancetool.c - * app/tools/gimpcroptool.c - * app/tools/gimpcurvestool.c - * app/tools/gimplevelstool.c - * app/tools/gimpmagnifytool.c - * app/tools/gimppaintoptions-gui.c - * app/tools/gimpselectionoptions.c - * app/tools/gimptransformoptions.c - * app/widgets/gimpcolorframe.c - * app/widgets/gimpeditor.c - * app/widgets/gimpgrideditor.c - * app/widgets/gimphistogrameditor.c - * app/widgets/gimpstrokeeditor.c - * app/widgets/gimptemplateeditor.c - * app/widgets/gimptexteditor.c: ported to GimpEnumComboBox. - -2004-04-18 Sven Neumann - - * app/widgets/Makefile.am - * app/widgets/widgets-types.h - * app/widgets/gimpenumstore.[ch]: added (yet unused) GimpEnumStore, - a GtkListStore for enum values. - -2004-04-18 Sven Neumann - - * plug-ins/print/gimp_main_window.c: replaced wrong use of - gimp_option_menu with gimp_int_option_menu. - -2004-04-18 Sven Neumann - - * plug-ins/script-fu/script-fu-scripts.c: use a GtkComboBox for - SF-OPTION. - -2004-04-18 Sven Neumann - - * plug-ins/winicon/icodialog.c - * plug-ins/winicon/icosave.c: ported GtkOptionMenu to GtkComboBox. - -2004-04-17 Sven Neumann - - * app/widgets/gimpwidgets-constructors.[ch]: - s/GtkSignalFunc/GCallback/ - -2004-04-17 Henrik Brix Andersen - - * app/tools/gimphuesaturationtool.c - (gimp_hue_saturation_tool_dialog): resolved conflicting - mnemonic. Fixes bug #139868. - -2004-04-17 Henrik Brix Andersen - - * plug-ins/common/jpeg.c (save_dialog): live preview doesn't - modify the undo history of the image anymore, label changed - accordingly. Fixes bug #140296. - -2004-04-16 Pedro Gimeno - - * plug-ins/common/tile.c (tile): changed a call to - gimp_image_undo_enable to _undo_disable which was obviously the - intention of the author. Added a call to gimp_drawable_update to - get the previews refreshed. - -2004-04-16 Sven Neumann - - * app/tools/gimpcolorpickertool.c - * app/tools/gimpmeasuretool.c: don't use gtk_window_present() to - raise the tool dialog since it also moves the focus away from the - image window. Fixes the problem described in bug #139349. - -2004-04-16 Sven Neumann - - * app/tools/gimpcroptool.c: some code cleanup that I forgot to do - when applying the patch. - -2004-04-16 Sven Neumann - - * plug-ins/helpbrowser/dialog.c (browser_dialog_load): present the - help browser window. - -2004-04-16 Sven Neumann - - * plug-ins/helpbrowser/dialog.c: use a GtkComboBox instead of - GtkCombo and keep the history in a GtkListStore. - -2004-04-16 Michael Natterer - - * app/core/gimpmarshal.list: new marshaller VOID:STRING - - * app/widgets/Makefile.am - * app/widgets/widgets-types.h - * app/widgets/gimpactiongroup.[ch] - * app/widgets/gimpenumaction.[ch] - * app/widgets/gimpstringaction.[ch]: added some completely unused - GtkAction infrastructure. - -2004-04-15 Manish Singh - - * tools/Makefile.am - * app/Makefile.am - * configure.in: app, tools, and user dir bumped to version 2.1 names. - - * app/text/gimpfontlist.c: since we now depend on pango 1.4, we can - use pango_fc_font_description_from_pattern() instead of our - cut-n-paste function, gimp_font_list_font_desc_from_pattern(). - -2004-04-15 Tor Lillqvist - - * app/plug-in/plug-in-message.c (plug_in_handle_proc_install) - * app/plug-in/plug-in-proc.h (struct _PlugInProcDef) - * app/plug-in/plug-in-rc.c (plug_in_rc_write) - * app/plug-in/plug-ins.c (plug_ins_init): Make PDB procedures - (including their menu entries) installed during a plug-ins init() - phase show up. Add a flag to PlugInProcDef that tells whether the - proc was installed during the init() phase. Such procs aren't - saved to the pluginrc. Move the code that initializes plug-ins - that need initialization earlier, before the procs are added to - the PDB and menus are built. Fixes bug #139969. - -2004-04-16 Sven Neumann - - * plug-ins/common/Makefile.am - * plug-ins/common/plugin-defs.pl - * plug-ins/common/AlienMap.c: removed the AlienMap plug-in since - AlienMap2 duplicates its functionality. - - * plug-ins/common/AlienMap2.c: applied patch from William Skaggs - with a couple of user interface improvements (bug #140079). - -2004-04-15 Tor Lillqvist - - * libgimpthumb/Makefile.am: For Win32, install gimpthumb.def, like - the .def files of the other libgimp* libs. - - * app/Makefile.am (INCLUDES): Add PANGOFT2_CFLAGS. - - * gimp-zip.in: Put also libgimpthumb in the developer package. - -2004-04-15 Sven Neumann - - * plug-ins/winicon/icodialog.c: fixed gtk+ includes, added a - warning that deprecated widgets are being used. - -2004-04-15 Sven Neumann - - * configure.in - * plug-ins/Makefile.am - * plug-ins/winicon/Makefile.am - * plug-ins/winicon/icodialog.[ch] - * plug-ins/winicon/icoload.[ch] - * plug-ins/winicon/icosave.[ch] - * plug-ins/winicon/main.[ch]: added plug-in to load and save - Windows icon files. Plug-in written by Christian Kreibich, port to - GIMP-2.0 API by Gregor Riepl, massive code cleanup by me. Fixes - bug #139160. - -2004-04-15 Michael Natterer - - * app/widgets/gimpdnd.c (gimp_dnd_data_source_add) - (gimp_dnd_data_source_remove): use the new dynamic GtkTargetList - based API for changing the widget's drag source types. - - * app/widgets/gimpdocumentview.c (gimp_document_view_new): simply - call gimp_dnd_file_source_add() instead of duplicating the whole - GtkTargetEntry array insanity just for adding one source type. - -2004-04-15 Michael Natterer - - * plug-ins/FractalExplorer/Dialogs.c - * plug-ins/flame/flame.c - * plug-ins/gfig/gfig.c: first plug-ins ported to GtkFileChooser. - -2004-04-15 Michael Natterer - - * app/display/gimpdisplayshell-callbacks.c - * app/display/gimpdisplayshell.c - * app/widgets/gimpcontainertreeview.c: removed runtime version - checks and workarounds for bugs which are fixed in GTK+ 2.4. - - * app/widgets/gimpfiledialog.c - (gimp_file_dialog_selection_changed): added runtime check for GTK+ - 2.4.1 and work around GtkFileChooser's missing "update_preview" - functionality for multiple selections if the dependency is not - met. - - * app/widgets/gimpwidgets-utils.c (gimp_menu_position) - (gimp_menu_button_position): call gtk_menu_set_monitor() until - bug #139187 is fixed. - -2004-04-15 Michael Natterer - - * app/widgets/gimpfiledialog.[ch]: derive it from GtkFileChooser - instead of GtkFileSelection. - - * app/gui/file-dialog-utils.c - * app/gui/file-open-dialog.c - * app/gui/file-save-dialog.c - * app/widgets/gimpthumbbox.c: changed accordingly. - - * app/gui/gradients-commands.c - * app/gui/vectors-commands.c - * app/tools/gimpimagemaptool.c - * app/widgets/gimperrorconsole.c - * app/widgets/gimptexteditor.c - * libgimpwidgets/gimpfileentry.c: use file choosers instead of - file selectors. - -2004-04-15 Michael Natterer - - * configure.in: depend on glib 2.4.0, gtk+ 2.4.0, pangoft2 1.4.0 - - * app/sanity.c: changed accordingly. - -2004-04-15 Sven Neumann - - * app/tools/gimpcropoptions.[ch] - * app/tools/gimpcroptool.[ch]: applied a patch from Jordi Gay that - allows to keep the aspect ratio fixed. - -2004-04-15 Michael Natterer - - * app/core/gimplayermask.c (gimp_layer_mask_class_init): set - translate_desc to "Move Layer Mask". - - * app/tools/gimpeditselectiontool.c: take the undo desc - from the moved item's class instead of duplicating all - strings here. - -2004-04-15 Sven Neumann - - * app/core/gimppalette-import.[ch] - * app/gui/palette-import-dialog.c: added palette import from RIFF - palette files based on a patch from ÉRDI Gergõ (bug #129788). - -2004-04-15 Michael Natterer - - * app/xcf/xcf.c (xcf_save_invoker) (xcf_load_invoker): forgot - to add context parameters to this non-generated PDB invokers. - Fixes XCF loading/saving. - -2004-04-15 Michael Natterer - - * app/core/gimpitem.[ch]: added "const gchar *stroke_desc" to - the GimpItemClass struct and always push an undo group - around GimpItem::stroke(). - - * app/core/gimpchannel.c - * app/core/gimpselection.c - * app/vectors/gimpvectors.c: set the stroke_desc accordingly - and don't push undo groups. - - * app/text/gimptextlayer.c (gimp_text_layer_class_init): set - all of GimpItemClass' undo_descs. - - * app/text/gimptextlayer-transform.c: don't push undo groups here. - -2004-04-15 Sven Neumann - - * libgimpcolor/gimpcolorspace.c (gimp_rgb_to_hsv): applied patch - from Marco Munari that removes a redundant "if" (bug #133540). - -2004-04-15 Sven Neumann - - * plug-ins/ifscompose/ifscompose.c: applied patch from Yeti that - adds spinbuttons instead of simple text entries (bug #138132). - -2004-04-15 Sven Neumann - - * plug-ins/common/Makefile.am - * plug-ins/common/plugin-defs.pl - * plug-ins/common/gicon.c: removed the GIcon plug-in (addresses - one aspect of bug #139160). - -2004-04-15 Michael Natterer - - Context cleanup continued: - - * app/core/gimpitem.[ch]: added context parameter to - GimpItem::stroke(). - - * app/core/gimpchannel.c (gimp_channel_stroke) - * app/vectors/gimpvectors.c (gimp_vectors_stroke): use it to get - default values from instead of gimp_get_user_context(). - - * app/core/gimpselection.c - * app/gui/stroke-dialog.c - * tools/pdbgen/pdb/edit.pdb - * tools/pdbgen/pdb/paths.pdb: changed accordingly. - - * app/pdb/edit_cmds.c - * app/pdb/paths_cmds.c: regenerated. - - * app/plug-in/plug-in.[ch]: added GimpContext member to the PlugIn - struct. Added context parameter to plug_in_new(), - plug_in_call_query() and plug_in_call_init(). - - * app/plug-in/plug-in-run.[ch]: added context parameters to - plug_in_run() and plug_in_repeat(). - - * app/gui/plug-in-commands.c - * app/gui/vectors-commands.c - * app/pdb/procedural_db.c - * app/widgets/gimphelp.c: pass a context to plug_in_run() and - plug_in_repeat(). - - * app/plug-in/plug-in-message.c (plug_in_handle_proc_run): call - procedures with the plug-in's context. - - * app/plug-in/plug-ins.c: use a temporary context for running the - plug-ins' query() and init() functions. Use the same context for - running automatic extensions. This temporarily separates the main - Script-Fu extension from the user context (i.e. scripts have no - way of setting/getting the global FG, BG, brush etc.). - -2004-04-15 Sven Neumann - - * NEWS - * README: mention that this is the development branch. - -2004-04-15 Sven Neumann - - * app/paint-funcs/paint-funcs.[ch]: - * app/paint-funcs/paint-funcs-generic.h: header cleanup, added - some const qualifiers, converted tabs to spaces. Fixes bug #140115 - for the HEAD branch. - -2004-04-15 Michael Natterer - - Get rid of the "current_context" which was in fact just a bunch of - global variables. Instead, pass the needed context all the way - from the GUI and the PDB to the core. This is a prerequisite for - macro recording and generally helps separating the various - subsystems from each other. Work in progress... - - * app/core/gimp.[ch]: removed member "current_context" and - gimp_[get|set]_current_context(). - - * app/core/gimp-edit.[ch] - * app/core/gimpdrawable-blend.[ch] - * app/core/gimpdrawable-bucket-fill.[ch] - * app/core/gimpdrawable-offset.[ch] - * app/core/gimpdrawable-transform.[ch] - * app/core/gimpimage-crop.[ch] - * app/core/gimpimage-flip.[ch] - * app/core/gimpimage-merge.[ch] - * app/core/gimpimage-resize.[ch] - * app/core/gimpimage-rotate.[ch] - * app/core/gimpimage.[ch] - * app/core/gimpimagefile.[ch] - * app/core/gimpitem-linked.[ch] - * app/core/gimpitem.[ch] - * app/core/gimplayer.[ch] - * app/core/gimpselection.[ch] - * app/core/gimptemplate.[ch] - * app/file/file-open.[ch] - * app/file/file-save.[ch] - * app/pdb/procedural_db.[ch] - * app/text/gimptext-compat.[ch] - * app/text/gimptextlayer-transform.[ch] - * app/gui/brush-select.[ch] - * app/gui/font-select.[ch] - * app/gui/gradient-select.[ch] - * app/gui/palette-select.[ch] - * app/gui/pattern-select.[ch]: added tons of "GimpContext *context" - parameters and use the passed context instead of - gimp_get_current_context(). - - * app/app_procs.c - * app/batch.c - * app/core/gimpchannel.c - * app/core/gimpdrawable.c - * app/paint/gimperaser.c - * app/paint/gimppaintbrush.c - * app/plug-in/plug-in-message.c - * app/plug-in/plug-ins.c - * app/text/gimptextlayer.c - * app/tools/gimpblendtool.c - * app/tools/gimpbucketfilltool.c - * app/tools/gimpcroptool.c - * app/tools/gimpeditselectiontool.c - * app/tools/gimpfliptool.c - * app/tools/gimpinktool.c - * app/tools/gimptransformtool.c - * app/vectors/gimpvectors.c - * app/gui/convert-dialog.c - * app/gui/drawable-commands.c - * app/gui/edit-commands.c - * app/gui/file-commands.c - * app/gui/file-new-dialog.c - * app/gui/file-open-dialog.c - * app/gui/file-save-dialog.c - * app/gui/image-commands.c - * app/gui/layers-commands.c - * app/gui/offset-dialog.c - * app/gui/select-commands.c - * app/gui/vectors-commands.c - * app/widgets/gimpdnd.c - * app/widgets/gimpdocumentview.c - * app/widgets/gimphelp.c - * app/widgets/gimpthumbbox.c: pass gimp_get_user_context() or - GIMP_CONTEXT(tool_options) or whatever is the right context - to the changed core functions. - - * tools/pdbgen/app.pl: pass "GimpContext *context" to all - generated PDB invokers. - - * tools/pdbgen/pdb/brush_select.pdb - * tools/pdbgen/pdb/brushes.pdb - * tools/pdbgen/pdb/drawable.pdb - * tools/pdbgen/pdb/edit.pdb - * tools/pdbgen/pdb/font_select.pdb - * tools/pdbgen/pdb/gradient_select.pdb - * tools/pdbgen/pdb/gradients.pdb - * tools/pdbgen/pdb/image.pdb - * tools/pdbgen/pdb/layer.pdb - * tools/pdbgen/pdb/paint_tools.pdb - * tools/pdbgen/pdb/palette.pdb - * tools/pdbgen/pdb/palette_select.pdb - * tools/pdbgen/pdb/palettes.pdb - * tools/pdbgen/pdb/paths.pdb - * tools/pdbgen/pdb/pattern_select.pdb - * tools/pdbgen/pdb/patterns.pdb - * tools/pdbgen/pdb/selection.pdb - * tools/pdbgen/pdb/text_tool.pdb - * tools/pdbgen/pdb/transform_tools.pdb: pass the new context - parameter to the changed core functions. - - * app/pdb/*_cmds.c: regenerated. - -2004-04-14 Raphaël Quinet - - * plug-ins/script-fu/scripts/copy-visible.scm: New version of the - script that works on a temporary copy of the image instead of - copying the visible layers. Fixes bug #139989. - -2004-04-14 Sven Neumann - - * plug-ins/common/film.c: fixed typo (bug #140039). - -2004-04-14 Sven Neumann - - * configure.in: bumped version to 2.1.0, interface age 0, binary - age 0. Changed library versioning to include gimp_minor_version - similar to how gtk+ does it. - -2004-04-14 Sven Neumann - - * Made 2.0.1 release. - -2004-04-13 Raphaël Quinet - - * plug-ins/common/mng.c (query, run): Workaround for bug #139947: - do not register the plug-in for INDEXED* modes and do not declare - that it can handle INDEXED images in gimp_export_image(). This - forces a conversion to RGB instead of generating broken indexed - images. The generation of correct indexed MNG files is likely to - require a newer release of libmng. - (mng_data): Set default compression level to 9 instead of 6. - -2004-04-13 Sven Neumann - - * plug-ins/imagemap/imap_cern_parse.c - * plug-ins/imagemap/imap_csim_parse.c - * plug-ins/imagemap/imap_ncsa_parse.c: regenerated using GNU Bison - version 1.875a. Fixes bug #139894. - -2004-04-13 Sven Neumann - - * tools/gimp-remote.c: reverted last change and go back to the - solution using fork(). Hopefully fixes bug #139158 this time. - -2004-04-13 Sven Neumann - - * app/core/gimp-utils.[ch] (gimp_get_default_language): added a - category parameter to make this function more flexible. - - * app/text/gimptext.c: changed accordingly. - - * app/widgets/gimphelp.c (gimp_help): localize the help pages - according to the value of LC_MESSAGES. Fixes bug #139917. - -2004-04-13 Michael Natterer - - Moved the calls to floating_sel_relax()/rigor() from various - places to two single spots in the core where they are actually - needed. Fixes bug #138356 (which was caused by the projection - being triggered in the middle of changing the floating selection's - size or the size of the drawable it is attached to). This commit - effectively removes floating selection fiddling from the core's - public API. - - * app/core/gimpdrawable.[ch] (gimp_drawable_has_floating_sel): new - function which returns TRUE if there is a floating selection - attached to the drawable. - - * app/core/gimpdrawable.c (gimp_drawable_translate) - (gimp_drawable_set_tiles_full): if the drawable *has* a floating - selection, relax/rigor it before/after modifying the drawable. - - * app/core/gimplayer.c (gimp_layer_translate) - (gimp_layer_set_tiles): if the layer *is* the floating selection, - relax/rigor it before/after modifying it. - - * app/core/gimpdrawable-transform.c - * app/core/gimpimage-convert.c - * app/core/gimpimage-crop.c - * app/core/gimpimage-flip.c - * app/core/gimpimage-resize.c - * app/core/gimpimage-rotate.c - * app/core/gimpimage-scale.c - * app/gui/layers-commands.c - * app/tools/gimpeditselectiontool.c - * tools/pdbgen/pdb/layer.pdb: removed calls to - floating_sel_rigor()/relax() all over the place. Also removed - lots of undo groups which are obsolete now. - - * app/pdb/layer_cmds.c: regenerated. - -2004-04-13 Sven Neumann - - * plug-ins/imagemap/imap_file.c (do_file_error_dialog): convert - the filename to UTF-8 before displaying it. - -2004-04-13 Michael Natterer - - GimpItem undo group cleanup in preparation of fixing bug #138356: - - * app/core/core-enums.[ch]: renamed LAYER_SCALE and LAYER_RESIZE - undo groups to ITEM_SCALE and ITEM_RESIZE. - - * app/core/gimpitem.[ch]: always push undo groups around - GimpItem::translate(), scale(), resize(), flip(), rotate() and - transform(). Added the resp. undo_desc strings to GimpItemClass. - - * app/core/gimpchannel.[ch] - * app/core/gimpdrawable.[ch] - * app/core/gimplayer.c: removed all undo groups from - implementations of the above methods. Removed the undo_desc - strings which were moved to GimpItemClass. - - * app/core/gimpimage-crop.c - * app/core/gimpselection.c - * app/gui/layers-commands.c - * app/vectors/gimpvectors.c - * tools/pdbgen/pdb/layer.pdb: changed accordingly. - - * app/pdb/layer_cmds.c: regenerated. - -2004-04-12 Sven Neumann - - * configure.in: cleaned up the check for Xmu. Include - when testing for Xmu.h. Fixes bug #139803. - -2004-04-12 Sven Neumann - - * libgimpmath/Makefile.am: remove test-md5 on make clean. - -2004-04-11 Manish Singh - - * plug-ins/pygimp/plug-ins/py-slice.py: When using a separate dir for - images, actually prepend the dir to the img srcs in the html. Allow - only horizontal or vertical guides in an image, do not require both. - A bit smarter path handling. Addresses most of bug #138714. - -2004-04-11 Hans Breuer - - * app/makefile.msc : build sanity.obj - app/text/makefile.msc : gimptextundo.obj - app/widgets/makefile.msc : gimppatternfactoryview.obj - - * plug-ins/common/winclipboard.c : don't call - gimp_image_undo_enable() when it's not switched off. - Otherwise the undo history would be destroyed with - Gimp-Core-CRITICAL **: file gimpimage.c: line 1579: assertion - `gimage->undo_freeze_count > 0' failed - -2004-04-10 Sven Neumann - - * app/tools/gimptexttool.c (gimp_text_tool_apply): push an undo - group only when it's needed. This resurrects text undo compression - that broke when bug #137767 got fixed. - -2004-04-10 Sven Neumann - - * docs/gimp-remote.1.in: updated example URL. - -2004-04-10 Pedro Gimeno - - * app/core/gimpdrawable-transform.c - (gimp_drawable_transform_tiles_affine): Applied patch from William - Skaggs that addresses bug #120490. - - * app/sanity.c (sanity_check): Modified the message that reports - an old version of Fontconfig in an attempt to make it more - informative. - -2004-04-10 Sven Neumann - - * tools/gimp-remote.c (start_new_gimp): reverted the last change - and did a different fix that involves closing the X display before - starting gimp (bug #139158). - -2004-04-09 Manish Singh - - * plug-ins/common/jpeg.c: Uglier workaround for bug #138357, since - the previous one did break error handling. Fixes bug #139571. - -2004-04-09 Henrik Brix Andersen - - * README.i18n: s/14/20/ plus whitespace clean-up. - -2004-04-08 Sven Neumann - - * plug-ins/script-fu/siod-wrapper.c: applied a patch from Kevin - Cozens that makes the Script-Fu PDB marshaller handle NULL - strings. Some minor code cleanup. Fixes bug #139386. - -2004-04-08 Sven Neumann - - * tools/gimp-remote.c (start_new_gimp): applied a patch from - Michael Matz that calls fork() before starting gimp. This is to - avoid X server authentification problems (bug #139158). - -2004-04-07 Henrik Brix Andersen - - * configure.in (ALL_LINGUAS): revert addition of "is" until all - .po files are there. - -2004-04-07 Samúel Jón Gunnarsson - - * configure.in: Added "is" to ALL_LINGUAS - -2004-04-06 Iñaki Larrañaga - - * configure.in: Added "eu" (Basque) to ALL_LINGUAS. - -2004-04-05 Pedro Gimeno - - * plug-ins/script-fu/scripts/copy-visible.scm: Use - gimp-image-get-active-layer/channel instead of the passed - drawable for later restoring the initially active layer/channel. - Addresses bug #138662. - - * plug-ins/script-fu/scripts/drop-shadow.scm: Add a call to - gimp-image-set-active-layer in order for it to fail early instead - of failing with the undo group open in case the drawable is not - suitable for applying the effect. - -2004-04-05 Michael Natterer - - * app/core/gimpimage.c (gimp_image_real_mode_changed): update the - whole image. - - * app/display/gimpdisplay-handlers.c: removed obsolete - "mode_changed" and "colormap_changed" handlers because GimpImage's - default handlers already update the whole image. - -2004-04-05 Pedro Gimeno - - Sanitize rectangle and ellipse selection handling (bug #138237 - and bug #138103): - - * app/tools/gimprectselecttool.h - * app/tools/gimprectselecttool.c (GimpRectSelectTool): new - member "moved" indicating whether the cursor was moved after - the click. - (gimp_rect_select_tool_coords_to_integer): New function for - consistent conversion of the rectangle FP coords to pixels. - (gimp_rect_select_tool_button_press, - gimp_rect_select_tool_button_release, - gimp_rect_select_tool_motion, gimp_rect_select_tool_draw): use - it instead of fiddling with the FP coordinates. Update "moved" - and use it to detect whether the selection needs to be cleared. - - * app/tools/gimpellipseselecttool.c - (gimp_ellipse_select_tool_draw): use the new coords_to_integer - function. - -2004-04-05 Sven Neumann - - * plug-ins/Lighting/lighting_ui.c: applied the second patch - attached to bug #138788 by William Skaggs. Removes some user - interface elements that have no corresponding implementation and - fixes preview updates. - -2004-04-04 Sven Neumann - - * Makefile.am - * NEWS.pre-2-0: moved old NEWS to this new file. - - * NEWS: list bugs fixed since 2.0.0. - -2004-04-04 Sven Neumann - - * Makefile.am - * docs/Makefile.am: don't install gimptool symlinks to - gimptool-2.0 and its manpage. gimp.m4 as installed with gimp-1.2 - looks for gimptool (bug #139024). - -2004-04-04 Sven Neumann - - * app/display/gimpdisplayshell-callbacks.c - * app/display/gimpdisplayshell-draw.[ch] pass the bounding box of - the exposed area to gimp_display_shell_draw_grid() and draw only - the relevant part of the grid. Fixes bug #138081. - -2004-04-04 Sven Neumann - - Cache the GC for drawing the grid as suggested in bug #138081: - - * app/display/gimpdisplayshell.[ch]: added a grid_gc member to - GimpDisplayShell. - - * app/display/gimpdisplayshell-handlers.c - (gimp_display_shell_grid_notify_handler) - (gimp_display_shell_disconnect): invalidate the grid GC. - - * app/display/gimpdisplayshell-draw.c (gimp_display_shell_draw_grid): - use the cached grid_gc. Also applied the fix that Pedro Gimeno did - for bug #138606. - -2004-04-04 Sven Neumann - - * app/core/gimpundo.c (gimp_undo_type_to_name): added a missing - call to gettext(). Fixes bug #139000. - -2004-04-03 Manish Singh - - * gimptool-2.0.in: Create any directories in the install path that do - not already exist. Fixes bug #138980. - - * docs/gimptool.1.in: s/dont/don't/g - -2004-04-04 Sven Neumann - - * app/core/gimpimagemap.c (gimp_image_map_apply): do nothing if the - selection is empty. Fixes bug #138973. - -2004-04-03 Sven Neumann - - * app/text/gimptextlayer.c (gimp_text_layer_new): create the - initial text layer with a size of 1 x 1 since tile_manager_new() - does not any longer accept 0 x 0. - - * app/core/gimpdrawable.c (gimp_drawable_configure): check that - width and height are > 0. - -2004-04-03 Sven Neumann - - * plug-ins/Lighting/lighting_main.c - * plug-ins/Lighting/lighting_shade.c: applied the first of two - patches attached to bug #138788 by William Skaggs. - -2004-04-02 Simon Budig - - * plug-ins/common/whirlpinch.c: set a proper pixelfetcher - edge mode for bigger radii. Avoids getting garbage at the - image borders. - -2004-04-02 Dave Neary - - * plug-ins/common/jpeg.c: Added .jpe to the list of extensions - that the jpeg plug-in recognises. Fixes bug #138776. - -2004-04-01 Sven Neumann - - * app/gui/user-install-dialog.c: unset the bg_pixmap and tweak - style colors for all states. Sort of ugly but makes the dialog - work better with more obscure themes (bug #138379). - -2004-04-01 Sven Neumann - - * tools/kernelgen.c: updated a comment. - -2004-04-01 Michael Natterer - - * app/core/core-enums.[ch] (enum GimpUndoType): added undo type - GIMP_UNDO_TEXT_LAYER_MODIFIED and undo group types - GIMP_UNDO_GROUP_DRAWABLE and GIMP_UNDO_GROUP_DRAWABLE_MOD. - - * app/core/gimpimage-undo-push.[ch]: added new new function - gimp_image_undo_push_text_layer_modified() which makes - modifications of the text_layer's "modified" boolean undoable. - - * app/core/gimpdrawable.[ch]: added new virtual function - GimpDrawable::push_undo() and moved the actual undo pushing into - the default implementation gimp_drawable_real_push_undo(). - - * app/text/gimptextlayer.c (gimp_text_layer_push_undo): new - function. Pushes the text_layer's modified state to the undo stack - after upchaining and sets modified to TRUE. - - (gimp_text_layer_set_tiles): ditto. - - (gimp_lext_layer_apply_region) - (gimp_text_layer_replace_region): removed because their default - implementations already call gimp_drawable_push_undo(). - - (gimp_text_layer_swap_pixels): removed because swap_pixels() is - used by undo only and doesn't need to care about the text_layer's - modified state. - - (gimp_text_layer_render): don't set modified to FALSE here because - we can't push an undo step here. - - (gimp_text_layer_set): push the modified state to the undo stack - and set it to FALSE here. Also push the layer's tiles if the - layer was modified. - - * app/tools/gimptexttool.c (gimp_text_tool_apply): push "modified" - to the undo stack and set it to FALSE here, too. - - Fixes bug #137767. - -2004-03-31 Simon Budig - - * app/tools/gimptransformtool.c: One really should use braces - when mixing additions and multiplication and the operator - precedence is not the desired one... - - I feel stupid... :-) - -2004-03-31 Michael Natterer - - * app/core/gimp-transform-utils.c - (gimp_transform_matrix_perspective): make sure 0.0/0.0 results - in 1.0, not NaN. - - * app/core/gimpdrawable-transform.c - (gimp_drawable_transform_tiles_affine): instead of returning NULL - if the transformation shrinks the tiles completely away, return at - least the pixel (or the row or column of pixels) which best covers - the sub-pixel area of the transform result: - - - Changed rounding of the transformed coordinates from RINT() - to floor()/ceil() so we don't cut off sub-pixel portions of the - transform result. - - Force the minimal size if the changed rounding didn't help. - - Fixes bug #138117. - - Also added paranoia code which falls back to clip_result if the - passed matrix produces NaN coordinates (copied the FINITE() macro - from image_cmds.c). - -2004-03-30 Sven Neumann - - * plug-ins/script-fu/scripts/grid-system.scm: define "map" here, - the script used to take the definition from alien-glow-arrow.scm - or beveled-pattern-arrow.scm. Also added an undo group around all - operations. Fixes bug #138524. - -2004-03-30 Michael Natterer - - * app/Makefile.am - * app/sanity.[ch]: new files implementing sanity_check() for - run-time checking library versions. Added a check for FreeType but - disabled it until we figured if and how freetype causes some of - the DLL hell bugs. - - * app/main.c (main): call it and abort if it fails. - - * app/app_procs.[ch]: added app_gui_abort() so main.c doesn't - need to #include "gui/gui.h" - - * app/gui/gui.[ch] (gui_libs_init): removed library sanity checking. - - (gui_abort): new function which shows the abort message. - -2004-03-30 Michael Natterer - - * configure.in (ALL_LINGUAS): revert addition of "pa" until - all .po files are there. - -2004-03-20 Guntupalli Karunakar - - * configure.in: Added "pa" for Punjabi to ALL_LINGUAS. - -2004-03-29 Manish Singh - - * plug-ins/common/jpeg.c (struct my_error_mgr): Move setjump_buffer - to the beginning of the structure, to make sure it is aligned on a - 16-byte boundary for ia64, even with icc. Fixes #138357. - -2004-03-29 Sven Neumann - - * app/config/gimpguiconfig.c: changed the default for "help-locales" - from NULL to an empty string. Fixes the generated gimprc man-page. - - * app/config/gimprc-blurbs.h (HELP_LOCALES_BLURB): added missing - whitespace. - - * app/widgets/gimphelp.c: use the user's locale if "help-locales" - is NULL or the empty string. - - * docs/gimprc.5.in - * etc/gimprc: regenerated. - -2004-03-29 Michael Natterer - - * app/core/core-enums.[ch] (enum GimpUndoType): added new group - GIMP_UNDO_GROUP_FS_REMOVE. - - * app/core/gimplayer-floating-sel.c (floating_sel_remove): push an - undo group. Fixes undo corruption spotted by Pedro Gimeno. - -2004-03-29 Michael Natterer - - * plug-ins/common/guillotine.c (guillotine): Don't just skip - guides at the image edges but any guide which is at a position we - already remembered. Should catch all instances of bug #138312 this - time. - -2004-03-28 Sven Neumann - - * plug-ins/ifscompose/ifscompose.c: applied patch from David Necas - that updates the sensitivity of the Delete button and menu entry. - Fixes bug #138212. - -2004-03-28 Sven Neumann - - * plug-ins/MapObject/mapobject_main.c: fixed non-interactive call. - - * plug-ins/script-fu/scripts/spinning-globe.scm: pass -1 as - drawable ID for unused drawables. Fixes bug #138253. - -2004-03-28 Sven Neumann - - * app/text/gimpfontlist.c (gimp_font_list_add_font): validate the - font name. This should work around the crashes that Windows users - were experiencing on startup (bug #132366). The real problem needs - to be fixed elsewhere though. - -2004-03-28 Michael Natterer - - * app/core/gimpimage-undo-push.c (undo_pop_layer): when re-adding - a layer with mask, don't forget to set layer->mask->removed to FALSE. - -2004-03-28 Michael Natterer - - * app/core/gimpitem.[ch]: added "gboolean removed" to the GimpItem - struct. Defaults to FALSE. Set it to TRUE in gimp_item_removed(). - Added public function gimp_item_is_removed(). - - * app/core/gimpimage-undo-push.c (undo_pop_layer) - (undo_pop_layer_mask) (undo_pop_channel) (undo_pop_vectors): - set it to FALSE manually when re-adding something from the - undo stack. - - * tools/pdbgen/app.pl - * tools/pdbgen/pdb.pl: don't allow any operation on items which - are removed from the image (and exist on the undo stack only). - Fixes bug #138311. - - * app/pdb/channel_cmds.c - * app/pdb/color_cmds.c - * app/pdb/drawable_cmds.c - * app/pdb/edit_cmds.c - * app/pdb/floating_sel_cmds.c - * app/pdb/image_cmds.c - * app/pdb/layer_cmds.c - * app/pdb/paint_tools_cmds.c - * app/pdb/parasite_cmds.c - * app/pdb/selection_cmds.c - * app/pdb/selection_tools_cmds.c - * app/pdb/transform_tools_cmds.c: regenerated. - -2004-03-28 Sven Neumann - - * plug-ins/script-fu/scripts/slide.scm: applied a (modified) patch - from Nils Philippsen that fixes bug #138310. - -2004-03-28 Michael Natterer - - * plug-ins/common/guillotine.c (guillotine): applied a (modified) - patch from Joao S. O. Bueno which removes any guides from the - cropped images. Fixes bug #138314. - - Skip guides which are at the image's edges because the algorithm - already assumes that there are always guides at these positions. - Fixes bug #138312. - -2004-03-27 Tor Lillqvist - - * plug-ins/help/Makefile.am (AM_LDFLAGS): Use -mwindows on Windows - to avoid a console window popping up. - -2004-03-26 Manish Singh - - * tools/pdbgen/app.pl: don't generate code with tabs. - - * tools/pdbgen/pdb/procedural_db.pdb: convert tabs to spaces in - helper function declaration. - - * app/pdb/procedural_db.c: convert tabs to spaces. - - * app/pdb/*.c: regenerated, no code changes, only tabs->spaces. - -2004-03-26 Manish Singh - - * tools/pdbgen/app.pl: kill whitespace in blank lines. - - * app/pdb/*.c: regenerated, no code changes, only whitespace. - -2004-03-26 Michael Natterer - - * app/core/gimpdrawable-transform.c - (gimp_drawable_transform_tiles_affine): return NULL tiles if the - matrix would transform the drawable into nothing. Fixes the - core-crashing part of bug #138117 and makes the script fail - with an execution error. - -2004-03-25 Sven Neumann - - * README: mention the gimp-perl pre-release and provide a link. - -2004-03-25 Michael Natterer - - * app/base/tile-manager.c (tile_manager_new): g_return_if_fail() - on width, height or bpp <= 0. Doesn't fix anything but badly - warns (and helps debugging) on bug #138117. - -2004-03-25 Michael Natterer - - * app/tools/gimpvectortool.c (gimp_vector_tool_button_release): - fixed condition which triggers the path tool's undo hack. Fixes - bug #138086. Also g_object_unref() the undo step. - - Removed trailing whitespace. - -2004-03-25 Manish Singh - - * libgimp/gimp.c - * app/plug-in/plug-in-shm.c: close the shm_open fd in the POSIX - shm case. We were leaking an fd here. - - * app/tools/gimptexttool.c (gimp_text_tool_connect): remove - unnecessary G_OBJECT() cast in g_object_set() call. - -2004-03-23 Michael Natterer - - * autogen.sh: be verbose about AUTOGEN_CONFIGURE_ARGS in the - message that is printed if no arguments were passed. - -2004-03-23 Sven Neumann - Michael Natterer - - * Made 2.0.0 release. + * Made 2.2.0 release. diff -uraN gimp-2.2.0/config.guess gimp-2.2.1/config.guess --- gimp-2.2.0/config.guess 2004-08-25 16:25:50.000000000 +0200 +++ gimp-2.2.1/config.guess 2004-12-24 03:40:32.000000000 +0100 @@ -3,7 +3,7 @@ # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc. -timestamp='2004-08-13' +timestamp='2004-11-12' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -319,6 +319,9 @@ *:OS/390:*:*) echo i370-ibm-openedition exit 0 ;; + *:z/VM:*:*) + echo s390-ibm-zvmoe + exit 0 ;; *:OS400:*:*) echo powerpc-ibm-os400 exit 0 ;; @@ -342,7 +345,7 @@ DRS?6000:unix:4.0:6*) echo sparc-icl-nx6 exit 0 ;; - DRS?6000:UNIX_SV:4.2*:7*) + DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*) case `/usr/bin/uname -p` in sparc) echo sparc-icl-nx7 && exit 0 ;; esac ;; @@ -824,6 +827,12 @@ cris:Linux:*:*) echo cris-axis-linux-gnu exit 0 ;; + crisv32:Linux:*:*) + echo crisv32-axis-linux-gnu + exit 0 ;; + frv:Linux:*:*) + echo frv-unknown-linux-gnu + exit 0 ;; ia64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit 0 ;; @@ -1241,7 +1250,10 @@ A*) echo alpha-dec-vms && exit 0 ;; I*) echo ia64-dec-vms && exit 0 ;; V*) echo vax-dec-vms && exit 0 ;; - esac + esac ;; + *:XENIX:*:SysV) + echo i386-pc-xenix + exit 0 ;; esac #echo '(No uname command or uname output not recognized.)' 1>&2 diff -uraN gimp-2.2.0/config.sub gimp-2.2.1/config.sub --- gimp-2.2.0/config.sub 2004-08-25 16:25:50.000000000 +0200 +++ gimp-2.2.1/config.sub 2004-12-24 03:40:32.000000000 +0100 @@ -3,7 +3,7 @@ # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc. -timestamp='2004-06-24' +timestamp='2004-11-30' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software @@ -267,7 +267,7 @@ | tahoe | thumb | tic4x | tic80 | tron \ | v850 | v850e \ | we32k \ - | x86 | xscale | xstormy16 | xtensa \ + | x86 | xscale | xscalee[bl] | xstormy16 | xtensa \ | z8k) basic_machine=$basic_machine-unknown ;; @@ -343,8 +343,8 @@ | tron-* \ | v850-* | v850e-* | vax-* \ | we32k-* \ - | x86-* | x86_64-* | xps100-* | xscale-* | xstormy16-* \ - | xtensa-* \ + | x86-* | x86_64-* | xps100-* | xscale-* | xscalee[bl]-* \ + | xstormy16-* | xtensa-* \ | ymp-* \ | z8k-*) ;; @@ -457,6 +457,9 @@ crds | unos) basic_machine=m68k-crds ;; + crisv32 | crisv32-* | etraxfs*) + basic_machine=crisv32-axis + ;; cris | cris-* | etrax*) basic_machine=cris-axis ;; @@ -486,6 +489,10 @@ basic_machine=m88k-motorola os=-sysv3 ;; + djgpp) + basic_machine=i586-pc + os=-msdosdjgpp + ;; dpx20 | dpx20-*) basic_machine=rs6000-bull os=-bosx @@ -1026,6 +1033,10 @@ basic_machine=hppa1.1-winbond os=-proelf ;; + xbox) + basic_machine=i686-pc + os=-mingw32 + ;; xps | xps100) basic_machine=xps100-honeywell ;; @@ -1294,6 +1305,9 @@ -kaos*) os=-kaos ;; + -zvmoe) + os=-zvmoe + ;; -none) ;; *) diff -uraN gimp-2.2.0/configure gimp-2.2.1/configure --- gimp-2.2.0/configure 2004-12-18 00:45:00.000000000 +0100 +++ gimp-2.2.1/configure 2004-12-27 20:49:38.000000000 +0100 @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.59 for GIMP 2.2.0. +# Generated by GNU Autoconf 2.59 for GIMP 2.2.1. # # Report bugs to . # @@ -423,8 +423,8 @@ # Identity of this package. PACKAGE_NAME='GIMP' PACKAGE_TARNAME='gimp' -PACKAGE_VERSION='2.2.0' -PACKAGE_STRING='GIMP 2.2.0' +PACKAGE_VERSION='2.2.1' +PACKAGE_STRING='GIMP 2.2.1' PACKAGE_BUGREPORT='http://bugzilla.gnome.org/enter_bug.cgi?product=GIMP' ac_unique_file="app/core/gimp.c" @@ -954,7 +954,7 @@ # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures GIMP 2.2.0 to adapt to many kinds of systems. +\`configure' configures GIMP 2.2.1 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1024,7 +1024,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of GIMP 2.2.0:";; + short | recursive ) echo "Configuration of GIMP 2.2.1:";; esac cat <<\_ACEOF @@ -1204,7 +1204,7 @@ test -n "$ac_init_help" && exit 0 if $ac_init_version; then cat <<\_ACEOF -GIMP configure 2.2.0 +GIMP configure 2.2.1 generated by GNU Autoconf 2.59 Copyright (C) 2003 Free Software Foundation, Inc. @@ -1218,7 +1218,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by GIMP $as_me 2.2.0, which was +It was created by GIMP $as_me 2.2.1, which was generated by GNU Autoconf 2.59. Invocation command line was $ $0 $@ @@ -1832,7 +1832,7 @@ # Define the identity of the package. PACKAGE='gimp' - VERSION='2.2.0' + VERSION='2.2.1' # Some tools Automake needs. @@ -1954,11 +1954,11 @@ GIMP_MAJOR_VERSION=2 GIMP_MINOR_VERSION=2 -GIMP_MICRO_VERSION=0 -GIMP_INTERFACE_AGE=0 -GIMP_BINARY_AGE=200 -GIMP_VERSION=2.2.0 -GIMP_REAL_VERSION=2.2.0 +GIMP_MICRO_VERSION=1 +GIMP_INTERFACE_AGE=1 +GIMP_BINARY_AGE=201 +GIMP_VERSION=2.2.1 +GIMP_REAL_VERSION=2.2.1 GIMP_API_VERSION=2.0 GIMP_APP_VERSION=2.2 GIMP_PLUGIN_VERSION=2.0 @@ -2010,7 +2010,7 @@ -LT_VERSION_INFO="200:0:200" +LT_VERSION_INFO="200:1:200" LT_CURRENT_MINUS_AGE=0 @@ -34333,7 +34333,7 @@ } >&5 cat >&5 <<_CSEOF -This file was extended by GIMP $as_me 2.2.0, which was +This file was extended by GIMP $as_me 2.2.1, which was generated by GNU Autoconf 2.59. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -34396,7 +34396,7 @@ cat >>$CONFIG_STATUS <<_ACEOF ac_cs_version="\\ -GIMP config.status 2.2.0 +GIMP config.status 2.2.1 configured by $0, generated by GNU Autoconf 2.59, with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\" @@ -34503,8 +34503,8 @@ gimp_major_ver=2 gimp_minor_ver=2 - gimp_micro_ver=0 - gimp_ver=2.2.0 + gimp_micro_ver=1 + gimp_ver=2.2.1 gimp_api_ver=2.0 diff -uraN gimp-2.2.0/configure.in gimp-2.2.1/configure.in --- gimp-2.2.0/configure.in 2004-12-14 00:41:47.000000000 +0100 +++ gimp-2.2.1/configure.in 2004-12-27 20:42:16.000000000 +0100 @@ -12,11 +12,11 @@ m4_define([gimp_major_version], [2]) m4_define([gimp_minor_version], [2]) -m4_define([gimp_micro_version], [0]) +m4_define([gimp_micro_version], [1]) m4_define([gimp_real_version], [gimp_major_version.gimp_minor_version.gimp_micro_version]) m4_define([gimp_version], [gimp_real_version]) -m4_define([gimp_interface_age], [0]) +m4_define([gimp_interface_age], [1]) m4_define([gimp_binary_age], [m4_eval(100 * gimp_minor_version + gimp_micro_version)]) diff -uraN gimp-2.2.0/devel-docs/app/app-docs.sgml gimp-2.2.1/devel-docs/app/app-docs.sgml --- gimp-2.2.0/devel-docs/app/app-docs.sgml 2004-11-24 03:38:17.000000000 +0100 +++ gimp-2.2.1/devel-docs/app/app-docs.sgml 2004-12-27 20:42:16.000000000 +0100 @@ -774,7 +774,7 @@ Previews - + diff -uraN gimp-2.2.0/devel-docs/app/app-sections.txt gimp-2.2.1/devel-docs/app/app-sections.txt --- gimp-2.2.0/devel-docs/app/app-sections.txt 2004-12-12 15:18:41.000000000 +0100 +++ gimp-2.2.1/devel-docs/app/app-sections.txt 2004-12-27 20:42:16.000000000 +0100 @@ -6456,6 +6456,7 @@ GimpDrawable-preview gimp_drawable_get_preview gimp_drawable_get_sub_preview +gimp_drawable_preview_bytes
@@ -7410,8 +7411,9 @@ PlugInProcFrame plug_in_proc_frame_new plug_in_proc_frame_init +plug_in_proc_frame_ref +plug_in_proc_frame_unref plug_in_proc_frame_dispose -plug_in_proc_frame_free
diff -uraN gimp-2.2.0/devel-docs/app/CVS/Entries gimp-2.2.1/devel-docs/app/CVS/Entries --- gimp-2.2.0/devel-docs/app/CVS/Entries 2004-12-18 00:42:53.000000000 +0100 +++ gimp-2.2.1/devel-docs/app/CVS/Entries 2004-12-27 20:42:16.000000000 +0100 @@ -1,8 +1,8 @@ /.cvsignore/1.4/Sat Nov 8 17:37:36 2003// /Makefile.am/1.25/Mon Dec 13 22:51:54 2004// -/app-docs.sgml/1.66/Wed Nov 24 02:38:17 2004// /app-overrides.txt/1.1/Mon Dec 13 22:51:54 2004// -/app-sections.txt/1.78/Sun Dec 12 14:18:41 2004// /app.types/1.32/Wed Nov 3 23:41:48 2004// /version.in/1.1/Sat Nov 8 17:37:36 2003// +/app-docs.sgml/1.67/Mon Dec 27 19:42:16 2004// +/app-sections.txt/1.79/Mon Dec 27 19:42:16 2004// D diff -uraN gimp-2.2.0/devel-docs/app/Makefile gimp-2.2.1/devel-docs/app/Makefile --- gimp-2.2.0/devel-docs/app/Makefile 2004-12-18 00:45:22.000000000 +0100 +++ gimp-2.2.1/devel-docs/app/Makefile 2004-12-27 20:49:58.000000000 +0100 @@ -60,8 +60,8 @@ BUILD_HELPBROWSER_TRUE = BUILD_PRINT_FALSE = # BUILD_PRINT_TRUE = -BUILD_PYTHON_FALSE = -BUILD_PYTHON_TRUE = # +BUILD_PYTHON_FALSE = # +BUILD_PYTHON_TRUE = BUILD_XJT_FALSE = # BUILD_XJT_TRUE = CATALOGS = ca.gmo cs.gmo da.gmo de.gmo el.gmo en_CA.gmo en_GB.gmo es.gmo eu.gmo fi.gmo fr.gmo ga.gmo gl.gmo he.gmo hu.gmo hr.gmo id.gmo it.gmo ja.gmo ko.gmo lt.gmo ms.gmo nb.gmo nl.gmo no.gmo pa.gmo pl.gmo pt.gmo pt_BR.gmo ro.gmo ru.gmo sk.gmo sr.gmo sr@Latn.gmo sv.gmo tr.gmo uk.gmo vi.gmo yi.gmo zh_CN.gmo zh_TW.gmo @@ -119,14 +119,14 @@ GIMPPRINT_TOONEW_VERSION = 4.3.0 GIMP_API_VERSION = 2.0 GIMP_APP_VERSION = 2.2 -GIMP_BINARY_AGE = 200 +GIMP_BINARY_AGE = 201 GIMP_DATA_VERSION = 2.0 GIMP_DESKTOP_ICON = wilber-icon.png GIMP_DEVEL_DOCS = devel-docs GIMP_FULL_NAME = The GIMP -GIMP_INTERFACE_AGE = 0 +GIMP_INTERFACE_AGE = 1 GIMP_MAJOR_VERSION = 2 -GIMP_MICRO_VERSION = 0 +GIMP_MICRO_VERSION = 1 GIMP_MINOR_VERSION = 2 GIMP_MKENUMS = $(PERL) $(top_srcdir)/tools/gimp-mkenums GIMP_MODULES = modules @@ -135,7 +135,7 @@ GIMP_PKGCONFIG_VERSION = 2.0 GIMP_PLUGINS = plug-ins GIMP_PLUGIN_VERSION = 2.0 -GIMP_REAL_VERSION = 2.2.0 +GIMP_REAL_VERSION = 2.2.1 GIMP_REMOTE = gimp-remote-2.2 GIMP_SYSCONF_VERSION = 2.0 GIMP_THREAD_FLAGS = @@ -143,7 +143,7 @@ GIMP_TOOL_VERSION = 2.0 GIMP_UNSTABLE = no GIMP_USER_VERSION = 2.2 -GIMP_VERSION = 2.2.0 +GIMP_VERSION = 2.2.1 GLIB_CFLAGS = -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include GLIB_GENMARSHAL = glib-genmarshal GLIB_LIBS = -lgobject-2.0 -lglib-2.0 @@ -231,7 +231,7 @@ LN_S = ln -s LTLIBOBJS = LT_CURRENT_MINUS_AGE = 0 -LT_VERSION_INFO = 200:0:200 +LT_VERSION_INFO = 200:1:200 MAIL = mail$(EXEEXT) MAINT = MAINTAINER_MODE_FALSE = # @@ -252,9 +252,9 @@ PACKAGE = gimp PACKAGE_BUGREPORT = http://bugzilla.gnome.org/enter_bug.cgi?product=GIMP PACKAGE_NAME = GIMP -PACKAGE_STRING = GIMP 2.2.0 +PACKAGE_STRING = GIMP 2.2.1 PACKAGE_TARNAME = gimp -PACKAGE_VERSION = 2.2.0 +PACKAGE_VERSION = 2.2.1 PANGOFT2_CFLAGS = -I/usr/include/pango-1.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include PANGOFT2_LIBS = -Wl,--export-dynamic -lpangoft2-1.0 -lpango-1.0 -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0 PANGOFT2_REQUIRED_VERSION = 1.4.0 @@ -272,15 +272,15 @@ PRINT_CFLAGS = PRINT_LIBS = PSP = psp$(EXEEXT) -PYGIMP_EXTRA_CFLAGS = -PYGTK_CFLAGS = -PYGTK_LIBS = -PYTHON = -PYTHON_EXEC_PREFIX = -PYTHON_INCLUDES = -PYTHON_PLATFORM = -PYTHON_PREFIX = -PYTHON_VERSION = +PYGIMP_EXTRA_CFLAGS = -fno-strict-aliasing +PYGTK_CFLAGS = -I/usr/include/pygtk-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include +PYGTK_LIBS = -lgobject-2.0 -lglib-2.0 +PYTHON = /usr/bin/python +PYTHON_EXEC_PREFIX = ${exec_prefix} +PYTHON_INCLUDES = -I/usr/include/python2.3 +PYTHON_PLATFORM = linux2 +PYTHON_PREFIX = ${prefix} +PYTHON_VERSION = 2.3 RANLIB = ranlib RSVG_REQUIRED_VERSION = 2.2.0 RT_LIBS = @@ -299,7 +299,7 @@ TIFF = tiff$(EXEEXT) URL = url$(EXEEXT) USE_NLS = yes -VERSION = 2.2.0 +VERSION = 2.2.1 WINCLIPBOARD = WINDRES = : WINPRINT = @@ -362,12 +362,12 @@ mkdir_p = mkdir -p -- . ms_librarian = oldincludedir = /usr/include -pkgpyexecdir = -pkgpythondir = +pkgpyexecdir = ${pyexecdir}/gimp +pkgpythondir = ${pythondir}/gimp prefix = /usr/local program_transform_name = s,x,x, -pyexecdir = -pythondir = +pyexecdir = ${exec_prefix}/lib/python2.3/site-packages +pythondir = ${prefix}/lib/python2.3/site-packages sbindir = ${exec_prefix}/sbin sharedstatedir = ${prefix}/com sysconfdir = ${prefix}/etc diff -uraN gimp-2.2.0/devel-docs/app/version gimp-2.2.1/devel-docs/app/version --- gimp-2.2.0/devel-docs/app/version 2004-12-18 00:45:22.000000000 +0100 +++ gimp-2.2.1/devel-docs/app/version 2004-12-27 20:49:58.000000000 +0100 @@ -1 +1 @@ -2.2.0 +2.2.1 diff -uraN gimp-2.2.0/devel-docs/ChangeLog gimp-2.2.1/devel-docs/ChangeLog --- gimp-2.2.0/devel-docs/ChangeLog 2004-12-15 01:12:27.000000000 +0100 +++ gimp-2.2.1/devel-docs/ChangeLog 2004-12-27 20:42:16.000000000 +0100 @@ -1,3 +1,9 @@ +2004-12-23 Sven Neumann + + * app/app-sections.txt: updated. + + * app/app-docs.sgml: fixed include. + 2004-12-15 Simon Budig * libgimp/tmpl/gimppaths.sgml: regenerated. diff -uraN gimp-2.2.0/devel-docs/libgimp/html/GimpAspectPreview.html gimp-2.2.1/devel-docs/libgimp/html/GimpAspectPreview.html --- gimp-2.2.0/devel-docs/libgimp/html/GimpAspectPreview.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimp/html/GimpAspectPreview.html 2004-12-28 16:59:56.000000000 +0100 @@ -36,7 +36,7 @@ GtkWidget* gimp_aspect_preview_new (GimpDrawable *drawable, gboolean *toggle); -

Object Hierarchy

+

Object Hierarchy

 
   GObject
    +----GtkObject
@@ -48,13 +48,13 @@
 href="../libgimpwidgets/GimpPreview.html"
 >GimpPreview
                                        +----GimpAspectPreview
-

Implemented Interfaces

+

Implemented Interfaces

GimpAspectPreview implements - AtkImplementorIface.

Description

+ AtkImplementorIface.

Description

A widget providing a preview with fixed aspect ratio. -

Details

struct GimpAspectPreview

struct GimpAspectPreview;

+

Details

struct GimpAspectPreview

struct GimpAspectPreview;

-


gimp_aspect_preview_new ()

GtkWidget*  gimp_aspect_preview_new         (GimpDrawable *drawable,
+


gimp_aspect_preview_new ()

GtkWidget*  gimp_aspect_preview_new         (GimpDrawable *drawable,
                                              gboolean *toggle);

drawable: diff -uraN gimp-2.2.0/devel-docs/libgimp/html/GimpDrawablePreview.html gimp-2.2.1/devel-docs/libgimp/html/GimpDrawablePreview.html --- gimp-2.2.0/devel-docs/libgimp/html/GimpDrawablePreview.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimp/html/GimpDrawablePreview.html 2004-12-28 16:59:56.000000000 +0100 @@ -41,7 +41,7 @@ (GimpDrawablePreview *preview, const GimpPixelRgn *region); -

Object Hierarchy

+

Object Hierarchy

 
   GObject
    +----GtkObject
@@ -56,13 +56,13 @@
 href="../libgimpwidgets/libgimpwidgets-GimpScrolledPreview.html#GimpScrolledPreview"
 >GimpScrolledPreview
                                              +----GimpDrawablePreview
-

Implemented Interfaces

+

Implemented Interfaces

GimpDrawablePreview implements - AtkImplementorIface.

Description

+ AtkImplementorIface.

Description

A widget providing a preview of a GimpDrawable. -

Details

struct GimpDrawablePreview

struct GimpDrawablePreview;

+

Details

struct GimpDrawablePreview

struct GimpDrawablePreview;

-


gimp_drawable_preview_new ()

GtkWidget*  gimp_drawable_preview_new       (GimpDrawable *drawable,
+


gimp_drawable_preview_new ()

GtkWidget*  gimp_drawable_preview_new       (GimpDrawable *drawable,
                                              gboolean *toggle);

Creates a new GimpDrawablePreview widget for drawable. If updating the preview takes considerable time, you will want to @@ -76,7 +76,7 @@

Returns : A pointer to the new GimpDrawablePreview widget.

Since GIMP 2.2 -


gimp_drawable_preview_get_drawable ()

GimpDrawable* gimp_drawable_preview_get_drawable
+


gimp_drawable_preview_get_drawable ()

GimpDrawable* gimp_drawable_preview_get_drawable
                                             (GimpDrawablePreview *preview);

@@ -85,7 +85,7 @@ gimp_drawable_preview_new().

Since GIMP 2.2 -


gimp_drawable_preview_draw_region ()

void        gimp_drawable_preview_draw_region
+


gimp_drawable_preview_draw_region ()

void        gimp_drawable_preview_draw_region
                                             (GimpDrawablePreview *preview,
                                              const GimpPixelRgn *region);

diff -uraN gimp-2.2.0/devel-docs/libgimp/html/GimpProgressBar.html gimp-2.2.1/devel-docs/libgimp/html/GimpProgressBar.html --- gimp-2.2.0/devel-docs/libgimp/html/GimpProgressBar.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimp/html/GimpProgressBar.html 2004-12-28 16:59:56.000000000 +0100 @@ -35,7 +35,7 @@ struct GimpProgressBar; GtkWidget* gimp_progress_bar_new (void); -

Object Hierarchy

+

Object Hierarchy

 
   GObject
    +----GtkObject
@@ -43,14 +43,14 @@
                +----GtkProgress
                      +----GtkProgressBar
                            +----GimpProgressBar
-

Implemented Interfaces

+

Implemented Interfaces

GimpProgressBar implements - AtkImplementorIface.

Description

+ AtkImplementorIface.

Description

A widget providing a progress bar that automatically redirects any progress calls to itself. -

Details

struct GimpProgressBar

struct GimpProgressBar;

+

Details

struct GimpProgressBar

struct GimpProgressBar;

-


gimp_progress_bar_new ()

GtkWidget*  gimp_progress_bar_new           (void);

+


gimp_progress_bar_new ()

GtkWidget*  gimp_progress_bar_new           (void);

Creates a new GimpProgressBar widget.

Returns : the new widget. diff -uraN gimp-2.2.0/devel-docs/libgimp/html/index.html gimp-2.2.1/devel-docs/libgimp/html/index.html --- gimp-2.2.0/devel-docs/libgimp/html/index.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimp/html/index.html 2004-12-28 16:59:56.000000000 +0100 @@ -29,7 +29,7 @@ font-size: 200%; }

- for GIMP 2.2.0 + for GIMP 2.2.1


Table of Contents

I. GIMP Constants
gimpenums - Enums and definitions.
II. GIMP Library
Functions not Related to Specific Images
gimp - Main functions needed for building a GIMP plug-in. This header includes all other GIMP Library headers.
gimpcontext - Functions to manipulate a plug-in's context.
gimpgimprc - Interactions with settings from .gimprc.
gimphelp - Loading help pages using gimp_help.
gimpmessage - Display a dialog box with a message.
gimpplugin - Functions useful for plugins, e.g. registration and progress indicators.
gimpproceduraldb - Functions for querying and changing procedural database (PDB) entries.
gimpprogress - Functions for embedding the progress bar into a plug-in's GUI.
Manupulating Images and all their Properties
gimpchannel - Functions for manipulating channels.
gimpcolor - Functions for manipulating color.
gimpconvert - Conversions between RGB, indexed, and grayscale modes.
gimpdisplay - Functions to create, delete and flush new displays (views) on an image.
gimpdrawable - Functions to manipulate drawables.
gimpdrawabletransform -
gimpedit - Edit menu functions (cut, copy, paste, clear, etc.)
gimpfileops - File operations (load, save, etc.)
gimpfloatingsel - Functions for removing or attaching floating selections.
gimpguides - Functions for manipulating guides.
gimpimage - Operations on complete images.
gimplayer - Operations on a single layer.
gimppaths - Operations related to paths.
gimppixelfetcher - Functions for operating on pixel regions.
gimppixelrgn - Functions for operating on pixel regions.
gimpregioniterator - Functions to traverse a pixel regions.
gimpselection - Functions for manipulating selections.
gimptexttool - Functions for controlling the text tool.
gimptile - Functions for working with tiles.
gimptools - Access to common toolbox tools.
gimpundo - Control of undo/redo.
Data Objects
gimpbrush - Functions operating on a single brush.
gimpbrushes - Functions for manipulating brushes.
gimpfonts - Operations related to fonts.
gimpgradient - Functions operating on a single gradient.
gimpgradients - Operations related to gradients.
gimppalette - Functions operating on a single palette.
gimppalettes - Operations related to palettes.
gimppattern - Functions operating on a single pattern.
gimppatterns - Functions relating to patterns.
Controlling the Core's Selection Dialogs
gimpbrushselect - Functions providing a brush selection dialog.
gimpfontselect - Functions providing a font selection dialog.
gimpgradientselect - Functions providing a gradient selection dialog.
gimppaletteselect - Functions providing a palette selection dialog.
gimppatternselect - Functions providing a pattern selection dialog.
III. GIMP User Interface Library
Object Hierarchy
gimpui - Common user interface functions. This header includes all other GIMP User diff -uraN gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpbrushes.html gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpbrushes.html --- gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpbrushes.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpbrushes.html 2004-12-28 16:59:56.000000000 +0100 @@ -54,16 +54,16 @@ gint *height, gint *length, guint8 **mask_data); -

Description

+

Description

Functions related to getting and setting brushes. -

Details

gimp_brushes_refresh ()

gboolean    gimp_brushes_refresh            (void);

+

Details

gimp_brushes_refresh ()

gboolean    gimp_brushes_refresh            (void);

Refresh current brushes. This function always succeeds.

This procedure retrieves all brushes currently in the user's brush path and updates the brush dialogs accordingly.

Returns : TRUE on success. -

gimp_brushes_get_list ()

gchar**     gimp_brushes_get_list           (const gchar *filter,
+

gimp_brushes_get_list ()

gchar**     gimp_brushes_get_list           (const gchar *filter,
                                              gint *num_brushes);

Retrieve a complete listing of the available brushes.

@@ -74,7 +74,7 @@

filter: An optional regular expression used to filter the list.
num_brushes: The number of brushes in the brush list.
Returns : The list of brush names. -

gimp_brushes_get_brush ()

gchar*      gimp_brushes_get_brush          (gint *width,
+

gimp_brushes_get_brush ()

gchar*      gimp_brushes_get_brush          (gint *width,
                                              gint *height,
                                              gint *spacing);

Warning

gimp_brushes_get_brush is deprecated and should not be used in newly-written code.

This procedure is deprecated! Use gimp_context_get_brush() instead.

@@ -83,40 +83,40 @@ height: The brush height. spacing: The brush spacing. Returns : The brush name. -


gimp_brushes_set_brush ()

gboolean    gimp_brushes_set_brush          (const gchar *name);

Warning

gimp_brushes_set_brush is deprecated and should not be used in newly-written code.

+


gimp_brushes_set_brush ()

gboolean    gimp_brushes_set_brush          (const gchar *name);

Warning

gimp_brushes_set_brush is deprecated and should not be used in newly-written code.

This procedure is deprecated! Use gimp_context_set_brush() instead.

name: The brush name.
Returns : TRUE on success. -

gimp_brushes_get_opacity ()

gdouble     gimp_brushes_get_opacity        (void);

Warning

gimp_brushes_get_opacity is deprecated and should not be used in newly-written code.

+


gimp_brushes_get_opacity ()

gdouble     gimp_brushes_get_opacity        (void);

Warning

gimp_brushes_get_opacity is deprecated and should not be used in newly-written code.

This procedure is deprecated! Use gimp_context_get_opacity() instead.

Returns : The brush opacity. -

gimp_brushes_set_opacity ()

gboolean    gimp_brushes_set_opacity        (gdouble opacity);

Warning

gimp_brushes_set_opacity is deprecated and should not be used in newly-written code.

+


gimp_brushes_set_opacity ()

gboolean    gimp_brushes_set_opacity        (gdouble opacity);

Warning

gimp_brushes_set_opacity is deprecated and should not be used in newly-written code.

This procedure is deprecated! Use gimp_context_set_opacity() instead.

opacity: The brush opacity.
Returns : TRUE on success. -

gimp_brushes_get_paint_mode ()

GimpLayerModeEffects gimp_brushes_get_paint_mode
+

gimp_brushes_get_paint_mode ()

GimpLayerModeEffects gimp_brushes_get_paint_mode
                                             (void);

Warning

gimp_brushes_get_paint_mode is deprecated and should not be used in newly-written code.

This procedure isdeprecated! Use gimp_context_get_paint_mode() instead.

Returns : The paint mode. -

gimp_brushes_set_paint_mode ()

gboolean    gimp_brushes_set_paint_mode     (GimpLayerModeEffects paint_mode);

Warning

gimp_brushes_set_paint_mode is deprecated and should not be used in newly-written code.

+


gimp_brushes_set_paint_mode ()

gboolean    gimp_brushes_set_paint_mode     (GimpLayerModeEffects paint_mode);

Warning

gimp_brushes_set_paint_mode is deprecated and should not be used in newly-written code.

This procedure is deprecated! Use gimp_context_set_paint_mode() instead.

paint_mode: The paint mode.
Returns : TRUE on success. -

gimp_brushes_get_spacing ()

gint        gimp_brushes_get_spacing        (void);

Warning

gimp_brushes_get_spacing is deprecated and should not be used in newly-written code.

+


gimp_brushes_get_spacing ()

gint        gimp_brushes_get_spacing        (void);

Warning

gimp_brushes_get_spacing is deprecated and should not be used in newly-written code.

This procedure is deprecated! Use gimp_brush_get_spacing() instead.

Returns : The brush spacing. -

gimp_brushes_set_spacing ()

gboolean    gimp_brushes_set_spacing        (gint spacing);

Warning

gimp_brushes_set_spacing is deprecated and should not be used in newly-written code.

+


gimp_brushes_set_spacing ()

gboolean    gimp_brushes_set_spacing        (gint spacing);

Warning

gimp_brushes_set_spacing is deprecated and should not be used in newly-written code.

This procedure is deprecated! Use gimp_brush_set_spacing() instead.

spacing: The brush spacing.
Returns : TRUE on success. -

gimp_brushes_get_brush_data ()

gchar*      gimp_brushes_get_brush_data     (const gchar *name,
+

gimp_brushes_get_brush_data ()

gchar*      gimp_brushes_get_brush_data     (const gchar *name,
                                              gdouble *opacity,
                                              gint *spacing,
                                              GimpLayerModeEffects *paint_mode,
diff -uraN gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpbrush.html gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpbrush.html
--- gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpbrush.html	2004-12-19 03:35:04.000000000 +0100
+++ gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpbrush.html	2004-12-28 16:59:56.000000000 +0100
@@ -55,9 +55,9 @@
                                              gint *spacing);
 gboolean    gimp_brush_set_spacing          (const gchar *name,
                                              gint spacing);
-

Description

+

Description

Functions operating on a single brush. -

Details

gimp_brush_new ()

gchar*      gimp_brush_new                  (const gchar *name);

+

Details

gimp_brush_new ()

gchar*      gimp_brush_new                  (const gchar *name);

Creates a new brush

This procedure creates a new, uninitialized brush

@@ -66,7 +66,7 @@ Returns : The actual new brush name.

Since GIMP 2.2 -


gimp_brush_duplicate ()

gchar*      gimp_brush_duplicate            (const gchar *name);

+


gimp_brush_duplicate ()

gchar*      gimp_brush_duplicate            (const gchar *name);

Duplicates a brush

This procedure creates an identical brush by a different name

@@ -75,7 +75,7 @@ Returns : The name of the brush's copy.

Since GIMP 2.2 -


gimp_brush_rename ()

gchar*      gimp_brush_rename               (const gchar *name,
+


gimp_brush_rename ()

gchar*      gimp_brush_rename               (const gchar *name,
                                              const gchar *new_name);

Rename a brush

@@ -86,7 +86,7 @@ Returns : The actual new name of the brush.

Since GIMP 2.2 -


gimp_brush_delete ()

gboolean    gimp_brush_delete               (const gchar *name);

+


gimp_brush_delete ()

gboolean    gimp_brush_delete               (const gchar *name);

Deletes a brush

This procedure deletes a brush

@@ -95,7 +95,7 @@ Returns : TRUE on success.

Since GIMP 2.2 -


gimp_brush_get_info ()

gboolean    gimp_brush_get_info             (const gchar *name,
+


gimp_brush_get_info ()

gboolean    gimp_brush_get_info             (const gchar *name,
                                              gint *width,
                                              gint *height,
                                              gint *mask_bpp,
@@ -113,7 +113,7 @@
 Returns : TRUE on success.
 
 

Since GIMP 2.2 -


gimp_brush_get_pixels ()

gboolean    gimp_brush_get_pixels           (const gchar *name,
+


gimp_brush_get_pixels ()

gboolean    gimp_brush_get_pixels           (const gchar *name,
                                              gint *width,
                                              gint *height,
                                              gint *mask_bpp,
@@ -139,7 +139,7 @@
 Returns : TRUE on success.
 
 

Since GIMP 2.2 -


gimp_brush_get_spacing ()

gboolean    gimp_brush_get_spacing          (const gchar *name,
+


gimp_brush_get_spacing ()

gboolean    gimp_brush_get_spacing          (const gchar *name,
                                              gint *spacing);

Get the brush spacing.

@@ -152,7 +152,7 @@ Returns : TRUE on success.

Since GIMP 2.2 -


gimp_brush_set_spacing ()

gboolean    gimp_brush_set_spacing          (const gchar *name,
+


gimp_brush_set_spacing ()

gboolean    gimp_brush_set_spacing          (const gchar *name,
                                              gint spacing);

Set the brush spacing.

diff -uraN gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpbrushmenu.html gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpbrushmenu.html --- gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpbrushmenu.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpbrushmenu.html 2004-12-28 16:59:56.000000000 +0100 @@ -45,9 +45,9 @@ gdouble opacity, gint spacing, GimpLayerModeEffects paint_mode); -

Description

+

Description

A widget for selecting brushes. -

Details

gimp_brush_select_widget_new ()

GtkWidget*  gimp_brush_select_widget_new    (const gchar *title,
+

Details

gimp_brush_select_widget_new ()

GtkWidget*  gimp_brush_select_widget_new    (const gchar *title,
                                              const gchar *brush_name,
                                              gdouble opacity,
                                              gint spacing,
@@ -66,11 +66,11 @@
 callback:   A function to call when the selected brush changes.
 data:       A pointer to arbitary data to be used in the call to callback.
 Returns : A GtkWidget that you can use in your UI.
-

gimp_brush_select_widget_close ()

void        gimp_brush_select_widget_close  (GtkWidget *widget);

+


gimp_brush_select_widget_close ()

void        gimp_brush_select_widget_close  (GtkWidget *widget);

Closes the popup window associated with widget.

widget: A brush select widget. -

gimp_brush_select_widget_set ()

void        gimp_brush_select_widget_set    (GtkWidget *widget,
+

gimp_brush_select_widget_set ()

void        gimp_brush_select_widget_set    (GtkWidget *widget,
                                              const gchar *brush_name,
                                              gdouble opacity,
                                              gint spacing,
diff -uraN gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpbrushselect.html gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpbrushselect.html
--- gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpbrushselect.html	2004-12-19 03:35:04.000000000 +0100
+++ gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpbrushselect.html	2004-12-28 16:59:56.000000000 +0100
@@ -61,9 +61,9 @@
                                              gdouble opacity,
                                              gint spacing,
                                              GimpLayerModeEffects paint_mode);
-

Description

+

Description

Functions providing a brush selection dialog. -

Details

GimpRunBrushCallback ()

void        (*GimpRunBrushCallback)         (const gchar *brush_name,
+

Details

GimpRunBrushCallback ()

void        (*GimpRunBrushCallback)         (const gchar *brush_name,
                                              gdouble opacity,
                                              gint spacing,
                                              GimpLayerModeEffects paint_mode,
@@ -84,7 +84,7 @@
 user_data:
 
 
-

gimp_brush_select_new ()

const gchar* gimp_brush_select_new          (const gchar *title,
+

gimp_brush_select_new ()

const gchar* gimp_brush_select_new          (const gchar *title,
                                              const gchar *brush_name,
                                              gdouble opacity,
                                              gint spacing,
@@ -102,12 +102,12 @@
 Returns :
 
 
-

gimp_brush_select_destroy ()

void        gimp_brush_select_destroy       (const gchar *brush_callback);

+


gimp_brush_select_destroy ()

void        gimp_brush_select_destroy       (const gchar *brush_callback);

brush_callback: -

gimp_brushes_popup ()

gboolean    gimp_brushes_popup              (const gchar *brush_callback,
+

gimp_brushes_popup ()

gboolean    gimp_brushes_popup              (const gchar *brush_callback,
                                              const gchar *popup_title,
                                              const gchar *initial_brush,
                                              gdouble opacity,
@@ -124,14 +124,14 @@
 spacing: The initial spacing of the brush (if < 0 then use brush default spacing).
 paint_mode: The initial paint mode.
 Returns : TRUE on success.
-

gimp_brushes_close_popup ()

gboolean    gimp_brushes_close_popup        (const gchar *brush_callback);

+


gimp_brushes_close_popup ()

gboolean    gimp_brushes_close_popup        (const gchar *brush_callback);

Popdown the Gimp brush selection.

This procedure closes an opened brush selection dialog.

brush_callback: The name of the callback registered for this popup.
Returns : TRUE on success. -

gimp_brushes_set_popup ()

gboolean    gimp_brushes_set_popup          (const gchar *brush_callback,
+

gimp_brushes_set_popup ()

gboolean    gimp_brushes_set_popup          (const gchar *brush_callback,
                                              const gchar *brush_name,
                                              gdouble opacity,
                                              gint spacing,
diff -uraN gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpchannel.html gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpchannel.html
--- gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpchannel.html	2004-12-19 03:35:04.000000000 +0100
+++ gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpchannel.html	2004-12-28 16:59:56.000000000 +0100
@@ -60,9 +60,9 @@
                                              GimpChannelOps operation,
                                              gint offx,
                                              gint offy);
-

Description

+

Description

Functions for manipulating channels. -

Details

gimp_channel_new ()

gint32      gimp_channel_new                (gint32 image_ID,
+

Details

gimp_channel_new ()

gint32      gimp_channel_new                (gint32 image_ID,
                                              const gchar *name,
                                              guint width,
                                              guint height,
@@ -87,14 +87,14 @@
 opacity: The channel opacity.
 color: The channel compositing color.
 Returns : The newly created channel.
-

gimp_channel_copy ()

gint32      gimp_channel_copy               (gint32 channel_ID);

+


gimp_channel_copy ()

gint32      gimp_channel_copy               (gint32 channel_ID);

Copy a channel.

This procedure copies the specified channel and returns the copy.

channel_ID: The channel to copy.
Returns : The newly copied channel. -

gimp_channel_get_show_masked ()

gboolean    gimp_channel_get_show_masked    (gint32 channel_ID);

+


gimp_channel_get_show_masked ()

gboolean    gimp_channel_get_show_masked    (gint32 channel_ID);

Get the composite method of the specified channel.

This procedure returns the specified channel's composite method. If @@ -104,7 +104,7 @@

channel_ID: The channel.
Returns : The channel composite method. -

gimp_channel_set_show_masked ()

gboolean    gimp_channel_set_show_masked    (gint32 channel_ID,
+

gimp_channel_set_show_masked ()

gboolean    gimp_channel_set_show_masked    (gint32 channel_ID,
                                              gboolean show_masked);

Set the composite method of the specified channel.

@@ -115,14 +115,14 @@

channel_ID: The channel.
show_masked: The new channel composite method.
Returns : TRUE on success. -

gimp_channel_get_opacity ()

gdouble     gimp_channel_get_opacity        (gint32 channel_ID);

+


gimp_channel_get_opacity ()

gdouble     gimp_channel_get_opacity        (gint32 channel_ID);

Get the opacity of the specified channel.

This procedure returns the specified channel's opacity.

channel_ID: The channel.
Returns : The channel opacity. -

gimp_channel_set_opacity ()

gboolean    gimp_channel_set_opacity        (gint32 channel_ID,
+

gimp_channel_set_opacity ()

gboolean    gimp_channel_set_opacity        (gint32 channel_ID,
                                              gdouble opacity);

Set the opacity of the specified channel.

@@ -131,7 +131,7 @@

channel_ID: The channel.
opacity: The new channel opacity.
Returns : TRUE on success. -

gimp_channel_get_color ()

gboolean    gimp_channel_get_color          (gint32 channel_ID,
+

gimp_channel_get_color ()

gboolean    gimp_channel_get_color          (gint32 channel_ID,
                                              GimpRGB *color);

@@ -142,7 +142,7 @@

channel_ID: The channel.
color: The channel compositing color.
Returns : TRUE on success. -

gimp_channel_set_color ()

gboolean    gimp_channel_set_color          (gint32 channel_ID,
+

gimp_channel_set_color ()

gboolean    gimp_channel_set_color          (gint32 channel_ID,
                                              const GimpRGB *color);

@@ -153,7 +153,7 @@

channel_ID: The channel.
color: The new channel compositing color.
Returns : TRUE on success. -

gimp_channel_combine_masks ()

gboolean    gimp_channel_combine_masks      (gint32 channel1_ID,
+

gimp_channel_combine_masks ()

gboolean    gimp_channel_combine_masks      (gint32 channel1_ID,
                                              gint32 channel2_ID,
                                              GimpChannelOps operation,
                                              gint offx,
diff -uraN gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpcolor.html gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpcolor.html
--- gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpcolor.html	2004-12-19 03:35:04.000000000 +0100
+++ gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpcolor.html	2004-12-28 16:59:56.000000000 +0100
@@ -86,10 +86,10 @@
 gboolean    gimp_threshold                  (gint32 drawable_ID,
                                              gint low_threshold,
                                              gint high_threshold);
-

Description

+

Description

Functions for manipulating color, including curves and histograms. -

Details

gimp_brightness_contrast ()

gboolean    gimp_brightness_contrast        (gint32 drawable_ID,
+

Details

gimp_brightness_contrast ()

gboolean    gimp_brightness_contrast        (gint32 drawable_ID,
                                              gint brightness,
                                              gint contrast);

Modify brightness/contrast in the specified drawable. @@ -102,7 +102,7 @@ brightness: Brightness adjustment. contrast: Contrast adjustment. Returns : TRUE on success. -


gimp_levels ()

gboolean    gimp_levels                     (gint32 drawable_ID,
+

gimp_levels ()

gboolean    gimp_levels                     (gint32 drawable_ID,
                                              GimpHistogramChannel channel,
                                              gint low_input,
                                              gint high_input,
@@ -132,12 +132,12 @@
 low_output: Intensity of lowest output.
 high_output: Intensity of highest output.
 Returns : TRUE on success.
-

gimp_levels_auto ()

gboolean    gimp_levels_auto                (gint32 drawable_ID);

Warning

gimp_levels_auto is deprecated and should not be used in newly-written code.

+


gimp_levels_auto ()

gboolean    gimp_levels_auto                (gint32 drawable_ID);

Warning

gimp_levels_auto is deprecated and should not be used in newly-written code.

This procedure is deprecated! Use gimp_levels_stretch() instead.

drawable_ID: The drawable.
Returns : TRUE on success. -

gimp_levels_stretch ()

gboolean    gimp_levels_stretch             (gint32 drawable_ID);

+


gimp_levels_stretch ()

gboolean    gimp_levels_stretch             (gint32 drawable_ID);

Automatically modifies intensity levels in the specified drawable.

This procedure allows intensity levels in the specified drawable to @@ -148,7 +148,7 @@

drawable_ID: The drawable.
Returns : TRUE on success. -

gimp_posterize ()

gboolean    gimp_posterize                  (gint32 drawable_ID,
+

gimp_posterize ()

gboolean    gimp_posterize                  (gint32 drawable_ID,
                                              gint levels);

Posterize the specified drawable.

@@ -158,7 +158,7 @@

drawable_ID: The drawable.
levels: Levels of posterization.
Returns : TRUE on success. -

gimp_desaturate ()

gboolean    gimp_desaturate                 (gint32 drawable_ID);

+


gimp_desaturate ()

gboolean    gimp_desaturate                 (gint32 drawable_ID);

Desaturate the contents of the specified drawable.

This procedure desaturates the contents of the specified drawable. @@ -166,7 +166,7 @@

drawable_ID: The drawable.
Returns : TRUE on success. -

gimp_equalize ()

gboolean    gimp_equalize                   (gint32 drawable_ID,
+

gimp_equalize ()

gboolean    gimp_equalize                   (gint32 drawable_ID,
                                              gboolean mask_only);

Equalize the contents of the specified drawable.

@@ -182,7 +182,7 @@

drawable_ID: The drawable.
mask_only: Equalization option.
Returns : TRUE on success. -

gimp_invert ()

gboolean    gimp_invert                     (gint32 drawable_ID);

+


gimp_invert ()

gboolean    gimp_invert                     (gint32 drawable_ID);

Invert the contents of the specified drawable.

This procedure inverts the contents of the specified drawable. Each @@ -192,7 +192,7 @@

drawable_ID: The drawable.
Returns : TRUE on success. -

gimp_curves_spline ()

gboolean    gimp_curves_spline              (gint32 drawable_ID,
+

gimp_curves_spline ()

gboolean    gimp_curves_spline              (gint32 drawable_ID,
                                              GimpHistogramChannel channel,
                                              gint num_points,
                                              const guint8 *control_pts);

@@ -211,7 +211,7 @@ num_points: The number of values in the control point array. control_pts: The spline control points: { cp1.x, cp1.y, cp2.x, cp2.y, ... }. Returns : TRUE on success. -


gimp_curves_explicit ()

gboolean    gimp_curves_explicit            (gint32 drawable_ID,
+

gimp_curves_explicit ()

gboolean    gimp_curves_explicit            (gint32 drawable_ID,
                                              GimpHistogramChannel channel,
                                              gint num_bytes,
                                              const guint8 *curve);

@@ -230,7 +230,7 @@ num_bytes: The number of bytes in the new curve (always 256). curve: The explicit curve. Returns : TRUE on success. -


gimp_color_balance ()

gboolean    gimp_color_balance              (gint32 drawable_ID,
+

gimp_color_balance ()

gboolean    gimp_color_balance              (gint32 drawable_ID,
                                              GimpTransferMode transfer_mode,
                                              gboolean preserve_lum,
                                              gdouble cyan_red,
@@ -254,7 +254,7 @@
 magenta_green: Magenta-Green color balance.
 yellow_blue: Yellow-Blue color balance.
 Returns : TRUE on success.
-

gimp_colorize ()

gboolean    gimp_colorize                   (gint32 drawable_ID,
+

gimp_colorize ()

gboolean    gimp_colorize                   (gint32 drawable_ID,
                                              gdouble hue,
                                              gdouble saturation,
                                              gdouble lightness);

@@ -272,7 +272,7 @@ Returns : TRUE on success.

Since GIMP 2.2 -


gimp_histogram ()

gboolean    gimp_histogram                  (gint32 drawable_ID,
+


gimp_histogram ()

gboolean    gimp_histogram                  (gint32 drawable_ID,
                                              GimpHistogramChannel channel,
                                              gint start_range,
                                              gint end_range,
@@ -310,7 +310,7 @@
 count: Alpha-weighted pixel count for range.
 percentile: Percentile that range falls under.
 Returns : TRUE on success.
-

gimp_hue_saturation ()

gboolean    gimp_hue_saturation             (gint32 drawable_ID,
+

gimp_hue_saturation ()

gboolean    gimp_hue_saturation             (gint32 drawable_ID,
                                              GimpHueRange hue_range,
                                              gdouble hue_offset,
                                              gdouble lightness,
@@ -327,7 +327,7 @@
 lightness: lightness modification.
 saturation: saturation modification.
 Returns : TRUE on success.
-

gimp_threshold ()

gboolean    gimp_threshold                  (gint32 drawable_ID,
+

gimp_threshold ()

gboolean    gimp_threshold                  (gint32 drawable_ID,
                                              gint low_threshold,
                                              gint high_threshold);

Threshold the specified drawable. diff -uraN gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpcontext.html gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpcontext.html --- gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpcontext.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpcontext.html 2004-12-28 16:59:56.000000000 +0100 @@ -63,9 +63,9 @@ gboolean gimp_context_set_palette (const gchar *name); gchar* gimp_context_get_font (void); gboolean gimp_context_set_font (const gchar *name); -

Description

+

Description

Functions to manipulate a plug-in's context. -

Details

gimp_context_push ()

gboolean    gimp_context_push               (void);

+

Details

gimp_context_push ()

gboolean    gimp_context_push               (void);

Pushes a context to the top of the plug-in's context stack.

This procedure creates a new context by copying the current context. @@ -75,7 +75,7 @@

Returns : TRUE on success.

Since GIMP 2.2 -


gimp_context_pop ()

gboolean    gimp_context_pop                (void);

+


gimp_context_pop ()

gboolean    gimp_context_pop                (void);

Pops the topmost context from the plug-in's context stack.

This procedure creates a new context and makes it the current @@ -84,7 +84,7 @@

Returns : TRUE on success.

Since GIMP 2.2 -


gimp_context_get_foreground ()

gboolean    gimp_context_get_foreground     (

gimp_context_get_foreground ()

gboolean    gimp_context_get_foreground     (GimpRGB *foreground);

Get the current GIMP foreground color. @@ -97,7 +97,7 @@ Returns : TRUE on success.

Since GIMP 2.2 -


gimp_context_set_foreground ()

gboolean    gimp_context_set_foreground     (const 

gimp_context_set_foreground ()

gboolean    gimp_context_set_foreground     (const GimpRGB *foreground);

Set the current GIMP foreground color. @@ -110,7 +110,7 @@ Returns : TRUE on success.

Since GIMP 2.2 -


gimp_context_get_background ()

gboolean    gimp_context_get_background     (

gimp_context_get_background ()

gboolean    gimp_context_get_background     (GimpRGB *background);

Get the current GIMP background color. @@ -123,7 +123,7 @@ Returns : TRUE on success.

Since GIMP 2.2 -


gimp_context_set_background ()

gboolean    gimp_context_set_background     (const 

gimp_context_set_background ()

gboolean    gimp_context_set_background     (const GimpRGB *background);

Set the current GIMP background color. @@ -137,7 +137,7 @@ Returns : TRUE on success.

Since GIMP 2.2 -


gimp_context_set_default_colors ()

gboolean    gimp_context_set_default_colors (void);

+


gimp_context_set_default_colors ()

gboolean    gimp_context_set_default_colors (void);

Set the current GIMP foreground and background colors to black and white.

@@ -147,7 +147,7 @@

Returns : TRUE on success.

Since GIMP 2.2 -


gimp_context_swap_colors ()

gboolean    gimp_context_swap_colors        (void);

+


gimp_context_swap_colors ()

gboolean    gimp_context_swap_colors        (void);

Swap the current GIMP foreground and background colors.

This procedure swaps the current GIMP foreground and background @@ -157,7 +157,7 @@

Returns : TRUE on success.

Since GIMP 2.2 -


gimp_context_get_opacity ()

gdouble     gimp_context_get_opacity        (void);

+


gimp_context_get_opacity ()

gdouble     gimp_context_get_opacity        (void);

Get the opacity.

This procedure returns the opacity setting. The return value is a @@ -166,7 +166,7 @@

Returns : The opacity.

Since GIMP 2.2 -


gimp_context_set_opacity ()

gboolean    gimp_context_set_opacity        (gdouble opacity);

+


gimp_context_set_opacity ()

gboolean    gimp_context_set_opacity        (gdouble opacity);

Set the opacity.

This procedure modifies the opacity setting. The value should be a @@ -176,7 +176,7 @@ Returns : TRUE on success.

Since GIMP 2.2 -


gimp_context_get_paint_mode ()

GimpLayerModeEffects gimp_context_get_paint_mode
+


gimp_context_get_paint_mode ()

GimpLayerModeEffects gimp_context_get_paint_mode
                                             (void);

Get the paint mode.

@@ -187,7 +187,7 @@

Returns : The paint mode.

Since GIMP 2.2 -


gimp_context_set_paint_mode ()

gboolean    gimp_context_set_paint_mode     (GimpLayerModeEffects paint_mode);

+


gimp_context_set_paint_mode ()

gboolean    gimp_context_set_paint_mode     (GimpLayerModeEffects paint_mode);

Set the paint mode.

This procedure modifies the paint_mode setting.

@@ -196,7 +196,7 @@ Returns : TRUE on success.

Since GIMP 2.2 -


gimp_context_get_brush ()

gchar*      gimp_context_get_brush          (void);

+


gimp_context_get_brush ()

gchar*      gimp_context_get_brush          (void);

Retrieve the currently active brush.

This procedure returns the nme of the currently active brush. All @@ -206,7 +206,7 @@

Returns : The name of the active brush.

Since GIMP 2.2 -


gimp_context_set_brush ()

gboolean    gimp_context_set_brush          (const gchar *name);

+


gimp_context_set_brush ()

gboolean    gimp_context_set_brush          (const gchar *name);

Set the specified brush as the active brush.

This procedure allows the active brush to be set by specifying its @@ -219,7 +219,7 @@ Returns : TRUE on success.

Since GIMP 2.2 -


gimp_context_get_pattern ()

gchar*      gimp_context_get_pattern        (void);

+


gimp_context_get_pattern ()

gchar*      gimp_context_get_pattern        (void);

Retrieve the currently active pattern.

This procedure returns name of the the currently active pattern. All @@ -229,7 +229,7 @@

Returns : The name of the active pattern.

Since GIMP 2.2 -


gimp_context_set_pattern ()

gboolean    gimp_context_set_pattern        (const gchar *name);

+


gimp_context_set_pattern ()

gboolean    gimp_context_set_pattern        (const gchar *name);

Set the specified pattern as the active pattern.

This procedure allows the active pattern to be set by specifying its @@ -251,7 +251,7 @@

Returns : The name of the active gradient.

Since GIMP 2.2 -


gimp_context_set_gradient ()

gboolean    gimp_context_set_gradient       (const gchar *name);

+


gimp_context_set_gradient ()

gboolean    gimp_context_set_gradient       (const gchar *name);

Sets the specified gradient as the active gradient.

This procedure lets you set the specified gradient as the active or @@ -265,7 +265,7 @@ Returns : TRUE on success.

Since GIMP 2.2 -


gimp_context_get_palette ()

gchar*      gimp_context_get_palette        (void);

+


gimp_context_get_palette ()

gchar*      gimp_context_get_palette        (void);

Retrieve the currently active palette.

This procedure returns the name of the the currently active palette.

@@ -273,7 +273,7 @@

Returns : The name of the active palette.

Since GIMP 2.2 -


gimp_context_set_palette ()

gboolean    gimp_context_set_palette        (const gchar *name);

+


gimp_context_set_palette ()

gboolean    gimp_context_set_palette        (const gchar *name);

Set the specified palette as the active palette.

This procedure allows the active palette to be set by specifying its @@ -287,7 +287,7 @@ Returns : TRUE on success.

Since GIMP 2.2 -


gimp_context_get_font ()

gchar*      gimp_context_get_font           (void);

+


gimp_context_get_font ()

gchar*      gimp_context_get_font           (void);

Retrieve the currently active font.

This procedure returns the name of the currently active font.

@@ -295,7 +295,7 @@

Returns : The name of the active font.

Since GIMP 2.2 -


gimp_context_set_font ()

gboolean    gimp_context_set_font           (const gchar *name);

+


gimp_context_set_font ()

gboolean    gimp_context_set_font           (const gchar *name);

Set the specified font as the active font.

This procedure allows the active font to be set by specifying its diff -uraN gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpconvert.html gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpconvert.html --- gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpconvert.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpconvert.html 2004-12-28 16:59:56.000000000 +0100 @@ -41,10 +41,10 @@ gboolean alpha_dither, gboolean remove_unused, const gchar *palette); -

Description

+

Description

Conversions between RGB, indexed, and grayscale modes. -

Details

gimp_image_convert_rgb ()

gboolean    gimp_image_convert_rgb          (gint32 image_ID);

+

Details

gimp_image_convert_rgb ()

gboolean    gimp_image_convert_rgb          (gint32 image_ID);

Convert specified image to RGB color

This procedure converts the specified image to RGB color. This @@ -54,7 +54,7 @@

image_ID: The image.
Returns : TRUE on success. -

gimp_image_convert_grayscale ()

gboolean    gimp_image_convert_grayscale    (gint32 image_ID);

+


gimp_image_convert_grayscale ()

gboolean    gimp_image_convert_grayscale    (gint32 image_ID);

Convert specified image to grayscale (256 intensity levels)

This procedure converts the specified image to grayscale with 8 bits @@ -63,7 +63,7 @@

image_ID: The image.
Returns : TRUE on success. -

gimp_image_convert_indexed ()

gboolean    gimp_image_convert_indexed      (gint32 image_ID,
+

gimp_image_convert_indexed ()

gboolean    gimp_image_convert_indexed      (gint32 image_ID,
                                              GimpConvertDitherType dither_type,
                                              GimpConvertPaletteType palette_type,
                                              gint num_cols,
diff -uraN gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpdisplay.html gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpdisplay.html
--- gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpdisplay.html	2004-12-19 03:35:04.000000000 +0100
+++ gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpdisplay.html	2004-12-28 16:59:56.000000000 +0100
@@ -37,10 +37,10 @@
 gboolean    gimp_displays_flush             (void);
 gboolean    gimp_displays_reconnect         (gint32 old_image_ID,
                                              gint32 new_image_ID);
-

Description

+

Description

Functions to create, delete and flush new displays (views) on an image. -

Details

gimp_display_new ()

gint32      gimp_display_new                (gint32 image_ID);

+

Details

gimp_display_new ()

gint32      gimp_display_new                (gint32 image_ID);

Create a new display for the specified image.

Creates a new display for the specified image. If the image already @@ -51,7 +51,7 @@

image_ID: The image.
Returns : The new display. -

gimp_display_delete ()

gboolean    gimp_display_delete             (gint32 display_ID);

+


gimp_display_delete ()

gboolean    gimp_display_delete             (gint32 display_ID);

Delete the specified display.

This procedure removes the specified display. If this is the last @@ -60,7 +60,7 @@

display_ID: The display to delete.
Returns : TRUE on success. -

gimp_displays_flush ()

gboolean    gimp_displays_flush             (void);

+


gimp_displays_flush ()

gboolean    gimp_displays_flush             (void);

Flush all internal changes to the user interface

This procedure takes no arguments and returns nothing except a @@ -69,7 +69,7 @@ appropriate.

Returns : TRUE on success. -

gimp_displays_reconnect ()

gboolean    gimp_displays_reconnect         (gint32 old_image_ID,
+

gimp_displays_reconnect ()

gboolean    gimp_displays_reconnect         (gint32 old_image_ID,
                                              gint32 new_image_ID);

Reconnect displays from one image to another image.

diff -uraN gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpdrawablecombobox.html gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpdrawablecombobox.html --- gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpdrawablecombobox.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpdrawablecombobox.html 2004-12-28 16:59:56.000000000 +0100 @@ -41,9 +41,9 @@ gpointer data); GtkWidget* gimp_layer_combo_box_new (GimpDrawableConstraintFunc constraint, gpointer data); -

Description

+

Description

A widget providing a popup menu of drawables. -

Details

GimpDrawableConstraintFunc ()

gboolean    (*GimpDrawableConstraintFunc)   (gint32 image_id,
+

Details

GimpDrawableConstraintFunc ()

gboolean    (*GimpDrawableConstraintFunc)   (gint32 image_id,
                                              gint32 drawable_id,
                                              gpointer data);

@@ -53,7 +53,7 @@ Returns : -


gimp_drawable_combo_box_new ()

GtkWidget*  gimp_drawable_combo_box_new     (GimpDrawableConstraintFunc constraint,
+

gimp_drawable_combo_box_new ()

GtkWidget*  gimp_drawable_combo_box_new     (GimpDrawableConstraintFunc constraint,
                                              gpointer data);

Creates a new GimpIntComboBox.

Since GIMP 2.2 -


gimp_channel_combo_box_new ()

GtkWidget*  gimp_channel_combo_box_new      (GimpDrawableConstraintFunc constraint,
+


gimp_channel_combo_box_new ()

GtkWidget*  gimp_channel_combo_box_new      (GimpDrawableConstraintFunc constraint,
                                              gpointer data);

Creates a new GimpIntComboBox.

Since GIMP 2.2 -


gimp_layer_combo_box_new ()

GtkWidget*  gimp_layer_combo_box_new        (GimpDrawableConstraintFunc constraint,
+


gimp_layer_combo_box_new ()

GtkWidget*  gimp_layer_combo_box_new        (GimpDrawableConstraintFunc constraint,
                                              gpointer data);

Creates a new

Description

+

Description

Functions to manipulate drawables. -

Details

struct GimpDrawable

struct GimpDrawable {
+

Details

struct GimpDrawable

struct GimpDrawable {
 
   gint32    drawable_id;   /* drawable ID */
   guint     width;         /* width of drawble */
@@ -166,7 +166,7 @@
 };
 

-


gimp_drawable_get ()

GimpDrawable* gimp_drawable_get             (gint32 drawable_ID);

+


gimp_drawable_get ()

GimpDrawable* gimp_drawable_get             (gint32 drawable_ID);

This function creates a GimpDrawable structure for the core drawable identified by drawable_ID. The returned structure contains some basic information about the drawable and can also @@ -183,7 +183,7 @@

drawable_ID: the ID of the drawable
Returns : a new GimpDrawable wrapper -

gimp_drawable_detach ()

void        gimp_drawable_detach            (GimpDrawable *drawable);

+


gimp_drawable_detach ()

void        gimp_drawable_detach            (GimpDrawable *drawable);

This function is called when a plug-in is finished working with a drawable. It forces all tile data held in the tile list of the GimpDrawable to be transferred to the core, and @@ -191,7 +191,7 @@ drawable after having called gimp_drawable_detach().

drawable: The GimpDrawable to detach from the core -

gimp_drawable_flush ()

void        gimp_drawable_flush             (GimpDrawable *drawable);

+


gimp_drawable_flush ()

void        gimp_drawable_flush             (GimpDrawable *drawable);

This function causes all tile data in the tile list of drawable to be transferred to the core. It is usually called in situations where a plug-in acts on a drawable, and then needs to read the results of its @@ -200,7 +200,7 @@

drawable: The GimpDrawable whose tile data is to be transferred to the core. -

gimp_drawable_delete ()

gboolean    gimp_drawable_delete            (gint32 drawable_ID);

+


gimp_drawable_delete ()

gboolean    gimp_drawable_delete            (gint32 drawable_ID);

Delete a drawable.

This procedure deletes the specified drawable. This must not be done @@ -211,14 +211,14 @@

drawable_ID: The drawable to delete.
Returns : TRUE on success. -

gimp_drawable_get_name ()

gchar*      gimp_drawable_get_name          (gint32 drawable_ID);

+


gimp_drawable_get_name ()

gchar*      gimp_drawable_get_name          (gint32 drawable_ID);

Get the name of the specified drawable.

This procedure returns the specified drawable's name.

drawable_ID: The drawable.
Returns : The drawable name. -

gimp_drawable_set_name ()

gboolean    gimp_drawable_set_name          (gint32 drawable_ID,
+

gimp_drawable_set_name ()

gboolean    gimp_drawable_set_name          (gint32 drawable_ID,
                                              const gchar *name);

Set the name of the specified drawable.

@@ -227,14 +227,14 @@

drawable_ID: The drawable.
name: The new drawable name.
Returns : TRUE on success. -

gimp_drawable_get_visible ()

gboolean    gimp_drawable_get_visible       (gint32 drawable_ID);

+


gimp_drawable_get_visible ()

gboolean    gimp_drawable_get_visible       (gint32 drawable_ID);

Get the visibility of the specified drawable.

This procedure returns the specified drawable's visibility.

drawable_ID: The drawable.
Returns : The drawable visibility. -

gimp_drawable_set_visible ()

gboolean    gimp_drawable_set_visible       (gint32 drawable_ID,
+

gimp_drawable_set_visible ()

gboolean    gimp_drawable_set_visible       (gint32 drawable_ID,
                                              gboolean visible);

Set the visibility of the specified drawable.

@@ -243,14 +243,14 @@

drawable_ID: The drawable.
visible: The new drawable visibility.
Returns : TRUE on success. -

gimp_drawable_get_linked ()

gboolean    gimp_drawable_get_linked        (gint32 drawable_ID);

+


gimp_drawable_get_linked ()

gboolean    gimp_drawable_get_linked        (gint32 drawable_ID);

Get the linked state of the specified drawable.

This procedure returns the specified drawable's linked state.

drawable_ID: The drawable.
Returns : The drawable linked state (for moves). -

gimp_drawable_set_linked ()

gboolean    gimp_drawable_set_linked        (gint32 drawable_ID,
+

gimp_drawable_set_linked ()

gboolean    gimp_drawable_set_linked        (gint32 drawable_ID,
                                              gboolean linked);

Set the linked state of the specified drawable.

@@ -259,7 +259,7 @@

drawable_ID: The drawable.
linked: The new drawable linked state.
Returns : TRUE on success. -

gimp_drawable_get_tattoo ()

gint        gimp_drawable_get_tattoo        (gint32 drawable_ID);

+


gimp_drawable_get_tattoo ()

gint        gimp_drawable_get_tattoo        (gint32 drawable_ID);

Get the tattoo of the specified drawable.

This procedure returns the specified drawable's tattoo. A tattoo is @@ -269,7 +269,7 @@

drawable_ID: The drawable.
Returns : The drawable tattoo. -

gimp_drawable_set_tattoo ()

gboolean    gimp_drawable_set_tattoo        (gint32 drawable_ID,
+

gimp_drawable_set_tattoo ()

gboolean    gimp_drawable_set_tattoo        (gint32 drawable_ID,
                                              gint tattoo);

Set the tattoo of the specified drawable.

@@ -281,7 +281,7 @@

drawable_ID: The drawable.
tattoo: The new drawable tattoo.
Returns : TRUE on success. -

gimp_drawable_get_pixel ()

guint8*     gimp_drawable_get_pixel         (gint32 drawable_ID,
+

gimp_drawable_get_pixel ()

guint8*     gimp_drawable_get_pixel         (gint32 drawable_ID,
                                              gint x_coord,
                                              gint y_coord,
                                              gint *num_channels);

@@ -296,7 +296,7 @@ y_coord: The y coordinate. num_channels: The number of channels for the pixel. Returns : The pixel value. -


gimp_drawable_set_pixel ()

gboolean    gimp_drawable_set_pixel         (gint32 drawable_ID,
+

gimp_drawable_set_pixel ()

gboolean    gimp_drawable_set_pixel         (gint32 drawable_ID,
                                              gint x_coord,
                                              gint y_coord,
                                              gint num_channels,
@@ -315,7 +315,7 @@
 num_channels: The number of channels for the pixel.
 pixel: The pixel value.
 Returns : TRUE on success.
-

gimp_drawable_get_tile ()

GimpTile*   gimp_drawable_get_tile          (GimpDrawable *drawable,
+

gimp_drawable_get_tile ()

GimpTile*   gimp_drawable_get_tile          (GimpDrawable *drawable,
                                              gint shadow,
                                              gint row,
                                              gint col);

@@ -327,7 +327,7 @@ Returns : -


gimp_drawable_get_tile2 ()

GimpTile*   gimp_drawable_get_tile2         (GimpDrawable *drawable,
+

gimp_drawable_get_tile2 ()

GimpTile*   gimp_drawable_get_tile2         (GimpDrawable *drawable,
                                              gint shadow,
                                              gint x,
                                              gint y);

@@ -339,7 +339,7 @@ Returns : -


gimp_drawable_get_thumbnail_data ()

guchar*     gimp_drawable_get_thumbnail_data
+

gimp_drawable_get_thumbnail_data ()

guchar*     gimp_drawable_get_thumbnail_data
                                             (gint32 drawable_ID,
                                              gint *width,
                                              gint *height,
@@ -352,7 +352,7 @@
 Returns :
 
 
-

gimp_drawable_get_sub_thumbnail_data ()

guchar*     gimp_drawable_get_sub_thumbnail_data
+

gimp_drawable_get_sub_thumbnail_data ()

guchar*     gimp_drawable_get_sub_thumbnail_data
                                             (gint32 drawable_ID,
                                              gint src_x,
                                              gint src_y,
@@ -373,7 +373,7 @@
 Returns :
 
 
-

gimp_drawable_get_color_uchar ()

void        gimp_drawable_get_color_uchar   (gint32 drawable_ID,
+

gimp_drawable_get_color_uchar ()

void        gimp_drawable_get_color_uchar   (gint32 drawable_ID,
                                              const GimpRGB *color,
@@ -384,7 +384,7 @@
 color_uchar:
 
 
-

gimp_drawable_merge_shadow ()

gboolean    gimp_drawable_merge_shadow      (gint32 drawable_ID,
+

gimp_drawable_merge_shadow ()

gboolean    gimp_drawable_merge_shadow      (gint32 drawable_ID,
                                              gboolean undo);

Merge the shadow buffer with the specified drawable.

@@ -396,7 +396,7 @@

drawable_ID: The drawable.
undo: Push merge to undo stack?
Returns : TRUE on success. -

gimp_drawable_fill ()

gboolean    gimp_drawable_fill              (gint32 drawable_ID,
+

gimp_drawable_fill ()

gboolean    gimp_drawable_fill              (gint32 drawable_ID,
                                              GimpFillType fill_type);

Fill the drawable with the specified fill mode.

@@ -413,7 +413,7 @@

drawable_ID: The drawable.
fill_type: The type of fill.
Returns : TRUE on success. -

gimp_drawable_update ()

gboolean    gimp_drawable_update            (gint32 drawable_ID,
+

gimp_drawable_update ()

gboolean    gimp_drawable_update            (gint32 drawable_ID,
                                              gint x,
                                              gint y,
                                              gint width,
@@ -431,7 +431,7 @@
 width: Width of update region.
 height: Height of update region.
 Returns : TRUE on success.
-

gimp_drawable_mask_bounds ()

gboolean    gimp_drawable_mask_bounds       (gint32 drawable_ID,
+

gimp_drawable_mask_bounds ()

gboolean    gimp_drawable_mask_bounds       (gint32 drawable_ID,
                                              gint *x1,
                                              gint *y1,
                                              gint *x2,
@@ -458,7 +458,7 @@
 x2: x coordinate of the lower right corner of selection bounds.
 y2: y coordinate of the lower right corner of selection bounds.
 Returns : TRUE if there is a selection.
-

gimp_drawable_mask_intersect ()

gboolean    gimp_drawable_mask_intersect    (gint32 drawable_ID,
+

gimp_drawable_mask_intersect ()

gboolean    gimp_drawable_mask_intersect    (gint32 drawable_ID,
                                              gint *x,
                                              gint *y,
                                              gint *width,
@@ -480,21 +480,21 @@
 Returns : TRUE if the returned area is not empty.
 
 

Since GIMP 2.2 -


gimp_drawable_get_image ()

gint32      gimp_drawable_get_image         (gint32 drawable_ID);

+


gimp_drawable_get_image ()

gint32      gimp_drawable_get_image         (gint32 drawable_ID);

Returns the drawable's image.

This procedure returns the drawable's image.

drawable_ID: The drawable.
Returns : The drawable's image. -

gimp_drawable_set_image ()

gboolean    gimp_drawable_set_image         (gint32 drawable_ID,
+

gimp_drawable_set_image ()

gboolean    gimp_drawable_set_image         (gint32 drawable_ID,
                                              gint32 image_ID);

Warning

gimp_drawable_set_image is deprecated and should not be used in newly-written code.

This procedure is deprecated!

drawable_ID: The drawable.
image_ID: The image.
Returns : TRUE on success. -

gimp_drawable_has_alpha ()

gboolean    gimp_drawable_has_alpha         (gint32 drawable_ID);

+


gimp_drawable_has_alpha ()

gboolean    gimp_drawable_has_alpha         (gint32 drawable_ID);

Returns non-zero if the drawable has an alpha channel.

This procedure returns whether the specified drawable has an alpha @@ -503,7 +503,7 @@

drawable_ID: The drawable.
Returns : Does the drawable have an alpha channel? -

gimp_drawable_type_with_alpha ()


gimp_drawable_type_with_alpha ()

GimpImageType gimp_drawable_type_with_alpha (gint32 drawable_ID);

Returns the drawable's type with alpha. @@ -515,7 +515,7 @@

drawable_ID: The drawable.
Returns : The drawable's type with alpha. -

gimp_drawable_type ()


gimp_drawable_type ()

GimpImageType gimp_drawable_type            (gint32 drawable_ID);

Returns the drawable's type. @@ -524,7 +524,7 @@

drawable_ID: The drawable.
Returns : The drawable's type. -

gimp_drawable_is_rgb ()

gboolean    gimp_drawable_is_rgb            (gint32 drawable_ID);

+


gimp_drawable_is_rgb ()

gboolean    gimp_drawable_is_rgb            (gint32 drawable_ID);

Returns whether the drawable is an RGB type.

This procedure returns non-zero if the specified drawable is of type @@ -532,7 +532,7 @@

drawable_ID: The drawable.
Returns : non-zero if the drawable is an RGB type. -

gimp_drawable_is_gray ()

gboolean    gimp_drawable_is_gray           (gint32 drawable_ID);

+


gimp_drawable_is_gray ()

gboolean    gimp_drawable_is_gray           (gint32 drawable_ID);

Returns whether the drawable is a grayscale type.

This procedure returns non-zero if the specified drawable is of type @@ -540,7 +540,7 @@

drawable_ID: The drawable.
Returns : non-zero if the drawable is a grayscale type. -

gimp_drawable_is_indexed ()

gboolean    gimp_drawable_is_indexed        (gint32 drawable_ID);

+


gimp_drawable_is_indexed ()

gboolean    gimp_drawable_is_indexed        (gint32 drawable_ID);

Returns whether the drawable is an indexed type.

This procedure returns non-zero if the specified drawable is of type @@ -548,7 +548,7 @@

drawable_ID: The drawable.
Returns : non-zero if the drawable is an indexed type. -

gimp_drawable_bpp ()

gint        gimp_drawable_bpp               (gint32 drawable_ID);

+


gimp_drawable_bpp ()

gint        gimp_drawable_bpp               (gint32 drawable_ID);

Returns the bytes per pixel.

This procedure returns the number of bytes per pixel (or the number @@ -556,21 +556,21 @@

drawable_ID: The drawable.
Returns : Bytes per pixel. -

gimp_drawable_width ()

gint        gimp_drawable_width             (gint32 drawable_ID);

+


gimp_drawable_width ()

gint        gimp_drawable_width             (gint32 drawable_ID);

Returns the width of the drawable.

This procedure returns the specified drawable's width in pixels.

drawable_ID: The drawable.
Returns : Width of drawable. -

gimp_drawable_height ()

gint        gimp_drawable_height            (gint32 drawable_ID);

+


gimp_drawable_height ()

gint        gimp_drawable_height            (gint32 drawable_ID);

Returns the height of the drawable.

This procedure returns the specified drawable's height in pixels.

drawable_ID: The drawable.
Returns : Height of drawable. -

gimp_drawable_offsets ()

gboolean    gimp_drawable_offsets           (gint32 drawable_ID,
+

gimp_drawable_offsets ()

gboolean    gimp_drawable_offsets           (gint32 drawable_ID,
                                              gint *offset_x,
                                              gint *offset_y);

Returns the offsets for the drawable. @@ -583,7 +583,7 @@ offset_x: x offset of drawable. offset_y: y offset of drawable. Returns : TRUE on success. -


gimp_drawable_is_layer ()

gboolean    gimp_drawable_is_layer          (gint32 drawable_ID);

+


gimp_drawable_is_layer ()

gboolean    gimp_drawable_is_layer          (gint32 drawable_ID);

Returns whether the drawable is a layer.

This procedure returns non-zero if the specified drawable is a @@ -591,7 +591,7 @@

drawable_ID: The drawable.
Returns : Non-zero if the drawable is a layer. -

gimp_drawable_is_layer_mask ()

gboolean    gimp_drawable_is_layer_mask     (gint32 drawable_ID);

+


gimp_drawable_is_layer_mask ()

gboolean    gimp_drawable_is_layer_mask     (gint32 drawable_ID);

Returns whether the drawable is a layer mask.

This procedure returns non-zero if the specified drawable is a layer @@ -599,7 +599,7 @@

drawable_ID: The drawable.
Returns : Non-zero if the drawable is a layer mask. -

gimp_drawable_is_channel ()

gboolean    gimp_drawable_is_channel        (gint32 drawable_ID);

+


gimp_drawable_is_channel ()

gboolean    gimp_drawable_is_channel        (gint32 drawable_ID);

Returns whether the drawable is a channel.

This procedure returns non-zero if the specified drawable is a @@ -607,7 +607,7 @@

drawable_ID: The drawable.
Returns : Non-zero if the drawable is a channel. -

gimp_drawable_offset ()

gboolean    gimp_drawable_offset            (gint32 drawable_ID,
+

gimp_drawable_offset ()

gboolean    gimp_drawable_offset            (gint32 drawable_ID,
                                              gboolean wrap_around,
                                              GimpOffsetType fill_type,
                                              gint offset_x,
@@ -628,7 +628,7 @@
 offset_x: offset by this amount in X direction.
 offset_y: offset by this amount in Y direction.
 Returns : TRUE on success.
-

gimp_drawable_parasite_find ()


gimp_drawable_parasite_find ()

GimpParasite* gimp_drawable_parasite_find   (gint32 drawable_ID,
                                              const gchar *name);

@@ -640,7 +640,7 @@

drawable_ID: The drawable.
name: The name of the parasite to find.
Returns : The found parasite. -

gimp_drawable_parasite_list ()

gboolean    gimp_drawable_parasite_list     (gint32 drawable_ID,
+

gimp_drawable_parasite_list ()

gboolean    gimp_drawable_parasite_list     (gint32 drawable_ID,
                                              gint *num_parasites,
                                              gchar ***parasites);

List all parasites. @@ -651,7 +651,7 @@ num_parasites: The number of attached parasites. parasites: The names of currently attached parasites. Returns : TRUE on success. -


gimp_drawable_parasite_attach ()

gboolean    gimp_drawable_parasite_attach   (gint32 drawable_ID,
+

gimp_drawable_parasite_attach ()

gboolean    gimp_drawable_parasite_attach   (gint32 drawable_ID,
                                              GimpParasite *parasite);

@@ -663,7 +663,7 @@

drawable_ID: The drawable.
parasite: The parasite to attach to a drawable.
Returns : TRUE on success. -

gimp_drawable_parasite_detach ()

gboolean    gimp_drawable_parasite_detach   (gint32 drawable_ID,
+

gimp_drawable_parasite_detach ()

gboolean    gimp_drawable_parasite_detach   (gint32 drawable_ID,
                                              const gchar *name);

Removes a parasite from a drawable.

@@ -673,7 +673,7 @@

drawable_ID: The drawable.
name: The name of the parasite to detach from a drawable.
Returns : TRUE on success. -

gimp_drawable_attach_new_parasite ()

void        gimp_drawable_attach_new_parasite
+

gimp_drawable_attach_new_parasite ()

void        gimp_drawable_attach_new_parasite
                                             (gint32 drawable_ID,
                                              const gchar *name,
                                              gint flags,
diff -uraN gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpdrawabletransform.html gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpdrawabletransform.html
--- gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpdrawabletransform.html	2004-12-19 03:35:04.000000000 +0100
+++ gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpdrawabletransform.html	2004-12-28 16:59:56.000000000 +0100
@@ -192,9 +192,9 @@
                                              gdouble coeff_2_2,
                                              gboolean interpolate,
                                              gboolean clip_result);
-

Description

+

Description

-

Details

gimp_drawable_transform_flip_simple ()

gint32      gimp_drawable_transform_flip_simple
+

Details

gimp_drawable_transform_flip_simple ()

gint32      gimp_drawable_transform_flip_simple
                                             (gint32 drawable_ID,
                                              GimpOrientationType flip_type,
                                              gboolean auto_center,
@@ -220,7 +220,7 @@
 Returns : The flipped drawable.
 
 

Since GIMP 2.2 -


gimp_drawable_transform_flip ()

gint32      gimp_drawable_transform_flip    (gint32 drawable_ID,
+


gimp_drawable_transform_flip ()

gint32      gimp_drawable_transform_flip    (gint32 drawable_ID,
                                              gdouble x0,
                                              gdouble y0,
                                              gdouble x1,
@@ -256,7 +256,7 @@
 Returns : The flipped drawable.
 
 

Since GIMP 2.2 -


gimp_drawable_transform_flip_default ()

gint32      gimp_drawable_transform_flip_default
+


gimp_drawable_transform_flip_default ()

gint32      gimp_drawable_transform_flip_default
                                             (gint32 drawable_ID,
                                              gdouble x0,
                                              gdouble y0,
@@ -280,7 +280,7 @@
 Returns : The flipped drawable.
 
 

Since GIMP 2.2 -


gimp_drawable_transform_perspective ()

gint32      gimp_drawable_transform_perspective
+


gimp_drawable_transform_perspective ()

gint32      gimp_drawable_transform_perspective
                                             (gint32 drawable_ID,
                                              gdouble x0,
                                              gdouble y0,
@@ -331,7 +331,7 @@
 Returns : The newly mapped drawable.
 
 

Since GIMP 2.2 -


gimp_drawable_transform_perspective_default ()

gint32      gimp_drawable_transform_perspective_default
+


gimp_drawable_transform_perspective_default ()

gint32      gimp_drawable_transform_perspective_default
                                             (gint32 drawable_ID,
                                              gdouble x0,
                                              gdouble y0,
@@ -364,7 +364,7 @@
 Returns : The newly mapped drawable.
 
 

Since GIMP 2.2 -


gimp_drawable_transform_rotate_simple ()

gint32      gimp_drawable_transform_rotate_simple
+


gimp_drawable_transform_rotate_simple ()

gint32      gimp_drawable_transform_rotate_simple
                                             (gint32 drawable_ID,
                                              GimpRotationType rotate_type,
                                              gboolean auto_center,
@@ -391,7 +391,7 @@
 Returns : The rotated drawable.
 
 

Since GIMP 2.2 -


gimp_drawable_transform_rotate ()

gint32      gimp_drawable_transform_rotate  (gint32 drawable_ID,
+


gimp_drawable_transform_rotate ()

gint32      gimp_drawable_transform_rotate  (gint32 drawable_ID,
                                              gdouble angle,
                                              gboolean auto_center,
                                              gint center_x,
@@ -425,7 +425,7 @@
 Returns : The rotated drawable.
 
 

Since GIMP 2.2 -


gimp_drawable_transform_rotate_default ()

gint32      gimp_drawable_transform_rotate_default
+


gimp_drawable_transform_rotate_default ()

gint32      gimp_drawable_transform_rotate_default
                                             (gint32 drawable_ID,
                                              gdouble angle,
                                              gboolean auto_center,
@@ -450,7 +450,7 @@
 Returns : The rotated drawable.
 
 

Since GIMP 2.2 -


gimp_drawable_transform_scale ()

gint32      gimp_drawable_transform_scale   (gint32 drawable_ID,
+


gimp_drawable_transform_scale ()

gint32      gimp_drawable_transform_scale   (gint32 drawable_ID,
                                              gdouble x0,
                                              gdouble y0,
                                              gdouble x1,
@@ -483,7 +483,7 @@
 Returns : The scaled drawable.
 
 

Since GIMP 2.2 -


gimp_drawable_transform_scale_default ()

gint32      gimp_drawable_transform_scale_default
+


gimp_drawable_transform_scale_default ()

gint32      gimp_drawable_transform_scale_default
                                             (gint32 drawable_ID,
                                              gdouble x0,
                                              gdouble y0,
@@ -507,7 +507,7 @@
 Returns : The scaled drawable.
 
 

Since GIMP 2.2 -


gimp_drawable_transform_shear ()

gint32      gimp_drawable_transform_shear   (gint32 drawable_ID,
+


gimp_drawable_transform_shear ()

gint32      gimp_drawable_transform_shear   (gint32 drawable_ID,
                                              GimpOrientationType shear_type,
                                              gdouble magnitude,
                                              GimpTransformDirection transform_direction,
@@ -540,7 +540,7 @@
 Returns : The sheared drawable.
 
 

Since GIMP 2.2 -


gimp_drawable_transform_shear_default ()

gint32      gimp_drawable_transform_shear_default
+


gimp_drawable_transform_shear_default ()

gint32      gimp_drawable_transform_shear_default
                                             (gint32 drawable_ID,
                                              GimpOrientationType shear_type,
                                              gdouble magnitude,
@@ -561,7 +561,7 @@
 Returns : The sheared drawable.
 
 

Since GIMP 2.2 -


gimp_drawable_transform_2d ()

gint32      gimp_drawable_transform_2d      (gint32 drawable_ID,
+


gimp_drawable_transform_2d ()

gint32      gimp_drawable_transform_2d      (gint32 drawable_ID,
                                              gdouble source_x,
                                              gdouble source_y,
                                              gdouble scale_x,
@@ -633,7 +633,7 @@
 Returns : The transformed drawable.
 
 

Since GIMP 2.2 -


gimp_drawable_transform_matrix ()

gint32      gimp_drawable_transform_matrix  (gint32 drawable_ID,
+


gimp_drawable_transform_matrix ()

gint32      gimp_drawable_transform_matrix  (gint32 drawable_ID,
                                              gdouble coeff_0_0,
                                              gdouble coeff_0_1,
                                              gdouble coeff_0_2,
@@ -677,7 +677,7 @@
 Returns : The transformed drawable.
 
 

Since GIMP 2.2 -


gimp_drawable_transform_matrix_default ()

gint32      gimp_drawable_transform_matrix_default
+


gimp_drawable_transform_matrix_default ()

gint32      gimp_drawable_transform_matrix_default
                                             (gint32 drawable_ID,
                                              gdouble coeff_0_0,
                                              gdouble coeff_0_1,
diff -uraN gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpedit.html gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpedit.html
--- gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpedit.html	2004-12-19 03:35:04.000000000 +0100
+++ gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpedit.html	2004-12-28 16:59:56.000000000 +0100
@@ -65,10 +65,10 @@
                                              gdouble x2,
                                              gdouble y2);
 gboolean    gimp_edit_stroke                (gint32 drawable_ID);
-

Description

+

Description

Edit menu functions (cut, copy, paste, clear, etc.) -

Details

gimp_edit_cut ()

gboolean    gimp_edit_cut                   (gint32 drawable_ID);

+

Details

gimp_edit_cut ()

gboolean    gimp_edit_cut                   (gint32 drawable_ID);

Cut from the specified drawable.

If there is a selection in the image, then the area specified by the @@ -80,7 +80,7 @@

drawable_ID: The drawable to cut from.
Returns : TRUE if the cut was successful, FALSE if the selection contained only transparent pixels. -

gimp_edit_copy ()

gboolean    gimp_edit_copy                  (gint32 drawable_ID);

+


gimp_edit_copy ()

gboolean    gimp_edit_copy                  (gint32 drawable_ID);

Copy from the specified drawable.

If there is a selection in the image, then the area specified by the @@ -92,7 +92,7 @@

drawable_ID: The drawable to copy from.
Returns : TRUE if the copy was successful, FALSE if the selection contained only transparent pixels. -

gimp_edit_copy_visible ()

gboolean    gimp_edit_copy_visible          (gint32 image_ID);

+


gimp_edit_copy_visible ()

gboolean    gimp_edit_copy_visible          (gint32 image_ID);

Copy from the projection.

If there is a selection in the image, then the area specified by the @@ -106,7 +106,7 @@ Returns : TRUE if the copy was successful, FALSE if the selection contained only transparent pixels.

Since GIMP 2.2 -


gimp_edit_paste ()

gint32      gimp_edit_paste                 (gint32 drawable_ID,
+


gimp_edit_paste ()

gint32      gimp_edit_paste                 (gint32 drawable_ID,
                                              gboolean paste_into);

Paste buffer to the specified drawable.

@@ -129,7 +129,7 @@

drawable_ID: The drawable to paste to.
paste_into: Clear selection, or paste behind it?
Returns : The new floating selection. -

gimp_edit_clear ()

gboolean    gimp_edit_clear                 (gint32 drawable_ID);

+


gimp_edit_clear ()

gboolean    gimp_edit_clear                 (gint32 drawable_ID);

Clear selected area of drawable.

This procedure clears the specified drawable. If the drawable has an @@ -140,7 +140,7 @@

drawable_ID: The drawable to clear from.
Returns : TRUE on success. -

gimp_edit_fill ()

gboolean    gimp_edit_fill                  (gint32 drawable_ID,
+

gimp_edit_fill ()

gboolean    gimp_edit_fill                  (gint32 drawable_ID,
                                              GimpFillType fill_type);

Fill selected area of drawable.

@@ -155,7 +155,7 @@

drawable_ID: The drawable to fill to.
fill_type: The type of fill.
Returns : TRUE on success. -

gimp_edit_bucket_fill ()

gboolean    gimp_edit_bucket_fill           (gint32 drawable_ID,
+

gimp_edit_bucket_fill ()

gboolean    gimp_edit_bucket_fill           (gint32 drawable_ID,
                                              GimpBucketFillMode fill_mode,
                                              GimpLayerModeEffects paint_mode,
                                              gdouble opacity,
@@ -188,7 +188,7 @@
 x: The x coordinate of this bucket fill's application. This parameter is only valid when there is no selection in the specified image.
 y: The y coordinate of this bucket fill's application. This parameter is only valid when there is no selection in the specified image.
 Returns : TRUE on success.
-

gimp_edit_blend ()

gboolean    gimp_edit_blend                 (gint32 drawable_ID,
+

gimp_edit_blend ()

gboolean    gimp_edit_blend                 (gint32 drawable_ID,
                                              GimpBlendMode blend_mode,
                                              GimpLayerModeEffects paint_mode,
                                              GimpGradientType gradient_type,
@@ -229,7 +229,7 @@
 x2: The x coordinate of this blend's ending point.
 y2: The y coordinate of this blend's ending point.
 Returns : TRUE on success.
-

gimp_edit_stroke ()

gboolean    gimp_edit_stroke                (gint32 drawable_ID);

+


gimp_edit_stroke ()

gboolean    gimp_edit_stroke                (gint32 drawable_ID);

Stroke the current selection

This procedure strokes the current selection, painting along the diff -uraN gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpenums.html gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpenums.html --- gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpenums.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpenums.html 2004-12-28 16:59:56.000000000 +0100 @@ -66,10 +66,10 @@ enum GimpTransformDirection; const gchar** gimp_enums_get_type_names (gint *n_type_names); -

Description

+

Description

Enums and definitions. -

Details

enum GimpAddMaskType

typedef enum
+

Details

enum GimpAddMaskType

typedef enum
 {
   GIMP_ADD_WHITE_MASK,
   GIMP_ADD_BLACK_MASK,
@@ -80,7 +80,7 @@
 } GimpAddMaskType;
 

-


enum GimpBlendMode

typedef enum
+


enum GimpBlendMode

typedef enum
 {
   GIMP_FG_BG_RGB_MODE,
   GIMP_FG_BG_HSV_MODE,
@@ -89,14 +89,14 @@
 } GimpBlendMode;
 

-


enum GimpBrushApplicationMode

typedef enum
+


enum GimpBrushApplicationMode

typedef enum
 {
   GIMP_BRUSH_HARD,
   GIMP_BRUSH_SOFT
 } GimpBrushApplicationMode;
 

-


enum GimpBucketFillMode

typedef enum
+


enum GimpBucketFillMode

typedef enum
 {
   GIMP_FG_BUCKET_FILL,
   GIMP_BG_BUCKET_FILL,
@@ -104,7 +104,7 @@
 } GimpBucketFillMode;
 

-


enum GimpChannelOps

typedef enum
+


enum GimpChannelOps

typedef enum
 {
   GIMP_CHANNEL_OP_ADD,
   GIMP_CHANNEL_OP_SUBTRACT,
@@ -113,7 +113,7 @@
 } GimpChannelOps;
 

-


enum GimpChannelType

typedef enum
+


enum GimpChannelType

typedef enum
 {
   GIMP_RED_CHANNEL,
   GIMP_GREEN_CHANNEL,
@@ -124,14 +124,14 @@
 } GimpChannelType;
 

-


enum GimpCloneType

typedef enum
+


enum GimpCloneType

typedef enum
 {
   GIMP_IMAGE_CLONE,
   GIMP_PATTERN_CLONE
 } GimpCloneType;
 

-


enum GimpConvertDitherType

typedef enum
+


enum GimpConvertDitherType

typedef enum
 {
   GIMP_NO_DITHER,
   GIMP_FS_DITHER,
@@ -140,7 +140,7 @@
 } GimpConvertDitherType;
 

-


enum GimpConvertPaletteType

typedef enum
+


enum GimpConvertPaletteType

typedef enum
 {
   GIMP_MAKE_PALETTE,
   GIMP_REUSE_PALETTE,
@@ -150,7 +150,7 @@
 } GimpConvertPaletteType;
 

-


enum GimpConvolutionType

typedef enum
+


enum GimpConvolutionType

typedef enum
 {
   GIMP_NORMAL_CONVOL,
   GIMP_ABSOLUTE_CONVOL,
@@ -158,21 +158,21 @@
 } GimpConvolutionType;
 

-


enum GimpConvolveType

typedef enum
+


enum GimpConvolveType

typedef enum
 {
   GIMP_BLUR_CONVOLVE,
   GIMP_SHARPEN_CONVOLVE
 } GimpConvolveType;
 

-


enum GimpDodgeBurnType

typedef enum
+


enum GimpDodgeBurnType

typedef enum
 {
   GIMP_DODGE,
   GIMP_BURN
 } GimpDodgeBurnType;
 

-


enum GimpFillType

typedef enum
+


enum GimpFillType

typedef enum
 {
   GIMP_FOREGROUND_FILL,
   GIMP_BACKGROUND_FILL,
@@ -182,7 +182,7 @@
 } GimpFillType;
 

-


enum GimpGradientSegmentColor

typedef enum
+


enum GimpGradientSegmentColor

typedef enum
 {
   GIMP_GRADIENT_SEGMENT_RGB,
   GIMP_GRADIENT_SEGMENT_HSV_CCW,
@@ -190,7 +190,7 @@
 } GimpGradientSegmentColor;
 

-


enum GimpGradientSegmentType

typedef enum
+


enum GimpGradientSegmentType

typedef enum
 {
   GIMP_GRADIENT_SEGMENT_LINEAR,
   GIMP_GRADIENT_SEGMENT_CURVED,
@@ -200,7 +200,7 @@
 } GimpGradientSegmentType;
 

-


enum GimpGradientType

typedef enum
+


enum GimpGradientType

typedef enum
 {
   GIMP_GRADIENT_LINEAR,
   GIMP_GRADIENT_BILINEAR,
@@ -216,7 +216,7 @@
 } GimpGradientType;
 

-


enum GimpHistogramChannel

typedef enum
+


enum GimpHistogramChannel

typedef enum
 {
   GIMP_HISTOGRAM_VALUE,
   GIMP_HISTOGRAM_RED,
@@ -226,7 +226,7 @@
 } GimpHistogramChannel;
 

-


enum GimpHueRange

typedef enum
+


enum GimpHueRange

typedef enum
 {
   GIMP_ALL_HUES,
   GIMP_RED_HUES,
@@ -238,7 +238,7 @@
 } GimpHueRange;
 

-


enum GimpIconType

typedef enum
+


enum GimpIconType

typedef enum
 {
   GIMP_ICON_TYPE_STOCK_ID,
   GIMP_ICON_TYPE_INLINE_PIXBUF,
@@ -246,7 +246,7 @@
 } GimpIconType;
 

-


enum GimpInterpolationType

typedef enum
+


enum GimpInterpolationType

typedef enum
 {
   GIMP_INTERPOLATION_NONE,
   GIMP_INTERPOLATION_LINEAR,
@@ -254,7 +254,7 @@
 } GimpInterpolationType;
 

-


enum GimpLayerModeEffects

typedef enum
+


enum GimpLayerModeEffects

typedef enum
 {
   GIMP_NORMAL_MODE,
   GIMP_DISSOLVE_MODE,
@@ -282,14 +282,14 @@
 } GimpLayerModeEffects;
 

-


enum GimpMaskApplyMode

typedef enum
+


enum GimpMaskApplyMode

typedef enum
 {
   GIMP_MASK_APPLY,
   GIMP_MASK_DISCARD
 } GimpMaskApplyMode;
 

-


enum GimpMergeType

typedef enum
+


enum GimpMergeType

typedef enum
 {
   GIMP_EXPAND_AS_NECESSARY,
   GIMP_CLIP_TO_IMAGE,
@@ -298,14 +298,14 @@
 } GimpMergeType;
 

-


enum GimpOffsetType

typedef enum
+


enum GimpOffsetType

typedef enum
 {
   GIMP_OFFSET_BACKGROUND,
   GIMP_OFFSET_TRANSPARENT
 } GimpOffsetType;
 

-


enum GimpOrientationType

typedef enum
+


enum GimpOrientationType

typedef enum
 {
   GIMP_ORIENTATION_HORIZONTAL,
   GIMP_ORIENTATION_VERTICAL,
@@ -313,14 +313,14 @@
 } GimpOrientationType;
 

-


enum GimpPaintApplicationMode

typedef enum
+


enum GimpPaintApplicationMode

typedef enum
 {
   GIMP_PAINT_CONSTANT,
   GIMP_PAINT_INCREMENTAL
 } GimpPaintApplicationMode;
 

-


enum GimpRepeatMode

typedef enum
+


enum GimpRepeatMode

typedef enum
 {
   GIMP_REPEAT_NONE,
   GIMP_REPEAT_SAWTOOTH,
@@ -328,7 +328,7 @@
 } GimpRepeatMode;
 

-


enum GimpRotationType

typedef enum
+


enum GimpRotationType

typedef enum
 {
   GIMP_ROTATE_90,
   GIMP_ROTATE_180,
@@ -336,7 +336,7 @@
 } GimpRotationType;
 

-


enum GimpRunMode

typedef enum
+


enum GimpRunMode

typedef enum
 {
   GIMP_RUN_INTERACTIVE,
   GIMP_RUN_NONINTERACTIVE,
@@ -344,14 +344,14 @@
 } GimpRunMode;
 

-


enum GimpSizeType

typedef enum
+


enum GimpSizeType

typedef enum
 {
   GIMP_PIXELS,
   GIMP_POINTS
 } GimpSizeType;
 

-


enum GimpTransferMode

typedef enum
+


enum GimpTransferMode

typedef enum
 {
   GIMP_SHADOWS,
   GIMP_MIDTONES,
@@ -359,14 +359,14 @@
 } GimpTransferMode;
 

-


enum GimpTransformDirection

typedef enum
+


enum GimpTransformDirection

typedef enum
 {
   GIMP_TRANSFORM_FORWARD,
   GIMP_TRANSFORM_BACKWARD
 } GimpTransformDirection;
 

-


gimp_enums_get_type_names ()

const gchar** gimp_enums_get_type_names     (gint *n_type_names);

+


gimp_enums_get_type_names ()

const gchar** gimp_enums_get_type_names     (gint *n_type_names);

This function gives access to the list of enums registered by libgimp. The returned array is static and must not be modified.

diff -uraN gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpexport.html gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpexport.html --- gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpexport.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpexport.html 2004-12-28 16:59:56.000000000 +0100 @@ -38,7 +38,7 @@ gint32 *drawable_ID, const gchar *format_name, GimpExportCapabilities capabilities); -

Description

+

Description

This function should be called by all save_plugins unless they are able to save all image formats the GIMP knows about. It takes care of asking the user if she wishes to export the image to a format the @@ -51,7 +51,7 @@ Make sure you have initialized GTK+ before you call this function as it will most probably have to open a dialog. -

Details

enum GimpExportCapabilities

typedef enum
+

Details

enum GimpExportCapabilities

typedef enum
 {
   GIMP_EXPORT_CAN_HANDLE_RGB                 = 1 << 0,
   GIMP_EXPORT_CAN_HANDLE_GRAY                = 1 << 1,
@@ -65,7 +65,7 @@
 } GimpExportCapabilities;
 

-


enum GimpExportReturn

typedef enum
+


enum GimpExportReturn

typedef enum
 {
   GIMP_EXPORT_CANCEL,
   GIMP_EXPORT_IGNORE,
@@ -73,7 +73,7 @@
 } GimpExportReturn;
 

-


gimp_export_image ()

GimpExportReturn gimp_export_image          (gint32 *image_ID,
+


gimp_export_image ()

GimpExportReturn gimp_export_image          (gint32 *image_ID,
                                              gint32 *drawable_ID,
                                              const gchar *format_name,
                                              GimpExportCapabilities capabilities);

diff -uraN gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpfileops.html gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpfileops.html --- gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpfileops.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpfileops.html 2004-12-28 16:59:56.000000000 +0100 @@ -56,10 +56,10 @@ const gchar *mime_type); gboolean gimp_register_thumbnail_loader (const gchar *load_proc, const gchar *thumb_proc); -

Description

+

Description

File operations (load, save, etc.) -

Details

gimp_temp_name ()

gchar*      gimp_temp_name                  (const gchar *extension);

+

Details

gimp_temp_name ()

gchar*      gimp_temp_name                  (const gchar *extension);

Generates a unique filename.

Generates a unique filename using the temp path supplied in the @@ -67,7 +67,7 @@

extension: The extension the file will have.
Returns : The new temp filename. -

gimp_file_load ()

gint32      gimp_file_load                  (GimpRunMode run_mode,
+

gimp_file_load ()

gint32      gimp_file_load                  (GimpRunMode run_mode,
                                              const gchar *filename,
                                              const gchar *raw_filename);

Loads a file by invoking the right load handler. @@ -84,7 +84,7 @@ filename: The name of the file to load. raw_filename: The name as entered by the user. Returns : The output image. -


gimp_file_save ()

gboolean    gimp_file_save                  (GimpRunMode run_mode,
+

gimp_file_save ()

gboolean    gimp_file_save                  (GimpRunMode run_mode,
                                              gint32 image_ID,
                                              gint32 drawable_ID,
                                              const gchar *filename,
@@ -104,7 +104,7 @@
 filename: The name of the file to save the image in.
 raw_filename: The name as entered by the user.
 Returns : TRUE on success.
-

gimp_register_magic_load_handler ()

gboolean    gimp_register_magic_load_handler
+

gimp_register_magic_load_handler ()

gboolean    gimp_register_magic_load_handler
                                             (const gchar *procedure_name,
                                              const gchar *extensions,
                                              const gchar *prefixes,
@@ -119,7 +119,7 @@
 prefixes: comma separated list of prefixes this handler can load (i.e. \"http:,ftp:\").
 magics: comma separated list of magic file information this handler can load (i.e. \"0,string,GIF\").
 Returns : TRUE on success.
-

gimp_register_load_handler ()

gboolean    gimp_register_load_handler      (const gchar *procedure_name,
+

gimp_register_load_handler ()

gboolean    gimp_register_load_handler      (const gchar *procedure_name,
                                              const gchar *extensions,
                                              const gchar *prefixes);

Registers a file load handler procedure. @@ -131,7 +131,7 @@ extensions: comma separated list of extensions this handler can load (i.e. \"jpg,jpeg\"). prefixes: comma separated list of prefixes this handler can load (i.e. \"http:,ftp:\"). Returns : TRUE on success. -


gimp_register_save_handler ()

gboolean    gimp_register_save_handler      (const gchar *procedure_name,
+

gimp_register_save_handler ()

gboolean    gimp_register_save_handler      (const gchar *procedure_name,
                                              const gchar *extensions,
                                              const gchar *prefixes);

Registers a file save handler procedure. @@ -143,7 +143,7 @@ extensions: comma separated list of extensions this handler can save (i.e. \"jpg,jpeg\"). prefixes: comma separated list of prefixes this handler can save (i.e. \"http:,ftp:\"). Returns : TRUE on success. -


gimp_register_file_handler_mime ()

gboolean    gimp_register_file_handler_mime (const gchar *procedure_name,
+

gimp_register_file_handler_mime ()

gboolean    gimp_register_file_handler_mime (const gchar *procedure_name,
                                              const gchar *mime_type);

Associates a MIME type with a file handler procedure.

@@ -156,7 +156,7 @@ Returns : TRUE on success.

Since GIMP 2.2 -


gimp_register_thumbnail_loader ()

gboolean    gimp_register_thumbnail_loader  (const gchar *load_proc,
+


gimp_register_thumbnail_loader ()

gboolean    gimp_register_thumbnail_loader  (const gchar *load_proc,
                                              const gchar *thumb_proc);

Associates a thumbnail loader with a file load procedure.

diff -uraN gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpfloatingsel.html gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpfloatingsel.html --- gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpfloatingsel.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpfloatingsel.html 2004-12-28 16:59:56.000000000 +0100 @@ -41,10 +41,10 @@ gboolean undo); gboolean gimp_floating_sel_relax (gint32 floating_sel_ID, gboolean undo); -

Description

+

Description

Functions for removing or attaching floating selections. -

Details

gimp_floating_sel_remove ()

gboolean    gimp_floating_sel_remove        (gint32 floating_sel_ID);

+

Details

gimp_floating_sel_remove ()

gboolean    gimp_floating_sel_remove        (gint32 floating_sel_ID);

Remove the specified floating selection from its associated drawable.

@@ -53,7 +53,7 @@

floating_sel_ID: The floating selection.
Returns : TRUE on success. -

gimp_floating_sel_anchor ()

gboolean    gimp_floating_sel_anchor        (gint32 floating_sel_ID);

+


gimp_floating_sel_anchor ()

gboolean    gimp_floating_sel_anchor        (gint32 floating_sel_ID);

Anchor the specified floating selection to its associated drawable.

This procedure anchors the floating selection to its associated @@ -63,7 +63,7 @@

floating_sel_ID: The floating selection.
Returns : TRUE on success. -

gimp_floating_sel_to_layer ()

gboolean    gimp_floating_sel_to_layer      (gint32 floating_sel_ID);

+


gimp_floating_sel_to_layer ()

gboolean    gimp_floating_sel_to_layer      (gint32 floating_sel_ID);

Transforms the specified floating selection into a layer.

This procedure transforms the specified floating selection into a @@ -77,7 +77,7 @@

floating_sel_ID: The floating selection.
Returns : TRUE on success. -

gimp_floating_sel_attach ()

gboolean    gimp_floating_sel_attach        (gint32 layer_ID,
+

gimp_floating_sel_attach ()

gboolean    gimp_floating_sel_attach        (gint32 layer_ID,
                                              gint32 drawable_ID);

Attach the specified layer as floating to the specified drawable.

@@ -87,7 +87,7 @@

layer_ID: The layer (is attached as floating selection).
drawable_ID: The drawable (where to attach the floating selection).
Returns : TRUE on success. -

gimp_floating_sel_rigor ()

gboolean    gimp_floating_sel_rigor         (gint32 floating_sel_ID,
+

gimp_floating_sel_rigor ()

gboolean    gimp_floating_sel_rigor         (gint32 floating_sel_ID,
                                              gboolean undo);

Rigor the floating selection.

@@ -96,7 +96,7 @@

floating_sel_ID: The floating selection.
undo: %desc%%.
Returns : TRUE on success. -

gimp_floating_sel_relax ()

gboolean    gimp_floating_sel_relax         (gint32 floating_sel_ID,
+

gimp_floating_sel_relax ()

gboolean    gimp_floating_sel_relax         (gint32 floating_sel_ID,
                                              gboolean undo);

Relax the floating selection.

diff -uraN gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpfontmenu.html gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpfontmenu.html --- gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpfontmenu.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpfontmenu.html 2004-12-28 16:59:56.000000000 +0100 @@ -39,9 +39,9 @@ void gimp_font_select_widget_close (GtkWidget *widget); void gimp_font_select_widget_set (GtkWidget *widget, const gchar *font_name); -

Description

+

Description

A widget for selecting fonts. -

Details

gimp_font_select_widget_new ()

GtkWidget*  gimp_font_select_widget_new     (const gchar *title,
+

Details

gimp_font_select_widget_new ()

GtkWidget*  gimp_font_select_widget_new     (const gchar *title,
                                              const gchar *font_name,
                                              GimpRunFontCallback callback,
                                              gpointer data);

@@ -55,11 +55,11 @@ callback: A function to call when the selected font changes. data: A pointer to arbitary data to be used in the call to callback. Returns : A GtkWidget that you can use in your UI. -


gimp_font_select_widget_close ()

void        gimp_font_select_widget_close   (GtkWidget *widget);

+


gimp_font_select_widget_close ()

void        gimp_font_select_widget_close   (GtkWidget *widget);

Closes the popup window associated with widget.

widget: A font select widget. -

gimp_font_select_widget_set ()

void        gimp_font_select_widget_set     (GtkWidget *widget,
+

gimp_font_select_widget_set ()

void        gimp_font_select_widget_set     (GtkWidget *widget,
                                              const gchar *font_name);

Sets the current font for the font select widget. Calls the callback function if one was supplied in the call to diff -uraN gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpfontselect.html gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpfontselect.html --- gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpfontselect.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpfontselect.html 2004-12-28 16:59:56.000000000 +0100 @@ -46,9 +46,9 @@ gboolean gimp_fonts_close_popup (const gchar *font_callback); gboolean gimp_fonts_set_popup (const gchar *font_callback, const gchar *font_name); -

Description

+

Description

Functions providing a font selection dialog. -

Details

GimpRunFontCallback ()

void        (*GimpRunFontCallback)          (const gchar *font_name,
+

Details

GimpRunFontCallback ()

void        (*GimpRunFontCallback)          (const gchar *font_name,
                                              gboolean dialog_closing,
                                              gpointer user_data);

@@ -57,7 +57,7 @@ user_data: -


gimp_font_select_new ()

const gchar* gimp_font_select_new           (const gchar *title,
+

gimp_font_select_new ()

const gchar* gimp_font_select_new           (const gchar *title,
                                              const gchar *font_name,
                                              GimpRunFontCallback callback,
                                              gpointer data);

@@ -69,12 +69,12 @@ Returns : -


gimp_font_select_destroy ()

void        gimp_font_select_destroy        (const gchar *font_callback);

+


gimp_font_select_destroy ()

void        gimp_font_select_destroy        (const gchar *font_callback);

font_callback: -

gimp_fonts_popup ()

gboolean    gimp_fonts_popup                (const gchar *font_callback,
+

gimp_fonts_popup ()

gboolean    gimp_fonts_popup                (const gchar *font_callback,
                                              const gchar *popup_title,
                                              const gchar *initial_font);

Invokes the Gimp font selection. @@ -85,14 +85,14 @@ popup_title: Title to give the font popup window. initial_font: The name of the font to set as the first selected. Returns : TRUE on success. -


gimp_fonts_close_popup ()

gboolean    gimp_fonts_close_popup          (const gchar *font_callback);

+


gimp_fonts_close_popup ()

gboolean    gimp_fonts_close_popup          (const gchar *font_callback);

Popdown the Gimp font selection.

This procedure closes an opened font selection dialog.

font_callback: The name of the callback registered for this popup.
Returns : TRUE on success. -

gimp_fonts_set_popup ()

gboolean    gimp_fonts_set_popup            (const gchar *font_callback,
+

gimp_fonts_set_popup ()

gboolean    gimp_fonts_set_popup            (const gchar *font_callback,
                                              const gchar *font_name);

Sets the current font selection in a popup.

diff -uraN gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpfonts.html gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpfonts.html --- gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpfonts.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpfonts.html 2004-12-28 16:59:56.000000000 +0100 @@ -35,16 +35,16 @@ gboolean gimp_fonts_refresh (void); gchar** gimp_fonts_get_list (const gchar *filter, gint *num_fonts); -

Description

+

Description

-

Details

gimp_fonts_refresh ()

gboolean    gimp_fonts_refresh              (void);

+

Details

gimp_fonts_refresh ()

gboolean    gimp_fonts_refresh              (void);

Refresh current fonts. This function always succeeds.

This procedure retrieves all fonts currently in the user's font path and updates the font dialogs accordingly.

Returns : TRUE on success. -

gimp_fonts_get_list ()

gchar**     gimp_fonts_get_list             (const gchar *filter,
+

gimp_fonts_get_list ()

gchar**     gimp_fonts_get_list             (const gchar *filter,
                                              gint *num_fonts);

Retrieve the list of loaded fonts.

diff -uraN gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpgimprc.html gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpgimprc.html --- gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpgimprc.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpgimprc.html 2004-12-28 16:59:56.000000000 +0100 @@ -40,10 +40,10 @@ gboolean gimp_get_monitor_resolution (gdouble *xres, gdouble *yres); gchar* gimp_get_theme_dir (void); -

Description

+

Description

Interactions with settings from .gimprc. -

Details

gimp_gimprc_query ()

gchar*      gimp_gimprc_query               (const gchar *token);

+

Details

gimp_gimprc_query ()

gchar*      gimp_gimprc_query               (const gchar *token);

Queries the gimprc file parser for information on a specified token.

This procedure is used to locate additional information contained in @@ -58,7 +58,7 @@

token: The token to query for.
Returns : The value associated with the queried token. -

gimp_gimprc_set ()

gboolean    gimp_gimprc_set                 (const gchar *token,
+

gimp_gimprc_set ()

gboolean    gimp_gimprc_set                 (const gchar *token,
                                              const gchar *value);

Sets a gimprc token to a value and saves it in the gimprc.

@@ -71,19 +71,19 @@

token: The token to add or modify.
value: The value to set the token to.
Returns : TRUE on success. -

gimp_get_default_comment ()

gchar*      gimp_get_default_comment        (void);

+


gimp_get_default_comment ()

gchar*      gimp_get_default_comment        (void);

Get the default image comment as specified in the Preferences.

Returns a copy of the default image comment.

Returns : Default Image Comment. -

gimp_get_module_load_inhibit ()

gchar*      gimp_get_module_load_inhibit    (void);

+


gimp_get_module_load_inhibit ()

gchar*      gimp_get_module_load_inhibit    (void);

Get the list of modules which should not be loaded.

Returns a copy of the list of modules which should not be loaded.

Returns : The list of modules. -

gimp_get_monitor_resolution ()

gboolean    gimp_get_monitor_resolution     (gdouble *xres,
+

gimp_get_monitor_resolution ()

gboolean    gimp_get_monitor_resolution     (gdouble *xres,
                                              gdouble *yres);

Get the monitor resolution as specified in the Preferences.

@@ -95,7 +95,7 @@

xres: X resolution.
yres: Y resolution.
Returns : TRUE on success. -

gimp_get_theme_dir ()

gchar*      gimp_get_theme_dir              (void);

+


gimp_get_theme_dir ()

gchar*      gimp_get_theme_dir              (void);

Get the directory of the current GUI theme.

Returns a copy of the current GUI theme dir.

diff -uraN gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpgradient.html gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpgradient.html --- gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpgradient.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpgradient.html 2004-12-28 16:59:56.000000000 +0100 @@ -163,9 +163,9 @@ gint end_segment, gdouble delta, gboolean control_compress); -

Description

+

Description

Functions operating on a single gradient. -

Details

gimp_gradient_new ()

gchar*      gimp_gradient_new               (const gchar *name);

+

Details

gimp_gradient_new ()

gchar*      gimp_gradient_new               (const gchar *name);

Creates a new gradient

This procedure creates a new, uninitialized gradient

@@ -174,7 +174,7 @@ Returns : The actual new gradient name.

Since GIMP 2.2 -


gimp_gradient_duplicate ()

gchar*      gimp_gradient_duplicate         (const gchar *name);

+


gimp_gradient_duplicate ()

gchar*      gimp_gradient_duplicate         (const gchar *name);

Duplicates a gradient

This procedure creates an identical gradient by a different name

@@ -183,7 +183,7 @@ Returns : The name of the gradient's copy.

Since GIMP 2.2 -


gimp_gradient_rename ()

gchar*      gimp_gradient_rename            (const gchar *name,
+


gimp_gradient_rename ()

gchar*      gimp_gradient_rename            (const gchar *name,
                                              const gchar *new_name);

Rename a gradient

@@ -194,7 +194,7 @@ Returns : The actual new name of the gradient.

Since GIMP 2.2 -


gimp_gradient_delete ()

gboolean    gimp_gradient_delete            (const gchar *name);

+


gimp_gradient_delete ()

gboolean    gimp_gradient_delete            (const gchar *name);

Deletes a gradient

This procedure deletes a gradient

@@ -203,7 +203,7 @@ Returns : TRUE on success.

Since GIMP 2.2 -


gimp_gradient_get_uniform_samples ()

gboolean    gimp_gradient_get_uniform_samples
+


gimp_gradient_get_uniform_samples ()

gboolean    gimp_gradient_get_uniform_samples
                                             (const gchar *name,
                                              gint num_samples,
                                              gboolean reverse,
@@ -227,7 +227,7 @@
 Returns : TRUE on success.
 
 

Since GIMP 2.2 -


gimp_gradient_get_custom_samples ()

gboolean    gimp_gradient_get_custom_samples
+


gimp_gradient_get_custom_samples ()

gboolean    gimp_gradient_get_custom_samples
                                             (const gchar *name,
                                              gint num_samples,
                                              const gdouble *positions,
@@ -252,7 +252,7 @@
 Returns : TRUE on success.
 
 

Since GIMP 2.2 -


gimp_gradient_segment_get_left_color ()

gboolean    gimp_gradient_segment_get_left_color
+


gimp_gradient_segment_get_left_color ()

gboolean    gimp_gradient_segment_get_left_color
                                             (const gchar *name,
                                              gint segment,
                                              Returns : TRUE on success.
 
 

Since GIMP 2.2 -


gimp_gradient_segment_set_left_color ()

gboolean    gimp_gradient_segment_set_left_color
+


gimp_gradient_segment_set_left_color ()

gboolean    gimp_gradient_segment_set_left_color
                                             (const gchar *name,
                                              gint segment,
                                              const Returns : TRUE on success.
 
 

Since GIMP 2.2 -


gimp_gradient_segment_get_right_color ()

gboolean    gimp_gradient_segment_get_right_color
+


gimp_gradient_segment_get_right_color ()

gboolean    gimp_gradient_segment_get_right_color
                                             (const gchar *name,
                                              gint segment,
                                              Returns : TRUE on success.
 
 

Since GIMP 2.2 -


gimp_gradient_segment_set_right_color ()

gboolean    gimp_gradient_segment_set_right_color
+


gimp_gradient_segment_set_right_color ()

gboolean    gimp_gradient_segment_set_right_color
                                             (const gchar *name,
                                              gint segment,
                                              const Returns : TRUE on success.
 
 

Since GIMP 2.2 -


gimp_gradient_segment_get_left_pos ()

gboolean    gimp_gradient_segment_get_left_pos
+


gimp_gradient_segment_get_left_pos ()

gboolean    gimp_gradient_segment_get_left_pos
                                             (const gchar *name,
                                              gint segment,
                                              gdouble *pos);

@@ -348,7 +348,7 @@ Returns : TRUE on success.

Since GIMP 2.2 -


gimp_gradient_segment_set_left_pos ()

gboolean    gimp_gradient_segment_set_left_pos
+


gimp_gradient_segment_set_left_pos ()

gboolean    gimp_gradient_segment_set_left_pos
                                             (const gchar *name,
                                              gint segment,
                                              gdouble pos,
@@ -369,7 +369,7 @@
 Returns : TRUE on success.
 
 

Since GIMP 2.2 -


gimp_gradient_segment_get_middle_pos ()

gboolean    gimp_gradient_segment_get_middle_pos
+


gimp_gradient_segment_get_middle_pos ()

gboolean    gimp_gradient_segment_get_middle_pos
                                             (const gchar *name,
                                              gint segment,
                                              gdouble *pos);

@@ -385,7 +385,7 @@ Returns : TRUE on success.

Since GIMP 2.2 -


gimp_gradient_segment_set_middle_pos ()

gboolean    gimp_gradient_segment_set_middle_pos
+


gimp_gradient_segment_set_middle_pos ()

gboolean    gimp_gradient_segment_set_middle_pos
                                             (const gchar *name,
                                              gint segment,
                                              gdouble pos,
@@ -404,7 +404,7 @@
 Returns : TRUE on success.
 
 

Since GIMP 2.2 -


gimp_gradient_segment_get_right_pos ()

gboolean    gimp_gradient_segment_get_right_pos
+


gimp_gradient_segment_get_right_pos ()

gboolean    gimp_gradient_segment_get_right_pos
                                             (const gchar *name,
                                              gint segment,
                                              gdouble *pos);

@@ -420,7 +420,7 @@ Returns : TRUE on success.

Since GIMP 2.2 -


gimp_gradient_segment_set_right_pos ()

gboolean    gimp_gradient_segment_set_right_pos
+


gimp_gradient_segment_set_right_pos ()

gboolean    gimp_gradient_segment_set_right_pos
                                             (const gchar *name,
                                              gint segment,
                                              gdouble pos,
@@ -441,7 +441,7 @@
 Returns : TRUE on success.
 
 

Since GIMP 2.2 -


gimp_gradient_segment_get_blending_function ()

gboolean    gimp_gradient_segment_get_blending_function
+


gimp_gradient_segment_get_blending_function ()

gboolean    gimp_gradient_segment_get_blending_function
                                             (const gchar *name,
                                              gint segment,
                                              GimpGradientSegmentType *blend_func);

@@ -456,7 +456,7 @@ Returns : TRUE on success.

Since GIMP 2.2 -


gimp_gradient_segment_get_coloring_type ()

gboolean    gimp_gradient_segment_get_coloring_type
+


gimp_gradient_segment_get_coloring_type ()

gboolean    gimp_gradient_segment_get_coloring_type
                                             (const gchar *name,
                                              gint segment,
                                              GimpGradientSegmentColor *coloring_type);

@@ -471,7 +471,7 @@ Returns : TRUE on success.

Since GIMP 2.2 -


gimp_gradient_segment_range_set_blending_function ()

gboolean    gimp_gradient_segment_range_set_blending_function
+


gimp_gradient_segment_range_set_blending_function ()

gboolean    gimp_gradient_segment_range_set_blending_function
                                             (const gchar *name,
                                              gint start_segment,
                                              gint end_segment,
@@ -488,7 +488,7 @@
 Returns : TRUE on success.
 
 

Since GIMP 2.2 -


gimp_gradient_segment_range_set_coloring_type ()

gboolean    gimp_gradient_segment_range_set_coloring_type
+


gimp_gradient_segment_range_set_coloring_type ()

gboolean    gimp_gradient_segment_range_set_coloring_type
                                             (const gchar *name,
                                              gint start_segment,
                                              gint end_segment,
@@ -505,7 +505,7 @@
 Returns : TRUE on success.
 
 

Since GIMP 2.2 -


gimp_gradient_segment_range_flip ()

gboolean    gimp_gradient_segment_range_flip
+


gimp_gradient_segment_range_flip ()

gboolean    gimp_gradient_segment_range_flip
                                             (const gchar *name,
                                              gint start_segment,
                                              gint end_segment);

@@ -519,7 +519,7 @@ Returns : TRUE on success.

Since GIMP 2.2 -


gimp_gradient_segment_range_replicate ()

gboolean    gimp_gradient_segment_range_replicate
+


gimp_gradient_segment_range_replicate ()

gboolean    gimp_gradient_segment_range_replicate
                                             (const gchar *name,
                                              gint start_segment,
                                              gint end_segment,
@@ -537,7 +537,7 @@
 Returns : TRUE on success.
 
 

Since GIMP 2.2 -


gimp_gradient_segment_range_split_midpoint ()

gboolean    gimp_gradient_segment_range_split_midpoint
+


gimp_gradient_segment_range_split_midpoint ()

gboolean    gimp_gradient_segment_range_split_midpoint
                                             (const gchar *name,
                                              gint start_segment,
                                              gint end_segment);

@@ -552,7 +552,7 @@ Returns : TRUE on success.

Since GIMP 2.2 -


gimp_gradient_segment_range_split_uniform ()

gboolean    gimp_gradient_segment_range_split_uniform
+


gimp_gradient_segment_range_split_uniform ()

gboolean    gimp_gradient_segment_range_split_uniform
                                             (const gchar *name,
                                              gint start_segment,
                                              gint end_segment,
@@ -569,7 +569,7 @@
 Returns : TRUE on success.
 
 

Since GIMP 2.2 -


gimp_gradient_segment_range_delete ()

gboolean    gimp_gradient_segment_range_delete
+


gimp_gradient_segment_range_delete ()

gboolean    gimp_gradient_segment_range_delete
                                             (const gchar *name,
                                              gint start_segment,
                                              gint end_segment);

@@ -583,7 +583,7 @@ Returns : TRUE on success.

Since GIMP 2.2 -


gimp_gradient_segment_range_redistribute_handles ()

gboolean    gimp_gradient_segment_range_redistribute_handles
+


gimp_gradient_segment_range_redistribute_handles ()

gboolean    gimp_gradient_segment_range_redistribute_handles
                                             (const gchar *name,
                                              gint start_segment,
                                              gint end_segment);

@@ -598,7 +598,7 @@ Returns : TRUE on success.

Since GIMP 2.2 -


gimp_gradient_segment_range_blend_colors ()

gboolean    gimp_gradient_segment_range_blend_colors
+


gimp_gradient_segment_range_blend_colors ()

gboolean    gimp_gradient_segment_range_blend_colors
                                             (const gchar *name,
                                              gint start_segment,
                                              gint end_segment);

@@ -614,7 +614,7 @@ Returns : TRUE on success.

Since GIMP 2.2 -


gimp_gradient_segment_range_blend_opacity ()

gboolean    gimp_gradient_segment_range_blend_opacity
+


gimp_gradient_segment_range_blend_opacity ()

gboolean    gimp_gradient_segment_range_blend_opacity
                                             (const gchar *name,
                                              gint start_segment,
                                              gint end_segment);

@@ -630,7 +630,7 @@ Returns : TRUE on success.

Since GIMP 2.2 -


gimp_gradient_segment_range_move ()

gdouble     gimp_gradient_segment_range_move
+


gimp_gradient_segment_range_move ()

gdouble     gimp_gradient_segment_range_move
                                             (const gchar *name,
                                              gint start_segment,
                                              gint end_segment,
diff -uraN gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpgradientmenu.html gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpgradientmenu.html
--- gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpgradientmenu.html	2004-12-19 03:35:04.000000000 +0100
+++ gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpgradientmenu.html	2004-12-28 16:59:56.000000000 +0100
@@ -40,9 +40,9 @@
                                             (GtkWidget *widget);
 void        gimp_gradient_select_widget_set (GtkWidget *widget,
                                              const gchar *gradient_name);
-

Description

+

Description

A widget for selecting gradients. -

Details

gimp_gradient_select_widget_new ()

GtkWidget*  gimp_gradient_select_widget_new (const gchar *title,
+

Details

gimp_gradient_select_widget_new ()

GtkWidget*  gimp_gradient_select_widget_new (const gchar *title,
                                              const gchar *gradient_name,
                                              GimpRunGradientCallback callback,
                                              gpointer data);

@@ -56,12 +56,12 @@ data: A pointer to arbitary data to be used in the call to callback. Returns : A GtkWidget that you can use in your UI. -


gimp_gradient_select_widget_close ()

void        gimp_gradient_select_widget_close
+

gimp_gradient_select_widget_close ()

void        gimp_gradient_select_widget_close
                                             (GtkWidget *widget);

Closes the popup window associated with widget.

widget: A gradient select widget. -

gimp_gradient_select_widget_set ()

void        gimp_gradient_select_widget_set (GtkWidget *widget,
+

gimp_gradient_select_widget_set ()

void        gimp_gradient_select_widget_set (GtkWidget *widget,
                                              const gchar *gradient_name);

Sets the current gradient for the gradient select widget. Calls the callback function if one was supplied in the call to diff -uraN gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpgradientselect.html gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpgradientselect.html --- gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpgradientselect.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpgradientselect.html 2004-12-28 16:59:56.000000000 +0100 @@ -50,9 +50,9 @@ gboolean gimp_gradients_close_popup (const gchar *gradient_callback); gboolean gimp_gradients_set_popup (const gchar *gradient_callback, const gchar *gradient_name); -

Description

+

Description

Functions providing a gradient selection dialog. -

Details

GimpRunGradientCallback ()

void        (*GimpRunGradientCallback)      (const gchar *gradient_name,
+

Details

GimpRunGradientCallback ()

void        (*GimpRunGradientCallback)      (const gchar *gradient_name,
                                              gint width,
                                              const gdouble *grad_data,
                                              gboolean dialog_closing,
@@ -65,7 +65,7 @@
 user_data:
 
 
-

gimp_gradient_select_new ()

const gchar* gimp_gradient_select_new       (const gchar *title,
+

gimp_gradient_select_new ()

const gchar* gimp_gradient_select_new       (const gchar *title,
                                              const gchar *gradient_name,
                                              gint sample_size,
                                              GimpRunGradientCallback callback,
@@ -79,12 +79,12 @@
 Returns :
 
 
-

gimp_gradient_select_destroy ()

void        gimp_gradient_select_destroy    (const gchar *gradient_callback);

+


gimp_gradient_select_destroy ()

void        gimp_gradient_select_destroy    (const gchar *gradient_callback);

gradient_callback: -

gimp_gradients_popup ()

gboolean    gimp_gradients_popup            (const gchar *gradient_callback,
+

gimp_gradients_popup ()

gboolean    gimp_gradients_popup            (const gchar *gradient_callback,
                                              const gchar *popup_title,
                                              const gchar *initial_gradient,
                                              gint sample_size);

@@ -97,14 +97,14 @@ initial_gradient: The name of the pattern to set as the first selected. sample_size: Size of the sample to return when the gradient is changed. Returns : TRUE on success. -


gimp_gradients_close_popup ()

gboolean    gimp_gradients_close_popup      (const gchar *gradient_callback);

+


gimp_gradients_close_popup ()

gboolean    gimp_gradients_close_popup      (const gchar *gradient_callback);

Popdown the Gimp gradient selection.

This procedure closes an opened gradient selection dialog.

gradient_callback: The name of the callback registered for this popup.
Returns : TRUE on success. -

gimp_gradients_set_popup ()

gboolean    gimp_gradients_set_popup        (const gchar *gradient_callback,
+

gimp_gradients_set_popup ()

gboolean    gimp_gradients_set_popup        (const gchar *gradient_callback,
                                              const gchar *gradient_name);

Sets the current gradient selection in a popup.

diff -uraN gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpgradients.html gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpgradients.html --- gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpgradients.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpgradients.html 2004-12-28 16:59:56.000000000 +0100 @@ -48,17 +48,17 @@ gboolean reverse, gint *width, gdouble **grad_data); -

Description

+

Description

Operations related to gradients. -

Details

gimp_gradients_refresh ()

gboolean    gimp_gradients_refresh          (void);

+

Details

gimp_gradients_refresh ()

gboolean    gimp_gradients_refresh          (void);

Refresh current gradients. This function always succeeds.

This procedure retrieves all gradients currently in the user's gradient path and updates the gradient dialogs accordingly.

Returns : TRUE on success. -

gimp_gradients_get_list ()

gchar**     gimp_gradients_get_list         (const gchar *filter,
+

gimp_gradients_get_list ()

gchar**     gimp_gradients_get_list         (const gchar *filter,
                                              gint *num_gradients);

Retrieve the list of loaded gradients.

@@ -69,16 +69,16 @@

filter: An optional regular expression used to filter the list.
num_gradients: The number of loaded gradients.
Returns : The list of gradient names. -

gimp_gradients_get_gradient ()

gchar*      gimp_gradients_get_gradient     (void);

Warning

gimp_gradients_get_gradient is deprecated and should not be used in newly-written code.

+


gimp_gradients_get_gradient ()

gchar*      gimp_gradients_get_gradient     (void);

Warning

gimp_gradients_get_gradient is deprecated and should not be used in newly-written code.

This procedure is deprecated! Use gimp_context_get_gradient() instead.

Returns : The name of the active gradient. -

gimp_gradients_set_gradient ()

gboolean    gimp_gradients_set_gradient     (const gchar *name);

Warning

gimp_gradients_set_gradient is deprecated and should not be used in newly-written code.

+


gimp_gradients_set_gradient ()

gboolean    gimp_gradients_set_gradient     (const gchar *name);

Warning

gimp_gradients_set_gradient is deprecated and should not be used in newly-written code.

This procedure is deprecated! Use gimp_context_set_gradient() instead.

name: The name of the gradient to set.
Returns : TRUE on success. -

gimp_gradients_sample_uniform ()

gdouble*    gimp_gradients_sample_uniform   (gint num_samples,
+

gimp_gradients_sample_uniform ()

gdouble*    gimp_gradients_sample_uniform   (gint num_samples,
                                              gboolean reverse);

Warning

gimp_gradients_sample_uniform is deprecated and should not be used in newly-written code.

This procedure is deprecated! Use gimp_gradient_get_uniform_samples() instead.

@@ -86,7 +86,7 @@

num_samples: The number of samples to take.
reverse: Use the reverse gradient.
Returns : Color samples: { R1, G1, B1, A1, ..., Rn, Gn, Bn, An }. -

gimp_gradients_sample_custom ()

gdouble*    gimp_gradients_sample_custom    (gint num_samples,
+

gimp_gradients_sample_custom ()

gdouble*    gimp_gradients_sample_custom    (gint num_samples,
                                              const gdouble *positions,
                                              gboolean reverse);

Warning

gimp_gradients_sample_custom is deprecated and should not be used in newly-written code.

This procedure is deprecated! Use gimp_gradient_get_custom_samples() @@ -96,7 +96,7 @@ positions: The list of positions to sample along the gradient. reverse: Use the reverse gradient. Returns : Color samples: { R1, G1, B1, A1, ..., Rn, Gn, Bn, An }. -


gimp_gradients_get_gradient_data ()

gchar*      gimp_gradients_get_gradient_data
+

gimp_gradients_get_gradient_data ()

gchar*      gimp_gradients_get_gradient_data
                                             (const gchar *name,
                                              gint sample_size,
                                              gboolean reverse,
diff -uraN gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpguides.html gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpguides.html
--- gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpguides.html	2004-12-19 03:35:04.000000000 +0100
+++ gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpguides.html	2004-12-28 16:59:56.000000000 +0100
@@ -45,10 +45,10 @@
                                              gint32 guide_ID);
 gint        gimp_image_get_guide_position   (gint32 image_ID,
                                              gint32 guide_ID);
-

Description

+

Description

Functions for manipulating guides. -

Details

gimp_image_add_hguide ()

gint32      gimp_image_add_hguide           (gint32 image_ID,
+

Details

gimp_image_add_hguide ()

gint32      gimp_image_add_hguide           (gint32 image_ID,
                                              gint yposition);

Add a horizontal guide to an image.

@@ -59,7 +59,7 @@

image_ID: The image.
yposition: The guide's y-offset from top of image.
Returns : The new guide. -

gimp_image_add_vguide ()

gint32      gimp_image_add_vguide           (gint32 image_ID,
+

gimp_image_add_vguide ()

gint32      gimp_image_add_vguide           (gint32 image_ID,
                                              gint xposition);

Add a vertical guide to an image.

@@ -70,7 +70,7 @@

image_ID: The image.
xposition: The guide's x-offset from left of image.
Returns : The new guide. -

gimp_image_delete_guide ()

gboolean    gimp_image_delete_guide         (gint32 image_ID,
+

gimp_image_delete_guide ()

gboolean    gimp_image_delete_guide         (gint32 image_ID,
                                              gint32 guide_ID);

Deletes a guide from an image.

@@ -80,7 +80,7 @@

image_ID: The image.
guide_ID: The ID of the guide to be removed.
Returns : TRUE on success. -

gimp_image_find_next_guide ()

gint32      gimp_image_find_next_guide      (gint32 image_ID,
+

gimp_image_find_next_guide ()

gint32      gimp_image_find_next_guide      (gint32 image_ID,
                                              gint32 guide_ID);

Find next guide on an image.

@@ -93,7 +93,7 @@

image_ID: The image.
guide_ID: The ID of the current guide (0 if first invocation).
Returns : The next guide's ID. -

gimp_image_get_guide_orientation ()

GimpOrientationType gimp_image_get_guide_orientation
+

gimp_image_get_guide_orientation ()

GimpOrientationType gimp_image_get_guide_orientation
                                             (gint32 image_ID,
                                              gint32 guide_ID);

Get orientation of a guide on an image. @@ -104,7 +104,7 @@

image_ID: The image.
guide_ID: The guide.
Returns : The guide's orientation. -

gimp_image_get_guide_position ()

gint        gimp_image_get_guide_position   (gint32 image_ID,
+

gimp_image_get_guide_position ()

gint        gimp_image_get_guide_position   (gint32 image_ID,
                                              gint32 guide_ID);

Get position of a guide on an image.

diff -uraN gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimphelp.html gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimphelp.html --- gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimphelp.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimphelp.html 2004-12-28 16:59:56.000000000 +0100 @@ -34,10 +34,10 @@ gboolean gimp_help (const gchar *help_domain, const gchar *help_id); -

Description

+

Description

Loading help pages using gimp_help. -

Details

gimp_help ()

gboolean    gimp_help                       (const gchar *help_domain,
+

Details

gimp_help ()

gboolean    gimp_help                       (const gchar *help_domain,
                                              const gchar *help_id);

Load a help page.

diff -uraN gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimp.html gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimp.html --- gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimp.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimp.html 2004-12-28 16:59:56.000000000 +0100 @@ -65,7 +65,7 @@ const gchar *author, const gchar *copyright, const gchar *date, - const gchar *menu_path, + const gchar *menu_label, const gchar *image_types,

Description

+

Description

Main functions needed for building a GIMP plug-in. This header includes all other GIMP Library headers. -

Details

GIMPVAR

#define     GIMPVAR

+

Details

GIMPVAR

#define     GIMPVAR

-


gimp_version ()

gchar*      gimp_version                    (void);

+


gimp_version ()

gchar*      gimp_version                    (void);

Returns the host gimp version.

This procedure returns the version number of the currently running gimp.

Returns : The gimp version. -

gimp_major_version

extern const guint gimp_major_version;
+

gimp_major_version

extern const guint gimp_major_version;
 

-


gimp_minor_version

extern const guint gimp_minor_version;
+


gimp_minor_version

extern const guint gimp_minor_version;
 

-


gimp_micro_version

extern const guint gimp_micro_version;
+


gimp_micro_version

extern const guint gimp_micro_version;
 

-


gimp_get_data

#define gimp_get_data         gimp_procedural_db_get_data
+


gimp_get_data

#define gimp_get_data         gimp_procedural_db_get_data
 

-


gimp_get_data_size

#define gimp_get_data_size    gimp_procedural_db_get_data_size
+


gimp_get_data_size

#define gimp_get_data_size    gimp_procedural_db_get_data_size
 

Returns : -

gimp_set_data

#define gimp_set_data         gimp_procedural_db_set_data
+

gimp_set_data

#define gimp_set_data         gimp_procedural_db_set_data
 

-


GimpInitProc ()

void        (*GimpInitProc)                 (void);

+


GimpInitProc ()

void        (*GimpInitProc)                 (void);

-


GimpQuitProc ()

void        (*GimpQuitProc)                 (void);

+


GimpQuitProc ()

void        (*GimpQuitProc)                 (void);

-


GimpQueryProc ()

void        (*GimpQueryProc)                (void);

+


GimpQueryProc ()

void        (*GimpQueryProc)                (void);

-


GimpRunProc ()

void        (*GimpRunProc)                  (const gchar *name,
+


GimpRunProc ()

void        (*GimpRunProc)                  (const gchar *name,
                                              gint n_params,
                                              const GimpParam *param,
                                              gint *n_return_vals,
@@ -191,7 +191,7 @@
 return_vals:
 
 
-

struct GimpPlugInInfo

struct GimpPlugInInfo {
+

struct GimpPlugInInfo

struct GimpPlugInInfo {
 
   /* called when the gimp application initially starts up */
   GimpInitProc  init_proc;
@@ -212,7 +212,7 @@
 };
 

-


struct GimpParamDef

struct GimpParamDef {
+


struct GimpParamDef

struct GimpParamDef {
 
   GimpPDBArgType  type;
   gchar          *name;
@@ -220,7 +220,7 @@
 };
 

-


struct GimpParamRegion

struct GimpParamRegion {
+


struct GimpParamRegion

struct GimpParamRegion {
 
   gint32 x;
   gint32 y;
@@ -229,7 +229,7 @@
 };
 

-


union GimpParamData

union GimpParamData
+


union GimpParamData

union GimpParamData
 {
   gint32            d_int32;
   gint16            d_int16;
@@ -259,21 +259,21 @@
 };
 

-


struct GimpParam

struct GimpParam {
+


struct GimpParam

struct GimpParam {
 
   GimpPDBArgType type;
   GimpParamData  data;
 };
 

-


MAIN()

#define     MAIN()

+


MAIN()

#define     MAIN()

A macro that expands to the appropriate main() function for the platform being compiled for.

To use this macro, simply place a line that contains just the code MAIN() at the toplevel of your file. No semicolon should be used.

-


gimp_main ()

gint        gimp_main                       (const GimpPlugInInfo *info,
+


gimp_main ()

gint        gimp_main                       (const GimpPlugInInfo *info,
                                              gint argc,
                                              gchar *argv[]);

The main procedure that must be called with the PLUG_IN_INFO structure @@ -283,17 +283,17 @@ argc: the number of arguments argv: the arguments Returns : -


gimp_quit ()

void        gimp_quit                       (void);

+


gimp_quit ()

void        gimp_quit                       (void);

Forcefully causes the gimp library to exit and close down its connection to main gimp application. This function never returns.

-


gimp_install_procedure ()

void        gimp_install_procedure          (const gchar *name,
+


gimp_install_procedure ()

void        gimp_install_procedure          (const gchar *name,
                                              const gchar *blurb,
                                              const gchar *help,
                                              const gchar *author,
                                              const gchar *copyright,
                                              const gchar *date,
-                                             const gchar *menu_path,
+                                             const gchar *menu_label,
                                              const gchar *image_types,
                                              

-menu_path can be NULL, or a string in the form -"<Domain>/Path/To/My/Menu" -(e.g. "<Image>/Filters/Render/Useless") if you want your -procedure to be available via a menu. Allowed prefixes are -<Toolbox>, <Image>, <Load> and <Save> +menu_label defines the label that should be used for the +procedure's menu entry (use NULL if the procedure shouldn't have a +menu entry). The position where to register in the menu hierarchy +is choosen using gimp_plugin_menu_register(). This function also +still accepts the old (pre-2.2) way of registering a menu entry and +takes a string in the form "<Domain>/Path/To/My/Menu" +(e.g. "<Image>/Filters/Render/Useless").

type must be one of GIMP_PLUGIN or GIMP_EXTENSION. Note that temporary procedures must be installed using @@ -347,21 +349,21 @@ author: the procedure's author(s). copyright: the procedure's copyright. date: the date the procedure was added. -menu_path: the procedure's menu path, or NULL if the procedure has - no menu entry. +menu_label: the label to use for the procedure's menu entry, + or NULL if the procedure has no menu entry. image_types: the drawable types the procedure can handle. type: the type of the procedure. n_params: the number of parameters the procedure takes. n_return_vals: the number of return values the procedure returns. params: the procedure's parameters. return_vals: the procedure's return values. -


gimp_install_temp_proc ()

void        gimp_install_temp_proc          (const gchar *name,
+


gimp_uninstall_temp_proc ()

void        gimp_uninstall_temp_proc        (const gchar *name);

+


gimp_uninstall_temp_proc ()

void        gimp_uninstall_temp_proc        (const gchar *name);

Uninstalls a temporary procedure which has previously been installed using gimp_install_temp_proc().

name: the procedure's name -

gimp_run_procedure ()

GimpParam*  gimp_run_procedure              (const gchar *name,
+

gimp_run_procedure ()

GimpParam*  gimp_run_procedure              (const gchar *name,
                                              gint *n_return_vals,
                                              ...);

This function calls a GIMP procedure and returns its return values. @@ -427,7 +429,7 @@ n_return_vals: return location for the number of return values ...: list of procedure parameters Returns : the procedure's return values. -


gimp_run_procedure2 ()

GimpParam*  gimp_run_procedure2             (const gchar *name,
+

gimp_run_procedure2 ()

GimpParam*  gimp_run_procedure2             (const gchar *name,
                                              gint *n_return_vals,
                                              gint n_params,
                                              const GimpParam *params);

@@ -438,48 +440,48 @@ n_params: the number of parameters the procedure takes. params: the procedure's parameters array. Returns : the procedure's return values. -


gimp_destroy_params ()

void        gimp_destroy_params             (GimpParam *params,
+

gimp_destroy_params ()

void        gimp_destroy_params             (GimpParam *params,
                                              gint n_params);

Destroys a GimpParam array as returned by gimp_run_procedure()

params: the GimpParam array to destroy
n_params: the number of elements in the array -

gimp_destroy_paramdefs ()

void        gimp_destroy_paramdefs          (GimpParamDef *paramdefs,
+

gimp_destroy_paramdefs ()

void        gimp_destroy_paramdefs          (GimpParamDef *paramdefs,
                                              gint n_params);

Destroys a GimpParamDef array as returned by gimp_query_procedure()

paramdefs: the GimpParamDef array to destroy
n_params: the number of elements in the array -

gimp_tile_width ()

guint       gimp_tile_width                 (void);

+


gimp_tile_width ()

guint       gimp_tile_width                 (void);

Returns the tile_width the GIMP is using. This is a constant value given at Plug-In config time.

Returns : the tile_width -

gimp_tile_height ()

guint       gimp_tile_height                (void);

+


gimp_tile_height ()

guint       gimp_tile_height                (void);

Returns the tile_height the GIMP is using. This is a constant value given at Plug-In config time.

Returns : the tile_height -

gimp_shm_ID ()

gint        gimp_shm_ID                     (void);

+


gimp_shm_ID ()

gint        gimp_shm_ID                     (void);

Returns the shared memory ID used for passing tile data between the GIMP core and the Plug-In. This is a constant value given at Plug-In config time.

Returns : the shared memory ID -

gimp_shm_addr ()

guchar*     gimp_shm_addr                   (void);

+


gimp_shm_addr ()

guchar*     gimp_shm_addr                   (void);

Returns the address of the shared memory segment used for passing tile data between the GIMP core and the Plug-In. This is a constant value given at Plug-In config time.

Returns : the shared memory address -

gimp_gamma ()

gdouble     gimp_gamma                      (void);

+


gimp_gamma ()

gdouble     gimp_gamma                      (void);

Returns the global gamma value the GIMP and all its Plug-Ins should use. This is a constant value given at Plug-In config time.

NOTE: this feature is unimplemented.

Returns : the gamma value -

gimp_install_cmap ()

gboolean    gimp_install_cmap               (void);

+


gimp_install_cmap ()

gboolean    gimp_install_cmap               (void);

Returns whether or not the Plug-In should allocate an own colormap when running on an 8 bit display. This is a constant value given at Plug-In config time. @@ -487,7 +489,7 @@ See also: gimp_min_colors()

Returns : the install_cmap boolean -

gimp_min_colors ()

gint        gimp_min_colors                 (void);

+


gimp_min_colors ()

gint        gimp_min_colors                 (void);

Returns the minimum number of colors to use when allocating an own colormap on 8 bit displays. This is a constant value given at Plug-In config time. @@ -495,19 +497,19 @@ See also: gimp_install_cmap()

Returns : the minimum number of colors to allocate -

gimp_show_tool_tips ()

gboolean    gimp_show_tool_tips             (void);

+


gimp_show_tool_tips ()

gboolean    gimp_show_tool_tips             (void);

Returns whether or not the Plug-In should show tooltips. This is a constant value given at Plug-In config time.

Returns : the show_tool_tips boolean -

gimp_show_help_button ()

gboolean    gimp_show_help_button           (void);

+


gimp_show_help_button ()

gboolean    gimp_show_help_button           (void);

Returns whether or not GimpDialog should automatically add a help button if help_func and help_id are given.

Returns : the show_help_button boolean

Since GIMP 2.2 -


gimp_check_size ()


gimp_check_size ()

GimpCheckSize gimp_check_size               (void);

Returns the size of the checkerboard to be used in previews. @@ -516,7 +518,7 @@

Returns : the check_size value

Since GIMP 2.2 -


gimp_check_type ()


gimp_check_type ()

GimpCheckType gimp_check_type               (void);

Returns the type of the checkerboard to be used in previews. @@ -525,32 +527,32 @@

Returns : the check_type value

Since GIMP 2.2 -


gimp_default_display ()

gint32      gimp_default_display            (void);

+


gimp_default_display ()

gint32      gimp_default_display            (void);

Returns the default display ID. This corresponds to the display the running procedure's menu entry was invoked from. This is a constant value given at Plug-In config time.

Returns : the default display ID -

gimp_wm_class ()

const gchar* gimp_wm_class                  (void);

+


gimp_wm_class ()

const gchar* gimp_wm_class                  (void);

Returns the window manager class to be used for plug-in windows. This is a constant value given at Plug-In config time.

Returns : the window manager class -

gimp_display_name ()

const gchar* gimp_display_name              (void);

+


gimp_display_name ()

const gchar* gimp_display_name              (void);

Returns the display to be used for plug-in windows. This is a constant value given at Plug-In config time.

Returns : the display name -

gimp_monitor_number ()

gint        gimp_monitor_number             (void);

+


gimp_monitor_number ()

gint        gimp_monitor_number             (void);

Returns the monitor number to be used for plug-in windows. This is a constant value given at Plug-In config time.

Returns : the monitor number -

gimp_get_progname ()

const gchar* gimp_get_progname              (void);

+


gimp_get_progname ()

const gchar* gimp_get_progname              (void);

Returns the Plug-In's executable name.

Returns : the executable name -

gimp_extension_enable ()

void        gimp_extension_enable           (void);

+


gimp_extension_enable ()

void        gimp_extension_enable           (void);

Enables asnychronous processing of messages from the main GIMP application.

@@ -573,7 +575,7 @@

See also: gimp_install_procedure(), gimp_install_temp_proc()

-


gimp_extension_ack ()

void        gimp_extension_ack              (void);

+


gimp_extension_ack ()

void        gimp_extension_ack              (void);

Notify the main GIMP application that the extension has been properly initialized and is ready to run.

@@ -586,7 +588,7 @@

See also: gimp_install_procedure(), gimp_install_temp_proc()

-


gimp_extension_process ()

void        gimp_extension_process          (guint timeout);

+


gimp_extension_process ()

void        gimp_extension_process          (guint timeout);

Processes one message sent by the GIMP and returns.

Call this function in an endless loop after calling @@ -599,7 +601,7 @@ See also: gimp_install_procedure(), gimp_install_temp_proc()

timeout: The timeout (in ms) to use for the select() call. -

gimp_parasite_find ()


gimp_parasite_find ()

GimpParasite* gimp_parasite_find            (const gchar *name);

Finds the named parasite. @@ -609,7 +611,7 @@

name: The name of the parasite to find.
Returns : The found parasite. -

gimp_parasite_list ()

gboolean    gimp_parasite_list              (gint *num_parasites,
+

gimp_parasite_list ()

gboolean    gimp_parasite_list              (gint *num_parasites,
                                              gchar ***parasites);

List all parasites.

@@ -618,7 +620,7 @@

num_parasites: The number of attached parasites.
parasites: The names of currently attached parasites.
Returns : TRUE on success. -

gimp_parasite_attach ()

gboolean    gimp_parasite_attach            (

gimp_parasite_attach ()

gboolean    gimp_parasite_attach            (GimpParasite *parasite);

Add a parasite to the gimp. @@ -628,7 +630,7 @@

parasite: The parasite to attach to the gimp.
Returns : TRUE on success. -

gimp_parasite_detach ()

gboolean    gimp_parasite_detach            (const gchar *name);

+


gimp_parasite_detach ()

gboolean    gimp_parasite_detach            (const gchar *name);

Removes a parasite from the gimp.

This procedure detaches a parasite from the gimp. It has no return @@ -636,7 +638,7 @@

name: The name of the parasite to detach from the gimp.
Returns : TRUE on success. -

gimp_attach_new_parasite ()

void        gimp_attach_new_parasite        (const gchar *name,
+

gimp_attach_new_parasite ()

void        gimp_attach_new_parasite        (const gchar *name,
                                              gint flags,
                                              gint size,
                                              gconstpointer data);

diff -uraN gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpimagecombobox.html gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpimagecombobox.html --- gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpimagecombobox.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpimagecombobox.html 2004-12-28 16:59:56.000000000 +0100 @@ -36,9 +36,9 @@ gpointer data); GtkWidget* gimp_image_combo_box_new (GimpImageConstraintFunc constraint, gpointer data); -

Description

+

Description

A widget providing a popup menu of images. -

Details

GimpImageConstraintFunc ()

gboolean    (*GimpImageConstraintFunc)      (gint32 image_id,
+

Details

GimpImageConstraintFunc ()

gboolean    (*GimpImageConstraintFunc)      (gint32 image_id,
                                              gpointer data);

image_id: @@ -46,7 +46,7 @@
Returns : -

gimp_image_combo_box_new ()

GtkWidget*  gimp_image_combo_box_new        (GimpImageConstraintFunc constraint,
+

gimp_image_combo_box_new ()

GtkWidget*  gimp_image_combo_box_new        (GimpImageConstraintFunc constraint,
                                              gpointer data);

Creates a new

Description

+

Description

Operations on complete images: creation, resizing/rescaling, and operations involving multiple layers. -

Details

gimp_image_list ()

gint*       gimp_image_list                 (gint *num_images);

+

Details

gimp_image_list ()

gint*       gimp_image_list                 (gint *num_images);

Returns the list of images currently open.

This procedure returns the list of images currently open in the @@ -205,7 +205,7 @@

num_images: The number of images currently open.
Returns : The list of images currently open. -

gimp_image_new ()

gint32      gimp_image_new                  (gint width,
+


gimp_image_duplicate ()

gint32      gimp_image_duplicate            (gint32 image_ID);

+


gimp_image_duplicate ()

gint32      gimp_image_duplicate            (gint32 image_ID);

Duplicate the specified image

This procedure duplicates the specified image, copying all layers, @@ -231,7 +231,7 @@

image_ID: The image.
Returns : The new, duplicated image. -

gimp_image_delete ()

gboolean    gimp_image_delete               (gint32 image_ID);

+


gimp_image_delete ()

gboolean    gimp_image_delete               (gint32 image_ID);

Delete the specified image.

If there are no displays associated with this image it will be @@ -243,7 +243,7 @@

image_ID: The image.
Returns : TRUE on success. -

gimp_image_base_type ()


gimp_image_base_type ()

GimpImageBaseType gimp_image_base_type      (gint32 image_ID);

Get the base type of the image. @@ -253,7 +253,7 @@

image_ID: The image.
Returns : The image's base type. -

gimp_image_width ()

gint        gimp_image_width                (gint32 image_ID);

+


gimp_image_width ()

gint        gimp_image_width                (gint32 image_ID);

Return the width of the image

This procedure returns the image's width. This value is independent @@ -261,7 +261,7 @@

image_ID: The image.
Returns : The image's width. -

gimp_image_height ()

gint        gimp_image_height               (gint32 image_ID);

+


gimp_image_height ()

gint        gimp_image_height               (gint32 image_ID);

Return the height of the image

This procedure returns the image's height. This value is independent @@ -269,7 +269,7 @@

image_ID: The image.
Returns : The image's height. -

gimp_image_free_shadow ()

gboolean    gimp_image_free_shadow          (gint32 image_ID);

+


gimp_image_free_shadow ()

gboolean    gimp_image_free_shadow          (gint32 image_ID);

Free the specified image's shadow data (if it exists).

This procedure is intended as a memory saving device. If any shadow @@ -278,7 +278,7 @@

image_ID: The image.
Returns : TRUE on success. -

gimp_image_flip ()

gboolean    gimp_image_flip                 (gint32 image_ID,
+

gimp_image_flip ()

gboolean    gimp_image_flip                 (gint32 image_ID,
                                              GimpOrientationType flip_type);

Flips the image horizontally or vertically.

@@ -287,7 +287,7 @@

image_ID: The image.
flip_type: Type of flip.
Returns : TRUE on success. -

gimp_image_rotate ()

gboolean    gimp_image_rotate               (gint32 image_ID,
+

gimp_image_rotate ()

gboolean    gimp_image_rotate               (gint32 image_ID,
                                              GimpRotationType rotate_type);

Rotates the image by the specified degrees.

@@ -296,7 +296,7 @@

image_ID: The image.
rotate_type: Angle of rotation.
Returns : TRUE on success. -

gimp_image_resize ()

gboolean    gimp_image_resize               (gint32 image_ID,
+

gimp_image_resize ()

gboolean    gimp_image_resize               (gint32 image_ID,
                                              gint new_width,
                                              gint new_height,
                                              gint offx,
@@ -318,7 +318,7 @@
 offx: x offset between upper left corner of old and new images: (new - old).
 offy: y offset between upper left corner of old and new images: (new - old).
 Returns : TRUE on success.
-

gimp_image_resize_to_layers ()

gboolean    gimp_image_resize_to_layers     (gint32 image_ID);

+


gimp_image_resize_to_layers ()

gboolean    gimp_image_resize_to_layers     (gint32 image_ID);

Resize the image to fit all layers.

This procedure resizes the image to the bounding box of all layers @@ -330,7 +330,7 @@ Returns : TRUE on success.

Since GIMP 2.2 -


gimp_image_scale ()

gboolean    gimp_image_scale                (gint32 image_ID,
+


gimp_image_scale ()

gboolean    gimp_image_scale                (gint32 image_ID,
                                              gint new_width,
                                              gint new_height);

Scale the image to the specified extents. @@ -348,7 +348,7 @@ new_width: New image width. new_height: New image height. Returns : TRUE on success. -


gimp_image_crop ()

gboolean    gimp_image_crop                 (gint32 image_ID,
+

gimp_image_crop ()

gboolean    gimp_image_crop                 (gint32 image_ID,
                                              gint new_width,
                                              gint new_height,
                                              gint offx,
@@ -368,7 +368,7 @@
 offx: x offset: (0 <= offx <= (width - new_width)).
 offy: y offset: (0 <= offy <= (height - new_height)).
 Returns : TRUE on success.
-

gimp_image_get_layers ()

gint*       gimp_image_get_layers           (gint32 image_ID,
+

gimp_image_get_layers ()

gint*       gimp_image_get_layers           (gint32 image_ID,
                                              gint *num_layers);

Returns the list of layers contained in the specified image.

@@ -378,7 +378,7 @@

image_ID: The image.
num_layers: The number of layers contained in the image.
Returns : The list of layers contained in the image. -

gimp_image_get_channels ()

gint*       gimp_image_get_channels         (gint32 image_ID,
+

gimp_image_get_channels ()

gint*       gimp_image_get_channels         (gint32 image_ID,
                                              gint *num_channels);

Returns the list of channels contained in the specified image.

@@ -389,7 +389,7 @@

image_ID: The image.
num_channels: The number of channels contained in the image.
Returns : The list of channels contained in the image. -

gimp_image_get_active_drawable ()

gint32      gimp_image_get_active_drawable  (gint32 image_ID);

+


gimp_image_get_active_drawable ()

gint32      gimp_image_get_active_drawable  (gint32 image_ID);

Get the image's active drawable

This procedure returns the ID of the image's active drawable. This @@ -401,7 +401,7 @@

image_ID: The image.
Returns : The active drawable. -

gimp_image_unset_active_channel ()

gboolean    gimp_image_unset_active_channel (gint32 image_ID);

+


gimp_image_unset_active_channel ()

gboolean    gimp_image_unset_active_channel (gint32 image_ID);

Unsets the active channel in the specified image.

If an active channel exists, it is unset. There then exists no @@ -411,7 +411,7 @@

image_ID: The image.
Returns : TRUE on success. -

gimp_image_get_floating_sel ()

gint32      gimp_image_get_floating_sel     (gint32 image_ID);

+


gimp_image_get_floating_sel ()

gint32      gimp_image_get_floating_sel     (gint32 image_ID);

Return the floating selection of the image.

This procedure returns the image's floating selection, if it exists. @@ -419,7 +419,7 @@

image_ID: The image.
Returns : The image's floating selection. -

gimp_image_floating_sel_attached_to ()

gint32      gimp_image_floating_sel_attached_to
+

gimp_image_floating_sel_attached_to ()

gint32      gimp_image_floating_sel_attached_to
                                             (gint32 image_ID);

Return the drawable the floating selection is attached to.

@@ -429,7 +429,7 @@

image_ID: The image.
Returns : The drawable the floating selection is attached to. -

gimp_image_pick_color ()

gboolean    gimp_image_pick_color           (gint32 image_ID,
+

gimp_image_pick_color ()

gboolean    gimp_image_pick_color           (gint32 image_ID,
                                              gint32 drawable_ID,
                                              gdouble x,
                                              gdouble y,
@@ -463,7 +463,7 @@
 average_radius: The radius of pixels to average.
 color: The return color.
 Returns : TRUE on success.
-

gimp_image_pick_correlate_layer ()

gint32      gimp_image_pick_correlate_layer (gint32 image_ID,
+

gimp_image_pick_correlate_layer ()

gint32      gimp_image_pick_correlate_layer (gint32 image_ID,
                                              gint x,
                                              gint y);

Find the layer visible at the specified coordinates. @@ -478,7 +478,7 @@ x: The x coordinate for the pick. y: The y coordinate for the pick. Returns : The layer found at the specified coordinates. -


gimp_image_add_layer ()

gboolean    gimp_image_add_layer            (gint32 image_ID,
+

gimp_image_add_layer ()

gboolean    gimp_image_add_layer            (gint32 image_ID,
                                              gint32 layer_ID,
                                              gint position);

Add the specified layer to the image. @@ -493,7 +493,7 @@ layer_ID: The layer. position: The layer position. Returns : TRUE on success. -


gimp_image_remove_layer ()

gboolean    gimp_image_remove_layer         (gint32 image_ID,
+

gimp_image_remove_layer ()

gboolean    gimp_image_remove_layer         (gint32 image_ID,
                                              gint32 layer_ID);

Remove the specified layer from the image.

@@ -506,7 +506,7 @@

image_ID: The image.
layer_ID: The layer.
Returns : TRUE on success. -

gimp_image_raise_layer ()

gboolean    gimp_image_raise_layer          (gint32 image_ID,
+

gimp_image_raise_layer ()

gboolean    gimp_image_raise_layer          (gint32 image_ID,
                                              gint32 layer_ID);

Raise the specified layer in the image's layer stack

@@ -517,7 +517,7 @@

image_ID: The image.
layer_ID: The layer to raise.
Returns : TRUE on success. -

gimp_image_lower_layer ()

gboolean    gimp_image_lower_layer          (gint32 image_ID,
+

gimp_image_lower_layer ()

gboolean    gimp_image_lower_layer          (gint32 image_ID,
                                              gint32 layer_ID);

Lower the specified layer in the image's layer stack

@@ -528,7 +528,7 @@

image_ID: The image.
layer_ID: The layer to lower.
Returns : TRUE on success. -

gimp_image_raise_layer_to_top ()

gboolean    gimp_image_raise_layer_to_top   (gint32 image_ID,
+

gimp_image_raise_layer_to_top ()

gboolean    gimp_image_raise_layer_to_top   (gint32 image_ID,
                                              gint32 layer_ID);

Raise the specified layer in the image's layer stack to top of stack

@@ -539,7 +539,7 @@

image_ID: The image.
layer_ID: The layer to raise to top.
Returns : TRUE on success. -

gimp_image_lower_layer_to_bottom ()

gboolean    gimp_image_lower_layer_to_bottom
+

gimp_image_lower_layer_to_bottom ()

gboolean    gimp_image_lower_layer_to_bottom
                                             (gint32 image_ID,
                                              gint32 layer_ID);

Lower the specified layer in the image's layer stack to bottom of @@ -552,7 +552,7 @@

image_ID: The image.
layer_ID: The layer to lower to bottom.
Returns : TRUE on success. -

gimp_image_add_channel ()

gboolean    gimp_image_add_channel          (gint32 image_ID,
+

gimp_image_add_channel ()

gboolean    gimp_image_add_channel          (gint32 image_ID,
                                              gint32 channel_ID,
                                              gint position);

Add the specified channel to the image. @@ -565,7 +565,7 @@ channel_ID: The channel. position: The channel position. Returns : TRUE on success. -


gimp_image_remove_channel ()

gboolean    gimp_image_remove_channel       (gint32 image_ID,
+

gimp_image_remove_channel ()

gboolean    gimp_image_remove_channel       (gint32 image_ID,
                                              gint32 channel_ID);

Remove the specified channel from the image.

@@ -575,7 +575,7 @@

image_ID: The image.
channel_ID: The channel.
Returns : TRUE on success. -

gimp_image_raise_channel ()

gboolean    gimp_image_raise_channel        (gint32 image_ID,
+

gimp_image_raise_channel ()

gboolean    gimp_image_raise_channel        (gint32 image_ID,
                                              gint32 channel_ID);

Raise the specified channel in the image's channel stack

@@ -586,7 +586,7 @@

image_ID: The image.
channel_ID: The channel to raise.
Returns : TRUE on success. -

gimp_image_lower_channel ()

gboolean    gimp_image_lower_channel        (gint32 image_ID,
+

gimp_image_lower_channel ()

gboolean    gimp_image_lower_channel        (gint32 image_ID,
                                              gint32 layer_ID);

Lower the specified layer in the image's layer stack

@@ -597,7 +597,7 @@

image_ID: The image.
layer_ID: The layer to lower.
Returns : TRUE on success. -

gimp_image_flatten ()

gint32      gimp_image_flatten              (gint32 image_ID);

+


gimp_image_flatten ()

gint32      gimp_image_flatten              (gint32 image_ID);

Flatten all visible layers into a single layer. Discard all invisible layers.

@@ -607,7 +607,7 @@

image_ID: The image.
Returns : The resulting layer. -

gimp_image_merge_visible_layers ()

gint32      gimp_image_merge_visible_layers (gint32 image_ID,
+

gimp_image_merge_visible_layers ()

gint32      gimp_image_merge_visible_layers (gint32 image_ID,
                                              GimpMergeType merge_type);

Merge the visible image layers into one.

@@ -621,7 +621,7 @@

image_ID: The image.
merge_type: The type of merge.
Returns : The resulting layer. -

gimp_image_merge_down ()

gint32      gimp_image_merge_down           (gint32 image_ID,
+

gimp_image_merge_down ()

gint32      gimp_image_merge_down           (gint32 image_ID,
                                              gint32 merge_layer_ID,
                                              GimpMergeType merge_type);

Merge the layer passed and the first visible layer below. @@ -638,7 +638,7 @@ merge_layer_ID: The layer to merge down from. merge_type: The type of merge. Returns : The resulting layer. -


gimp_image_clean_all ()

gboolean    gimp_image_clean_all            (gint32 image_ID);

+


gimp_image_clean_all ()

gboolean    gimp_image_clean_all            (gint32 image_ID);

Set the image dirty count to 0.

This procedure sets the specified image's dirty count to 0, allowing @@ -649,7 +649,7 @@

image_ID: The image.
Returns : TRUE on success. -

gimp_image_is_dirty ()

gboolean    gimp_image_is_dirty             (gint32 image_ID);

+


gimp_image_is_dirty ()

gboolean    gimp_image_is_dirty             (gint32 image_ID);

Checks if the image has unsaved changes.

This procedure checks the specified image's dirty count to see if it @@ -657,7 +657,7 @@

image_ID: The image.
Returns : True if the image has unsaved changes. -

gimp_image_get_active_layer ()

gint32      gimp_image_get_active_layer     (gint32 image_ID);

+


gimp_image_get_active_layer ()

gint32      gimp_image_get_active_layer     (gint32 image_ID);

Returns the specified image's active layer.

If there is an active layer, its ID will be returned, otherwise, -1. @@ -666,7 +666,7 @@

image_ID: The image.
Returns : The active layer. -

gimp_image_set_active_layer ()

gboolean    gimp_image_set_active_layer     (gint32 image_ID,
+

gimp_image_set_active_layer ()

gboolean    gimp_image_set_active_layer     (gint32 image_ID,
                                              gint32 active_layer_ID);

Sets the specified image's active layer.

@@ -678,7 +678,7 @@

image_ID: The image.
active_layer_ID: The new image active layer.
Returns : TRUE on success. -

gimp_image_get_active_channel ()

gint32      gimp_image_get_active_channel   (gint32 image_ID);

+


gimp_image_get_active_channel ()

gint32      gimp_image_get_active_channel   (gint32 image_ID);

Returns the specified image's active channel.

If there is an active channel, this will return the channel ID, @@ -686,7 +686,7 @@

image_ID: The image.
Returns : The active channel. -

gimp_image_set_active_channel ()

gboolean    gimp_image_set_active_channel   (gint32 image_ID,
+

gimp_image_set_active_channel ()

gboolean    gimp_image_set_active_channel   (gint32 image_ID,
                                              gint32 active_channel_ID);

Sets the specified image's active channel.

@@ -698,7 +698,7 @@

image_ID: The image.
active_channel_ID: The new image active channel.
Returns : TRUE on success. -

gimp_image_get_selection ()

gint32      gimp_image_get_selection        (gint32 image_ID);

+


gimp_image_get_selection ()

gint32      gimp_image_get_selection        (gint32 image_ID);

Returns the specified image's selection.

This will always return a valid ID for a selection -- which is @@ -706,7 +706,7 @@

image_ID: The image.
Returns : The selection channel. -

gimp_image_get_component_active ()

gboolean    gimp_image_get_component_active (gint32 image_ID,
+

gimp_image_get_component_active ()

gboolean    gimp_image_get_component_active (gint32 image_ID,
                                              GimpChannelType component);

Returns if the specified image's image component is active.

@@ -718,7 +718,7 @@

image_ID: The image.
component: The image component.
Returns : Component is active. -

gimp_image_set_component_active ()

gboolean    gimp_image_set_component_active (gint32 image_ID,
+

gimp_image_set_component_active ()

gboolean    gimp_image_set_component_active (gint32 image_ID,
                                              GimpChannelType component,
                                              gboolean active);

Sets if the specified image's image component is active. @@ -732,7 +732,7 @@ component: The image component. active: Component is active. Returns : TRUE on success. -


gimp_image_get_component_visible ()

gboolean    gimp_image_get_component_visible
+

gimp_image_get_component_visible ()

gboolean    gimp_image_get_component_visible
                                             (gint32 image_ID,
                                              GimpChannelType component);

Returns if the specified image's image component is visible. @@ -746,7 +746,7 @@

image_ID: The image.
component: The image component.
Returns : Component is visible. -

gimp_image_set_component_visible ()

gboolean    gimp_image_set_component_visible
+

gimp_image_set_component_visible ()

gboolean    gimp_image_set_component_visible
                                             (gint32 image_ID,
                                              GimpChannelType component,
                                              gboolean visible);

@@ -761,7 +761,7 @@ component: The image component. visible: Component is visible. Returns : TRUE on success. -


gimp_image_get_filename ()

gchar*      gimp_image_get_filename         (gint32 image_ID);

+


gimp_image_get_filename ()

gchar*      gimp_image_get_filename         (gint32 image_ID);

Returns the specified image's filename.

This procedure returns the specified image's filename in the @@ -770,7 +770,7 @@

image_ID: The image.
Returns : The filename. -

gimp_image_set_filename ()

gboolean    gimp_image_set_filename         (gint32 image_ID,
+

gimp_image_set_filename ()

gboolean    gimp_image_set_filename         (gint32 image_ID,
                                              const gchar *filename);

Sets the specified image's filename.

@@ -780,14 +780,14 @@

image_ID: The image.
filename: The new image filename.
Returns : TRUE on success. -

gimp_image_get_name ()

gchar*      gimp_image_get_name             (gint32 image_ID);

+


gimp_image_get_name ()

gchar*      gimp_image_get_name             (gint32 image_ID);

Returns the specified image's name.

This procedure returns the specified image's name.

image_ID: The image.
Returns : The name. -

gimp_image_get_resolution ()

gboolean    gimp_image_get_resolution       (gint32 image_ID,
+

gimp_image_get_resolution ()

gboolean    gimp_image_get_resolution       (gint32 image_ID,
                                              gdouble *xresolution,
                                              gdouble *yresolution);

Returns the specified image's resolution. @@ -799,7 +799,7 @@ xresolution: The resolutionin the x-axis, in dots per inch. yresolution: The resolutionin the y-axis, in dots per inch. Returns : TRUE on success. -


gimp_image_set_resolution ()

gboolean    gimp_image_set_resolution       (gint32 image_ID,
+

gimp_image_set_resolution ()

gboolean    gimp_image_set_resolution       (gint32 image_ID,
                                              gdouble xresolution,
                                              gdouble yresolution);

Sets the specified image's resolution. @@ -812,7 +812,7 @@ xresolution: The new image resolution in the x-axis, in dots per inch. yresolution: The new image resolution in the y-axis, in dots per inch. Returns : TRUE on success. -


gimp_image_get_unit ()


gimp_image_get_unit ()

GimpUnit    gimp_image_get_unit             (gint32 image_ID);

Returns the specified image's unit. @@ -824,7 +824,7 @@

image_ID: The image.
Returns : The unit. -

gimp_image_set_unit ()

gboolean    gimp_image_set_unit             (gint32 image_ID,
+

gimp_image_set_unit ()

gboolean    gimp_image_set_unit             (gint32 image_ID,
                                              GimpUnit unit);

@@ -838,7 +838,7 @@

image_ID: The image.
unit: The new image unit.
Returns : TRUE on success. -

gimp_image_set_tattoo_state ()

gboolean    gimp_image_set_tattoo_state     (gint32 image_ID,
+

gimp_image_set_tattoo_state ()

gboolean    gimp_image_set_tattoo_state     (gint32 image_ID,
                                              gint tattoo_state);

Set the tattoo state associated with the image.

@@ -858,7 +858,7 @@

image_ID: The image.
tattoo_state: The new image tattoo_state.
Returns : TRUE on success. -

gimp_image_get_tattoo_state ()

gint        gimp_image_get_tattoo_state     (gint32 image_ID);

+


gimp_image_get_tattoo_state ()

gint        gimp_image_get_tattoo_state     (gint32 image_ID);

Returns the tattoo state associated with the image.

This procedure returns the tattoo state of the image. Use only by @@ -867,7 +867,7 @@

image_ID: The image.
Returns : The tattoo_state. -

gimp_image_get_layer_by_tattoo ()

gint32      gimp_image_get_layer_by_tattoo  (gint32 image_ID,
+

gimp_image_get_layer_by_tattoo ()

gint32      gimp_image_get_layer_by_tattoo  (gint32 image_ID,
                                              gint tattoo);

Find a layer with a given tattoo in an image.

@@ -877,7 +877,7 @@

image_ID: The image.
tattoo: The tattoo of the layer to find.
Returns : The layer with the specified tattoo. -

gimp_image_get_channel_by_tattoo ()

gint32      gimp_image_get_channel_by_tattoo
+

gimp_image_get_channel_by_tattoo ()

gint32      gimp_image_get_channel_by_tattoo
                                             (gint32 image_ID,
                                              gint tattoo);

Find a channel with a given tattoo in an image. @@ -888,14 +888,14 @@

image_ID: The image.
tattoo: The tattoo of the channel to find.
Returns : The channel with the specified tattoo. -

gimp_image_get_cmap ()

guchar*     gimp_image_get_cmap             (gint32 image_ID,
+

gimp_image_get_cmap ()

guchar*     gimp_image_get_cmap             (gint32 image_ID,
                                              gint *num_colors);

Warning

gimp_image_get_cmap is deprecated and should not be used in newly-written code.

This procedure is deprecated! Use gimp_image_get_colormap() instead.

image_ID: The image.
num_colors: Number of colors in the colormap array.
Returns : The image's colormap. -

gimp_image_set_cmap ()

gboolean    gimp_image_set_cmap             (gint32 image_ID,
+

gimp_image_set_cmap ()

gboolean    gimp_image_set_cmap             (gint32 image_ID,
                                              const guchar *cmap,
                                              gint num_colors);

Warning

gimp_image_set_cmap is deprecated and should not be used in newly-written code.

This procedure is deprecated! Use gimp_image_set_colormap() instead.

@@ -904,7 +904,7 @@ cmap: The new colormap values. num_colors: Number of colors in the colormap array. Returns : TRUE on success. -


gimp_image_get_colormap ()

guchar*     gimp_image_get_colormap         (gint32 image_ID,
+

gimp_image_get_colormap ()

guchar*     gimp_image_get_colormap         (gint32 image_ID,
                                              gint *num_colors);

Returns the image's colormap

@@ -915,7 +915,7 @@

image_ID: The image.
num_colors: Number of colors in the colormap array.
Returns : The image's colormap. -

gimp_image_set_colormap ()

gboolean    gimp_image_set_colormap         (gint32 image_ID,
+

gimp_image_set_colormap ()

gboolean    gimp_image_set_colormap         (gint32 image_ID,
                                              const guchar *colormap,
                                              gint num_colors);

Sets the entries in the image's colormap. @@ -929,7 +929,7 @@ colormap: The new colormap values. num_colors: Number of colors in the colormap array. Returns : TRUE on success. -


gimp_image_get_thumbnail_data ()

guchar*     gimp_image_get_thumbnail_data   (gint32 image_ID,
+

gimp_image_get_thumbnail_data ()

guchar*     gimp_image_get_thumbnail_data   (gint32 image_ID,
                                              gint *width,
                                              gint *height,
                                              gint *bpp);

@@ -941,7 +941,7 @@ Returns : -


gimp_image_parasite_find ()


gimp_image_parasite_find ()

GimpParasite* gimp_image_parasite_find      (gint32 image_ID,
                                              const gchar *name);

@@ -953,7 +953,7 @@

image_ID: The image.
name: The name of the parasite to find.
Returns : The found parasite. -

gimp_image_parasite_list ()

gboolean    gimp_image_parasite_list        (gint32 image_ID,
+

gimp_image_parasite_list ()

gboolean    gimp_image_parasite_list        (gint32 image_ID,
                                              gint *num_parasites,
                                              gchar ***parasites);

List all parasites. @@ -964,7 +964,7 @@ num_parasites: The number of attached parasites. parasites: The names of currently attached parasites. Returns : TRUE on success. -


gimp_image_parasite_attach ()

gboolean    gimp_image_parasite_attach      (gint32 image_ID,
+

gimp_image_parasite_attach ()

gboolean    gimp_image_parasite_attach      (gint32 image_ID,
                                              GimpParasite *parasite);

@@ -976,7 +976,7 @@

image_ID: The image.
parasite: The parasite to attach to an image.
Returns : TRUE on success. -

gimp_image_parasite_detach ()

gboolean    gimp_image_parasite_detach      (gint32 image_ID,
+

gimp_image_parasite_detach ()

gboolean    gimp_image_parasite_detach      (gint32 image_ID,
                                              const gchar *name);

Removes a parasite from an image.

@@ -986,7 +986,7 @@

image_ID: The image.
name: The name of the parasite to detach from an image.
Returns : TRUE on success. -

gimp_image_attach_new_parasite ()

void        gimp_image_attach_new_parasite  (gint32 image_ID,
+

gimp_image_attach_new_parasite ()

void        gimp_image_attach_new_parasite  (gint32 image_ID,
                                              const gchar *name,
                                              gint flags,
                                              gint size,
diff -uraN gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimplayer.html gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimplayer.html
--- gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimplayer.html	2004-12-19 03:35:04.000000000 +0100
+++ gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimplayer.html	2004-12-28 16:59:56.000000000 +0100
@@ -88,10 +88,10 @@
 gboolean    gimp_layer_set_mode             (gint32 layer_ID,
                                              GimpLayerModeEffects mode);
 gboolean    gimp_layer_is_floating_sel      (gint32 layer_ID);
-

Description

+

Description

Operations on a single layer. -

Details

gimp_layer_new ()

gint32      gimp_layer_new                  (gint32 image_ID,
+

Details

gimp_layer_new ()

gint32      gimp_layer_new                  (gint32 image_ID,
                                              const gchar *name,
                                              gint width,
                                              gint height,
@@ -117,7 +117,7 @@
 opacity: The layer opacity.
 mode: The layer combination mode.
 Returns : The newly created layer.
-

gimp_layer_copy ()

gint32      gimp_layer_copy                 (gint32 layer_ID);

+


gimp_layer_copy ()

gint32      gimp_layer_copy                 (gint32 layer_ID);

Copy a layer.

This procedure copies the specified layer and returns the copy. The @@ -128,7 +128,7 @@

layer_ID: The layer to copy.
Returns : The newly copied layer. -

gimp_layer_scale ()

gboolean    gimp_layer_scale                (gint32 layer_ID,
+

gimp_layer_scale ()

gboolean    gimp_layer_scale                (gint32 layer_ID,
                                              gint new_width,
                                              gint new_height,
                                              gboolean local_origin);

@@ -145,7 +145,7 @@ new_height: New layer height. local_origin: Use a local origin (as opposed to the image origin). Returns : TRUE on success. -


gimp_layer_resize ()

gboolean    gimp_layer_resize               (gint32 layer_ID,
+

gimp_layer_resize ()

gboolean    gimp_layer_resize               (gint32 layer_ID,
                                              gint new_width,
                                              gint new_height,
                                              gint offx,
@@ -163,7 +163,7 @@
 offx: x offset between upper left corner of old and new layers: (old - new).
 offy: y offset between upper left corner of old and new layers: (old - new).
 Returns : TRUE on success.
-

gimp_layer_resize_to_image_size ()

gboolean    gimp_layer_resize_to_image_size (gint32 layer_ID);

+


gimp_layer_resize_to_image_size ()

gboolean    gimp_layer_resize_to_image_size (gint32 layer_ID);

Resize a layer to the image size.

This procedure resizes the layer so that it's new width and height @@ -171,7 +171,7 @@

layer_ID: The layer to resize.
Returns : TRUE on success. -

gimp_layer_translate ()

gboolean    gimp_layer_translate            (gint32 layer_ID,
+

gimp_layer_translate ()

gboolean    gimp_layer_translate            (gint32 layer_ID,
                                              gint offx,
                                              gint offy);

Translate the layer by the specified offsets. @@ -187,7 +187,7 @@ offx: Offset in x direction. offy: Offset in y direction. Returns : TRUE on success. -


gimp_layer_add_alpha ()

gboolean    gimp_layer_add_alpha            (gint32 layer_ID);

+


gimp_layer_add_alpha ()

gboolean    gimp_layer_add_alpha            (gint32 layer_ID);

Add an alpha channel to the layer if it doesn't already have one.

This procedure adds an additional component to the specified layer @@ -199,7 +199,7 @@

layer_ID: The layer.
Returns : TRUE on success. -

gimp_layer_set_offsets ()

gboolean    gimp_layer_set_offsets          (gint32 layer_ID,
+

gimp_layer_set_offsets ()

gboolean    gimp_layer_set_offsets          (gint32 layer_ID,
                                              gint offx,
                                              gint offy);

Set the layer offsets. @@ -212,7 +212,7 @@ offx: Offset in x direction. offy: Offset in y direction. Returns : TRUE on success. -


gimp_layer_create_mask ()

gint32      gimp_layer_create_mask          (gint32 layer_ID,
+

gimp_layer_create_mask ()

gint32      gimp_layer_create_mask          (gint32 layer_ID,
                                              GimpAddMaskType mask_type);

Create a layer mask for the specified specified layer.

@@ -230,7 +230,7 @@

layer_ID: The layer to which to add the mask.
mask_type: The type of mask.
Returns : The newly created mask. -

gimp_layer_from_mask ()

gint32      gimp_layer_from_mask            (gint32 mask_ID);

+


gimp_layer_from_mask ()

gint32      gimp_layer_from_mask            (gint32 mask_ID);

Get the specified mask's layer.

This procedure returns the specified mask's layer , or -1 if none @@ -240,7 +240,7 @@ Returns : The mask's layer.

Since GIMP 2.2 -


gimp_layer_get_mask ()

gint32      gimp_layer_get_mask             (gint32 layer_ID);

+


gimp_layer_get_mask ()

gint32      gimp_layer_get_mask             (gint32 layer_ID);

Get the specified layer's mask if it exists.

This procedure returns the specified layer's mask, or -1 if none @@ -248,7 +248,7 @@

layer_ID: The layer.
Returns : The layer mask. -

gimp_layer_add_mask ()

gboolean    gimp_layer_add_mask             (gint32 layer_ID,
+

gimp_layer_add_mask ()

gboolean    gimp_layer_add_mask             (gint32 layer_ID,
                                              gint32 mask_ID);

Add a layer mask to the specified layer.

@@ -262,7 +262,7 @@

layer_ID: The layer to receive the mask.
mask_ID: The mask to add to the layer.
Returns : TRUE on success. -

gimp_layer_remove_mask ()

gboolean    gimp_layer_remove_mask          (gint32 layer_ID,
+

gimp_layer_remove_mask ()

gboolean    gimp_layer_remove_mask          (gint32 layer_ID,
                                              GimpMaskApplyMode mode);

Remove the specified layer mask from the layer.

@@ -272,7 +272,7 @@

layer_ID: The layer from which to remove mask.
mode: Removal mode.
Returns : TRUE on success. -

gimp_layer_new_from_drawable ()

gint32      gimp_layer_new_from_drawable    (gint32 drawable_ID,
+

gimp_layer_new_from_drawable ()

gint32      gimp_layer_new_from_drawable    (gint32 drawable_ID,
                                              gint32 dest_image_ID);

Create a new layer by copying an existing drawable.

@@ -285,7 +285,7 @@

drawable_ID: The source drawable from where the new layer is copied.
dest_image_ID: The destination image to which to add the layer.
Returns : The newly copied layer. -

gimp_layer_get_preserve_trans ()

gboolean    gimp_layer_get_preserve_trans   (gint32 layer_ID);

+


gimp_layer_get_preserve_trans ()

gboolean    gimp_layer_get_preserve_trans   (gint32 layer_ID);

Get the preserve transperancy setting of the specified layer.

This procedure returns the specified layer's preserve transperancy @@ -293,7 +293,7 @@

layer_ID: The layer.
Returns : The layer's preserve transperancy setting. -

gimp_layer_set_preserve_trans ()

gboolean    gimp_layer_set_preserve_trans   (gint32 layer_ID,
+

gimp_layer_set_preserve_trans ()

gboolean    gimp_layer_set_preserve_trans   (gint32 layer_ID,
                                              gboolean preserve_trans);

Set the preserve transperancy setting of the specified layer.

@@ -303,7 +303,7 @@

layer_ID: The layer.
preserve_trans: The new layer's preserve transperancy setting.
Returns : TRUE on success. -

gimp_layer_get_apply_mask ()

gboolean    gimp_layer_get_apply_mask       (gint32 layer_ID);

+


gimp_layer_get_apply_mask ()

gboolean    gimp_layer_get_apply_mask       (gint32 layer_ID);

Get the apply mask of the specified layer.

This procedure returns the specified layer's apply mask. If the @@ -312,7 +312,7 @@

layer_ID: The layer.
Returns : The layer apply mask. -

gimp_layer_set_apply_mask ()

gboolean    gimp_layer_set_apply_mask       (gint32 layer_ID,
+

gimp_layer_set_apply_mask ()

gboolean    gimp_layer_set_apply_mask       (gint32 layer_ID,
                                              gboolean apply_mask);

Set the apply mask of the specified layer.

@@ -323,7 +323,7 @@

layer_ID: The layer.
apply_mask: The new layer apply mask.
Returns : TRUE on success. -

gimp_layer_get_show_mask ()

gboolean    gimp_layer_get_show_mask        (gint32 layer_ID);

+


gimp_layer_get_show_mask ()

gboolean    gimp_layer_get_show_mask        (gint32 layer_ID);

Get the show mask of the specified layer.

This procedure returns the specified layer's show mask. If the value @@ -332,7 +332,7 @@

layer_ID: The layer.
Returns : The layer show mask. -

gimp_layer_set_show_mask ()

gboolean    gimp_layer_set_show_mask        (gint32 layer_ID,
+

gimp_layer_set_show_mask ()

gboolean    gimp_layer_set_show_mask        (gint32 layer_ID,
                                              gboolean show_mask);

Set the show mask of the specified layer.

@@ -344,7 +344,7 @@

layer_ID: The layer.
show_mask: The new layer show mask.
Returns : TRUE on success. -

gimp_layer_get_edit_mask ()

gboolean    gimp_layer_get_edit_mask        (gint32 layer_ID);

+


gimp_layer_get_edit_mask ()

gboolean    gimp_layer_get_edit_mask        (gint32 layer_ID);

Get the show mask of the specified layer.

This procedure returns the specified layer's show mask. If the value @@ -353,7 +353,7 @@

layer_ID: The layer.
Returns : The layer show mask. -

gimp_layer_set_edit_mask ()

gboolean    gimp_layer_set_edit_mask        (gint32 layer_ID,
+

gimp_layer_set_edit_mask ()

gboolean    gimp_layer_set_edit_mask        (gint32 layer_ID,
                                              gboolean edit_mask);

Set the show mask of the specified layer.

@@ -365,14 +365,14 @@

layer_ID: The layer.
edit_mask: The new layer show mask.
Returns : TRUE on success. -

gimp_layer_get_opacity ()

gdouble     gimp_layer_get_opacity          (gint32 layer_ID);

+


gimp_layer_get_opacity ()

gdouble     gimp_layer_get_opacity          (gint32 layer_ID);

Get the opacity of the specified layer.

This procedure returns the specified layer's opacity.

layer_ID: The layer.
Returns : The layer opacity. -

gimp_layer_set_opacity ()

gboolean    gimp_layer_set_opacity          (gint32 layer_ID,
+

gimp_layer_set_opacity ()

gboolean    gimp_layer_set_opacity          (gint32 layer_ID,
                                              gdouble opacity);

Set the opacity of the specified layer.

@@ -381,14 +381,14 @@

layer_ID: The layer.
opacity: The new layer opacity.
Returns : TRUE on success. -

gimp_layer_get_mode ()

GimpLayerModeEffects gimp_layer_get_mode    (gint32 layer_ID);

+


gimp_layer_get_mode ()

GimpLayerModeEffects gimp_layer_get_mode    (gint32 layer_ID);

Get the combination mode of the specified layer.

This procedure returns the specified layer's combination mode.

layer_ID: The layer.
Returns : The layer combination mode. -

gimp_layer_set_mode ()

gboolean    gimp_layer_set_mode             (gint32 layer_ID,
+

gimp_layer_set_mode ()

gboolean    gimp_layer_set_mode             (gint32 layer_ID,
                                              GimpLayerModeEffects mode);

Set the combination mode of the specified layer.

@@ -397,7 +397,7 @@

layer_ID: The layer.
mode: The new layer combination mode.
Returns : TRUE on success. -

gimp_layer_is_floating_sel ()

gboolean    gimp_layer_is_floating_sel      (gint32 layer_ID);

+


gimp_layer_is_floating_sel ()

gboolean    gimp_layer_is_floating_sel      (gint32 layer_ID);

Is the specified layer a floating selection?

This procedure returns whether the layer is a floating selection. diff -uraN gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpmenu.html gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpmenu.html --- gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpmenu.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpmenu.html 2004-12-28 16:59:56.000000000 +0100 @@ -53,9 +53,9 @@ GimpMenuCallback callback, gpointer data, gint32 active_drawable); -

Description

+

Description

-

Details

GimpConstraintFunc ()

gboolean    (*GimpConstraintFunc)           (gint32 image_id,
+

Details

GimpConstraintFunc ()

gboolean    (*GimpConstraintFunc)           (gint32 image_id,
                                              gint32 drawable_id,
                                              gpointer data);

Warning

GimpConstraintFunc is deprecated and should not be used in newly-written code.

@@ -65,14 +65,14 @@ Returns : -


GimpMenuCallback ()

void        (*GimpMenuCallback)             (gint32 any_id,
+

GimpMenuCallback ()

void        (*GimpMenuCallback)             (gint32 any_id,
                                              gpointer data);

Warning

GimpMenuCallback is deprecated and should not be used in newly-written code.

any_id:
data: -

gimp_image_menu_new ()

GtkWidget*  gimp_image_menu_new             (GimpConstraintFunc constraint,
+

gimp_image_menu_new ()

GtkWidget*  gimp_image_menu_new             (GimpConstraintFunc constraint,
                                              GimpMenuCallback callback,
                                              gpointer data,
                                              gint32 active_image);

Warning

gimp_image_menu_new is deprecated and should not be used in newly-written code.

@@ -84,7 +84,7 @@ Returns : -


gimp_layer_menu_new ()

GtkWidget*  gimp_layer_menu_new             (GimpConstraintFunc constraint,
+

gimp_layer_menu_new ()

GtkWidget*  gimp_layer_menu_new             (GimpConstraintFunc constraint,
                                              GimpMenuCallback callback,
                                              gpointer data,
                                              gint32 active_layer);

Warning

gimp_layer_menu_new is deprecated and should not be used in newly-written code.

@@ -96,7 +96,7 @@ Returns : -


gimp_channel_menu_new ()

GtkWidget*  gimp_channel_menu_new           (GimpConstraintFunc constraint,
+

gimp_channel_menu_new ()

GtkWidget*  gimp_channel_menu_new           (GimpConstraintFunc constraint,
                                              GimpMenuCallback callback,
                                              gpointer data,
                                              gint32 active_channel);

Warning

gimp_channel_menu_new is deprecated and should not be used in newly-written code.

@@ -108,7 +108,7 @@ Returns : -


gimp_drawable_menu_new ()

GtkWidget*  gimp_drawable_menu_new          (GimpConstraintFunc constraint,
+

gimp_drawable_menu_new ()

GtkWidget*  gimp_drawable_menu_new          (GimpConstraintFunc constraint,
                                              GimpMenuCallback callback,
                                              gpointer data,
                                              gint32 active_drawable);

Warning

gimp_drawable_menu_new is deprecated and should not be used in newly-written code.

diff -uraN gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpmessage.html gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpmessage.html --- gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpmessage.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpmessage.html 2004-12-28 16:59:56.000000000 +0100 @@ -40,10 +40,10 @@ gboolean gimp_message_set_handler (GimpMessageHandlerType handler); -

Description

+

Description

Display a dialog box with a message. -

Details

gimp_message ()

gboolean    gimp_message                    (const gchar *message);

+

Details

gimp_message ()

gboolean    gimp_message                    (const gchar *message);

Displays a dialog box with a message.

Displays a dialog box with a message. Useful for status or error @@ -51,7 +51,7 @@

message: Message to display in the dialog.
Returns : TRUE on success. -

gimp_message_get_handler ()


gimp_message_get_handler ()

GimpMessageHandlerType gimp_message_get_handler
                                             (void);

@@ -62,7 +62,7 @@ gimp was started.

Returns : The current handler type. -

gimp_message_set_handler ()

gboolean    gimp_message_set_handler        (

gimp_message_set_handler ()

gboolean    gimp_message_set_handler        (GimpMessageHandlerType handler);

Controls where warning messages are displayed. diff -uraN gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimppalette.html gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimppalette.html --- gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimppalette.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimppalette.html 2004-12-28 16:59:56.000000000 +0100 @@ -77,9 +77,9 @@ >GimpRGB *background); gboolean gimp_palette_set_default_colors (void); gboolean gimp_palette_swap_colors (void); -

Description

+

Description

Functions operating on a single palette. -

Details

gimp_palette_new ()

gchar*      gimp_palette_new                (const gchar *name);

+

Details

gimp_palette_new ()

gchar*      gimp_palette_new                (const gchar *name);

Creates a new palette

This procedure creates a new, uninitialized palette

@@ -88,7 +88,7 @@ Returns : The actual new palette name.

Since GIMP 2.2 -


gimp_palette_duplicate ()

gchar*      gimp_palette_duplicate          (const gchar *name);

+


gimp_palette_duplicate ()

gchar*      gimp_palette_duplicate          (const gchar *name);

Duplicates a palette

This procedure creates an identical palette by a different name

@@ -97,7 +97,7 @@ Returns : The name of the palette's copy.

Since GIMP 2.2 -


gimp_palette_rename ()

gchar*      gimp_palette_rename             (const gchar *name,
+


gimp_palette_rename ()

gchar*      gimp_palette_rename             (const gchar *name,
                                              const gchar *new_name);

Rename a palette

@@ -108,7 +108,7 @@ Returns : The actual new name of the palette.

Since GIMP 2.2 -


gimp_palette_delete ()

gboolean    gimp_palette_delete             (const gchar *name);

+


gimp_palette_delete ()

gboolean    gimp_palette_delete             (const gchar *name);

Deletes a palette

This procedure deletes a palette

@@ -117,7 +117,7 @@ Returns : TRUE on success.

Since GIMP 2.2 -


gimp_palette_get_info ()

gboolean    gimp_palette_get_info           (const gchar *name,
+


gimp_palette_get_info ()

gboolean    gimp_palette_get_info           (const gchar *name,
                                              gint *num_colors);

Retrieve information about the specified palette.

@@ -129,7 +129,7 @@ Returns : TRUE on success.

Since GIMP 2.2 -


gimp_palette_add_entry ()

gboolean    gimp_palette_add_entry          (const gchar *name,
+


gimp_palette_add_entry ()

gboolean    gimp_palette_add_entry          (const gchar *name,
                                              const gchar *entry_name,
                                              const Returns : TRUE on success.
 
 

Since GIMP 2.2 -


gimp_palette_delete_entry ()

gboolean    gimp_palette_delete_entry       (const gchar *name,
+


gimp_palette_delete_entry ()

gboolean    gimp_palette_delete_entry       (const gchar *name,
                                              gint entry_num);

Deletes a palette entry from the specified palette.

@@ -159,7 +159,7 @@ Returns : TRUE on success.

Since GIMP 2.2 -


gimp_palette_entry_get_color ()

gboolean    gimp_palette_entry_get_color    (const gchar *name,
+


gimp_palette_entry_get_color ()

gboolean    gimp_palette_entry_get_color    (const gchar *name,
                                              gint entry_num,
                                              Returns : TRUE on success.
 
 

Since GIMP 2.2 -


gimp_palette_entry_set_color ()

gboolean    gimp_palette_entry_set_color    (const gchar *name,
+


gimp_palette_entry_set_color ()

gboolean    gimp_palette_entry_set_color    (const gchar *name,
                                              gint entry_num,
                                              const Returns : TRUE on success.
 
 

Since GIMP 2.2 -


gimp_palette_entry_get_name ()

gboolean    gimp_palette_entry_get_name     (const gchar *name,
+


gimp_palette_entry_get_name ()

gboolean    gimp_palette_entry_get_name     (const gchar *name,
                                              gint entry_num,
                                              gchar **entry_name);

Gets the specified palette entry from the specified palette. @@ -208,7 +208,7 @@ Returns : TRUE on success.

Since GIMP 2.2 -


gimp_palette_entry_set_name ()

gboolean    gimp_palette_entry_set_name     (const gchar *name,
+


gimp_palette_entry_set_name ()

gboolean    gimp_palette_entry_set_name     (const gchar *name,
                                              gint entry_num,
                                              const gchar *entry_name);

Sets the specified palette entry in the specified palette. @@ -223,7 +223,7 @@ Returns : TRUE on success.

Since GIMP 2.2 -


gimp_palette_get_foreground ()

gboolean    gimp_palette_get_foreground     (

gimp_palette_get_foreground ()

gboolean    gimp_palette_get_foreground     (GimpRGB *foreground);

Warning

gimp_palette_get_foreground is deprecated and should not be used in newly-written code.

Get the current GIMP foreground color. @@ -234,7 +234,7 @@

foreground: The foreground color.
Returns : TRUE on success. -

gimp_palette_get_background ()

gboolean    gimp_palette_get_background     (

gimp_palette_get_background ()

gboolean    gimp_palette_get_background     (GimpRGB *background);

Warning

gimp_palette_get_background is deprecated and should not be used in newly-written code.

Get the current GIMP background color. @@ -245,7 +245,7 @@

background: The background color.
Returns : TRUE on success. -

gimp_palette_set_foreground ()

gboolean    gimp_palette_set_foreground     (const 

gimp_palette_set_foreground ()

gboolean    gimp_palette_set_foreground     (const GimpRGB *foreground);

Warning

gimp_palette_set_foreground is deprecated and should not be used in newly-written code.

Set the current GIMP foreground color. @@ -256,7 +256,7 @@

foreground: The foreground color.
Returns : TRUE on success. -

gimp_palette_set_background ()

gboolean    gimp_palette_set_background     (const 

gimp_palette_set_background ()

gboolean    gimp_palette_set_background     (const GimpRGB *background);

Warning

gimp_palette_set_background is deprecated and should not be used in newly-written code.

Set the current GIMP background color. @@ -268,7 +268,7 @@

background: The background color.
Returns : TRUE on success. -

gimp_palette_set_default_colors ()

gboolean    gimp_palette_set_default_colors (void);

Warning

gimp_palette_set_default_colors is deprecated and should not be used in newly-written code.

+


gimp_palette_set_default_colors ()

gboolean    gimp_palette_set_default_colors (void);

Warning

gimp_palette_set_default_colors is deprecated and should not be used in newly-written code.

Set the current GIMP foreground and background colors to black and white.

@@ -276,7 +276,7 @@ colors to their initial default values, black and white.

Returns : TRUE on success. -

gimp_palette_swap_colors ()

gboolean    gimp_palette_swap_colors        (void);

Warning

gimp_palette_swap_colors is deprecated and should not be used in newly-written code.

+


gimp_palette_swap_colors ()

gboolean    gimp_palette_swap_colors        (void);

Warning

gimp_palette_swap_colors is deprecated and should not be used in newly-written code.

Swap the current GIMP foreground and background colors.

This procedure swaps the current GIMP foreground and background diff -uraN gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimppalettemenu.html gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimppalettemenu.html --- gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimppalettemenu.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimppalettemenu.html 2004-12-28 16:59:56.000000000 +0100 @@ -40,9 +40,9 @@ (GtkWidget *widget); void gimp_palette_select_widget_set (GtkWidget *widget, const gchar *palette_name); -

Description

+

Description

A widget for selecting palettes. -

Details

gimp_palette_select_widget_new ()

GtkWidget*  gimp_palette_select_widget_new  (const gchar *title,
+

Details

gimp_palette_select_widget_new ()

GtkWidget*  gimp_palette_select_widget_new  (const gchar *title,
                                              const gchar *palette_name,
                                              GimpRunPaletteCallback callback,
                                              gpointer data);

@@ -58,13 +58,13 @@ Returns : A GtkWidget that you can use in your UI.

Since GIMP 2.2 -


gimp_palette_select_widget_close ()

void        gimp_palette_select_widget_close
+


gimp_palette_select_widget_close ()

void        gimp_palette_select_widget_close
                                             (GtkWidget *widget);

Closes the popup window associated with widget.

widget: A palette select widget.

Since GIMP 2.2 -


gimp_palette_select_widget_set ()

void        gimp_palette_select_widget_set  (GtkWidget *widget,
+


gimp_palette_select_widget_set ()

void        gimp_palette_select_widget_set  (GtkWidget *widget,
                                              const gchar *palette_name);

Sets the current palette for the palette select widget. Calls the callback function if one was supplied in the call to diff -uraN gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimppaletteselect.html gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimppaletteselect.html --- gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimppaletteselect.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimppaletteselect.html 2004-12-28 16:59:56.000000000 +0100 @@ -46,9 +46,9 @@ gboolean gimp_palettes_close_popup (const gchar *palette_callback); gboolean gimp_palettes_set_popup (const gchar *palette_callback, const gchar *palette_name); -

Description

+

Description

Functions providing a palette selection dialog. -

Details

GimpRunPaletteCallback ()

void        (*GimpRunPaletteCallback)       (const gchar *palette_name,
+

Details

GimpRunPaletteCallback ()

void        (*GimpRunPaletteCallback)       (const gchar *palette_name,
                                              gboolean dialog_closing,
                                              gpointer user_data);

@@ -57,7 +57,7 @@ user_data: -


gimp_palette_select_new ()

const gchar* gimp_palette_select_new        (const gchar *title,
+

gimp_palette_select_new ()

const gchar* gimp_palette_select_new        (const gchar *title,
                                              const gchar *palette_name,
                                              GimpRunPaletteCallback callback,
                                              gpointer data);

@@ -69,12 +69,12 @@ Returns : -


gimp_palette_select_destroy ()

void        gimp_palette_select_destroy     (const gchar *palette_callback);

+


gimp_palette_select_destroy ()

void        gimp_palette_select_destroy     (const gchar *palette_callback);

palette_callback: -

gimp_palettes_popup ()

gboolean    gimp_palettes_popup             (const gchar *palette_callback,
+

gimp_palettes_popup ()

gboolean    gimp_palettes_popup             (const gchar *palette_callback,
                                              const gchar *popup_title,
                                              const gchar *initial_palette);

Invokes the Gimp palette selection. @@ -85,14 +85,14 @@ popup_title: Title to give the palette popup window. initial_palette: The name of the palette to set as the first selected. Returns : TRUE on success. -


gimp_palettes_close_popup ()

gboolean    gimp_palettes_close_popup       (const gchar *palette_callback);

+


gimp_palettes_close_popup ()

gboolean    gimp_palettes_close_popup       (const gchar *palette_callback);

Popdown the Gimp palette selection.

This procedure closes an opened palette selection dialog.

palette_callback: The name of the callback registered for this popup.
Returns : TRUE on success. -

gimp_palettes_set_popup ()

gboolean    gimp_palettes_set_popup         (const gchar *palette_callback,
+

gimp_palettes_set_popup ()

gboolean    gimp_palettes_set_popup         (const gchar *palette_callback,
                                              const gchar *palette_name);

Sets the current palette selection in a popup.

diff -uraN gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimppalettes.html gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimppalettes.html --- gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimppalettes.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimppalettes.html 2004-12-28 16:59:56.000000000 +0100 @@ -43,16 +43,16 @@ GimpRGB *color); -

Description

+

Description

Operations related to palettes. -

Details

gimp_palettes_refresh ()

gboolean    gimp_palettes_refresh           (void);

+

Details

gimp_palettes_refresh ()

gboolean    gimp_palettes_refresh           (void);

Refreshes current palettes. This function always succeeds.

This procedure retrieves all palettes currently in the user's palette path and updates the palette dialogs accordingly.

Returns : TRUE on success. -

gimp_palettes_get_list ()

gchar**     gimp_palettes_get_list          (const gchar *filter,
+

gimp_palettes_get_list ()

gchar**     gimp_palettes_get_list          (const gchar *filter,
                                              gint *num_palettes);

Retrieves a list of all of the available palettes

@@ -63,18 +63,18 @@

filter: An optional regular expression used to filter the list.
num_palettes: The number of palettes in the list.
Returns : The list of palette names. -

gimp_palettes_get_palette ()

gchar*      gimp_palettes_get_palette       (gint *num_colors);

Warning

gimp_palettes_get_palette is deprecated and should not be used in newly-written code.

+


gimp_palettes_get_palette ()

gchar*      gimp_palettes_get_palette       (gint *num_colors);

Warning

gimp_palettes_get_palette is deprecated and should not be used in newly-written code.

This procedure is deprecated! Use gimp_context_get_palette() instead.

num_colors: The palette num_colors.
Returns : The palette name. -

gimp_palettes_set_palette ()

gboolean    gimp_palettes_set_palette       (const gchar *name);

Warning

gimp_palettes_set_palette is deprecated and should not be used in newly-written code.

+


gimp_palettes_set_palette ()

gboolean    gimp_palettes_set_palette       (const gchar *name);

Warning

gimp_palettes_set_palette is deprecated and should not be used in newly-written code.

This procedure is deprecated! Use gimp_context_set_palette() instead.

name: The palette name.
Returns : TRUE on success. -

gimp_palettes_get_palette_entry ()

gchar*      gimp_palettes_get_palette_entry (const gchar *name,
+

gimp_palettes_get_palette_entry ()

gchar*      gimp_palettes_get_palette_entry (const gchar *name,
                                              gint entry_num,
                                              gint *num_colors,
                                              

Description

+

Description

Operations related to paths. -

Details

gimp_path_list ()

gchar**     gimp_path_list                  (gint32 image_ID,
+

Details

gimp_path_list ()

gchar**     gimp_path_list                  (gint32 image_ID,
                                              gint *num_paths);

List the paths associated with the passed image.

@@ -88,7 +88,7 @@

image_ID: The ID of the image to list the paths from.
num_paths: The number of paths returned.
Returns : List of the paths belonging to this image. -

gimp_path_get_points ()

gint        gimp_path_get_points            (gint32 image_ID,
+

gimp_path_get_points ()

gint        gimp_path_get_points            (gint32 image_ID,
                                              const gchar *name,
                                              gint *path_closed,
                                              gint *num_path_point_details,
@@ -103,14 +103,14 @@
 num_path_point_details: The number of points returned. Each point is made up of (x, y, pnt_type) of floats.
 points_pairs: The points in the path represented as 3 floats. The first is the x pos, next is the y pos, last is the type of the pnt. The type field is dependant on the path type. For beziers (type 1 paths) the type can either be (1.0 = BEZIER_ANCHOR, 2.0 = BEZIER_CONTROL, 3.0 = BEZIER_MOVE). Note all points are returned in pixel resolution.
 Returns : The type of the path. Currently only one type (1 = Bezier) is supported.
-

gimp_path_get_current ()

gchar*      gimp_path_get_current           (gint32 image_ID);

+


gimp_path_get_current ()

gchar*      gimp_path_get_current           (gint32 image_ID);

The name of the current path. Error if no paths.

The name of the current path. Error if no paths.

image_ID: The ID of the image to get the current path from.
Returns : The name of the current path. -

gimp_path_set_current ()

gboolean    gimp_path_set_current           (gint32 image_ID,
+

gimp_path_set_current ()

gboolean    gimp_path_set_current           (gint32 image_ID,
                                              const gchar *name);

Sets the current path associated with the passed image.

@@ -119,7 +119,7 @@

image_ID: The ID of the image in which a path will become current.
name: The name of the path to make current.
Returns : TRUE on success. -

gimp_path_set_points ()

gboolean    gimp_path_set_points            (gint32 image_ID,
+

gimp_path_set_points ()

gboolean    gimp_path_set_points            (gint32 image_ID,
                                              const gchar *name,
                                              gint ptype,
                                              gint num_path_points,
@@ -134,14 +134,14 @@
 num_path_points: The number of elements in the array, i.e. the number of points in the path * 3. Each point is made up of (x, y, type) of floats. Currently only the creation of bezier curves is allowed. The type parameter must be set to (1) to indicate a BEZIER type curve. Note that for BEZIER curves, points must be given in the following order: ACCACCAC... If the path is not closed the last control point is missed off. Points consist of three control points (control/anchor/control) so for a curve that is not closed there must be at least two points passed (2 x,y pairs). If (num_path_points/3) % 3 = 0 then the path is assumed to be closed and the points are ACCACCACCACC.
 points_pairs: The points in the path represented as 3 floats. The first is the x pos, next is the y pos, last is the type of the pnt. The type field is dependant on the path type. For beziers (type 1 paths) the type can either be (1.0 = BEZIER_ANCHOR, 2.0 = BEZIER_CONTROL, 3.0= BEZIER_MOVE). Note all points are returned in pixel resolution.
 Returns : TRUE on success.
-

gimp_path_stroke_current ()

gboolean    gimp_path_stroke_current        (gint32 image_ID);

+


gimp_path_stroke_current ()

gboolean    gimp_path_stroke_current        (gint32 image_ID);

Stroke the current path in the passed image.

Stroke the current path in the passed image.

image_ID: The ID of the image which contains the path to stroke.
Returns : TRUE on success. -

gimp_path_get_point_at_dist ()

gint        gimp_path_get_point_at_dist     (gint32 image_ID,
+

gimp_path_get_point_at_dist ()

gint        gimp_path_get_point_at_dist     (gint32 image_ID,
                                              gdouble distance,
                                              gint *y_point,
                                              gdouble *slope);

@@ -159,7 +159,7 @@ y_point: The y position of the point. slope: The slope (dy / dx) at the specified point. Returns : The x position of the point. -


gimp_path_get_tattoo ()

gint        gimp_path_get_tattoo            (gint32 image_ID,
+

gimp_path_get_tattoo ()

gint        gimp_path_get_tattoo            (gint32 image_ID,
                                              const gchar *name);

Returns the tattoo associated with the name path.

@@ -171,7 +171,7 @@

image_ID: The image.
name: The name of the path whose tattoo should be obtained.
Returns : The tattoo associated with the named path. -

gimp_get_path_by_tattoo ()

gchar*      gimp_get_path_by_tattoo         (gint32 image_ID,
+

gimp_get_path_by_tattoo ()

gchar*      gimp_get_path_by_tattoo         (gint32 image_ID,
                                              gint tattoo);

Return the name of the path with the given tattoo.

@@ -184,7 +184,7 @@

image_ID: The image.
tattoo: The tattoo of the required path.
Returns : The name of the path with the specified tattoo. -

gimp_path_delete ()

gboolean    gimp_path_delete                (gint32 image_ID,
+

gimp_path_delete ()

gboolean    gimp_path_delete                (gint32 image_ID,
                                              const gchar *name);

Delete the named path associated with the passed image.

@@ -193,7 +193,7 @@

image_ID: The ID of the image to delete the path from.
name: The name of the path to delete.
Returns : TRUE on success. -

gimp_path_get_locked ()

gint        gimp_path_get_locked            (gint32 image_ID,
+

gimp_path_get_locked ()

gint        gimp_path_get_locked            (gint32 image_ID,
                                              const gchar *name);

Returns the locked status associated with the named path.

@@ -204,7 +204,7 @@

image_ID: The image.
name: The name of the path whose locked status should be obtained.
Returns : The lock status associated with the name path. 0 is returned if the path is not locked. 1 is returned if the path is locked. -

gimp_path_set_locked ()

gboolean    gimp_path_set_locked            (gint32 image_ID,
+

gimp_path_set_locked ()

gboolean    gimp_path_set_locked            (gint32 image_ID,
                                              const gchar *name,
                                              gint lockstatus);

Set the locked status associated with the named path. @@ -217,7 +217,7 @@ name: the name of the path whose locked status should be set. lockstatus: The lock status associated with the name path. 0 if the path is not locked. 1 if the path is to be locked. Returns : TRUE on success. -


gimp_path_set_tattoo ()

gboolean    gimp_path_set_tattoo            (gint32 image_ID,
+

gimp_path_set_tattoo ()

gboolean    gimp_path_set_tattoo            (gint32 image_ID,
                                              const gchar *name,
                                              gint tattovalue);

Sets the tattoo associated with the named path. @@ -232,7 +232,7 @@ name: the name of the path whose tattoo should be set. tattovalue: The tattoo associated with the name path. Only values returned from 'path_get_tattoo' should be used here. Returns : TRUE on success. -


gimp_path_to_selection ()

gboolean    gimp_path_to_selection          (gint32 image_ID,
+

gimp_path_to_selection ()

gboolean    gimp_path_to_selection          (gint32 image_ID,
                                              const gchar *name,
                                              GimpChannelOps op,
                                              gboolean antialias,
@@ -251,7 +251,7 @@
 feather_radius_x: Feather radius x.
 feather_radius_y: Feather radius y.
 Returns : TRUE on success.
-

gimp_path_import ()

gboolean    gimp_path_import                (gint32 image_ID,
+

gimp_path_import ()

gboolean    gimp_path_import                (gint32 image_ID,
                                              const gchar *filename,
                                              gboolean merge,
                                              gboolean scale);

diff -uraN gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimppattern.html gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimppattern.html --- gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimppattern.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimppattern.html 2004-12-28 16:59:56.000000000 +0100 @@ -42,9 +42,9 @@ gint *bpp, gint *num_color_bytes, guint8 **color_bytes); -

Description

+

Description

Functions operating on a single pattern. -

Details

gimp_pattern_get_info ()

gboolean    gimp_pattern_get_info           (const gchar *name,
+

Details

gimp_pattern_get_info ()

gboolean    gimp_pattern_get_info           (const gchar *name,
                                              gint *width,
                                              gint *height,
                                              gint *bpp);

@@ -60,7 +60,7 @@ Returns : TRUE on success.

Since GIMP 2.2 -


gimp_pattern_get_pixels ()

gboolean    gimp_pattern_get_pixels         (const gchar *name,
+


gimp_pattern_get_pixels ()

gboolean    gimp_pattern_get_pixels         (const gchar *name,
                                              gint *width,
                                              gint *height,
                                              gint *bpp,
diff -uraN gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimppatternmenu.html gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimppatternmenu.html
--- gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimppatternmenu.html	2004-12-19 03:35:04.000000000 +0100
+++ gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimppatternmenu.html	2004-12-28 16:59:56.000000000 +0100
@@ -40,9 +40,9 @@
                                             (GtkWidget *widget);
 void        gimp_pattern_select_widget_set  (GtkWidget *widget,
                                              const gchar *pattern_name);
-

Description

+

Description

A widget for selecting patterns. -

Details

gimp_pattern_select_widget_new ()

GtkWidget*  gimp_pattern_select_widget_new  (const gchar *title,
+

Details

gimp_pattern_select_widget_new ()

GtkWidget*  gimp_pattern_select_widget_new  (const gchar *title,
                                              const gchar *pattern_name,
                                              GimpRunPatternCallback callback,
                                              gpointer data);

@@ -55,12 +55,12 @@ callback: A function to call when the selected pattern changes. data: A pointer to arbitary data to be used in the call to callback. Returns : A GtkWidget that you can use in your UI. -


gimp_pattern_select_widget_close ()

void        gimp_pattern_select_widget_close
+

gimp_pattern_select_widget_close ()

void        gimp_pattern_select_widget_close
                                             (GtkWidget *widget);

Closes the popup window associated with widget.

widget: A pattern select widget. -

gimp_pattern_select_widget_set ()

void        gimp_pattern_select_widget_set  (GtkWidget *widget,
+

gimp_pattern_select_widget_set ()

void        gimp_pattern_select_widget_set  (GtkWidget *widget,
                                              const gchar *pattern_name);

Sets the current pattern for the pattern select widget. Calls the callback function if one was supplied in the call to diff -uraN gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimppatternselect.html gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimppatternselect.html --- gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimppatternselect.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimppatternselect.html 2004-12-28 16:59:56.000000000 +0100 @@ -50,9 +50,9 @@ gboolean gimp_patterns_close_popup (const gchar *pattern_callback); gboolean gimp_patterns_set_popup (const gchar *pattern_callback, const gchar *pattern_name); -

Description

+

Description

Functions providing a pattern selection dialog. -

Details

GimpRunPatternCallback ()

void        (*GimpRunPatternCallback)       (const gchar *pattern_name,
+

Details

GimpRunPatternCallback ()

void        (*GimpRunPatternCallback)       (const gchar *pattern_name,
                                              gint width,
                                              gint height,
                                              gint bpp,
@@ -69,7 +69,7 @@
 user_data:
 
 
-

gimp_pattern_select_new ()

const gchar* gimp_pattern_select_new        (const gchar *title,
+

gimp_pattern_select_new ()

const gchar* gimp_pattern_select_new        (const gchar *title,
                                              const gchar *pattern_name,
                                              GimpRunPatternCallback callback,
                                              gpointer data);

@@ -81,12 +81,12 @@ Returns : -


gimp_pattern_select_destroy ()

void        gimp_pattern_select_destroy     (const gchar *pattern_callback);

+


gimp_pattern_select_destroy ()

void        gimp_pattern_select_destroy     (const gchar *pattern_callback);

pattern_callback: -

gimp_patterns_popup ()

gboolean    gimp_patterns_popup             (const gchar *pattern_callback,
+

gimp_patterns_popup ()

gboolean    gimp_patterns_popup             (const gchar *pattern_callback,
                                              const gchar *popup_title,
                                              const gchar *initial_pattern);

Invokes the Gimp pattern selection. @@ -97,14 +97,14 @@ popup_title: Title to give the pattern popup window. initial_pattern: The name of the pattern to set as the first selected. Returns : TRUE on success. -


gimp_patterns_close_popup ()

gboolean    gimp_patterns_close_popup       (const gchar *pattern_callback);

+


gimp_patterns_close_popup ()

gboolean    gimp_patterns_close_popup       (const gchar *pattern_callback);

Popdown the Gimp pattern selection.

This procedure closes an opened pattern selection dialog.

pattern_callback: The name of the callback registered for this popup.
Returns : TRUE on success. -

gimp_patterns_set_popup ()

gboolean    gimp_patterns_set_popup         (const gchar *pattern_callback,
+

gimp_patterns_set_popup ()

gboolean    gimp_patterns_set_popup         (const gchar *pattern_callback,
                                              const gchar *pattern_name);

Sets the current pattern selection in a popup.

diff -uraN gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimppatterns.html gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimppatterns.html --- gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimppatterns.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimppatterns.html 2004-12-28 16:59:56.000000000 +0100 @@ -44,17 +44,17 @@ gint *mask_bpp, gint *length, guint8 **mask_data); -

Description

+

Description

Functions relating to patterns. -

Details

gimp_patterns_refresh ()

gboolean    gimp_patterns_refresh           (void);

+

Details

gimp_patterns_refresh ()

gboolean    gimp_patterns_refresh           (void);

Refresh current patterns. This function always succeeds.

This procedure retrieves all patterns currently in the user's pattern path and updates all pattern dialogs accordingly.

Returns : TRUE on success. -

gimp_patterns_get_list ()

gchar**     gimp_patterns_get_list          (const gchar *filter,
+

gimp_patterns_get_list ()

gchar**     gimp_patterns_get_list          (const gchar *filter,
                                              gint *num_patterns);

Retrieve a complete listing of the available patterns.

@@ -65,7 +65,7 @@

filter: An optional regular expression used to filter the list.
num_patterns: The number of patterns in the pattern list.
Returns : The list of pattern names. -

gimp_patterns_get_pattern ()

gchar*      gimp_patterns_get_pattern       (gint *width,
+

gimp_patterns_get_pattern ()

gchar*      gimp_patterns_get_pattern       (gint *width,
                                              gint *height);

Warning

gimp_patterns_get_pattern is deprecated and should not be used in newly-written code.

This procedure is deprecated! Use gimp_context_get_pattern() instead.

@@ -73,12 +73,12 @@

width: The pattern width.
height: The pattern height.
Returns : The pattern name. -

gimp_patterns_set_pattern ()

gboolean    gimp_patterns_set_pattern       (const gchar *name);

Warning

gimp_patterns_set_pattern is deprecated and should not be used in newly-written code.

+


gimp_patterns_set_pattern ()

gboolean    gimp_patterns_set_pattern       (const gchar *name);

Warning

gimp_patterns_set_pattern is deprecated and should not be used in newly-written code.

This procedure is deprecated! Use gimp_context_set_pattern() instead.

name: The pattern name.
Returns : TRUE on success. -

gimp_patterns_get_pattern_data ()

gchar*      gimp_patterns_get_pattern_data  (const gchar *name,
+

gimp_patterns_get_pattern_data ()

gchar*      gimp_patterns_get_pattern_data  (const gchar *name,
                                              gint *width,
                                              gint *height,
                                              gint *mask_bpp,
diff -uraN gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimppixbuf.html gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimppixbuf.html
--- gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimppixbuf.html	2004-12-19 03:35:04.000000000 +0100
+++ gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimppixbuf.html	2004-12-28 16:59:56.000000000 +0100
@@ -49,9 +49,9 @@
                                              gint dest_width,
                                              gint dest_height,
                                              GimpPixbufTransparency alpha);
-

Description

+

Description

Get a thumbnail pixbuf for a drawable or image. -

Details

enum GimpPixbufTransparency

typedef enum
+

Details

enum GimpPixbufTransparency

typedef enum
 {
   GIMP_PIXBUF_KEEP_ALPHA,
   GIMP_PIXBUF_SMALL_CHECKS,
@@ -59,7 +59,7 @@
 } GimpPixbufTransparency;
 

-


gimp_image_get_thumbnail ()

GdkPixbuf*  gimp_image_get_thumbnail        (gint32 image_ID,
+


gimp_image_get_thumbnail ()

GdkPixbuf*  gimp_image_get_thumbnail        (gint32 image_ID,
                                              gint width,
                                              gint height,
                                              GimpPixbufTransparency alpha);

@@ -73,7 +73,7 @@ Returns : a new GdkPixbuf

Since GIMP 2.2 -


gimp_drawable_get_thumbnail ()

GdkPixbuf*  gimp_drawable_get_thumbnail     (gint32 drawable_ID,
+


gimp_drawable_get_thumbnail ()

GdkPixbuf*  gimp_drawable_get_thumbnail     (gint32 drawable_ID,
                                              gint width,
                                              gint height,
                                              GimpPixbufTransparency alpha);

@@ -88,7 +88,7 @@ Returns : a new GdkPixbuf

Since GIMP 2.2 -


gimp_drawable_get_sub_thumbnail ()

GdkPixbuf*  gimp_drawable_get_sub_thumbnail (gint32 drawable_ID,
+


gimp_drawable_get_sub_thumbnail ()

GdkPixbuf*  gimp_drawable_get_sub_thumbnail (gint32 drawable_ID,
                                              gint src_x,
                                              gint src_y,
                                              gint src_width,
diff -uraN gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimppixelfetcher.html gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimppixelfetcher.html
--- gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimppixelfetcher.html	2004-12-19 03:35:04.000000000 +0100
+++ gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimppixelfetcher.html	2004-12-28 16:59:56.000000000 +0100
@@ -52,13 +52,13 @@
                                              gint y,
                                              const guchar *pixel);
 void        gimp_pixel_fetcher_destroy      (GimpPixelFetcher *pf);
-

Description

+

Description

These functions provide neighbourhood-based algorithms which get dramatically slower on region boundaries, to the point where a special treatment for neighbourhoods which are completely inside a tile is called for. It hides the special treatment of tile borders, making plug-in code more readable and shorter. -

Details

enum GimpPixelFetcherEdgeMode

typedef enum
+

Details

enum GimpPixelFetcherEdgeMode

typedef enum
 {
   GIMP_PIXEL_FETCHER_EDGE_NONE,
   GIMP_PIXEL_FETCHER_EDGE_WRAP,
@@ -68,9 +68,9 @@
 } GimpPixelFetcherEdgeMode;
 

-


struct GimpPixelFetcher

struct GimpPixelFetcher;

+


struct GimpPixelFetcher

struct GimpPixelFetcher;

-


gimp_pixel_fetcher_new ()

GimpPixelFetcher* gimp_pixel_fetcher_new    (GimpDrawable *drawable,
+


gimp_pixel_fetcher_new ()

GimpPixelFetcher* gimp_pixel_fetcher_new    (GimpDrawable *drawable,
                                              gboolean shadow);

Initialize a pixel region from the drawable.

@@ -78,14 +78,14 @@ shadow: a gboolean indicating whether the region is attached to the shadow tiles or the real drawable tiles. Returns : a pointer to a GimpPixelRgn structure (or NULL). -


gimp_pixel_fetcher_set_edge_mode ()

void        gimp_pixel_fetcher_set_edge_mode
+

gimp_pixel_fetcher_set_edge_mode ()

void        gimp_pixel_fetcher_set_edge_mode
                                             (GimpPixelFetcher *pf,
                                              GimpPixelFetcherEdgeMode mode);

Change the edage mode of a previously initialized pixel region.

pf: a pointer to a previously initialized GimpPixelFetcher.
mode: the new edge mode from GimpPixelFetcherEdgeMode. -

gimp_pixel_fetcher_set_bg_color ()

void        gimp_pixel_fetcher_set_bg_color (GimpPixelFetcher *pf,
+

gimp_pixel_fetcher_set_bg_color ()

void        gimp_pixel_fetcher_set_bg_color (GimpPixelFetcher *pf,
                                              const GimpRGB *color);

@@ -93,7 +93,7 @@

pf: a pointer to a previously initialized GimpPixelFetcher.
color: the color to be used as bg color. -

gimp_pixel_fetcher_get_pixel ()

void        gimp_pixel_fetcher_get_pixel    (GimpPixelFetcher *pf,
+

gimp_pixel_fetcher_get_pixel ()

void        gimp_pixel_fetcher_get_pixel    (GimpPixelFetcher *pf,
                                              gint x,
                                              gint y,
                                              guchar *pixel);

@@ -103,7 +103,7 @@ x: the x coordinate of the pixel to get. y: the y coordinate of the pixel to get. pixel: the memory location where to return the pixel. -


gimp_pixel_fetcher_put_pixel ()

void        gimp_pixel_fetcher_put_pixel    (GimpPixelFetcher *pf,
+

gimp_pixel_fetcher_put_pixel ()

void        gimp_pixel_fetcher_put_pixel    (GimpPixelFetcher *pf,
                                              gint x,
                                              gint y,
                                              const guchar *pixel);

@@ -113,7 +113,7 @@ x: the x coordinate of the pixel to set. y: the y coordinate of the pixel to set. pixel: the pixel to set. -


gimp_pixel_fetcher_destroy ()

void        gimp_pixel_fetcher_destroy      (GimpPixelFetcher *pf);

+


gimp_pixel_fetcher_destroy ()

void        gimp_pixel_fetcher_destroy      (GimpPixelFetcher *pf);

Close a previously initializd pixel region.

pf: a pointer to a previously initialized GimpPixelFetcher. diff -uraN gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimppixelrgn.html gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimppixelrgn.html --- gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimppixelrgn.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimppixelrgn.html 2004-12-28 16:59:56.000000000 +0100 @@ -91,11 +91,11 @@ gpointer gimp_pixel_rgns_register2 (gint nrgns, GimpPixelRgn **prs); gpointer gimp_pixel_rgns_process (gpointer pri_ptr); -

Description

+

Description

Functions for operating on pixel regions. These functions provide fast ways of accessing and modifying portions of a drawable. -

Details

struct GimpPixelRgn

struct GimpPixelRgn {
+

Details

struct GimpPixelRgn

struct GimpPixelRgn {
 
   guchar       *data;          /* pointer to region data */
   GimpDrawable *drawable;      /* pointer to drawable */
@@ -109,7 +109,7 @@
 };
 

-


gimp_pixel_rgn_init ()

void        gimp_pixel_rgn_init             (GimpPixelRgn *pr,
+


gimp_pixel_rgn_init ()

void        gimp_pixel_rgn_init             (GimpPixelRgn *pr,
                                              GimpDrawable *drawable,
                                              gint x,
                                              gint y,
@@ -119,30 +119,37 @@
                                              gint shadow);

Initialize the pixel region pointed by pr with the specified parameters.

-Note: here are some useful usecases for the dirty/shadow combination: -- dirty = FALSE, shadow = FALSE: the region will be used to read the actual - drawable datas. This is useful for save - plug-ins or for filters. -

-- dirty = FALSE, shadow = TRUE: the region will be used to read the shadow - tiles. This is used in some filter - plug-ins which operate in two passes such - as gaussian blur. The first one read the - actual drawable data and write to the - shadow tiles, and the second one read from - and write to the shadow tiles. -

-- dirty = TRUE, shadow = TRUE: the region will be used to write to the - shadow tiles. This is a very common - practice to write to the shadow tiles and - then use #gimp_drawable_merge_shadow() to - merge the changes from the shadow tiles - using the current selection as a mask. -

-- dirty = TRUE, shadow = FALSE: the region will be used to directly change - the drawable content. Don't do this, since - this could prevent the Undo-System from - working as expected.

+The dirty and shadow flags can be used as follows: +

+- dirty = FALSE, shadow = FALSE: the region will be used to read + the actual drawable datas. This + is useful for save plug-ins or for + filters. +

+- dirty = FALSE, shadow = TRUE: the region will be used to read the + shadow tiles. This is used in + some filter plug-ins which operate + in two passes such as gaussian + blur. The first pass reads the + actual drawable data and writes to + the shadow tiles, and the second + one reads from and writes to the + shadow tiles. +

+- dirty = TRUE, shadow = TRUE: the region will be used to write to + the shadow tiles. It is common + practice to write to the shadow + tiles and then use + #gimp_drawable_merge_shadow() to + merge the changes from the shadow + tiles using the current selection + as a mask. +

+- dirty = TRUE, shadow = FALSE: the region will be used to directly + change the drawable content. Don't + do this, since this could prevent + the Undo-System from working as + expected.

pr: a pointer to a GimpPixelRgn variable.
drawable: the GimpDrawable the new region will be attached to. @@ -156,7 +163,7 @@ as "dirty".
shadow: a gboolean indicating whether the region is attached to the shadow tiles or the real drawable tiles. -

gimp_pixel_rgn_resize ()

void        gimp_pixel_rgn_resize           (GimpPixelRgn *pr,
+

gimp_pixel_rgn_resize ()

void        gimp_pixel_rgn_resize           (GimpPixelRgn *pr,
                                              gint x,
                                              gint y,
                                              gint width,
@@ -170,7 +177,7 @@
           top-left corner.
 width:   the new width of the region.
 height:  the new height of the region.
-

gimp_pixel_rgn_get_pixel ()

void        gimp_pixel_rgn_get_pixel        (GimpPixelRgn *pr,
+

gimp_pixel_rgn_get_pixel ()

void        gimp_pixel_rgn_get_pixel        (GimpPixelRgn *pr,
                                              guchar *buf,
                                              gint x,
                                              gint y);

@@ -184,7 +191,7 @@ buf: a pointer to an array of guchar x: the x coordinate of the wanted pixel (relative to the drawable) y: the y coordinate of the wanted pixel (relative to the drawable) -


gimp_pixel_rgn_get_row ()

void        gimp_pixel_rgn_get_row          (GimpPixelRgn *pr,
+

gimp_pixel_rgn_get_row ()

void        gimp_pixel_rgn_get_row          (GimpPixelRgn *pr,
                                              guchar *buf,
                                              gint x,
                                              gint y,
@@ -198,7 +205,7 @@
 x:      the x coordinate of the first pixel (relative to the drawable).
 y:      the y coordinate of the first pixel (relative to the drawable).
 width:  the number of pixels to get.
-

gimp_pixel_rgn_get_col ()

void        gimp_pixel_rgn_get_col          (GimpPixelRgn *pr,
+

gimp_pixel_rgn_get_col ()

void        gimp_pixel_rgn_get_col          (GimpPixelRgn *pr,
                                              guchar *buf,
                                              gint x,
                                              gint y,
@@ -212,7 +219,7 @@
 x:      the x coordinate of the first pixel (relative to the drawable).
 y:      the y coordinate of the first pixel (relative to the drawable).
 height: the number of pixels to get.
-

gimp_pixel_rgn_get_rect ()

void        gimp_pixel_rgn_get_rect         (GimpPixelRgn *pr,
+

gimp_pixel_rgn_get_rect ()

void        gimp_pixel_rgn_get_rect         (GimpPixelRgn *pr,
                                              guchar *buf,
                                              gint x,
                                              gint y,
@@ -229,7 +236,7 @@
 y:      the y coordinate of the first pixel (relative to the drawable).
 width:  the width of the rectangle.
 height: the height of the rectangle.
-

gimp_pixel_rgn_set_pixel ()

void        gimp_pixel_rgn_set_pixel        (GimpPixelRgn *pr,
+

gimp_pixel_rgn_set_pixel ()

void        gimp_pixel_rgn_set_pixel        (GimpPixelRgn *pr,
                                              const guchar *buf,
                                              gint x,
                                              gint y);

@@ -239,7 +246,7 @@ buf: a pointer to an array of guchar. x: the x coordinate of the pixel (relative to the drawable). y: the y coordinate of the pixel (relative to the drawable). -


gimp_pixel_rgn_set_row ()

void        gimp_pixel_rgn_set_row          (GimpPixelRgn *pr,
+

gimp_pixel_rgn_set_row ()

void        gimp_pixel_rgn_set_row          (GimpPixelRgn *pr,
                                              const guchar *buf,
                                              gint x,
                                              gint y,
@@ -253,7 +260,7 @@
 x:      the x coordinate of the first pixel (relative to the drawable).
 y:      the y coordinate of the first pixel (relative to the drawable).
 width:  the number of pixels to set.
-

gimp_pixel_rgn_set_col ()

void        gimp_pixel_rgn_set_col          (GimpPixelRgn *pr,
+

gimp_pixel_rgn_set_col ()

void        gimp_pixel_rgn_set_col          (GimpPixelRgn *pr,
                                              const guchar *buf,
                                              gint x,
                                              gint y,
@@ -267,7 +274,7 @@
 x:      the x coordinate of the first pixel (relative to the drawable).
 y:      the y coordinate of the first pixel (relative to the drawable).
 height: the number of pixels to set.
-

gimp_pixel_rgn_set_rect ()

void        gimp_pixel_rgn_set_rect         (GimpPixelRgn *pr,
+

gimp_pixel_rgn_set_rect ()

void        gimp_pixel_rgn_set_rect         (GimpPixelRgn *pr,
                                              const guchar *buf,
                                              gint x,
                                              gint y,
@@ -284,14 +291,14 @@
 y:      the y coordinate of the first pixel (relative to the drawable).
 width:  the width of the rectangle.
 height: the height of the rectangle.
-

gimp_pixel_rgns_register ()

gpointer    gimp_pixel_rgns_register        (gint nrgns,
+

gimp_pixel_rgns_register ()

gpointer    gimp_pixel_rgns_register        (gint nrgns,
                                              ...);

This is the varargs version of gimp_pixel_rgns_register2.

nrgns: the number of regions to register.
...: nrgns pointers to GimpPixelRgn.
Returns : a gpointer to a regions iterator. -

gimp_pixel_rgns_register2 ()

gpointer    gimp_pixel_rgns_register2       (gint nrgns,
+

gimp_pixel_rgns_register2 ()

gpointer    gimp_pixel_rgns_register2       (gint nrgns,
                                              GimpPixelRgn **prs);

It takes a number of initialized regions of the same size and provides a pixel region iterator the iterator can be used to iterate over the @@ -307,7 +314,7 @@

nrgns: the number of regions to register.
prs: an array of nrgns pointers to initialized GimpPixelRgn.
Returns : a gpointer to a regions iterator. -

gimp_pixel_rgns_process ()

gpointer    gimp_pixel_rgns_process         (gpointer pri_ptr);

+


gimp_pixel_rgns_process ()

gpointer    gimp_pixel_rgns_process         (gpointer pri_ptr);

This function update the regions registered previously with one of the gimp_pixel_rgns_register* functions to their next tile.

diff -uraN gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpplugin.html gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpplugin.html --- gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpplugin.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpplugin.html 2004-12-28 16:59:56.000000000 +0100 @@ -41,10 +41,10 @@ const guint8 *icon_data); gboolean gimp_plugin_menu_register (const gchar *procedure_name, const gchar *menu_path); -

Description

+

Description

Functions useful for plugins, e.g. registration and progress indicators. -

Details

gimp_plugin_domain_register ()

gboolean    gimp_plugin_domain_register     (const gchar *domain_name,
+

Details

gimp_plugin_domain_register ()

gboolean    gimp_plugin_domain_register     (const gchar *domain_name,
                                              const gchar *domain_path);

Registers a textdomain for localisation.

@@ -60,7 +60,7 @@

domain_name: The name of the textdomain (must be unique).
domain_path: The absolute path to the compiled message catalog (may be NULL).
Returns : TRUE on success. -

gimp_plugin_help_register ()

gboolean    gimp_plugin_help_register       (const gchar *domain_name,
+

gimp_plugin_help_register ()

gboolean    gimp_plugin_help_register       (const gchar *domain_name,
                                              const gchar *domain_uri);

Register a help path for a plug-in.

@@ -71,7 +71,7 @@

domain_name: The XML namespace of the plug-in's help pages.
domain_uri: The root URI of the plug-in's help pages.
Returns : TRUE on success. -

gimp_plugin_icon_register ()

gboolean    gimp_plugin_icon_register       (const gchar *procedure_name,
+

gimp_plugin_icon_register ()

gboolean    gimp_plugin_icon_register       (const gchar *procedure_name,
                                              GimpIconType icon_type,
                                              const guint8 *icon_data);

@@ -81,7 +81,7 @@ Returns : -


gimp_plugin_menu_register ()

gboolean    gimp_plugin_menu_register       (const gchar *procedure_name,
+

gimp_plugin_menu_register ()

gboolean    gimp_plugin_menu_register       (const gchar *procedure_name,
                                              const gchar *menu_path);

Register an additional menu path for a plug-in procedure.

diff -uraN gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpproceduraldb.html gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpproceduraldb.html --- gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpproceduraldb.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpproceduraldb.html 2004-12-28 16:59:56.000000000 +0100 @@ -77,10 +77,10 @@ gchar **val_desc); gint gimp_procedural_db_get_data_size (const gchar *identifier); -

Description

+

Description

Functions for querying and changing procedural database (PDB) entries. -

Details

gimp_procedural_db_temp_name ()

gchar*      gimp_procedural_db_temp_name    (void);

+

Details

gimp_procedural_db_temp_name ()

gchar*      gimp_procedural_db_temp_name    (void);

Generates a unique temporary PDB name.

This procedure generates a temporary PDB entry name that is @@ -88,7 +88,7 @@ dialogs to generate a PDB entry name.

Returns : A unique temporary name for a temporary PDB entry. -

gimp_procedural_db_proc_info ()

gboolean    gimp_procedural_db_proc_info    (const gchar *procedure,
+

gimp_procedural_db_proc_info ()

gboolean    gimp_procedural_db_proc_info    (const gchar *procedure,
                                              gchar **blurb,
                                              gchar **help,
                                              gchar **author,
@@ -122,7 +122,7 @@
 args: The input arguments.
 return_vals: The return values.
 Returns : TRUE on success.
-

gimp_procedural_db_get_data ()

gboolean    gimp_procedural_db_get_data     (const gchar *identifier,
+

gimp_procedural_db_get_data ()

gboolean    gimp_procedural_db_get_data     (const gchar *identifier,
                                              gpointer data);

Returns data associated with the specified identifier.

@@ -134,7 +134,7 @@ data: A byte array containing data. Returns : TRUE on success, FALSE if no data has been associated with the identifier -


gimp_procedural_db_set_data ()

gboolean    gimp_procedural_db_set_data     (const gchar *identifier,
+

gimp_procedural_db_set_data ()

gboolean    gimp_procedural_db_set_data     (const gchar *identifier,
                                              gpointer data,
                                              guint32 bytes);

Associates the specified identifier with the supplied data. @@ -147,7 +147,7 @@ data: A byte array containing data. bytes: The number of bytes in the data Returns : TRUE on success. -


gimp_procedural_db_dump ()

gboolean    gimp_procedural_db_dump         (const gchar *filename);

+


gimp_procedural_db_dump ()

gboolean    gimp_procedural_db_dump         (const gchar *filename);

Dumps the current contents of the procedural database

This procedure dumps the contents of the procedural database to the @@ -158,7 +158,7 @@

filename: The dump filename.
Returns : TRUE on success. -

gimp_procedural_db_query ()

gboolean    gimp_procedural_db_query        (const gchar *name,
+

gimp_procedural_db_query ()

gboolean    gimp_procedural_db_query        (const gchar *name,
                                              const gchar *blurb,
                                              const gchar *help,
                                              const gchar *author,
@@ -193,7 +193,7 @@
 num_matches: The number of matching procedures.
 procedure_names: The list of procedure names.
 Returns : TRUE on success.
-

gimp_procedural_db_proc_arg ()

gboolean    gimp_procedural_db_proc_arg     (const gchar *procedure,
+

gimp_procedural_db_proc_arg ()

gboolean    gimp_procedural_db_proc_arg     (const gchar *procedure,
                                              gint arg_num,
                                              arg_name: The name of the argument.
 arg_desc: A description of the argument.
 Returns : TRUE on success.
-

gimp_procedural_db_proc_val ()

gboolean    gimp_procedural_db_proc_val     (const gchar *procedure,
+

gimp_procedural_db_proc_val ()

gboolean    gimp_procedural_db_proc_val     (const gchar *procedure,
                                              gint val_num,
                                              val_name: The name of the return value.
 val_desc: A description of the return value.
 Returns : TRUE on success.
-

gimp_procedural_db_get_data_size ()

gint        gimp_procedural_db_get_data_size
+

gimp_procedural_db_get_data_size ()

gint        gimp_procedural_db_get_data_size
                                             (const gchar *identifier);

Returns size of data associated with the specified identifier.

diff -uraN gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpprogress.html gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpprogress.html --- gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpprogress.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpprogress.html 2004-12-28 16:59:56.000000000 +0100 @@ -49,9 +49,9 @@ gpointer user_data); gpointer gimp_progress_uninstall (const gchar *progress_callback); gboolean gimp_progress_cancel (const gchar *progress_callback); -

Description

+

Description

Functions for embedding the progress bar into a plug-in's GUI. -

Details

GimpProgressStartCallback ()

void        (*GimpProgressStartCallback)    (const gchar *message,
+

Details

GimpProgressStartCallback ()

void        (*GimpProgressStartCallback)    (const gchar *message,
                                              gboolean cancelable,
                                              gpointer user_data);

@@ -60,26 +60,26 @@ user_data: -


GimpProgressEndCallback ()

void        (*GimpProgressEndCallback)      (gpointer user_data);

+


GimpProgressEndCallback ()

void        (*GimpProgressEndCallback)      (gpointer user_data);

user_data: -

GimpProgressTextCallback ()

void        (*GimpProgressTextCallback)     (const gchar *message,
+

GimpProgressTextCallback ()

void        (*GimpProgressTextCallback)     (const gchar *message,
                                              gpointer user_data);

message:
user_data: -

GimpProgressValueCallback ()

void        (*GimpProgressValueCallback)    (gdouble percentage,
+

GimpProgressValueCallback ()

void        (*GimpProgressValueCallback)    (gdouble percentage,
                                              gpointer user_data);

percentage:
user_data: -

gimp_progress_init ()

gboolean    gimp_progress_init              (const gchar *message);

+


gimp_progress_init ()

gboolean    gimp_progress_init              (const gchar *message);

Initializes the progress bar for the current plug-in.

Initializes the progress bar for the current plug-in. It is only @@ -87,7 +87,7 @@

message: Message to use in the progress dialog.
Returns : TRUE on success. -

gimp_progress_update ()

gboolean    gimp_progress_update            (gdouble percentage);

+


gimp_progress_update ()

gboolean    gimp_progress_update            (gdouble percentage);

Updates the progress bar for the current plug-in.

Updates the progress bar for the current plug-in. It is only valid @@ -95,7 +95,7 @@

percentage: Percentage of progress completed which must be between 0.0 and 1.0.
Returns : TRUE on success. -

gimp_progress_install ()

const gchar* gimp_progress_install          (GimpProgressStartCallback start_callback,
+

gimp_progress_install ()

const gchar* gimp_progress_install          (GimpProgressStartCallback start_callback,
                                              GimpProgressEndCallback end_callback,
                                              GimpProgressTextCallback text_callback,
                                              GimpProgressValueCallback value_callback,
@@ -110,7 +110,7 @@
 Returns : the name of the temporary procedure that's been installed
 
 

Since GIMP 2.2 -


gimp_progress_uninstall ()

gpointer    gimp_progress_uninstall         (const gchar *progress_callback);

+


gimp_progress_uninstall ()

gpointer    gimp_progress_uninstall         (const gchar *progress_callback);

Uninstalls a temporary progress procedure that was installed using gimp_progress_install().

@@ -118,7 +118,7 @@ Returns : the user_data that was passed to gimp_progress_install().

Since GIMP 2.2 -


gimp_progress_cancel ()

gboolean    gimp_progress_cancel            (const gchar *progress_callback);

+


gimp_progress_cancel ()

gboolean    gimp_progress_cancel            (const gchar *progress_callback);

Cancels a running progress.

This function cancels the currently running progress.

diff -uraN gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpregioniterator.html gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpregioniterator.html --- gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpregioniterator.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpregioniterator.html 2004-12-28 16:59:56.000000000 +0100 @@ -76,13 +76,13 @@ GimpRunMode unused, GimpRgnFunc2 func, gpointer data); -

Description

+

Description

The GimpRgnIterator functions provide a variety of common ways to traverse a PixelRegion, using a pre-defined function pointer per pixel. -

Details

struct GimpRgnIterator

struct GimpRgnIterator;

+

Details

struct GimpRgnIterator

struct GimpRgnIterator;

-


GimpRgnFunc1 ()

void        (*GimpRgnFunc1)                 (const guchar *src,
+


GimpRgnFunc1 ()

void        (*GimpRgnFunc1)                 (const guchar *src,
                                              gint bpp,
                                              gpointer data);

@@ -91,7 +91,7 @@ data: -


GimpRgnFunc2 ()

void        (*GimpRgnFunc2)                 (const guchar *src,
+

GimpRgnFunc2 ()

void        (*GimpRgnFunc2)                 (const guchar *src,
                                              guchar *dest,
                                              gint bpp,
                                              gpointer data);

@@ -102,7 +102,7 @@ data: -


GimpRgnFuncSrc ()

void        (*GimpRgnFuncSrc)               (gint x,
+

GimpRgnFuncSrc ()

void        (*GimpRgnFuncSrc)               (gint x,
                                              gint y,
                                              const guchar *src,
                                              gint bpp,
@@ -115,7 +115,7 @@
 data:
 
 
-

GimpRgnFuncDest ()

void        (*GimpRgnFuncDest)              (gint x,
+

GimpRgnFuncDest ()

void        (*GimpRgnFuncDest)              (gint x,
                                              gint y,
                                              guchar *dest,
                                              gint bpp,
@@ -128,7 +128,7 @@
 data:
 
 
-

GimpRgnFuncSrcDest ()

void        (*GimpRgnFuncSrcDest)           (gint x,
+

GimpRgnFuncSrcDest ()

void        (*GimpRgnFuncSrcDest)           (gint x,
                                              gint y,
                                              const guchar *src,
                                              guchar *dest,
@@ -143,7 +143,7 @@
 data:
 
 
-

gimp_rgn_iterator_new ()

GimpRgnIterator* gimp_rgn_iterator_new      (GimpDrawable *drawable,
+

gimp_rgn_iterator_new ()

GimpRgnIterator* gimp_rgn_iterator_new      (GimpDrawable *drawable,
                                              GimpRunMode unused);

Creates a new GimpRgnIterator for drawable. The GimpRunMode parameter is ignored.

@@ -151,11 +151,11 @@

drawable: a GimpDrawable
unused: ignored
Returns : a newly allocated GimpRgnIterator. -

gimp_rgn_iterator_free ()

void        gimp_rgn_iterator_free          (GimpRgnIterator *iter);

+


gimp_rgn_iterator_free ()

void        gimp_rgn_iterator_free          (GimpRgnIterator *iter);

Frees the resources allocated for iter.

iter: a GimpRgnIterator -

gimp_rgn_iterator_src ()

void        gimp_rgn_iterator_src           (GimpRgnIterator *iter,
+

gimp_rgn_iterator_src ()

void        gimp_rgn_iterator_src           (GimpRgnIterator *iter,
                                              GimpRgnFuncSrc func,
                                              gpointer data);

@@ -164,7 +164,7 @@ data: -


gimp_rgn_iterator_dest ()

void        gimp_rgn_iterator_dest          (GimpRgnIterator *iter,
+

gimp_rgn_iterator_dest ()

void        gimp_rgn_iterator_dest          (GimpRgnIterator *iter,
                                              GimpRgnFuncDest func,
                                              gpointer data);

@@ -173,7 +173,7 @@ data: -


gimp_rgn_iterator_src_dest ()

void        gimp_rgn_iterator_src_dest      (GimpRgnIterator *iter,
+

gimp_rgn_iterator_src_dest ()

void        gimp_rgn_iterator_src_dest      (GimpRgnIterator *iter,
                                              GimpRgnFuncSrcDest func,
                                              gpointer data);

@@ -182,7 +182,7 @@ data: -


gimp_rgn_iterate1 ()

void        gimp_rgn_iterate1               (GimpDrawable *drawable,
+

gimp_rgn_iterate1 ()

void        gimp_rgn_iterate1               (GimpDrawable *drawable,
                                              GimpRunMode unused,
                                              GimpRgnFunc1 func,
                                              gpointer data);

@@ -193,7 +193,7 @@ data: -


gimp_rgn_iterate2 ()

void        gimp_rgn_iterate2               (GimpDrawable *drawable,
+

gimp_rgn_iterate2 ()

void        gimp_rgn_iterate2               (GimpDrawable *drawable,
                                              GimpRunMode unused,
                                              GimpRgnFunc2 func,
                                              gpointer data);

diff -uraN gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpselection.html gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpselection.html --- gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpselection.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpselection.html 2004-12-28 16:59:56.000000000 +0100 @@ -67,10 +67,10 @@ gboolean gimp_selection_layer_alpha (gint32 layer_ID); gboolean gimp_selection_combine (gint32 channel_ID, GimpChannelOps operation); -

Description

+

Description

Functions for manipulating selections. -

Details

gimp_selection_bounds ()

gboolean    gimp_selection_bounds           (gint32 image_ID,
+

Details

gimp_selection_bounds ()

gboolean    gimp_selection_bounds           (gint32 image_ID,
                                              gboolean *non_empty,
                                              gint *x1,
                                              gint *y1,
@@ -94,7 +94,7 @@
 x2: x coordinate of lower right corner of selection bounds.
 y2: y coordinate of lower right corner of selection bounds.
 Returns : TRUE on success.
-

gimp_selection_all ()

gboolean    gimp_selection_all              (gint32 image_ID);

+


gimp_selection_all ()

gboolean    gimp_selection_all              (gint32 image_ID);

Select all of the image.

This procedure sets the selection mask to completely encompass the @@ -102,7 +102,7 @@

image_ID: The image.
Returns : TRUE on success. -

gimp_selection_none ()

gboolean    gimp_selection_none             (gint32 image_ID);

+


gimp_selection_none ()

gboolean    gimp_selection_none             (gint32 image_ID);

Deselect the entire image.

This procedure deselects the entire image. Every pixel in the @@ -110,12 +110,12 @@

image_ID: The image.
Returns : TRUE on success. -

gimp_selection_clear ()

gboolean    gimp_selection_clear            (gint32 image_ID);

Warning

gimp_selection_clear is deprecated and should not be used in newly-written code.

+


gimp_selection_clear ()

gboolean    gimp_selection_clear            (gint32 image_ID);

Warning

gimp_selection_clear is deprecated and should not be used in newly-written code.

This procedure is deprecated! Use gimp_selection_none() instead.

image_ID: The image.
Returns : TRUE on success. -

gimp_selection_is_empty ()

gboolean    gimp_selection_is_empty         (gint32 image_ID);

+


gimp_selection_is_empty ()

gboolean    gimp_selection_is_empty         (gint32 image_ID);

Determine whether the selection is empty.

This procedure returns non-zero if the selection for the specified @@ -123,7 +123,7 @@

image_ID: The image.
Returns : Is the selection empty? -

gimp_selection_float ()

gint32      gimp_selection_float            (gint32 image_ID,
+

gimp_selection_float ()

gint32      gimp_selection_float            (gint32 image_ID,
                                              gint32 drawable_ID,
                                              gint offx,
                                              gint offy);

@@ -141,14 +141,14 @@ offx: x offset for translation. offy: y offset for translation. Returns : The floated layer. -


gimp_selection_load ()

gboolean    gimp_selection_load             (gint32 channel_ID);

+


gimp_selection_load ()

gboolean    gimp_selection_load             (gint32 channel_ID);

Transfer the specified channel to the selection mask.

This procedure loads the specified channel into the selection mask.

channel_ID: The channel.
Returns : TRUE on success. -

gimp_selection_save ()

gint32      gimp_selection_save             (gint32 image_ID);

+


gimp_selection_save ()

gint32      gimp_selection_save             (gint32 image_ID);

Copy the selection mask to a new channel.

This procedure copies the selection mask and stores the content in a @@ -157,7 +157,7 @@

image_ID: The image.
Returns : The new channel. -

gimp_selection_value ()

gint        gimp_selection_value            (gint32 image_ID,
+

gimp_selection_value ()

gint        gimp_selection_value            (gint32 image_ID,
                                              gint x,
                                              gint y);

Find the value of the selection at the specified coordinates. @@ -169,7 +169,7 @@ x: x coordinate of value. y: y coordinate of value. Returns : Value of the selection. -


gimp_selection_grow ()

gboolean    gimp_selection_grow             (gint32 image_ID,
+

gimp_selection_grow ()

gboolean    gimp_selection_grow             (gint32 image_ID,
                                              gint steps);

Grow the image's selection

@@ -179,7 +179,7 @@

image_ID: The image.
steps: Steps of grow (in pixels).
Returns : TRUE on success. -

gimp_selection_shrink ()

gboolean    gimp_selection_shrink           (gint32 image_ID,
+

gimp_selection_shrink ()

gboolean    gimp_selection_shrink           (gint32 image_ID,
                                              gint radius);

Shrink the image's selection

@@ -190,7 +190,7 @@

image_ID: The image.
radius: Radius of shrink (in pixels).
Returns : TRUE on success. -

gimp_selection_invert ()

gboolean    gimp_selection_invert           (gint32 image_ID);

+


gimp_selection_invert ()

gboolean    gimp_selection_invert           (gint32 image_ID);

Invert the selection mask.

This procedure inverts the selection mask. For every pixel in the @@ -198,7 +198,7 @@

image_ID: The image.
Returns : TRUE on success. -

gimp_selection_feather ()

gboolean    gimp_selection_feather          (gint32 image_ID,
+

gimp_selection_feather ()

gboolean    gimp_selection_feather          (gint32 image_ID,
                                              gdouble radius);

Feather the image's selection

@@ -208,7 +208,7 @@

image_ID: The image.
radius: Radius of feather (in pixels).
Returns : TRUE on success. -

gimp_selection_sharpen ()

gboolean    gimp_selection_sharpen          (gint32 image_ID);

+


gimp_selection_sharpen ()

gboolean    gimp_selection_sharpen          (gint32 image_ID);

Sharpen the selection mask.

This procedure sharpens the selection mask. For every pixel in the @@ -218,7 +218,7 @@

image_ID: The image.
Returns : TRUE on success. -

gimp_selection_border ()

gboolean    gimp_selection_border           (gint32 image_ID,
+

gimp_selection_border ()

gboolean    gimp_selection_border           (gint32 image_ID,
                                              gint radius);

Border the image's selection

@@ -229,7 +229,7 @@

image_ID: The image.
radius: Radius of border (in pixels).
Returns : TRUE on success. -

gimp_selection_translate ()

gboolean    gimp_selection_translate        (gint32 image_ID,
+

gimp_selection_translate ()

gboolean    gimp_selection_translate        (gint32 image_ID,
                                              gint offx,
                                              gint offy);

Translate the selection by the specified offsets. @@ -244,7 +244,7 @@ offx: x offset for translation. offy: y offset for translation. Returns : TRUE on success. -


gimp_selection_layer_alpha ()

gboolean    gimp_selection_layer_alpha      (gint32 layer_ID);

+


gimp_selection_layer_alpha ()

gboolean    gimp_selection_layer_alpha      (gint32 layer_ID);

Transfer the specified layer's alpha channel to the selection mask.

This procedure requires a layer with an alpha channel. The alpha @@ -256,7 +256,7 @@

layer_ID: Layer with alpha.
Returns : TRUE on success. -

gimp_selection_combine ()

gboolean    gimp_selection_combine          (gint32 channel_ID,
+

gimp_selection_combine ()

gboolean    gimp_selection_combine          (gint32 channel_ID,
                                              GimpChannelOps operation);

Combines the specified channel with the selection mask.

diff -uraN gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimptexttool.html gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimptexttool.html --- gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimptexttool.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimptexttool.html 2004-12-28 16:59:56.000000000 +0100 @@ -82,10 +82,10 @@ gint *height, gint *ascent, gint *descent); -

Description

+

Description

Functions for controlling the text tool. -

Details

gimp_text_fontname ()

gint32      gimp_text_fontname              (gint32 image_ID,
+

Details

gimp_text_fontname ()

gint32      gimp_text_fontname              (gint32 image_ID,
                                              gint32 drawable_ID,
                                              gdouble x,
                                              gdouble y,
@@ -120,7 +120,7 @@
 size_type: The units of specified size.
 fontname: The name of the font.
 Returns : The new text layer or -1 if no layer was created.
-

gimp_text_get_extents_fontname ()

gboolean    gimp_text_get_extents_fontname  (const gchar *text,
+

gimp_text_get_extents_fontname ()

gboolean    gimp_text_get_extents_fontname  (const gchar *text,
                                              gdouble size,
                                              GimpSizeType size_type,
                                              const gchar *fontname,
@@ -143,7 +143,7 @@
 ascent: The ascent of the specified font.
 descent: The descent of the specified font.
 Returns : TRUE on success.
-

gimp_text ()

gint32      gimp_text                       (gint32 image_ID,
+

gimp_text ()

gint32      gimp_text                       (gint32 image_ID,
                                              gint32 drawable_ID,
                                              gdouble x,
                                              gdouble y,
@@ -180,7 +180,7 @@
 registry: The font registry.
 encoding: The font encoding.
 Returns : The new text layer or -1 if no layer was created.
-

gimp_text_get_extents ()

gboolean    gimp_text_get_extents           (const gchar *text,
+

gimp_text_get_extents ()

gboolean    gimp_text_get_extents           (const gchar *text,
                                              gdouble size,
                                              GimpSizeType size_type,
                                              const gchar *foundry,
diff -uraN gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimptile.html gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimptile.html
--- gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimptile.html	2004-12-19 03:35:04.000000000 +0100
+++ gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimptile.html	2004-12-28 16:59:56.000000000 +0100
@@ -40,10 +40,10 @@
 void        gimp_tile_flush                 (GimpTile *tile);
 void        gimp_tile_cache_size            (gulong kilobytes);
 void        gimp_tile_cache_ntiles          (gulong ntiles);
-

Description

+

Description

Functions for working with tiles. -

Details

struct GimpTile

struct GimpTile {
+

Details

struct GimpTile

struct GimpTile {
 
   guint         ewidth;     /* the effective width of the tile */
   guint         eheight;    /* the effective height of the tile */
@@ -57,35 +57,35 @@
 };
 

-


gimp_tile_ref ()

void        gimp_tile_ref                   (GimpTile *tile);

+


gimp_tile_ref ()

void        gimp_tile_ref                   (GimpTile *tile);

tile: -

gimp_tile_ref_zero ()

void        gimp_tile_ref_zero              (GimpTile *tile);

+


gimp_tile_ref_zero ()

void        gimp_tile_ref_zero              (GimpTile *tile);

tile: -

gimp_tile_unref ()

void        gimp_tile_unref                 (GimpTile *tile,
+

gimp_tile_unref ()

void        gimp_tile_unref                 (GimpTile *tile,
                                              gboolean dirty);

tile:
dirty: -

gimp_tile_flush ()

void        gimp_tile_flush                 (GimpTile *tile);

+


gimp_tile_flush ()

void        gimp_tile_flush                 (GimpTile *tile);

tile: -

gimp_tile_cache_size ()

void        gimp_tile_cache_size            (gulong kilobytes);

+


gimp_tile_cache_size ()

void        gimp_tile_cache_size            (gulong kilobytes);

Sets the size of the tile cache on the plug-in side. The tile cache is used to reduce the number of tiles exchanged between the GIMP core and the plug-in. See also gimp_tile_cache_ntiles().

kilobytes: new cache size in kilobytes -

gimp_tile_cache_ntiles ()

void        gimp_tile_cache_ntiles          (gulong ntiles);

+


gimp_tile_cache_ntiles ()

void        gimp_tile_cache_ntiles          (gulong ntiles);

Sets the size of the tile cache on the plug-in side. This function is similar to gimp_tile_cache_size() but allows to specify the number of tiles directly. diff -uraN gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimptools.html gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimptools.html --- gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimptools.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimptools.html 2004-12-28 16:59:56.000000000 +0100 @@ -170,10 +170,10 @@ gdouble angle, gdouble dest_x, gdouble dest_y); -

Description

+

Description

Functions giving access to common toolbox tools. -

Details

gimp_airbrush ()

gboolean    gimp_airbrush                   (gint32 drawable_ID,
+

Details

gimp_airbrush ()

gboolean    gimp_airbrush                   (gint32 drawable_ID,
                                              gdouble pressure,
                                              gint num_strokes,
                                              const gdouble *strokes);

@@ -190,7 +190,7 @@ num_strokes: Number of stroke control points (count each coordinate as 2 points). strokes: Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. Returns : TRUE on success. -


gimp_airbrush_default ()

gboolean    gimp_airbrush_default           (gint32 drawable_ID,
+

gimp_airbrush_default ()

gboolean    gimp_airbrush_default           (gint32 drawable_ID,
                                              gint num_strokes,
                                              const gdouble *strokes);

Paint in the current brush with varying pressure. Paint application @@ -205,7 +205,7 @@ num_strokes: Number of stroke control points (count each coordinate as 2 points). strokes: Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. Returns : TRUE on success. -


gimp_by_color_select ()

gboolean    gimp_by_color_select            (gint32 drawable_ID,
+

gimp_by_color_select ()

gboolean    gimp_by_color_select            (gint32 drawable_ID,
                                              const GimpRGB *color,
@@ -241,7 +241,7 @@
 feather_radius: Radius for feather operation.
 sample_merged: Use the composite image, not the drawable.
 Returns : TRUE on success.
-

gimp_clone ()

gboolean    gimp_clone                      (gint32 drawable_ID,
+

gimp_clone ()

gboolean    gimp_clone                      (gint32 drawable_ID,
                                              gint32 src_drawable_ID,
                                              GimpCloneType clone_type,
                                              gdouble src_x,
@@ -271,7 +271,7 @@
 num_strokes: Number of stroke control points (count each coordinate as 2 points).
 strokes: Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }.
 Returns : TRUE on success.
-

gimp_clone_default ()

gboolean    gimp_clone_default              (gint32 drawable_ID,
+

gimp_clone_default ()

gboolean    gimp_clone_default              (gint32 drawable_ID,
                                              gint num_strokes,
                                              const gdouble *strokes);

Clone from the source to the dest drawable using the current brush @@ -287,7 +287,7 @@ num_strokes: Number of stroke control points (count each coordinate as 2 points). strokes: Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. Returns : TRUE on success. -


gimp_convolve ()

gboolean    gimp_convolve                   (gint32 drawable_ID,
+

gimp_convolve ()

gboolean    gimp_convolve                   (gint32 drawable_ID,
                                              gdouble pressure,
                                              GimpConvolveType convolve_type,
                                              gint num_strokes,
@@ -305,7 +305,7 @@
 num_strokes: Number of stroke control points (count each coordinate as 2 points).
 strokes: Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }.
 Returns : TRUE on success.
-

gimp_convolve_default ()

gboolean    gimp_convolve_default           (gint32 drawable_ID,
+

gimp_convolve_default ()

gboolean    gimp_convolve_default           (gint32 drawable_ID,
                                              gint num_strokes,
                                              const gdouble *strokes);

Convolve (Blur, Sharpen) using the current brush. @@ -320,7 +320,7 @@ num_strokes: Number of stroke control points (count each coordinate as 2 points). strokes: Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. Returns : TRUE on success. -


gimp_dodgeburn ()

gboolean    gimp_dodgeburn                  (gint32 drawable_ID,
+

gimp_dodgeburn ()

gboolean    gimp_dodgeburn                  (gint32 drawable_ID,
                                              gdouble exposure,
                                              GimpDodgeBurnType dodgeburn_type,
                                              GimpTransferMode dodgeburn_mode,
@@ -337,7 +337,7 @@
 num_strokes: Number of stroke control points (count each coordinate as 2 points).
 strokes: Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }.
 Returns : TRUE on success.
-

gimp_dodgeburn_default ()

gboolean    gimp_dodgeburn_default          (gint32 drawable_ID,
+

gimp_dodgeburn_default ()

gboolean    gimp_dodgeburn_default          (gint32 drawable_ID,
                                              gint num_strokes,
                                              const gdouble *strokes);

Dodgeburn image with varying exposure. This is the same as the @@ -351,7 +351,7 @@ num_strokes: Number of stroke control points (count each coordinate as 2 points). strokes: Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. Returns : TRUE on success. -


gimp_ellipse_select ()

gboolean    gimp_ellipse_select             (gint32 image_ID,
+

gimp_ellipse_select ()

gboolean    gimp_ellipse_select             (gint32 image_ID,
                                              gdouble x,
                                              gdouble y,
                                              gdouble width,
@@ -382,7 +382,7 @@
 feather: Feather option for selections.
 feather_radius: Radius for feather operation.
 Returns : TRUE on success.
-

gimp_eraser ()

gboolean    gimp_eraser                     (gint32 drawable_ID,
+

gimp_eraser ()

gboolean    gimp_eraser                     (gint32 drawable_ID,
                                              gint num_strokes,
                                              const gdouble *strokes,
                                              GimpBrushApplicationMode hardness,
@@ -401,7 +401,7 @@
 hardness: %desc%%.
 method: %desc%%.
 Returns : TRUE on success.
-

gimp_eraser_default ()

gboolean    gimp_eraser_default             (gint32 drawable_ID,
+

gimp_eraser_default ()

gboolean    gimp_eraser_default             (gint32 drawable_ID,
                                              gint num_strokes,
                                              const gdouble *strokes);

Erase using the current brush. @@ -416,7 +416,7 @@ num_strokes: Number of stroke control points (count each coordinate as 2 points). strokes: Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. Returns : TRUE on success. -


gimp_flip ()

gint32      gimp_flip                       (gint32 drawable_ID,
+

gimp_flip ()

gint32      gimp_flip                       (gint32 drawable_ID,
                                              GimpOrientationType flip_type);

Warning

gimp_flip is deprecated and should not be used in newly-written code.

This procedure is deprecated! Use gimp_drawable_transform_flip_simple() instead.

@@ -424,7 +424,7 @@

drawable_ID: The affected drawable.
flip_type: Type of flip.
Returns : The flipped drawable. -

gimp_free_select ()

gboolean    gimp_free_select                (gint32 image_ID,
+

gimp_free_select ()

gboolean    gimp_free_select                (gint32 image_ID,
                                              gint num_segs,
                                              const gdouble *segs,
                                              GimpChannelOps operation,
@@ -453,7 +453,7 @@
 feather: Feather option for selections.
 feather_radius: Radius for feather operation.
 Returns : TRUE on success.
-

gimp_fuzzy_select ()

gboolean    gimp_fuzzy_select               (gint32 drawable_ID,
+

gimp_fuzzy_select ()

gboolean    gimp_fuzzy_select               (gint32 drawable_ID,
                                              gdouble x,
                                              gdouble y,
                                              gint threshold,
@@ -494,7 +494,7 @@
 feather_radius: Radius for feather operation.
 sample_merged: Use the composite image, not the drawable.
 Returns : TRUE on success.
-

gimp_paintbrush ()

gboolean    gimp_paintbrush                 (gint32 drawable_ID,
+

gimp_paintbrush ()

gboolean    gimp_paintbrush                 (gint32 drawable_ID,
                                              gdouble fade_out,
                                              gint num_strokes,
                                              const gdouble *strokes,
@@ -521,7 +521,7 @@
 method: %desc%%.
 gradient_length: Length of gradient to draw.
 Returns : TRUE on success.
-

gimp_paintbrush_default ()

gboolean    gimp_paintbrush_default         (gint32 drawable_ID,
+

gimp_paintbrush_default ()

gboolean    gimp_paintbrush_default         (gint32 drawable_ID,
                                              gint num_strokes,
                                              const gdouble *strokes);

Paint in the current brush. The fade out parameter and pull colors @@ -545,7 +545,7 @@ num_strokes: Number of stroke control points (count each coordinate as 2 points). strokes: Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. Returns : TRUE on success. -


gimp_pencil ()

gboolean    gimp_pencil                     (gint32 drawable_ID,
+

gimp_pencil ()

gboolean    gimp_pencil                     (gint32 drawable_ID,
                                              gint num_strokes,
                                              const gdouble *strokes);

Paint in the current brush without sub-pixel sampling. @@ -561,7 +561,7 @@ num_strokes: Number of stroke control points (count each coordinate as 2 points). strokes: Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. Returns : TRUE on success. -


gimp_perspective ()

gint32      gimp_perspective                (gint32 drawable_ID,
+

gimp_perspective ()

gint32      gimp_perspective                (gint32 drawable_ID,
                                              gboolean interpolation,
                                              gdouble x0,
                                              gdouble y0,
@@ -585,7 +585,7 @@
 x3: The new x coordinate of lower-right corner of original bounding box.
 y3: The new y coordinate of lower-right corner of original bounding box.
 Returns : The newly mapped drawable.
-

gimp_rect_select ()

gboolean    gimp_rect_select                (gint32 image_ID,
+

gimp_rect_select ()

gboolean    gimp_rect_select                (gint32 image_ID,
                                              gdouble x,
                                              gdouble y,
                                              gdouble width,
@@ -611,7 +611,7 @@
 feather: Feather option for selections.
 feather_radius: Radius for feather operation.
 Returns : TRUE on success.
-

gimp_rotate ()

gint32      gimp_rotate                     (gint32 drawable_ID,
+

gimp_rotate ()

gint32      gimp_rotate                     (gint32 drawable_ID,
                                              gboolean interpolation,
                                              gdouble angle);

Warning

gimp_rotate is deprecated and should not be used in newly-written code.

This procedure is deprecated! Use @@ -621,7 +621,7 @@ interpolation: Whether to use interpolation. angle: The angle of rotation (radians). Returns : The rotated drawable. -


gimp_scale ()

gint32      gimp_scale                      (gint32 drawable_ID,
+

gimp_scale ()

gint32      gimp_scale                      (gint32 drawable_ID,
                                              gboolean interpolation,
                                              gdouble x0,
                                              gdouble y0,
@@ -637,7 +637,7 @@
 x1: The new x coordinate of lower-right corner of newly scaled region.
 y1: The new y coordinate of lower-right corner of newly scaled region.
 Returns : The scaled drawable.
-

gimp_shear ()

gint32      gimp_shear                      (gint32 drawable_ID,
+

gimp_shear ()

gint32      gimp_shear                      (gint32 drawable_ID,
                                              gboolean interpolation,
                                              GimpOrientationType shear_type,
                                              gdouble magnitude);

Warning

gimp_shear is deprecated and should not be used in newly-written code.

@@ -649,7 +649,7 @@ shear_type: Type of shear. magnitude: The magnitude of the shear. Returns : The sheared drawable. -


gimp_smudge ()

gboolean    gimp_smudge                     (gint32 drawable_ID,
+

gimp_smudge ()

gboolean    gimp_smudge                     (gint32 drawable_ID,
                                              gdouble pressure,
                                              gint num_strokes,
                                              const gdouble *strokes);

@@ -664,7 +664,7 @@ num_strokes: Number of stroke control points (count each coordinate as 2 points). strokes: Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. Returns : TRUE on success. -


gimp_smudge_default ()

gboolean    gimp_smudge_default             (gint32 drawable_ID,
+

gimp_smudge_default ()

gboolean    gimp_smudge_default             (gint32 drawable_ID,
                                              gint num_strokes,
                                              const gdouble *strokes);

Smudge image with varying pressure. @@ -678,7 +678,7 @@ num_strokes: Number of stroke control points (count each coordinate as 2 points). strokes: Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. Returns : TRUE on success. -


gimp_transform_2d ()

gint32      gimp_transform_2d               (gint32 drawable_ID,
+

gimp_transform_2d ()

gint32      gimp_transform_2d               (gint32 drawable_ID,
                                              gboolean interpolation,
                                              gdouble source_x,
                                              gdouble source_y,
diff -uraN gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpui.html gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpui.html
--- gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpui.html	2004-12-19 03:35:04.000000000 +0100
+++ gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpui.html	2004-12-28 16:59:56.000000000 +0100
@@ -35,11 +35,11 @@
 
 void        gimp_ui_init                    (const gchar *prog_name,
                                              gboolean preview);
-

Description

+

Description

Common user interface functions. This header includes all other GIMP User Interface Library headers. -

Details

gimp_ui_init ()

void        gimp_ui_init                    (const gchar *prog_name,
+

Details

gimp_ui_init ()

void        gimp_ui_init                    (const gchar *prog_name,
                                              gboolean preview);

This function initializes GTK+ with gtk_init() and initializes GDK's image rendering subsystem (GdkRGB) to follow the GIMP main program's @@ -53,7 +53,7 @@ executable and _not_ the PDB procedure name or something. preview: This parameter is unused and exists for historical reasons only. -

See Also

+

See Also

gtk_init(), gdk_set_use_xshm(), gdk_rgb_set_min_colors(), gdk_rgb_set_install(), gdk_rgb_get_visual(), gdk_rgb_get_cmap(), gtk_widget_set_default_visual(), gtk_widget_set_default_colormap(), diff -uraN gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpundo.html gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpundo.html --- gimp-2.2.0/devel-docs/libgimp/html/libgimp-gimpundo.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimp/html/libgimp-gimpundo.html 2004-12-28 16:59:56.000000000 +0100 @@ -39,10 +39,10 @@ gboolean gimp_image_undo_enable (gint32 image_ID); gboolean gimp_image_undo_freeze (gint32 image_ID); gboolean gimp_image_undo_thaw (gint32 image_ID); -

Description

+

Description

Control of undo/redo. -

Details

gimp_image_undo_group_start ()

gboolean    gimp_image_undo_group_start     (gint32 image_ID);

+

Details

gimp_image_undo_group_start ()

gboolean    gimp_image_undo_group_start     (gint32 image_ID);

Starts a group undo.

This function is used to start a group undo--necessary for logically @@ -52,7 +52,7 @@

image_ID: The ID of the image in which to open an undo group.
Returns : TRUE on success. -

gimp_image_undo_group_end ()

gboolean    gimp_image_undo_group_end       (gint32 image_ID);

+


gimp_image_undo_group_end ()

gboolean    gimp_image_undo_group_end       (gint32 image_ID);

Finish a group undo.

This function must be called once for each @@ -60,7 +60,7 @@

image_ID: The ID of the image in which to close an undo group.
Returns : TRUE on success. -

gimp_image_undo_is_enabled ()

gboolean    gimp_image_undo_is_enabled      (gint32 image_ID);

+


gimp_image_undo_is_enabled ()

gboolean    gimp_image_undo_is_enabled      (gint32 image_ID);

Check if the image's undo stack is enabled.

This procedure checks if the image's undo stack is currently enabled @@ -70,7 +70,7 @@

image_ID: The image.
Returns : True if undo is enabled for this image. -

gimp_image_undo_disable ()

gboolean    gimp_image_undo_disable         (gint32 image_ID);

+


gimp_image_undo_disable ()

gboolean    gimp_image_undo_disable         (gint32 image_ID);

Disable the image's undo stack.

This procedure disables the image's undo stack, allowing subsequent @@ -81,7 +81,7 @@

image_ID: The image.
Returns : True if the image undo has been disabled. -

gimp_image_undo_enable ()

gboolean    gimp_image_undo_enable          (gint32 image_ID);

+


gimp_image_undo_enable ()

gboolean    gimp_image_undo_enable          (gint32 image_ID);

Enable the image's undo stack.

This procedure enables the image's undo stack, allowing subsequent @@ -91,7 +91,7 @@

image_ID: The image.
Returns : True if the image undo has been enabled. -

gimp_image_undo_freeze ()

gboolean    gimp_image_undo_freeze          (gint32 image_ID);

+


gimp_image_undo_freeze ()

gboolean    gimp_image_undo_freeze          (gint32 image_ID);

Freeze the image's undo stack.

This procedure freezes the image's undo stack, allowing subsequent @@ -107,7 +107,7 @@

image_ID: The image.
Returns : True if the image undo has been frozen. -

gimp_image_undo_thaw ()

gboolean    gimp_image_undo_thaw            (gint32 image_ID);

+


gimp_image_undo_thaw ()

gboolean    gimp_image_undo_thaw            (gint32 image_ID);

Thaw the image's undo stack.

This procedure thaws the image's undo stack, allowing subsequent diff -uraN gimp-2.2.0/devel-docs/libgimp/tmpl/gimp.sgml gimp-2.2.1/devel-docs/libgimp/tmpl/gimp.sgml --- gimp-2.2.0/devel-docs/libgimp/tmpl/gimp.sgml 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimp/tmpl/gimp.sgml 2004-12-28 16:59:56.000000000 +0100 @@ -184,13 +184,15 @@ @author: @copyright: @date: -@menu_path: +@menu_label: @image_types: @type: @n_params: @n_return_vals: @params: @return_vals: + +@menu_path: @@ -204,7 +206,7 @@ @author: @copyright: @date: -@menu_path: +@menu_label: @image_types: @type: @n_params: @@ -212,6 +214,8 @@ @params: @return_vals: @run_proc: + +@menu_path: diff -uraN gimp-2.2.0/devel-docs/libgimp/xml/gimppixelrgn.xml gimp-2.2.1/devel-docs/libgimp/xml/gimppixelrgn.xml --- gimp-2.2.0/devel-docs/libgimp/xml/gimppixelrgn.xml 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimp/xml/gimppixelrgn.xml 2004-12-28 16:59:56.000000000 +0100 @@ -132,33 +132,41 @@ Initialize the pixel region pointed by pr with the specified parameters. -Note: here are some useful usecases for the dirty/shadow combination: -- dirty = FALSE, shadow = FALSE: the region will be used to read the actual - drawable datas. This is useful for save - plug-ins or for filters. +The dirty and shadow flags can be used as follows: -- dirty = FALSE, shadow = TRUE: the region will be used to read the shadow - tiles. This is used in some filter - plug-ins which operate in two passes such - as gaussian blur. The first one read the - actual drawable data and write to the - shadow tiles, and the second one read from - and write to the shadow tiles. +- dirty = FALSE, shadow = FALSE: the region will be used to read + the actual drawable datas. This + is useful for save plug-ins or for + filters. -- dirty = TRUE, shadow = TRUE: the region will be used to write to the - shadow tiles. This is a very common - practice to write to the shadow tiles and - then use #gimp_drawable_merge_shadow() to - merge the changes from the shadow tiles - using the current selection as a mask. +- dirty = FALSE, shadow = TRUE: the region will be used to read the + shadow tiles. This is used in + some filter plug-ins which operate + in two passes such as gaussian + blur. The first pass reads the + actual drawable data and writes to + the shadow tiles, and the second + one reads from and writes to the + shadow tiles. -- dirty = TRUE, shadow = FALSE: the region will be used to directly change - the drawable content. Don't do this, since - this could prevent the Undo-System from - working as expected. +- dirty = TRUE, shadow = TRUE: the region will be used to write to + the shadow tiles. It is common + practice to write to the shadow + tiles and then use + #gimp_drawable_merge_shadow() to + merge the changes from the shadow + tiles using the current selection + as a mask. + + +- dirty = TRUE, shadow = FALSE: the region will be used to directly + change the drawable content. Don't + do this, since this could prevent + the Undo-System from working as + expected. diff -uraN gimp-2.2.0/devel-docs/libgimp/xml/gimp.xml gimp-2.2.1/devel-docs/libgimp/xml/gimp.xml --- gimp-2.2.0/devel-docs/libgimp/xml/gimp.xml 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimp/xml/gimp.xml 2004-12-28 16:59:56.000000000 +0100 @@ -52,7 +52,7 @@ const gchar *author, const gchar *copyright, const gchar *date, - const gchar *menu_path, + const gchar *menu_label, const gchar *image_types, GimpPDBProcType type, gint n_params, @@ -65,7 +65,7 @@ const gchar *author, const gchar *copyright, const gchar *date, - const gchar *menu_path, + const gchar *menu_label, const gchar *image_types, GimpPDBProcType type, gint n_params, @@ -397,7 +397,7 @@ const gchar *author, const gchar *copyright, const gchar *date, - const gchar *menu_path, + const gchar *menu_label, const gchar *image_types, GimpPDBProcType type, gint n_params, @@ -422,11 +422,13 @@ documentation, should you. -menu_path can be NULL, or a string in the form -"<Domain>/Path/To/My/Menu" -(e.g. "<Image>/Filters/Render/Useless") if you want your -procedure to be available via a menu. Allowed prefixes are -<Toolbox>, <Image>, <Load> and <Save> +menu_label defines the label that should be used for the +procedure's menu entry (use NULL if the procedure shouldn't have a +menu entry). The position where to register in the menu hierarchy +is choosen using gimp_plugin_menu_register(). This function also +still accepts the old (pre-2.2) way of registering a menu entry and +takes a string in the form "<Domain>/Path/To/My/Menu" +(e.g. "<Image>/Filters/Render/Useless"). type must be one of GIMP_PLUGIN or GIMP_EXTENSION. Note that @@ -472,9 +474,9 @@ date : the date the procedure was added. -menu_path : - the procedure's menu path, or NULL if the procedure has - no menu entry. +menu_label : + the label to use for the procedure's menu entry, + or NULL if the procedure has no menu entry. image_types : the drawable types the procedure can handle. @@ -503,7 +505,7 @@ const gchar *author, const gchar *copyright, const gchar *date, - const gchar *menu_path, + const gchar *menu_label, const gchar *image_types, GimpPDBProcType type, gint n_params, @@ -558,8 +560,8 @@ date : the date the procedure was added. -menu_path : - the procedure's menu path, or NULL if the procedure has +menu_label : + the procedure's menu label, or NULL if the procedure has no menu entry. image_types : diff -uraN gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpButton.html gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpButton.html --- gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpButton.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpButton.html 2004-12-28 16:59:56.000000000 +0100 @@ -37,7 +37,7 @@ void gimp_button_extended_clicked (GimpButton *button, GdkModifierType state); -

Object Hierarchy

+

Object Hierarchy

 
   GObject
    +----GtkObject
@@ -47,31 +47,31 @@
                            +----GtkButton
                                  +----GimpButton
                                        +----GimpColorButton
-

Implemented Interfaces

+

Implemented Interfaces

GimpButton implements - AtkImplementorIface.

Signal Prototypes

+ AtkImplementorIface.

Signal Prototypes

 
 "extended-clicked"
             void        user_function      (GimpButton *gimpbutton,
                                             GdkModifierType arg1,
                                             gpointer user_data);
-

Description

+

Description

GimpButton adds an extra signal to the GtkButton widget that allows to distinguish a normal click from a click that was performed with modifier keys pressed. -

Details

struct GimpButton

struct GimpButton;

+

Details

struct GimpButton

struct GimpButton;

-


gimp_button_new ()

GtkWidget*  gimp_button_new                 (void);

+


gimp_button_new ()

GtkWidget*  gimp_button_new                 (void);

Creates a new GimpButton widget.

Returns : A pointer to the new GimpButton widget. -

gimp_button_extended_clicked ()

void        gimp_button_extended_clicked    (GimpButton *button,
+

gimp_button_extended_clicked ()

void        gimp_button_extended_clicked    (GimpButton *button,
                                              GdkModifierType state);

Emits the button's "extended_clicked" signal.

button: a GimpButton.
state: a state as found in GdkEventButton->state, e.g. GDK_SHIFT_MASK. -

Signals

The "extended-clicked" signal

void        user_function                  (GimpButton *gimpbutton,
+

Signals

The "extended-clicked" signal

void        user_function                  (GimpButton *gimpbutton,
                                             GdkModifierType arg1,
                                             gpointer user_data);

diff -uraN gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpCellRendererColor.html gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpCellRendererColor.html --- gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpCellRendererColor.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpCellRendererColor.html 2004-12-28 16:59:56.000000000 +0100 @@ -36,30 +36,30 @@ GtkCellRenderer* gimp_cell_renderer_color_new (void); -

Object Hierarchy

+

Object Hierarchy

 
   GObject
    +----GtkObject
          +----GtkCellRenderer
                +----GimpCellRendererColor
-

Properties

+

Properties

 
   "color"                GimpRGB              : Read / Write
   "icon-size"            gint                 : Read / Write / Construct
   "opaque"               gboolean             : Read / Write / Construct
-

Description

+

Description

-

Details

struct GimpCellRendererColor

struct GimpCellRendererColor;

+

Details

struct GimpCellRendererColor

struct GimpCellRendererColor;

-


gimp_cell_renderer_color_new ()

GtkCellRenderer* gimp_cell_renderer_color_new
+


gimp_cell_renderer_color_new ()

GtkCellRenderer* gimp_cell_renderer_color_new
                                             (void);

Creates a GtkCellRenderer that displays a color.

Returns : a new GimpCellRendererColor

Since GIMP 2.2 -

Properties

"color" (

Properties

"color" (GimpRGB : Read / Write)

"icon-size" (gint : Read / Write / Construct)

"opaque" (gboolean : Read / Write / Construct)

diff -uraN gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpCellRendererToggle.html gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpCellRendererToggle.html --- gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpCellRendererToggle.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpCellRendererToggle.html 2004-12-28 16:59:56.000000000 +0100 @@ -40,28 +40,28 @@ const gchar *path, GdkModifierType state); -

Object Hierarchy

+

Object Hierarchy

 
   GObject
    +----GtkObject
          +----GtkCellRenderer
                +----GtkCellRendererToggle
                      +----GimpCellRendererToggle
-

Properties

+

Properties

 
   "stock-id"             gchararray           : Read / Write / Construct
   "stock-size"           gint                 : Read / Write / Construct
-

Signal Prototypes

+

Signal Prototypes

 
 "clicked"   void        user_function      (GimpCellRendererToggle *gimpcellrenderertoggle,
                                             gchar *arg1,
                                             GdkModifierType arg2,
                                             gpointer user_data);
-

Description

+

Description

-

Details

struct GimpCellRendererToggle

struct GimpCellRendererToggle;

+

Details

struct GimpCellRendererToggle

struct GimpCellRendererToggle;

-


gimp_cell_renderer_toggle_new ()

GtkCellRenderer* gimp_cell_renderer_toggle_new
+


gimp_cell_renderer_toggle_new ()

GtkCellRenderer* gimp_cell_renderer_toggle_new
                                             (const gchar *stock_id);

Creates a custom version of the GtkCellRendererToggle. Instead of showing the standard toggle button, it shows a stock icon if the @@ -73,7 +73,7 @@

Returns : a new GimpCellRendererToggle

Since GIMP 2.2 -


gimp_cell_renderer_toggle_clicked ()

void        gimp_cell_renderer_toggle_clicked
+


gimp_cell_renderer_toggle_clicked ()

void        gimp_cell_renderer_toggle_clicked
                                             (GimpCellRendererToggle *cell,
                                              const gchar *path,
                                              GdkModifierType state);

@@ -83,7 +83,7 @@ path: state:

Since GIMP 2.2 -

Properties

"stock-id" (gchararray : Read / Write / Construct)

"stock-size" (gint : Read / Write / Construct)

Signals

The "clicked" signal

void        user_function                  (GimpCellRendererToggle *gimpcellrenderertoggle,
+

Properties

"stock-id" (gchararray : Read / Write / Construct)

"stock-size" (gint : Read / Write / Construct)

Signals

The "clicked" signal

void        user_function                  (GimpCellRendererToggle *gimpcellrenderertoggle,
                                             gchar *arg1,
                                             GdkModifierType arg2,
                                             gpointer user_data);

diff -uraN gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpChainButton.html gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpChainButton.html --- gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpChainButton.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpChainButton.html 2004-12-28 16:59:56.000000000 +0100 @@ -39,7 +39,7 @@ gboolean active); gboolean gimp_chain_button_get_active (GimpChainButton *button); -

Object Hierarchy

+

Object Hierarchy

 
   GObject
    +----GtkObject
@@ -47,13 +47,13 @@
                +----GtkContainer
                      +----GtkTable
                            +----GimpChainButton
-

Implemented Interfaces

+

Implemented Interfaces

GimpChainButton implements - AtkImplementorIface.

Signal Prototypes

+ AtkImplementorIface.

Signal Prototypes

 
 "toggled"   void        user_function      (GimpChainButton *gimpchainbutton,
                                             gpointer user_data);
-

Description

+

Description

This widget provides a button showing either a linked or a broken chain that can be used to link two entries, spinbuttons, colors or other GUI elements and show that they may be locked. Use it for @@ -65,9 +65,9 @@ by checking the state of the GimpChainButton whenever a value changes in one of the connected widgets and adjusting the other value if necessary. -

Details

struct GimpChainButton

struct GimpChainButton;

+

Details

struct GimpChainButton

struct GimpChainButton;

-


enum GimpChainPosition

typedef enum
+


enum GimpChainPosition

typedef enum
 {
   GIMP_CHAIN_TOP,
   GIMP_CHAIN_LEFT,
@@ -76,7 +76,7 @@
 } GimpChainPosition;
 

-


gimp_chain_button_new ()

GtkWidget*  gimp_chain_button_new           (GimpChainPosition position);

+


gimp_chain_button_new ()

GtkWidget*  gimp_chain_button_new           (GimpChainPosition position);

Creates a new GimpChainButton widget.

This returns a button showing either a broken or a linked chain and @@ -91,24 +91,24 @@ Returns : Pointer to the new GimpChainButton, which is inactive by default. Use gimp_chain_button_set_active() to change its state. -


gimp_chain_button_set_active ()

void        gimp_chain_button_set_active    (GimpChainButton *button,
+

gimp_chain_button_set_active ()

void        gimp_chain_button_set_active    (GimpChainButton *button,
                                              gboolean active);

Sets the state of the GimpChainButton to be either locked (TRUE) or unlocked (FALSE) and changes the showed pixmap to reflect the new state.

button: Pointer to a GimpChainButton.
active: The new state. -

gimp_chain_button_get_active ()

gboolean    gimp_chain_button_get_active    (GimpChainButton *button);

+


gimp_chain_button_get_active ()

gboolean    gimp_chain_button_get_active    (GimpChainButton *button);

Checks the state of the GimpChainButton.

button: Pointer to a GimpChainButton.
Returns : TRUE if the GimpChainButton is active (locked). -

Signals

The "toggled" signal

void        user_function                  (GimpChainButton *gimpchainbutton,
+

Signals

The "toggled" signal

void        user_function                  (GimpChainButton *gimpchainbutton,
                                             gpointer user_data);

gimpchainbutton:the object which received the signal. -
user_data:user data set when the signal handler was connected.

See Also

+user_data:user data set when the signal handler was connected.

See Also

You may want to use the convenience function gimp_coordinates_new() to set up two GimpSizeEntries (see GimpSizeEntry) linked with a GimpChainButton.

diff -uraN gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpColorArea.html gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpColorArea.html --- gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpColorArea.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpColorArea.html 2004-12-28 16:59:56.000000000 +0100 @@ -53,25 +53,25 @@ void gimp_color_area_set_draw_border (GimpColorArea *area, gboolean draw_border); -

Object Hierarchy

+

Object Hierarchy

 
   GObject
    +----GtkObject
          +----GtkWidget
                +----GtkDrawingArea
                      +----GimpColorArea
-

Implemented Interfaces

+

Implemented Interfaces

GimpColorArea implements - AtkImplementorIface.

Signal Prototypes

+ AtkImplementorIface.

Signal Prototypes

 
 "color-changed"
             void        user_function      (GimpColorArea *gimpcolorarea,
                                             gpointer user_data);
-

Description

+

Description

-

Details

struct GimpColorArea

struct GimpColorArea;

+

Details

struct GimpColorArea

struct GimpColorArea;

-


enum GimpColorAreaType

typedef enum
+


enum GimpColorAreaType

typedef enum
 {
   GIMP_COLOR_AREA_FLAT = 0,
   GIMP_COLOR_AREA_SMALL_CHECKS,
@@ -95,7 +95,7 @@
 type:      The type of color area to create.
 drag_mask: The event_mask that should trigger drags.
 Returns : Pointer to the new GimpColorArea widget.
-

gimp_color_area_set_color ()

void        gimp_color_area_set_color       (GimpColorArea *area,
+

gimp_color_area_set_color ()

void        gimp_color_area_set_color       (GimpColorArea *area,
                                              const GimpRGB *color);

@@ -105,7 +105,7 @@ color: Pointer to a GimpRGB struct that defines the new color. -


gimp_color_area_get_color ()

void        gimp_color_area_get_color       (GimpColorArea *area,
+

gimp_color_area_get_color ()

void        gimp_color_area_get_color       (GimpColorArea *area,
                                              GimpRGB *color);

@@ -115,13 +115,13 @@ color: Pointer to a GimpRGB struct that is used to return the color. -


gimp_color_area_has_alpha ()

gboolean    gimp_color_area_has_alpha       (GimpColorArea *area);

+


gimp_color_area_has_alpha ()

gboolean    gimp_color_area_has_alpha       (GimpColorArea *area);

Checks whether the area shows transparency information. This is determined via the area's GimpColorAreaType.

area: Pointer to a GimpColorArea.
Returns : TRUE if area shows transparency information, FALSE otherwise. -

gimp_color_area_set_type ()

void        gimp_color_area_set_type        (GimpColorArea *area,
+

gimp_color_area_set_type ()

void        gimp_color_area_set_type        (GimpColorArea *area,
                                              GimpColorAreaType type);

Allows to change the type of area. The GimpColorAreaType determines whether the widget shows transparency information and chooses the size of @@ -129,7 +129,7 @@

area: Pointer to a GimpColorArea.
type: A GimpColorAreaType. -

gimp_color_area_set_draw_border ()

void        gimp_color_area_set_draw_border (GimpColorArea *area,
+

gimp_color_area_set_draw_border ()

void        gimp_color_area_set_draw_border (GimpColorArea *area,
                                              gboolean draw_border);

The area can draw a thin border in the foreground color around itself. This function allows to toggle this behaviour on and @@ -137,7 +137,7 @@

area: Pointer to a GimpColorArea.
draw_border: whether to draw a border or not -

Signals

The "color-changed" signal

void        user_function                  (GimpColorArea *gimpcolorarea,
+

Signals

The "color-changed" signal

void        user_function                  (GimpColorArea *gimpcolorarea,
                                             gpointer user_data);

gimpcolorarea:the object which received the signal. diff -uraN gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpColorButton.html gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpColorButton.html --- gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpColorButton.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpColorButton.html 2004-12-28 16:59:56.000000000 +0100 @@ -55,7 +55,7 @@ void gimp_color_button_set_type (GimpColorButton *button, GimpColorAreaType type); -

Object Hierarchy

+

Object Hierarchy

 
   GObject
    +----GtkObject
@@ -65,14 +65,14 @@
                            +----GtkButton
                                  +----GimpButton
                                        +----GimpColorButton
-

Implemented Interfaces

+

Implemented Interfaces

GimpColorButton implements - AtkImplementorIface.

Signal Prototypes

+ AtkImplementorIface.

Signal Prototypes

 
 "color-changed"
             void        user_function      (GimpColorButton *gimpcolorbutton,
                                             gpointer user_data);
-

Description

+

Description

This widget provides a simple button with a preview showing the color.

@@ -80,9 +80,9 @@ supports Drag and Drop and has a right-click menu that allows to choose the color from the current FG or BG color. If the user changes the color, the "color_changed" signal is emitted. -

Details

struct GimpColorButton

struct GimpColorButton;

+

Details

struct GimpColorButton

struct GimpColorButton;

-


gimp_color_button_new ()

GtkWidget*  gimp_color_button_new           (const gchar *title,
+


gimp_color_button_new ()

GtkWidget*  gimp_color_button_new           (const gchar *title,
                                              gint width,
                                              gint height,
                                              const GimpRGB color.
 
type:
Returns : Pointer to the new GimpColorButton widget. -

gimp_color_button_set_color ()

void        gimp_color_button_set_color     (GimpColorButton *button,
+

gimp_color_button_set_color ()

void        gimp_color_button_set_color     (GimpColorButton *button,
                                              const GimpRGB *color);

@@ -115,7 +115,7 @@ color: Pointer to the new GimpRGB color. -


gimp_color_button_get_color ()

void        gimp_color_button_get_color     (GimpColorButton *button,
+

gimp_color_button_get_color ()

void        gimp_color_button_get_color     (GimpColorButton *button,
                                              GimpRGB *color);

@@ -125,7 +125,7 @@ color: Pointer to a GimpRGB struct used to return the color. -


gimp_color_button_set_update ()

void        gimp_color_button_set_update    (GimpColorButton *button,
+

gimp_color_button_set_update ()

void        gimp_color_button_set_update    (GimpColorButton *button,
                                              gboolean continuous);

When set to TRUE, the button will emit the "color_changed" continuously while the color is changed in the color selection @@ -133,12 +133,12 @@

button: A GimpColorButton widget.
continuous: The new setting of the continuous_update property. -

gimp_color_button_get_update ()

gboolean    gimp_color_button_get_update    (GimpColorButton *button);

+


gimp_color_button_get_update ()

gboolean    gimp_color_button_get_update    (GimpColorButton *button);

Returns the color button's continuous_update property.

button: A GimpColorButton widget.
Returns : the continuous_update property. -

gimp_color_button_has_alpha ()

gboolean    gimp_color_button_has_alpha     (GimpColorButton *button);

+


gimp_color_button_has_alpha ()

gboolean    gimp_color_button_has_alpha     (GimpColorButton *button);

Checks whether the buttons shows transparency information.

button: Pointer to a GimpColorButton. @@ -150,11 +150,11 @@

button: Pointer to a GimpColorButton.
type: the new GimpColorAreaType -

Signals

The "color-changed" signal

void        user_function                  (GimpColorButton *gimpcolorbutton,
+

Signals

The "color-changed" signal

void        user_function                  (GimpColorButton *gimpcolorbutton,
                                             gpointer user_data);

gimpcolorbutton:the object which received the signal. -
user_data:user data set when the signal handler was connected.

See Also

+user_data:user data set when the signal handler was connected.

See Also

libgimpcolor-gimpcolorspace

diff -uraN gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpColorDisplay.html gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpColorDisplay.html --- gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpColorDisplay.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpColorDisplay.html 2004-12-28 16:59:56.000000000 +0100 @@ -56,48 +56,48 @@ (GimpColorDisplay *display); void gimp_color_display_changed (GimpColorDisplay *display); -

Object Hierarchy

+

Object Hierarchy

 
   GObject
    +----GimpColorDisplay
-

Properties

+

Properties

 
   "enabled"              gboolean             : Read / Write / Construct
-

Signal Prototypes

+

Signal Prototypes

 
 "changed"   void        user_function      (GimpColorDisplay *gimpcolordisplay,
                                             gpointer user_data);
-

Description

+

Description

Functions and definitions for creating pluggable GIMP display color correction modules. -

Details

struct GimpColorDisplay

struct GimpColorDisplay;

+

Details

struct GimpColorDisplay

struct GimpColorDisplay;

-


gimp_color_display_new ()

GimpColorDisplay* gimp_color_display_new    (GType display_type);

+


gimp_color_display_new ()

GimpColorDisplay* gimp_color_display_new    (GType display_type);

display_type:
Returns : -

gimp_color_display_clone ()

GimpColorDisplay* gimp_color_display_clone  (GimpColorDisplay *display);

+


gimp_color_display_clone ()

GimpColorDisplay* gimp_color_display_clone  (GimpColorDisplay *display);

display:
Returns : -

gimp_color_display_set_enabled ()

void        gimp_color_display_set_enabled  (GimpColorDisplay *display,
+

gimp_color_display_set_enabled ()

void        gimp_color_display_set_enabled  (GimpColorDisplay *display,
                                              gboolean enabled);

display:
enabled: -

gimp_color_display_get_enabled ()

gboolean    gimp_color_display_get_enabled  (GimpColorDisplay *display);

+


gimp_color_display_get_enabled ()

gboolean    gimp_color_display_get_enabled  (GimpColorDisplay *display);

display:
Returns : -

gimp_color_display_convert ()

void        gimp_color_display_convert      (GimpColorDisplay *display,
+

gimp_color_display_convert ()

void        gimp_color_display_convert      (GimpColorDisplay *display,
                                              guchar *buf,
                                              gint width,
                                              gint height,
@@ -112,7 +112,7 @@
 bpl:
 
 
-

gimp_color_display_load_state ()

void        gimp_color_display_load_state   (GimpColorDisplay *display,
+

gimp_color_display_load_state ()

void        gimp_color_display_load_state   (GimpColorDisplay *display,
                                              GimpParasite *state);

@@ -121,7 +121,7 @@ state: -


gimp_color_display_save_state ()


gimp_color_display_save_state ()

GimpParasite* gimp_color_display_save_state (GimpColorDisplay *display);

@@ -129,29 +129,29 @@ Returns : -


gimp_color_display_configure ()

GtkWidget*  gimp_color_display_configure    (GimpColorDisplay *display);

+


gimp_color_display_configure ()

GtkWidget*  gimp_color_display_configure    (GimpColorDisplay *display);

display:
Returns : -

gimp_color_display_configure_reset ()

void        gimp_color_display_configure_reset
+

gimp_color_display_configure_reset ()

void        gimp_color_display_configure_reset
                                             (GimpColorDisplay *display);

display: -

gimp_color_display_changed ()

void        gimp_color_display_changed      (GimpColorDisplay *display);

+


gimp_color_display_changed ()

void        gimp_color_display_changed      (GimpColorDisplay *display);

display: -

Properties

"enabled" (gboolean : Read / Write / Construct)

Signals

The "changed" signal

void        user_function                  (GimpColorDisplay *gimpcolordisplay,
+

Properties

"enabled" (gboolean : Read / Write / Construct)

Signals

The "changed" signal

void        user_function                  (GimpColorDisplay *gimpcolordisplay,
                                             gpointer user_data);

gimpcolordisplay:the object which received the signal. -
user_data:user data set when the signal handler was connected.

See Also

+user_data:user data set when the signal handler was connected.

See Also

GModule

GTypeModule diff -uraN gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpColorDisplayStack.html gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpColorDisplayStack.html --- gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpColorDisplayStack.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpColorDisplayStack.html 2004-12-28 16:59:56.000000000 +0100 @@ -57,11 +57,11 @@ gint bpp, gint bpl); -

Object Hierarchy

+

Object Hierarchy

 
   GObject
    +----GimpColorDisplayStack
-

Signal Prototypes

+

Signal Prototypes

 
 "added"     void        user_function      (GimpColorDisplayStack *gimpcolordisplaystack,
                                             GimpColorDisplay *arg1,
@@ -76,44 +76,44 @@
                                             GimpColorDisplay *arg1,
                                             gint arg2,
                                             gpointer user_data);
-

Description

+

Description

-

Details

struct GimpColorDisplayStack

struct GimpColorDisplayStack;

+

Details

struct GimpColorDisplayStack

struct GimpColorDisplayStack;

-


gimp_color_display_stack_new ()

GimpColorDisplayStack* gimp_color_display_stack_new
+


gimp_color_display_stack_new ()

GimpColorDisplayStack* gimp_color_display_stack_new
                                             (void);

Returns : -

gimp_color_display_stack_clone ()

GimpColorDisplayStack* gimp_color_display_stack_clone
+

gimp_color_display_stack_clone ()

GimpColorDisplayStack* gimp_color_display_stack_clone
                                             (GimpColorDisplayStack *stack);

stack:
Returns : -

gimp_color_display_stack_changed ()

void        gimp_color_display_stack_changed
+

gimp_color_display_stack_changed ()

void        gimp_color_display_stack_changed
                                             (GimpColorDisplayStack *stack);

stack: -

gimp_color_display_stack_add ()

void        gimp_color_display_stack_add    (GimpColorDisplayStack *stack,
+

gimp_color_display_stack_add ()

void        gimp_color_display_stack_add    (GimpColorDisplayStack *stack,
                                              GimpColorDisplay *display);

stack:
display: -

gimp_color_display_stack_remove ()

void        gimp_color_display_stack_remove (GimpColorDisplayStack *stack,
+

gimp_color_display_stack_remove ()

void        gimp_color_display_stack_remove (GimpColorDisplayStack *stack,
                                              GimpColorDisplay *display);

stack:
display: -

gimp_color_display_stack_reorder_up ()

void        gimp_color_display_stack_reorder_up
+

gimp_color_display_stack_reorder_up ()

void        gimp_color_display_stack_reorder_up
                                             (GimpColorDisplayStack *stack,
                                              GimpColorDisplay *display);

@@ -121,7 +121,7 @@ display: -


gimp_color_display_stack_reorder_down ()

void        gimp_color_display_stack_reorder_down
+

gimp_color_display_stack_reorder_down ()

void        gimp_color_display_stack_reorder_down
                                             (GimpColorDisplayStack *stack,
                                              GimpColorDisplay *display);

@@ -129,7 +129,7 @@ display: -


gimp_color_display_stack_convert ()

void        gimp_color_display_stack_convert
+

gimp_color_display_stack_convert ()

void        gimp_color_display_stack_convert
                                             (GimpColorDisplayStack *stack,
                                              guchar *buf,
                                              gint width,
@@ -145,7 +145,7 @@
 bpl:
 
 
-

Signals

The "added" signal

void        user_function                  (GimpColorDisplayStack *gimpcolordisplaystack,
+

Signals

The "added" signal

void        user_function                  (GimpColorDisplayStack *gimpcolordisplaystack,
                                             GimpColorDisplay *arg1,
                                             gint arg2,
                                             gpointer user_data);

@@ -154,19 +154,19 @@ arg1: arg2: -user_data:user data set when the signal handler was connected.


The "changed" signal

void        user_function                  (GimpColorDisplayStack *gimpcolordisplaystack,
+user_data:user data set when the signal handler was connected.

The "changed" signal

void        user_function                  (GimpColorDisplayStack *gimpcolordisplaystack,
                                             gpointer user_data);

gimpcolordisplaystack:the object which received the signal. -
user_data:user data set when the signal handler was connected.

The "removed" signal

void        user_function                  (GimpColorDisplayStack *gimpcolordisplaystack,
+user_data:user data set when the signal handler was connected.

The "removed" signal

void        user_function                  (GimpColorDisplayStack *gimpcolordisplaystack,
                                             GimpColorDisplay *arg1,
                                             gpointer user_data);

gimpcolordisplaystack:the object which received the signal.
arg1: -
user_data:user data set when the signal handler was connected.

The "reordered" signal

void        user_function                  (GimpColorDisplayStack *gimpcolordisplaystack,
+user_data:user data set when the signal handler was connected.

The "reordered" signal

void        user_function                  (GimpColorDisplayStack *gimpcolordisplaystack,
                                             GimpColorDisplay *arg1,
                                             gint arg2,
                                             gpointer user_data);

diff -uraN gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpColorHexEntry.html gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpColorHexEntry.html --- gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpColorHexEntry.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpColorHexEntry.html 2004-12-28 16:59:56.000000000 +0100 @@ -43,31 +43,31 @@ href="../libgimpcolor/libgimpcolor-GimpRGB.html#GimpRGB" >GimpRGB *color); -

Object Hierarchy

+

Object Hierarchy

 
   GObject
    +----GtkObject
          +----GtkWidget
                +----GtkEntry
                      +----GimpColorHexEntry
-

Implemented Interfaces

+

Implemented Interfaces

GimpColorHexEntry implements - AtkImplementorIface, GtkEditable and GtkCellEditable.

Signal Prototypes

+ AtkImplementorIface,  GtkEditable and  GtkCellEditable.

Signal Prototypes

 
 "color-changed"
             void        user_function      (GimpColorHexEntry *gimpcolorhexentry,
                                             gpointer user_data);
-

Description

+

Description

Widget for entering a color's hex triplet. -

Details

struct GimpColorHexEntry

struct GimpColorHexEntry;

+

Details

struct GimpColorHexEntry

struct GimpColorHexEntry;

-


gimp_color_hex_entry_new ()

GtkWidget*  gimp_color_hex_entry_new        (void);

+


gimp_color_hex_entry_new ()

GtkWidget*  gimp_color_hex_entry_new        (void);

Returns : a new GimpColorHexEntry widget

Since GIMP 2.2 -


gimp_color_hex_entry_set_color ()

void        gimp_color_hex_entry_set_color  (GimpColorHexEntry *entry,
+


gimp_color_hex_entry_set_color ()

void        gimp_color_hex_entry_set_color  (GimpColorHexEntry *entry,
                                              const GimpRGB *color);

@@ -80,7 +80,7 @@ href="../libgimpcolor/libgimpcolor-GimpRGB.html#GimpRGB" >GimpRGB

Since GIMP 2.2 -


gimp_color_hex_entry_get_color ()

void        gimp_color_hex_entry_get_color  (GimpColorHexEntry *entry,
+


gimp_color_hex_entry_get_color ()

void        gimp_color_hex_entry_get_color  (GimpColorHexEntry *entry,
                                              GimpRGB *color);

@@ -91,7 +91,7 @@ href="../libgimpcolor/libgimpcolor-GimpRGB.html#GimpRGB" >GimpRGB

Since GIMP 2.2 -

Signals

The "color-changed" signal

void        user_function                  (GimpColorHexEntry *gimpcolorhexentry,
+

Signals

The "color-changed" signal

void        user_function                  (GimpColorHexEntry *gimpcolorhexentry,
                                             gpointer user_data);

gimpcolorhexentry:the object which received the signal. diff -uraN gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpColorNotebook.html gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpColorNotebook.html --- gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpColorNotebook.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpColorNotebook.html 2004-12-28 16:59:56.000000000 +0100 @@ -38,7 +38,7 @@ GType page_type, gboolean has_page); -

Object Hierarchy

+

Object Hierarchy

 
   GObject
    +----GtkObject
@@ -48,18 +48,18 @@
                            +----GtkVBox
                                  +----GimpColorSelector
                                        +----GimpColorNotebook
-

Implemented Interfaces

+

Implemented Interfaces

GimpColorNotebook implements - AtkImplementorIface.

Style Properties

+ AtkImplementorIface.

Style Properties

 
   "tab-border"           gint                 : Read
   "tab-icon-size"        GtkIconSize          : Read
-

Description

+

Description

The GimpColorNotebook widget is an implementation of a GimpColorSelector. It serves as a container for GimpColorSelectors. -

Details

struct GimpColorNotebook

struct GimpColorNotebook;

+

Details

struct GimpColorNotebook

struct GimpColorNotebook;

-


gimp_color_notebook_set_has_page ()

GtkWidget*  gimp_color_notebook_set_has_page
+


gimp_color_notebook_set_has_page ()

GtkWidget*  gimp_color_notebook_set_has_page
                                             (GimpColorNotebook *notebook,
                                              GType page_type,
                                              gboolean has_page);

@@ -71,4 +71,4 @@

has_page: Whether the page should be added or removed.
Returns : The new page widget, if has_page was TRUE, or NULL if has_page was FALSE. -

Style Properties

"tab-border" (gint : Read)

Width of the border around the tab contents.

"tab-icon-size" (GtkIconSize : Read)

Size for icons displayed in the tab.

+

Style Properties

"tab-border" (gint : Read)

Width of the border around the tab contents.

"tab-icon-size" (GtkIconSize : Read)

Size for icons displayed in the tab.

diff -uraN gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpColorScale.html gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpColorScale.html --- gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpColorScale.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpColorScale.html 2004-12-28 16:59:56.000000000 +0100 @@ -45,7 +45,7 @@ href="../libgimpcolor/libgimpcolor-GimpHSV.html#GimpHSV" >GimpHSV *hsv); -

Object Hierarchy

+

Object Hierarchy

 
   GObject
    +----GtkObject
@@ -53,26 +53,26 @@
                +----GtkRange
                      +----GtkScale
                            +----GimpColorScale
-

Implemented Interfaces

+

Implemented Interfaces

GimpColorScale implements - AtkImplementorIface.

Description

+ AtkImplementorIface.

Description

-

Details

struct GimpColorScale

struct GimpColorScale;

+

Details

struct GimpColorScale

struct GimpColorScale;

-


gimp_color_scale_new ()

GtkWidget*  gimp_color_scale_new            (GtkOrientation orientation,
+


gimp_color_scale_new ()

GtkWidget*  gimp_color_scale_new            (GtkOrientation orientation,
                                              GimpColorSelectorChannel channel);

Creates a new GimpColorScale widget.

orientation: the scale's orientation (horizontal or vertical)
channel: the scale's color channel
Returns : a new GimpColorScale widget -

gimp_color_scale_set_channel ()

void        gimp_color_scale_set_channel    (GimpColorScale *scale,
+

gimp_color_scale_set_channel ()

void        gimp_color_scale_set_channel    (GimpColorScale *scale,
                                              GimpColorSelectorChannel channel);

Changes the color channel displayed by the scale.

scale: a GimpColorScale widget
channel: the new color channel -

gimp_color_scale_set_color ()

void        gimp_color_scale_set_color      (GimpColorScale *scale,
+

gimp_color_scale_set_color ()

void        gimp_color_scale_set_color      (GimpColorScale *scale,
                                              const GimpRGB *rgb,
diff -uraN gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpColorScales.html gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpColorScales.html
--- gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpColorScales.html	2004-12-19 03:35:04.000000000 +0100
+++ gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpColorScales.html	2004-12-28 16:59:56.000000000 +0100
@@ -34,7 +34,7 @@
 
 struct      GimpColorScales;
 
-

Object Hierarchy

+

Object Hierarchy

 
   GObject
    +----GtkObject
@@ -44,12 +44,12 @@
                            +----GtkVBox
                                  +----GimpColorSelector
                                        +----GimpColorScales
-

Implemented Interfaces

+

Implemented Interfaces

GimpColorScales implements - AtkImplementorIface.

Description

+ AtkImplementorIface.

Description

The GimpColorScales widget is an implementation of a GimpColorSelector. It shows a group of GimpColorScale widgets that allow to adjust the HSV and RGB color channels. -

Details

struct GimpColorScales

struct GimpColorScales;

+

Details

struct GimpColorScales

struct GimpColorScales;

diff -uraN gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpColorSelect.html gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpColorSelect.html --- gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpColorSelect.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpColorSelect.html 2004-12-28 16:59:56.000000000 +0100 @@ -34,7 +34,7 @@ struct GimpColorSelect; -

Object Hierarchy

+

Object Hierarchy

 
   GObject
    +----GtkObject
@@ -44,14 +44,14 @@
                            +----GtkVBox
                                  +----GimpColorSelector
                                        +----GimpColorSelect
-

Implemented Interfaces

+

Implemented Interfaces

GimpColorSelect implements - AtkImplementorIface.

Description

+ AtkImplementorIface.

Description

The GimpColorSelect widget is an implementation of a GimpColorSelector. It shows a square area that allows to interactively change two color channels and a smaller area to change the third channel. You can select which channel should be the third by calling gimp_color_selector_set_channel(). The widget will then change the other two channels accordingly. -

Details

struct GimpColorSelect

struct GimpColorSelect;

+

Details

struct GimpColorSelect

struct GimpColorSelect;

diff -uraN gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpColorSelection.html gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpColorSelection.html --- gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpColorSelection.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpColorSelection.html 2004-12-28 16:59:56.000000000 +0100 @@ -61,7 +61,7 @@ void gimp_color_selection_color_changed (GimpColorSelection *selection); -

Object Hierarchy

+

Object Hierarchy

 
   GObject
    +----GtkObject
@@ -70,35 +70,35 @@
                      +----GtkBox
                            +----GtkVBox
                                  +----GimpColorSelection
-

Implemented Interfaces

+

Implemented Interfaces

GimpColorSelection implements - AtkImplementorIface.

Signal Prototypes

+ AtkImplementorIface.

Signal Prototypes

 
 "color-changed"
             void        user_function      (GimpColorSelection *gimpcolorselection,
                                             gpointer user_data);
-

Description

+

Description

-

Details

struct GimpColorSelection

struct GimpColorSelection;

+

Details

struct GimpColorSelection

struct GimpColorSelection;

-


gimp_color_selection_new ()

GtkWidget*  gimp_color_selection_new        (void);

+


gimp_color_selection_new ()

GtkWidget*  gimp_color_selection_new        (void);

Creates a new GimpColorSelection widget.

Returns : The new GimpColorSelection widget. -

gimp_color_selection_set_show_alpha ()

void        gimp_color_selection_set_show_alpha
+

gimp_color_selection_set_show_alpha ()

void        gimp_color_selection_set_show_alpha
                                             (GimpColorSelection *selection,
                                              gboolean show_alpha);

Sets the show_alpha property of the selection widget.

selection: A GimpColorSelection widget.
show_alpha: The new show_alpha setting. -

gimp_color_selection_get_show_alpha ()

gboolean    gimp_color_selection_get_show_alpha
+

gimp_color_selection_get_show_alpha ()

gboolean    gimp_color_selection_get_show_alpha
                                             (GimpColorSelection *selection);

Returns the selection's show_alpha property.

selection: A GimpColorSelection widget.
Returns : TRUE if the GimpColorSelection has alpha controls. -

gimp_color_selection_set_color ()

void        gimp_color_selection_set_color  (GimpColorSelection *selection,
+

gimp_color_selection_set_color ()

void        gimp_color_selection_set_color  (GimpColorSelection *selection,
                                              const GimpRGB *color);

@@ -106,7 +106,7 @@

selection: A GimpColorSelection widget.
color: The color to set as current color. -

gimp_color_selection_get_color ()

void        gimp_color_selection_get_color  (GimpColorSelection *selection,
+

gimp_color_selection_get_color ()

void        gimp_color_selection_get_color  (GimpColorSelection *selection,
                                              GimpRGB *color);

@@ -114,7 +114,7 @@

selection: A GimpColorSelection widget.
color: Return location for the selection's current color. -

gimp_color_selection_set_old_color ()

void        gimp_color_selection_set_old_color
+

gimp_color_selection_set_old_color ()

void        gimp_color_selection_set_old_color
                                             (GimpColorSelection *selection,
                                              const 
selection: A GimpColorSelection widget.
color: The color to set as old color. -

gimp_color_selection_get_old_color ()

void        gimp_color_selection_get_old_color
+


gimp_color_selection_reset ()

void        gimp_color_selection_reset      (GimpColorSelection *selection);

+


gimp_color_selection_reset ()

void        gimp_color_selection_reset      (GimpColorSelection *selection);

Sets the GimpColorSelection's current color to its old color.

selection: A GimpColorSelection widget. -

gimp_color_selection_color_changed ()

void        gimp_color_selection_color_changed
+

gimp_color_selection_color_changed ()

void        gimp_color_selection_color_changed
                                             (GimpColorSelection *selection);

Emits the "color_changed" signal.

selection: A GimpColorSelection widget. -

Signals

The "color-changed" signal

void        user_function                  (GimpColorSelection *gimpcolorselection,
+

Signals

The "color-changed" signal

void        user_function                  (GimpColorSelection *gimpcolorselection,
                                             gpointer user_data);

gimpcolorselection:the object which received the signal. diff -uraN gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpColorSelector.html gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpColorSelector.html --- gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpColorSelector.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpColorSelector.html 2004-12-28 16:59:56.000000000 +0100 @@ -67,7 +67,7 @@ void gimp_color_selector_channel_changed (GimpColorSelector *selector); -

Object Hierarchy

+

Object Hierarchy

 
   GObject
    +----GtkObject
@@ -79,9 +79,9 @@
                                        +----GimpColorNotebook
                                        +----GimpColorScales
                                        +----GimpColorSelect
-

Implemented Interfaces

+

Implemented Interfaces

GimpColorSelector implements - AtkImplementorIface.

Signal Prototypes

+ AtkImplementorIface.

Signal Prototypes

 
 "channel-changed"
             void        user_function      (GimpColorSelector *gimpcolorselector,
@@ -92,18 +92,18 @@
                                             gpointer arg1,
                                             gpointer arg2,
                                             gpointer user_data);
-

Description

+

Description

Functions and definitions for creating pluggable GIMP color selector modules. -

Details

struct GimpColorSelector

struct GimpColorSelector;

+

Details

struct GimpColorSelector

struct GimpColorSelector;

-


GIMP_COLOR_SELECTOR_SIZE

#define GIMP_COLOR_SELECTOR_SIZE      150
+


GIMP_COLOR_SELECTOR_SIZE

#define GIMP_COLOR_SELECTOR_SIZE      150
 

The suggested size for a color area in a GimpColorSelector implementation. -


GIMP_COLOR_SELECTOR_BAR_SIZE

#define GIMP_COLOR_SELECTOR_BAR_SIZE  15
+


GIMP_COLOR_SELECTOR_BAR_SIZE

#define GIMP_COLOR_SELECTOR_BAR_SIZE  15
 

The suggested width for a color bar in a GimpColorSelector implementation. -


enum GimpColorSelectorChannel

typedef enum
+


enum GimpColorSelectorChannel

typedef enum
 {
   GIMP_COLOR_SELECTOR_HUE,
   GIMP_COLOR_SELECTOR_SATURATION,
@@ -123,7 +123,7 @@
 
GIMP_COLOR_SELECTOR_BLUEthe blue channel
GIMP_COLOR_SELECTOR_ALPHAthe alpha channel -

gimp_color_selector_new ()

GtkWidget*  gimp_color_selector_new         (GType selector_type,
+

gimp_color_selector_new ()

GtkWidget*  gimp_color_selector_new         (GType selector_type,
                                              const GimpRGB *rgb,
@@ -139,7 +139,7 @@
 Returns :
 
 
-

gimp_color_selector_set_toggles_visible ()

void        gimp_color_selector_set_toggles_visible
+

gimp_color_selector_set_toggles_visible ()

void        gimp_color_selector_set_toggles_visible
                                             (GimpColorSelector *selector,
                                              gboolean visible);

@@ -147,7 +147,7 @@ visible: -


gimp_color_selector_set_toggles_sensitive ()

void        gimp_color_selector_set_toggles_sensitive
+

gimp_color_selector_set_toggles_sensitive ()

void        gimp_color_selector_set_toggles_sensitive
                                             (GimpColorSelector *selector,
                                              gboolean sensitive);

@@ -155,7 +155,7 @@ sensitive: -


gimp_color_selector_set_show_alpha ()

void        gimp_color_selector_set_show_alpha
+

gimp_color_selector_set_show_alpha ()

void        gimp_color_selector_set_show_alpha
                                             (GimpColorSelector *selector,
                                              gboolean show_alpha);

@@ -163,7 +163,7 @@ show_alpha: -


gimp_color_selector_set_color ()

void        gimp_color_selector_set_color   (GimpColorSelector *selector,
+

gimp_color_selector_set_color ()

void        gimp_color_selector_set_color   (GimpColorSelector *selector,
                                              const GimpRGB *rgb,
@@ -176,33 +176,33 @@
 hsv:
 
 
-

gimp_color_selector_set_channel ()

void        gimp_color_selector_set_channel (GimpColorSelector *selector,
+

gimp_color_selector_set_channel ()

void        gimp_color_selector_set_channel (GimpColorSelector *selector,
                                              GimpColorSelectorChannel channel);

selector:
channel: -

gimp_color_selector_color_changed ()

void        gimp_color_selector_color_changed
+

gimp_color_selector_color_changed ()

void        gimp_color_selector_color_changed
                                             (GimpColorSelector *selector);

selector: -

gimp_color_selector_channel_changed ()

void        gimp_color_selector_channel_changed
+

gimp_color_selector_channel_changed ()

void        gimp_color_selector_channel_changed
                                             (GimpColorSelector *selector);

selector: -

Signals

The "channel-changed" signal

void        user_function                  (GimpColorSelector *gimpcolorselector,
+

Signals

The "channel-changed" signal

void        user_function                  (GimpColorSelector *gimpcolorselector,
                                             gint arg1,
                                             gpointer user_data);

gimpcolorselector:the object which received the signal.
arg1: -
user_data:user data set when the signal handler was connected.

The "color-changed" signal

void        user_function                  (GimpColorSelector *gimpcolorselector,
+user_data:user data set when the signal handler was connected.

The "color-changed" signal

void        user_function                  (GimpColorSelector *gimpcolorselector,
                                             gpointer arg1,
                                             gpointer arg2,
                                             gpointer user_data);

@@ -211,7 +211,7 @@ arg1: arg2: -user_data:user data set when the signal handler was connected.

See Also

+user_data:user data set when the signal handler was connected.

See Also

GModule

GTypeModule diff -uraN gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpController.html gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpController.html --- gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpController.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpController.html 2004-12-28 16:59:56.000000000 +0100 @@ -48,29 +48,29 @@ gboolean gimp_controller_event (GimpController *controller, const GimpControllerEvent *event); -

Object Hierarchy

+

Object Hierarchy

 
   GObject
    +----GimpController
-

Properties

+

Properties

 
   "name"                 gchararray           : Read / Write / Construct
   "state"                gchararray           : Read / Write / Construct
-

Signal Prototypes

+

Signal Prototypes

 
 "event"     gboolean    user_function      (GimpController *gimpcontroller,
                                             gpointer arg1,
                                             gpointer user_data);
-

Description

+

Description

An abstract interface for implementing arbitrary input controllers. -

Details

enum GimpControllerEventType

typedef enum
+

Details

enum GimpControllerEventType

typedef enum
 {
   GIMP_CONTROLLER_EVENT_TRIGGER,
   GIMP_CONTROLLER_EVENT_VALUE
 } GimpControllerEventType;
 

-


struct GimpControllerEventAny

struct GimpControllerEventAny {
+


struct GimpControllerEventAny

struct GimpControllerEventAny {
 
   GimpControllerEventType  type;
   GimpController          *source;
@@ -78,7 +78,7 @@
 };
 

-


struct GimpControllerEventTrigger

struct GimpControllerEventTrigger {
+


struct GimpControllerEventTrigger

struct GimpControllerEventTrigger {
 
   GimpControllerEventType  type;
   GimpController          *source;
@@ -86,7 +86,7 @@
 };
 

-


struct GimpControllerEventValue

struct GimpControllerEventValue {
+


struct GimpControllerEventValue

struct GimpControllerEventValue {
 
   GimpControllerEventType  type;
   GimpController          *source;
@@ -95,7 +95,7 @@
 };
 

-


union GimpControllerEvent

union GimpControllerEvent
+


union GimpControllerEvent

union GimpControllerEvent
 {
   GimpControllerEventType    type;
   GimpControllerEventAny     any;
@@ -104,21 +104,21 @@
 };
 

-


struct GimpController

struct GimpController;

+


struct GimpController

struct GimpController;

-


gimp_controller_new ()

GimpController* gimp_controller_new         (GType controller_type);

+


gimp_controller_new ()

GimpController* gimp_controller_new         (GType controller_type);

controller_type:
Returns : -

gimp_controller_get_n_events ()

gint        gimp_controller_get_n_events    (GimpController *controller);

+


gimp_controller_get_n_events ()

gint        gimp_controller_get_n_events    (GimpController *controller);

controller:
Returns : -

gimp_controller_get_event_name ()

const gchar* gimp_controller_get_event_name (GimpController *controller,
+

gimp_controller_get_event_name ()

const gchar* gimp_controller_get_event_name (GimpController *controller,
                                              gint event_id);

controller: @@ -126,7 +126,7 @@
Returns : -

gimp_controller_get_event_blurb ()

const gchar* gimp_controller_get_event_blurb
+

gimp_controller_get_event_blurb ()

const gchar* gimp_controller_get_event_blurb
                                             (GimpController *controller,
                                              gint event_id);

@@ -135,7 +135,7 @@ Returns : -


gimp_controller_event ()

gboolean    gimp_controller_event           (GimpController *controller,
+

gimp_controller_event ()

gboolean    gimp_controller_event           (GimpController *controller,
                                              const GimpControllerEvent *event);

controller: @@ -143,7 +143,7 @@
Returns : -

Properties

"name" (gchararray : Read / Write / Construct)

"state" (gchararray : Read / Write / Construct)

Signals

The "event" signal

gboolean    user_function                  (GimpController *gimpcontroller,
+

Properties

"name" (gchararray : Read / Write / Construct)

"state" (gchararray : Read / Write / Construct)

Signals

The "event" signal

gboolean    user_function                  (GimpController *gimpcontroller,
                                             gpointer arg1,
                                             gpointer user_data);

diff -uraN gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpDialog.html gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpDialog.html --- gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpDialog.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpDialog.html 2004-12-28 16:59:56.000000000 +0100 @@ -53,7 +53,7 @@ gint gimp_dialog_run (GimpDialog *dialog); void gimp_dialogs_show_help_button (gboolean show); -

Object Hierarchy

+

Object Hierarchy

 
   GObject
    +----GtkObject
@@ -63,17 +63,17 @@
                            +----GtkWindow
                                  +----GtkDialog
                                        +----GimpDialog
-

Implemented Interfaces

+

Implemented Interfaces

GimpDialog implements - AtkImplementorIface.

Properties

+ AtkImplementorIface.

Properties

 
   "help-func"            gpointer             : Read / Write / Construct Only
   "help-id"              gchararray           : Read / Write / Construct Only
-

Description

+

Description

-

Details

struct GimpDialog

struct GimpDialog;

+

Details

struct GimpDialog

struct GimpDialog;

-


gimp_dialog_new ()

GtkWidget*  gimp_dialog_new                 (const gchar *title,
+


gimp_dialog_new ()

GtkWidget*  gimp_dialog_new                 (const gchar *title,
                                              const gchar *role,
                                              GtkWidget *parent,
                                              GtkDialogFlags flags,
@@ -99,7 +99,7 @@
 ...:          A NULL-terminated va_list destribing the
                action_area buttons.
 Returns : A GimpDialog.
-

gimp_dialog_new_valist ()

GtkWidget*  gimp_dialog_new_valist          (const gchar *title,
+

gimp_dialog_new_valist ()

GtkWidget*  gimp_dialog_new_valist          (const gchar *title,
                                              const gchar *role,
                                              GtkWidget *parent,
                                              GtkDialogFlags flags,
@@ -122,22 +122,22 @@
 help_id:      The help_id which will be passed to help_func.
 args:         A va_list destribing the action_area buttons.
 Returns : A GimpDialog.
-

gimp_dialog_add_buttons_valist ()

void        gimp_dialog_add_buttons_valist  (GimpDialog *dialog,
+

gimp_dialog_add_buttons_valist ()

void        gimp_dialog_add_buttons_valist  (GimpDialog *dialog,
                                              va_list args);

This function is essentially the same as gtk_dialog_add_buttons() except it takes a va_list instead of '...'

dialog: The dialog to add buttons to.
args: The buttons as va_list. -

gimp_dialog_run ()

gint        gimp_dialog_run                 (GimpDialog *dialog);

+


gimp_dialog_run ()

gint        gimp_dialog_run                 (GimpDialog *dialog);

This function does exactly the same as gtk_dialog_run() except it does not make the dialog modal while the GMainLoop is running.

dialog: a GimpDialog
Returns : response ID -

gimp_dialogs_show_help_button ()

void        gimp_dialogs_show_help_button   (gboolean show);

+


gimp_dialogs_show_help_button ()

void        gimp_dialogs_show_help_button   (gboolean show);

This function is for internal use only.

show: whether a help button should be added when creating a GimpDialog

Since GIMP 2.2 -

Properties

"help-func" (gpointer : Read / Write / Construct Only)

"help-id" (gchararray : Read / Write / Construct Only)

+

Properties

"help-func" (gpointer : Read / Write / Construct Only)

"help-id" (gchararray : Read / Write / Construct Only)

diff -uraN gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpFileEntry.html gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpFileEntry.html --- gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpFileEntry.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpFileEntry.html 2004-12-28 16:59:56.000000000 +0100 @@ -41,7 +41,7 @@ void gimp_file_entry_set_filename (GimpFileEntry *entry, const gchar *filename); -

Object Hierarchy

+

Object Hierarchy

 
   GObject
    +----GtkObject
@@ -50,14 +50,14 @@
                      +----GtkBox
                            +----GtkHBox
                                  +----GimpFileEntry
-

Implemented Interfaces

+

Implemented Interfaces

GimpFileEntry implements - AtkImplementorIface.

Signal Prototypes

+ AtkImplementorIface.

Signal Prototypes

 
 "filename-changed"
             void        user_function      (GimpFileEntry *,
                                             gpointer user_data);
-

Description

+

Description

This widget is used to enter filenames or directories.

There is a GtkEntry for entering the filename manually and a "..." @@ -72,9 +72,9 @@

Whenever the user changes the filename, the "filename_changed" signal will be emitted. -

Details

struct GimpFileEntry

struct GimpFileEntry;

+

Details

struct GimpFileEntry

struct GimpFileEntry;

-


gimp_file_entry_new ()

GtkWidget*  gimp_file_entry_new             (const gchar *title,
+


gimp_file_entry_new ()

GtkWidget*  gimp_file_entry_new             (const gchar *title,
                                              const gchar *filename,
                                              gboolean dir_only,
                                              gboolean check_valid);

@@ -86,12 +86,12 @@ check_valid: TRUE if the widget should check if the entered file really exists. Returns : A pointer to the new GimpFileEntry widget. -


gimp_file_entry_get_filename ()

gchar*      gimp_file_entry_get_filename    (GimpFileEntry *entry);

+


gimp_file_entry_get_filename ()

gchar*      gimp_file_entry_get_filename    (GimpFileEntry *entry);

Note that you have to g_free() the returned string.

entry: The file entry you want to know the filename from.
Returns : The file or directory the user has entered. -

gimp_file_entry_set_filename ()

void        gimp_file_entry_set_filename    (GimpFileEntry *entry,
+

gimp_file_entry_set_filename ()

void        gimp_file_entry_set_filename    (GimpFileEntry *entry,
                                              const gchar *filename);

If you specified check_valid as TRUE in gimp_file_entry_new() the GimpFileEntry will immediately check the validity of the file @@ -99,10 +99,10 @@

entry: The file entry you want to set the filename for.
filename: The new filename. -

Signals

The "filename-changed" signal

void        user_function                  (GimpFileEntry *,
+

Signals

The "filename-changed" signal

void        user_function                  (GimpFileEntry *,
                                             gpointer user_data);

This signal is emitted whenever the user changes the filename.

-

user_data:user data set when the signal handler was connected.

See Also

+

user_data:user data set when the signal handler was connected.

See Also

GimpPathEditor

diff -uraN gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpFrame.html gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpFrame.html --- gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpFrame.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpFrame.html 2004-12-28 16:59:56.000000000 +0100 @@ -35,7 +35,7 @@ struct GimpFrame; GtkWidget* gimp_frame_new (const gchar *label); -

Object Hierarchy

+

Object Hierarchy

 
   GObject
    +----GtkObject
@@ -44,17 +44,17 @@
                      +----GtkBin
                            +----GtkFrame
                                  +----GimpFrame
-

Implemented Interfaces

+

Implemented Interfaces

GimpFrame implements - AtkImplementorIface.

Style Properties

+ AtkImplementorIface.

Style Properties

 
   "label-bold"           gboolean             : Read
   "label-spacing"        gint                 : Read
-

Description

+

Description

A widget providing a HIG-compliant subclass of GtkFrame. -

Details

struct GimpFrame

struct GimpFrame;

+

Details

struct GimpFrame

struct GimpFrame;

-


gimp_frame_new ()

GtkWidget*  gimp_frame_new                  (const gchar *label);

+


gimp_frame_new ()

GtkWidget*  gimp_frame_new                  (const gchar *label);

Creates a GimpFrame widget. A GimpFrame is a HIG-compliant variant of GtkFrame. It doesn't render a frame at all but otherwise behaves like a frame. The frame's title is rendered in @@ -65,4 +65,4 @@ Returns : a new GimpFrame widget

Since GIMP 2.2 -

Style Properties

"label-bold" (gboolean : Read)

"label-spacing" (gint : Read)

+

Style Properties

"label-bold" (gboolean : Read)

"label-spacing" (gint : Read)

diff -uraN gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpIntComboBox.html gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpIntComboBox.html --- gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpIntComboBox.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpIntComboBox.html 2004-12-28 16:59:56.000000000 +0100 @@ -54,7 +54,7 @@ GCallback callback, gpointer data); -

Object Hierarchy

+

Object Hierarchy

 
   GObject
    +----GtkObject
@@ -63,13 +63,13 @@
                      +----GtkBin
                            +----GtkComboBox
                                  +----GimpIntComboBox
-

Implemented Interfaces

+

Implemented Interfaces

GimpIntComboBox implements - AtkImplementorIface and GtkCellLayout.

Description

+ AtkImplementorIface and GtkCellLayout.

Description

A widget providing a popup menu of integer values (e.g. enums). -

Details

struct GimpIntComboBox

struct GimpIntComboBox;

+

Details

struct GimpIntComboBox

struct GimpIntComboBox;

-


gimp_int_combo_box_new ()

GtkWidget*  gimp_int_combo_box_new          (const gchar *first_label,
+


gimp_int_combo_box_new ()

GtkWidget*  gimp_int_combo_box_new          (const gchar *first_label,
                                              gint first_value,
                                              ...);

Creates a GtkComboBox that has integer values associated with each @@ -82,7 +82,7 @@ Returns : a new GimpIntComboBox.

Since GIMP 2.2 -


gimp_int_combo_box_new_valist ()

GtkWidget*  gimp_int_combo_box_new_valist   (const gchar *first_label,
+


gimp_int_combo_box_new_valist ()

GtkWidget*  gimp_int_combo_box_new_valist   (const gchar *first_label,
                                              gint first_value,
                                              va_list values);

A variant of gimp_int_combo_box_new() that takes a va_list of @@ -94,7 +94,7 @@ Returns : a new GimpIntComboBox.

Since GIMP 2.2 -


gimp_int_combo_box_new_array ()

GtkWidget*  gimp_int_combo_box_new_array    (gint n_values,
+


gimp_int_combo_box_new_array ()

GtkWidget*  gimp_int_combo_box_new_array    (gint n_values,
                                              const gchar *labels[]);

A variant of gimp_int_combo_box_new() that takes an array of labels. The array indices are used as values.

@@ -104,7 +104,7 @@ Returns : a new GimpIntComboBox.

Since GIMP 2.2 -


gimp_int_combo_box_prepend ()

void        gimp_int_combo_box_prepend      (GimpIntComboBox *combo_box,
+


gimp_int_combo_box_prepend ()

void        gimp_int_combo_box_prepend      (GimpIntComboBox *combo_box,
                                              ...);

This function provides a convenient way to prepend items to a GimpIntComboBox. It prepends a row to the combo_box's list store @@ -115,7 +115,7 @@

combo_box: a GimpIntComboBox
...: pairs of column number and value, terminated with -1

Since GIMP 2.2 -


gimp_int_combo_box_append ()

void        gimp_int_combo_box_append       (GimpIntComboBox *combo_box,
+


gimp_int_combo_box_append ()

void        gimp_int_combo_box_append       (GimpIntComboBox *combo_box,
                                              ...);

This function provides a convenient way to append items to a GimpIntComboBox. It appends a row to the combo_box's list store @@ -126,7 +126,7 @@

combo_box: a GimpIntComboBox
...: pairs of column number and value, terminated with -1

Since GIMP 2.2 -


gimp_int_combo_box_set_active ()

gboolean    gimp_int_combo_box_set_active   (GimpIntComboBox *combo_box,
+


gimp_int_combo_box_set_active ()

gboolean    gimp_int_combo_box_set_active   (GimpIntComboBox *combo_box,
                                              gint value);

Looks up the item that belongs to the given value and makes it the selected item in the combo_box.

@@ -137,7 +137,7 @@ this value.

Since GIMP 2.2 -


gimp_int_combo_box_get_active ()

gboolean    gimp_int_combo_box_get_active   (GimpIntComboBox *combo_box,
+


gimp_int_combo_box_get_active ()

gboolean    gimp_int_combo_box_get_active   (GimpIntComboBox *combo_box,
                                              gint *value);

Retrieves the value of the selected (active) item in the combo_box.

@@ -147,7 +147,7 @@ active.

Since GIMP 2.2 -


gimp_int_combo_box_connect ()

gulong      gimp_int_combo_box_connect      (GimpIntComboBox *combo_box,
+


gimp_int_combo_box_connect ()

gulong      gimp_int_combo_box_connect      (GimpIntComboBox *combo_box,
                                              gint value,
                                              GCallback callback,
                                              gpointer data);

diff -uraN gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpIntStore.html gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpIntStore.html --- gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpIntStore.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpIntStore.html 2004-12-28 16:59:56.000000000 +0100 @@ -39,18 +39,18 @@ gint value, GtkTreeIter *iter); -

Object Hierarchy

+

Object Hierarchy

 
   GObject
    +----GtkListStore
          +----GimpIntStore
-

Implemented Interfaces

+

Implemented Interfaces

GimpIntStore implements - GtkTreeModel, GtkTreeDragSource, GtkTreeDragDest and GtkTreeSortable.

Description

+ GtkTreeModel, GtkTreeDragSource, GtkTreeDragDest and GtkTreeSortable.

Description

A model for integer based name-value pairs (e.g. enums) -

Details

struct GimpIntStore

struct GimpIntStore;

+

Details

struct GimpIntStore

struct GimpIntStore;

-


enum GimpIntStoreColumns

typedef enum
+


enum GimpIntStoreColumns

typedef enum
 {
   GIMP_INT_STORE_VALUE,
   GIMP_INT_STORE_LABEL,
@@ -61,7 +61,7 @@
 } GimpIntStoreColumns;
 

-


gimp_int_store_new ()

GtkListStore* gimp_int_store_new            (void);

+


gimp_int_store_new ()

GtkListStore* gimp_int_store_new            (void);

Creates a GtkListStore with a number of useful columns. GimpIntStore is especially useful if the items you want to store are identified using an integer value.

@@ -69,7 +69,7 @@

Returns : a new GimpIntStore.

Since GIMP 2.2 -


gimp_int_store_lookup_by_value ()

gboolean    gimp_int_store_lookup_by_value  (GtkTreeModel *model,
+


gimp_int_store_lookup_by_value ()

gboolean    gimp_int_store_lookup_by_value  (GtkTreeModel *model,
                                              gint value,
                                              GtkTreeIter *iter);

Iterate over the model looking for value.

diff -uraN gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpMemsizeEntry.html gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpMemsizeEntry.html --- gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpMemsizeEntry.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpMemsizeEntry.html 2004-12-28 16:59:56.000000000 +0100 @@ -40,7 +40,7 @@ guint64 value); guint64 gimp_memsize_entry_get_value (GimpMemsizeEntry *entry); -

Object Hierarchy

+

Object Hierarchy

 
   GObject
    +----GtkObject
@@ -49,20 +49,20 @@
                      +----GtkBox
                            +----GtkHBox
                                  +----GimpMemsizeEntry
-

Implemented Interfaces

+

Implemented Interfaces

GimpMemsizeEntry implements - AtkImplementorIface.

Signal Prototypes

+ AtkImplementorIface.

Signal Prototypes

 
 "value-changed"
             void        user_function      (GimpMemsizeEntry *gimpmemsizeentry,
                                             gpointer user_data);
-

Description

+

Description

Similar to a GimpSizeEntry but instead of lengths, this widget is used to let the user enter memory sizes. An option menu allows to switch between Kilobytes, Megabytes and Gigabytes. Used in the GIMP preferences dialog. -

Details

struct GimpMemsizeEntry

struct GimpMemsizeEntry;

+

Details

struct GimpMemsizeEntry

struct GimpMemsizeEntry;

The GimpSizeEntry struct is considered private. -


gimp_memsize_entry_new ()

GtkWidget*  gimp_memsize_entry_new          (guint64 value,
+


gimp_memsize_entry_new ()

GtkWidget*  gimp_memsize_entry_new          (guint64 value,
                                              guint64 lower,
                                              guint64 upper);

Creates a new GimpMemsizeEntry which is a GtkHBox with a GtkSpinButton @@ -72,19 +72,19 @@ lower: the lower limit for the value (in Bytes) upper: the upper limit for the value (in Bytes) Returns : Pointer to the new GimpMemsizeEntry. -


gimp_memsize_entry_set_value ()

void        gimp_memsize_entry_set_value    (GimpMemsizeEntry *entry,
+

gimp_memsize_entry_set_value ()

void        gimp_memsize_entry_set_value    (GimpMemsizeEntry *entry,
                                              guint64 value);

Sets the entry's value. Please note that the GimpMemsizeEntry rounds the value to full Kilobytes.

entry: a GimpMemsizeEntry
value: the new value (in Bytes) -

gimp_memsize_entry_get_value ()

guint64     gimp_memsize_entry_get_value    (GimpMemsizeEntry *entry);

+


gimp_memsize_entry_get_value ()

guint64     gimp_memsize_entry_get_value    (GimpMemsizeEntry *entry);

Retrieves the current value from a GimpMemsizeEntry.

entry: a GimpMemsizeEntry
Returns : the current value of entry (in Bytes). -

Signals

The "value-changed" signal

void        user_function                  (GimpMemsizeEntry *gimpmemsizeentry,
+

Signals

The "value-changed" signal

void        user_function                  (GimpMemsizeEntry *gimpmemsizeentry,
                                             gpointer user_data);

gimpmemsizeentry:the object which received the signal. diff -uraN gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpOffsetArea.html gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpOffsetArea.html --- gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpOffsetArea.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpOffsetArea.html 2004-12-28 16:59:56.000000000 +0100 @@ -44,27 +44,27 @@ void gimp_offset_area_set_pixbuf (GimpOffsetArea *offset_area, GdkPixbuf *pixbuf); -

Object Hierarchy

+

Object Hierarchy

 
   GObject
    +----GtkObject
          +----GtkWidget
                +----GtkDrawingArea
                      +----GimpOffsetArea
-

Implemented Interfaces

+

Implemented Interfaces

GimpOffsetArea implements - AtkImplementorIface.

Signal Prototypes

+ AtkImplementorIface.

Signal Prototypes

 
 "offsets-changed"
             void        user_function      (GimpOffsetArea *gimpoffsetarea,
                                             gint arg1,
                                             gint arg2,
                                             gpointer user_data);
-

Description

+

Description

-

Details

struct GimpOffsetArea

struct GimpOffsetArea;

+

Details

struct GimpOffsetArea

struct GimpOffsetArea;

-


gimp_offset_area_new ()

GtkWidget*  gimp_offset_area_new            (gint orig_width,
+


gimp_offset_area_new ()

GtkWidget*  gimp_offset_area_new            (gint orig_width,
                                              gint orig_height);

Creates a new GimpOffsetArea widget. A GimpOffsetArea can be used when resizing an image or a drawable to allow the user to interactively @@ -73,7 +73,7 @@

orig_width: the original width
orig_height: the original height
Returns : the new GimpOffsetArea widget. -

gimp_offset_area_set_size ()

void        gimp_offset_area_set_size       (GimpOffsetArea *offset_area,
+

gimp_offset_area_set_size ()

void        gimp_offset_area_set_size       (GimpOffsetArea *offset_area,
                                              gint width,
                                              gint height);

Sets the size of the image/drawable displayed by the GimpOffsetArea. @@ -83,7 +83,7 @@

offset_area: a GimpOffsetArea.
width: the new width
height: the new height -

gimp_offset_area_set_offsets ()

void        gimp_offset_area_set_offsets    (GimpOffsetArea *offset_area,
+

gimp_offset_area_set_offsets ()

void        gimp_offset_area_set_offsets    (GimpOffsetArea *offset_area,
                                              gint offset_x,
                                              gint offset_y);

Sets the offsets of the image/drawable displayed by the GimpOffsetArea. @@ -92,7 +92,7 @@

offset_area: a GimpOffsetArea.
offset_x: the X offset
offset_y: the Y offset -

gimp_offset_area_set_pixbuf ()

void        gimp_offset_area_set_pixbuf     (GimpOffsetArea *offset_area,
+

gimp_offset_area_set_pixbuf ()

void        gimp_offset_area_set_pixbuf     (GimpOffsetArea *offset_area,
                                              GdkPixbuf *pixbuf);

Sets the pixbuf which represents the original image/drawable which is being offset.

@@ -100,7 +100,7 @@

offset_area: a GimpOffsetArea.
pixbuf: a GdkPixbuf.

Since GIMP 2.2 -

Signals

The "offsets-changed" signal

void        user_function                  (GimpOffsetArea *gimpoffsetarea,
+

Signals

The "offsets-changed" signal

void        user_function                  (GimpOffsetArea *gimpoffsetarea,
                                             gint arg1,
                                             gint arg2,
                                             gpointer user_data);

diff -uraN gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpPathEditor.html gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpPathEditor.html --- gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpPathEditor.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpPathEditor.html 2004-12-28 16:59:56.000000000 +0100 @@ -51,7 +51,7 @@ const gchar *directory, gboolean writable); -

Object Hierarchy

+

Object Hierarchy

 
   GObject
    +----GtkObject
@@ -60,9 +60,9 @@
                      +----GtkBox
                            +----GtkVBox
                                  +----GimpPathEditor
-

Implemented Interfaces

+

Implemented Interfaces

GimpPathEditor implements - AtkImplementorIface.

Signal Prototypes

+ AtkImplementorIface.

Signal Prototypes

 
 "path-changed"
             void        user_function      (GimpPathEditor *,
@@ -70,7 +70,7 @@
 "writable-changed"
             void        user_function      (GimpPathEditor *,
                                             gpointer user_data);
-

Description

+

Description

This widget is used to edit file search paths.

It shows a list of all directories which are in the search path. You @@ -82,9 +82,9 @@

Whenever the user adds, deletes, changes or reorders a directory of the search path, the "path_changed" signal will be emitted. -

Details

struct GimpPathEditor

struct GimpPathEditor;

+

Details

struct GimpPathEditor

struct GimpPathEditor;

-


gimp_path_editor_new ()

GtkWidget*  gimp_path_editor_new            (const gchar *filesel_title,
+


gimp_path_editor_new ()

GtkWidget*  gimp_path_editor_new            (const gchar *filesel_title,
                                              const gchar *path);

Creates a new GimpPathEditor widget.

@@ -95,7 +95,7 @@ popped up by the attached GimpFileSelection. path: The initial search path. Returns : A pointer to the new GimpPathEditor widget. -


gimp_path_editor_get_path ()

gchar*      gimp_path_editor_get_path       (GimpPathEditor *editor);

+


gimp_path_editor_get_path ()

gchar*      gimp_path_editor_get_path       (GimpPathEditor *editor);

The elements of the returned search path string are separated with the G_SEARCHPATH_SEPARATOR character.

@@ -103,21 +103,21 @@

editor: The path editor you want to get the search path from.
Returns : The search path the user has selected in the path editor. -

gimp_path_editor_set_path ()

void        gimp_path_editor_set_path       (GimpPathEditor *editor,
+

gimp_path_editor_set_path ()

void        gimp_path_editor_set_path       (GimpPathEditor *editor,
                                              const gchar *path);

The elements of the initial search path must be separated with the G_SEARCHPATH_SEPARATOR character.

editor: The path editor you want to set the search path from.
path: The new path to set. -

gimp_path_editor_get_writable_path ()

gchar*      gimp_path_editor_get_writable_path
+

gimp_path_editor_get_writable_path ()

gchar*      gimp_path_editor_get_writable_path
                                             (GimpPathEditor *editor);

editor:
Returns : -

gimp_path_editor_set_writable_path ()

void        gimp_path_editor_set_writable_path
+

gimp_path_editor_set_writable_path ()

void        gimp_path_editor_set_writable_path
                                             (GimpPathEditor *editor,
                                              const gchar *path);

@@ -125,7 +125,7 @@ path: -


gimp_path_editor_get_dir_writable ()

gboolean    gimp_path_editor_get_dir_writable
+

gimp_path_editor_get_dir_writable ()

gboolean    gimp_path_editor_get_dir_writable
                                             (GimpPathEditor *editor,
                                              const gchar *directory);

@@ -134,7 +134,7 @@ Returns : -


gimp_path_editor_set_dir_writable ()

void        gimp_path_editor_set_dir_writable
+

gimp_path_editor_set_dir_writable ()

void        gimp_path_editor_set_dir_writable
                                             (GimpPathEditor *editor,
                                              const gchar *directory,
                                              gboolean writable);

@@ -144,18 +144,18 @@ writable: -

Signals

The "path-changed" signal

void        user_function                  (GimpPathEditor *,
+

Signals

The "path-changed" signal

void        user_function                  (GimpPathEditor *,
                                             gpointer user_data);

This signal is emitted whenever the user adds, deletes, modifies or reorders an element of the search path.

-

user_data:user data set when the signal handler was connected.

The "writable-changed" signal

void        user_function                  (GimpPathEditor *,
+

user_data:user data set when the signal handler was connected.

The "writable-changed" signal

void        user_function                  (GimpPathEditor *,
                                             gpointer user_data);

This signal is emitted whenever the "writable" column of a directory is changed, either by the user clicking on it or by calling gimp_path_editor_set_dir_writable().

-

user_data:user data set when the signal handler was connected.

See Also

+

user_data:user data set when the signal handler was connected.

See Also

GimpFileEntry

G_SEARCHPATH_SEPARATOR diff -uraN gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpPickButton.html gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpPickButton.html --- gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpPickButton.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpPickButton.html 2004-12-28 16:59:56.000000000 +0100 @@ -35,7 +35,7 @@ struct GimpPickButton; GtkWidget* gimp_pick_button_new (void); -

Object Hierarchy

+

Object Hierarchy

 
   GObject
    +----GtkObject
@@ -44,25 +44,25 @@
                      +----GtkBin
                            +----GtkButton
                                  +----GimpPickButton
-

Implemented Interfaces

+

Implemented Interfaces

GimpPickButton implements - AtkImplementorIface.

Signal Prototypes

+ AtkImplementorIface.

Signal Prototypes

 
 "color-picked"
             void        user_function      (GimpPickButton *gimppickbutton,
                                             gpointer arg1,
                                             gpointer user_data);
-

Description

+

Description

GimpPickButton is a specialized button. When clicked, it changes the cursor to a color-picker pipette and allows the user to pick a color from any point on the screen. -

Details

struct GimpPickButton

struct GimpPickButton;

+

Details

struct GimpPickButton

struct GimpPickButton;

-


gimp_pick_button_new ()

GtkWidget*  gimp_pick_button_new            (void);

+


gimp_pick_button_new ()

GtkWidget*  gimp_pick_button_new            (void);

Creates a new GimpPickButton widget.

Returns : A new GimpPickButton widget. -

Signals

The "color-picked" signal

void        user_function                  (GimpPickButton *gimppickbutton,
+

Signals

The "color-picked" signal

void        user_function                  (GimpPickButton *gimppickbutton,
                                             gpointer arg1,
                                             gpointer user_data);

diff -uraN gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpPixmap.html gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpPixmap.html --- gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpPixmap.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpPixmap.html 2004-12-28 16:59:56.000000000 +0100 @@ -37,7 +37,7 @@ void gimp_pixmap_set (GimpPixmap *pixmap, gchar **xpm_data); -

Object Hierarchy

+

Object Hierarchy

 
   GObject
    +----GtkObject
@@ -45,9 +45,9 @@
                +----GtkMisc
                      +----GtkImage
                            +----GimpPixmap
-

Implemented Interfaces

+

Implemented Interfaces

GimpPixmap implements - AtkImplementorIface.

Description

+ AtkImplementorIface.

Description

Widget which creates a GtkPixmap from XPM data.

Use this widget instead of GtkPixmap if you don't want to worry about @@ -56,20 +56,20 @@ Note that the drawback of the easy interface is that the actual GdkPixmap and it's mask have to be constructed every time you call gimp_pixmap_new() and cannot be cached in memory without doing bad hacks. -

Details

struct GimpPixmap

struct GimpPixmap;

Warning

GimpPixmap is deprecated and should not be used in newly-written code.

+

Details

struct GimpPixmap

struct GimpPixmap;

Warning

GimpPixmap is deprecated and should not be used in newly-written code.

-


gimp_pixmap_new ()

GtkWidget*  gimp_pixmap_new                 (gchar **xpm_data);

Warning

gimp_pixmap_new is deprecated and should not be used in newly-written code.

+


gimp_pixmap_new ()

GtkWidget*  gimp_pixmap_new                 (gchar **xpm_data);

Warning

gimp_pixmap_new is deprecated and should not be used in newly-written code.

Creates a new GimpPixmap widget.

xpm_data: A pointer to a XPM data structure as found in XPM files.
Returns : A pointer to the new GimpPixmap widget. -

gimp_pixmap_set ()

void        gimp_pixmap_set                 (GimpPixmap *pixmap,
+

gimp_pixmap_set ()

void        gimp_pixmap_set                 (GimpPixmap *pixmap,
                                              gchar **xpm_data);

Warning

gimp_pixmap_set is deprecated and should not be used in newly-written code.

Sets a new image for an existing GimpPixmap widget.

pixmap: The pixmap widget you want to set the new xpm_data for.
xpm_data: A pointer to a XPM data structure as found in XPM files. -

See Also

+

See Also

gimp_pixmap_button_new()

GtkPixmap diff -uraN gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpPreviewArea.html gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpPreviewArea.html --- gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpPreviewArea.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpPreviewArea.html 2004-12-28 16:59:56.000000000 +0100 @@ -77,7 +77,7 @@ gint rowstride1, const guchar *buf2, gint rowstride2, - guchar *mask, + const guchar *mask, gint rowstride_mask); void gimp_preview_area_set_offsets (GimpPreviewArea *area, gint x, @@ -91,16 +91,16 @@ void gimp_preview_area_menu_popup (GimpPreviewArea *area, GdkEventButton *event); -

Object Hierarchy

+

Object Hierarchy

 
   GObject
    +----GtkObject
          +----GtkWidget
                +----GtkDrawingArea
                      +----GimpPreviewArea
-

Implemented Interfaces

+

Implemented Interfaces

GimpPreviewArea implements - AtkImplementorIface.

Properties

+ AtkImplementorIface.

Properties

 
   "check-size"           check-type"           GimpCheckType        : Read / Write
-

Description

+

Description

A general purpose preview widget which caches its pixel data. -

Details

struct GimpPreviewArea

struct GimpPreviewArea;

+

Details

struct GimpPreviewArea

struct GimpPreviewArea;

-


gimp_preview_area_new ()

GtkWidget*  gimp_preview_area_new           (void);

+


gimp_preview_area_new ()

GtkWidget*  gimp_preview_area_new           (void);

Returns : a new GimpPreviewArea widget. Since GIMP 2.2 -

gimp_preview_area_draw ()

void        gimp_preview_area_draw          (GimpPreviewArea *area,
+

gimp_preview_area_draw ()

void        gimp_preview_area_draw          (GimpPreviewArea *area,
                                              gint x,
                                              gint y,
                                              gint width,
@@ -128,8 +128,7 @@
 >GimpImageType type,
                                              const guchar *buf,
                                              gint rowstride);

-Draws buf on area and queues a redraw on the rectangle that -changed. +Draws buf on area and queues a redraw on the given rectangle.

Since GIMP 2.2

@@ -143,7 +142,7 @@ >GimpImageType of buf buf: a guchar buffer that contains the preview pixel data. rowstride: rowstride of buf -


gimp_preview_area_fill ()

void        gimp_preview_area_fill          (GimpPreviewArea *area,
+

gimp_preview_area_fill ()

void        gimp_preview_area_fill          (GimpPreviewArea *area,
                                              gint x,
                                              gint y,
                                              gint width,
@@ -151,7 +150,8 @@
                                              guchar red,
                                              guchar green,
                                              guchar blue);

-Fills the area in the given color. +Fills area in the given color and queues a redraw on the given +rectangle.

Since GIMP 2.2

@@ -160,10 +160,10 @@ y: y offset in preview width: buffer width height: buffer height -red: -green: -blue: -


gimp_preview_area_blend ()

void        gimp_preview_area_blend         (GimpPreviewArea *area,
+red:    red component of the fill color (0-255)
+green:  green component of the fill color (0-255)
+blue:   red component of the fill color (0-255)
+

gimp_preview_area_blend ()

void        gimp_preview_area_blend         (GimpPreviewArea *area,
                                              gint x,
                                              gint y,
                                              gint width,
@@ -176,8 +176,8 @@
                                              const guchar *buf2,
                                              gint rowstride2,
                                              guchar opacity);

-Blend buf1 on top of buf2 with the given opacity on the area -and queues a redraw on the rectangle that changed. +Composites buf1 on buf2 with the given opacity, draws the result +to area and queues a redraw on the given rectangle.

Since GIMP 2.2

@@ -190,13 +190,13 @@ href="../libgimpbase/libgimpbase-gimpbaseenums.html#GimpImageType" >GimpImageType of buf1 and buf2 buf1: a guchar buffer that contains the pixel data for - the first (on bottom) layer + the lower layer rowstride1: rowstride of buf1 buf2: a guchar buffer that contains the pixel data for - the second (on top) layer + the upper layer rowstride2: rowstride of buf2 opacity: The opacity of the first layer. -


gimp_preview_area_mask ()

void        gimp_preview_area_mask          (GimpPreviewArea *area,
+

gimp_preview_area_mask ()

void        gimp_preview_area_mask          (GimpPreviewArea *area,
                                              gint x,
                                              gint y,
                                              gint width,
@@ -208,10 +208,10 @@
                                              gint rowstride1,
                                              const guchar *buf2,
                                              gint rowstride2,
-                                             guchar *mask,
+                                             const guchar *mask,
                                              gint rowstride_mask);

-Blend buf1 on top of buf2 with the given mask on the area -and queues a redraw on the rectangle that changed. +Composites buf1 on buf2 with the given mask, draws the result on +area and queues a redraw on the given rectangle.

Since GIMP 2.2

@@ -224,15 +224,15 @@ href="../libgimpbase/libgimpbase-gimpbaseenums.html#GimpImageType" >GimpImageType of buf1 and buf2 buf1: a guchar buffer that contains the pixel data for - the first (on bottom) layer + the lower layer rowstride1: rowstride of buf1 buf2: a guchar buffer that contains the pixel data for - the second (on top) layer + the upper layer rowstride2: rowstride of buf2 mask: a guchar buffer representing the mask of the second layer. rowstride_mask: rowstride for the mask. -


gimp_preview_area_set_offsets ()

void        gimp_preview_area_set_offsets   (GimpPreviewArea *area,
+

gimp_preview_area_set_offsets ()

void        gimp_preview_area_set_offsets   (GimpPreviewArea *area,
                                              gint x,
                                              gint y);

Sets the offsets of the previewed area. This information is used @@ -242,7 +242,7 @@ x: horizontal offset y: vertical offset

Since GIMP 2.2 -


gimp_preview_area_set_colormap ()

void        gimp_preview_area_set_colormap  (GimpPreviewArea *area,
+


gimp_preview_area_set_colormap ()

void        gimp_preview_area_set_colormap  (GimpPreviewArea *area,
                                              const guchar *colormap,
                                              gint num_colors);

Sets the colormap for the GimpPreviewArea widget. You need to @@ -254,7 +254,7 @@

area: a GimpPreviewArea
colormap: a guchar buffer that contains the colormap
num_colors: the number of colors in the colormap -

gimp_preview_area_set_max_size ()

void        gimp_preview_area_set_max_size  (GimpPreviewArea *area,
+

gimp_preview_area_set_max_size ()

void        gimp_preview_area_set_max_size  (GimpPreviewArea *area,
                                              gint width,
                                              gint height);

Usually a GimpPreviewArea fills the size that it is @@ -266,7 +266,7 @@ width: the maximum width in pixels or -1 to unset the limit height: the maximum height in pixels or -1 to unset the limit

Since GIMP 2.2 -


gimp_preview_area_menu_popup ()

void        gimp_preview_area_menu_popup    (GimpPreviewArea *area,
+


gimp_preview_area_menu_popup ()

void        gimp_preview_area_menu_popup    (GimpPreviewArea *area,
                                              GdkEventButton *event);

Creates a popup menu that allows to configure the size and type of the checkerboard pattern that the area uses to visualize transparency.

@@ -274,7 +274,7 @@

area: a GimpPreviewArea
event: the button event that causes the menu to popup or NULL

Since GIMP 2.2 -

Properties

"check-size" (

Properties

"check-size" (GimpCheckSize : Read / Write)

"check-type" (gimp_preview_set_default_cursor (GimpPreview *preview, GdkCursor *cursor); -

Object Hierarchy

+

Object Hierarchy

 
   GObject
    +----GtkObject
@@ -64,31 +64,31 @@
                      +----GtkBox
                            +----GtkVBox
                                  +----GimpPreview
-

Implemented Interfaces

+

Implemented Interfaces

GimpPreview implements - AtkImplementorIface.

Properties

+ AtkImplementorIface.

Properties

 
   "update"               gboolean             : Read / Write / Construct
-

Style Properties

+

Style Properties

 
   "size"                 gint                 : Read
-

Signal Prototypes

+

Signal Prototypes

 
 "invalidated"
             void        user_function      (GimpPreview *gimppreview,
                                             gpointer user_data);
-

Description

+

Description

A widget providing a GimpPreviewArea plus framework to update the preview. -

Details

struct GimpPreview

struct GimpPreview;

+

Details

struct GimpPreview

struct GimpPreview;

-


gimp_preview_get_update ()

gboolean    gimp_preview_get_update         (GimpPreview *preview);

+


gimp_preview_get_update ()

gboolean    gimp_preview_get_update         (GimpPreview *preview);

preview: a GimpPreview widget
Returns : the state of the "Preview" check button.

Since GIMP 2.2 -


gimp_preview_set_update ()

void        gimp_preview_set_update         (GimpPreview *preview,
+


gimp_preview_set_update ()

void        gimp_preview_set_update         (GimpPreview *preview,
                                              gboolean update);

Sets the state of the "Preview" check button.

@@ -96,7 +96,7 @@

update: TRUE if the preview should invalidate itself when being scrolled or when gimp_preview_invalidate() is being called

Since GIMP 2.2 -


gimp_preview_set_bounds ()

void        gimp_preview_set_bounds         (GimpPreview *preview,
+


gimp_preview_set_bounds ()

void        gimp_preview_set_bounds         (GimpPreview *preview,
                                              gint xmin,
                                              gint ymin,
                                              gint xmax,
@@ -111,7 +111,7 @@
 
xmax:
ymax:

Since GIMP 2.2 -


gimp_preview_get_size ()

void        gimp_preview_get_size           (GimpPreview *preview,
+


gimp_preview_get_size ()

void        gimp_preview_get_size           (GimpPreview *preview,
                                              gint *width,
                                              gint *height);

@@ -120,7 +120,7 @@ width: return location for the preview area width height: return location for the preview area height

Since GIMP 2.2 -


gimp_preview_get_position ()

void        gimp_preview_get_position       (GimpPreview *preview,
+


gimp_preview_get_position ()

void        gimp_preview_get_position       (GimpPreview *preview,
                                              gint *x,
                                              gint *y);

@@ -129,17 +129,19 @@ x: return location for the horizontal offset y: return location for the vertical offset

Since GIMP 2.2 -


gimp_preview_draw ()

void        gimp_preview_draw               (GimpPreview *preview);

+


gimp_preview_draw ()

void        gimp_preview_draw               (GimpPreview *preview);

Calls the GimpPreview::draw method. GimpPreview itself doesn't implement a default draw method so the behaviour is determined by the derived class implementing this method.

-GimpDrawablePreview implements gimp_preview_draw() by drawing the +GimpDrawablePreview implements gimp_preview_draw() by drawing the original, unmodified drawable to the preview.

preview: a GimpPreview widget

Since GIMP 2.2 -


gimp_preview_draw_buffer ()

void        gimp_preview_draw_buffer        (GimpPreview *preview,
+


gimp_preview_draw_buffer ()

void        gimp_preview_draw_buffer        (GimpPreview *preview,
                                              const guchar *buffer,
                                              gint rowstride);

Calls the GimpPreview::draw_buffer method. GimpPreview itself @@ -150,7 +152,7 @@ buffer: a pixel buffer the size of the preview rowstride: the buffer's rowstride

Since GIMP 2.2 -


gimp_preview_invalidate ()

void        gimp_preview_invalidate         (GimpPreview *preview);

+


gimp_preview_invalidate ()

void        gimp_preview_invalidate         (GimpPreview *preview);

This function starts or renews a short low-priority timeout. When the timeout expires, the GimpPreview::invalidated signal is emitted which will usually cause the preview to be updated. @@ -163,7 +165,7 @@

preview: a GimpPreview widget

Since GIMP 2.2 -


gimp_preview_set_default_cursor ()

void        gimp_preview_set_default_cursor (GimpPreview *preview,
+


gimp_preview_set_default_cursor ()

void        gimp_preview_set_default_cursor (GimpPreview *preview,
                                              GdkCursor *cursor);

Sets the default mouse cursor for the preview. Note that this will be overriden by a GDK_FLEUR if the preview has scrollbars, or by a @@ -172,7 +174,7 @@

preview: a GimpPreview widget
cursor: a GdkCursor or NULL

Since GIMP 2.2 -

Properties

"update" (gboolean : Read / Write / Construct)

Style Properties

"size" (gint : Read)

Signals

The "invalidated" signal

void        user_function                  (GimpPreview *gimppreview,
+

Properties

"update" (gboolean : Read / Write / Construct)

Style Properties

"size" (gint : Read)

Signals

The "invalidated" signal

void        user_function                  (GimpPreview *gimppreview,
                                             gpointer user_data);

gimppreview:the object which received the signal. diff -uraN gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpSizeEntry.html gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpSizeEntry.html --- gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpSizeEntry.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpSizeEntry.html 2004-12-28 16:59:56.000000000 +0100 @@ -99,7 +99,7 @@ GtkWidget* gimp_size_entry_get_help_widget (GimpSizeEntry *gse, gint field); -

Object Hierarchy

+

Object Hierarchy

 
   GObject
    +----GtkObject
@@ -107,9 +107,9 @@
                +----GtkContainer
                      +----GtkTable
                            +----GimpSizeEntry
-

Implemented Interfaces

+

Implemented Interfaces

GimpSizeEntry implements - AtkImplementorIface.

Signal Prototypes

+ AtkImplementorIface.

Signal Prototypes

 
 "refval-changed"
             void        user_function      (GimpSizeEntry *gimpsizeentry,
@@ -120,7 +120,7 @@
 "value-changed"
             void        user_function      (GimpSizeEntry *gimpsizeentry,
                                             gpointer user_data);
-

Description

+

Description

This widget is used to enter pixel distances/sizes and resolutions.

You can specify the number of fields the widget should provide. For @@ -144,11 +144,11 @@ href="../libgimpbase/libgimpbase-gimpunit.html#GimpUnit" >GimpUnit) or the dpi value mapped to pixels per real-world-unit. -

Details

struct GimpSizeEntry

struct GimpSizeEntry;

+

Details

struct GimpSizeEntry

struct GimpSizeEntry;

-


struct GimpSizeEntryField

struct GimpSizeEntryField;

+


struct GimpSizeEntryField

struct GimpSizeEntryField;

-


enum GimpSizeEntryUpdatePolicy

typedef enum
+


enum GimpSizeEntryUpdatePolicy

typedef enum
 {
   GIMP_SIZE_ENTRY_UPDATE_NONE       = 0,
   GIMP_SIZE_ENTRY_UPDATE_SIZE       = 1,
@@ -156,7 +156,7 @@
 } GimpSizeEntryUpdatePolicy;
 

-


gimp_size_entry_new ()

GtkWidget*  gimp_size_entry_new             (gint number_of_fields,
+


gimp_size_entry_new ()

GtkWidget*  gimp_size_entry_new             (gint number_of_fields,
                                              GimpUnit unit,
@@ -208,7 +208,7 @@
 
update_policy: How the automatic pixel <-> real-world-unit calculations should be done.
Returns : A Pointer to the new GimpSizeEntry widget. -

gimp_size_entry_add_field ()

void        gimp_size_entry_add_field       (GimpSizeEntry *gse,
+

gimp_size_entry_add_field ()

void        gimp_size_entry_add_field       (GimpSizeEntry *gse,
                                              GtkSpinButton *value_spinbutton,
                                              GtkSpinButton *refval_spinbutton);

Adds an input field to the GimpSizeEntry. @@ -221,7 +221,7 @@

gse: The sizeentry you want to add a field to.
value_spinbutton: The spinbutton to display the field's value.
refval_spinbutton: The spinbutton to display the field's reference value. -

gimp_size_entry_attach_label ()

GtkWidget*  gimp_size_entry_attach_label    (GimpSizeEntry *gse,
+

gimp_size_entry_attach_label ()

GtkWidget*  gimp_size_entry_attach_label    (GimpSizeEntry *gse,
                                              const gchar *text,
                                              gint row,
                                              gint column,
@@ -234,7 +234,7 @@
 column:    The column where the label will be attached.
 alignment: The horizontal alignment of the label.
 Returns : A pointer to the new GtkLabel widget.
-

gimp_size_entry_set_resolution ()

void        gimp_size_entry_set_resolution  (GimpSizeEntry *gse,
+

gimp_size_entry_set_resolution ()

void        gimp_size_entry_set_resolution  (GimpSizeEntry *gse,
                                              gint field,
                                              gdouble resolution,
                                              gboolean keep_size);

@@ -255,7 +255,7 @@ resolution: The new resolution (in dpi) for the chosen field. keep_size: TRUE if the field's size in pixels should stay the same. FALSE if the field's size in units should stay the same. -


gimp_size_entry_set_size ()

void        gimp_size_entry_set_size        (GimpSizeEntry *gse,
+

gimp_size_entry_set_size ()

void        gimp_size_entry_set_size        (GimpSizeEntry *gse,
                                              gint field,
                                              gdouble lower,
                                              gdouble upper);

@@ -273,7 +273,7 @@ field: The index of the field you want to set the size for. lower: The reference value which will be treated as 0%. upper: The reference value which will be treated as 100%. -


gimp_size_entry_set_value_boundaries ()

void        gimp_size_entry_set_value_boundaries
+

gimp_size_entry_set_value_boundaries ()

void        gimp_size_entry_set_value_boundaries
                                             (GimpSizeEntry *gse,
                                              gint field,
                                              gdouble lower,
@@ -294,7 +294,7 @@
 field: The index of the field you want to set value boundaries for.
 lower: The new lower boundary of the value of the chosen field.
 upper: The new upper boundary of the value of the chosen field.
-

gimp_size_entry_get_value ()

gdouble     gimp_size_entry_get_value       (GimpSizeEntry *gse,
+

gimp_size_entry_get_value ()

gdouble     gimp_size_entry_get_value       (GimpSizeEntry *gse,
                                              gint field);

Returns the value of field # field of the GimpSizeEntry.

@@ -311,7 +311,7 @@

gse: The sizeentry you want to know a value of.
field: The index of the field you want to know the value of.
Returns : The value of the chosen field. -

gimp_size_entry_set_value ()

void        gimp_size_entry_set_value       (GimpSizeEntry *gse,
+

gimp_size_entry_set_value ()

void        gimp_size_entry_set_value       (GimpSizeEntry *gse,
                                              gint field,
                                              gdouble value);

Sets the value for field # field of the GimpSizeEntry. @@ -329,7 +329,7 @@

gse: The sizeentry you want to set a value for.
field: The index of the field you want to set a value for.
value: The new value for field. -

gimp_size_entry_set_refval_boundaries ()

void        gimp_size_entry_set_refval_boundaries
+

gimp_size_entry_set_refval_boundaries ()

void        gimp_size_entry_set_refval_boundaries
                                             (GimpSizeEntry *gse,
                                              gint field,
                                              gdouble lower,
@@ -345,7 +345,7 @@
         boundaries for.
 lower: The new lower boundary of the reference value of the chosen field.
 upper: The new upper boundary of the reference value of the chosen field.
-

gimp_size_entry_set_refval_digits ()

void        gimp_size_entry_set_refval_digits
+

gimp_size_entry_set_refval_digits ()

void        gimp_size_entry_set_refval_digits
                                             (GimpSizeEntry *gse,
                                              gint field,
                                              gint digits);

@@ -360,7 +360,7 @@ field: The index of the field you want to set the reference value for. digits: The new number of decimal digits for the GtkSpinButton which displays field's reference value. -


gimp_size_entry_get_refval ()

gdouble     gimp_size_entry_get_refval      (GimpSizeEntry *gse,
+

gimp_size_entry_get_refval ()

gdouble     gimp_size_entry_get_refval      (GimpSizeEntry *gse,
                                              gint field);

Returns the reference value for field # field of the GimpSizeEntry.

@@ -371,7 +371,7 @@

gse: The sizeentry you want to know a reference value of.
field: The index of the field you want to know the reference value of.
Returns : The reference value of the chosen field. -

gimp_size_entry_set_refval ()

void        gimp_size_entry_set_refval      (GimpSizeEntry *gse,
+

gimp_size_entry_set_refval ()

void        gimp_size_entry_set_refval      (GimpSizeEntry *gse,
                                              gint field,
                                              gdouble refval);

Sets the reference value for field # field of the GimpSizeEntry. @@ -383,7 +383,7 @@

gse: The sizeentry you want to set a reference value for.
field: The index of the field you want to set the reference value for.
refval: The new reference value for field. -

gimp_size_entry_get_unit ()


gimp_size_entry_get_unit ()

GimpUnit    gimp_size_entry_get_unit        (GimpSizeEntry *gse);

Returns the

gse: The sizeentry you want to know the unit of.
Returns : The sizeentry's unit. -

gimp_size_entry_set_unit ()

void        gimp_size_entry_set_unit        (GimpSizeEntry *gse,
+

gimp_size_entry_set_unit ()

void        gimp_size_entry_set_unit        (GimpSizeEntry *gse,
                                              GimpUnit unit);

@@ -404,7 +404,7 @@

gse: The sizeentry you want to change the unit for.
unit: The new unit. -

gimp_size_entry_set_pixel_digits ()

void        gimp_size_entry_set_pixel_digits
+

gimp_size_entry_set_pixel_digits ()

void        gimp_size_entry_set_pixel_digits
                                             (GimpSizeEntry *gse,
                                              gint digits);

Similar to gimp_unit_menu_set_pixel_digits(), this function allows @@ -412,12 +412,12 @@

gse: a GimpSizeEntry
digits: the number of digits to display for a pixel size -

gimp_size_entry_grab_focus ()

void        gimp_size_entry_grab_focus      (GimpSizeEntry *gse);

+


gimp_size_entry_grab_focus ()

void        gimp_size_entry_grab_focus      (GimpSizeEntry *gse);

This function is rather ugly and just a workaround for the fact that it's impossible to implement gtk_widget_grab_focus() for a GtkTable.

gse: The sizeentry you want to grab the keyboard focus. -

gimp_size_entry_get_help_widget ()

GtkWidget*  gimp_size_entry_get_help_widget (GimpSizeEntry *gse,
+

gimp_size_entry_get_help_widget ()

GtkWidget*  gimp_size_entry_get_help_widget (GimpSizeEntry *gse,
                                              gint field);

You shouldn't fiddle with the internals of a GimpSizeEntry but if you want to set tooltips using gimp_help_set_help_data() you @@ -426,22 +426,22 @@

gse: a GimpSizeEntry
field: the index of the widget you want to get a pointer to
Returns : a GtkWidget pointer that you can attach a tooltip to. -

Signals

The "refval-changed" signal

void        user_function                  (GimpSizeEntry *gimpsizeentry,
+

Signals

The "refval-changed" signal

void        user_function                  (GimpSizeEntry *gimpsizeentry,
                                             gpointer user_data);

gimpsizeentry:the object which received the signal. -
user_data:user data set when the signal handler was connected.

The "unit-changed" signal

void        user_function                  (GimpSizeEntry *gimpsizeentry,
+user_data:user data set when the signal handler was connected.

The "unit-changed" signal

void        user_function                  (GimpSizeEntry *gimpsizeentry,
                                             gpointer user_data);

gimpsizeentry:the object which received the signal. -
user_data:user data set when the signal handler was connected.

The "value-changed" signal

void        user_function                  (GimpSizeEntry *gimpsizeentry,
+user_data:user data set when the signal handler was connected.

The "value-changed" signal

void        user_function                  (GimpSizeEntry *gimpsizeentry,
                                             gpointer user_data);

gimpsizeentry:the object which received the signal. -
user_data:user data set when the signal handler was connected.

See Also

+user_data:user data set when the signal handler was connected.

See Also

GimpUnit diff -uraN gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpUnitMenu.html gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpUnitMenu.html --- gimp-2.2.0/devel-docs/libgimpwidgets/html/GimpUnitMenu.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimpwidgets/html/GimpUnitMenu.html 2004-12-28 16:59:56.000000000 +0100 @@ -53,7 +53,7 @@ void gimp_unit_menu_set_pixel_digits (GimpUnitMenu *menu, gint digits); -

Object Hierarchy

+

Object Hierarchy

 
   GObject
    +----GtkObject
@@ -63,14 +63,14 @@
                            +----GtkButton
                                  +----GtkOptionMenu
                                        +----GimpUnitMenu
-

Implemented Interfaces

+

Implemented Interfaces

GimpUnitMenu implements - AtkImplementorIface.

Signal Prototypes

+ AtkImplementorIface.

Signal Prototypes

 
 "unit-changed"
             void        user_function      (GimpUnitMenu *,
                                             gpointer user_data);
-

Description

+

Description

This widget provides a GtkOptionMenu which contains a list of GimpUnit's. @@ -84,9 +84,9 @@

Whenever the user selects a unit from the menu or the dialog, the "unit_changed" signal will be emitted. -

Details

struct GimpUnitMenu

struct GimpUnitMenu;

+

Details

struct GimpUnitMenu

struct GimpUnitMenu;

-


gimp_unit_menu_new ()

GtkWidget*  gimp_unit_menu_new              (const gchar *format,
+


gimp_unit_menu_new ()

GtkWidget*  gimp_unit_menu_new              (const gchar *format,
                                              GimpUnit unit,
@@ -109,7 +109,7 @@
 show_custom:  TRUE if the unit menu should contain a "More..." item for
                opening the user-defined-unit selection dialog.
 Returns : A pointer to the new GimpUnitMenu widget.
-

gimp_unit_menu_set_unit ()

void        gimp_unit_menu_set_unit         (GimpUnitMenu *menu,
+

gimp_unit_menu_set_unit ()

void        gimp_unit_menu_set_unit         (GimpUnitMenu *menu,
                                              GimpUnit unit);

@@ -119,7 +119,7 @@

menu: The unit menu you want to set the unit for.
unit: The new unit. -

gimp_unit_menu_get_unit ()


gimp_unit_menu_get_unit ()

GimpUnit    gimp_unit_menu_get_unit         (GimpUnitMenu *menu);

Returns the

menu: The unit menu you want to know the unit of.
Returns : The unit the user has selected. -

gimp_unit_menu_get_pixel_digits ()

gint        gimp_unit_menu_get_pixel_digits (GimpUnitMenu *menu);

+


gimp_unit_menu_get_pixel_digits ()

gint        gimp_unit_menu_get_pixel_digits (GimpUnitMenu *menu);

Retrieve the number of digits for a pixel size as set by gimp_unit_set_pixel_digits().

menu: a GimpUnitMenu
Returns : the configured number of digits for a pixel size -

gimp_unit_menu_set_pixel_digits ()

void        gimp_unit_menu_set_pixel_digits (GimpUnitMenu *menu,
+

gimp_unit_menu_set_pixel_digits ()

void        gimp_unit_menu_set_pixel_digits (GimpUnitMenu *menu,
                                              gint digits);

A GimpUnitMenu can be setup to control the number of digits shown by attached spinbuttons. Please refer to the documentation of @@ -148,14 +148,14 @@

menu: a GimpUnitMenu
digits: the number of digits to display for a pixel size -

Signals

The "unit-changed" signal

void        user_function                  (GimpUnitMenu *,
+

Signals

The "unit-changed" signal

void        user_function                  (GimpUnitMenu *,
                                             gpointer user_data);

This signal is emitted whenever the user selects a GimpUnit from the GimpUnitMenu.

-

user_data:user data set when the signal handler was connected.

See Also

+

user_data:user data set when the signal handler was connected.

See Also

GimpUnit diff -uraN gimp-2.2.0/devel-docs/libgimpwidgets/html/index.html gimp-2.2.1/devel-docs/libgimpwidgets/html/index.html --- gimp-2.2.0/devel-docs/libgimpwidgets/html/index.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimpwidgets/html/index.html 2004-12-28 16:59:56.000000000 +0100 @@ -29,7 +29,7 @@ font-size: 200%; }

- for GIMP 2.2.0 + for GIMP 2.2.1


Table of Contents

I. GIMP Widgets
Object Hierarchy
GimpButton - A GtkButton with a little extra functionality.
GimpChainButton - Widget to visually connect two entry widgets.
GimpColorArea - Displays a GimpRGB color, optionally with alpha-channel.
GimpColorButton - Widget for selecting a color from a simple button.
GimpColorHexEntry - Widget for entering a color's hex triplet.
GimpColorScale - Fancy colored sliders.
GimpColorSelection - Widget for doing a color selection.
GimpDialog - Constructors for GtkDialog's and action_areas as well as other dialog-related stuff.
GimpFileEntry - Widget for entering a filename.
GimpFrame - A widget providing a HIG-compliant subclass of GtkFrame.
GimpIntComboBox - A widget providing a popup menu of integer values (e.g. enums).
GimpIntStore - A model for integer based name-value pairs (e.g. enums)
GimpMemsizeEntry - A composite widget that allows to enter a memory size.
GimpOffsetArea - Widget to control image offsets.
GimpPathEditor - Widget for editing a file search path.
GimpPickButton - Widget to pick a color from screen.
GimpPixmap - Widget which creates a GtkPixmap from XPM data.
GimpPreviewArea - A general purpose preview widget which caches its pixel data.
GimpPreview - A widget providing a GimpPreviewArea plus framework to update the preview.
GimpScrolledPreview - A widget providing a GimpPreview enhanced by scrolling capabilities.
GimpUnitMenu - Widget for selecting a GimpUnit.
Cell Renderers for GtkTreeView
GimpCellRendererColor -
GimpCellRendererToggle -
II. GIMP Display Filters
GimpColorDisplay - Pluggable GIMP display color correction modules.
GimpColorDisplayStack -
III. GIMP Color Selectors
GimpColorSelector - Pluggable GIMP color selector modules.
GimpColorNotebook - A GimpColorSelector implementation.
GimpColorScales - A GimpColorSelector implementation.
GimpColorSelect - A GimpColorSelector implementation.
IV. GIMP Controllers
GimpController - Pluggable GIMP input controller modules.
V. GIMP Widgets Utilities
GimpHelpUI - Functions for setting GtkTooltips and help identifier used by GIMP help diff -uraN gimp-2.2.0/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpHelpUI.html gimp-2.2.1/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpHelpUI.html --- gimp-2.2.0/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpHelpUI.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpHelpUI.html 2004-12-28 16:59:56.000000000 +0100 @@ -49,9 +49,9 @@ const gchar *help_id); void gimp_context_help (GtkWidget *widget); -

Description

+

Description

-

Details

GimpHelpFunc ()

void        (*GimpHelpFunc)                 (const gchar *help_id,
+

Details

GimpHelpFunc ()

void        (*GimpHelpFunc)                 (const gchar *help_id,
                                              gpointer help_data);

This is the prototype for all functions you pass as help_func to the various GIMP dialog constructors like gimp_dialog_new(), @@ -63,31 +63,37 @@ All these dialog constructors functions call gimp_help_connect().

In most cases it will be ok to use gimp_standard_help_func() which does -nothing but passing the help_id string to gimp_help(). If your +nothing but passing the help_id string to gimp_help(). If your plug-in needs some more sophisticated help handling you can provide -your own help_func which has to call gimp_help() to actually display +your own help_func which has to call gimp_help() to actually display the help.

help_id:
help_data: -

GIMP_HELP_ID

#define GIMP_HELP_ID (gimp_help_id_quark ())
+

GIMP_HELP_ID

#define GIMP_HELP_ID (gimp_help_id_quark ())
 

Since: GIMP 2.2 -


gimp_help_enable_tooltips ()

void        gimp_help_enable_tooltips       (void);

+


gimp_help_enable_tooltips ()

void        gimp_help_enable_tooltips       (void);

This function calls gtk_tooltips_enable().

-


gimp_help_disable_tooltips ()

void        gimp_help_disable_tooltips      (void);

+


gimp_help_disable_tooltips ()

void        gimp_help_disable_tooltips      (void);

This function calls gtk_tooltips_disable().

-


gimp_standard_help_func ()

void        gimp_standard_help_func         (const gchar *help_id,
+


gimp_standard_help_func ()

void        gimp_standard_help_func         (const gchar *help_id,
                                              gpointer help_data);

This is the standard GIMP help function which does nothing but calling -gimp_help(). It is the right function to use in almost all cases.

+gimp_help(). It is the right function to use in almost all cases.

help_id: A unique help identifier.
help_data: The help_data passed to gimp_help_connect(). -

gimp_help_connect ()

void        gimp_help_connect               (GtkWidget *widget,
+

gimp_help_connect ()

void        gimp_help_connect               (GtkWidget *widget,
                                              GimpHelpFunc help_func,
                                              const gchar *help_id,
                                              gpointer help_data);

@@ -100,7 +106,7 @@ help_func: The function which will be called if the user presses "F1". help_id: The help_id which will be passed to help_func. help_data: The help_data pointer which will be passed to help_func. -


gimp_help_set_help_data ()

void        gimp_help_set_help_data         (GtkWidget *widget,
+

gimp_help_set_help_data ()

void        gimp_help_set_help_data         (GtkWidget *widget,
                                              const gchar *tooltip,
                                              const gchar *help_id);

The reason why we don't use gtk_tooltips_set_tip() is that it's @@ -114,7 +120,7 @@

widget: The GtkWidget you want to set a tooltip and/or help_id for.
tooltip: The text for this widget's tooltip (or NULL).
help_id: The help_id for the GtkTipsQuery tooltips inspector. -

gimp_context_help ()

void        gimp_context_help               (GtkWidget *widget);

+


gimp_context_help ()

void        gimp_context_help               (GtkWidget *widget);

This function invokes the context help inspector.

The mouse cursor will turn turn into a question mark and the user can diff -uraN gimp-2.2.0/devel-docs/libgimpwidgets/html/libgimpwidgets-gimpoldwidgets.html gimp-2.2.1/devel-docs/libgimpwidgets/html/libgimpwidgets-gimpoldwidgets.html --- gimp-2.2.0/devel-docs/libgimpwidgets/html/libgimpwidgets-gimpoldwidgets.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimpwidgets/html/libgimpwidgets-gimpoldwidgets.html 2004-12-28 16:59:56.000000000 +0100 @@ -64,9 +64,9 @@ gpointer callback_data); void gimp_menu_item_update (GtkWidget *widget, gpointer data); -

Description

+

Description

These functions are not defined if you define GIMP_DISABLE_DEPRECATED. -

Details

gimp_int_option_menu_new ()

GtkWidget*  gimp_int_option_menu_new        (gboolean menu_only,
+

Details

gimp_int_option_menu_new ()

GtkWidget*  gimp_int_option_menu_new        (gboolean menu_only,
                                              GCallback menu_item_callback,
                                              gpointer menu_item_callback_data,
                                              gint initial,
@@ -85,7 +85,7 @@
 initial:            The item_data of the initially selected menu item.
 ...:                A NULL-terminated va_list describing the menu items.
 Returns : A GtkOptionMenu or a GtkMenu (depending on menu_only).
-

gimp_int_option_menu_set_history ()

void        gimp_int_option_menu_set_history
+

gimp_int_option_menu_set_history ()

void        gimp_int_option_menu_set_history
                                             (GtkOptionMenu *option_menu,
                                              gint item_data);

Warning

gimp_int_option_menu_set_history is deprecated and should not be used in newly-written code.

Iterates over all entries in a GtkOptionMenu and selects the one with the @@ -96,7 +96,7 @@

option_menu: A GtkOptionMenu as returned by gimp_int_option_menu_new().
item_data: The item_data of the menu item you want to select. -

GimpIntOptionMenuSensitivityCallback ()

gboolean    (*GimpIntOptionMenuSensitivityCallback)
+

GimpIntOptionMenuSensitivityCallback ()

gboolean    (*GimpIntOptionMenuSensitivityCallback)
                                             (gint item_data,
                                              gpointer callback_data);

Warning

GimpIntOptionMenuSensitivityCallback is deprecated and should not be used in newly-written code.

@@ -105,7 +105,7 @@ Returns : -


gimp_int_option_menu_set_sensitive ()

void        gimp_int_option_menu_set_sensitive
+

gimp_int_option_menu_set_sensitive ()

void        gimp_int_option_menu_set_sensitive
                                             (GtkOptionMenu *option_menu,
                                              GimpIntOptionMenuSensitivityCallback callback,
                                              gpointer callback_data);

Warning

gimp_int_option_menu_set_sensitive is deprecated and should not be used in newly-written code.

@@ -120,14 +120,14 @@ callback: a function called for each item in the menu to determine the the sensitivity state. callback_data: data to pass to the callback function. -


gimp_option_menu_new ()

GtkWidget*  gimp_option_menu_new            (gboolean menu_only,
+

gimp_option_menu_new ()

GtkWidget*  gimp_option_menu_new            (gboolean menu_only,
                                              ...);

Warning

gimp_option_menu_new is deprecated and should not be used in newly-written code.

Convenience function to create a GtkOptionMenu or a GtkMenu.

menu_only: TRUE if the function should return a GtkMenu only.
...: A NULL-terminated va_list describing the menu items.
Returns : A GtkOptionMenu or a GtkMenu (depending on menu_only). -

gimp_option_menu_new2 ()

GtkWidget*  gimp_option_menu_new2           (gboolean menu_only,
+

gimp_option_menu_new2 ()

GtkWidget*  gimp_option_menu_new2           (gboolean menu_only,
                                              GCallback menu_item_callback,
                                              gpointer menu_item_callback_data,
                                              gpointer initial,
@@ -142,7 +142,7 @@
 initial:            The item_data of the initially selected menu item.
 ...:                A NULL-terminated va_list describing the menu items.
 Returns : A GtkOptionMenu or a GtkMenu (depending on menu_only).
-

gimp_option_menu_set_history ()

void        gimp_option_menu_set_history    (GtkOptionMenu *option_menu,
+

gimp_option_menu_set_history ()

void        gimp_option_menu_set_history    (GtkOptionMenu *option_menu,
                                              gpointer item_data);

Warning

gimp_option_menu_set_history is deprecated and should not be used in newly-written code.

Iterates over all entries in a GtkOptionMenu and selects the one with the matching item_data. Probably only makes sense to use with @@ -152,7 +152,7 @@

option_menu: A GtkOptionMenu as returned by gimp_option_menu_new() or gimp_option_menu_new2().
item_data: The item_data of the menu item you want to select. -

GimpOptionMenuSensitivityCallback ()

gboolean    (*GimpOptionMenuSensitivityCallback)
+

GimpOptionMenuSensitivityCallback ()

gboolean    (*GimpOptionMenuSensitivityCallback)
                                             (gpointer item_data,
                                              gpointer callback_data);

Warning

GimpOptionMenuSensitivityCallback is deprecated and should not be used in newly-written code.

@@ -161,7 +161,7 @@ Returns : -


gimp_option_menu_set_sensitive ()

void        gimp_option_menu_set_sensitive  (GtkOptionMenu *option_menu,
+

gimp_option_menu_set_sensitive ()

void        gimp_option_menu_set_sensitive  (GtkOptionMenu *option_menu,
                                              GimpOptionMenuSensitivityCallback callback,
                                              gpointer callback_data);

Warning

gimp_option_menu_set_sensitive is deprecated and should not be used in newly-written code.

Calls the given callback for each item in the menu and passes it the @@ -173,13 +173,13 @@ callback: a function called for each item in the menu to determine the the sensitivity state. callback_data: data to pass to the callback function. -


gimp_menu_item_update ()

void        gimp_menu_item_update           (GtkWidget *widget,
+

gimp_menu_item_update ()

void        gimp_menu_item_update           (GtkWidget *widget,
                                              gpointer data);

Warning

gimp_menu_item_update is deprecated and should not be used in newly-written code.

widget: A GtkMenuItem.
data: A pointer to a gint variable which will store the value of GPOINTER_TO_INT (g_object_get_data (widget, "gimp-item-data")). -

See Also

+

See Also

GimpIntComboBox

diff -uraN gimp-2.2.0/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpQueryBox.html gimp-2.2.1/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpQueryBox.html --- gimp-2.2.0/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpQueryBox.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpQueryBox.html 2004-12-28 16:59:56.000000000 +0100 @@ -116,7 +116,7 @@ GimpQueryBooleanCallback callback, gpointer data); #define GIMP_QUERY_BOX_VBOX (qbox) -

Description

+

Description

These functions provide simple dialogs for entering a single string, integer, double, boolean or pixel size value.

@@ -127,7 +127,7 @@ and "OK" and "Cancel" buttons. On "Cancel", all query boxes except the boolean one silently destroy themselves. On "OK" the user defined callback function is called and returns the entered value. -

Details

GimpQueryStringCallback ()

void        (*GimpQueryStringCallback)      (GtkWidget *query_box,
+

Details

GimpQueryStringCallback ()

void        (*GimpQueryStringCallback)      (GtkWidget *query_box,
                                              const gchar *string,
                                              gpointer data);

Note that you have to g_free() the returned string. @@ -136,7 +136,7 @@ data:The user data. -


GimpQueryIntCallback ()

void        (*GimpQueryIntCallback)         (GtkWidget *query_box,
+

GimpQueryIntCallback ()

void        (*GimpQueryIntCallback)         (GtkWidget *query_box,
                                              gint value,
                                              gpointer data);

@@ -145,7 +145,7 @@ data:The user data. -


GimpQueryDoubleCallback ()

void        (*GimpQueryDoubleCallback)      (GtkWidget *query_box,
+

GimpQueryDoubleCallback ()

void        (*GimpQueryDoubleCallback)      (GtkWidget *query_box,
                                              gdouble value,
                                              gpointer data);

@@ -154,7 +154,7 @@ data:The user data. -


GimpQuerySizeCallback ()

void        (*GimpQuerySizeCallback)        (GtkWidget *query_box,
+

GimpQuerySizeCallback ()

void        (*GimpQuerySizeCallback)        (GtkWidget *query_box,
                                              gdouble size,
                                              data:The user data.
 
 
-

GimpQueryBooleanCallback ()

void        (*GimpQueryBooleanCallback)     (GtkWidget *query_box,
+

GimpQueryBooleanCallback ()

void        (*GimpQueryBooleanCallback)     (GtkWidget *query_box,
                                              gboolean value,
                                              gpointer data);

@@ -176,7 +176,7 @@ data:The user data. -


gimp_query_string_box ()

GtkWidget*  gimp_query_string_box           (const gchar *title,
+

gimp_query_string_box ()

GtkWidget*  gimp_query_string_box           (const gchar *title,
                                              GtkWidget *parent,
                                              GimpHelpFunc help_func,
                                              const gchar *help_id,
@@ -199,7 +199,7 @@
 callback:  The function which will be called when the user selects "OK".
 data:      The callback's user data.
 Returns : A pointer to the new GtkDialog.
-

gimp_query_int_box ()

GtkWidget*  gimp_query_int_box              (const gchar *title,
+

gimp_query_int_box ()

GtkWidget*  gimp_query_int_box              (const gchar *title,
                                              GtkWidget *parent,
                                              GimpHelpFunc help_func,
                                              const gchar *help_id,
@@ -226,7 +226,7 @@
 callback:  The function which will be called when the user selects "OK".
 data:      The callback's user data.
 Returns : A pointer to the new GtkDialog.
-

gimp_query_double_box ()

GtkWidget*  gimp_query_double_box           (const gchar *title,
+

gimp_query_double_box ()

GtkWidget*  gimp_query_double_box           (const gchar *title,
                                              GtkWidget *parent,
                                              GimpHelpFunc help_func,
                                              const gchar *help_id,
@@ -255,7 +255,7 @@
 callback:  The function which will be called when the user selects "OK".
 data:      The callback's user data.
 Returns : A pointer to the new GtkDialog.
-

gimp_query_size_box ()

GtkWidget*  gimp_query_size_box             (const gchar *title,
+

gimp_query_size_box ()

GtkWidget*  gimp_query_size_box             (const gchar *title,
                                              GtkWidget *parent,
                                              GimpHelpFunc help_func,
                                              const gchar *help_id,
@@ -296,7 +296,7 @@
 callback:    The function which will be called when the user selects "OK".
 data:        The callback's user data.
 Returns : A pointer to the new GtkDialog.
-

gimp_query_boolean_box ()

GtkWidget*  gimp_query_boolean_box          (const gchar *title,
+

gimp_query_boolean_box ()

GtkWidget*  gimp_query_boolean_box          (const gchar *title,
                                              GtkWidget *parent,
                                              GimpHelpFunc help_func,
                                              const gchar *help_id,
@@ -326,13 +326,13 @@
                of the buttons.
 data:         The callback's user data.
 Returns : A pointer to the new GtkDialog.
-

GIMP_QUERY_BOX_VBOX()

#define     GIMP_QUERY_BOX_VBOX(qbox)

+


GIMP_QUERY_BOX_VBOX()

#define     GIMP_QUERY_BOX_VBOX(qbox)

A macro to access the GtkVBox in a GimpQueryBox. Useful if you want to add more widgets.

qbox: -

See Also

+

See Also

GimpSizeEntry

GimpUnitMenu diff -uraN gimp-2.2.0/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpScrolledPreview.html gimp-2.2.1/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpScrolledPreview.html --- gimp-2.2.0/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpScrolledPreview.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpScrolledPreview.html 2004-12-28 16:59:56.000000000 +0100 @@ -34,9 +34,9 @@ struct GimpScrolledPreview; -

Description

+

Description

A widget providing a GimpPreview enhanced by scrolling capabilities. -

Details

struct GimpScrolledPreview

struct GimpScrolledPreview {
+

Details

struct GimpScrolledPreview

struct GimpScrolledPreview {
 
   GimpPreview   parent_instance;
 
diff -uraN gimp-2.2.0/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpStock.html gimp-2.2.1/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpStock.html
--- gimp-2.2.0/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpStock.html	2004-12-19 03:35:04.000000000 +0100
+++ gimp-2.2.1/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpStock.html	2004-12-28 17:16:30.000000000 +0100
@@ -212,7 +212,7 @@
 #define     GIMP_STOCK_PALETTE
 #define     GIMP_STOCK_PATTERN
 #define     GIMP_STOCK_ZOOM_FOLLOW_WINDOW
-

Description

+

Description

GIMP registers a set of menu/toolbar items and corresponding icons in addition to the standard GTK+ stock items. These can be used just like GTK+ stock items. GIMP also overrides a few of the GTK+ icons (namely @@ -220,645 +220,647 @@

Stock icons may have a RTL variant which gets used for right-to-left locales. -

Details

gimp_stock_init ()

void        gimp_stock_init                 (void);

+

Details

gimp_stock_init ()

void        gimp_stock_init                 (void);

Initializes the GIMP stock icon factory.

-You don't need to call this function as gimp_ui_init() already does +You don't need to call this function as gimp_ui_init() already does this for you.

-


GIMP_STOCK_ANCHOR

#define GIMP_STOCK_ANCHOR                   "gimp-anchor"
+


GIMP_STOCK_ANCHOR

#define GIMP_STOCK_ANCHOR                   "gimp-anchor"
 

-


GIMP_STOCK_CENTER

#define GIMP_STOCK_CENTER                   "gimp-center"
+


GIMP_STOCK_CENTER

#define GIMP_STOCK_CENTER                   "gimp-center"
 

-


GIMP_STOCK_DUPLICATE

#define GIMP_STOCK_DUPLICATE                "gimp-duplicate"
+


GIMP_STOCK_DUPLICATE

#define GIMP_STOCK_DUPLICATE                "gimp-duplicate"
 

-


GIMP_STOCK_EDIT

#define GIMP_STOCK_EDIT                     "gimp-edit"
+


GIMP_STOCK_EDIT

#define GIMP_STOCK_EDIT                     "gimp-edit"
 

-


GIMP_STOCK_RESET

#define GIMP_STOCK_RESET                    "gimp-reset"
+


GIMP_STOCK_RESET

#define GIMP_STOCK_RESET                    "gimp-reset"
 

-


GIMP_STOCK_CLOSE

#define GIMP_STOCK_CLOSE                    "gimp-close"
+


GIMP_STOCK_CLOSE

#define GIMP_STOCK_CLOSE                    "gimp-close"
 

-


GIMP_STOCK_MENU_LEFT

#define GIMP_STOCK_MENU_LEFT                "gimp-menu-left"
+


GIMP_STOCK_MENU_LEFT

#define GIMP_STOCK_MENU_LEFT                "gimp-menu-left"
 

RTL variant -


GIMP_STOCK_MENU_RIGHT

#define GIMP_STOCK_MENU_RIGHT               "gimp-menu-right"
+


GIMP_STOCK_MENU_RIGHT

#define GIMP_STOCK_MENU_RIGHT               "gimp-menu-right"
 

RTL variant -


GIMP_STOCK_MOVE_TO_SCREEN

#define GIMP_STOCK_MOVE_TO_SCREEN           "gimp_move-to-screen"
+


GIMP_STOCK_MOVE_TO_SCREEN

#define GIMP_STOCK_MOVE_TO_SCREEN           "gimp_move-to-screen"
 

-


GIMP_STOCK_INVERT

#define GIMP_STOCK_INVERT                   "gimp-invert"
+


GIMP_STOCK_INVERT

#define GIMP_STOCK_INVERT                   "gimp-invert"
 

-


GIMP_STOCK_LAYER_TO_IMAGESIZE

#define GIMP_STOCK_LAYER_TO_IMAGESIZE       "gimp-layer-to-imagesize"
+


GIMP_STOCK_LAYER_TO_IMAGESIZE

#define GIMP_STOCK_LAYER_TO_IMAGESIZE       "gimp-layer-to-imagesize"
 

-


GIMP_STOCK_MERGE_DOWN

#define GIMP_STOCK_MERGE_DOWN               "gimp-merge-down"
+


GIMP_STOCK_MERGE_DOWN

#define GIMP_STOCK_MERGE_DOWN               "gimp-merge-down"
 

-


GIMP_STOCK_NAVIGATION

#define GIMP_STOCK_NAVIGATION               "gimp-navigation"
+


GIMP_STOCK_NAVIGATION

#define GIMP_STOCK_NAVIGATION               "gimp-navigation"
 

-


GIMP_STOCK_PASTE_AS_NEW

#define GIMP_STOCK_PASTE_AS_NEW             "gimp-paste-as-new"
+


GIMP_STOCK_PASTE_AS_NEW

#define GIMP_STOCK_PASTE_AS_NEW             "gimp-paste-as-new"
 

-


GIMP_STOCK_PASTE_INTO

#define GIMP_STOCK_PASTE_INTO               "gimp-paste-into"
+


GIMP_STOCK_PASTE_INTO

#define GIMP_STOCK_PASTE_INTO               "gimp-paste-into"
 

-


GIMP_STOCK_PATH_STROKE

#define GIMP_STOCK_PATH_STROKE              "gimp-path-stroke"
+


GIMP_STOCK_PATH_STROKE

#define GIMP_STOCK_PATH_STROKE              "gimp-path-stroke"
 

-


GIMP_STOCK_PLUGIN

#define GIMP_STOCK_PLUGIN                   "gimp-plugin"
+


GIMP_STOCK_PLUGIN

#define GIMP_STOCK_PLUGIN                   "gimp-plugin"
 

-


GIMP_STOCK_QMASK_OFF

#define GIMP_STOCK_QMASK_OFF                "gimp-qmask-off"
+


GIMP_STOCK_QMASK_OFF

#define GIMP_STOCK_QMASK_OFF                "gimp-qmask-off"
 

-


GIMP_STOCK_QMASK_ON

#define GIMP_STOCK_QMASK_ON                 "gimp-qmask-on"
+


GIMP_STOCK_QMASK_ON

#define GIMP_STOCK_QMASK_ON                 "gimp-qmask-on"
 

-


GIMP_STOCK_HISTOGRAM

#define GIMP_STOCK_HISTOGRAM                "gimp-histogram"
+


GIMP_STOCK_HISTOGRAM

#define GIMP_STOCK_HISTOGRAM                "gimp-histogram"
 

-


GIMP_STOCK_HISTOGRAM_LINEAR

#define GIMP_STOCK_HISTOGRAM_LINEAR         "gimp-histogram-linear"
+


GIMP_STOCK_HISTOGRAM_LINEAR

#define GIMP_STOCK_HISTOGRAM_LINEAR         "gimp-histogram-linear"
 

-


GIMP_STOCK_HISTOGRAM_LOGARITHMIC

#define GIMP_STOCK_HISTOGRAM_LOGARITHMIC    "gimp-histogram-logarithmic"
+


GIMP_STOCK_HISTOGRAM_LOGARITHMIC

#define GIMP_STOCK_HISTOGRAM_LOGARITHMIC    "gimp-histogram-logarithmic"
 

-


GIMP_STOCK_RESHOW_FILTER

#define GIMP_STOCK_RESHOW_FILTER            "gimp-reshow-filter"
+


GIMP_STOCK_RESHOW_FILTER

#define GIMP_STOCK_RESHOW_FILTER            "gimp-reshow-filter"
 

-


GIMP_STOCK_RESIZE

#define GIMP_STOCK_RESIZE                   "gimp-resize"
+


GIMP_STOCK_RESIZE

#define GIMP_STOCK_RESIZE                   "gimp-resize"
 

-


GIMP_STOCK_FLIP_HORIZONTAL

#define GIMP_STOCK_FLIP_HORIZONTAL          "gimp-flip-horizontal"
+


GIMP_STOCK_FLIP_HORIZONTAL

#define GIMP_STOCK_FLIP_HORIZONTAL          "gimp-flip-horizontal"
 

-


GIMP_STOCK_FLIP_VERTICAL

#define GIMP_STOCK_FLIP_VERTICAL            "gimp-flip-vertical"
+


GIMP_STOCK_FLIP_VERTICAL

#define GIMP_STOCK_FLIP_VERTICAL            "gimp-flip-vertical"
 

-


GIMP_STOCK_ROTATE_180

#define GIMP_STOCK_ROTATE_180               "gimp-rotate-180"
+


GIMP_STOCK_ROTATE_180

#define GIMP_STOCK_ROTATE_180               "gimp-rotate-180"
 

-


GIMP_STOCK_ROTATE_270

#define GIMP_STOCK_ROTATE_270               "gimp-rotate-270"
+


GIMP_STOCK_ROTATE_270

#define GIMP_STOCK_ROTATE_270               "gimp-rotate-270"
 

-


GIMP_STOCK_ROTATE_90

#define GIMP_STOCK_ROTATE_90                "gimp-rotate-90"
+


GIMP_STOCK_ROTATE_90

#define GIMP_STOCK_ROTATE_90                "gimp-rotate-90"
 

-


GIMP_STOCK_SCALE

#define GIMP_STOCK_SCALE                    "gimp-scale"
+


GIMP_STOCK_SCALE

#define GIMP_STOCK_SCALE                    "gimp-scale"
 

-


GIMP_STOCK_LINKED

#define GIMP_STOCK_LINKED                   "gimp-linked"
+


GIMP_STOCK_LINKED

#define GIMP_STOCK_LINKED                   "gimp-linked"
 

-


GIMP_STOCK_VISIBLE

#define GIMP_STOCK_VISIBLE                  "gimp-visible"
+


GIMP_STOCK_VISIBLE

#define GIMP_STOCK_VISIBLE                  "gimp-visible"
 

-


GIMP_STOCK_LIST

#define GIMP_STOCK_LIST                     "gimp-list"
+


GIMP_STOCK_LIST

#define GIMP_STOCK_LIST                     "gimp-list"
 

-


GIMP_STOCK_GRID

#define GIMP_STOCK_GRID                     "gimp-grid"
+


GIMP_STOCK_GRID

#define GIMP_STOCK_GRID                     "gimp-grid"
 

-


GIMP_STOCK_PORTRAIT

#define GIMP_STOCK_PORTRAIT                 "gimp-portrait"
+


GIMP_STOCK_PORTRAIT

#define GIMP_STOCK_PORTRAIT                 "gimp-portrait"
 

-


GIMP_STOCK_LANDSCAPE

#define GIMP_STOCK_LANDSCAPE                "gimp-landscape"
+


GIMP_STOCK_LANDSCAPE

#define GIMP_STOCK_LANDSCAPE                "gimp-landscape"
 

-


GIMP_STOCK_VIDEO

#define GIMP_STOCK_VIDEO                    "gimp-video"
+


GIMP_STOCK_VIDEO

#define GIMP_STOCK_VIDEO                    "gimp-video"
 

-


GIMP_STOCK_WEB

#define GIMP_STOCK_WEB                      "gimp-web"
+


GIMP_STOCK_WEB

#define GIMP_STOCK_WEB                      "gimp-web"
 

-


GIMP_STOCK_IMAGE

#define GIMP_STOCK_IMAGE                    "gimp-image"
+


GIMP_STOCK_IMAGE

#define GIMP_STOCK_IMAGE                    "gimp-image"
 

-


GIMP_STOCK_LAYER

#define GIMP_STOCK_LAYER                    "gimp-layer"
+


GIMP_STOCK_LAYER

#define GIMP_STOCK_LAYER                    "gimp-layer"
 

-


GIMP_STOCK_LAYER_MASK

#define GIMP_STOCK_LAYER_MASK               "gimp-layer-mask"
+


GIMP_STOCK_LAYER_MASK

#define GIMP_STOCK_LAYER_MASK               "gimp-layer-mask"
 

-


GIMP_STOCK_CHANNEL

#define GIMP_STOCK_CHANNEL                  "gimp-channel"
+


GIMP_STOCK_CHANNEL

#define GIMP_STOCK_CHANNEL                  "gimp-channel"
 

-


GIMP_STOCK_CHANNEL_RED

#define GIMP_STOCK_CHANNEL_RED              "gimp-channel-red"
+


GIMP_STOCK_CHANNEL_RED

#define GIMP_STOCK_CHANNEL_RED              "gimp-channel-red"
 

-


GIMP_STOCK_CHANNEL_GREEN

#define GIMP_STOCK_CHANNEL_GREEN            "gimp-channel-green"
+


GIMP_STOCK_CHANNEL_GREEN

#define GIMP_STOCK_CHANNEL_GREEN            "gimp-channel-green"
 

-


GIMP_STOCK_CHANNEL_BLUE

#define GIMP_STOCK_CHANNEL_BLUE             "gimp-channel-blue"
+


GIMP_STOCK_CHANNEL_BLUE

#define GIMP_STOCK_CHANNEL_BLUE             "gimp-channel-blue"
 

-


GIMP_STOCK_CHANNEL_GRAY

#define GIMP_STOCK_CHANNEL_GRAY             "gimp-channel-gray"
+


GIMP_STOCK_CHANNEL_GRAY

#define GIMP_STOCK_CHANNEL_GRAY             "gimp-channel-gray"
 

-


GIMP_STOCK_CHANNEL_INDEXED

#define GIMP_STOCK_CHANNEL_INDEXED          "gimp-channel-indexed"
+


GIMP_STOCK_CHANNEL_INDEXED

#define GIMP_STOCK_CHANNEL_INDEXED          "gimp-channel-indexed"
 

-


GIMP_STOCK_CHANNEL_ALPHA

#define GIMP_STOCK_CHANNEL_ALPHA            "gimp-channel-alpha"
+


GIMP_STOCK_CHANNEL_ALPHA

#define GIMP_STOCK_CHANNEL_ALPHA            "gimp-channel-alpha"
 

-


GIMP_STOCK_PATH

#define GIMP_STOCK_PATH                     "gimp-path"
+


GIMP_STOCK_PATH

#define GIMP_STOCK_PATH                     "gimp-path"
 

-


GIMP_STOCK_TEXT_LAYER

#define GIMP_STOCK_TEXT_LAYER               "gimp-text-layer"
+


GIMP_STOCK_TEXT_LAYER

#define GIMP_STOCK_TEXT_LAYER               "gimp-text-layer"
 

-


GIMP_STOCK_FLOATING_SELECTION

#define GIMP_STOCK_FLOATING_SELECTION       "gimp-floating-selection"
+


GIMP_STOCK_FLOATING_SELECTION

#define GIMP_STOCK_FLOATING_SELECTION       "gimp-floating-selection"
 

-


GIMP_STOCK_TEMPLATE

#define GIMP_STOCK_TEMPLATE                 "gimp-template"
+


GIMP_STOCK_TEMPLATE

#define GIMP_STOCK_TEMPLATE                 "gimp-template"
 

-


GIMP_STOCK_IMAGES

#define GIMP_STOCK_IMAGES                   "gimp-images"
+


GIMP_STOCK_IMAGES

#define GIMP_STOCK_IMAGES                   "gimp-images"
 

-


GIMP_STOCK_LAYERS

#define GIMP_STOCK_LAYERS                   "gimp-layers"
+


GIMP_STOCK_LAYERS

#define GIMP_STOCK_LAYERS                   "gimp-layers"
 

-


GIMP_STOCK_CHANNELS

#define GIMP_STOCK_CHANNELS                 "gimp-channels"
+


GIMP_STOCK_CHANNELS

#define GIMP_STOCK_CHANNELS                 "gimp-channels"
 

-


GIMP_STOCK_PATHS

#define GIMP_STOCK_PATHS                    "gimp-paths"
+


GIMP_STOCK_PATHS

#define GIMP_STOCK_PATHS                    "gimp-paths"
 

-


GIMP_STOCK_INDEXED_PALETTE

#define GIMP_STOCK_INDEXED_PALETTE          "gimp-indexed-palette"
+


GIMP_STOCK_INDEXED_PALETTE

#define GIMP_STOCK_INDEXED_PALETTE          "gimp-indexed-palette"
 

-


GIMP_STOCK_SHAPE_CIRCLE

#define GIMP_STOCK_SHAPE_CIRCLE             "gimp-shape-circle"
+


GIMP_STOCK_SHAPE_CIRCLE

#define GIMP_STOCK_SHAPE_CIRCLE             "gimp-shape-circle"
 

-


GIMP_STOCK_SHAPE_SQUARE

#define GIMP_STOCK_SHAPE_SQUARE             "gimp-shape-square"
+


GIMP_STOCK_SHAPE_SQUARE

#define GIMP_STOCK_SHAPE_SQUARE             "gimp-shape-square"
 

-


GIMP_STOCK_SHAPE_DIAMOND

#define GIMP_STOCK_SHAPE_DIAMOND            "gimp-shape-diamond"
+


GIMP_STOCK_SHAPE_DIAMOND

#define GIMP_STOCK_SHAPE_DIAMOND            "gimp-shape-diamond"
 

-


GIMP_STOCK_CAP_BUTT

#define GIMP_STOCK_CAP_BUTT                 "gimp-cap-butt"
+


GIMP_STOCK_CAP_BUTT

#define GIMP_STOCK_CAP_BUTT                 "gimp-cap-butt"
 

-


GIMP_STOCK_CAP_ROUND

#define GIMP_STOCK_CAP_ROUND                "gimp-cap-round"
+


GIMP_STOCK_CAP_ROUND

#define GIMP_STOCK_CAP_ROUND                "gimp-cap-round"
 

-


GIMP_STOCK_CAP_SQUARE

#define GIMP_STOCK_CAP_SQUARE               "gimp-cap-square"
+


GIMP_STOCK_CAP_SQUARE

#define GIMP_STOCK_CAP_SQUARE               "gimp-cap-square"
 

-


GIMP_STOCK_JOIN_MITER

#define GIMP_STOCK_JOIN_MITER               "gimp-join-miter"
+


GIMP_STOCK_JOIN_MITER

#define GIMP_STOCK_JOIN_MITER               "gimp-join-miter"
 

-


GIMP_STOCK_JOIN_ROUND

#define GIMP_STOCK_JOIN_ROUND               "gimp-join-round"
+


GIMP_STOCK_JOIN_ROUND

#define GIMP_STOCK_JOIN_ROUND               "gimp-join-round"
 

-


GIMP_STOCK_JOIN_BEVEL

#define GIMP_STOCK_JOIN_BEVEL               "gimp-join-bevel"
+


GIMP_STOCK_JOIN_BEVEL

#define GIMP_STOCK_JOIN_BEVEL               "gimp-join-bevel"
 

-


GIMP_STOCK_SELECTION

#define GIMP_STOCK_SELECTION                "gimp-selection"
+


GIMP_STOCK_SELECTION

#define GIMP_STOCK_SELECTION                "gimp-selection"
 

-


GIMP_STOCK_SELECTION_ALL

#define GIMP_STOCK_SELECTION_ALL            "gimp-selection-all"
+


GIMP_STOCK_SELECTION_ALL

#define GIMP_STOCK_SELECTION_ALL            "gimp-selection-all"
 

-


GIMP_STOCK_SELECTION_NONE

#define GIMP_STOCK_SELECTION_NONE           "gimp-selection-none"
+


GIMP_STOCK_SELECTION_NONE

#define GIMP_STOCK_SELECTION_NONE           "gimp-selection-none"
 

-


GIMP_STOCK_SELECTION_GROW

#define GIMP_STOCK_SELECTION_GROW           "gimp-selection-grow"
+


GIMP_STOCK_SELECTION_GROW

#define GIMP_STOCK_SELECTION_GROW           "gimp-selection-grow"
 

-


GIMP_STOCK_SELECTION_SHRINK

#define GIMP_STOCK_SELECTION_SHRINK         "gimp-selection-shrink"
+


GIMP_STOCK_SELECTION_SHRINK

#define GIMP_STOCK_SELECTION_SHRINK         "gimp-selection-shrink"
 

-


GIMP_STOCK_SELECTION_BORDER

#define GIMP_STOCK_SELECTION_BORDER         "gimp-selection-border"
+


GIMP_STOCK_SELECTION_BORDER

#define GIMP_STOCK_SELECTION_BORDER         "gimp-selection-border"
 

-


GIMP_STOCK_SELECTION_ADD

#define GIMP_STOCK_SELECTION_ADD            "gimp-selection-add"
+


GIMP_STOCK_SELECTION_ADD

#define GIMP_STOCK_SELECTION_ADD            "gimp-selection-add"
 

-


GIMP_STOCK_SELECTION_SUBTRACT

#define GIMP_STOCK_SELECTION_SUBTRACT       "gimp-selection-subtract"
+


GIMP_STOCK_SELECTION_SUBTRACT

#define GIMP_STOCK_SELECTION_SUBTRACT       "gimp-selection-subtract"
 

-


GIMP_STOCK_SELECTION_REPLACE

#define GIMP_STOCK_SELECTION_REPLACE        "gimp-selection-replace"
+


GIMP_STOCK_SELECTION_REPLACE

#define GIMP_STOCK_SELECTION_REPLACE        "gimp-selection-replace"
 

-


GIMP_STOCK_SELECTION_INTERSECT

#define GIMP_STOCK_SELECTION_INTERSECT      "gimp-selection-intersect"
+


GIMP_STOCK_SELECTION_INTERSECT

#define GIMP_STOCK_SELECTION_INTERSECT      "gimp-selection-intersect"
 

-


GIMP_STOCK_SELECTION_STROKE

#define GIMP_STOCK_SELECTION_STROKE         "gimp-selection-stroke"
+


GIMP_STOCK_SELECTION_STROKE

#define GIMP_STOCK_SELECTION_STROKE         "gimp-selection-stroke"
 

-


GIMP_STOCK_SELECTION_TO_CHANNEL

#define GIMP_STOCK_SELECTION_TO_CHANNEL     "gimp-selection-to-channel"
+


GIMP_STOCK_SELECTION_TO_CHANNEL

#define GIMP_STOCK_SELECTION_TO_CHANNEL     "gimp-selection-to-channel"
 

-


GIMP_STOCK_SELECTION_TO_PATH

#define GIMP_STOCK_SELECTION_TO_PATH        "gimp-selection-to-path"
+


GIMP_STOCK_SELECTION_TO_PATH

#define GIMP_STOCK_SELECTION_TO_PATH        "gimp-selection-to-path"
 

-


GIMP_STOCK_GRADIENT_LINEAR

#define GIMP_STOCK_GRADIENT_LINEAR               "gimp-gradient-linear"
+


GIMP_STOCK_GRADIENT_LINEAR

#define GIMP_STOCK_GRADIENT_LINEAR               "gimp-gradient-linear"
 

-


GIMP_STOCK_GRADIENT_BILINEAR

#define GIMP_STOCK_GRADIENT_BILINEAR             "gimp-gradient-bilinear"
+


GIMP_STOCK_GRADIENT_BILINEAR

#define GIMP_STOCK_GRADIENT_BILINEAR             "gimp-gradient-bilinear"
 

-


GIMP_STOCK_GRADIENT_RADIAL

#define GIMP_STOCK_GRADIENT_RADIAL               "gimp-gradient-radial"
+


GIMP_STOCK_GRADIENT_RADIAL

#define GIMP_STOCK_GRADIENT_RADIAL               "gimp-gradient-radial"
 

-


GIMP_STOCK_GRADIENT_SQUARE

#define GIMP_STOCK_GRADIENT_SQUARE               "gimp-gradient-square"
+


GIMP_STOCK_GRADIENT_SQUARE

#define GIMP_STOCK_GRADIENT_SQUARE               "gimp-gradient-square"
 

-


GIMP_STOCK_GRADIENT_CONICAL_SYMMETRIC

#define GIMP_STOCK_GRADIENT_CONICAL_SYMMETRIC    "gimp-gradient-conical-symmetric"
+


GIMP_STOCK_GRADIENT_CONICAL_SYMMETRIC

#define GIMP_STOCK_GRADIENT_CONICAL_SYMMETRIC    "gimp-gradient-conical-symmetric"
 

-


GIMP_STOCK_GRADIENT_CONICAL_ASYMMETRIC

#define GIMP_STOCK_GRADIENT_CONICAL_ASYMMETRIC   "gimp-gradient-conical-asymmetric"
+


GIMP_STOCK_GRADIENT_CONICAL_ASYMMETRIC

#define GIMP_STOCK_GRADIENT_CONICAL_ASYMMETRIC   "gimp-gradient-conical-asymmetric"
 

-


GIMP_STOCK_GRADIENT_SHAPEBURST_SPHERICAL

#define GIMP_STOCK_GRADIENT_SHAPEBURST_SPHERICAL "gimp-gradient-shapeburst-spherical"
+


GIMP_STOCK_GRADIENT_SHAPEBURST_SPHERICAL

#define GIMP_STOCK_GRADIENT_SHAPEBURST_SPHERICAL "gimp-gradient-shapeburst-spherical"
 

-


GIMP_STOCK_GRADIENT_SHAPEBURST_ANGULAR

#define GIMP_STOCK_GRADIENT_SHAPEBURST_ANGULAR   "gimp-gradient-shapeburst-angular"
+


GIMP_STOCK_GRADIENT_SHAPEBURST_ANGULAR

#define GIMP_STOCK_GRADIENT_SHAPEBURST_ANGULAR   "gimp-gradient-shapeburst-angular"
 

-


GIMP_STOCK_GRADIENT_SHAPEBURST_DIMPLED

#define GIMP_STOCK_GRADIENT_SHAPEBURST_DIMPLED   "gimp-gradient-shapeburst-dimpled"
+


GIMP_STOCK_GRADIENT_SHAPEBURST_DIMPLED

#define GIMP_STOCK_GRADIENT_SHAPEBURST_DIMPLED   "gimp-gradient-shapeburst-dimpled"
 

-


GIMP_STOCK_GRADIENT_SPIRAL_CLOCKWISE

#define GIMP_STOCK_GRADIENT_SPIRAL_CLOCKWISE     "gimp-gradient-spiral-clockwise"
+


GIMP_STOCK_GRADIENT_SPIRAL_CLOCKWISE

#define GIMP_STOCK_GRADIENT_SPIRAL_CLOCKWISE     "gimp-gradient-spiral-clockwise"
 

-


GIMP_STOCK_GRADIENT_SPIRAL_ANTICLOCKWISE

#define GIMP_STOCK_GRADIENT_SPIRAL_ANTICLOCKWISE "gimp-gradient-spiral-anticlockwise"
+


GIMP_STOCK_GRADIENT_SPIRAL_ANTICLOCKWISE

#define GIMP_STOCK_GRADIENT_SPIRAL_ANTICLOCKWISE "gimp-gradient-spiral-anticlockwise"
 

-


GIMP_STOCK_GRAVITY_NORTH_WEST

#define GIMP_STOCK_GRAVITY_NORTH_WEST       "gimp-gravity-north-west"
+


GIMP_STOCK_GRAVITY_NORTH_WEST

#define GIMP_STOCK_GRAVITY_NORTH_WEST       "gimp-gravity-north-west"
 

-


GIMP_STOCK_GRAVITY_NORTH

#define GIMP_STOCK_GRAVITY_NORTH            "gimp-gravity-north"
+


GIMP_STOCK_GRAVITY_NORTH

#define GIMP_STOCK_GRAVITY_NORTH            "gimp-gravity-north"
 

-


GIMP_STOCK_GRAVITY_NORTH_EAST

#define GIMP_STOCK_GRAVITY_NORTH_EAST       "gimp-gravity-north-east"
+


GIMP_STOCK_GRAVITY_NORTH_EAST

#define GIMP_STOCK_GRAVITY_NORTH_EAST       "gimp-gravity-north-east"
 

-


GIMP_STOCK_GRAVITY_WEST

#define GIMP_STOCK_GRAVITY_WEST             "gimp-gravity-west"
+


GIMP_STOCK_GRAVITY_WEST

#define GIMP_STOCK_GRAVITY_WEST             "gimp-gravity-west"
 

-


GIMP_STOCK_GRAVITY_EAST

#define GIMP_STOCK_GRAVITY_EAST             "gimp-gravity-east"
+


GIMP_STOCK_GRAVITY_EAST

#define GIMP_STOCK_GRAVITY_EAST             "gimp-gravity-east"
 

-


GIMP_STOCK_GRAVITY_SOUTH_WEST

#define GIMP_STOCK_GRAVITY_SOUTH_WEST       "gimp-gravity-south-west"
+


GIMP_STOCK_GRAVITY_SOUTH_WEST

#define GIMP_STOCK_GRAVITY_SOUTH_WEST       "gimp-gravity-south-west"
 

-


GIMP_STOCK_GRAVITY_SOUTH

#define GIMP_STOCK_GRAVITY_SOUTH            "gimp-gravity-south"
+


GIMP_STOCK_GRAVITY_SOUTH

#define GIMP_STOCK_GRAVITY_SOUTH            "gimp-gravity-south"
 

-


GIMP_STOCK_GRAVITY_SOUTH_EAST

#define GIMP_STOCK_GRAVITY_SOUTH_EAST       "gimp-gravity-south-east"
+


GIMP_STOCK_GRAVITY_SOUTH_EAST

#define GIMP_STOCK_GRAVITY_SOUTH_EAST       "gimp-gravity-south-east"
 

-


GIMP_STOCK_CHAR_PICKER

#define GIMP_STOCK_CHAR_PICKER              "gimp-char-picker"
+


GIMP_STOCK_CHAR_PICKER

#define GIMP_STOCK_CHAR_PICKER              "gimp-char-picker"
 

-


GIMP_STOCK_LETTER_SPACING

#define GIMP_STOCK_LETTER_SPACING           "gimp-letter-spacing"
+


GIMP_STOCK_LETTER_SPACING

#define GIMP_STOCK_LETTER_SPACING           "gimp-letter-spacing"
 

-


GIMP_STOCK_LINE_SPACING

#define GIMP_STOCK_LINE_SPACING             "gimp-line-spacing"
+


GIMP_STOCK_LINE_SPACING

#define GIMP_STOCK_LINE_SPACING             "gimp-line-spacing"
 

-


GIMP_STOCK_TEXT_DIR_LTR

#define GIMP_STOCK_TEXT_DIR_LTR             "gimp-text-dir-ltr"
+


GIMP_STOCK_TEXT_DIR_LTR

#define GIMP_STOCK_TEXT_DIR_LTR             "gimp-text-dir-ltr"
 

-


GIMP_STOCK_TEXT_DIR_RTL

#define GIMP_STOCK_TEXT_DIR_RTL             "gimp-text-dir-rtl"
+


GIMP_STOCK_TEXT_DIR_RTL

#define GIMP_STOCK_TEXT_DIR_RTL             "gimp-text-dir-rtl"
 

-


GIMP_STOCK_PRINT_RESOLUTION

#define GIMP_STOCK_PRINT_RESOLUTION         "gimp-print-resolution"
+


GIMP_STOCK_PRINT_RESOLUTION

#define GIMP_STOCK_PRINT_RESOLUTION         "gimp-print-resolution"
 

-


GIMP_STOCK_TOOLS

#define GIMP_STOCK_TOOLS                    "gimp-tools"
+


GIMP_STOCK_TOOLS

#define GIMP_STOCK_TOOLS                    "gimp-tools"
 

-


GIMP_STOCK_TOOL_OPTIONS

#define GIMP_STOCK_TOOL_OPTIONS             "gimp-tool-options"
+


GIMP_STOCK_TOOL_OPTIONS

#define GIMP_STOCK_TOOL_OPTIONS             "gimp-tool-options"
 

-


GIMP_STOCK_DEVICE_STATUS

#define GIMP_STOCK_DEVICE_STATUS            "gimp-device-status"
+


GIMP_STOCK_DEVICE_STATUS

#define GIMP_STOCK_DEVICE_STATUS            "gimp-device-status"
 

-


GIMP_STOCK_DISPLAY_FILTER

#define GIMP_STOCK_DISPLAY_FILTER           "gimp-display-filter"
+


GIMP_STOCK_DISPLAY_FILTER

#define GIMP_STOCK_DISPLAY_FILTER           "gimp-display-filter"
 

-


GIMP_STOCK_CURVE_FREE

#define GIMP_STOCK_CURVE_FREE               "gimp-curve-free"
+


GIMP_STOCK_CURVE_FREE

#define GIMP_STOCK_CURVE_FREE               "gimp-curve-free"
 

-


GIMP_STOCK_CURVE_SMOOTH

#define GIMP_STOCK_CURVE_SMOOTH             "gimp-curve-smooth"
+


GIMP_STOCK_CURVE_SMOOTH

#define GIMP_STOCK_CURVE_SMOOTH             "gimp-curve-smooth"
 

-


GIMP_STOCK_COLOR_PICKER_BLACK

#define GIMP_STOCK_COLOR_PICKER_BLACK       "gimp-color-picker-black"
+


GIMP_STOCK_COLOR_PICKER_BLACK

#define GIMP_STOCK_COLOR_PICKER_BLACK       "gimp-color-picker-black"
 

-


GIMP_STOCK_COLOR_PICKER_GRAY

#define GIMP_STOCK_COLOR_PICKER_GRAY        "gimp-color-picker-gray"
+


GIMP_STOCK_COLOR_PICKER_GRAY

#define GIMP_STOCK_COLOR_PICKER_GRAY        "gimp-color-picker-gray"
 

-


GIMP_STOCK_COLOR_PICKER_WHITE

#define GIMP_STOCK_COLOR_PICKER_WHITE       "gimp-color-picker-white"
+


GIMP_STOCK_COLOR_PICKER_WHITE

#define GIMP_STOCK_COLOR_PICKER_WHITE       "gimp-color-picker-white"
 

-


GIMP_STOCK_COLOR_TRIANGLE

#define GIMP_STOCK_COLOR_TRIANGLE           "gimp-color-triangle"
+


GIMP_STOCK_COLOR_TRIANGLE

#define GIMP_STOCK_COLOR_TRIANGLE           "gimp-color-triangle"
 

-


GIMP_STOCK_COLOR_PICK_FROM_SCREEN

#define GIMP_STOCK_COLOR_PICK_FROM_SCREEN   "gimp-color-pick-from-screen"
+


GIMP_STOCK_COLOR_PICK_FROM_SCREEN

#define GIMP_STOCK_COLOR_PICK_FROM_SCREEN   "gimp-color-pick-from-screen"
 

-


GIMP_STOCK_CONVERT_GRAYSCALE

#define GIMP_STOCK_CONVERT_GRAYSCALE        "gimp-convert-grayscale"
+


GIMP_STOCK_CONVERT_GRAYSCALE

#define GIMP_STOCK_CONVERT_GRAYSCALE        "gimp-convert-grayscale"
 

-


GIMP_STOCK_CONVERT_INDEXED

#define GIMP_STOCK_CONVERT_INDEXED          "gimp-convert-indexed"
+


GIMP_STOCK_CONVERT_INDEXED

#define GIMP_STOCK_CONVERT_INDEXED          "gimp-convert-indexed"
 

-


GIMP_STOCK_CONVERT_RGB

#define GIMP_STOCK_CONVERT_RGB              "gimp-convert-rgb"
+


GIMP_STOCK_CONVERT_RGB

#define GIMP_STOCK_CONVERT_RGB              "gimp-convert-rgb"
 

-


GIMP_STOCK_TRANSPARENCY

#define GIMP_STOCK_TRANSPARENCY             "gimp-transparency"
+


GIMP_STOCK_TRANSPARENCY

#define GIMP_STOCK_TRANSPARENCY             "gimp-transparency"
 

- -


GIMP_STOCK_DEFAULT_COLORS

#define GIMP_STOCK_DEFAULT_COLORS           "gimp-default-colors"
+
+


GIMP_STOCK_DEFAULT_COLORS

#define GIMP_STOCK_DEFAULT_COLORS           "gimp-default-colors"
 

-


GIMP_STOCK_SWAP_COLORS

#define GIMP_STOCK_SWAP_COLORS              "gimp-swap-colors"
+


GIMP_STOCK_SWAP_COLORS

#define GIMP_STOCK_SWAP_COLORS              "gimp-swap-colors"
 

-


GIMP_STOCK_UNDO_HISTORY

#define GIMP_STOCK_UNDO_HISTORY             "gimp-undo-history"
+


GIMP_STOCK_UNDO_HISTORY

#define GIMP_STOCK_UNDO_HISTORY             "gimp-undo-history"
 

- -


GIMP_STOCK_TOOL_AIRBRUSH

#define GIMP_STOCK_TOOL_AIRBRUSH            "gimp-tool-airbrush"
+
+


GIMP_STOCK_TOOL_AIRBRUSH

#define GIMP_STOCK_TOOL_AIRBRUSH            "gimp-tool-airbrush"
 

-


GIMP_STOCK_TOOL_BLEND

#define GIMP_STOCK_TOOL_BLEND               "gimp-tool-blend"
+


GIMP_STOCK_TOOL_BLEND

#define GIMP_STOCK_TOOL_BLEND               "gimp-tool-blend"
 

-


GIMP_STOCK_TOOL_BLUR

#define GIMP_STOCK_TOOL_BLUR                "gimp-tool-blur"
+


GIMP_STOCK_TOOL_BLUR

#define GIMP_STOCK_TOOL_BLUR                "gimp-tool-blur"
 

-


GIMP_STOCK_TOOL_BRIGHTNESS_CONTRAST

#define GIMP_STOCK_TOOL_BRIGHTNESS_CONTRAST "gimp-tool-brightness-contrast"
+


GIMP_STOCK_TOOL_BRIGHTNESS_CONTRAST

#define GIMP_STOCK_TOOL_BRIGHTNESS_CONTRAST "gimp-tool-brightness-contrast"
 

-


GIMP_STOCK_TOOL_BUCKET_FILL

#define GIMP_STOCK_TOOL_BUCKET_FILL         "gimp-tool-bucket-fill"
+


GIMP_STOCK_TOOL_BUCKET_FILL

#define GIMP_STOCK_TOOL_BUCKET_FILL         "gimp-tool-bucket-fill"
 

-


GIMP_STOCK_TOOL_BY_COLOR_SELECT

#define GIMP_STOCK_TOOL_BY_COLOR_SELECT     "gimp-tool-by-color-select"
+


GIMP_STOCK_TOOL_BY_COLOR_SELECT

#define GIMP_STOCK_TOOL_BY_COLOR_SELECT     "gimp-tool-by-color-select"
 

-


GIMP_STOCK_TOOL_CLONE

#define GIMP_STOCK_TOOL_CLONE               "gimp-tool-clone"
+


GIMP_STOCK_TOOL_CLONE

#define GIMP_STOCK_TOOL_CLONE               "gimp-tool-clone"
 

-


GIMP_STOCK_TOOL_COLOR_BALANCE

#define GIMP_STOCK_TOOL_COLOR_BALANCE       "gimp-tool-color-balance"
+


GIMP_STOCK_TOOL_COLOR_BALANCE

#define GIMP_STOCK_TOOL_COLOR_BALANCE       "gimp-tool-color-balance"
 

-


GIMP_STOCK_TOOL_COLOR_PICKER

#define GIMP_STOCK_TOOL_COLOR_PICKER        "gimp-tool-color-picker"
+


GIMP_STOCK_TOOL_COLOR_PICKER

#define GIMP_STOCK_TOOL_COLOR_PICKER        "gimp-tool-color-picker"
 

-


GIMP_STOCK_TOOL_COLORIZE

#define GIMP_STOCK_TOOL_COLORIZE            "gimp-tool-colorize"
+


GIMP_STOCK_TOOL_COLORIZE

#define GIMP_STOCK_TOOL_COLORIZE            "gimp-tool-colorize"
 

-


GIMP_STOCK_TOOL_CROP

#define GIMP_STOCK_TOOL_CROP                "gimp-tool-crop"
+


GIMP_STOCK_TOOL_CROP

#define GIMP_STOCK_TOOL_CROP                "gimp-tool-crop"
 

-


GIMP_STOCK_TOOL_CURVES

#define GIMP_STOCK_TOOL_CURVES              "gimp-tool-curves"
+


GIMP_STOCK_TOOL_CURVES

#define GIMP_STOCK_TOOL_CURVES              "gimp-tool-curves"
 

-


GIMP_STOCK_TOOL_DODGE

#define GIMP_STOCK_TOOL_DODGE               "gimp-tool-dodge"
+


GIMP_STOCK_TOOL_DODGE

#define GIMP_STOCK_TOOL_DODGE               "gimp-tool-dodge"
 

-


GIMP_STOCK_TOOL_ELLIPSE_SELECT

#define GIMP_STOCK_TOOL_ELLIPSE_SELECT      "gimp-tool-ellipse-select"
+


GIMP_STOCK_TOOL_ELLIPSE_SELECT

#define GIMP_STOCK_TOOL_ELLIPSE_SELECT      "gimp-tool-ellipse-select"
 

-


GIMP_STOCK_TOOL_ERASER

#define GIMP_STOCK_TOOL_ERASER              "gimp-tool-eraser"
+


GIMP_STOCK_TOOL_ERASER

#define GIMP_STOCK_TOOL_ERASER              "gimp-tool-eraser"
 

-


GIMP_STOCK_TOOL_FLIP

#define GIMP_STOCK_TOOL_FLIP                "gimp-tool-flip"
+


GIMP_STOCK_TOOL_FLIP

#define GIMP_STOCK_TOOL_FLIP                "gimp-tool-flip"
 

-


GIMP_STOCK_TOOL_FREE_SELECT

#define GIMP_STOCK_TOOL_FREE_SELECT         "gimp-tool-free-select"
+


GIMP_STOCK_TOOL_FREE_SELECT

#define GIMP_STOCK_TOOL_FREE_SELECT         "gimp-tool-free-select"
 

-


GIMP_STOCK_TOOL_FUZZY_SELECT

#define GIMP_STOCK_TOOL_FUZZY_SELECT        "gimp-tool-fuzzy-select"
+


GIMP_STOCK_TOOL_FUZZY_SELECT

#define GIMP_STOCK_TOOL_FUZZY_SELECT        "gimp-tool-fuzzy-select"
 

-


GIMP_STOCK_TOOL_HUE_SATURATION

#define GIMP_STOCK_TOOL_HUE_SATURATION      "gimp-tool-hue-saturation"
+


GIMP_STOCK_TOOL_HUE_SATURATION

#define GIMP_STOCK_TOOL_HUE_SATURATION      "gimp-tool-hue-saturation"
 

-


GIMP_STOCK_TOOL_INK

#define GIMP_STOCK_TOOL_INK                 "gimp-tool-ink"
+


GIMP_STOCK_TOOL_INK

#define GIMP_STOCK_TOOL_INK                 "gimp-tool-ink"
 

-


GIMP_STOCK_TOOL_ISCISSORS

#define GIMP_STOCK_TOOL_ISCISSORS           "gimp-tool-iscissors"
+


GIMP_STOCK_TOOL_ISCISSORS

#define GIMP_STOCK_TOOL_ISCISSORS           "gimp-tool-iscissors"
 

-


GIMP_STOCK_TOOL_LEVELS

#define GIMP_STOCK_TOOL_LEVELS              "gimp-tool-levels"
+


GIMP_STOCK_TOOL_LEVELS

#define GIMP_STOCK_TOOL_LEVELS              "gimp-tool-levels"
 

-


GIMP_STOCK_TOOL_MEASURE

#define GIMP_STOCK_TOOL_MEASURE             "gimp-tool-measure"
+


GIMP_STOCK_TOOL_MEASURE

#define GIMP_STOCK_TOOL_MEASURE             "gimp-tool-measure"
 

-


GIMP_STOCK_TOOL_MOVE

#define GIMP_STOCK_TOOL_MOVE                "gimp-tool-move"
+


GIMP_STOCK_TOOL_MOVE

#define GIMP_STOCK_TOOL_MOVE                "gimp-tool-move"
 

-


GIMP_STOCK_TOOL_PAINTBRUSH

#define GIMP_STOCK_TOOL_PAINTBRUSH          "gimp-tool-paintbrush"
+


GIMP_STOCK_TOOL_PAINTBRUSH

#define GIMP_STOCK_TOOL_PAINTBRUSH          "gimp-tool-paintbrush"
 

-


GIMP_STOCK_TOOL_PATH

#define GIMP_STOCK_TOOL_PATH                "gimp-tool-path"
+


GIMP_STOCK_TOOL_PATH

#define GIMP_STOCK_TOOL_PATH                "gimp-tool-path"
 

-


GIMP_STOCK_TOOL_PENCIL

#define GIMP_STOCK_TOOL_PENCIL              "gimp-tool-pencil"
+


GIMP_STOCK_TOOL_PENCIL

#define GIMP_STOCK_TOOL_PENCIL              "gimp-tool-pencil"
 

-


GIMP_STOCK_TOOL_PERSPECTIVE

#define GIMP_STOCK_TOOL_PERSPECTIVE         "gimp-tool-perspective"
+


GIMP_STOCK_TOOL_PERSPECTIVE

#define GIMP_STOCK_TOOL_PERSPECTIVE         "gimp-tool-perspective"
 

-


GIMP_STOCK_TOOL_POSTERIZE

#define GIMP_STOCK_TOOL_POSTERIZE           "gimp-tool-posterize"
+


GIMP_STOCK_TOOL_POSTERIZE

#define GIMP_STOCK_TOOL_POSTERIZE           "gimp-tool-posterize"
 

-


GIMP_STOCK_TOOL_RECT_SELECT

#define GIMP_STOCK_TOOL_RECT_SELECT         "gimp-tool-rect-select"
+


GIMP_STOCK_TOOL_RECT_SELECT

#define GIMP_STOCK_TOOL_RECT_SELECT         "gimp-tool-rect-select"
 

-


GIMP_STOCK_TOOL_ROTATE

#define GIMP_STOCK_TOOL_ROTATE              "gimp-tool-rotate"
+


GIMP_STOCK_TOOL_ROTATE

#define GIMP_STOCK_TOOL_ROTATE              "gimp-tool-rotate"
 

-


GIMP_STOCK_TOOL_SCALE

#define GIMP_STOCK_TOOL_SCALE               "gimp-tool-scale"
+


GIMP_STOCK_TOOL_SCALE

#define GIMP_STOCK_TOOL_SCALE               "gimp-tool-scale"
 

-


GIMP_STOCK_TOOL_SHEAR

#define GIMP_STOCK_TOOL_SHEAR               "gimp-tool-shear"
+


GIMP_STOCK_TOOL_SHEAR

#define GIMP_STOCK_TOOL_SHEAR               "gimp-tool-shear"
 

-


GIMP_STOCK_TOOL_SMUDGE

#define GIMP_STOCK_TOOL_SMUDGE              "gimp-tool-smudge"
+


GIMP_STOCK_TOOL_SMUDGE

#define GIMP_STOCK_TOOL_SMUDGE              "gimp-tool-smudge"
 

-


GIMP_STOCK_TOOL_TEXT

#define GIMP_STOCK_TOOL_TEXT                "gimp-tool-text"
+


GIMP_STOCK_TOOL_TEXT

#define GIMP_STOCK_TOOL_TEXT                "gimp-tool-text"
 

-


GIMP_STOCK_TOOL_THRESHOLD

#define GIMP_STOCK_TOOL_THRESHOLD           "gimp-tool-threshold"
+


GIMP_STOCK_TOOL_THRESHOLD

#define GIMP_STOCK_TOOL_THRESHOLD           "gimp-tool-threshold"
 

-


GIMP_STOCK_TOOL_ZOOM

#define GIMP_STOCK_TOOL_ZOOM                "gimp-tool-zoom"
+


GIMP_STOCK_TOOL_ZOOM

#define GIMP_STOCK_TOOL_ZOOM                "gimp-tool-zoom"
 

-


GIMP_STOCK_HCHAIN

#define GIMP_STOCK_HCHAIN                   "gimp-hchain"
+


GIMP_STOCK_HCHAIN

#define GIMP_STOCK_HCHAIN                   "gimp-hchain"
 

-


GIMP_STOCK_HCHAIN_BROKEN

#define GIMP_STOCK_HCHAIN_BROKEN            "gimp-hchain-broken"
+


GIMP_STOCK_HCHAIN_BROKEN

#define GIMP_STOCK_HCHAIN_BROKEN            "gimp-hchain-broken"
 

-


GIMP_STOCK_VCHAIN

#define GIMP_STOCK_VCHAIN                   "gimp-vchain"
+


GIMP_STOCK_VCHAIN

#define GIMP_STOCK_VCHAIN                   "gimp-vchain"
 

-


GIMP_STOCK_VCHAIN_BROKEN

#define GIMP_STOCK_VCHAIN_BROKEN            "gimp-vchain-broken"
+


GIMP_STOCK_VCHAIN_BROKEN

#define GIMP_STOCK_VCHAIN_BROKEN            "gimp-vchain-broken"
 

-


GIMP_STOCK_TEXTURE

#define GIMP_STOCK_TEXTURE                  "gimp-texture"
+


GIMP_STOCK_TEXTURE

#define GIMP_STOCK_TEXTURE                  "gimp-texture"
 

-


GIMP_STOCK_FRAME

#define GIMP_STOCK_FRAME                    "gimp-frame"
+


GIMP_STOCK_FRAME

#define GIMP_STOCK_FRAME                    "gimp-frame"
 

-


GIMP_STOCK_ERROR

#define GIMP_STOCK_ERROR                    "gimp-error"
+


GIMP_STOCK_ERROR

#define GIMP_STOCK_ERROR                    "gimp-error"
 

-


GIMP_STOCK_INFO

#define GIMP_STOCK_INFO                     "gimp-info"
+


GIMP_STOCK_INFO

#define GIMP_STOCK_INFO                     "gimp-info"
 

-


GIMP_STOCK_QUESTION

#define GIMP_STOCK_QUESTION                 "gimp-question"
+


GIMP_STOCK_QUESTION

#define GIMP_STOCK_QUESTION                 "gimp-question"
 

-


GIMP_STOCK_WARNING

#define GIMP_STOCK_WARNING                  "gimp-warning"
+


GIMP_STOCK_WARNING

#define GIMP_STOCK_WARNING                  "gimp-warning"
 

-


GIMP_STOCK_WILBER

#define GIMP_STOCK_WILBER                   "gimp-wilber"
+


GIMP_STOCK_WILBER

#define GIMP_STOCK_WILBER                   "gimp-wilber"
 

-


GIMP_STOCK_WILBER_EEK

#define GIMP_STOCK_WILBER_EEK               "gimp-wilber-eek"
+


GIMP_STOCK_WILBER_EEK

#define GIMP_STOCK_WILBER_EEK               "gimp-wilber-eek"
 

-


GIMP_STOCK_BRUSH

#define GIMP_STOCK_BRUSH                    GIMP_STOCK_TOOL_PAINTBRUSH
+


GIMP_STOCK_BRUSH

#define GIMP_STOCK_BRUSH                    GIMP_STOCK_TOOL_PAINTBRUSH
 

-


GIMP_STOCK_BUFFER

#define GIMP_STOCK_BUFFER                   GTK_STOCK_PASTE
+


GIMP_STOCK_BUFFER

#define GIMP_STOCK_BUFFER                   GTK_STOCK_PASTE
 

-


GIMP_STOCK_FONT

#define GIMP_STOCK_FONT                     GTK_STOCK_SELECT_FONT
+


GIMP_STOCK_FONT

#define GIMP_STOCK_FONT                     GTK_STOCK_SELECT_FONT
 

-


GIMP_STOCK_GRADIENT

#define GIMP_STOCK_GRADIENT                 GIMP_STOCK_TOOL_BLEND
+


GIMP_STOCK_GRADIENT

#define GIMP_STOCK_GRADIENT                 GIMP_STOCK_TOOL_BLEND
 

-


GIMP_STOCK_PALETTE

#define GIMP_STOCK_PALETTE                  GTK_STOCK_SELECT_COLOR
+


GIMP_STOCK_PALETTE

#define GIMP_STOCK_PALETTE                  GTK_STOCK_SELECT_COLOR
 

-


GIMP_STOCK_PATTERN

#define GIMP_STOCK_PATTERN                  GIMP_STOCK_TOOL_BUCKET_FILL
+


GIMP_STOCK_PATTERN

#define GIMP_STOCK_PATTERN                  GIMP_STOCK_TOOL_BUCKET_FILL
 

-


GIMP_STOCK_ZOOM_FOLLOW_WINDOW

#define GIMP_STOCK_ZOOM_FOLLOW_WINDOW       "gimp-zoom-follow-window"
+


GIMP_STOCK_ZOOM_FOLLOW_WINDOW

#define GIMP_STOCK_ZOOM_FOLLOW_WINDOW       "gimp-zoom-follow-window"
 

diff -uraN gimp-2.2.0/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpWidgets.html gimp-2.2.1/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpWidgets.html --- gimp-2.2.0/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpWidgets.html 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpWidgets.html 2004-12-28 16:59:56.000000000 +0100 @@ -163,9 +163,9 @@ gboolean left_align); void gimp_label_set_attributes (GtkLabel *label, ...); -

Description

+

Description

-

Details

gimp_radio_group_new ()

GtkWidget*  gimp_radio_group_new            (gboolean in_frame,
+

Details

gimp_radio_group_new ()

GtkWidget*  gimp_radio_group_new            (gboolean in_frame,
                                              const gchar *frame_title,
                                              ...);

Convenience function to create a group of radio buttons embedded into @@ -175,7 +175,7 @@ frame_title: The title of the Frame or NULL if you don't want a title. ...: A NULL-terminated va_list describing the radio buttons. Returns : A GtkFrame or GtkVbox (depending on in_frame). -


gimp_radio_group_new2 ()

GtkWidget*  gimp_radio_group_new2           (gboolean in_frame,
+

gimp_radio_group_new2 ()

GtkWidget*  gimp_radio_group_new2           (gboolean in_frame,
                                              const gchar *frame_title,
                                              GCallback radio_button_callback,
                                              gpointer radio_button_callback_data,
@@ -196,14 +196,14 @@
 ...:                   A NULL-terminated va_list describing
                         the radio buttons.
 Returns : A GtkFrame or GtkVbox (depending on in_frame).
-

gimp_radio_group_set_active ()

void        gimp_radio_group_set_active     (GtkRadioButton *radio_button,
+

gimp_radio_group_set_active ()

void        gimp_radio_group_set_active     (GtkRadioButton *radio_button,
                                              gpointer item_data);

Calls gtk_toggle_button_set_active() with the radio button that was created with a matching item_data.

radio_button: Pointer to a GtkRadioButton.
item_data: The item_data of the radio button you want to select. -

gimp_int_radio_group_new ()

GtkWidget*  gimp_int_radio_group_new        (gboolean in_frame,
+

gimp_int_radio_group_new ()

GtkWidget*  gimp_int_radio_group_new        (gboolean in_frame,
                                              const gchar *frame_title,
                                              GCallback radio_button_callback,
                                              gpointer radio_button_callback_data,
@@ -227,7 +227,7 @@
 ...:                   A NULL-terminated va_list describing
                         the radio buttons.
 Returns : A GtkFrame or GtkVbox (depending on in_frame).
-

gimp_int_radio_group_set_active ()

void        gimp_int_radio_group_set_active (GtkRadioButton *radio_button,
+

gimp_int_radio_group_set_active ()

void        gimp_int_radio_group_set_active (GtkRadioButton *radio_button,
                                              gint item_data);

Calls gtk_toggle_button_set_active() with the radio button that was created with a matching item_data. This function does the same thing as @@ -236,7 +236,7 @@

radio_button: Pointer to a GtkRadioButton.
item_data: The item_data of the radio button you want to select. -

gimp_spin_button_new ()

GtkWidget*  gimp_spin_button_new            (GtkObject **adjustment,
+

gimp_spin_button_new ()

GtkWidget*  gimp_spin_button_new            (GtkObject **adjustment,
                                              gdouble value,
                                              gdouble lower,
                                              gdouble upper,
@@ -259,32 +259,32 @@
 climb_rate:     The spinbutton's climb rate.
 digits:         The spinbutton's number of decimal digits.
 Returns : A GtkSpinbutton and it's GtkAdjustment.
-

GIMP_SCALE_ENTRY_LABEL()

#define     GIMP_SCALE_ENTRY_LABEL(adj)

+


GIMP_SCALE_ENTRY_LABEL()

#define     GIMP_SCALE_ENTRY_LABEL(adj)

Returns the scale_entry's GtkLabel.

adj:The GtkAdjustment returned by gimp_scale_entry_new(). -

GIMP_SCALE_ENTRY_SCALE()

#define     GIMP_SCALE_ENTRY_SCALE(adj)

+


GIMP_SCALE_ENTRY_SCALE()

#define     GIMP_SCALE_ENTRY_SCALE(adj)

Returns the scale_entry's GtkHScale.

adj:The GtkAdjustment returned by gimp_scale_entry_new(). -

GIMP_SCALE_ENTRY_SCALE_ADJ()

#define     GIMP_SCALE_ENTRY_SCALE_ADJ(adj)

+


GIMP_SCALE_ENTRY_SCALE_ADJ()

#define     GIMP_SCALE_ENTRY_SCALE_ADJ(adj)

Returns the GtkAdjustment of the scale_entry's GtkHScale.

adj:The GtkAdjustment returned by gimp_scale_entry_new(). -

GIMP_SCALE_ENTRY_SPINBUTTON()

#define     GIMP_SCALE_ENTRY_SPINBUTTON(adj)

+


GIMP_SCALE_ENTRY_SPINBUTTON()

#define     GIMP_SCALE_ENTRY_SPINBUTTON(adj)

Returns the scale_entry's GtkSpinButton.

adj:The GtkAdjustment returned by gimp_scale_entry_new(). -

GIMP_SCALE_ENTRY_SPINBUTTON_ADJ()

#define     GIMP_SCALE_ENTRY_SPINBUTTON_ADJ(adj)

+


GIMP_SCALE_ENTRY_SPINBUTTON_ADJ()

#define     GIMP_SCALE_ENTRY_SPINBUTTON_ADJ(adj)

Returns the GtkAdjustment of the scale_entry's GtkSpinButton.

adj:The GtkAdjustment returned by gimp_scale_entry_new(). -

gimp_scale_entry_new ()

GtkObject*  gimp_scale_entry_new            (GtkTable *table,
+

gimp_scale_entry_new ()

GtkObject*  gimp_scale_entry_new            (GtkTable *table,
                                              gint column,
                                              gint row,
                                              const gchar *text,
@@ -326,7 +326,7 @@
 tooltip:             A tooltip message for the scale and the spinbutton.
 help_id:             The widgets' help_id (see gimp_help_set_help_data()).
 Returns : The GtkSpinButton's GtkAdjustment.
-

gimp_scale_entry_set_sensitive ()

void        gimp_scale_entry_set_sensitive  (GtkObject *adjustment,
+

gimp_scale_entry_set_sensitive ()

void        gimp_scale_entry_set_sensitive  (GtkObject *adjustment,
                                              gboolean sensitive);

Sets the sensitivity of the scale_entry's GtkLabel, GtkHScale and GtkSpinbutton.

@@ -334,7 +334,7 @@

adjustment: a GtkAdjustment returned by gimp_scale_entry_new()
sensitive: a boolean value with the same semantics as the sensitive parameter of gtk_widget_set_sensitive() -

gimp_scale_entry_set_logarithmic ()

void        gimp_scale_entry_set_logarithmic
+

gimp_scale_entry_set_logarithmic ()

void        gimp_scale_entry_set_logarithmic
                                             (GtkObject *adjustment,
                                              gboolean logarithmic);

Sets whether the scale_entry's scale widget will behave in a linear @@ -346,7 +346,7 @@ logarithmic: a boolean value to set or reset logarithmic behaviour of the scale widget

Since GIMP 2.2 -


gimp_scale_entry_get_logarithmic ()

gboolean    gimp_scale_entry_get_logarithmic
+


gimp_scale_entry_get_logarithmic ()

gboolean    gimp_scale_entry_get_logarithmic
                                             (GtkObject *adjustment);

@@ -355,7 +355,7 @@ logharithmic fashion, FALSE for linear behaviour.

Since GIMP 2.2 -


gimp_color_scale_entry_new ()

GtkObject*  gimp_color_scale_entry_new      (GtkTable *table,
+


gimp_color_scale_entry_new ()

GtkObject*  gimp_color_scale_entry_new      (GtkTable *table,
                                              gint column,
                                              gint row,
                                              const gchar *text,
@@ -388,22 +388,22 @@
 tooltip:             A tooltip message for the scale and the spinbutton.
 help_id:             The widgets' help_id (see gimp_help_set_help_data()).
 Returns : The GtkSpinButton's GtkAdjustment.
-

GIMP_RANDOM_SEED_SPINBUTTON()

#define     GIMP_RANDOM_SEED_SPINBUTTON(hbox)

+


GIMP_RANDOM_SEED_SPINBUTTON()

#define     GIMP_RANDOM_SEED_SPINBUTTON(hbox)

Returns the random_seed's GtkSpinButton.

hbox:The GtkHBox returned by gimp_random_seed_new(). -

GIMP_RANDOM_SEED_SPINBUTTON_ADJ()

#define     GIMP_RANDOM_SEED_SPINBUTTON_ADJ(hbox)

+


GIMP_RANDOM_SEED_SPINBUTTON_ADJ()

#define     GIMP_RANDOM_SEED_SPINBUTTON_ADJ(hbox)

Returns the GtkAdjustment of the random_seed's GtkSpinButton.

hbox:The GtkHBox returned by gimp_random_seed_new(). -

GIMP_RANDOM_SEED_TOGGLE()

#define     GIMP_RANDOM_SEED_TOGGLE(hbox)

+


GIMP_RANDOM_SEED_TOGGLE()

#define     GIMP_RANDOM_SEED_TOGGLE(hbox)

hbox: -

gimp_random_seed_new ()

GtkWidget*  gimp_random_seed_new            (guint32 *seed,
+

gimp_random_seed_new ()

GtkWidget*  gimp_random_seed_new            (guint32 *seed,
                                              gboolean *random_seed);

Creates a widget that allows the user to control how the random number generator is initialized.

@@ -413,12 +413,12 @@ initialised randomly or not. Returns : A GtkHBox containing a GtkSpinButton for the seed and a GtkButton for setting a random seed. -


GIMP_COORDINATES_CHAINBUTTON()

#define     GIMP_COORDINATES_CHAINBUTTON(sizeentry)

+


GIMP_COORDINATES_CHAINBUTTON()

#define     GIMP_COORDINATES_CHAINBUTTON(sizeentry)

Returns the GimpChainButton which is attached to the GimpSizeEntry.

sizeentry:The GimpSizeEntry returned by gimp_coordinates_new(). -

gimp_coordinates_new ()

GtkWidget*  gimp_coordinates_new            (

gimp_coordinates_new ()

GtkWidget*  gimp_coordinates_new            (GimpUnit unit,
                                              const gchar *unit_format,
@@ -476,7 +476,7 @@
 ysize_0:                The Y value which will be treated as 0%.
 ysize_100:              The Y value which will be treated as 100%.
 Returns : The new GimpSizeEntry.
-

gimp_pixmap_button_new ()

GtkWidget*  gimp_pixmap_button_new          (gchar **xpm_data,
+

gimp_pixmap_button_new ()

GtkWidget*  gimp_pixmap_button_new          (gchar **xpm_data,
                                              const gchar *text);

Warning

gimp_pixmap_button_new is deprecated and should not be used in newly-written code.

Convenience function that creates a GtkButton with a GimpPixmap and an optional GtkLabel.

@@ -484,7 +484,7 @@

xpm_data: The XPM data which will be passed to gimp_pixmap_new().
text: An optional text which will appear right of the pixmap.
Returns : The new GtkButton. -

gimp_toggle_button_sensitive_update ()

void        gimp_toggle_button_sensitive_update
+

gimp_toggle_button_sensitive_update ()

void        gimp_toggle_button_sensitive_update
                                             (GtkToggleButton *toggle_button);

If you attached a pointer to a GtkWidget with g_object_set_data() and the "set_sensitive" key to the GtkToggleButton, the sensitive state of @@ -500,21 +500,21 @@

toggle_button: The GtkToggleButton the "set_sensitive" and "inverse_sensitive" lists are attached to. -

gimp_toggle_button_update ()

void        gimp_toggle_button_update       (GtkWidget *widget,
+

gimp_toggle_button_update ()

void        gimp_toggle_button_update       (GtkWidget *widget,
                                              gpointer data);

Note that this function calls gimp_toggle_button_sensitive_update().

widget: A GtkToggleButton.
data: A pointer to a gint variable which will store the value of gtk_toggle_button_get_active(). -

gimp_radio_button_update ()

void        gimp_radio_button_update        (GtkWidget *widget,
+

gimp_radio_button_update ()

void        gimp_radio_button_update        (GtkWidget *widget,
                                              gpointer data);

Note that this function calls gimp_toggle_button_sensitive_update().

widget: A GtkRadioButton.
data: A pointer to a gint variable which will store the value of GPOINTER_TO_INT (g_object_get_data (widget, "gimp-item-data")). -

gimp_int_adjustment_update ()

void        gimp_int_adjustment_update      (GtkAdjustment *adjustment,
+

gimp_int_adjustment_update ()

void        gimp_int_adjustment_update      (GtkAdjustment *adjustment,
                                              gpointer data);

Note that the GtkAdjustment's value (which is a gdouble) will be rounded with

adjustment: A GtkAdjustment.
data: A pointer to a gint variable which will store the adjustment's value. -

gimp_uint_adjustment_update ()

void        gimp_uint_adjustment_update     (GtkAdjustment *adjustment,
+

gimp_uint_adjustment_update ()

void        gimp_uint_adjustment_update     (GtkAdjustment *adjustment,
                                              gpointer data);

Note that the GtkAdjustment's value (which is a gdouble) will be rounded with (guint) (value + 0.5).

@@ -532,21 +532,21 @@

adjustment: A GtkAdjustment.
data: A pointer to a guint variable which will store the adjustment's value. -

gimp_float_adjustment_update ()

void        gimp_float_adjustment_update    (GtkAdjustment *adjustment,
+

gimp_float_adjustment_update ()

void        gimp_float_adjustment_update    (GtkAdjustment *adjustment,
                                              gpointer data);

adjustment: A GtkAdjustment.
data: A pointer to a gfloat varaiable which will store the adjustment's value. -

gimp_double_adjustment_update ()

void        gimp_double_adjustment_update   (GtkAdjustment *adjustment,
+

gimp_double_adjustment_update ()

void        gimp_double_adjustment_update   (GtkAdjustment *adjustment,
                                              gpointer data);

adjustment: A GtkAdjustment.
data: A pointer to a gdouble variable which will store the adjustment's value. -

gimp_unit_menu_update ()

void        gimp_unit_menu_update           (GtkWidget *widget,
+

gimp_unit_menu_update ()

void        gimp_unit_menu_update           (GtkWidget *widget,
                                              gpointer data);

This callback can set the number of decimal digits of an arbitrary number of GtkSpinButton's. To use this functionality, attach the spinbuttons @@ -561,7 +561,7 @@ href="../libgimpbase/libgimpbase-gimpunit.html#GimpUnit" >GimpUnit variable which will store the unit menu's value. -


gimp_table_attach_aligned ()

GtkWidget*  gimp_table_attach_aligned       (GtkTable *table,
+

gimp_table_attach_aligned ()

GtkWidget*  gimp_table_attach_aligned       (GtkTable *table,
                                              gint column,
                                              gint row,
                                              const gchar *label_text,
@@ -584,7 +584,7 @@
 colspan:    The number of columns the widget will use.
 left_align: TRUE if the widget should be left-aligned.
 Returns : The created GtkLabel.
-

gimp_label_set_attributes ()

void        gimp_label_set_attributes       (GtkLabel *label,
+

gimp_label_set_attributes ()

void        gimp_label_set_attributes       (GtkLabel *label,
                                              ...);

Sets Pango attributes on a GtkLabel in a more convenient way than gtk_label_set_attributes(). diff -uraN gimp-2.2.0/devel-docs/libgimpwidgets/xml/gimppreviewarea.xml gimp-2.2.1/devel-docs/libgimpwidgets/xml/gimppreviewarea.xml --- gimp-2.2.0/devel-docs/libgimpwidgets/xml/gimppreviewarea.xml 2004-12-19 03:35:04.000000000 +0100 +++ gimp-2.2.1/devel-docs/libgimpwidgets/xml/gimppreviewarea.xml 2004-12-28 16:59:55.000000000 +0100 @@ -58,7 +58,7 @@ gint rowstride1, const guchar *buf2, gint rowstride2, - guchar *mask, + const guchar *mask, gint rowstride_mask); void gimp_preview_area_set_offsets (GimpPreviewArea *area, gint x, @@ -149,8 +149,7 @@ const guchar *buf, gint rowstride); -Draws buf on area and queues a redraw on the rectangle that -changed. +Draws buf on area and queues a redraw on the given rectangle. Since GIMP 2.2 @@ -193,7 +192,8 @@ guchar green, guchar blue); -Fills the area in the given color. +Fills area in the given color and queues a redraw on the given +rectangle. Since GIMP 2.2 @@ -216,13 +216,13 @@ buffer height red : - + red component of the fill color (0-255) green : - + green component of the fill color (0-255) blue : - + red component of the fill color (0-255) @@ -239,8 +239,8 @@ gint rowstride2, guchar opacity); -Blend buf1 on top of buf2 with the given opacity on the area -and queues a redraw on the rectangle that changed. +Composites buf1 on buf2 with the given opacity, draws the result +to area and queues a redraw on the given rectangle. Since GIMP 2.2 @@ -267,14 +267,14 @@ buf1 : a guchar buffer that contains the pixel data for - the first (on bottom) layer + the lower layer rowstride1 : rowstride of buf1 buf2 : a guchar buffer that contains the pixel data for - the second (on top) layer + the upper layer rowstride2 : rowstride of buf2 @@ -295,11 +295,11 @@ gint rowstride1, const guchar *buf2, gint rowstride2, - guchar *mask, + const guchar *mask, gint rowstride_mask); -Blend buf1 on top of buf2 with the given mask on the area -and queues a redraw on the rectangle that changed. +Composites buf1 on buf2 with the given mask, draws the result on +area and queues a redraw on the given rectangle. Since GIMP 2.2 @@ -326,14 +326,14 @@ buf1 : a guchar buffer that contains the pixel data for - the first (on bottom) layer + the lower layer rowstride1 : rowstride of buf1 buf2 : a guchar buffer that contains the pixel data for - the second (on top) layer + the upper layer rowstride2 : rowstride of buf2 diff -uraN gimp-2.2.0/libgimp/gimp.c gimp-2.2.1/libgimp/gimp.c --- gimp-2.2.0/libgimp/gimp.c 2004-11-19 21:08:14.000000000 +0100 +++ gimp-2.2.1/libgimp/gimp.c 2004-12-28 16:22:32.000000000 +0100 @@ -484,8 +484,8 @@ * @author: the procedure's author(s). * @copyright: the procedure's copyright. * @date: the date the procedure was added. - * @menu_path: the procedure's menu path, or #NULL if the procedure has - * no menu entry. + * @menu_label: the label to use for the procedure's menu entry, + * or #NULL if the procedure has no menu entry. * @image_types: the drawable types the procedure can handle. * @type: the type of the procedure. * @n_params: the number of parameters the procedure takes. @@ -506,11 +506,13 @@ * optional but then you shouldn't write procedures without proper * documentation, should you. * - * @menu_path can be #NULL, or a string in the form - * "<Domain>/Path/To/My/Menu" - * (e.g. "<Image>/Filters/Render/Useless") if you want your - * procedure to be available via a menu. Allowed prefixes are - * <Toolbox>, <Image>, <Load> and <Save> + * @menu_label defines the label that should be used for the + * procedure's menu entry (use #NULL if the procedure shouldn't have a + * menu entry). The position where to register in the menu hierarchy + * is choosen using gimp_plugin_menu_register(). This function also + * still accepts the old (pre-2.2) way of registering a menu entry and + * takes a string in the form "<Domain>/Path/To/My/Menu" + * (e.g. "<Image>/Filters/Render/Useless"). * * @type must be one of #GIMP_PLUGIN or #GIMP_EXTENSION. Note that * temporary procedures must be installed using @@ -538,7 +540,7 @@ const gchar *author, const gchar *copyright, const gchar *date, - const gchar *menu_path, + const gchar *menu_label, const gchar *image_types, GimpPDBProcType type, gint n_params, @@ -561,7 +563,7 @@ proc_install.author = (gchar *) author; proc_install.copyright = (gchar *) copyright; proc_install.date = (gchar *) date; - proc_install.menu_path = (gchar *) menu_path; + proc_install.menu_path = (gchar *) menu_label; proc_install.image_types = (gchar *) image_types; proc_install.type = type; proc_install.nparams = n_params; @@ -582,7 +584,7 @@ * @author: the procedure's author(s). * @copyright: the procedure's copyright. * @date: the date the procedure was added. - * @menu_path: the procedure's menu path, or #NULL if the procedure has + * @menu_label: the procedure's menu label, or #NULL if the procedure has * no menu entry. * @image_types: the drawable types the procedure can handle. * @type: the type of the procedure. @@ -619,7 +621,7 @@ const gchar *author, const gchar *copyright, const gchar *date, - const gchar *menu_path, + const gchar *menu_label, const gchar *image_types, GimpPDBProcType type, gint n_params, @@ -639,7 +641,7 @@ gimp_install_procedure (name, blurb, help, author, copyright, date, - menu_path, + menu_label, image_types, type, n_params, n_return_vals, diff -uraN gimp-2.2.0/libgimp/gimpdrawablepreview.c gimp-2.2.1/libgimp/gimpdrawablepreview.c --- gimp-2.2.0/libgimp/gimpdrawablepreview.c 2004-11-02 12:30:48.000000000 +0100 +++ gimp-2.2.1/libgimp/gimpdrawablepreview.c 2004-12-27 20:42:16.000000000 +0100 @@ -423,6 +423,8 @@ GimpPixelRgn src = *region; gpointer iter; + src.dirty = FALSE; /* we don't dirty the tiles, just read them */ + for (iter = gimp_pixel_rgns_register (1, &src); iter != NULL; iter = gimp_pixel_rgns_process (iter)) diff -uraN gimp-2.2.0/libgimp/gimp.h gimp-2.2.1/libgimp/gimp.h --- gimp-2.2.0/libgimp/gimp.h 2004-10-04 18:21:52.000000000 +0200 +++ gimp-2.2.1/libgimp/gimp.h 2004-12-28 16:22:32.000000000 +0100 @@ -232,7 +232,7 @@ const gchar *author, const gchar *copyright, const gchar *date, - const gchar *menu_path, + const gchar *menu_label, const gchar *image_types, GimpPDBProcType type, gint n_params, @@ -248,7 +248,7 @@ const gchar *author, const gchar *copyright, const gchar *date, - const gchar *menu_path, + const gchar *menu_label, const gchar *image_types, GimpPDBProcType type, gint n_params, diff -uraN gimp-2.2.0/libgimp/gimppixelrgn.c gimp-2.2.1/libgimp/gimppixelrgn.c --- gimp-2.2.0/libgimp/gimppixelrgn.c 2004-10-17 22:05:01.000000000 +0200 +++ gimp-2.2.1/libgimp/gimppixelrgn.c 2004-12-27 20:42:16.000000000 +0100 @@ -90,30 +90,37 @@ * * Initialize the pixel region pointed by @pr with the specified parameters. * - * Note: here are some useful usecases for the @dirty/@shadow combination: - * - dirty = FALSE, shadow = FALSE: the region will be used to read the actual - * drawable datas. This is useful for save - * plug-ins or for filters. - * - * - dirty = FALSE, shadow = TRUE: the region will be used to read the shadow - * tiles. This is used in some filter - * plug-ins which operate in two passes such - * as gaussian blur. The first one read the - * actual drawable data and write to the - * shadow tiles, and the second one read from - * and write to the shadow tiles. - * - * - dirty = TRUE, shadow = TRUE: the region will be used to write to the - * shadow tiles. This is a very common - * practice to write to the shadow tiles and - * then use #gimp_drawable_merge_shadow () to - * merge the changes from the shadow tiles - * using the current selection as a mask. - * - * - dirty = TRUE, shadow = FALSE: the region will be used to directly change - * the drawable content. Don't do this, since - * this could prevent the Undo-System from - * working as expected. + * The @dirty and @shadow flags can be used as follows: + * + * - @dirty = FALSE, @shadow = FALSE: the region will be used to read + * the actual drawable datas. This + * is useful for save plug-ins or for + * filters. + * + * - @dirty = FALSE, @shadow = TRUE: the region will be used to read the + * shadow tiles. This is used in + * some filter plug-ins which operate + * in two passes such as gaussian + * blur. The first pass reads the + * actual drawable data and writes to + * the shadow tiles, and the second + * one reads from and writes to the + * shadow tiles. + * + * - @dirty = TRUE, @shadow = TRUE: the region will be used to write to + * the shadow tiles. It is common + * practice to write to the shadow + * tiles and then use + * #gimp_drawable_merge_shadow () to + * merge the changes from the shadow + * tiles using the current selection + * as a mask. + * + * - @dirty = TRUE, @shadow = FALSE: the region will be used to directly + * change the drawable content. Don't + * do this, since this could prevent + * the Undo-System from working as + * expected. **/ void gimp_pixel_rgn_init (GimpPixelRgn *pr, diff -uraN gimp-2.2.0/libgimp/gimpregioniterator.c gimp-2.2.1/libgimp/gimpregioniterator.c --- gimp-2.2.0/libgimp/gimpregioniterator.c 2004-09-29 15:39:23.000000000 +0200 +++ gimp-2.2.1/libgimp/gimpregioniterator.c 2004-12-27 20:42:16.000000000 +0100 @@ -210,6 +210,9 @@ total_area = (x2 - x1) * (y2 - y1); + if (total_area <= 0) + return; + area_so_far = 0; progress_skip = 0; @@ -261,6 +264,9 @@ total_area = (x2 - x1) * (y2 - y1); + if (total_area <= 0) + return; + area_so_far = 0; progress_skip = 0; diff -uraN gimp-2.2.0/libgimpbase/gimpversion.h gimp-2.2.1/libgimpbase/gimpversion.h --- gimp-2.2.0/libgimpbase/gimpversion.h 2004-12-18 00:45:29.000000000 +0100 +++ gimp-2.2.1/libgimpbase/gimpversion.h 2004-12-27 20:50:02.000000000 +0100 @@ -11,8 +11,8 @@ #define GIMP_MAJOR_VERSION (2) #define GIMP_MINOR_VERSION (2) -#define GIMP_MICRO_VERSION (0) -#define GIMP_VERSION "2.2.0" +#define GIMP_MICRO_VERSION (1) +#define GIMP_VERSION "2.2.1" #define GIMP_API_VERSION "2.0" #define GIMP_CHECK_VERSION(major, minor, micro) \ (GIMP_MAJOR_VERSION > (major) || \ diff -uraN gimp-2.2.0/libgimpwidgets/gimppreviewarea.c gimp-2.2.1/libgimpwidgets/gimppreviewarea.c --- gimp-2.2.0/libgimpwidgets/gimppreviewarea.c 2004-11-02 12:30:49.000000000 +0100 +++ gimp-2.2.1/libgimpwidgets/gimppreviewarea.c 2004-12-27 20:42:16.000000000 +0100 @@ -354,8 +354,7 @@ * @buf: a #guchar buffer that contains the preview pixel data. * @rowstride: rowstride of @buf * - * Draws @buf on @area and queues a redraw on the rectangle that - * changed. + * Draws @buf on @area and queues a redraw on the given rectangle. * * Since GIMP 2.2 **/ @@ -369,13 +368,13 @@ const guchar *buf, gint rowstride) { - const guchar *src; - guchar *dest; - guint size; - guchar light; - guchar dark; - gint row; - gint col; + const guchar *src; + guchar *dest; + guint size; + guchar light; + guchar dark; + gint row; + gint col; g_return_if_fail (GIMP_IS_PREVIEW_AREA (area)); g_return_if_fail (width > 0 && height > 0); @@ -600,15 +599,15 @@ * @height: buffer height * @type: the #GimpImageType of @buf1 and @buf2 * @buf1: a #guchar buffer that contains the pixel data for - * the first (on bottom) layer + * the lower layer * @rowstride1: rowstride of @buf1 * @buf2: a #guchar buffer that contains the pixel data for - * the second (on top) layer + * the upper layer * @rowstride2: rowstride of @buf2 * @opacity: The opacity of the first layer. * - * Blend @buf1 on top of @buf2 with the given @opacity on the @area - * and queues a redraw on the rectangle that changed. + * Composites @buf1 on @buf2 with the given @opacity, draws the result + * to @area and queues a redraw on the given rectangle. * * Since GIMP 2.2 **/ @@ -625,15 +624,15 @@ gint rowstride2, guchar opacity) { - const guchar *src1; - const guchar *src2; - guchar *dest; - guint size; - guchar light; - guchar dark; - gint row; - gint col; - gint i; + const guchar *src1; + const guchar *src2; + guchar *dest; + guint size; + guchar light; + guchar dark; + gint row; + gint col; + gint i; g_return_if_fail (GIMP_IS_PREVIEW_AREA (area)); g_return_if_fail (width > 0 && height > 0); @@ -977,17 +976,17 @@ * @height: buffer height * @type: the #GimpImageType of @buf1 and @buf2 * @buf1: a #guchar buffer that contains the pixel data for - * the first (on bottom) layer + * the lower layer * @rowstride1: rowstride of @buf1 * @buf2: a #guchar buffer that contains the pixel data for - * the second (on top) layer + * the upper layer * @rowstride2: rowstride of @buf2 * @mask: a #guchar buffer representing the mask of the second * layer. * @rowstride_mask: rowstride for the mask. * - * Blend @buf1 on top of @buf2 with the given @mask on the @area - * and queues a redraw on the rectangle that changed. + * Composites @buf1 on @buf2 with the given @mask, draws the result on + * @area and queues a redraw on the given rectangle. * * Since GIMP 2.2 **/ @@ -1002,19 +1001,19 @@ gint rowstride1, const guchar *buf2, gint rowstride2, - guchar *mask, + const guchar *mask, gint rowstride_mask) { - const guchar *src1; - const guchar *src2; - const guchar *src_mask; - guchar *dest; - guint size; - guchar light; - guchar dark; - gint row; - gint col; - gint i; + const guchar *src1; + const guchar *src2; + const guchar *src_mask; + guchar *dest; + guint size; + guchar light; + guchar dark; + gint row; + gint col; + gint i; g_return_if_fail (GIMP_IS_PREVIEW_AREA (area)); g_return_if_fail (width > 0 && height > 0); @@ -1089,6 +1088,7 @@ d[1] = ((s1[1] << 8) + (s2[1] - s1[1]) * m[0]) >> 8; d[2] = ((s1[2] << 8) + (s2[2] - s1[2]) * m[0]) >> 8; } + src1 += rowstride1; src2 += rowstride2; src_mask += rowstride_mask; @@ -1235,9 +1235,7 @@ guchar *d = dest; for (col = 0; col < width; col++, s1++, s2++, m++, d += 3) - { - d[0] = d[1] = d[2] = ((s1[0] << 8) + (s2[0] - s1[0]) * m[0]) >> 8; - } + d[0] = d[1] = d[2] = ((s1[0] << 8) + (s2[0] - s1[0]) * m[0]) >> 8; src1 += rowstride1; src2 += rowstride2; @@ -1478,8 +1476,8 @@ gushort a = cmap1[i] * s1[1]; gushort b = cmap2[i] * s2[1]; - inter[i] = - (((a << 8) + (b - a) * m[0]) >> 8) / inter[3]; + inter[i] = ((((a << 8) + (b - a) * m[0]) >> 8) + / inter[3]); } } } @@ -1501,9 +1499,12 @@ register guint alpha = inter[3] + 1; register guint check = CHECK_COLOR (area, row, col); - d[0] = ((check << 8) + (inter[0] - check) * alpha) >> 8; - d[1] = ((check << 8) + (inter[1] - check) * alpha) >> 8; - d[2] = ((check << 8) + (inter[2] - check) * alpha) >> 8; + d[0] = + ((check << 8) + (inter[0] - check) * alpha) >> 8; + d[1] = + ((check << 8) + (inter[1] - check) * alpha) >> 8; + d[2] = + ((check << 8) + (inter[2] - check) * alpha) >> 8; } break; } @@ -1530,11 +1531,12 @@ * @y: y offset in preview * @width: buffer width * @height: buffer height - * @red: - * @green: - * @blue: + * @red: red component of the fill color (0-255) + * @green: green component of the fill color (0-255) + * @blue: red component of the fill color (0-255) * - * Fills the @area in the given color. + * Fills @area in the given color and queues a redraw on the given + * rectangle. * * Since GIMP 2.2 **/ @@ -1600,7 +1602,6 @@ for (row = 1, d = dest; row < height; row++) { d += area->rowstride; - memcpy (d, dest, width * 3); } @@ -1700,18 +1701,17 @@ if (active) { - const gchar *name; - gint value; - - name = g_object_get_data (G_OBJECT (item), - "gimp-preview-area-prop-name"); - value = GPOINTER_TO_INT (g_object_get_data (G_OBJECT (item), - "gimp-preview-area-prop-value")); - + const gchar *name = g_object_get_data (G_OBJECT (item), + "gimp-preview-area-prop-name"); if (name) - g_object_set (area, - name, value, - NULL); + { + gint value = + GPOINTER_TO_INT (g_object_get_data (G_OBJECT (item), + "gimp-preview-area-prop-value")); + g_object_set (area, + name, value, + NULL); + } } } diff -uraN gimp-2.2.0/libgimpwidgets/gimppreviewarea.h gimp-2.2.1/libgimpwidgets/gimppreviewarea.h --- gimp-2.2.0/libgimpwidgets/gimppreviewarea.h 2004-11-04 11:51:55.000000000 +0100 +++ gimp-2.2.1/libgimpwidgets/gimppreviewarea.h 2004-12-27 20:42:16.000000000 +0100 @@ -97,7 +97,7 @@ gint rowstride1, const guchar *buf2, gint rowstride2, - guchar *mask, + const guchar *mask, gint rowstride_mask); void gimp_preview_area_fill (GimpPreviewArea *area, gint x, diff -uraN gimp-2.2.0/Makefile.am gimp-2.2.1/Makefile.am --- gimp-2.2.0/Makefile.am 2004-12-11 00:30:20.000000000 +0100 +++ gimp-2.2.1/Makefile.am 2004-12-27 20:42:16.000000000 +0100 @@ -56,6 +56,7 @@ LICENSE \ NEWS \ NEWS.pre-2-0 \ + NEWS.pre-2-2 \ README \ README.i18n \ README.win32 \ diff -uraN gimp-2.2.0/Makefile.in gimp-2.2.1/Makefile.in --- gimp-2.2.0/Makefile.in 2004-12-18 00:44:45.000000000 +0100 +++ gimp-2.2.1/Makefile.in 2004-12-27 20:49:25.000000000 +0100 @@ -418,6 +418,7 @@ LICENSE \ NEWS \ NEWS.pre-2-0 \ + NEWS.pre-2-2 \ README \ README.i18n \ README.win32 \ @@ -464,9 +465,10 @@ DIST_COMMON = README $(srcdir)/Makefile.in $(srcdir)/configure AUTHORS \ COPYING ChangeLog INSTALL Makefile.am NEWS acinclude.m4 \ aclocal.m4 compile config.guess config.h.in config.sub \ - configure.in depcomp gimp-zip.in gimp.pc.in gimpthumb.pc.in \ - gimptool-2.0.in gimptool-win32.c.in gimpui.pc.in install-sh \ - ltmain.sh missing mkinstalldirs py-compile + configure configure.in depcomp gimp-zip.in gimp.pc.in \ + gimpthumb.pc.in gimptool-2.0.in gimptool-win32.c.in \ + gimpui.pc.in install-sh ltmain.sh missing mkinstalldirs \ + py-compile DIST_SUBDIRS = $(SUBDIRS) all: config.h $(MAKE) $(AM_MAKEFLAGS) all-recursive diff -uraN gimp-2.2.0/NEWS gimp-2.2.1/NEWS --- gimp-2.2.0/NEWS 2004-12-19 03:31:11.000000000 +0100 +++ gimp-2.2.1/NEWS 2004-12-28 16:22:31.000000000 +0100 @@ -1,578 +1,27 @@ The GNU Image Manipulation Program Version 2.2 ---------------------------------------------- -This is version 2.2 of The GIMP. Version 2.2 is an update on GIMP 2.0. -GIMP 2.2 is fully backward compatible to GIMP 2.0. Plug-ins and -scripts written for GIMP 2.0 will continue to work and don't need to -be changed nor recompiled to be used with GIMP 2.2. We do however -hope that plug-in authors will update their plug-ins for GIMP 2.2 and -adapt the GUI changes we did with this version. - -Please follow the installation instructions in INSTALL. - - -Overview of Changes in GIMP 2.2.0 (since 2.2-pre2 was released) -================================= - -- More work on GFig plug-in. - -- Build fixes for Win32 and IRIX. - -- Added --no-splash command-line option for gimp-remote. - -- More tweaks to the migration of user settings. - -- Improved input controller modules, added ALSA support to the MIDI module. - -- Allow to transform layers with masks. - -- Let the histogram respect the selection. - -- Added gimp_edit_copy_visible as a replacement for the "Copy Visible" script. - -- Improved color dithering routines. - -- Lots of bug fixes and some optimizations. - - -Contributors: - - Michael Natterer, Sven Neumann, David Odin, Manish Singh, Kevin Cozens, - Joao S. O. Bueno, Karine Proot, Tim Mooney, Wolfgang Hofer, Simon Budig, - Bill Skaggs, Øyvind Kolås, Adam D. Moss, Brion Vibber, Maurits Rijk, - Bill Luhtala, Philip Lafleur - - - -Overview of Changes in GIMP 2.2-pre2 -==================================== - -- More work on GFig (still more to come here). - -- Improvements and fixes to the migration of user settings. - -- Final touches to the new PDB APIs. - -- Ported some more item factories to GtkUIManager. - -- Added new PDB function gimp_layer_from_mask(). - -- User interface cleanup in IFS Fractal plug-in (former IfsCompose). - -- Allow file plug-ins to provide a way to access an image thumbnail if - the file format provides one or can be rendered at small sizes. - -- Load and save EXIF thumbnails in JPEG files. - -- Render in small resolution when creating a thumbnail for a - Postscript or PDF document or from an SVG or WMF image file. - -- Allow to import Photoshop (.act) palette files. - -- Added a Print Size dialog to bring back missing functionality from 2.0. - -- Several improvements to the GIMP Python bindins. - -- Guard the core better against misbehaving scripts and plug-ins. - -- Changed the way that Script-Fu scripts register their menus (in a - backward compatible way). - -- Added ALSA support for the MIDI controller module. - -- Resurrected the glob plug-in. - -- Lots of bug fixes and some optimizations. - - -Contributors: - - Michael Natterer, Sven Neumann, David Odin, Manish Singh, Kevin Cozens, - Joao S. O. Bueno, Geert Jordaens, David Gowers, Øyvind Kolås, Cai Qian, - Simon Budig, Jakub Steiner, Philip Lafleur, Nickolay V. Shmyrev, - Karine Proot, S. Mukund, Dave Neary, Keith Goatman - - - -Overview of Changes in GIMP 2.2-pre1 -==================================== - -- Added more plug-in previews (Displace, Color To Alpha, Newsprint) - and ported existing previews to the new widgets (Glass Tiles). - -- Added preview to WMF loader plug-in. - -- Added Retinex plug-in for color normalization. - -- Added plug-in to load and save raw image data (_not_ the raw format - used by some digital cameras) - -- Added a GUI to configure controller modules. - -- Let lots of core dialogs remember their last values and add - shortcuts to run with the last values w/o opening the dialog. - -- Added new PDB API for drawable tranformations. - -- Register all libgimp enums to allow language bindings such as - Script-Fu to access them using GType introspection. - -- Improved how we attach user-visible strings to enums registered with - the type system. Added API to access these strings to libgimpbase. - -- Cleanups to the new GFig GUI (still work in progress). - -- HIGification of the ImageMap plug-in. - -- Cleaned up dialogs code. - -- Added Auto Whitebalance menu item. - -- Redid Scale and Resize dialogs. - -- Added code to migrate user settings from ~/.gimp-2.0. - -- lots of bug fixes. - - -Contributors: - - Michael Natterer, Sven Neumann, David Odin, Manish Singh, Kevin Cozens, - Joao S. O. Bueno, Geert Jordaens, Yeti, Karine Proot, Øyvind Kolås, - Simon Budig - - - -Overview of Changes in GIMP 2.1.7 -================================= - -- Added even more plug-in previews (Value Propagate, Cubism, Colorify) - and ported existing previews to the new widgets (AlienMap2, FlareFX, - Jigsaw, NL Filter, Waves, Scatter HSV). - -- More PDB API cleanups. - -- Allow to specify the batch interpreter on the command-line. - -- Improved selection-round script and moved it to the Select menu. - -- Don't switch the active layer when using the Move tool. - -- Updated libgimpthumb to support local thumbnails as introduced by - version 0.7 of the thumbnail spec. - -- Automatically create thumbnails from the Open dialog. - -- Added entries next to most viewable buttons. - -- Added a bunch of scripts to manipulate guides. - -- Improved confirmation and warning dialogs. - -- Lots of bug fixes. - - -Contributors: - - Michael Natterer, Sven Neumann, David Odin, Manish Singh, Kevin Cozens, - Alan Horkan, Jakub Steiner - - - -Overview of Changes in GIMP 2.1.6 -================================= - -- Added more drawable previews (Color Exchange, DOG, Deinterlace, - Engrave, Oilify, Ripple, Shift). - -- Added new preview widget that shows a scaled view of the full - drawable. Use it for Apply Lens, Blinds, Channel Mixer, Destripe, - Emboss, Illusion, Map Color, Max RGB, Plasma, Polar, Solid Noise, - Supernova, Whirl and Pinch. - -- Added "Open as Layer" functionality to the menus. - -- Implemented the recent-file-spec for shared storage of a list of - recently used files (really URIs). - -- Cleaned up plug-in procedure handling. Added the possibility to let - plug-ins and scripts run using a private GimpContext. - -- Added multi-line text entries for Script-Fu and Gimp-Python. - -- Cleaned up PDB API for brushes, gradients, palettes and patterns. - Deprecated lots of functions and added saner replacements. Added - gimp-context-* PDB namespace with replacements for some of the - deprecated stuff. - -- Let GimpView handle pixbuf previews. Added a (themable) drop shadow - to image-file previews. - -- Cleaned up the dbbrowser and plugindetails code and GUI and factored - out common code. Renamed both executables and menu entries. - -- Made tools cancelable with . - -- Dim the outer (to be cropped) area when using the Crop tool. - -- Let GimpDialog add a help button to give easier access to the help pages. - - -Contributors: - - Michael Natterer, Sven Neumann, David Odin, Maurits Rijk, Dave Neary, - Manish Singh, Robert Oegren, Kevin Cozens, Kevin Turner, Dov Grobgeld, - Joao S. O. Bueno, Michael Schumacher, Jonathan Levi, Daniel Egger - - - -Overview of Changes in GIMP 2.1.5 -================================= - -- Ask the user to save the image when closing the last display. - -- Restored compatibility of the wire protocol that was accidentally - broken in 2.1.4. - -- Added layer and mask actions to allow to create keybindings for them. - -- Preview widget improvements: - * let the preview expand with the plug-in dialog - * added a navigation popup similar to the one in the image window - * respect the selection and show how it will affect the filter - * added API to draw to a GimpDrawablePreview from a GimpPixelRgn - -- Added preview to more plug-ins: Cartoon, Apply Canvas, Photocopy, - Motion Blur, - -- Ported the Bumpmap plug-in preview to GimpDrawablePreview. - -- Removed -u linker hacks from all Makefiles. - - -Contributors: - - Michael Natterer, Sven Neumann, David Odin, Manish Singh, Simon - Budig, Nathan Summers, Alan Horkan, David Gowers, Bill Skaggs, - Joao S. O. Bueno, Peter Kirchgessner - - - -Overview of Changes in GIMP 2.1.4 -================================= - -- Rewritten internal handling of progress indicators. Embed progress - bars to the File Open dialog to reduce annoying dialogs popping up. - -- Added an API for plug-ins to embed a progress bar. Let the Script-Fu - dialog swallow the progress bars created by running the script. - -- Ported remaining plug-ins and modules to GimpPreviewArea and removed - GimpOldPreview. - -- Show progress while converting from RGB to Indexed Colors. - -- Added new plug-ins Cartoon, Neon, Photocopy and Softglow. - -- Let color selectors adapt to the given size. - -- Import basic SVG shapes as paths. - -- Improved GIH and guillotine plug-ins. - -- Added GimpMessageBox widget. Collect error messages in a single - dialog to reduce popups. - -- Renamed the core GimpPreview widget to GimpView. - -- Added a GimpPreview widget to libgimpwidgets. This is an abstract - class that combines a GimpPreviewArea with scrollbars and a "Preview" - toggle button. - -- Added GimpDrawablePreview derived from GimpPreview. - -- Improved previews in Unsharp Mask, Scatter RGB, Sharpen, Spread and - Grid plug-ins. - -- Added previews to Edge, Gaussian Blur, Neon, Soft Glow, Sobel and - Selective Gaussian Blur. - -- Added a logarithmic mode for the slider in a GimpScaleEntry. - -- Script-Fu code cleanups. - -- Fixed composite assembly code. - -- Pass user settings for the checkerboard to plug-ins. - -- Image comment, if any, is now shown within the info window. - -- New function "Fit Canvas to Layers" (gimp_image_resize_to_layers) - - -Contributors: - - Michael Natterer, Sven Neumann, David Odin, Shlomi Fish, Bill Skaggs, - Simon Budig, Ari Pollak, Spencer Kimball, Michael Schumacher, Joao - S. O. Bueno, Manish Singh, Helvetix Victorinox, Kevin Cozens - - - -Overview of Changes in GIMP 2.1.3 -================================= - -- Cleanups to the MMX code and the composite subsystem in general - -- Cleanups and fixes to Gimpressionst plug-in (bug #148088) - -- Redone light settings GUI for Lighting plug-in. - -- Added keyboard shortcut editor to preferences dialog (bug #142922) - -- Implemented the callbacks for the various "Clear saved foobar now" - buttons in the preferences dialog. - -- Added support for loading gradients from SVG files. This allows to - share gradient definitions with Inkscape and Sodipodi (bug #148127) - -- Added parsers for the various ways to define a color in SVG to - libgimpcolor. - -- Added GimpColorHexEntry widget to libgimpwidgets. It displays colors - in hexadecimal represention and takes hex and SVG color names as input. - -- Added GimpCellRendererColor and GimpCellRendererToggle to libgimpwidgets. - -- Renamed GimpColor boxed type to GimpRGB and moved it to libgimpcolor. - -- Moved GIMP_TYPE_UNIT and GIMP_TYPE_MEMSIZE to libgimpbase. - -- Fixes to the BMP loader plug-in (bug #143682). - -- Fixes to the Decompose plug-in (bug #147603). - -- Added palette selector widgets to libgimpui. - -- Allow to disable mnemonics in menus (bug #120034). - -- Ported TWAIN plug-in to Mac OS X (bug #147962). - -- Support motion event history as provided by some input device drivers. - -- Let the undo system know more specifically what an undo step - does. Use that info to keep tools active across modifications to - the image that don't affect the tool (bug #109561). - -- Changed default config for keyboard controller to allow scrolling - the display using the cursor keys (#53988). - -- Added GimpPreviewArea widget as replacement for the deprecated - GtkPreview widget. Ported most plug-ins to the new widget. - -- Added shapes for generated brushes and allow for softer brushes. - -- Allow to specify the aspect ratio in the scale tool. - -- Lots of bug fixes and other goodies. Check the ChangeLog for details. - - -Contributors: - - Michael Natterer, Sven Neumann, Helvetix Victorinox, Shlomi Fish, - Bill Skaggs, Brion Vibber, Raphael Quinet, Simon Budig, David Odin, - Manish Singh, Hans Breuer, Michael Schumacher, Dave Neary - - - -Overview of Changes in GIMP 2.1.2 -================================= - -- Further improvements to the new input controllers; added a keyboard - controller. - -- Show image preview in GFig plug-in, started a complete overhaul. - -- Added Difference of Gaussians edge detection plug-in. - -- Added more possibilities for drag'n'drop: - * layers dialog accepts URI, color and pattern drops - * path dialog takes and offers DND of SVG data - -- Implemented PDB function gimp-path-get-point-at-dist. - -- Allow to use the color picker to edit palettes (as in gimp-1.2). - -- Improvements and code cleanup in gimpressionist plug-in. - -- Allow to cut'n'paste image data between GIMP and other applications - (for example Abiword) using the system clipboard. - -- List unsaved images in Quit dialog. - -- Completed core/gui separation. Optionally build a gimp-console - application that behaves like 'gimp --no-interface' and doesn't link - to GTK+ at all. - -- Deprecated GimpPixmap and ported almost all users to GtkImage. - -- Moved display projection code into a GimpProjection object. This means - there's finally only a single projection per image. - -- Introduced GimpPickable interface and implemented it for all core - objects that you can pick colors from. - -- Write smaller indexed MNG files. - -- Fixed issues with the internal statusbar API. - -- Allow for multiple light sources in the Lighting plug-in. - -- Redone file type selection in file load/save dialogs. - -- Removed HRZ plug-in. - -- Improved developers documentation. - -- Improved quality of antialiasing in the ellipse select tool. - -- Lots of bug fixes and other goodies. Check the ChangeLog for details. - - -Contributors: - - Michael Natterer, Sven Neumann, Philip Lafleur, William Skaggs, - Geert Jordaens, Simon Budig, Roman Joost, Michael Schumacher, - Shlomi Fish, Hans Breuer, Brion Vibber, Robert Oegren, Kevin - Cozens, Helvetix Victorinox - - - -Overview of Changes in GIMP 2.1.1 -================================= - -- Added support for loading patterns in formats supported by GdkPixbuf - (most notably PNG and JPEG). - -- Use ARGB cursors when supported by the windowing system. Added nice - new tool cursors. - -- Added previews to Solid Noise and Unsharp Mask plug-ins. - -- Improvements for painting with pressure-sensitive devices. - -- Added preview for transform tools. - -- Merged the Gaussian Blur plug-ins. - -- Simplified the Blur plug-in. - -- Reorganized the Preferences dialog. - -- Dispatch Enter, Return, Backspace and Delete key events to the tools - and use them where it makes sense. - -- Some optimizations to the tile system, the gradient rendering and to - the cubic interpolation routine. - -- Show the brush outline while painting. - -- Added an interface that allows to add controller modules. Such a module - can dispatch events to The GIMP which are mapped to actions by a - user-configurable mapping table. Added controller modules for mouse - wheel, midi and linux_input devices. - -- Applied HIG capitalization style to all(?) dialogs. - -- Lots of bug fixes and other goodies. Check the ChangeLog for details. - - -Contributors: - - Michael Natterer, Sven Neumann, Manish Singh, Philip Lafleur, - William Skaggs, Geert Jordaens, Yeti, Dave Neary, Jakub Steiner, - David Gowers, Henrik Brix Andersen, Simon Budig, Pedro Gimeno, - lots of translators and the contributors that I accidentally missed... - - - -Overview of Changes in GIMP 2.1.0 -================================= - -GIMP 2.1.0 includes the following enhancements over GIMP 2.0: - - - Major user interface improvements. - - * Large parts of the GIMP user interface have been changed to - comply better with the GNOME Human Interface Guidelines. This is - an ongoing effort and the interface may still be inconsistent in - a few places. - - * Users are now allowed to clear the undo history. - - * The unit to be used for the rulers and the coordinates display is now - a display property and can be changed in the statusbar of the image - window. - - * New widgets and frameworks provided by GTK+ 2.4 are used; this means - - + uses the new GtkFileChooser dialog, vastly improving the file - dialogs. - + includes port of menus to GtkUIManager, which creates all core - menus from XML files at runtime. This means that menu items can - be rearranged by users simply by editing these files. - + uses a global accelerator table in all docks and image windows. - This means that a hotkey will do the same thing regardless of - which dock or image window you are using. - + adds replacement widgets based on GtkComboBox for most uses of - GtkOptionMenu (GimpUnitMenu remains to be ported) - + adds GimpContainerEntry, a GtkEntry with completion based on - the contents of a GimpContainer. - + makes the order and visibility of tools in the toolbox configurable - + allows keeping toolbox and dock windows above other windows (if - the WM supports this hint) - - * The toolbox now has an optional preview of the active image. - - * The image window now accepts file/uri drops. - - - More internal cleanup and refactoring of the core object model. - - - The brush rendering code has been separated from the generic paint - tool code. The ink tool is now a paint tool (it can do straight - lines) and the new infrastructure allows to implement new kinds of - paint methods like vector based painting. - - - Gradients can now be created, deleted, renamed and edited through - the PDB. - - - Some changes to plug-ins. - - * Plug-ins can now register the same procedures in multiple places (the - API to register menu entries has been changed in a backward-compatible - fashion). - - * Plug-ins can now optionally register a menu icon. - - * File plug-ins can now register a mime-type. - - * All plug-in dialogs have been reviewed and changed to make them - comply better with the GNOME Human Interface Guidelines. - - * All plug-ins that need to access files use the new GtkFileChooser - dialog. - - * The obsolete AlienMap and GIcon plug-ins were removed. AlienMap2 - does everything than AlienMap did, and the GIMP-specific GIcon format - has not been used by anything for quite some time now. - - * A plug-in to load and save windows icon files has been added. - - -Contributors: - - Michael Natterer, Sven Neumann, Maurits Rijk, Manish Singh, - Henrik Brix Andersen, Philip Lafleur, Raphael Quinet, Simon Budig, - William Skaggs, Shlomi Fish, Kevin Cozens, Jakub Steiner, Dave Neary, - Daniel Kobras, Jordi Gay, Yeti, Marco Munari, David Necas, Nils - Philippsen, Soeren Wedel Nielsen, Joao S. O. Bueno, lots of translators - and the contributors that I accidentally missed... +This is the stable branch of GIMP 2.2. Only bug-fixes are applied +here. New features are being added in the HEAD branch that will lead +to GIMP version 2.4. + + +Bugs fixed in GIMP 2.2.1 +======================== + +- added python logo to EXTRA_DIST so it shows up in the tarball (bug #161716) +- fixed mempory corruption in FracalExplorer plug-in (bug #161729) +- fixed crash in gradient editor (bug #161411) +- fixed crash in unsharp mask plug-in preview code (bug #157910) +- fixed bug in unsharp mask plug-in that caused artefacts when a large blur + radius was being used on a small drawable; minor optimizations +- removed broken asc2img Script-Fu +- fixed channel drag-n-drop (bug #161877) +- fixed misbehaviour of entries in Scale and Resize dialogs (bug #161756) +- speed up preview in several plug-ins +- fixed bug in Despeckle plug-in that caused it to run very slowly + (bug #162129) +- fixed a crash in the error dialog (bug #162147) +- fixed parameter value range in Weave script (bug #162182) +- fixed crash in brush preview (bug #162232) +- minor improvements to the API docs diff -uraN gimp-2.2.0/NEWS.pre-2-2 gimp-2.2.1/NEWS.pre-2-2 --- gimp-2.2.0/NEWS.pre-2-2 1970-01-01 01:00:00.000000000 +0100 +++ gimp-2.2.1/NEWS.pre-2-2 2004-12-22 02:07:11.000000000 +0100 @@ -0,0 +1,578 @@ +The GNU Image Manipulation Program Version 2.2 +---------------------------------------------- + +This is version 2.2 of The GIMP. Version 2.2 is an update on GIMP 2.0. +GIMP 2.2 is fully backward compatible to GIMP 2.0. Plug-ins and +scripts written for GIMP 2.0 will continue to work and don't need to +be changed nor recompiled to be used with GIMP 2.2. We do however +hope that plug-in authors will update their plug-ins for GIMP 2.2 and +adapt the GUI changes we did with this version. + +Please follow the installation instructions in INSTALL. + + +Overview of Changes in GIMP 2.2.0 (since 2.2-pre2 was released) +================================= + +- More work on GFig plug-in. + +- Build fixes for Win32 and IRIX. + +- Added --no-splash command-line option for gimp-remote. + +- More tweaks to the migration of user settings. + +- Improved input controller modules, added ALSA support to the MIDI module. + +- Allow to transform layers with masks. + +- Let the histogram respect the selection. + +- Added gimp_edit_copy_visible as a replacement for the "Copy Visible" script. + +- Improved color dithering routines. + +- Lots of bug fixes and some optimizations. + + +Contributors: + + Michael Natterer, Sven Neumann, David Odin, Manish Singh, Kevin Cozens, + Joao S. O. Bueno, Karine Proot, Tim Mooney, Wolfgang Hofer, Simon Budig, + Bill Skaggs, Øyvind Kolås, Adam D. Moss, Brion Vibber, Maurits Rijk, + Bill Luhtala, Philip Lafleur + + + +Overview of Changes in GIMP 2.2-pre2 +==================================== + +- More work on GFig (still more to come here). + +- Improvements and fixes to the migration of user settings. + +- Final touches to the new PDB APIs. + +- Ported some more item factories to GtkUIManager. + +- Added new PDB function gimp_layer_from_mask(). + +- User interface cleanup in IFS Fractal plug-in (former IfsCompose). + +- Allow file plug-ins to provide a way to access an image thumbnail if + the file format provides one or can be rendered at small sizes. + +- Load and save EXIF thumbnails in JPEG files. + +- Render in small resolution when creating a thumbnail for a + Postscript or PDF document or from an SVG or WMF image file. + +- Allow to import Photoshop (.act) palette files. + +- Added a Print Size dialog to bring back missing functionality from 2.0. + +- Several improvements to the GIMP Python bindins. + +- Guard the core better against misbehaving scripts and plug-ins. + +- Changed the way that Script-Fu scripts register their menus (in a + backward compatible way). + +- Added ALSA support for the MIDI controller module. + +- Resurrected the glob plug-in. + +- Lots of bug fixes and some optimizations. + + +Contributors: + + Michael Natterer, Sven Neumann, David Odin, Manish Singh, Kevin Cozens, + Joao S. O. Bueno, Geert Jordaens, David Gowers, Øyvind Kolås, Cai Qian, + Simon Budig, Jakub Steiner, Philip Lafleur, Nickolay V. Shmyrev, + Karine Proot, S. Mukund, Dave Neary, Keith Goatman + + + +Overview of Changes in GIMP 2.2-pre1 +==================================== + +- Added more plug-in previews (Displace, Color To Alpha, Newsprint) + and ported existing previews to the new widgets (Glass Tiles). + +- Added preview to WMF loader plug-in. + +- Added Retinex plug-in for color normalization. + +- Added plug-in to load and save raw image data (_not_ the raw format + used by some digital cameras) + +- Added a GUI to configure controller modules. + +- Let lots of core dialogs remember their last values and add + shortcuts to run with the last values w/o opening the dialog. + +- Added new PDB API for drawable tranformations. + +- Register all libgimp enums to allow language bindings such as + Script-Fu to access them using GType introspection. + +- Improved how we attach user-visible strings to enums registered with + the type system. Added API to access these strings to libgimpbase. + +- Cleanups to the new GFig GUI (still work in progress). + +- HIGification of the ImageMap plug-in. + +- Cleaned up dialogs code. + +- Added Auto Whitebalance menu item. + +- Redid Scale and Resize dialogs. + +- Added code to migrate user settings from ~/.gimp-2.0. + +- lots of bug fixes. + + +Contributors: + + Michael Natterer, Sven Neumann, David Odin, Manish Singh, Kevin Cozens, + Joao S. O. Bueno, Geert Jordaens, Yeti, Karine Proot, Øyvind Kolås, + Simon Budig + + + +Overview of Changes in GIMP 2.1.7 +================================= + +- Added even more plug-in previews (Value Propagate, Cubism, Colorify) + and ported existing previews to the new widgets (AlienMap2, FlareFX, + Jigsaw, NL Filter, Waves, Scatter HSV). + +- More PDB API cleanups. + +- Allow to specify the batch interpreter on the command-line. + +- Improved selection-round script and moved it to the Select menu. + +- Don't switch the active layer when using the Move tool. + +- Updated libgimpthumb to support local thumbnails as introduced by + version 0.7 of the thumbnail spec. + +- Automatically create thumbnails from the Open dialog. + +- Added entries next to most viewable buttons. + +- Added a bunch of scripts to manipulate guides. + +- Improved confirmation and warning dialogs. + +- Lots of bug fixes. + + +Contributors: + + Michael Natterer, Sven Neumann, David Odin, Manish Singh, Kevin Cozens, + Alan Horkan, Jakub Steiner + + + +Overview of Changes in GIMP 2.1.6 +================================= + +- Added more drawable previews (Color Exchange, DOG, Deinterlace, + Engrave, Oilify, Ripple, Shift). + +- Added new preview widget that shows a scaled view of the full + drawable. Use it for Apply Lens, Blinds, Channel Mixer, Destripe, + Emboss, Illusion, Map Color, Max RGB, Plasma, Polar, Solid Noise, + Supernova, Whirl and Pinch. + +- Added "Open as Layer" functionality to the menus. + +- Implemented the recent-file-spec for shared storage of a list of + recently used files (really URIs). + +- Cleaned up plug-in procedure handling. Added the possibility to let + plug-ins and scripts run using a private GimpContext. + +- Added multi-line text entries for Script-Fu and Gimp-Python. + +- Cleaned up PDB API for brushes, gradients, palettes and patterns. + Deprecated lots of functions and added saner replacements. Added + gimp-context-* PDB namespace with replacements for some of the + deprecated stuff. + +- Let GimpView handle pixbuf previews. Added a (themable) drop shadow + to image-file previews. + +- Cleaned up the dbbrowser and plugindetails code and GUI and factored + out common code. Renamed both executables and menu entries. + +- Made tools cancelable with . + +- Dim the outer (to be cropped) area when using the Crop tool. + +- Let GimpDialog add a help button to give easier access to the help pages. + + +Contributors: + + Michael Natterer, Sven Neumann, David Odin, Maurits Rijk, Dave Neary, + Manish Singh, Robert Oegren, Kevin Cozens, Kevin Turner, Dov Grobgeld, + Joao S. O. Bueno, Michael Schumacher, Jonathan Levi, Daniel Egger + + + +Overview of Changes in GIMP 2.1.5 +================================= + +- Ask the user to save the image when closing the last display. + +- Restored compatibility of the wire protocol that was accidentally + broken in 2.1.4. + +- Added layer and mask actions to allow to create keybindings for them. + +- Preview widget improvements: + * let the preview expand with the plug-in dialog + * added a navigation popup similar to the one in the image window + * respect the selection and show how it will affect the filter + * added API to draw to a GimpDrawablePreview from a GimpPixelRgn + +- Added preview to more plug-ins: Cartoon, Apply Canvas, Photocopy, + Motion Blur, + +- Ported the Bumpmap plug-in preview to GimpDrawablePreview. + +- Removed -u linker hacks from all Makefiles. + + +Contributors: + + Michael Natterer, Sven Neumann, David Odin, Manish Singh, Simon + Budig, Nathan Summers, Alan Horkan, David Gowers, Bill Skaggs, + Joao S. O. Bueno, Peter Kirchgessner + + + +Overview of Changes in GIMP 2.1.4 +================================= + +- Rewritten internal handling of progress indicators. Embed progress + bars to the File Open dialog to reduce annoying dialogs popping up. + +- Added an API for plug-ins to embed a progress bar. Let the Script-Fu + dialog swallow the progress bars created by running the script. + +- Ported remaining plug-ins and modules to GimpPreviewArea and removed + GimpOldPreview. + +- Show progress while converting from RGB to Indexed Colors. + +- Added new plug-ins Cartoon, Neon, Photocopy and Softglow. + +- Let color selectors adapt to the given size. + +- Import basic SVG shapes as paths. + +- Improved GIH and guillotine plug-ins. + +- Added GimpMessageBox widget. Collect error messages in a single + dialog to reduce popups. + +- Renamed the core GimpPreview widget to GimpView. + +- Added a GimpPreview widget to libgimpwidgets. This is an abstract + class that combines a GimpPreviewArea with scrollbars and a "Preview" + toggle button. + +- Added GimpDrawablePreview derived from GimpPreview. + +- Improved previews in Unsharp Mask, Scatter RGB, Sharpen, Spread and + Grid plug-ins. + +- Added previews to Edge, Gaussian Blur, Neon, Soft Glow, Sobel and + Selective Gaussian Blur. + +- Added a logarithmic mode for the slider in a GimpScaleEntry. + +- Script-Fu code cleanups. + +- Fixed composite assembly code. + +- Pass user settings for the checkerboard to plug-ins. + +- Image comment, if any, is now shown within the info window. + +- New function "Fit Canvas to Layers" (gimp_image_resize_to_layers) + + +Contributors: + + Michael Natterer, Sven Neumann, David Odin, Shlomi Fish, Bill Skaggs, + Simon Budig, Ari Pollak, Spencer Kimball, Michael Schumacher, Joao + S. O. Bueno, Manish Singh, Helvetix Victorinox, Kevin Cozens + + + +Overview of Changes in GIMP 2.1.3 +================================= + +- Cleanups to the MMX code and the composite subsystem in general + +- Cleanups and fixes to Gimpressionst plug-in (bug #148088) + +- Redone light settings GUI for Lighting plug-in. + +- Added keyboard shortcut editor to preferences dialog (bug #142922) + +- Implemented the callbacks for the various "Clear saved foobar now" + buttons in the preferences dialog. + +- Added support for loading gradients from SVG files. This allows to + share gradient definitions with Inkscape and Sodipodi (bug #148127) + +- Added parsers for the various ways to define a color in SVG to + libgimpcolor. + +- Added GimpColorHexEntry widget to libgimpwidgets. It displays colors + in hexadecimal represention and takes hex and SVG color names as input. + +- Added GimpCellRendererColor and GimpCellRendererToggle to libgimpwidgets. + +- Renamed GimpColor boxed type to GimpRGB and moved it to libgimpcolor. + +- Moved GIMP_TYPE_UNIT and GIMP_TYPE_MEMSIZE to libgimpbase. + +- Fixes to the BMP loader plug-in (bug #143682). + +- Fixes to the Decompose plug-in (bug #147603). + +- Added palette selector widgets to libgimpui. + +- Allow to disable mnemonics in menus (bug #120034). + +- Ported TWAIN plug-in to Mac OS X (bug #147962). + +- Support motion event history as provided by some input device drivers. + +- Let the undo system know more specifically what an undo step + does. Use that info to keep tools active across modifications to + the image that don't affect the tool (bug #109561). + +- Changed default config for keyboard controller to allow scrolling + the display using the cursor keys (#53988). + +- Added GimpPreviewArea widget as replacement for the deprecated + GtkPreview widget. Ported most plug-ins to the new widget. + +- Added shapes for generated brushes and allow for softer brushes. + +- Allow to specify the aspect ratio in the scale tool. + +- Lots of bug fixes and other goodies. Check the ChangeLog for details. + + +Contributors: + + Michael Natterer, Sven Neumann, Helvetix Victorinox, Shlomi Fish, + Bill Skaggs, Brion Vibber, Raphael Quinet, Simon Budig, David Odin, + Manish Singh, Hans Breuer, Michael Schumacher, Dave Neary + + + +Overview of Changes in GIMP 2.1.2 +================================= + +- Further improvements to the new input controllers; added a keyboard + controller. + +- Show image preview in GFig plug-in, started a complete overhaul. + +- Added Difference of Gaussians edge detection plug-in. + +- Added more possibilities for drag'n'drop: + * layers dialog accepts URI, color and pattern drops + * path dialog takes and offers DND of SVG data + +- Implemented PDB function gimp-path-get-point-at-dist. + +- Allow to use the color picker to edit palettes (as in gimp-1.2). + +- Improvements and code cleanup in gimpressionist plug-in. + +- Allow to cut'n'paste image data between GIMP and other applications + (for example Abiword) using the system clipboard. + +- List unsaved images in Quit dialog. + +- Completed core/gui separation. Optionally build a gimp-console + application that behaves like 'gimp --no-interface' and doesn't link + to GTK+ at all. + +- Deprecated GimpPixmap and ported almost all users to GtkImage. + +- Moved display projection code into a GimpProjection object. This means + there's finally only a single projection per image. + +- Introduced GimpPickable interface and implemented it for all core + objects that you can pick colors from. + +- Write smaller indexed MNG files. + +- Fixed issues with the internal statusbar API. + +- Allow for multiple light sources in the Lighting plug-in. + +- Redone file type selection in file load/save dialogs. + +- Removed HRZ plug-in. + +- Improved developers documentation. + +- Improved quality of antialiasing in the ellipse select tool. + +- Lots of bug fixes and other goodies. Check the ChangeLog for details. + + +Contributors: + + Michael Natterer, Sven Neumann, Philip Lafleur, William Skaggs, + Geert Jordaens, Simon Budig, Roman Joost, Michael Schumacher, + Shlomi Fish, Hans Breuer, Brion Vibber, Robert Oegren, Kevin + Cozens, Helvetix Victorinox + + + +Overview of Changes in GIMP 2.1.1 +================================= + +- Added support for loading patterns in formats supported by GdkPixbuf + (most notably PNG and JPEG). + +- Use ARGB cursors when supported by the windowing system. Added nice + new tool cursors. + +- Added previews to Solid Noise and Unsharp Mask plug-ins. + +- Improvements for painting with pressure-sensitive devices. + +- Added preview for transform tools. + +- Merged the Gaussian Blur plug-ins. + +- Simplified the Blur plug-in. + +- Reorganized the Preferences dialog. + +- Dispatch Enter, Return, Backspace and Delete key events to the tools + and use them where it makes sense. + +- Some optimizations to the tile system, the gradient rendering and to + the cubic interpolation routine. + +- Show the brush outline while painting. + +- Added an interface that allows to add controller modules. Such a module + can dispatch events to The GIMP which are mapped to actions by a + user-configurable mapping table. Added controller modules for mouse + wheel, midi and linux_input devices. + +- Applied HIG capitalization style to all(?) dialogs. + +- Lots of bug fixes and other goodies. Check the ChangeLog for details. + + +Contributors: + + Michael Natterer, Sven Neumann, Manish Singh, Philip Lafleur, + William Skaggs, Geert Jordaens, Yeti, Dave Neary, Jakub Steiner, + David Gowers, Henrik Brix Andersen, Simon Budig, Pedro Gimeno, + lots of translators and the contributors that I accidentally missed... + + + +Overview of Changes in GIMP 2.1.0 +================================= + +GIMP 2.1.0 includes the following enhancements over GIMP 2.0: + + - Major user interface improvements. + + * Large parts of the GIMP user interface have been changed to + comply better with the GNOME Human Interface Guidelines. This is + an ongoing effort and the interface may still be inconsistent in + a few places. + + * Users are now allowed to clear the undo history. + + * The unit to be used for the rulers and the coordinates display is now + a display property and can be changed in the statusbar of the image + window. + + * New widgets and frameworks provided by GTK+ 2.4 are used; this means + + + uses the new GtkFileChooser dialog, vastly improving the file + dialogs. + + includes port of menus to GtkUIManager, which creates all core + menus from XML files at runtime. This means that menu items can + be rearranged by users simply by editing these files. + + uses a global accelerator table in all docks and image windows. + This means that a hotkey will do the same thing regardless of + which dock or image window you are using. + + adds replacement widgets based on GtkComboBox for most uses of + GtkOptionMenu (GimpUnitMenu remains to be ported) + + adds GimpContainerEntry, a GtkEntry with completion based on + the contents of a GimpContainer. + + makes the order and visibility of tools in the toolbox configurable + + allows keeping toolbox and dock windows above other windows (if + the WM supports this hint) + + * The toolbox now has an optional preview of the active image. + + * The image window now accepts file/uri drops. + + - More internal cleanup and refactoring of the core object model. + + - The brush rendering code has been separated from the generic paint + tool code. The ink tool is now a paint tool (it can do straight + lines) and the new infrastructure allows to implement new kinds of + paint methods like vector based painting. + + - Gradients can now be created, deleted, renamed and edited through + the PDB. + + - Some changes to plug-ins. + + * Plug-ins can now register the same procedures in multiple places (the + API to register menu entries has been changed in a backward-compatible + fashion). + + * Plug-ins can now optionally register a menu icon. + + * File plug-ins can now register a mime-type. + + * All plug-in dialogs have been reviewed and changed to make them + comply better with the GNOME Human Interface Guidelines. + + * All plug-ins that need to access files use the new GtkFileChooser + dialog. + + * The obsolete AlienMap and GIcon plug-ins were removed. AlienMap2 + does everything than AlienMap did, and the GIMP-specific GIcon format + has not been used by anything for quite some time now. + + * A plug-in to load and save windows icon files has been added. + + +Contributors: + + Michael Natterer, Sven Neumann, Maurits Rijk, Manish Singh, + Henrik Brix Andersen, Philip Lafleur, Raphael Quinet, Simon Budig, + William Skaggs, Shlomi Fish, Kevin Cozens, Jakub Steiner, Dave Neary, + Daniel Kobras, Jordi Gay, Yeti, Marco Munari, David Necas, Nils + Philippsen, Soeren Wedel Nielsen, Joao S. O. Bueno, lots of translators + and the contributors that I accidentally missed... diff -uraN gimp-2.2.0/plug-ins/common/blur.c gimp-2.2.1/plug-ins/common/blur.c --- gimp-2.2.0/plug-ins/common/blur.c 2004-10-12 23:48:38.000000000 +0200 +++ gimp-2.2.1/plug-ins/common/blur.c 2004-12-27 20:42:16.000000000 +0100 @@ -366,10 +366,11 @@ nr = tmp; if (PROG_UPDATE_TIME) - gimp_progress_update ((double) row / (double) (y2 - y1)); + gimp_progress_update ((gdouble) row / (gdouble) (y2 - y1)); } - gimp_progress_update ((double) 100); + gimp_progress_update (1.0); + /* * update the blurred region */ diff -uraN gimp-2.2.0/plug-ins/common/cartoon.c gimp-2.2.1/plug-ins/common/cartoon.c --- gimp-2.2.0/plug-ins/common/cartoon.c 2004-12-09 21:02:49.000000000 +0100 +++ gimp-2.2.1/plug-ins/common/cartoon.c 2004-12-27 20:42:16.000000000 +0100 @@ -170,6 +170,9 @@ /* Get the specified drawable */ drawable = gimp_drawable_get (param[2].data.d_drawable); + /* set the tile cache size */ + gimp_tile_cache_ntiles (TILE_CACHE_SIZE); + *nreturn_vals = 1; *return_vals = values; @@ -211,8 +214,6 @@ { gimp_progress_init ("Cartoon..."); - /* set the tile cache size */ - gimp_tile_cache_ntiles (TILE_CACHE_SIZE); cartoon (drawable, NULL); diff -uraN gimp-2.2.0/plug-ins/common/colortoalpha.c gimp-2.2.1/plug-ins/common/colortoalpha.c --- gimp-2.2.0/plug-ins/common/colortoalpha.c 2004-10-17 18:03:56.000000000 +0200 +++ gimp-2.2.1/plug-ins/common/colortoalpha.c 2004-12-27 20:42:16.000000000 +0100 @@ -54,7 +54,6 @@ static void inline color_to_alpha (GimpRGB *src, const GimpRGB *color); -static void to_alpha (GimpDrawable *drawable); static void to_alpha_func (const guchar *src, guchar *dest, gint bpp, @@ -123,9 +122,9 @@ { static GimpParam values[1]; GimpDrawable *drawable; - gint32 image_ID; GimpPDBStatusType status = GIMP_PDB_SUCCESS; GimpRunMode run_mode; + gint32 image_ID; run_mode = param[0].data.d_int32; @@ -137,9 +136,8 @@ values[0].type = GIMP_PDB_STATUS; values[0].data.d_status = status; - /* Get the specified drawable */ - drawable = gimp_drawable_get (param[2].data.d_drawable); image_ID = param[1].data.d_image; + drawable = gimp_drawable_get (param[2].data.d_drawable); switch (run_mode) { @@ -181,7 +179,7 @@ gimp_drawable_is_layer (drawable->drawable_id)) { gimp_progress_init (_("Removing color...")); - to_alpha (drawable); + gimp_rgn_iterate2 (drawable, 0 /* unused */, to_alpha_func, NULL); } gimp_drawable_detach (drawable); @@ -265,31 +263,37 @@ } /* + * An excerpt from a discussion on #gimp that sheds some light on the ideas + * behind the algorithm that is being used here. + * so if a1 > c1, a2 > c2, and a3 > c2 and a1 - c1 > a2-c2, a3-c3, then a1 = b1 * alpha + c1 * (1-alpha) So, maximizing alpha without taking b1 above 1 gives a1 = alpha + c1(1-alpha) and therefore alpha = (a1-c1) / (1-c1). clahey: btw, the ordering of that a2, a3 in the white->alpha didn't matter - sjburges: You mean that it could be either a1, a2, a3 or a1, a3, a2? + sjburges: You mean that it could be either a1, a2, a3 or + a1, a3, a2? yeah because neither one uses the other - sjburges: That's exactly as it should be. They are both just getting - reduced to the same amount, limited by the the darkest color. + sjburges: That's exactly as it should be. They are both just + getting reduced to the same amount, limited by the the darkest + color. Then a2 = b2 * alpha + c2 * (1- alpha). Solving for b2 gives b2 = (a1-c2)/alpha + c2. yeah That gives us are formula for if the background is darker than the foreground? Yep. - Next if a1 < c1, a2 < c2, a3 < c3, and c1-a1 > c2-a2, c3-a3, and by our - desired result a1 = b1 * alpha + c1 * (1-alpha), we maximize alpha - without taking b1 negative gives alpha = 1 - a1 / c1. + Next if a1 < c1, a2 < c2, a3 < c3, and c1-a1 > c2-a2, c3-a3, and + by our desired result a1 = b1 * alpha + c1 * (1-alpha), + we maximize alpha without taking b1 negative gives + alpha = 1 - a1 / c1. And then again, b2 = (a2-c2) / alpha + c2 by the same formula. - (Actually, I think we can use that formula for all cases, though it - may possibly introduce rounding error. + (Actually, I think we can use that formula for all cases, though + it may possibly introduce rounding error. sjburges: I like the idea of using floats to avoid rounding error. Good call. -*/ + */ static void to_alpha_func (const guchar *src, @@ -303,17 +307,12 @@ gimp_rgba_set_uchar (&color, src[0], src[1], src[2], 255); else gimp_rgba_set_uchar (&color, src[0], src[1], src[2], src[3]); + color_to_alpha (&color, &pvals.color); gimp_rgba_get_uchar (&color, &dest[0], &dest[1], &dest[2], &dest[3]); } static void -to_alpha (GimpDrawable *drawable) -{ - gimp_rgn_iterate2 (drawable, 0 /* unused */, to_alpha_func, NULL); -} - -static void color_to_alpha_preview (GimpPreview *preview, GimpDrawable *drawable) { @@ -328,8 +327,8 @@ gimp_preview_get_position (preview, &x, &y); gimp_preview_get_size (preview, &width, &height); - src = g_new (guchar, width * height * bpp); dest = g_new (guchar, width * height * 4); + src = g_new (guchar, width * height * bpp); gimp_pixel_rgn_init (&src_rgn, drawable, x, y, width, height, @@ -339,12 +338,26 @@ for (i = 0; i < width * height; i++) to_alpha_func (src + i * bpp, dest + i * 4, bpp, NULL); - gimp_preview_area_draw (GIMP_PREVIEW_AREA (preview->area), - 0, 0, width, height, - GIMP_RGBA_IMAGE, - dest, - width * 4); g_free (src); + + /* Our code assumes that the drawable has an alpha channel (and adds + * one later if the effect is actually performed). For that reason + * we have to take care when drawing the preview. + */ + if (bpp == 4) + { + gimp_preview_draw_buffer (preview, dest, width * 4); + } + else + { + /* This is not correct because we ignore the selection, but it + * is the best we can easily do. + */ + gimp_preview_area_draw (GIMP_PREVIEW_AREA (preview->area), + 0, 0, width, height, + GIMP_RGBA_IMAGE, dest, width * 4); + } + g_free (dest); } diff -uraN gimp-2.2.0/plug-ins/common/cubism.c gimp-2.2.1/plug-ins/common/cubism.c --- gimp-2.2.0/plug-ins/common/cubism.c 2004-10-13 18:58:43.000000000 +0200 +++ gimp-2.2.1/plug-ins/common/cubism.c 2004-12-27 20:42:16.000000000 +0100 @@ -187,6 +187,10 @@ /* get the active drawable */ drawable = gimp_drawable_get (param[2].data.d_drawable); + /* set cache size */ + /* asking for a lot here but seems to give a speedup -- WES 12-23-04 */ + gimp_tile_cache_ntiles (2 * drawable->ntile_rows * drawable->ntile_cols); + switch (run_mode) { case GIMP_RUN_INTERACTIVE: @@ -227,8 +231,6 @@ (gimp_drawable_is_rgb (drawable->drawable_id) || gimp_drawable_is_gray (drawable->drawable_id))) { - /* set cache size */ - gimp_tile_cache_ntiles (SQR (4 * cvals.tile_size * cvals.tile_saturation) / SQR (gimp_tile_width ())); cubism (drawable, NULL); diff -uraN gimp-2.2.0/plug-ins/common/despeckle.c gimp-2.2.1/plug-ins/common/despeckle.c --- gimp-2.2.0/plug-ins/common/despeckle.c 2004-10-30 14:57:03.000000000 +0200 +++ gimp-2.2.1/plug-ins/common/despeckle.c 2004-12-27 20:42:16.000000000 +0100 @@ -1,5 +1,5 @@ /* - * "$Id: despeckle.c,v 1.74 2004/10/30 12:57:03 neo Exp $" + * "$Id: despeckle.c,v 1.75 2004/12/23 23:19:43 neo Exp $" * * Despeckle (adaptive median) filter for The GIMP -- an image manipulation * program @@ -363,15 +363,13 @@ { GimpPixelRgn src_rgn, /* Source image region */ dst_rgn; - guchar *src, *dst; + guchar *src, *dst; gint img_bpp; gint width; gint height; gint x1, y1 ,x2 ,y2; - - - img_bpp = gimp_drawable_bpp (drawable->drawable_id); + img_bpp = gimp_drawable_bpp (drawable->drawable_id); gimp_drawable_mask_bounds (drawable->drawable_id, &x1, &y1, &x2, &y2); width = x2 - x1; @@ -379,22 +377,22 @@ gimp_pixel_rgn_init (&src_rgn, drawable, x1, y1, width, height, FALSE, FALSE); gimp_pixel_rgn_init (&dst_rgn, drawable, x1, y1, width, height, TRUE, TRUE); - src = g_new (guchar, width * height * img_bpp); - dst = g_new (guchar, width * height * img_bpp); + + src = g_new (guchar, width * height * img_bpp); + dst = g_new (guchar, width * height * img_bpp); + gimp_pixel_rgn_get_rect (&src_rgn, src, x1, y1, width, height); - despeckle_median(src, dst, width, height, img_bpp, despeckle_radius, FALSE); + despeckle_median (src, dst, width, height, img_bpp, despeckle_radius, FALSE); - /* - * Update the screen... - */ gimp_pixel_rgn_set_rect (&dst_rgn, dst, x1, y1, width, height); + gimp_drawable_flush (drawable); gimp_drawable_merge_shadow (drawable->drawable_id, TRUE); gimp_drawable_update (drawable->drawable_id, x1, y1, width, height); - g_free(src); - g_free(dst); + g_free (dst); + g_free (src); } @@ -587,7 +585,7 @@ src = g_new (guchar, width * height * img_bpp); gimp_pixel_rgn_get_rect (&src_rgn, src, x1, y1, width, height); - despeckle_median(src, dst, width, height, img_bpp, despeckle_radius, TRUE); + despeckle_median (src, dst, width, height, img_bpp, despeckle_radius, TRUE); /* * Update the screen... @@ -653,7 +651,6 @@ for (x = 0; x < width; x++) { - prog += width; for (y = 0; y < height; y++) { hist0 = 0; @@ -724,14 +721,17 @@ radius--; } } - - if (!preview) - { - gimp_progress_update (prog/maxprog); - } } + + prog += height; + + if (!preview && x % 5 == 0) + gimp_progress_update (prog / maxprog); } + if (!preview) + gimp_progress_update (1.0); + g_free (buf); g_free (ibuf); } @@ -806,7 +806,7 @@ for (;;) { do ll++; - while (i[low] > i[ll] ); + while (i[low] > i[ll]); do hh--; while (i[hh] > i[low]); @@ -846,7 +846,5 @@ gint n) { for (; n > 0; n--, dest++, src++) - { - *dest = *src; - } + *dest = *src; } diff -uraN gimp-2.2.0/plug-ins/common/displace.c gimp-2.2.1/plug-ins/common/displace.c --- gimp-2.2.0/plug-ins/common/displace.c 2004-10-17 00:43:56.000000000 +0200 +++ gimp-2.2.1/plug-ins/common/displace.c 2004-12-27 20:42:16.000000000 +0100 @@ -179,6 +179,9 @@ /* Get the specified drawable */ drawable = gimp_drawable_get (param[2].data.d_drawable); + /* set the tile cache size */ + gimp_tile_cache_ntiles (TILE_CACHE_SIZE); + *nreturn_vals = 1; *return_vals = values; @@ -227,9 +230,6 @@ { gimp_progress_init (_("Displacing...")); - /* set the tile cache size */ - gimp_tile_cache_ntiles (TILE_CACHE_SIZE); - /* run the displace effect */ displace (drawable, NULL); diff -uraN gimp-2.2.0/plug-ins/common/dog.c gimp-2.2.1/plug-ins/common/dog.c --- gimp-2.2.0/plug-ins/common/dog.c 2004-11-26 19:55:41.000000000 +0100 +++ gimp-2.2.1/plug-ins/common/dog.c 2004-12-27 20:42:16.000000000 +0100 @@ -172,6 +172,11 @@ image_ID = param[1].data.d_image; drawable = gimp_drawable_get (param[2].data.d_drawable); + /* set the tile cache size so that the gaussian blur works well */ + gimp_tile_cache_ntiles (2 * + (MAX (drawable->width, drawable->height) / + gimp_tile_width () + 1)); + if (strcmp (name, "plug_in_dog") == 0) { switch (run_mode) @@ -221,10 +226,6 @@ { gimp_progress_init (_("DoG Edge Detect")); - /* set the tile cache size so that the gaussian blur works well */ - gimp_tile_cache_ntiles (2 * - (MAX (drawable->width, drawable->height) / - gimp_tile_width () + 1)); /* run the Difference of Gaussians */ gimp_image_undo_group_start (image_ID); diff -uraN gimp-2.2.0/plug-ins/common/emboss.c gimp-2.2.1/plug-ins/common/emboss.c --- gimp-2.2.0/plug-ins/common/emboss.c 2004-10-14 20:11:43.000000000 +0200 +++ gimp-2.2.1/plug-ins/common/emboss.c 2004-12-27 20:42:16.000000000 +0100 @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: emboss.c,v 1.49 2004/10/14 18:11:43 dindinx Exp $ + * $Id: emboss.c,v 1.50 2004/12/23 23:58:35 weskaggs Exp $ */ #include "config.h" @@ -155,6 +155,8 @@ INIT_I18N (); drawable = gimp_drawable_get (param[2].data.d_drawable); + gimp_tile_cache_ntiles (drawable->ntile_cols); + rvals[0].type = GIMP_PDB_STATUS; rvals[0].data.d_status = GIMP_PDB_SUCCESS; @@ -373,8 +375,6 @@ if (!preview) gimp_progress_init (_("Emboss")); - gimp_tile_cache_ntiles ((width + gimp_tile_width () - 1) / gimp_tile_width ()); - /* first row */ gimp_pixel_rgn_get_rect (&src, srcbuf, x1, y1, width, 3); memcpy (srcbuf, srcbuf + rowsize, rowsize); diff -uraN gimp-2.2.0/plug-ins/common/engrave.c gimp-2.2.1/plug-ins/common/engrave.c --- gimp-2.2.0/plug-ins/common/engrave.c 2004-10-12 23:48:38.000000000 +0200 +++ gimp-2.2.1/plug-ins/common/engrave.c 2004-12-27 20:42:16.000000000 +0100 @@ -138,6 +138,7 @@ /* Get the specified drawable */ drawable = gimp_drawable_get (param[2].data.d_drawable); + gimp_tile_cache_ntiles (TILE_CACHE_SIZE); switch (run_mode) { @@ -179,7 +180,6 @@ if (status == GIMP_PDB_SUCCESS) { gimp_progress_init (_("Engraving...")); - gimp_tile_cache_ntiles (TILE_CACHE_SIZE); engrave (drawable, NULL); diff -uraN gimp-2.2.0/plug-ins/common/gauss.c gimp-2.2.1/plug-ins/common/gauss.c --- gimp-2.2.0/plug-ins/common/gauss.c 2004-10-12 23:48:38.000000000 +0200 +++ gimp-2.2.1/plug-ins/common/gauss.c 2004-12-27 20:42:16.000000000 +0100 @@ -271,6 +271,12 @@ image_ID = param[1].data.d_image; drawable = gimp_drawable_get (param[2].data.d_drawable); + /* set the tile cache size so that the gaussian blur works well */ + gimp_tile_cache_ntiles (2 * + (MAX (drawable->width, drawable->height) / + gimp_tile_width () + 1)); + + if (strcmp (name, "plug_in_gauss") == 0) { switch (run_mode) @@ -406,11 +412,6 @@ { gimp_progress_init (_("Gaussian Blur...")); - /* set the tile cache size so that the gaussian blur works well */ - gimp_tile_cache_ntiles (2 * - (MAX (drawable->width, drawable->height) / - gimp_tile_width () + 1)); - /* run the gaussian blur */ gauss (drawable, bvals.horizontal, bvals.vertical, diff -uraN gimp-2.2.0/plug-ins/common/glasstile.c gimp-2.2.1/plug-ins/common/glasstile.c --- gimp-2.2.0/plug-ins/common/glasstile.c 2004-11-17 03:55:29.000000000 +0100 +++ gimp-2.2.1/plug-ins/common/glasstile.c 2004-12-27 20:42:16.000000000 +0100 @@ -160,6 +160,7 @@ /* Get the specified drawable */ drawable = gimp_drawable_get (param[2].data.d_drawable); + gimp_tile_cache_ntiles (2 * (drawable->ntile_cols)); switch (run_mode) { @@ -206,8 +207,6 @@ gimp_drawable_is_gray (drawable->drawable_id)) { gimp_progress_init (_("Glass Tile...")); - gimp_tile_cache_ntiles (2 * - (drawable->width / gimp_tile_width () + 1)); glasstile (drawable, NULL); diff -uraN gimp-2.2.0/plug-ins/common/mblur.c gimp-2.2.1/plug-ins/common/mblur.c --- gimp-2.2.0/plug-ins/common/mblur.c 2004-10-12 23:48:38.000000000 +0200 +++ gimp-2.2.1/plug-ins/common/mblur.c 2004-12-27 20:42:16.000000000 +0100 @@ -219,6 +219,9 @@ mbvals.center_x = (gdouble) (x1 + x2 - 1) / 2.0; mbvals.center_y = (gdouble) (y1 + y2 - 1) / 2.0; + /* Set the tile cache size */ + gimp_tile_cache_ntiles (2 * drawable->ntile_cols); + switch (run_mode) { case GIMP_RUN_INTERACTIVE: @@ -266,9 +269,6 @@ (gimp_drawable_is_rgb(drawable->drawable_id) || gimp_drawable_is_gray(drawable->drawable_id))) { - /* Set the tile cache size */ - gimp_tile_cache_ntiles (2 * (drawable->width + - gimp_tile_width () - 1) / gimp_tile_width ()); /* Run! */ has_alpha = gimp_drawable_has_alpha (drawable->drawable_id); diff -uraN gimp-2.2.0/plug-ins/common/neon.c gimp-2.2.1/plug-ins/common/neon.c --- gimp-2.2.0/plug-ins/common/neon.c 2004-10-14 22:55:08.000000000 +0200 +++ gimp-2.2.1/plug-ins/common/neon.c 2004-12-27 20:42:16.000000000 +0100 @@ -158,6 +158,9 @@ /* Get the specified drawable */ drawable = gimp_drawable_get (param[2].data.d_drawable); + /* set the tile cache size so that the gaussian blur works well */ + gimp_tile_cache_ntiles (2 * (MAX (drawable->ntile_rows, drawable->ntile_cols))); + *nreturn_vals = 1; *return_vals = values; @@ -203,10 +206,6 @@ { gimp_progress_init (_("Neon...")); - /* set the tile cache size so that the gaussian blur works well */ - gimp_tile_cache_ntiles (2 * (MAX (drawable->width, drawable->height) / - gimp_tile_width () + 1)); - /* run the neon effect */ neon (drawable, evals.radius, evals.amount, NULL); diff -uraN gimp-2.2.0/plug-ins/common/noisify.c gimp-2.2.1/plug-ins/common/noisify.c --- gimp-2.2.0/plug-ins/common/noisify.c 2004-11-19 19:11:25.000000000 +0100 +++ gimp-2.2.1/plug-ins/common/noisify.c 2004-12-27 20:42:16.000000000 +0100 @@ -18,7 +18,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - * $Id: noisify.c,v 1.64 2004/11/19 18:11:25 neo Exp $ + * $Id: noisify.c,v 1.65 2004/12/23 23:58:35 weskaggs Exp $ */ /* @@ -204,6 +204,7 @@ /* Get the specified drawable */ drawable = gimp_drawable_get (param[2].data.d_drawable); + gimp_tile_cache_ntiles (TILE_CACHE_SIZE); if (gimp_drawable_is_gray (drawable->drawable_id)) nvals.noise[1] = 0.0; @@ -282,7 +283,6 @@ if (status == GIMP_PDB_SUCCESS) { gimp_progress_init (_("Adding Noise...")); - gimp_tile_cache_ntiles (TILE_CACHE_SIZE); /* compute the luminosity which exceeds the luminosity threshold */ gimp_rgn_iterate2 (drawable, 0 /* unused */, noisify_func, noise_gr); diff -uraN gimp-2.2.0/plug-ins/common/oilify.c gimp-2.2.1/plug-ins/common/oilify.c --- gimp-2.2.0/plug-ins/common/oilify.c 2004-10-12 23:48:38.000000000 +0200 +++ gimp-2.2.1/plug-ins/common/oilify.c 2004-12-27 20:42:16.000000000 +0100 @@ -18,7 +18,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - * $Id: oilify.c,v 1.52 2004/10/12 21:48:38 mitch Exp $ + * $Id: oilify.c,v 1.53 2004/12/23 23:58:35 weskaggs Exp $ */ #include "config.h" @@ -135,6 +135,7 @@ /* Get the specified drawable */ drawable = gimp_drawable_get (param[2].data.d_drawable); + gimp_tile_cache_ntiles (2 * drawable->ntile_cols); *nreturn_vals = 2; *return_vals = values; @@ -186,7 +187,6 @@ gimp_drawable_is_gray (drawable->drawable_id))) { gimp_progress_init (_("Oil Painting...")); - gimp_tile_cache_ntiles (2 * (drawable->width / gimp_tile_width () + 1)); oilify (drawable, NULL); diff -uraN gimp-2.2.0/plug-ins/common/photocopy.c gimp-2.2.1/plug-ins/common/photocopy.c --- gimp-2.2.0/plug-ins/common/photocopy.c 2004-09-29 17:33:02.000000000 +0200 +++ gimp-2.2.1/plug-ins/common/photocopy.c 2004-12-27 20:42:16.000000000 +0100 @@ -181,6 +181,9 @@ /* Get the specified drawable */ drawable = gimp_drawable_get (param[2].data.d_drawable); + /* set the tile cache size */ + gimp_tile_cache_ntiles (TILE_CACHE_SIZE); + *nreturn_vals = 1; *return_vals = values; @@ -224,9 +227,6 @@ { gimp_progress_init ("Photocopy..."); - /* set the tile cache size */ - gimp_tile_cache_ntiles (TILE_CACHE_SIZE); - photocopy (drawable, NULL); if (run_mode != GIMP_RUN_NONINTERACTIVE) diff -uraN gimp-2.2.0/plug-ins/common/ripple.c gimp-2.2.1/plug-ins/common/ripple.c --- gimp-2.2.0/plug-ins/common/ripple.c 2004-10-12 23:48:38.000000000 +0200 +++ gimp-2.2.1/plug-ins/common/ripple.c 2004-12-27 20:42:16.000000000 +0100 @@ -163,6 +163,9 @@ /* Get the specified drawable */ drawable = gimp_drawable_get (param[2].data.d_drawable); + /* set the tile cache size */ + gimp_tile_cache_ntiles (TILE_CACHE_SIZE); + *nreturn_vals = 1; *return_vals = values; @@ -218,9 +221,6 @@ { gimp_progress_init (_("Rippling...")); - /* set the tile cache size */ - gimp_tile_cache_ntiles (TILE_CACHE_SIZE); - /* run the ripple effect */ ripple (drawable, NULL); diff -uraN gimp-2.2.0/plug-ins/common/sel_gauss.c gimp-2.2.1/plug-ins/common/sel_gauss.c --- gimp-2.2.0/plug-ins/common/sel_gauss.c 2004-11-14 03:45:11.000000000 +0100 +++ gimp-2.2.1/plug-ins/common/sel_gauss.c 2004-12-27 20:42:16.000000000 +0100 @@ -138,6 +138,7 @@ /* Get the specified drawable */ drawable = gimp_drawable_get (param[2].data.d_drawable); + gimp_tile_cache_ntiles (2 * drawable->ntile_cols); switch (run_mode) { diff -uraN gimp-2.2.0/plug-ins/common/sharpen.c gimp-2.2.1/plug-ins/common/sharpen.c --- gimp-2.2.0/plug-ins/common/sharpen.c 2004-10-12 23:48:39.000000000 +0200 +++ gimp-2.2.1/plug-ins/common/sharpen.c 2004-12-27 20:42:16.000000000 +0100 @@ -1,5 +1,5 @@ /* - * "$Id: sharpen.c,v 1.54 2004/10/12 21:48:39 mitch Exp $" + * "$Id: sharpen.c,v 1.55 2004/12/23 23:58:35 weskaggs Exp $" * * Sharpen filters for The GIMP -- an image manipulation program * @@ -164,6 +164,8 @@ */ drawable = gimp_drawable_get (param[2].data.d_drawable); + gimp_tile_cache_ntiles (2 * drawable->ntile_cols); + /* * See how we will run @@ -216,12 +218,6 @@ gimp_drawable_is_gray (drawable->drawable_id))) { /* - * Set the tile cache size... - */ - gimp_tile_cache_ntiles (2 * (drawable->width + gimp_tile_width() - 1) / - gimp_tile_width() + 1); - - /* * Run! */ sharpen (drawable); diff -uraN gimp-2.2.0/plug-ins/common/shift.c gimp-2.2.1/plug-ins/common/shift.c --- gimp-2.2.0/plug-ins/common/shift.c 2004-10-12 23:48:39.000000000 +0200 +++ gimp-2.2.1/plug-ins/common/shift.c 2004-12-27 20:42:16.000000000 +0100 @@ -140,6 +140,9 @@ /* Get the specified drawable */ drawable = gimp_drawable_get (param[2].data.d_drawable); + /* set the tile cache size */ + gimp_tile_cache_ntiles (TILE_CACHE_SIZE); + *nreturn_vals = 1; *return_vals = values; @@ -190,9 +193,6 @@ { gimp_progress_init (_("Shifting...")); - /* set the tile cache size */ - gimp_tile_cache_ntiles (TILE_CACHE_SIZE); - /* run the shift effect */ shift (drawable, NULL); diff -uraN gimp-2.2.0/plug-ins/common/sobel.c gimp-2.2.1/plug-ins/common/sobel.c --- gimp-2.2.0/plug-ins/common/sobel.c 2004-10-12 23:48:39.000000000 +0200 +++ gimp-2.2.1/plug-ins/common/sobel.c 2004-12-27 20:42:16.000000000 +0100 @@ -150,6 +150,8 @@ /* Get the specified drawable */ drawable = gimp_drawable_get (param[2].data.d_drawable); + gimp_tile_cache_ntiles (2 * drawable->ntile_cols); + switch (run_mode) { case GIMP_RUN_INTERACTIVE: @@ -188,7 +190,6 @@ if (gimp_drawable_is_rgb (drawable->drawable_id) || gimp_drawable_is_gray (drawable->drawable_id)) { - gimp_tile_cache_ntiles (2 * (drawable->width / gimp_tile_width () + 1)); sobel (drawable, bvals.horizontal, bvals.vertical, bvals.keep_sign, NULL); diff -uraN gimp-2.2.0/plug-ins/common/softglow.c gimp-2.2.1/plug-ins/common/softglow.c --- gimp-2.2.0/plug-ins/common/softglow.c 2004-09-29 15:39:23.000000000 +0200 +++ gimp-2.2.1/plug-ins/common/softglow.c 2004-12-27 20:42:16.000000000 +0100 @@ -161,6 +161,9 @@ /* Get the specified drawable */ drawable = gimp_drawable_get (param[2].data.d_drawable); + /* set the tile cache size */ + gimp_tile_cache_ntiles (TILE_CACHE_SIZE); + *nreturn_vals = 1; *return_vals = values; @@ -203,9 +206,6 @@ { gimp_progress_init ("Softglow..."); - /* set the tile cache size */ - gimp_tile_cache_ntiles (TILE_CACHE_SIZE); - softglow (drawable, NULL); if (run_mode != GIMP_RUN_NONINTERACTIVE) diff -uraN gimp-2.2.0/plug-ins/common/spread.c gimp-2.2.1/plug-ins/common/spread.c --- gimp-2.2.0/plug-ins/common/spread.c 2004-10-14 22:37:04.000000000 +0200 +++ gimp-2.2.1/plug-ins/common/spread.c 2004-12-27 20:42:16.000000000 +0100 @@ -126,6 +126,9 @@ image_ID = param[1].data.d_image; drawable = gimp_drawable_get (param[2].data.d_drawable); + /* set the tile cache size */ + gimp_tile_cache_ntiles (TILE_CACHE_SIZE); + *nreturn_vals = 1; *return_vals = values; @@ -178,8 +181,6 @@ { gimp_progress_init (_("Spreading...")); - /* set the tile cache size */ - gimp_tile_cache_ntiles (TILE_CACHE_SIZE); /* run the spread effect */ spread (drawable); diff -uraN gimp-2.2.0/plug-ins/common/tileit.c gimp-2.2.1/plug-ins/common/tileit.c --- gimp-2.2.0/plug-ins/common/tileit.c 2004-11-22 12:09:29.000000000 +0100 +++ gimp-2.2.1/plug-ins/common/tileit.c 2004-12-27 20:42:16.000000000 +0100 @@ -256,6 +256,8 @@ tileitdrawable = drawable = gimp_drawable_get (param[2].data.d_drawable); + gimp_tile_cache_ntiles (drawable->ntile_cols + 1); + has_alpha = gimp_drawable_has_alpha (tileitdrawable->drawable_id); gimp_drawable_mask_bounds (drawable->drawable_id, @@ -315,9 +317,6 @@ { /* Set the tile cache size */ - gimp_tile_cache_ntiles ((drawable->width + gimp_tile_width () - 1) / - gimp_tile_width ()); - gimp_progress_init (_("Tiling...")); do_tiles (); diff -uraN gimp-2.2.0/plug-ins/common/unsharp.c gimp-2.2.1/plug-ins/common/unsharp.c --- gimp-2.2.0/plug-ins/common/unsharp.c 2004-12-11 14:45:06.000000000 +0100 +++ gimp-2.2.1/plug-ins/common/unsharp.c 2004-12-27 20:42:16.000000000 +0100 @@ -1,9 +1,4 @@ -/* $Id: unsharp.c,v 1.68 2004/12/11 13:45:06 neo Exp $ - * - * unsharp.c 0.10 -- This is a plug-in for the GIMP 1.0 - * http://www.stdout.org/~winston/gimp/unsharp.html - * (now out of date) - * +/* * Copyright (C) 1999 Winston Chang * * @@ -42,10 +37,11 @@ #define SCALE_WIDTH 150 #define ENTRY_WIDTH 4 -/* Uncomment this line to get a rough estimate of - * how long the plug-in takes to run. +/* Uncomment this line to get a rough estimate of how long the plug-in + * takes to run. */ -/* #define TIMER */ + +/* #define TIMER */ typedef struct @@ -69,36 +65,34 @@ gint *nreturn_vals, GimpParam **return_vals); -static inline void blur_line (gdouble *ctable, - gdouble *cmatrix, - gint cmatrix_length, - guchar *cur_col, - guchar *dest_col, - gint y, - glong bytes); -static gint gen_convolve_matrix (gdouble std_dev, - gdouble **cmatrix); -static gdouble * gen_lookup_table (gdouble *cmatrix, - gint cmatrix_length); -static void unsharp_region (GimpPixelRgn *srcPTR, - GimpPixelRgn *dstPTR, - gint width, - gint height, - gint bytes, - gdouble radius, - gdouble amount, - gint x1, - gint x2, - gint y1, - gint y2, - gboolean show_progress); - -static void unsharp_mask (GimpDrawable *drawable, - gdouble radius, - gdouble amount); +static void blur_line (const gdouble *ctable, + const gdouble *cmatrix, + gint cmatrix_length, + const guchar *src, + guchar *dest, + gint len, + glong bytes); +static gint gen_convolve_matrix (gdouble std_dev, + gdouble **cmatrix); +static gdouble * gen_lookup_table (const gdouble *cmatrix, + gint cmatrix_length); +static void unsharp_region (GimpPixelRgn *srcPTR, + GimpPixelRgn *dstPTR, + gint bytes, + gdouble radius, + gdouble amount, + gint x1, + gint x2, + gint y1, + gint y2, + gboolean show_progress); + +static void unsharp_mask (GimpDrawable *drawable, + gdouble radius, + gdouble amount); -static gboolean unsharp_mask_dialog (GimpDrawable *drawable); -static void preview_update (GimpPreview *preview); +static gboolean unsharp_mask_dialog (GimpDrawable *drawable); +static void preview_update (GimpPreview *preview); /* create a few globals, set default values */ @@ -185,7 +179,7 @@ * Get drawable information... */ drawable = gimp_drawable_get (param[2].data.d_drawable); - gimp_tile_cache_ntiles(2 * (drawable->width / gimp_tile_width() + 1)); + gimp_tile_cache_ntiles (2 * (drawable->width / gimp_tile_width () + 1)); switch (run_mode) { @@ -232,37 +226,34 @@ /* here we go */ unsharp_mask (drawable, unsharp_params.radius, unsharp_params.amount); - /* values[0].data.d_status = status; */ gimp_displays_flush (); /* set data for next use of filter */ gimp_set_data ("plug_in_unsharp_mask", &unsharp_params, sizeof (UnsharpMaskParams)); - /*fprintf(stderr, "%f %f\n", unsharp_params.radius, unsharp_params.amount);*/ - gimp_drawable_detach(drawable); values[0].data.d_status = status; } #ifdef TIMER - g_printerr ("%f seconds\n", g_timer_elapsed (timer)); + g_printerr ("%f seconds\n", g_timer_elapsed (timer, NULL)); g_timer_destroy (timer); #endif } -/* this function is written as if it is blurring a column at a time, - even though it can operate on rows, too. There is no difference - in the processing of the lines, at least to the blur_line function. +/* This function is written as if it is blurring a column at a time, + * even though it can operate on rows, too. There is no difference + * in the processing of the lines, at least to the blur_line function. */ -static inline void -blur_line (gdouble *ctable, - gdouble *cmatrix, - gint cmatrix_length, - guchar *cur_col, - guchar *dest_col, - gint y, - glong bytes) +static void +blur_line (const gdouble *ctable, + const gdouble *cmatrix, + gint cmatrix_length, + const guchar *src, + guchar *dest, + gint len, + glong bytes) { gdouble scale; gdouble sum; @@ -271,39 +262,44 @@ gint row; gint cmatrix_middle = cmatrix_length / 2; - gdouble *cmatrix_p; - guchar *cur_col_p; - guchar *cur_col_p1; - guchar *dest_col_p; - gdouble *ctable_p; + const gdouble *cmatrix_p; + const gdouble *ctable_p; + const guchar *src_p; + const guchar *src_p1; - /* this first block is the same as the non-optimized version -- + /* This first block is the same as the optimized version -- * it is only used for very small pictures, so speed isn't a * big concern. */ - if (cmatrix_length > y) + if (cmatrix_length > len) { - for (row = 0; row < y ; row++) + for (row = 0; row < len; row++) { - scale=0; /* find the scale factor */ - for (j = 0; j < y ; j++) + scale = 0; + for (j = 0; j < len; j++) { /* if the index is in bounds, add it to the scale counter */ - if ((j + cmatrix_length/2 - row >= 0) && - (j + cmatrix_length/2 - row < cmatrix_length)) - scale += cmatrix[j + cmatrix_length/2 - row]; + if (j + cmatrix_middle - row >= 0 && + j + cmatrix_middle - row < cmatrix_length) + scale += cmatrix[j]; } - for (i = 0; i= row - cmatrix_length/2) && - (j <= row + cmatrix_length/2)) - sum += cur_col[j*bytes + i] * cmatrix[j]; + if (j + cmatrix_middle - row >= 0 && + j + cmatrix_middle - row < cmatrix_length) + sum += *src_p1 * cmatrix[j]; + + src_p1 += bytes; } - dest_col[row*bytes + i] = (guchar) ROUND (sum / scale); + + *dest++ = (guchar) ROUND (sum / scale); } } } @@ -313,56 +309,67 @@ for (row = 0; row < cmatrix_middle; row++) { /* find scale factor */ - scale=0; - for (j = cmatrix_middle - row; j0; j--) + sum = 0; + for (j = cmatrix_length; j > 0; j--) { - sum += *(ctable_p + *cur_col_p1); - cur_col_p1 += bytes; + sum += *(ctable_p + *src_p1); + src_p1 += bytes; ctable_p += 256; } - cur_col_p++; - *(dest_col_p++) = ROUND (sum); + + src_p++; + *dest++ = ROUND (sum); } } - /* for the edge condition , we only use available info, and scale to one */ - for (; row < y; row++) + /* for the edge condition, we only use available info and scale to one */ + for (; row < len; row++) { /* find scale factor */ - scale=0; - for (j = 0; j< y-row + cmatrix_middle; j++) + scale = 0; + for (j = 0; j < len - row + cmatrix_middle; j++) scale += cmatrix[j]; - for (i = 0; iwidth, drawable->height, FALSE, FALSE); + gimp_pixel_rgn_init (&destPR, drawable, + 0, 0, drawable->width, drawable->height, TRUE, TRUE); + /* Get the input */ gimp_drawable_mask_bounds (drawable->drawable_id, &x1, &y1, &x2, &y2); - gimp_progress_init (_("Blurring...")); - width = drawable->width; - height = drawable->height; - bytes = drawable->bpp; - - /* initialize pixel regions */ - gimp_pixel_rgn_init (&srcPR, drawable, 0, 0, width, height, FALSE, FALSE); - gimp_pixel_rgn_init (&destPR, drawable, 0, 0, width, height, TRUE, TRUE); - - unsharp_region (&srcPR, &destPR, width, height, bytes, radius, amount, - x1, x2, y1, y2, TRUE); + unsharp_region (&srcPR, &destPR, drawable->bpp, + radius, amount, + x1, x2, y1, y2, + TRUE); gimp_drawable_flush (drawable); gimp_drawable_merge_shadow (drawable->drawable_id, TRUE); - gimp_drawable_update (drawable->drawable_id, x1, y1, (x2-x1), (y2-y1)); + gimp_drawable_update (drawable->drawable_id, x1, y1, x2 - x1, y2 - y1); } -/* perform an unsharp mask on the region, given a source region, dest. - region, width and height of the regions, and corner coordinates of - a subregion to act upon. Everything outside the subregion is unaffected. -*/ +/* Perform an unsharp mask on the region, given a source region, dest. + * region, width and height of the regions, and corner coordinates of + * a subregion to act upon. Everything outside the subregion is unaffected. + */ static void unsharp_region (GimpPixelRgn *srcPR, GimpPixelRgn *destPR, - gint width, - gint height, gint bytes, gdouble radius, gdouble amount, @@ -416,27 +418,18 @@ gint y2, gboolean show_progress) { - guchar *cur_col; - guchar *dest_col; - guchar *cur_row; - guchar *dest_row; - gint x; - gint y; + guchar *src; + guchar *dest; + gint width = x2 - x1; + gint height = y2 - y1; gdouble *cmatrix = NULL; gint cmatrix_length; gdouble *ctable; + gint row, col; + gint threshold = unsharp_params.threshold; - gint row, col; /* these are counters for loops */ - - /* these are used for the merging step */ - gint threshold; - gint diff; - gint value; - gint u,v; - - /* find height and width of subregion to act on */ - x = x2-x1; - y = y2-y1; + if (show_progress) + gimp_progress_init (_("Blurring...")); /* generate convolution matrix and make sure it's smaller than each dimension */ @@ -445,101 +438,79 @@ /* generate lookup table */ ctable = gen_lookup_table (cmatrix, cmatrix_length); - /* allocate row buffers */ - cur_row = g_new (guchar, x * bytes); - dest_row = g_new (guchar, x * bytes); - - /* find height and width of subregion to act on */ - x = x2-x1; - y = y2-y1; - - /* blank out a region of the destination memory area, I think */ - for (row = 0; row < y; row++) - { - gimp_pixel_rgn_get_row (destPR, dest_row, x1, y1+row, (x2-x1)); - memset (dest_row, 0, x * bytes); - gimp_pixel_rgn_set_row (destPR, dest_row, x1, y1+row, (x2-x1)); - } + /* allocate buffers */ + src = g_new (guchar, MAX (width, height) * bytes); + dest = g_new (guchar, MAX (width, height) * bytes); /* blur the rows */ - for (row = 0; row < y; row++) + for (row = 0; row < height; row++) { - gimp_pixel_rgn_get_row (srcPR, cur_row, x1, y1+row, x); - gimp_pixel_rgn_get_row (destPR, dest_row, x1, y1+row, x); - blur_line (ctable, cmatrix, cmatrix_length, cur_row, dest_row, x, bytes); - gimp_pixel_rgn_set_row (destPR, dest_row, x1, y1+row, x); + gimp_pixel_rgn_get_row (srcPR, src, x1, y1 + row, width); + blur_line (ctable, cmatrix, cmatrix_length, src, dest, width, bytes); + gimp_pixel_rgn_set_row (destPR, dest, x1, y1 + row, width); - if (show_progress && row % 5 == 0) - gimp_progress_update ((gdouble) row / (3 * y)); + if (show_progress && row % 8 == 0) + gimp_progress_update ((gdouble) row / (3 * height)); } - /* allocate column buffers */ - cur_col = g_new (guchar, y * bytes); - dest_col = g_new (guchar, y * bytes); - /* blur the cols */ - for (col = 0; col < x; col++) + for (col = 0; col < width; col++) { - gimp_pixel_rgn_get_col (destPR, cur_col, x1+col, y1, y); - gimp_pixel_rgn_get_col (destPR, dest_col, x1+col, y1, y); - blur_line (ctable, cmatrix, cmatrix_length, cur_col, dest_col, y, bytes); - gimp_pixel_rgn_set_col (destPR, dest_col, x1+col, y1, y); + gimp_pixel_rgn_get_col (destPR, src, x1 + col, y1, height); + blur_line (ctable, cmatrix, cmatrix_length, src, dest, height, bytes); + gimp_pixel_rgn_set_col (destPR, dest, x1 + col, y1, height); - if (show_progress && col % 5 == 0) - gimp_progress_update ((gdouble) col / (3 * x) + 0.33); + if (show_progress && col % 8 == 0) + gimp_progress_update ((gdouble) col / (3 * width) + 0.33); } if (show_progress) gimp_progress_init (_("Merging...")); - /* find integer value of threshold */ - threshold = unsharp_params.threshold; - /* merge the source and destination (which currently contains the blurred version) images */ - for (row = 0; row < y; row++) + for (row = 0; row < height; row++) { - value = 0; + const guchar *s = src; + guchar *d = dest; + gint value = 0; + gint u, v; /* get source row */ - gimp_pixel_rgn_get_row (srcPR, cur_row, x1, y1+row, x); + gimp_pixel_rgn_get_row (srcPR, src, x1, y1 + row, width); /* get dest row */ - gimp_pixel_rgn_get_row (destPR, dest_row, x1, y1+row, x); + gimp_pixel_rgn_get_row (destPR, dest, x1, y1 + row, width); /* combine the two */ - for (u = 0; u < x; u++) + for (u = 0; u < width; u++) { for (v = 0; v < bytes; v++) { - diff = (cur_row[u*bytes+v] - dest_row[u*bytes+v]); + gint diff = *s - *d; /* do tresholding */ if (abs (2 * diff) < threshold) diff = 0; - value = cur_row[u*bytes+v] + amount * diff; - - dest_row[u*bytes+v] = CLAMP (value, 0, 255); + value = *s++ + amount * diff; + *d++ = CLAMP (value, 0, 255); } } - /* update progress bar every five rows */ - if (show_progress && row % 5 == 0) - gimp_progress_update ((gdouble) row / (3 * y) + 0.67); - gimp_pixel_rgn_set_row (destPR, dest_row, x1, y1+row, x); + if (show_progress && row % 8 == 0) + gimp_progress_update ((gdouble) row / (3 * height) + 0.67); + + gimp_pixel_rgn_set_row (destPR, dest, x1, y1 + row, width); } if (show_progress) gimp_progress_update (0.0); - /* free the memory we took */ - g_free (cmatrix); + g_free (dest); + g_free (src); g_free (ctable); - g_free (dest_col); - g_free (cur_col); - g_free (dest_row); - g_free (cur_row); + g_free (cmatrix); } /* generates a 1-D convolution matrix to be used for each pass of @@ -549,12 +520,11 @@ gen_convolve_matrix (gdouble radius, gdouble **cmatrix_p) { - gint matrix_length; - gint matrix_midpoint; gdouble *cmatrix; - gint i,j; gdouble std_dev; gdouble sum; + gint matrix_length; + gint i, j; /* we want to generate a matrix that goes out a certain radius * from the center, so we have to go out ceil(rad-0.5) pixels, @@ -566,15 +536,16 @@ * the standard deviation, and the radius of effect is the * standard deviation * 2. It's a little confusing. */ - radius = fabs(radius) + 1.0; + radius = fabs (radius) + 1.0; std_dev = radius; radius = std_dev * 2; /* go out 'radius' in each direction */ - matrix_length = 2 * ceil(radius-0.5) + 1; - if (matrix_length <= 0) matrix_length = 1; - matrix_midpoint = matrix_length/2 + 1; + matrix_length = 2 * ceil (radius - 0.5) + 1; + if (matrix_length <= 0) + matrix_length = 1; + *cmatrix_p = g_new (gdouble, matrix_length); cmatrix = *cmatrix_p; @@ -586,38 +557,39 @@ */ /* first we do the top (right) half of matrix */ - for (i = matrix_length/2 + 1; i < matrix_length; i++) + for (i = matrix_length / 2 + 1; i < matrix_length; i++) { - double base_x = i - floor(matrix_length/2) - 0.5; + gdouble base_x = i - (matrix_length / 2) - 0.5; + sum = 0; for (j = 1; j <= 50; j++) { - if ( base_x+0.02*j <= radius ) - sum += exp (-(base_x+0.02*j)*(base_x+0.02*j) / - (2*std_dev*std_dev)); + if (base_x + 0.02 * j <= radius) + sum += exp (- SQR (base_x + 0.02 * j) / (2 * SQR (std_dev))); } - cmatrix[i] = sum/50; + + cmatrix[i] = sum / 50; } /* mirror the thing to the bottom half */ - for (i=0; i<=matrix_length/2; i++) { - cmatrix[i] = cmatrix[matrix_length-1-i]; - } + for (i = 0; i <= matrix_length / 2; i++) + cmatrix[i] = cmatrix[matrix_length - 1 - i]; /* find center val -- calculate an odd number of quanta to make it symmetric, * even if the center point is weighted slightly higher than others. */ sum = 0; for (j = 0; j <= 50; j++) - { - sum += exp (-(0.5+0.02*j)*(0.5+0.02*j) / - (2*std_dev*std_dev)); - } - cmatrix[matrix_length/2] = sum/51; + sum += exp (- SQR (0.5 + 0.02 * j) / (2 * SQR (std_dev))); + + cmatrix[matrix_length / 2] = sum / 51; /* normalize the distribution by scaling the total sum to one */ - sum=0; - for (i=0; idrawable_id, &x1, &y1, &x2, &y2); - bytes = drawable->bpp; - - /* - * Setup for filter... - */ - gimp_preview_get_position (preview, &preview_x1, &preview_y1); - gimp_preview_get_size (preview, &preview_x2, &preview_y2); - preview_x2 += preview_x1; - preview_y2 += preview_y1; - - /* Make buffer large enough to minimize disturbence */ - preview_buf_x1 = MAX (0, preview_x1 - unsharp_params.radius); - preview_buf_y1 = MAX (0, preview_y1 - unsharp_params.radius); - preview_buf_x2 = MIN (x2, preview_x2 + unsharp_params.radius); - preview_buf_y2 = MIN (y2, preview_y2 + unsharp_params.radius); - preview_buf_width = preview_buf_x2 - preview_buf_x1; - preview_buf_height = preview_buf_y2 - preview_buf_y1; - - /* initialize pixel regions */ gimp_pixel_rgn_init (&srcPR, drawable, - preview_buf_x1, preview_buf_y1, - preview_buf_width, preview_buf_height, FALSE, FALSE); + 0, 0, drawable->width, drawable->height, FALSE, FALSE); gimp_pixel_rgn_init (&destPR, drawable, - preview_buf_x1, preview_buf_y1, - preview_buf_width, preview_buf_height, TRUE, TRUE); + 0, 0, drawable->width, drawable->height, TRUE, TRUE); + + gimp_preview_get_position (preview, &x, &y); + gimp_preview_get_size (preview, &width, &height); + + /* enlarge the region to avoid artefacts at the edges of the preview */ + border = 2.0 * unsharp_params.radius + 0.5; + x1 = MAX (0, x - border); + y1 = MAX (0, y - border); + x2 = MIN (x + width + border, drawable->width); + y2 = MIN (y + height + border, drawable->height); - unsharp_region (&srcPR, &destPR, - preview_buf_width, preview_buf_height, bytes, + unsharp_region (&srcPR, &destPR, drawable->bpp, unsharp_params.radius, unsharp_params.amount, - preview_buf_x1, preview_buf_x2, - preview_buf_y1, preview_buf_y2, + x1, x2, y1, y2, FALSE); + gimp_pixel_rgn_init (&destPR, drawable, x, y, width, height, FALSE, TRUE); gimp_drawable_preview_draw_region (GIMP_DRAWABLE_PREVIEW (preview), &destPR); } diff -uraN gimp-2.2.0/plug-ins/common/whirlpinch.c gimp-2.2.1/plug-ins/common/whirlpinch.c --- gimp-2.2.0/plug-ins/common/whirlpinch.c 2004-10-12 23:48:39.000000000 +0200 +++ gimp-2.2.1/plug-ins/common/whirlpinch.c 2004-12-27 20:42:16.000000000 +0100 @@ -201,6 +201,9 @@ gimp_drawable_mask_bounds (drawable->drawable_id, &sel_x1, &sel_y1, &sel_x2, &sel_y2); + /* Set the tile cache size */ + gimp_tile_cache_ntiles (2 * drawable->ntile_cols); + /* Calculate scaling parameters */ sel_width = sel_x2 - sel_x1; @@ -273,9 +276,6 @@ (gimp_drawable_is_rgb (drawable->drawable_id) || gimp_drawable_is_gray (drawable->drawable_id))) { - /* Set the tile cache size */ - gimp_tile_cache_ntiles (2 * (drawable->width + gimp_tile_width () - 1) / - gimp_tile_width ()); /* Run! */ whirl_pinch (drawable); diff -uraN gimp-2.2.0/plug-ins/FractalExplorer/FractalExplorer.c gimp-2.2.1/plug-ins/FractalExplorer/FractalExplorer.c --- gimp-2.2.0/plug-ins/FractalExplorer/FractalExplorer.c 2004-11-28 23:46:19.000000000 +0100 +++ gimp-2.2.1/plug-ins/FractalExplorer/FractalExplorer.c 2004-12-27 20:42:16.000000000 +0100 @@ -458,8 +458,8 @@ bytes = drawable->bpp; /* allocate row buffers */ - src_row = g_new (guchar, x2 - x1); - dest_row = g_new (guchar, x2 - x1); + src_row = g_new (guchar, bytes * (x2 - x1)); + dest_row = g_new (guchar, bytes * (x2 - x1)); /* initialize the pixel regions */ gimp_pixel_rgn_init (&srcPR, drawable, 0, 0, width, height, FALSE, FALSE); diff -uraN gimp-2.2.0/plug-ins/gfig/gfig-arc.c gimp-2.2.1/plug-ins/gfig/gfig-arc.c --- gimp-2.2.0/plug-ins/gfig/gfig-arc.c 2004-12-04 18:33:54.000000000 +0100 +++ gimp-2.2.1/plug-ins/gfig/gfig-arc.c 2004-12-27 20:42:16.000000000 +0100 @@ -533,10 +533,6 @@ } } - /* Reverse line if approp */ - if (selvals.reverselines) - reverse_pairs_list (&line_pnts[0], i / 2); - /* One go */ if (obj->style.paint_type == PAINT_BRUSH_TYPE) { diff -uraN gimp-2.2.0/plug-ins/gfig/gfig-bezier.c gimp-2.2.1/plug-ins/gfig/gfig-bezier.c --- gimp-2.2.0/plug-ins/gfig/gfig-bezier.c 2004-12-04 18:33:54.000000000 +0100 +++ gimp-2.2.1/plug-ins/gfig/gfig-bezier.c 2004-12-27 20:42:16.000000000 +0100 @@ -259,10 +259,6 @@ DrawBezier (bz_line_pnts, seg_count, 0.5, 5); line_pnts = d_bz_get_array (&i); - /* Reverse line if approp */ - if (selvals.reverselines) - reverse_pairs_list (&line_pnts[0], i / 2); - /* Scale before drawing */ if (selvals.scaletoimage) scale_to_original_xy (&line_pnts[0], i / 2); diff -uraN gimp-2.2.0/plug-ins/gfig/gfig-circle.c gimp-2.2.1/plug-ins/gfig/gfig-circle.c --- gimp-2.2.0/plug-ins/gfig/gfig-circle.c 2004-12-04 18:33:54.000000000 +0100 +++ gimp-2.2.1/plug-ins/gfig/gfig-circle.c 2004-12-27 20:42:16.000000000 +0100 @@ -189,11 +189,16 @@ (gint) RINT (radius) * 2, 0, 360 * 64); + edge_pnt->pnt = *pnt; + } + else + { + edge_pnt = new_dobjpoint (pnt->x, pnt->y); + center_pnt->next = edge_pnt; } - draw_circle (pnt, TRUE); + draw_circle (&edge_pnt->pnt, TRUE); - edge_pnt = new_dobjpoint (pnt->x, pnt->y); radius = calc_radius (¢er_pnt->pnt, &edge_pnt->pnt); gdk_draw_arc (gfig_context->preview->window, @@ -205,8 +210,6 @@ (gint) RINT (radius) * 2, 0, 360 * 64); - - center_pnt->next = edge_pnt; } void diff -uraN gimp-2.2.0/plug-ins/gfig/gfig-dialog.c gimp-2.2.1/plug-ins/gfig/gfig-dialog.c --- gimp-2.2.0/plug-ins/gfig/gfig-dialog.c 2004-12-13 11:12:04.000000000 +0100 +++ gimp-2.2.1/plug-ins/gfig/gfig-dialog.c 2004-12-27 20:42:16.000000000 +0100 @@ -1870,8 +1870,6 @@ gimp_drawable_fill (gfig_context->drawable_id, GIMP_TRANSPARENT_FILL); - /* gimp_drawable_fill (gfig_context->drawable_id, GIMP_PATTERN_FILL); */ - while (objs) { if (ccount == obj_show_single || obj_show_single == -1) @@ -2052,31 +2050,6 @@ } } -/* Given an list of PAIRS of doubles reverse the list */ -/* Size is number of pairs to swap */ -void -reverse_pairs_list (gdouble *list, - gint size) -{ - gint i; - - struct cs - { - gdouble i1; - gdouble i2; - } copyit, *orglist; - - orglist = (struct cs *) list; - - /* Uses struct copies */ - for (i = 0; i < size / 2; i++) - { - copyit = orglist[i]; - orglist[i] = orglist[size - 1 - i]; - orglist[size - 1 - i] = copyit; - } -} - void gfig_draw_arc (gint x, gint y, gint width, gint height, gint angle1, gint angle2) diff -uraN gimp-2.2.0/plug-ins/gfig/gfig-ellipse.c gimp-2.2.1/plug-ins/gfig/gfig-ellipse.c --- gimp-2.2.0/plug-ins/gfig/gfig-ellipse.c 2004-12-04 18:33:54.000000000 +0100 +++ gimp-2.2.1/plug-ins/gfig/gfig-ellipse.c 2004-12-27 20:42:16.000000000 +0100 @@ -99,7 +99,7 @@ gdouble dpnts[4]; /* Drawing ellipse is hard . - * 1) select circle + * 1) select ellipse * 2) stroke it */ @@ -223,11 +223,15 @@ bound_wy, 0, 360 * 64); + edge_pnt->pnt = *pnt; + } + else + { + edge_pnt = new_dobjpoint (pnt->x, pnt->y); + center_pnt->next = edge_pnt; } - draw_circle (pnt, TRUE); - - edge_pnt = new_dobjpoint (pnt->x, pnt->y); + draw_circle (&edge_pnt->pnt, TRUE); bound_wx = abs (center_pnt->pnt.x - edge_pnt->pnt.x) * 2; bound_wy = abs (center_pnt->pnt.y - edge_pnt->pnt.y) * 2; @@ -251,8 +255,6 @@ bound_wy, 0, 360 * 64); - - center_pnt->next = edge_pnt; } void diff -uraN gimp-2.2.0/plug-ins/gfig/gfig.h gimp-2.2.1/plug-ins/gfig/gfig.h --- gimp-2.2.0/plug-ins/gfig/gfig.h 2004-11-30 00:02:39.000000000 +0100 +++ gimp-2.2.1/plug-ins/gfig/gfig.h 2004-12-27 20:42:16.000000000 +0100 @@ -164,9 +164,6 @@ void scale_to_original_xy (gdouble *list, gint size); -void reverse_pairs_list (gdouble *list, - gint size); - void gfig_paint (BrushType brush_type, gint32 drawable_ID, gint seg_count, diff -uraN gimp-2.2.0/plug-ins/gfig/gfig-line.c gimp-2.2.1/plug-ins/gfig/gfig-line.c --- gimp-2.2.0/plug-ins/gfig/gfig-line.c 2004-12-04 18:33:54.000000000 +0100 +++ gimp-2.2.1/plug-ins/gfig/gfig-line.c 2004-12-27 20:42:16.000000000 +0100 @@ -106,10 +106,6 @@ line_pnts[i++] = spnt->pnt.y; } - /* Reverse line if approp */ - if (selvals.reverselines) - reverse_pairs_list (&line_pnts[0], i/2); - /* Scale before drawing */ if (selvals.scaletoimage) scale_to_original_xy (&line_pnts[0], i/2); @@ -127,10 +123,6 @@ g_free (line_pnts); } -/* Create a new line object. starting at the x, y point might add styles - * later. - */ - void d_line_object_class_init (void) { @@ -144,18 +136,6 @@ class->update = d_update_line; } -/* You guessed it delete the object !*/ -/* -static void -d_delete_line (Dobject *obj) -{ - g_assert (obj != NULL); - * First free the list of points - then the object itself * - d_delete_dobjpoints (obj->points); - g_free (obj); -} -*/ - /* Update end point of line */ static void d_update_line (GdkPoint *pnt) @@ -179,7 +159,6 @@ draw_circle (&epnt->pnt, TRUE); gdk_draw_line (gfig_context->preview->window, - /*gfig_context->preview->style->bg_gc[GTK_STATE_NORMAL],*/ gfig_gc, spnt->pnt.x, spnt->pnt.y, @@ -195,7 +174,6 @@ epnt = new_dobjpoint (pnt->x, pnt->y); gdk_draw_line (gfig_context->preview->window, - /*gfig_context->preview->style->bg_gc[GTK_STATE_NORMAL],*/ gfig_gc, spnt->pnt.x, spnt->pnt.y, @@ -275,5 +253,4 @@ obj_creating = NULL; tmp_line = NULL; } - /*gtk_widget_queue_draw (gfig_context->preview);*/ } diff -uraN gimp-2.2.0/plug-ins/gfig/gfig-poly.c gimp-2.2.1/plug-ins/gfig/gfig-poly.c --- gimp-2.2.0/plug-ins/gfig/gfig-poly.c 2004-12-04 18:33:54.000000000 +0100 +++ gimp-2.2.1/plug-ins/gfig/gfig-poly.c 2004-12-27 20:42:16.000000000 +0100 @@ -224,10 +224,6 @@ line_pnts[i++] = first_pnt.x; line_pnts[i++] = first_pnt.y; - /* Reverse line if approp */ - if (selvals.reverselines) - reverse_pairs_list (&line_pnts[0], i/2); - /* Scale before drawing */ if (selvals.scaletoimage) scale_to_original_xy (&line_pnts[0], i/2); diff -uraN gimp-2.2.0/plug-ins/gfig/gfig-spiral.c gimp-2.2.1/plug-ins/gfig/gfig-spiral.c --- gimp-2.2.0/plug-ins/gfig/gfig-spiral.c 2004-12-04 18:33:54.000000000 +0100 +++ gimp-2.2.1/plug-ins/gfig/gfig-spiral.c 2004-12-27 20:42:16.000000000 +0100 @@ -234,10 +234,6 @@ last_pnt = calc_pnt; } - /* Reverse line if approp */ - if (selvals.reverselines) - reverse_pairs_list (&line_pnts[0], i / 2); - /* Scale before drawing */ if (selvals.scaletoimage) scale_to_original_xy (&line_pnts[0], i / 2); diff -uraN gimp-2.2.0/plug-ins/gfig/gfig-star.c gimp-2.2.1/plug-ins/gfig/gfig-star.c --- gimp-2.2.0/plug-ins/gfig/gfig-star.c 2004-12-04 18:33:54.000000000 +0100 +++ gimp-2.2.1/plug-ins/gfig/gfig-star.c 2004-12-27 20:42:16.000000000 +0100 @@ -283,10 +283,6 @@ line_pnts[i++] = first_pnt.x; line_pnts[i++] = first_pnt.y; - /* Reverse line if approp */ - if (selvals.reverselines) - reverse_pairs_list (&line_pnts[0], i / 2); - /* Scale before drawing */ if (selvals.scaletoimage) scale_to_original_xy (&line_pnts[0], i / 2); diff -uraN gimp-2.2.0/plug-ins/gfig/gfig-style.h gimp-2.2.1/plug-ins/gfig/gfig-style.h --- gimp-2.2.0/plug-ins/gfig/gfig-style.h 2004-11-30 00:02:39.000000000 +0100 +++ gimp-2.2.1/plug-ins/gfig/gfig-style.h 2004-12-27 20:42:16.000000000 +0100 @@ -30,24 +30,24 @@ struct _Style { - gchar *name; - gchar *brush_name; - gint brush_width; - gint brush_height; - gint brush_spacing; - BrushType brush_type; - gdouble brushfade; - gdouble brushgradient; - gdouble airbrushpressure; - FillType fill_type; - gdouble fill_opacity; - gchar *pattern; - gchar *gradient; - PaintType paint_type; - GimpRGB foreground; - GimpRGB background; - gboolean reverselines; - gint ref_count; + gchar *name; + gchar *brush_name; + gint brush_width; + gint brush_height; + gint brush_spacing; + BrushType brush_type; + gdouble brushfade; + gdouble brushgradient; + gdouble airbrushpressure; + FillType fill_type; + gdouble fill_opacity; + gchar *pattern; + gchar *gradient; + PaintType paint_type; + GimpRGB foreground; + GimpRGB background; + gboolean reverselines; + gint ref_count; }; gboolean gfig_load_style (Style *style, diff -uraN gimp-2.2.0/plug-ins/pygimp/ChangeLog gimp-2.2.1/plug-ins/pygimp/ChangeLog --- gimp-2.2.0/plug-ins/pygimp/ChangeLog 2003-02-08 20:35:59.000000000 +0100 +++ gimp-2.2.1/plug-ins/pygimp/ChangeLog 2004-12-27 20:42:16.000000000 +0100 @@ -1,3 +1,7 @@ +2004-12-19 Sven Neumann + + * Makefile.am: added $(pygimp_DATA) to EXTRA_DIST. + 2003-02-08 Manish Singh * gimpui.py: use dialog.run() for sub dialogs, since the main dialog diff -uraN gimp-2.2.0/plug-ins/pygimp/Makefile.am gimp-2.2.1/plug-ins/pygimp/Makefile.am --- gimp-2.2.0/plug-ins/pygimp/Makefile.am 2004-11-23 03:35:54.000000000 +0100 +++ gimp-2.2.1/plug-ins/pygimp/Makefile.am 2004-12-27 20:42:16.000000000 +0100 @@ -71,4 +71,6 @@ snap: $(MAKE) dist distdir=$(PACKAGE)-SNAP-`date +"%Y%m%d"` -EXTRA_DIST = makefile.msc +EXTRA_DIST = \ + $(pygimp_DATA) \ + makefile.msc diff -uraN gimp-2.2.0/plug-ins/pygimp/Makefile.in gimp-2.2.1/plug-ins/pygimp/Makefile.in --- gimp-2.2.0/plug-ins/pygimp/Makefile.in 2004-12-18 00:44:56.000000000 +0100 +++ gimp-2.2.1/plug-ins/pygimp/Makefile.in 2004-12-27 20:49:35.000000000 +0100 @@ -437,7 +437,10 @@ pyenvdir = $(gimpplugindir)/environ -EXTRA_DIST = makefile.msc +EXTRA_DIST = \ + $(pygimp_DATA) \ + makefile.msc + subdir = plug-ins/pygimp ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs diff -uraN gimp-2.2.0/plug-ins/pygimp/pygimp-logo.png gimp-2.2.1/plug-ins/pygimp/pygimp-logo.png --- gimp-2.2.0/plug-ins/pygimp/pygimp-logo.png 1970-01-01 01:00:00.000000000 +0100 +++ gimp-2.2.1/plug-ins/pygimp/pygimp-logo.png 2004-11-23 03:35:54.000000000 +0100 @@ -0,0 +1,74 @@ +PNG + + IHDRTY4k pHYs  tIME APtEXtCommentCreated with The GIMPd%n IDATxgeWuxrST]]]srBB9" ؾ&c &\r,$@- թr'w-w7Z{///{o9X480[:/zfH⚫R= !r] O~z B!]LVr[B[hw<})MH$X!2Su<2\Y&gzϝ9&Y +}W|5]'hzex?sy!ZP[pᰏirv,:>@87g [_תU\whiQPH"(V~ݧN.!RSzS7E"A/˫,&(]{wmΟ}JyA"Mosm: } Cc'+.N}R+=]?3 +7PZ.rrfUm-~fLǙ^Q(|py>] +j}}=b^#_x_)?䱧UYu1 +q +a7l/J$]ܽ{{ooxػf ͦg GܕL5_z}{{{l۾ree +M͍]㟮N:|hs:~,lzXOZG7-ntnZ莯V.HWfn ėxOھ~[_>On۶m.YQ`T#SiNٶ.8 Xqyٻk9A8IUYV]dIu W=7; +o߾bX; +o~Cя(JtZ|hh%r@4.LP'R(4ٙ,h \T1(4;*\w(z&[(1` x4QGv7^%3{>Wh" +N8ymW3>>r/=|wsBV%C$-2;!*ƴ8UGH2Ohu7q`O#GW8?B4B\#Ub +e +' +>*5Q$o|tv0rfI񶻮C[93pLp{T ӡPq+\}u?? 2s?O>9= +/uq@3O?w{~&&kzF/NSYkV +ݍllBK/8xIf"&kۇ#\sy?tٲpȃMOF@'Ϡi:@oQV \uf74233@T&XYR*9|I/++KV$^'Y\bXR=5MjJ$(^LnzO|{lBy +p̈yӍ?Ldιћ3j!E3l|]擤3ed"A[) hi0=яK.Jyp`lRdrfTXYY"*DZAubUPXd4zqT2lǎ;xkSs^ʧկ_/\/M +o-w* ZUܴwmAll$q17cbfJUZI|0[" 6aE,% reS.Uٿ͛Zho9nj34~dm7nf*h1p˅{Ύ^>v\d9xHܹ {U}*ի5 ؎(fo sgFF6 +.Ҏ xt!ʮ/U]MD*5N @Taddw:/O,𮷽C7#2Q|n醻6J{xs:m977 ` 5ͮ-|GxK`W_=" Ef>9~loO3iMxnU ^*:Gq DYyo&l)WMcQ.&z+=nJG+҅C+VjЅO1=J?ī*G?ɖMW]芭gw/E#,u + !`nqiU@6ւY\pkǷeXEMD> W{|sū^}Jz];cYvr^ӄhc96mjXY0r~֨JȊB9'܅_RLcc}/G *~H*U#cO&BoZO$x(-,,zjj}XuU:;cPUPk^ߦ1gf:+ 6$l=*&q5;zS1ɑ)VbF/-1Vnm+#xn6jVjHV%'Nj>d^W6fҩOb5yk$Iej܍*y׳# '҄#Hيed:aa~d<,z]1,Rx@OW ]ʹ4ݻlD|%Mssg/PTXY︉=8ʏ8O$ą#sïBwFÝֵkq%TŅ ZͶP[P0:ea6+-VIŅ$R ƨ՚IXvL{G|%Ъd-v!_axcG:!WDn +}N:W6pfjM<<'C~bjT|ן벐2r=Rv?=_Ap\IqeJ +-Ȣ dhJ%(UjlLí(rH!"r D&'WVuY,"(!9/:ot-s8pt*Jƈ+Dt˔ 6Lj%J"0;/H*wqDsV0*ޠl12].Z؎ʗ7@ \n_IO>@ss'B|fXqכşx=?+BC.m247iorF T5.73SYDSR GBhf\:MdP$Zݤd2;]=}n;6ۯZ/ +ql(-~oA*wpbǞ^^*,Ɨi7^38Qcg2]'N>}1Ke/7}('Wm;T-1&*\S@ F"mZ\!r,Fbk5 +p`/ed2%.lzC[ؾJBPd% Edj&YZqU[9m]lk"*bZu$>H+$K;z쉏?<'ߒg=-bo |Aa25apmn +eJi/P\r``BX,̽gvDdl{u1L1ƴ.ݿIQYay)CO{ޮQc|2~~*3sur +r5.p4hߞ|G?+g_yR[_X;m26mld@+u \D$r +-1?Auٺ*h.[|twYMxjuy~~߇Kv۷z$ciʁKrFYsw?KEr?tI@/=]=m3:e ơ's_>r+?;g$5yW{Zba-l-er6E](W2%WP`ue=CLfsu$AE";\\8w$ɢ!ĉE~+H&ʌ\\e><6Z+wt5ݬ~W~9t08/%[XPٶ/ǏO{0&NKJRι uSn0&C=Nf*J# NVgG'lgw?E?D<#OP(8i;T09.+Mڧ?O־,j:9J AQcck;w/#1m Qk&SΒ4610\l2-Vs{q{,.Z1H*_Ǵd2RuÎ66T%mS(lۺy"-0=?o?=Mb~M$E9{n +\Å?'ؼ$BX Dg.`,"KDL6$I)AR&]niYpڻ5~|$nRdJ ZKg&x=bm1AJW\6+親U}")~Taf&NfQ,TDUSp\Oo_tv%>TQrN{|_|IV\[Wkj}i|3/[y斶N5)bAlA9amm Cb;^zn/OF1 .JSRy2ϻޭ%m*N&SB!\ J---$J^[|]Ł9O&)4m"mAV^y,2;`aĞ}ݴ̏rPftY%׈4FX>{ =}j o BOrSS=3=#}o?z>&4G05 EThlb9:[:8Z K6A1R#>` + 8r˓iF:::k'O +Cx+kQIrB^ö@T-e ra CёF!U'c[6 +IFcc-7?XַB{79)R)WlT-rj$M\@E]*Ѡxۮnj;㡷;șryDV! +WcmG@4t%I22\dmmz[慅Fe3C~*E4hQԘN8*6uX[ˑI:. clIKFU8F.q$uâ# 8dz1ّ}vn{7o%톮}zo$A2 +W^ځ+bl"L<cMfu6_/r\f9pϥ1D_׳*@čǬؼ hj#!1Bt:ښ(5Oaxctsc+]:;TJuKsFY1A nu|}&+6^$RnE!Xk=޵c{?IA7B ﱵAFE!"fciJ:d!uGtV-LiD̦M,.+reL_Ñ,Uz@ Z'RA$3 LΙS_'&XXL0=[$2Y]Q'9t0#H2k=$9~MQfA hIKjED,twzꏟx OG?tWrPyOB. dbůR1 J@@l4ArD˺l!pn4-7m# T ĚD~vogek^=86OPgVI! \G4%lE!17ʩ3e{`j[&~92 i1?j_򓨦 rH%Euffg%…vC$hyKSpHft 2 +i[MG (>w?zՄCnVh|km!W"+6nj3YY+ce)̤_u(SGE<7>J*ʮlh& qbc'35".Q, Vj/LRdvjXkRJKWTG0˔;~mcoIgrEhm!(`:6Ւؘ֯R}HCK@3OsNn_L&Wy)#Ԫr*SSd3)7HQ0MD=^B$=^J%T&R +11~ IDAT +}!b|nNس{LL1;@V~xN\qnU؂蚎 H_R-镻GJч~e\C` dhsXbGߦbN + IYLCPTEG$R:;n=ĉUtSDVDdj*Gs,DCKWjbADAJ Qٺn,-'=\T:%2=GZ[Z妝T5PIt*".Ճ$(ȂUե">UlǺ-h-?~_(f vLs,DZ'WG\)Ȋǫ򪈦Q} ō)8T6Q4 +u$(B$&ʳĭr5qvG6Б>nɥ"nk n~bѱ%.>#u,M>n'f)-aDrE(kE-!<#x *dmdz٥}̙˖?Յ yQTrMR#a׎dRK9ruT\~ib;c'ꈒƈRq8V[ql8r 7x+\pX?†  _bii/a^g~1%ѳqꉲdN騬dJ]7 :g-}]]1zz"X]b O!t=Q\\̑NY%)Q.H&39Z:eBMnrq w(#*p+wqx|BWOf30Fcxs k \srbg,X^.ٿ^JUn79;F ahfcvM2y\ +-`۶n6n K* "33Klo&)Jy2AKK?.:'\sfvn$31X_-y,`&W^AOGK:}\oOR-1.fj|U4A`.܊\Pe:,۷t!|*2\vM7U!݁K*E&R%|> SuA/CM,eY_/p~t@nʤ)n΍̱0"r ՊI*]e,ӤTyK 4x|,KX}4XYʒqyl@kئ DQB~BN]i4򈲅6P#"v]DpL,G@tL^}8>$ɼt~NB:=5=v ]I]7_j$GܪHOwŅSsi\}ΎHccTmW7}L6jm:lGӍ' S>Tkd#!\46 ~7 /25q UD3z K%ӖdAX])}s+㦫:>KTf6=܏*BFud5IdQc\~&Wv?jJrz%SUq+Aۈ#*2dbMA/|bx&sOL>Bյ5'ͅC ۑ Sʗ.H($;twyTRXY)˗-]Txp=?W4ߥnÃk:Zޮ%t"N!@2U%9( +Ώ=\hP7;^򑻿L'I%%VݳkT&]-iE(41cӆ&.u]`nL]3]|cK W7p~jr߸PȝD"?45=<9G$ +~ Y.^Eؾh@(tar6/7v/Adي#z9. +Em.""0P.N櫺RbwWϟxWHן\?|k?^dx|S:ő\4|@#xٻcx4^o|[;T5D:[ػk3ƿ?=5v淮X>uE|=CrcY] ܊ٌ̦TjuTI PԐ !:.n$*Cnr"׿h~nJc4:~)Ue +c:J'(y߅P299jL:ۘɧjmiljeĪJGGdQ!ҹ:%p~&Vص31GW<^RH__3kL$Z7M]Vg!-3v~4*d\&lj3isxc=s_|6tNits o~ O?[~gm5ksP6m "b>$jmyM\n/| d"9~Dz"O߱D;:NGO-Q#7prdurFQ57~,눂M?,5"^‡fƧR4|, 4Z(Hrm=isFUK~D&g0 S bTE +KbǦ.~C]m 'Na#K.b PT$ ơ6Z|:=yW^5̗~b +ع'^eW|+_hM,CxpW8R$?vw>1 hbc`#- +ɴhoi^pyhDnű04Ualb,ff6I.WCIq!#ON1=|q/WNgVRVy*+ohY[K82U֓8$Dv)x}af&T%zz*LW S3f  + As8űuP4o~)Z[ط+ܳ'f8s/ҿ?0)'fj;{t8,'qEښYKiȲ/ 2T ˖Y\\Sad \ǣ0:9MS4o1.ٿ,!0*B$7uLWxdjȥ_yomض}{V-.5aP.HT⚫vs5\~0`T_H7Mz[ꎠ&͍>~Q'1 Ύ ^ WLO{ Qhk!&)P$\.|^DD2υdo{ǒNߔ=Qͦf۱""',vKB)si<D `"Bm2|6c~1tu} 4r勶q+ѣ$R% ͤ)Y\LQ(qŕkMf>kFymm Hē0 ry0`:?}p J åJG \ǑpZ%:{""si6o^p;<`Y8Ad26D-$ Wl[),,`.4C?b8=-o~_z;Zy^~~t>7o SY vi /ixAY$I'g \6Q@hۅ`Y+DCnCC*xaeivC&q=i[uWڧկ?5XKC6n_ 1ܮZb~ SgWQ]>H2cu +2[E/cs5nq/S,(<=Fk*<ʹyK^+ӕ{޽+g|^}qr 17E G&EBdJUdatű9ޮ(ZBsS+/Lͩ13ѿݵwV\{uKcC<[$b%cq,IJM.NuߊpnRIG{P,j$s"==Bl8uMIOMFFO~/kVv"&Oŝ㸽.;Of QZ\C7F^{RU8ex#d2&V{](NSsU; xJ\^KQ\>SM?kG?muԵz!9dҳ*}-% +UhK.fɒN WkV5NjJ@EQ(t^?4! \UJ\Z{iΏ_<9@yrHQ7,֯]שVTIWX̍aR,n4:04MKzVjX F}9Uͫ;T%deo+=a&gX6c_5HrLO,x4ii{*VÖ6Xhv;'|E+"VdJD՚],DNWݡyUZ5 +(- #ĸypA=S +yhWBҭ^-W)W-!L$3ZՉQ׈´$ "#I6!, ' Q*4X+BrZGkxI#uccӤ5M={`ӆ~.Vcĩ}=}vYwwޘIlx_=Að0qBxpMXjRi57 D7 ul!)9~2ÁiI)$L6o?7_ &gЁ'\-ʱ}`xA=?०60 J0 +mcMLmZ#5˹=; x}OJyHdŊW4 ]apJO̓Ө;py󴽷i ۽s;6UgT2}~_}*9ZrYc!ټy|J]M;\KZrY]{}]c!?kN+@ìq,uڂ~9'K1Q+_aB'fxvf~Y%NѐuA8R!hx8[ClB^fONr.e8tdC<9##vٹk}CJFm֭2p89؛ud[3P,$4%>7+Wt_`"URz'~C:ږM^oK1lG +l_q+NJm(ώR\SU x=Dq~am2;~Cw VSs~ul>_a&_яaM;v`z؀d5frǦm«{МYR7<~o_yhjƗ7d~M%d]x!Q?c|}IE +'fE/-m?%ݻ\mឍk"5% IDATEp9L=9/dBF$swGKF8б`񪫯ᄎvF +-+ܷL{=8d8Ͽ4F$iF'T:M-!s/#v!+.;oMr}co3*U5+]cVPbâ^nR8]^na ٬c25SbR޷Qd ̑~җo5gP˶Ia +b^Dsvґ{6zpMşm"RYA~v̾e+6uk)\X]w\W^$tH7JHxndHWo IHw\y;~7ˏP(I$菠eR3CQ|= e1Xwǿk;?D}gJ%+~cx[ec]1UL^>! \| l{eK-b!#-jaQ.3s%4dfU8v/5 LmbI@v1=L?f??Bj^(pUUXZ֘-9PAT,[g6S8ildr'_?w;]9>ЍvnAow 0qxmË-#n瑩k67ް/X-$S\~='Vh ')_6%w0䡽ŏf۴Q,'Hw`2>Yh.\n/Wzu'~iY&O%2Ѱ;lF.nCK5A-LOU X5e RA%+27@k)6xك|F=g>{CEnu}BWO K'P5BkwK:ɲ>hA17>x͎y[?tg?96:6G%{2Qt Ӊm;y#U!w7n8v?Glu 4g_NSVYhy/l5xrQEsapqAْ0mLx{=<+E9W`z:/$SE}o~C( \q ~a\zM]5SSSIaQ u8Wznb@_`o -/*\y\Ph+đEWx1~LkK]dJYTB%E\/c :4HY8gŕ[TGLr(vS/pda#qY6Fg[ Co{E%Tq& ӤhҬ \ f5|C?9ۨ^Qhk mHpnFt.!Q(eS3{[ZЁ%?w9dKB ."*"Nf2ضDgiPGO[oep:x<>dɁiyMį0vrbܶӡ7Dg1lrN9|lú5q-YFL + L}(=afg2%nW\Oi\,1OsUT*sZG89Ux-rQBe Ń,IX&Kb%JE@ K|;94!GKG(UrDUX'fR٣(jrXKWR)hjLg$}W./LJ\*NOw MRՠŏ,KD[h,[khF/l SDEv%۩MYlI'g l.rzlݲOUz}z3hY5Qd76vq^::vlS$a,l܎&oU+Y6"`H,sώj?qdt m)eZn{h :nt缍8"v QEpJMtrdQF-xA˶MAd <:a8<. *hԴШk-›'to9v5ɮƩXd*#z ɩ<^\@XAoD2G˱{ñmgJNY^tl&-:#&N٤4!:NYטLپgK/ vML/W$盦X1 \j ?}v[q8ej5C/S(W1a-}M}Nݺ%F)Z,)=[6 ۴%[8}~" /xԩltEa^Z"Ad}Oql89у‚ lO~",YD{8ޖ[;vWooKx[=}[-rBv?y .%.*JO45}}i8ۑr;gM,g9Yu 1IENDB` \ No newline at end of file diff -uraN gimp-2.2.0/plug-ins/script-fu/scripts/asc2img.scm gimp-2.2.1/plug-ins/script-fu/scripts/asc2img.scm --- gimp-2.2.0/plug-ins/script-fu/scripts/asc2img.scm 2004-11-18 23:44:28.000000000 +0100 +++ gimp-2.2.1/plug-ins/script-fu/scripts/asc2img.scm 1970-01-01 01:00:00.000000000 +0100 @@ -1,257 +0,0 @@ -; Chris Gutteridge / ECS Dept. University of Southampton, England -; "ASCII 2 Image" script for the Gimp. -; -; 8th April 1998 -; -; Takes a filename of an ASCII file and converts it to a gimp image. -; Does sensible things to preserve indents (gimp-text strips them) -; -; cjg@ecs.soton.ac.uk - -; This program is free software; you can redistribute it and/or modify -; it under the terms of the GNU General Public License as published by -; the Free Software Foundation; either version 2 of the License, or -; (at your option) any later version. -; -; This program is distributed in the hope that it will be useful, -; but WITHOUT ANY WARRANTY; without even the implied warranty of -; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -; GNU General Public License for more details. -; -; You should have received a copy of the GNU General Public License -; along with this program; if not, write to the Free Software -; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -; Define the function: - -(define (script-fu-asc-2-img inFile - inFont - inFontSize - inTextColor - inTrans - inBackColor - inBufferAmount) - - (let* ( - (theImage (car (gimp-image-new 10 10 RGB) ) ) - (theLayer (car (gimp-layer-new theImage - 10 - 10 - RGBA-IMAGE - "layer 1" - 100 - NORMAL-MODE) ) ) - (theImageWidth 0) - (theImageHeight 0) - (theBuffer) - ) - - (gimp-context-push) - (gimp-context-set-background inBackColor) - (gimp-drawable-set-name theLayer "Background") - (gimp-image-add-layer theImage theLayer 0) - - (script-fu-asc-2-img-layer theImage theLayer inFile inFont inFontSize - inTextColor inBufferAmount) - - (set! theImageWidth (car (gimp-drawable-width - (car (gimp-image-get-active-layer theImage))))) - (set! theImageHeight (car (gimp-drawable-height - (car (gimp-image-get-active-layer theImage))))) - (set! theBuffer (* inFontSize (/ inBufferAmount 100) ) ) - (set! theImageWidth (+ theImageWidth theBuffer theBuffer )) - (set! theImageHeight (+ theImageHeight theBuffer )) - - (gimp-image-resize theImage theImageWidth theImageHeight theBuffer theBuffer) - (gimp-layer-resize theLayer theImageWidth theImageHeight theBuffer theBuffer) - - (gimp-selection-all theImage) - (if (= inTrans TRUE) - (gimp-edit-clear theLayer) - (gimp-edit-fill theLayer BACKGROUND-FILL) - ) - (gimp-selection-none theImage) - - (gimp-display-new theImage) - - (gimp-displays-flush) - (gimp-context-pop) - ) -) - -(define (script-fu-asc-2-img-layer inImage - inLayer - inFile - inFont - inFontSize - inTextColor) - - (let* ( - (theImage inImage) - (theLayer inLayer) - (theFile (fopen inFile)) - - (otherLayers (cadr (gimp-image-get-layers theImage))) - (nLayers (car (gimp-image-get-layers theImage))) - (n nLayers) - (theImageWidth 0) - (theImageHeight 0) - (theData) - (theIndentList) - (theChar) - (allspaces) - (theIndent) - (theLine) - (theChar) - (theText) - (theCharWidth) - ) - - (define (cjg-add-text inData inIndentList inFont inFontSize) - (if (equal? () inData) - () - (let ( - (theLine (car inData)) - (theIndent (car inIndentList)) - (theLineHeight 0) - (theText) - ) - - (if (equal? "" theLine) - () - (begin - (set! theText (car (gimp-text-fontname inImage - -1 - 0 - 0 - theLine - 0 - TRUE - inFontSize - PIXELS - inFont))) - (set! theLineHeight (car (gimp-drawable-height theText))) - (gimp-layer-set-offsets theText - (* theCharWidth theIndent) - (+ theImageHeight - (- inFontSize theLineHeight))) - (set! theImageWidth (max - (+ (car (gimp-drawable-width theText)) - (* theCharWidth theIndent)) - theImageWidth )) - (if (= (car (gimp-layer-is-floating-sel theText)) TRUE) - (gimp-floating-sel-anchor theText) - ) - (gimp-drawable-set-name theText theLine) - ) - ) - - (cjg-add-text (cdr inData) (cdr inIndentList) inFont inFontSize) - ) - ) - ) - - (gimp-context-push) - (gimp-context-set-foreground inTextColor) - (gimp-selection-none theImage) - (set! theData ()) - (set! theIndentList ()) - (set! theChar "X") - (while (not (equal? () theChar)) - (set! allspaces TRUE) - (set! theIndent 0) - (set! theLine "") - (while (begin - (set! theChar (fread 1 theFile)) - (and (not (equal? "\n" theChar)) - (not (equal? () theChar)) - ) - ) - (cond - ( - (equal? theChar "\t") - (set! theChar " ") - (if (= allspaces TRUE) - (set! theIndent (+ theIndent 8)) - ) - ) - ( - (equal? theChar " ") - (if (= allspaces TRUE) - (set! theIndent (+ theIndent 1)) - ) - ) - (TRUE (set! allspaces FALSE)) - ) - (set! theLine (string-append theLine theChar)) - ) - (if (= allspaces TRUE) - (set! theLine "") - ) - (if (and (equal? () theChar) - (equal? "" theLine) - ) - () - (begin - (set! theData (cons theLine theData)) - (set! theIndentList (cons theIndent theIndentList)) - ) - ) - ) - - (set! theText (car (gimp-text-fontname theImage - -1 - 0 - 0 - "X" - 0 - TRUE - inFontSize - PIXELS - inFont))) - (set! theCharWidth (car (gimp-drawable-width theText))) - (gimp-edit-cut theText) - - (cjg-add-text (reverse theData) (reverse theIndentList) inFont inFontSize) - - (gimp-context-pop) - (gimp-displays-flush) - ) -) - -; Register the function with the GIMP: - -(script-fu-register "script-fu-asc-2-img" - _"_ASCII to Image..." - "Create a new image containing text from a simple text file" - "Chris Gutteridge: cjg@ecs.soton.ac.uk" - "8th April 1998" - "Chris Gutteridge / ECS @ University of Southampton, England" - "" - SF-FILENAME _"Filename" "afile" - SF-FONT _"Font" "Bitstream Charter" - SF-ADJUSTMENT _"Font size (pixels)" '(45 2 1000 1 10 0 1) - SF-COLOR _"Text color" '(0 0 0) - SF-TOGGLE _"Transparent background" FALSE - SF-COLOR _"Background color" '(255 255 255) - SF-ADJUSTMENT _"Buffer amount (% height of text)" '(35 0 100 1 10 0 0)) - -(script-fu-menu-register "script-fu-asc-2-img" - _"/Xtns/Script-Fu/Utils") - -(script-fu-register "script-fu-asc-2-img-layer" - _"_ASCII to Layer..." - "Create a new layer of text from a simple text file" - "Chris Gutteridge: cjg@ecs.soton.ac.uk" - "30th April 1998" - "Chris Gutteridge / ECS @ University of Southampton, England" - "*" - SF-IMAGE "Image" 0 - SF-DRAWABLE "Layer" 0 - SF-FILENAME _"File name" "afile" - SF-FONT _"Font" "Bitstream Charter" - SF-ADJUSTMENT _"Font size (pixels)" '(45 2 1000 1 10 0 1) - SF-COLOR _"Text color" '(0 0 0)) - -(script-fu-menu-register "script-fu-asc-2-img-layer" - _"/Script-Fu/Utils") diff -uraN gimp-2.2.0/plug-ins/script-fu/scripts/Makefile.am gimp-2.2.1/plug-ins/script-fu/scripts/Makefile.am --- gimp-2.2.0/plug-ins/script-fu/scripts/Makefile.am 2004-10-13 14:58:51.000000000 +0200 +++ gimp-2.2.1/plug-ins/script-fu/scripts/Makefile.am 2004-12-27 20:42:16.000000000 +0100 @@ -15,7 +15,6 @@ alien-glow-button.scm \ alien-glow-logo.scm \ alien-neon-logo.scm \ - asc2img.scm \ basic1-logo.scm \ basic2-logo.scm \ beveled-button.scm \ diff -uraN gimp-2.2.0/plug-ins/script-fu/scripts/Makefile.in gimp-2.2.1/plug-ins/script-fu/scripts/Makefile.in --- gimp-2.2.0/plug-ins/script-fu/scripts/Makefile.in 2004-12-18 00:44:57.000000000 +0100 +++ gimp-2.2.1/plug-ins/script-fu/scripts/Makefile.in 2004-12-27 20:49:35.000000000 +0100 @@ -382,7 +382,6 @@ alien-glow-button.scm \ alien-glow-logo.scm \ alien-neon-logo.scm \ - asc2img.scm \ basic1-logo.scm \ basic2-logo.scm \ beveled-button.scm \ diff -uraN gimp-2.2.0/plug-ins/script-fu/scripts/weave.scm gimp-2.2.1/plug-ins/script-fu/scripts/weave.scm --- gimp-2.2.0/plug-ins/script-fu/scripts/weave.scm 2004-11-18 23:44:28.000000000 +0100 +++ gimp-2.2.1/plug-ins/script-fu/scripts/weave.scm 2004-12-27 20:42:16.000000000 +0100 @@ -400,7 +400,7 @@ SF-ADJUSTMENT _"Shadow depth" '(75 0 100 1 10 1 1) SF-ADJUSTMENT _"Thread length" '(200 0 256 1 10 1 1) SF-ADJUSTMENT _"Thread density" '(50 0 100 1 10 1 1) - SF-ADJUSTMENT _"Thread intensity" '(100 0 512 1 10 1 1)) + SF-ADJUSTMENT _"Thread intensity" '(100 0 100 1 10 1 1)) (script-fu-menu-register "script-fu-weave" _"/Script-Fu/Alchemy") diff -uraN gimp-2.2.0/po/ca.gmo gimp-2.2.1/po/ca.gmo --- gimp-2.2.0/po/ca.gmo 2004-12-19 03:11:53.000000000 +0100 +++ gimp-2.2.1/po/ca.gmo 2004-12-28 16:58:41.000000000 +0100 @@ -1,127 +1,124 @@ -l'N0i1i&GiGni9iGiA8jNzjij<3kkpk@k2l;PlPlOl2-m9`m-m9m;n7>n vn nn -nnn -nnnnoo3o0:oko|oooooo o oKo'p.p1pqq,q ->q Iq -Uq`q uqqq -qqqqq*q6rTrqrrrrrrr s"s6sJsds -ssssss s ss1u34uhunuuuu u -uuuAuJ$v<ovvvvvvvww -&w1wJw&aw$wwwwww"w wwx xxx-x>xRx7fx x xxxx x xx xxy yy 0y>yCEy7y=y@y6@zdwzzz3{D{<X{#{!{{{ | |(|1|I|a|y|,||| || }"}7}@} I}W}k} q}.}5}5}8~)S~,}~~~2~ 7ROnA%&&4M1# ؀+1@ FT jw0ȁ+ 5H[d -mxς  Ճ#, ->I -h)s,##"!F%hȅۅ#-(V%l ņӆ - -" 1 ->I-P~ %!ч  !3BRj -- ҈ވ  -  9ATg  ? % -; F R -_ j v -  Ê>ъ0@E]p  ыߋ -  ' -3>*O.zŌ#Ό"2&Q x,#΍ '4\yȎFT)~ Ϗ  += C$O=t6<A&7h9cڑ9>Bx=f>`CJg.͔ ݔ ,>UeÕޕ   - * :H dp ŖҖږ -O -;Fۗ  -2 AN f su2cŚ )z6r2IRdt&'   '-4 9FUgm~ Ɲ͝ ՝  -H Waq -yH!͞B261Ew| -`0*0 -B -MXo ɠ -נH+ 2>M \i á  #=So s 36Т  8L$[ ߣ(+))U*!/̤*#N-W  ȦԦ3ڦ/ G Taק '@/p-w ըܨ  # :H `l - ө - 8U] -d o |ƪ  $6[m -ƫ -ѫܫ <X_ -h s ¬ Ӭ, !8)UíB֭A[bq 5DL -U`w"!ٯ , 6@P _mVu+̰"! 7C]%u -ѱ -  & 0> DQVf -IJ̲ -ܲ  ". C!Oq ?#3Pm4DM-U  #-Զ   7@ $-3I ako ! ĸ˸ Ӹ  - 2NS Y!f!#ȹ 9U3=<Ǻ= BNRW(\, -Jӻ + : GTo ;Ѽ  ! 1 ?KS q{Žٽ+ . ; H T `l6 7;Ynu  Ϳٿ - - + -B MYk4E _ mz - -  -#.C S`{ -D ] kx0=I6SJ ]gx  /CYs)oNK=4r*?!`a24/  * ?K[ ly +?D+Jv|   8v !/He  # < JTcw -| -175HK;!*]BS 5'10 0:1kCSb,2 A7Ay* \S2p - - -:L \io   -*5:;C;  3CYhnuF KQc$N5sPG-BjpoeKj~po w|tti`?IOU\n 6o4;#CgG0x -   #& E fsz}     !'0F ^ -kv| - -5 $ ,: Op -   . <9Y)VC-RqRe~}Cs@N:=>b|R=2Bp2F<-@j -   )Ii8  %, 1 >]KK7<   8E bp.<O"m""1Lg - " -'774o 4      -  - & -0 -L -<[ -I -; - / L h  -o z      + * 9 A H O V 3_          3 P c x          - !" -6UAFND-8ru#!$EAjK;*Mx  -)Eou  "@4DuJ</B-r#=$ E^{N6W7HF1V!'##4X#l:" 4Qey  -1!">P Yc  - $&K#g+ -8G3d(() -.4)c /5M"e!' &. -U `l|6  4 '> f z      # !1!J!6S! !!! !! ! !!"",""K"n" u""""@"" ### &# G#U#g#z##### -####\ $!i$($$$$&$ % -8%C%\%y%%%% -% -% -%%+ -&<6&;s&&+&&/&.'H'd'k' }'('(''''1(BC()()(*(5)+;)[g)h),*3*K* _*k*(*,***+2+!B+2d+_+]+kU,n,`0-^--Q.U/id//ea0g0p/11?2Q2g2~22222 23343D3c33*33334 44 -4;4S4i444444444505@5RV5 -55g666666666 -7 7/7G7 `7789~!::o:!;';/;;;;;<<.2<*a<< < <<<<<<<<==3=8=M=Q=k========= == -> > #> ->W9>.>F>? -?4?M?Q?X? -`?k?mq?1?@@ 1@>@#P@t@,@@!@@AgAA AAA AAAA B B,B4BTB\B dBrBB%B$B&BCC5CGCSWCDCC DD1DFDUDlDDD,D6DEEFaEDEEE)3FH]F FFF-F -GNGbH uHHHH HHPHI+ICIcIuI$I$III J%J +J7JRJ lJMvJJ7JK K(KEKLKTKgK+wK -K K$KKK LL.L&>LeLmLvLLLLLLLLMM8MAMHM]MoM~MMMM!M NN)N0N5N;N2VNNNNNNN N O O O"O :ODOUOtO!OO O -O OOO P P P'P@P<OPPP.P5P%*QPQTQiQpQQJQJQ /R=RMRfRuRRRR1SFS OS YSeS(S/S(S&T*THT eT oTyTTT -TTe^UU)UUV"#VFV/eVVVVVVVVW WW 2Wf4gKg[gQlg7gg h h h -,h7hLhhhzhhh -hhhh#hh ii-i2Ji,}ii+iiKjPj`jujjjjj jjjjkk!k4kKk]k}kk k&k k" l/lBlbl!l$lllmm*m-Gmum!m!m$mm n"4nIWn@n\nV?o ooo!o oo -pp3p Hp'Up}pp%p!pq! qBq_q74rtlrPr<2sos-tA3txutEt4u:wOVxKxxyyyyyyyz%z;zPz#iz zzz z9z+{,K{x{{%{{{{<{(|.|N|S|d|i|x|||||@|u| -^}i}(q}'}} }!~%~%C~#i~~ -~~#~~~ ~  (5 IUt -  <>.9mXB%CiW;EK!Ʌz',>.Ds-k-+Lj,N oc 2q3b؊V;X;' 5C(ؑdM&t!)71i*˜ ՘4HN -ju&™  -,7=DFE -њܚ -  -' 2 <9I)›ț(ϛT -+_ Yj^4A:W|}ԞRyn[aZ{Fn¢1}|?`t.4<EYrPۦbg+mCoӨ ܨ"#*Ncr - ȩ'˩, -69Ney  Ъ Ӫ  1 G -T_ -h -s~ -B'"9AJ R_+~- ج  - -  -+6;APCc,'^vGPg;dgaZS%k ;2bUTL!t}wl>au=9 .%mJXsupu~LG&eFGD5Fk2vNjO,X3Heg7:V {f]H( zpg,'@QO7#K77ci+>n{;^P0}A)_A[ )k9eN-hE ,,6q$<hXjp$89 -L))$#qC6?\`ST4bA$%Q]) xVQ aSI* Ehs!cqzH Jv53Q.#`3?KtYW[C 9M]XrXif}E+ -0 -mNz3ir [hBU!-?!~ADYr]Pj}- .| %YRo -I<R `CvF*y.y>/ /(ow[?aV5/5hY LpM!WB OES6~V@{=4D*kv\n2|Fg:7<tOx"IMT(p2tBSl0^c";i4IJ&(=wbR|Z"BU<j`^. /~H+JyMzz]n:PBdLC;o6Tqc3e ACm +r"&n4b[1OR|lHf1w{wM'=x0dsc8Wf`?&jk{'%:_ssy8|Qn"lb:_/Dde E6mxo$d(tuGK^N+Z&Ui2@@@r#\JIG>*\Y\qW1m#K_f81NP=1- -UK~DuZ<T8xa}R*Z -9l5> '4yWo0_VF +&yMgg&gGg9hGPhAhNhi)i<iki@ +])h,ق##!;%]Ѓ#-K%a Ȅ + + & +3>-Esz ~%!ƅ  (7G_| +- džӆ چ + .6I\v  ?  +0 ; G +T _ k +u  >,1I\u  ˉۉ*.Ap#"܊& ?K_,h# ΋'#@]sFTELb u ԍ +=6T<AȎ7 +9Bc|9B=]f>CAJgБ8HZo  Β"?Fe  + “̓ ܓ ">RX_ gt| +O +ݔ}  •ϕԕ   "3Gu^Ԗcg ˘zؘSYraԙ+&<'c  ɚϚ֚ ۚ  $>U ^ho w  +H  +H&!oBԜ؜1# +*5`:0̝ҝ + +!@S k +yH͞ Ԟ  ! 6 D Q]e  şߟ  # 03>6r  ڠ$"= R ` (+ˡ)*!!L/n*Ţ- 9 LV\l |3¤Ӥ 3Rr ǥۥ@$-+Y ^k  ˦צ   +6AV^go  +ǧϧ  + # 0>Sgz èɨΨԨ$!5DS[ ` m +z + ҩ  + '3E Y cmv ,ժ) 3KP_fwBAͫ% 5BT\d + +K"j!ȭ  V+q Ů߮% +(0?S +cn}   Ưӯد#5 +;FN +^i r  Ű!Ѱ +2?:zұ4Ʋϲ-ײ  (#2-V ´h| ˵   ! 8FM Uc x +жն ۶! +!(#J n9{U= <I= ĸиԸٸ(޸, +4?JU  ɹֹ ;S b o{  ͺպ 5G[+n ʻ ֻ 62iq x7ۼ  1 O[pv +|  +Ľ Ͻ۽4;XkE   ( 4 +@Kh +p{ +ſ տ) ?Kby !1Ke=6 S@J  #/>Sf z()NVKj=*x?`D4/,\%,4DV\y   1APaz+   +8"v[ !":Vq "+ 4@Q#Z ~ + +175IH;!&*B + 5%[0 1<CnS3,2 AAJ*c Q^-|$hQ2At - +   -:@ Was + ;;P  3*9?FclFu KQ4$5DPzG-jAoej~plowMtt:` &-? P6^o #8GI`irz +     1>AQ cq     +&17 +@KORV]b5f    +@ KW[chnt {  .< F)_VCR$Rwe~0CsNg:Fb8R=B,2oD<@$enw + !78= v   ]cK6= t   $4I_~.<"!D"Mp"7N +l w " +?24K  <I8;   +$ / D X k p  , *     + +3 +J +^ +c +i +r + + + + +3 +  / G P Y h o      + !   + V FT N D u/ # $ @ /KH;*  = MW_w)=\nu |@DG>=>+/#MGq$V57-QeO19!J$l##:<w ~$ 4+ : +DO!a Y b +p{$# &-? +m8x5&$)K)u.) +>1R5$! /8'Rz& + 6 :GOjou}4'$BTk#6  /; J Vd#   5 @>     !     !!,!,>F>!`>>>g>? ?&?uddddQd7De|ee e e +eeeeff!f +'f2f7fOf#_ff fff=f,g;g+WggKgggh$h+h;hLh [hhhhhhhhhhhi$i 5i&Vi }i"iiii!j$4jYjwjjjj&jj"k!3k$Ukzkk"kJkA%l]glWl m'm;m!Qm smmmmm m'mnn%;n!ann#nn8otoHpPHq<qq-`rArxrIsLuPhvJvwwwwwww xx2xHx]x#vx xxxx9x%2y,Xyyy%yyyy<y5z;z[z`zszxzzzzzAzuz +^{i{(q{'{{#{!|(|%F|#l|| +||#||| | } "} ,}9} M}Y} +x}}}} } }}}<}>#~9b~X~B~%8^LD QR!܃*/A.Gv+n,Ndže23MbVX;;ЊƋ ތюI MϑʓҔ<ڕ4*<gp ˖ +"6Tg&x Ɨӗ +DEA + + +ܘ  9&8_tz(T+ =ZKj5AW0}(y/n[at֟{bnޠM}ޡy\`֢u7NT\eyP{,K$զ .Jg| +ħ ϧۧ+ާ/ + :GJ`x  ¨ʨӨ  +'> W +do x +D'*AIR Zg.-  # ++ +6AFL[Cn%z)SG+!Dm].3%;ZoUWYj{%BQH=7}HZcAQ +`bb[ +w{64o#%KmAR .T0">L.{rd4*|gNEg]di?CqX\5}on2f1Z9EtP :iV@r+eB"^-] K@(ewq[HL */j~z*wj6uFs;!,1_sPI(xvk/8:Z,7<F+UvSmxRXcu28|T3*v]kfA,=G'\<Y|=04Q!c&6k 5 _J6F.u;\H]E^oX %UWs: !Ubf%v|  b8h&/2\3>pT}RNDW;5 ->JGr  f@9h{'$$yBeEy=dTyMpMv*>-w^4DnhPt?~YJlpb91pn)0_Q~' +InA)re&Zt5QKJVBH"jN->(@8Xh\#3VElM CN/7[dYta3#):(`0n"Sk.ga i)TW~acOMw-+| ~yIl?e9S9z pVK[gi,jCBlgf < }y5^7Fx; XNV<qr +O`s O"qOD#[@aSJ6I$7u(:/a<8$}12R {lzxL$z A_2G`mC?!CI?D0&1tFMYWkxL=_^qmLPhGsi& +,ucd`PoR+K ' OU#4' Invalid option "%s" Usage: %s [option ... ] [file ... ] @@ -151,23 +148,23 @@ (Unnamed Buffer)(Unnamed Template)(invalid UTF-8 string)(none)1 Layer1 layer<%s><>For optimal GIMP performance, some settings may have to be adjusted.The GIMP - GNU Image Manipulation Program Copyright (C) 1995-2004 Spencer Kimball, Peter Mattis and the GIMP Development Team.The GIMP tips file could not be parsed!Your GIMP tips file appears to be missing!About The GIMPActive FiltersAdd Alpha ChannelAdd AnchorAdd ChannelAdd GuidesAdd Horizontal GuideAdd LayerAdd Layer MaskAdd PathAdd StrokeAdd Text LayerAdd Vertical GuideAdd a Mask to the LayerAdd text to the imageAdd the current color to the color historyAdd the selected filter to the list of active filters.Add to the current selectionAdding theme '%s' (%s) -AdditionAdjust Brightness and ContrastAdjust Color BalanceAdjust Color CurvesAdjust Color LevelsAdjust brightness and contrastAdjust color balanceAdjust color curvesAdjust color levelsAdjust hue and saturationAdjust levels automaticallyAdjustmentAffect:Affected Area %sAirbrushAirbrush with variable pressureAlignedAlignmentAll ChannelsAll image and undo data which doesn't fit into the Tile Cache will be written to a swap file. This file should be located on a local filesystem with enough free space (several hundred MB). On a UNIX system, you may want to use the system-wide temp-dir ("/tmp" or "/var/tmp").Allow completely transparent regions to be filledAllow completely transparent regions to be selectedAlphaAlpha to SelectionAlpha:Anchor Floating SelectionAngle:AntialiasingAppearanceApply Layer MaskApply ThresholdAre you sure you want to delete '%s' from the list and from disk?Are you sure you want to delete template '%s' from the list and from disk?Ask for confirmation before closing an image without saving.Attach ParasiteAttach Parasite to ImageAttach Parasite to ItemAuthor:AutoAutoloadAvailable FiltersAvailable Types:BackgroundBackground color set to:Background: %d, %d, %dBase filled area on all visible layersBase selection on all visible layersBehindBevelBlack:BlendBlend: Blend: Invalid for indexed images.Blending...BlueBlue:BlurBlur or SharpenBorder ChannelBorder SelectionBorder selection byBrightness-ContrastBrightness-Contrast does not operate on indexed layers.Brush EditorBrush FoldersBrush UIBrush:BrushesBrushes MenuBucket FillBuffersBuffers MenuBurnCMYKC_olumns:Calibrate Monitor ResolutionCan't undo %sCancelCannot add layer mask of different dimensions than specified layer.Cannot add layer mask to a layer with no alpha channel.Cannot add layer mask to layer which is not part of an image.Cannot anchor this layer because it is not a floating selection.Cannot convert to a palette with more than 256 colors.Cannot create a new layer from the floating selection because it belongs to a layer mask or channel.Cannot create folder '%s': %sCannot create previewCannot crop because the current selection is empty.Cannot expand ${%s}Cannot float selection because the selected region is empty.Cannot raise a layer without alpha.Cannot save. Nothing is selected.Cannot stroke empty channel.Cannot stroke empty path.Canvas SizeCenter X:CenteredChange Background ColorChange Foreground ColorChange Image ResolutionChange Image UnitChange perspective of the layer or selectionChannelChannel AttributesChannel Name:Channel cannot be lowered more.Channel cannot be raised higher.Channel to SelectionChannel:ChannelsChannels MenuChoose Stroke StyleClearClear ChannelClick "Continue" to accept the settings above.Click "Continue" to create your personal GIMP folder.Click "Continue" to enter the GIMP user installation.Click to connect this anchor with the selected endpoint.Click to create a new anchor. (try SHIFT)Click to create a new component of the path.Click to create a new path.Click to delete this anchor.Click to insert an anchor on the path. (try SHIFT)Click to make this node angular.Click to open up the path.Click to pick path to edit.Click to update preview -%s Click to force update even if preview is up-to-dateClick-Drag to change the shape of the curve. (SHIFT: symmetrical)Click-Drag to move the anchor around.Click-Drag to move the anchors around.Click-Drag to move the component around. (try SHIFT)Click-Drag to move the handle around. (try SHIFT)Click-Drag to move the path around.Click: selectClick: select Drag: moveClipped to bottom layerClipped to imageCloneClose this TabColorColor BalanceColor Display FiltersColor PickerColor Picker InformationColor balance operates only on RGB color layers.Color:Coloring _Type for SegmentColoring _Type for SelectionColorizeColorize operates only on RGB color layers.Colorize the ImageColorize the imageColormapColumns:Con_trast:Configure Color Display FiltersConfigure GridConfigure Image GridConfirm Image SizeConfirm Text EditingConnect StrokesConstantConstraintsContext-dependent cursors are cool. They are enabled by default. However, they require overhead that you may want to do without.ContinueContributions byConvertConvert EdgeConvert Image to GrayscaleConvert Image to IndexedConvert Image to Indexed ColorsConvert Image to RGBConvolveConvolve Type %sCopy NamedCopying file '%s' from '%s'...Copyright:Corrupt segment %d in gradient file '%s'.Could not create '%s': %sCould not create temporary file for '%s': %sCould not delete '%s': %sCould not open '%s' for reading: %sCould not open '%s' for writing: %sCould not open thumbnail '%s': %sCould not read %d bytes from '%s': %sCould not seek in XCF file: %sCount:Create New TemplateCreate a New ImageCreate a New LayerCreate a New TemplateCreate a new display for this imageCreate a new image from the selected templateCreate a new templateCreate and edit images or photographsCreate and edit pathsCreating folder '%s'...CropCrop & ResizeCrop & Resize InformationCrop ImageCrop LayerCrop or Resize an imageCrop: Crosshair onlyCubic (Best)Curve TypeCurvesCurves for indexed layers cannot be adjusted.CustomCutCut NamedCyanCyan:DashedDate:Default Appearance in Fullscreen ModeDefault Appearance in Normal ModeDefault GridDefault Image GridDelete AnchorDelete Layer MaskDelete SegmentDelete TemplateDelete saved options...Delete the selected templateDelete this imageDesaturateDesaturate operates only on RGB color layers.DescriptionDesignDevice StatusDevicesDialogs MenuDifferenceDirect ColorDiscard Text InformationDisplayDisplay NavigationDisplay proceduresDisplaying [%0.6f, %0.6f]DissolveDistance:Distance: %0.6fDitheringDivideDo you really want to reset all tool options to default values?Document HistoryDocumentsDocuments MenuDodgeDodge or Burn strokesDodge/BurnDrag AnchorDrag AnchorsDrag CurveDrag HandleDrag PathDrag: moveDraw in inkDrawableDrawable proceduresDrop New LayerDrop New PathDue to lack of any fonts, text functionality is not available.Duplicate the selected templateEEK: can't undoEditEdit Channel AttributesEdit Channel ColorEdit Color Palette EntryEdit Layer AttributesEdit ModeEdit Palette ColorEdit Path AttributesEdit TemplateEdit proceduresEdit the selected templateEllipse SelectEmpty ChannelEmpty LayerEmpty PathEmpty Text LayerEmpty variable name in environment file %sEnable to display a handy GIMP tip on startup.Enable to display tooltips.EnormousEnter a name for the merged paletteEnter a name for the saved optionsEnter a name for this bufferEnter a name for this templateEnter a new name for the saved optionsEnvironmentEnvironment FoldersEqualizeEqualize does not operate on indexed layers.Erase to background or transparencyEraserError ConsoleError Console MenuError saving XCF file: %sError while parsing '%s' in line %d: %sError while reading '%s': %sError while writing '%s': %sError writing XCF: %sError writing file '%s': +AdditionAdjust Brightness and ContrastAdjust Color BalanceAdjust Color CurvesAdjust Color LevelsAdjust brightness and contrastAdjust color balanceAdjust color curvesAdjust color levelsAdjust hue and saturationAdjust levels automaticallyAdjustmentAffect:AirbrushAirbrush with variable pressureAlignedAlignmentAll ChannelsAll image and undo data which doesn't fit into the Tile Cache will be written to a swap file. This file should be located on a local filesystem with enough free space (several hundred MB). On a UNIX system, you may want to use the system-wide temp-dir ("/tmp" or "/var/tmp").Allow completely transparent regions to be filledAllow completely transparent regions to be selectedAlphaAlpha to SelectionAlpha:Anchor Floating SelectionAngle:AntialiasingAppearanceApply Layer MaskApply ThresholdAre you sure you want to delete '%s' from the list and from disk?Are you sure you want to delete template '%s' from the list and from disk?Ask for confirmation before closing an image without saving.Aspect Ratio:Attach ParasiteAttach Parasite to ImageAttach Parasite to ItemAuthor:AutoAutoloadAvailable FiltersAvailable Types:BackgroundBackground color set to:Background: %d, %d, %dBase filled area on all visible layersBase selection on all visible layersBehindBevelBlack:BlendBlend: Blend: Invalid for indexed images.Blending...BlueBlue:BlurBlur or SharpenBorder ChannelBorder SelectionBorder selection byBrightness-ContrastBrightness-Contrast does not operate on indexed layers.Brush EditorBrush FoldersBrush UIBrush:BrushesBrushes MenuBucket FillBuffersBuffers MenuBurnButtCMYKC_olumns:Calibrate Monitor ResolutionCan't undo %sCancelCannot add layer mask of different dimensions than specified layer.Cannot add layer mask to a layer with no alpha channel.Cannot add layer mask to layer which is not part of an image.Cannot anchor this layer because it is not a floating selection.Cannot create a new layer from the floating selection because it belongs to a layer mask or channel.Cannot create folder '%s': %sCannot create previewCannot crop because the current selection is empty.Cannot expand ${%s}Cannot float selection because the selected region is empty.Cannot raise a layer without alpha.Cannot save. Nothing is selected.Cannot stroke empty channel.Cannot stroke empty path.Canvas SizeCenter X:CenteredChange Background ColorChange Foreground ColorChange Image ResolutionChange Image UnitChange perspective of the layer or selectionChannelChannel AttributesChannel Name:Channel cannot be lowered more.Channel cannot be raised higher.Channel to SelectionChannel:ChannelsChannels MenuChoose Stroke StyleClearClear ChannelClick "Continue" to accept the settings above.Click "Continue" to create your personal GIMP folder.Click "Continue" to enter the GIMP user installation.Click to connect this anchor with the selected endpoint.Click to create a new anchor. (try SHIFT)Click to create a new component of the path.Click to create a new path.Click to delete this anchor.Click to insert an anchor on the path. (try SHIFT)Click to make this node angular.Click to open up the path.Click to pick path to edit.Click to update preview +%s Click to force update even if preview is up-to-dateClick-Drag to change the shape of the curve. (SHIFT: symmetrical)Click-Drag to move the anchor around.Click-Drag to move the anchors around.Click-Drag to move the component around. (try SHIFT)Click-Drag to move the handle around. (try SHIFT)Click-Drag to move the path around.Click: selectClick: select Drag: moveClipped to bottom layerClipped to imageCloneClose this TabColorColor BalanceColor Display FiltersColor PickerColor Picker InformationColor balance operates only on RGB color layers.Color:Coloring _Type for SegmentColoring _Type for SelectionColorizeColorize operates only on RGB color layers.Colorize the ImageColorize the imageColormapColumns:Con_trast:Configure GridConfigure Image GridConfirm Image SizeConnect StrokesConstantConstraintsContext-dependent cursors are cool. They are enabled by default. However, they require overhead that you may want to do without.ContinueContributions byConvertConvert EdgeConvert Image to GrayscaleConvert Image to IndexedConvert Image to Indexed ColorsConvert Image to RGBConvolveConvolve Type %sCopy NamedCopying file '%s' from '%s'...Copyright:Corrupt segment %d in gradient file '%s'.Could not create '%s': %sCould not create temporary file for '%s': %sCould not delete '%s': %sCould not open '%s' for reading: %sCould not open '%s' for writing: %sCould not open thumbnail '%s': %sCould not read %d bytes from '%s': %sCould not seek in XCF file: %sCount:Create New TemplateCreate a New ImageCreate a New LayerCreate a New TemplateCreate a new display for this imageCreate a new image from the selected templateCreate a new templateCreate and edit images or photographsCreate and edit pathsCreating folder '%s'...CropCrop & ResizeCrop & Resize InformationCrop ImageCrop LayerCrop or Resize an imageCrop: Crosshair onlyCubic (Best)Curve TypeCurvesCurves for indexed layers cannot be adjusted.CustomCutCut NamedCyanCyan:DashedDate:Default Appearance in Fullscreen ModeDefault Appearance in Normal ModeDefault GridDefault Image GridDelete AnchorDelete Layer MaskDelete SegmentDelete TemplateDelete saved options...Delete the selected templateDelete this imageDesaturateDesaturate operates only on RGB color layers.DescriptionDesignDevice StatusDevicesDialogs MenuDifferenceDirect ColorDiscard Text InformationDisplayDisplay NavigationDisplay proceduresDisplaying [%0.6f, %0.6f]DissolveDistance:Distance: %0.6fDitheringDivideDo you really want to reset all tool options to default values?Document HistoryDocumentsDocuments MenuDodgeDodge or Burn strokesDodge/BurnDrag AnchorDrag AnchorsDrag CurveDrag HandleDrag PathDrag: moveDraw in inkDrawable proceduresDrop New LayerDrop New PathDue to lack of any fonts, text functionality is not available.Duplicate the selected templateEEK: can't undoEditEdit Channel AttributesEdit Channel ColorEdit Color Palette EntryEdit Layer AttributesEdit ModeEdit Palette ColorEdit Path AttributesEdit TemplateEdit proceduresEdit the selected templateEllipse SelectEmpty Text LayerEmpty variable name in environment file %sEnable to display a handy GIMP tip on startup.Enable to display tooltips.EnormousEnter a name for the merged paletteEnter a name for the saved optionsEnter a name for this bufferEnter a name for this templateEnter a new name for the saved optionsEnvironmentEnvironment FoldersEqualizeEqualize does not operate on indexed layers.Erase to background or transparencyEraserError ConsoleError Console MenuError saving XCF file: %sError while parsing '%s' in line %d: %sError while reading '%s': %sError while writing '%s': %sError writing XCF: %sError writing file '%s': %sError writing to '%s': %sError writing to temporary file for '%s': %s No file has been created.Error writing to temporary file for '%s': %s -The original file has not been touched.ErrorsExpanded as necessaryExport Path to SVGExposure:Extended Input DevicesFG to BG (HSV clockwise hue)FG to BG (HSV counter-clockwise)FG to BG (HSV)FG to BG (RGB)FG to TransparentFG/BGFG/BG ColorFailed to import paths from '%s': %sFatal parse error in brush file '%s': File appears truncated.Fatal parse error in brush file '%s': File is corrupt.Fatal parse error in brush file '%s': Not a GIMP brush file.Fatal parse error in brush file '%s': Unknown GIMP brush version.Fatal parse error in brush file '%s': Unknown depth %d.Fatal parse error in brush file '%s': Unknown version %d.Fatal parse error in brush file '%s': Unsupported brush depth %d +The original file has not been touched.ErrorsExpanded as necessaryExport Path to SVGExposure:Extended Input DevicesFG to BG (HSV clockwise hue)FG to BG (HSV counter-clockwise)FG to BG (HSV)FG to BG (RGB)FG to TransparentFG/BGFG/BG ColorFatal parse error in brush file '%s': File appears truncated.Fatal parse error in brush file '%s': File is corrupt.Fatal parse error in brush file '%s': Not a GIMP brush file.Fatal parse error in brush file '%s': Unknown GIMP brush version.Fatal parse error in brush file '%s': Unknown depth %d.Fatal parse error in brush file '%s': Unknown version %d.Fatal parse error in brush file '%s': Unsupported brush depth %d GIMP brushes must be GRAY or RGBA.Fatal parse error in gradient file '%s': File is corrupt.Fatal parse error in gradient file '%s': Not a GIMP gradient file.Fatal parse error in palette file '%s': Missing magic header.Fatal parse error in palette file '%s': Missing magic header. Does this file need converting from DOS?Fatal parse error in palette file '%s': Read error in line %d.Fatal parse error in pattern file '%s': Could not read %d bytes: %sFatal parse error in pattern file '%s': Unknown pattern format version %d.Fatal parse error in pattern file '%s: Unsupported pattern depth %d. GIMP Patterns must be GRAY or RGB.Feather ChannelFeather SelectionFeather selection byFile OperationsFill ChannelFill Opacity:Fill Type %sFill with BG ColorFill with FG ColorFill with PatternFill with TransparencyFill with WhiteFill with a color gradientFill with a color or patternFilledFinal, Merged Layer should be:Finding Contiguous RegionsFinding Similar ColorsFlatten ImageFlipFlip ChannelFlip LayerFlip PathFlip Text LayerFlip Type %sFlip the layer or selectionFlipping...Float SelectionFloating Selection to LayerFloating selectionsFocusFolderFoldersFont FoldersFont UIFontsFonts MenuFor a proper GIMP installation, a folder named '%s' needs to be created.ForegroundForeground & background colors. The black and white squares reset colors. The arrows swap colors. Double click to open the color selection dialog.Foreground color set to:Foreground: %d, %d, %dFree SelectFreehandFuzzy SelectGIMPGIMP ExtensionGIMP MessageGIMP Performance TuningGIMP Plug-InGIMP StartupGIMP Text EditorGIMP Tip of the DayGIMP User InstallationGIMP could not initialize the graphical user interface. Make sure a proper setup for your display environment exists.GIMP is not properly installed for the current user. User installation was skipped because the '--no-interface' flag was used. To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Get Monitor ResolutionGiganticGimprc proceduresGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient:GradientsGradients MenuGrayGrayscaleGreenGreen:GridGrow ChannelGrow SelectionGrow selection byGuideGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)Handle position: %0.6fHardnessHardness:HeightHeight:Help BrowserHelp SystemHelp proceduresHex:HighlightsHinting alters the font outline to produce a crisp bitmap at small sizesHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB color layers.Hue:HugeI_mageI_nterval:IconIf available, hints from the font are used but you may prefer to always use the automatic hinterIllegal variable name in environment file %s: %sImageImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage maskImage resolution is out of bounds, using the default resolution instead.ImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImported PathIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorIndexed Color ConversionInfo WindowInitialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' -InkInput DevicesInput LevelsInsert AnchorInstallation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateInterfaceInternal GIMP procedureInternal ProceduresInterpolation:Intersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Justify:Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.Keyboard ShortcutsLandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer Fill TypeLayer Mask to SelectionLayer SelectLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.LineLine _Style:Line style used for the grid.LinearLoadLoad CurvesLoad LevelsLoading preview ...Location:LogarithmicLooking for data filesLower ChannelLower Channel to BottomLower LayerLower Layer to BottomLower PathLower Path to BottomMagentaMagenta:MagnifyManage Loadable ModulesMask Opacity:Matrix:Max Depth:Maximum color differenceMean:MeasureMeasure Distances and AnglesMeasure distances and anglesMedian:MediumMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMessage proceduresMessage repeated %d times.Message repeated once.MidtonesMiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModulesMoveMove AnchorsMove ChannelMove GuideMove LayerMove Layer MaskMove PathMove SelectionMove layers & selectionsMove the selected filter downMove the selected filter upMove: MultiplyNavigationNew ChannelNew Channel ColorNew Channel OptionsNew ImageNew LayerNew PathNew Path OptionsNew TemplateNo brushes available for use with this tool.No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selection to stroke.NoneNone (Fastest)NormalNormal (128x128)Not a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOpacityOpacity:Open ImageOpen Text File (UTF-8)Open the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the pattern selection dialogOpening '%s' failed: +InkInput DevicesInput LevelsInsert AnchorInstallation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateInterfaceInternal GIMP procedureInternal ProceduresInterpolation:Intersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Justify:Keep TransparencyKey shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.Keyboard ShortcutsLandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer Fill TypeLayer Mask to SelectionLayer SelectLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.LineLine _Style:Line style used for the grid.LinearLoadLoad CurvesLoad LevelsLoading preview ...Location:LogarithmicLooking for data filesLower ChannelLower Channel to BottomLower LayerLower Layer to BottomLower PathLower Path to BottomMagentaMagenta:MagnifyManage Loadable ModulesMask Opacity:Matrix:Max Depth:Maximum color differenceMean:MeasureMeasure Distances and AnglesMeasure distances and anglesMedian:MediumMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMessage proceduresMessage repeated %d times.Message repeated once.MidtonesMiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModulesMoveMove AnchorsMove ChannelMove GuideMove LayerMove Layer MaskMove PathMove SelectionMove layers & selectionsMove the selected filter downMove the selected filter upMove: MultiplyNavigationNew ChannelNew Channel ColorNew Channel OptionsNew ImageNew LayerNew PathNew Path OptionsNew TemplateNo brushes available for use with this tool.No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selection to stroke.NoneNone (Fastest)NormalNormal (128x128)Not a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOpacityOpacity:Open ImageOpen Text File (UTF-8)Open the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the pattern selection dialogOpening '%s' failed: %sOpening '%s' failed: %sOptions: -Origin X:Original Width:Other (%s) ...Output LevelsOverlayPDB calling error for procedure '%s': +Origin X:Original Width:Output LevelsOverlayPDB calling error for procedure '%s': Argument #%d type mismatch (expected %s, got %s)PDB calling error: -procedure '%s' not foundPaintPaint Options Shared Between ToolsPaint Tool proceduresPaint Tool:Paint fuzzy brush strokesPaint hard edged pixelsPaint using Patterns or Image RegionsPaintbrushPalettePalette EditorPalette Editor MenuPalette FoldersPalette UIPalette _Name:PalettesPalettes MenuParasite proceduresParasitesParsing '%s' +procedure '%s' not foundPaintPaint Tool proceduresPaint Tool:Paint fuzzy brush strokesPaint hard edged pixelsPaint using Patterns or Image RegionsPaintbrushPalettePalette EditorPalette Editor MenuPalette FoldersPalette UIPalette _Name:PalettesPalettes MenuParasite proceduresParasitesParsing '%s' PastePasted LayerPathPath AttributesPath cannot be lowered more.Path cannot be raised higher.Path to SelectionPathsPaths MenuPatternPattern FoldersPattern UIPatternsPatterns MenuPencilPercentage of width of brushPercentile:Personal GIMP FolderPerspectivePerspective Transform InformationPerspective...Pick Mode %sPick colors from the imagePixelsPixels:Please wait while your personal GIMP folder is being created...Please wait...Plug-InPlug-In EnvironmentPlug-In FoldersPlug-In could not open imagePlug-In could not save imagePlug-In crashed: "%s" (%s) @@ -184,21 +181,21 @@ to replicate the selected segment.Select the number of times to replicate the selection.Select the number of uniform parts in which to split the segments in the selection.Select the number of uniform parts -in which to split the selected segment.SelectionSelection EditorSelection MaskSelection Tool proceduresSelection: Selection: ADDSelection: INTERSECTSelection: REPLACESelection: SUBTRACTSensitivitySet Canvas Padding ColorSet Channel ColorSet Channel OpacitySet Image Canvas SizeSet Item Exclusive LinkedSet Item Exclusive VisibleSet Layer Boundary SizeSet Name from _TextSets an upper limit to the memory that is used per image to keep operations on the undo stack. Regardless of this setting, at least as many undo-levels as configured can be undone.Sets the browser used by the help system.Sets the canvas padding color used if the padding mode is set to custom color.Sets the level of interpolation used for scaling and other transformations.Sets the manner in which transparency is displayed in images.Sets the minimal number of operations that can be undone. More undo levels are kept available until the undo-size limit is reached.Sets the mode of cursor the GIMP will use.Sets the size of the checkerboard used to display transparency.Sets the size of the navigation preview available in the lower right corner of the image window.Sets the size of the previews in the Undo History.Sets the swap file location. The gimp uses a tile based memory allocation scheme. The swap file is used to quickly and easily swap tiles out to disk and back in. Be aware that the swap file can easily get very large if the GIMP is used with large images. Also, things can get horribly slow if the swap file is created on a directory that is mounted over NFS. For these reasons, it may be desirable to put your swap file in "/tmp".Sets the temporary storage directory. Files will appear here during the course of running the GIMP. Most files will disappear when the GIMP exits, but some files are likely to remain, so it is best if this directory not be one that is shared by other users.Sets the text to appear in image window status bars.Sets the text to appear in image window titles.Sets whether GIMP should create previews of layers and channels. Previews in the layers and channels dialog are nice to have but they can slow things down when working with large images.ShadowsShapeShape:SharpenSharpen ChannelSharpen SelectionShearShear the layer or selectionShearing InformationShearing...Show S_tatusbarShow Scroll_barsShow _GuidesShow _Layer BoundaryShow _MenubarShow memory usageShow tip next time GIMP startsShow zoom percentageShow zoom ratioShrink ChannelShrink SelectionShrink from image borderShrink selection bySizeSize:Skipping '%s': wrong GIMP protocol version.SmallSmaller PreviewsSmoothSmooth edgesSmudgeSmudge imageSolidSourceSpacingSpacing:Special FileSpecifies how the area around the image should be drawn.Speed of marching ants in the selection outline. This value is in milliseconds (less time indicates faster marching).Speed:SplitSplit Gradient Segment UniformlySplit Gradient Segments UniformlySplit Segment UniformlySplit Segment _Uniformly...Split Segment at _MidpointSplit Segments UniformlySplit Segments _Uniformly...Split Segments at _MidpointsSquareStandardStarting ExtensionsStarting extension: '%s' -State:Static ColorStatic GrayStd Dev:StipplesStroke PathStroke SelectionSubtractSubtract from the current selectionSupersamplingTemplatesTemplates MenuTemporary ProcedureTextText ColorText LayerText proceduresThe GIMPThe active brush. +in which to split the selected segment.SelectionSelection EditorSelection MaskSelection Tool proceduresSelection: Selection: ADDSelection: INTERSECTSelection: REPLACESelection: SUBTRACTSensitivitySet Canvas Padding ColorSet Channel ColorSet Channel OpacitySet Image Canvas SizeSet Item Exclusive LinkedSet Item Exclusive VisibleSet Layer Boundary SizeSets an upper limit to the memory that is used per image to keep operations on the undo stack. Regardless of this setting, at least as many undo-levels as configured can be undone.Sets the browser used by the help system.Sets the canvas padding color used if the padding mode is set to custom color.Sets the external web browser to be used. This can be an absolute path or the name of an executable to search for in the user's PATH. If the command contains '%s' it will be replaced with the URL, else the URL will be appended to the command with a space separating the two.Sets the level of interpolation used for scaling and other transformations.Sets the manner in which transparency is displayed in images.Sets the minimal number of operations that can be undone. More undo levels are kept available until the undo-size limit is reached.Sets the mode of cursor the GIMP will use.Sets the size of the checkerboard used to display transparency.Sets the size of the navigation preview available in the lower right corner of the image window.Sets the swap file location. The gimp uses a tile based memory allocation scheme. The swap file is used to quickly and easily swap tiles out to disk and back in. Be aware that the swap file can easily get very large if the GIMP is used with large images. Also, things can get horribly slow if the swap file is created on a directory that is mounted over NFS. For these reasons, it may be desirable to put your swap file in "/tmp".Sets the temporary storage directory. Files will appear here during the course of running the GIMP. Most files will disappear when the GIMP exits, but some files are likely to remain, so it is best if this directory not be one that is shared by other users.Sets the text to appear in image window status bars.Sets the text to appear in image window titles.Sets whether GIMP should create previews of layers and channels. Previews in the layers and channels dialog are nice to have but they can slow things down when working with large images.ShadowsShapeShape:SharpenSharpen ChannelSharpen SelectionShearShear the layer or selectionShearing InformationShearing...Show S_tatusbarShow Scroll_barsShow _GuidesShow _Layer BoundaryShow _MenubarShow memory usageShow tip next time GIMP startsShow zoom percentageShow zoom ratioShrink ChannelShrink SelectionShrink from image borderShrink selection bySizeSize:Skipping '%s': wrong GIMP protocol version.SmallSmaller PreviewsSmoothSmooth edgesSmudgeSmudge imageSolidSourceSpacingSpacing:Specifies how the area around the image should be drawn.Speed of marching ants in the selection outline. This value is in milliseconds (less time indicates faster marching).Speed:SplitSplit Gradient Segment UniformlySplit Gradient Segments UniformlySplit Segment UniformlySplit Segment _Uniformly...Split Segment at _MidpointSplit Segments UniformlySplit Segments _Uniformly...Split Segments at _MidpointsSquareStandardStarting ExtensionsStarting extension: '%s' +State:Static ColorStatic GrayStd Dev:StipplesStroke PathStroke SelectionSubtractSubtract from the current selectionTemplatesTemplates MenuTemporary ProcedureTextText ColorText LayerText proceduresThe GIMPThe active brush. Click to open the Brush Dialog.The active gradient. Click to open the Gradient Dialog.The active pattern. Click to open the Pattern Dialog.The background color of the grid; only used in double dashed line style.The filename '%s' couldn't be converted to a valid URI: -%sThe foreground color of the grid.The gimprc is used to store personal preferences that affect GIMP's default behavior. Paths to search for brushes, palettes, gradients, patterns, plug-ins and modules can also configured here.The sessionrc is used to store what dialog windows were open the last time you quit The GIMP. You can configure The GIMP to reopen these dialogs at the saved position.The tile cache is used to make sure the GIMP doesn't thrash tiles between memory and disk. Setting this value higher will cause the GIMP to use less swap space, but will also cause the GIMP to use more memory. Conversely, a smaller cache size causes the GIMP to use more swap space and less memory.The unit used for coordinate display when not in dot-for-dot mode.The unitrc is used to store your user units database. You can define additional units and use them just like you use the built-in units inches, millimeters, points and picas. This file is overwritten each time you quit the GIMP.The vertical image resolution.The window type hint that is set on dock windows. This may affect the way your window manager decorates and handles dock windows.The window type hint that is set on the toolbox. This may affect how your window manager decorates and handles the toolbox window.ThemeTheme FoldersThemesThere are not enough visible layers for a merge down.There is always a tradeoff between memory usage and speed. In most cases, the GIMP opts for speed over memory. However, if memory is a big issue, try to enable this setting.There is no active layer or channel to copy from.There is no active layer or channel to cut from.There is no active layer or channel to stroke toThere is no active layer or channel to stroke to.There should be a file called '%s'. Please check your installation.There was an error parsing your '%s' file. Default values will be used. A backup of your configuration has been created at '%s'.This file holds a collection of standard media sizes that serve as image templates.This folder is searched for image templates.This folder is searched for user-installed themes.This folder is used to store fonts you only want visible in the GIMP. The GIMP checks this folder in addition to the system-wide GIMP fonts installation when searching for fonts. Use this only if you really want to have GIMP-only fonts, otherwise put things in your global font directory.This folder is used to store parameter files for the Curves tool.This folder is used to store parameter files for the Levels tool.This folder is used to store tool options.This folder is used to store user created and installed scripts. The GIMP checks this folder in addition to the systemwide GIMP scripts folder when searching for scripts.This folder is used to store user created, temporary, or otherwise non-system-supported DLL modules. The GIMP checks this folder in addition to the system-wide GIMP module folder when searching for modules to load during initialization.This folder is used to store user created, temporary, or otherwise non-system-supported additions to the plug-in environment. The GIMP checks this folder in addition to the system-wide GIMP environment folder when searching for plug-in environment modification files.This folder is used to store user created, temporary, or otherwise non-system-supported plug-ins. The GIMP checks this folder in addition to the system-wide GIMP plug-in folder when searching for plug-ins.This folder is used to store user defined brushes. The GIMP checks this folder in addition to the system-wide GIMP brushes installation when searching for brushes.This folder is used to store user defined gradients. The GIMP checks this folder in addition to the system-wide GIMP gradients installation when searching for gradients.This folder is used to store user defined palettes. The GIMP checks this folder in addition to the system-wide GIMP palettes installation when searching for palettes.This folder is used to store user defined patterns. The GIMP checks this folder in addition to the system-wide GIMP patterns installation when searching for patterns.This folder is used to temporarily store undo buffers to reduce memory usage. If The GIMP is unceremoniously killed, files of the form: gimp<#>.<#> may persist in this folder. These files are useless across GIMP sessions and can be destroyed with impunity.This folder will contain a number of important files. Click on one of the files or folders in the tree to get more information about the selected item.This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.This text input field is limited to %d characters.This tool has no options.ThresholdThreshold does not operate on indexed layers.Threshold:Thumbnail %d of %dTilt:TinyTitle & StatusTool OptionsTool Options MenuTool Toggle %sToolbox MenuToolsTransfer Alpha to MaskTransformTransform ChannelTransform DirectionTransform LayerTransform PathTransform Tool proceduresTransformationTransforming...Translation byTransparencyTrue ColorTypeType %sUnable to add a layer mask since the layer already has one.Unable to cut or copy because the selected region is empty.UndefinedUndoUndo HistoryUnitsUnknownUnknown file typeUnloadUnnamedUntitledUse all visible layers when shrinking the selectionUser Installation LogUser InterfaceValueValue:Version %s brought to you byVersion:VerticalVertical offset of the first grid line; this may be a negative number.Vertical spacing of grid lines.Web BrowserWhen enabled the dialog automatically follows the image you are working on.When enabled, all paint tools will show a preview of the current brush's outline.When enabled, an image will become the active image when its image window receives the focus. This is useful for window managers using "click to focus".When enabled, menus can be torn off.When enabled, pressing F1 will open the help browser.When enabled, the GIMP will not save if the image is unchanged since opening it.When enabled, the GIMP will use a different info window per image view.When enabled, the X server is queried for the mouse's current position on each motion event, rather than relying on the position hint. This means painting with large brushes should be more accurate, but it may be slower. Perversely, on some X servers enabling this option results in faster painting.When enabled, the grid is visible by default. This can also be toggled with the "View->Show Grid" command.When enabled, the guides are visible by default. This can also be toggled with the "View->Show Guides" command.When enabled, the image window will automatically resize itself, when zooming into and out of images.When enabled, the image window will automatically resize itself, whenever the physical image size changes.When enabled, the layer boundary is visible by default. This can also be toggled with the "View->Show Layer Boundary" command.When enabled, the menubar is visible by default. This can also be toggled with the "View->Show Menubar" command.When enabled, the rulers are visible by default. This can also be toggled with the "View->Show Rulers" command.When enabled, the scrollbars are visible by default. This can also be toggled with the "View->Show Scrollbars" command.When enabled, the selection is visible by default. This can also be toggled with the "View->Show Selection" command.When enabled, the statusbar is visible by default. This can also be toggled with the "View->Show Statusbar" command.When enabled, this will ensure that each pixel of an image gets mapped to a pixel on the screen.When enabled, this will ensure that the full image is visible after a file is opened, otherwise it will be displayed with a scale of 1:1.When enabled, you can change keyboard shortcuts for menu items by hitting a key combination while the menu item is highlighted.WhiteWidthWidth:Window ManagementWindow PositionsWriting '%s' +%sThe foreground color of the grid.The gimprc is used to store personal preferences that affect GIMP's default behavior. Paths to search for brushes, palettes, gradients, patterns, plug-ins and modules can also configured here.The sessionrc is used to store what dialog windows were open the last time you quit The GIMP. You can configure The GIMP to reopen these dialogs at the saved position.The tile cache is used to make sure the GIMP doesn't thrash tiles between memory and disk. Setting this value higher will cause the GIMP to use less swap space, but will also cause the GIMP to use more memory. Conversely, a smaller cache size causes the GIMP to use more swap space and less memory.The unit used for coordinate display when not in dot-for-dot mode.The unitrc is used to store your user units database. You can define additional units and use them just like you use the built-in units inches, millimeters, points and picas. This file is overwritten each time you quit the GIMP.The vertical image resolution.The window type hint that is set on dock windows. This may affect the way your window manager decorates and handles dock windows.The window type hint that is set on the toolbox. This may affect how your window manager decorates and handles the toolbox window.ThemeTheme FoldersThemesThere are not enough visible layers for a merge down.There is always a tradeoff between memory usage and speed. In most cases, the GIMP opts for speed over memory. However, if memory is a big issue, try to enable this setting.There is no active layer or channel to stroke toThere is no active layer or channel to stroke to.There should be a file called '%s'. Please check your installation.There was an error parsing your '%s' file. Default values will be used. A backup of your configuration has been created at '%s'.This file holds a collection of standard media sizes that serve as image templates.This folder is searched for image templates.This folder is searched for user-installed themes.This folder is used to store fonts you only want visible in the GIMP. The GIMP checks this folder in addition to the system-wide GIMP fonts installation when searching for fonts. Use this only if you really want to have GIMP-only fonts, otherwise put things in your global font directory.This folder is used to store parameter files for the Curves tool.This folder is used to store parameter files for the Levels tool.This folder is used to store tool options.This folder is used to store user created and installed scripts. The GIMP checks this folder in addition to the systemwide GIMP scripts folder when searching for scripts.This folder is used to store user created, temporary, or otherwise non-system-supported DLL modules. The GIMP checks this folder in addition to the system-wide GIMP module folder when searching for modules to load during initialization.This folder is used to store user created, temporary, or otherwise non-system-supported additions to the plug-in environment. The GIMP checks this folder in addition to the system-wide GIMP environment folder when searching for plug-in environment modification files.This folder is used to store user created, temporary, or otherwise non-system-supported plug-ins. The GIMP checks this folder in addition to the system-wide GIMP plug-in folder when searching for plug-ins.This folder is used to store user defined brushes. The GIMP checks this folder in addition to the system-wide GIMP brushes installation when searching for brushes.This folder is used to store user defined gradients. The GIMP checks this folder in addition to the system-wide GIMP gradients installation when searching for gradients.This folder is used to store user defined palettes. The GIMP checks this folder in addition to the system-wide GIMP palettes installation when searching for palettes.This folder is used to store user defined patterns. The GIMP checks this folder in addition to the system-wide GIMP patterns installation when searching for patterns.This folder is used to temporarily store undo buffers to reduce memory usage. If The GIMP is unceremoniously killed, files of the form: gimp<#>.<#> may persist in this folder. These files are useless across GIMP sessions and can be destroyed with impunity.This folder will contain a number of important files. Click on one of the files or folders in the tree to get more information about the selected item.This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.This text input field is limited to %d characters.This tool has no options.ThresholdThreshold does not operate on indexed layers.Threshold:Thumbnail %d of %dTilt:TinyTitle & StatusTool OptionsTool Options MenuTool Toggle %sToolbox MenuToolsTransfer Alpha to MaskTransformTransform ChannelTransform DirectionTransform LayerTransform PathTransform Tool proceduresTransformationTransforming...Translation byTransparencyTrue ColorTypeType %sUnable to add a layer mask since the layer already has one.Unable to cut or copy because the selected region is empty.UndefinedUndoUndo HistoryUnitsUnknownUnknown file typeUnloadUnnamedUntitledUse all visible layers when shrinking the selectionUser Installation LogUser InterfaceValueValue:Version %s brought to you byVersion:VerticalVertical offset of the first grid line; this may be a negative number.Vertical spacing of grid lines.Web BrowserWhen enabled the dialog automatically follows the image you are working on.When enabled, all paint tools will show a preview of the current brush's outline.When enabled, an image will become the active image when its image window receives the focus. This is useful for window managers using "click to focus".When enabled, menus can be torn off.When enabled, pressing F1 will open the help browser.When enabled, the GIMP will not save if the image is unchanged since opening it.When enabled, the GIMP will use a different info window per image view.When enabled, the X server is queried for the mouse's current position on each motion event, rather than relying on the position hint. This means painting with large brushes should be more accurate, but it may be slower. Perversely, on some X servers enabling this option results in faster painting.When enabled, the grid is visible by default. This can also be toggled with the "View->Show Grid" command.When enabled, the guides are visible by default. This can also be toggled with the "View->Show Guides" command.When enabled, the image window will automatically resize itself, when zooming into and out of images.When enabled, the image window will automatically resize itself, whenever the physical image size changes.When enabled, the layer boundary is visible by default. This can also be toggled with the "View->Show Layer Boundary" command.When enabled, the menubar is visible by default. This can also be toggled with the "View->Show Menubar" command.When enabled, the rulers are visible by default. This can also be toggled with the "View->Show Rulers" command.When enabled, the scrollbars are visible by default. This can also be toggled with the "View->Show Scrollbars" command.When enabled, the selection is visible by default. This can also be toggled with the "View->Show Selection" command.When enabled, the statusbar is visible by default. This can also be toggled with the "View->Show Statusbar" command.When enabled, this will ensure that each pixel of an image gets mapped to a pixel on the screen.When enabled, this will ensure that the full image is visible after a file is opened, otherwise it will be displayed with a scale of 1:1.When enabled, you can change keyboard shortcuts for menu items by hitting a key combination while the menu item is highlighted.WhiteWidthWidth:Window ManagementWindow PositionsWriting '%s' XCF error: unsupported XCF file version %d encounteredXCF warning: version 0 of XCF file format did not save indexed colormaps correctly. -Substituting grayscale map.YellowYellow:You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom factor: %d:1Zoom inZoom in & outZoom outZoom:[ Base Image ]_Antialiasing_Auto_B_Blending Function for Segment_Blending Function for Selection_Brightness:_Brush_C_Delete Segment_Delete Selection_Flip Segment_Flip Selection_G_Gradient_Horizontal:_Hue:_Icon:_Import_Lightness:_M_Manually_Name:_Pattern_Preview_R_Redo_Redo %s_Replicate Segment..._Replicate Selection..._Saturation:_Selection_Undo_Undo %s_Vertical:_X:_Y_Y:_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for token %sinvalid value '%s' for token %smillimetermillimetersn/apercentpicapicaspixelpixelspixels/%apixels/%spointpointstips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: GIMP 2.0 +Substituting grayscale map.YellowYellow:You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom factor: %d:1Zoom inZoom in & outZoom out[ Base Image ]_Antialiasing_Auto_B_Blending Function for Segment_Blending Function for Selection_Brightness:_C_Delete Segment_Delete Selection_Flip Segment_Flip Selection_G_Gradient_Horizontal:_Hue:_Icon:_Import_Lightness:_M_Manually_Name:_Preview_R_Redo_Redo %s_Replicate Segment..._Replicate Selection..._Saturation:_Selection_Undo_Undo %s_Vertical:_X:_Y_Y:colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for token %sinvalid value '%s' for token %smillimetermillimetersn/apercentpicapicaspixelpixelspixels/%apixels/%spointpointstips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: GIMP 2.0 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-19 03:11+0100 -PO-Revision-Date: 2004-03-29 11:46+0200 +POT-Creation-Date: 2004-12-28 16:58+0100 +PO-Revision-Date: 2004-05-05 20:42+0100 Last-Translator: Xavier Beà -Language-Team: Catalan +Language-Team: Softcatala MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit @@ -210,7 +207,7 @@ --debug-handlers Habilita la depuració dels gestors de senyals no fatals. --display Utilitza la visualització X indicada. --dump-gimprc Surt un fitxer gimprc amb els paràmetres per defecte. - --no-cpu-accel No utilitzis acceleradors espacials per la unitat central. + --no-cpu-accel No utilitzis acceleradors especials per la unitat central. --no-shm No utilitzis la memòria compartida entre el GIMP i els seus connectors. --pdb-compat-mode Mode de compatibilitat amb la base de dades de procediments. @@ -219,59 +216,59 @@ Mode de depuració per a senyals fatals. --system-gimprc Utilitza un fitxer gimprc del sistema alternatiu. --verbose Mostra els missatges inicials. - -b, --batch Execució en processament per lots. + -b, --batch Executa les ordres en processament per lots. -c, --console-messages Mostra els avisos a la consola en comptes d'usar un quadre de diàleg -d, --no-data No carreguis pinzells, degradats, paletes ni patrons. -f, --no-fonts No carreguis cap tipus de lletra. -g, --gimprc Utilitza un fitxer gimprc alternatiu. -h, --help Escriu aquesta ajuda. - -i, --no-interface Execució sense una interfície d'usuari. + -i, --no-interface Executa sense una interfície d'usuari. -s, --no-splash No mostris la finestra inicial. -v, --version Escriu la informació de la versió. -%d capes%d capes%d x %d píxels%g x %g %s%s canal copiaCanal %s per a la seleccióMissatge %scòpia de %smàscara %s%s%sClic: estendre la selecció%s%sArrossega: mou i comprimeix(%0.3f, %0.3f, %0.3f)(Cap)(Aquesta finestra de consola es tancarà en deu segons) -(Memòria intermèdia sense nom)(Plantilla sense nom)(Cadena de text UTF-8 invàlida)(cap)Una capaCapa 1<%s><>Perquè el GIMP rendeixi de manera òptima, potser s'han d'ajustar alguns paràmetres.El GIMP - Programa de retoc d'imatges GNU +%d capes%d capes%d x %d píxels%g x %g %sCòpia del canal %sCanal %s a seleccióMissatge %scòpia de %smàscara %s%s%sClic: estendre la selecció%s%sArrossega: mou i comprimeix(%0.3f, %0.3f, %0.3f)(Cap)(Aquesta finestra de consola es tancarà en deu segons) +(Memòria intermèdia sense nom)(Plantilla sense nom)(Cadena de text UTF-8 invàlida)(cap)Una capaUna capa<%s><>Perquè el GIMP rendeixi de manera òptima, potser s'han d'ajustar alguns paràmetres.El GIMP - Programa de retoc d'imatges GNU Copyright (C) 1995-2004 -Spencer Kimball, Peter Mattis i l'equip de desenvolupament del GIMP.El fitxer de consells del GIMP no s'ha pogut analitzar correctament.Sembla que s'ha perdut el fitxer de consells del GIMPQuant al GIMPFiltres actiusAfegeix canal alfaAfegeix àncoraAfegeix un canalAfegeix guiesAfegeix guia horitzontalAfegeix capaAfegeix una màscara de capaAfegeix CamíAfegeix traçatAfegeix capa de textAfegeix guia verticalAfegeix una màscara a la capaAfegeix text a la imatgeAfegeix el color actual al histograma de colorAfegeix el filtre seleccionat a la llista de filtres actius.Afegeix a la selecció actualS'està afegint el tema '%s' (%s) -AddicióAjusta la brillantor i el contrastAjusta el balanç de colorAjusta les corbes de colorAjusta els nivells de colorAjusta la brillantor i el contrastAjusta el balanç de colorAjusta les corbes de colorAjusta els nivells de colorAjusta el to i la saturacióAjust automàtic dels nivellsAjustamentAfecta:Àrea afectada %sVaporitzadorVaporitzador amb pressió variableAlineatAlineacióTots els canalsTotes les imatges i les dades per desfer que no caben en la memòria mosàic s'escriuen en un fitxer d'intercanvi. Caldria posar-lo en un sistema de fitxers local amb prou espai lliure (alguns centenars de MB). En sistemes UNIX, potser voldreu fer servir el directori temporal del sistema ("/tmp" o "/var/tmp").Deixa regions completament transparents per a omplirPermet seleccionar regions completament transparentsAlfaAlfa cap a la seleccióAlfa:Ancora selecció flotantAngle:SuavitzatAparençaAplica una màscara de capaAplica llindarEsteu segur que voleu suprimir '%s' de la llista i del disc?Esteu segur que voleu suprimir la plantilla '%s' de la llista i del disc?Demana confirmació abans de tancar una imatge sense desar.Adjunta paràsitAdjunta paràsit a la imatgeAdjunta paràsit al elementAutor:AutomàticCarrega automàticaFiltres disponiblesTipus disponibles:FonsColor de fons definit:Fons: %d, %d, %dArea base plena en totes les capes visiblesSelecció base en totes les capes visiblesDarrereBisellNegre:MesclaMescla: Mescla: No és vàlida per a les imatges indexades.S'està mesclant...BlauBlau:DifuminaDesenfoca o afilaBordeja el canalBordeja la seleccióVoreja selecció perBrillantor-ContrastBrillantor-Contrast no funciona en capes indexades.Editor del pinzellCarpetes de pinzellsInterfície del pinzellPinzell:PinzellsMenú PinzellsCubellMemòria intermèdia.Menú Memòria intermèdia.CremaCMYKC_olumnes:Calibra la resolució del monitorNo es pot desfer %sCancel·laNo es pot afegir una màscara de capa de dimensions diferents de la capa especificadaNo es pot afegir una màscara de capa a una capa sense un canal alfa.No es pot afegir una màscara de capa a una capa que no és part d'una imatge.No es pot ancorar aquesta capa perquè no és una selecció flotant.No es pot convertir a una paleta amb més de 256 colors.No es pot crear una capa nova a partir de la selecció flotant perquè pertany a una màscara de la capa o del canal.No es pot crear la carpeta '%s': %sNo es pot crear la previsualitzacióNo s'ha pogut escapçar perquè l'àrea seleccionada està buida.No es pot expandir ${%s}No s'ha pogut flotar la selecció perquè l'àrea seleccionada està buida.No es pot pujar la capa sense informació de transparènciaNo es pot desar. No hi ha res seleccionat.No es pot traçar canal buit.No es pot traçar un camí buit.Mida del llençCentre X:CentratCanvia el color de fonsCanvia el color de primer plaCanvia la resolució d'imatgeCanvia unitats d'imatgeCanvia perspectiva de la capa o seleccióCanalAtributs del canalNom del canal:El canal no es pot abaixar més.El canal no es pot apujar més.Canal a seleccióCanal:CanalsMenú CanalsTria estil de traçatNetejaAclareix el canalFeu un clic a "Continua" per acceptar els paràmetres anteriors.Feu clic a "Continua" per crear la vostra carpeta personal del GIMP.Feu clic a "Continua" per entrar a la instal·lació de l'usuari del GIMP.Clica per connectar aquesta ancora amb l'extrem seleccionat.Clica per a crear una nova àncora. (prova Maj)Clica per a crear un nou component del camí.Clica per crear un nou camí.Clica per suprimir aquesta àncora.Clica per inserir una ancora en el camí. (prova MAJÚSCULES)Clica per crear aquest punt amgular.Clica per obrir el camíClica al camí per editar-loCliqueu a la previsualització actualitzada -%s Cliqueu per a forçar l'actualització, encara que la previsualització estigui actualitzada.Clica i arrossega per canviar l'ombra de la corba. (MAJÚSCULES: simétriques)Clica i arrossega per moure el contorn de l'ancoratge.Clica i arrossega per moure el contorn dels ancoratges.Clica i arrossega per moure el contorn del component (prova MAJÚSCULES)Clica i arrossega per moure el contorn de la nansa (prova MAJÚSCULES)Clica i arrossega per moure el contorn del camí.Clic: seleccionaClic: selecciona Arrossega: mouTallat a la mida de la capa del darrereTallat a mida de la imatgeClonaTanca aquesta tabulacióColorBalanç de colorFiltres de visualització de colorsCapturador de colorInformació del capturador de colorEl balanç de color només funciona en capes de color RGB.Color:Tipus d'acolorit pel segment_Tipus d'acolorit per la seleccióAcoloreixL'acoloriment només funciona en capes de color RGB.Acoloreix la imatgeAcoloreix la imatgeMapa de colorsColumnes:Con_trast:Configura els filtres de visualització de colorsConfigura graellaConfigura la graella de la imatgeConfirmeu la mida de la imatgeConfirma l'edició del textConnecta traçatsConstantTancamentEls cursors relatius al context són interessants. Es fan servir per defecte. De totes maneres, suposen una sobrecàrrega que potser no desitgeu.ContinuaContribucionsConverteixConverteix filConverteix imatge a escala de grisosConverteix imatge a indexatConverteix imatge a colors indexatsConverteix imatge a RGBConvolveTipus de convolve %sCopia allò designatS'està copiant el fitxer %s des de '%s'...Copyright:Hi ha un segment corrupte %d al fitxer de degradat '%s'.No s'ha pogut crear '%s': %sNo s'ha pogut crear el fitxer temporal per '%s': %sNo s'ha pogut esborrar '%s': %sNo s'ha pogut obrir '%s' per lectura: %sNo s'ha pogut obrir '%s' en escriure: %sNo s'ha pogut obrir la miniatura '%s': %sNo s'han pogut llegir %d bytes des de '%s': %sNo s'ha pogut cercar en el fitxer XCF: %sRecompte:Crea nova plantillaCrea una nova imatgeCrea una capa novaCrea nova plantillaCrea una nova visualització per aquesta imatgeCrea una nova imatge des de la plantilla seleccionadaCrea una nova plantillaCrea i edita imatges o fotografiesCrea i edita caminsS'està creant la carpeta '%s'...EscapçaEscapça i canvia la midaInformació d'escapçat i canvi de midaEscapça la imatgeEscapça la capaEscapça o canvia la mida d'una imatgeEscapça: Només creuCúbic (millor)Tipus de corbaCorbesLes corbes de les capes indexades no es poden ajustar.PersonalitzaRetallaRetalla i anomenaCiàCian:TraçatData:Aparença predeterminada en mode a pantalla completaAparença predeterminada en mode normalGraella per defecteGraella d'imatge per defecte:Suprimeix ancoraSuprimeix la màscara de capaSuprimeix segmentSuprimeix la plantillaSuprimeix opcions desades...Suprimeix la plantilla seleccionadaSuprimeix aquesta imatgeDesaturaLa desaturació només funciona en capes de color RGB.DescripcióDissenyaEstat del dispositiuDispositiusMenú DiàlegsDiferènciaColor directeDescarta informació del textVisualitzacióVisualitza NavegacióProcediments de visualitzacióS'esta visualitzant [%0.6f, %0.6f]FondreDistància:Distància: %0.6fS'està retallantDividirVoleu tornar a iniciar amb totes les opcions d'eina per defecte?Llista de l'historialDocumentsMenú DocumentsEsvaeixOpcions de l'esvaïment o crematEsvaeix/cremaArrossega àncoraArrossega àncoresArrossega corbaArrossega nansaArrossega camíArrossega: mouDibuixa en tintaDibuixableProcediments dibuixablesPerd papa novaPerd camí nouDegut a l'absència d'alguns tipus de lletra, la funcionalitat del text no està disponible.Duplica la plantilla seleccionadaS'ha produït un error: No es pot desferEditaEdita els atributs del canalEdita el color del canalEdita la entrada de la paleta de colorEdició dels atributs de la capaEdita modeEdita color de la paletaEdita els atributs del camíEdita plantillaProcediments d'edicióEdita la plantilla seleccionadaSelecció d'el·lipseCanal buitCapa buidaCamí buitCapa de text buidaNom de variable buida en fitxer d'entorn %sHabiliteu-lo pèr visualitzar un consell del GIMP a l'inici.Habiliteu-lo per visualitzar rètols indicadors de funció.EnormeIntrodueix un nom per a la paleta fusionadaAnomena les opcions desadesEntra un nom per a aquesta memòria intermèdiaAnomena aquesta plantillaAnomena les opcions desadesEntornCarpetes d'entornEqualitzaEqualize no funciona en capes indexades.Esborra fins al fons o la transparènciaGoma d'esborrarConsola d'errorsMenú Consola d'errorsS'ha produït un error en desar el fitxer XCF: %sS'ha produït un error mentre s'analitzava '%s' a la línia %d: %sS'ha produít un error en llegir '%s': %sS'ha produït un error en llegir '%s': %sS'ha produït un error en escriure XCF: %sS'ha produït un error en escriure el fitxer '%s': -%sS'ha produït un error en escriure '%s': %sS'ha produït un error en escriure el fitxer temporal per '%s': %s -No s'ha creat cap fitxerS'ha produït un error en escriure el fitxer temporal per '%s': %s -El fitxer original no ha estat tocat.ErrorsAmpliat tant com calguiExporta camí a SVGExposició:Dispositius d'entrada extesos:Primer pla a fons (HSV en sentit horari)Primer pla a fons (HSV en sentit antihorari)De primer pla a fons (HSV)De primer pla a fons (RGB)De primer pla a transparentPrimer pla/FonsColor de primer pla/Color de fonsNo s'han pogut importar els camins des de "%s": %sS'ha produït un error d'anàlisi fatal en el fitxer de pinzell '%s': El fitxer sembla truncat.S'ha produït un error d'anàlisi fatal en el fitxer de pinzell '%s': El fitxer és corrupte.S'ha produït un error d'anàlisi fatal en el fitxer de pinzell '%s': no és un fitxer de pinzell del GIMP.S'ha produït un error d'anàlisi fatal en el fitxer de pinzell '%s': versió desconeguda de pinzell del GIMP.S'ha produït un error d'analisi fatal en el fitxer de pinzells '%s': Intensitat desconeguda %d.S'ha produït un error d'anàlisi fatal en el fitxer de pinzells '%s': versió desconeguda %d.S'ha produït un error d'anàlisi fatal en el fitxer de pinzell '%s': La profunditat de pinzell no es pot fer servir %d -Els pinzells del GIMP han de ser GRIS (escala de grisos) o RGBA (paleta de colors).S'ha produït un error fatal d'anàlisi: el fitxer de degradat '%s' és corrupte.S'ha produït un error d'anàlisi fatal: '%s' no és un fitxer de degradat del GIMP.S'ha produït un error fatal d'anàlisi en el fitxer de paleta '%s': S'ha perdut l'encapçalament màgic.S'ha produït un error fatal d'anàlisi en el fitxer de paleta '%s': S'ha perdut l'encapçalament màgic. -Cal convertir aquest fitxer des del DOS?S'ha produït un error fatal d'anàlisi en el fitxer de paleta '%s': Error de lectura en la linia %d.S'ha produït un error fatal d'anàlisi en el fitxer de patró '%s': No s'han pogut llegir %d bytes: %sS'ha produït un error fatal d'anàlisi en el fitxer de patró '%s': Versió de format de patró %d desconeguda.S'ha produït un error fatal d'anàlisi en el fitxer de patró '%s': La profunditat de patró %d no és suportada. -Els patrons del GIMP han de ser GRIS o RGB.Suavitza el canalSuavitza la seleccióSuavitza selecció perOperacions amb fitxersOmple el canalOmple la opacitat:Manera d'omplir %sOmple amb el color de fonsOmple amb el color de primer plaOmple amb el patróOmple amb transparènciaOmple amb blancOmple amb un degradat de colorOmple amb un color o un patróOmplertLa capa fusionada resultant hauria de ser:Cerca les regions contígüesS'està cercant colors similarsAplana la imatgeVoltejaVolteja el canalVolteja la CapaVolteja CamíVolteja la capa de textManera de voltejar %sVolteja la capa o la seleccióS'està voltejant...Flota seleccióSelecció flotant a la capaSeleccions flotantsFocusCarpetaCarpetesCarpetes de tipus de lletraInterfície del tipus de lletraTipus de lletraMenú Tipus de lletraPer instal·lar el GIMP correctament, cal crear una carpeta anomenada '%s'.Primer plaColors de primer pla i de fons. Els quadrats blancs i negres restableixen els colors. Les fletxes canvien els colors. Feu doble clic per obrir el diàleg de selecció de color.Color de primer pla definit:Primer pla: %d, %d, %dSelecció lliureMaSelecció difusaEl GIMPExtensió del GIMPMissatge del GIMPAjust del rendiment del GIMPConnector per al GIMPInici del GIMPEditor de text del GIMPConsell del dia del GIMPInstal·lació d'usuari del GIMPEl GIMP no ha pogut inicialitzar la interfície gràfica d'usuari -Assegureu-vos que el vostre entorn de visualització està configurat adequadament.La instal·lació del GIMP no és adequada per l'usuari actual. -La instal·lació de l'usuari ha estat omesa ja que s'ha usat el senyalador '--no-interface'. -Per realitzar una instal·lació d'usuari, executeu el GIMP sense el senyalador '--no-interface'.El GIMP utilitza una quantitat limitada de memòria per emmagatzemar les dades de la imatge, anomenada "Tile Cache". Us caldrà ajustar-ne la mida per encabir-la a la memòria. Tingueu en compte la quantitat de memòria que utilitzen altres processos en execució.El GIMP fa servir un fitxet gtkrc addicional per a que el pogueu configurar perquè es vegi diferent d'altres aplicacions GTK.Versió del GIMPEl GIMP advertirà a l'usuari si es vol crear una imatge que ocupi més memòria que la que s'especifica aquí.GammaGeneralGeneralment només afecta a visualitzacions de 8-bits, això especifica el nombre mínim de colors creats en memòria pel GIMP.Obté la resolució del monitorGegantProcediments del GimprcEditor de degradatsMenú Editor de degradatsCarpetes de degradatsColor del límit esquerre del segment degradatColor del límit dret del segment degradatInterfície del degradatDegradat:DegradatsMenú DegradatsGrisEscala de grisosVerdVerd:GraellaEngrandeix el canalAugmenta la seleccióAugmenta selecció perGuiaProcediments de guiaHSVHSV (%0.3f, %0.3f, %0.3f)Posició de la nansa: %0.6fDuresaDuresa:AlçadaAlçada:Navegador d'ajudaSistema d'ajudaProcediments d'ajudaHex:ResaltatsEls consells alterenHistogramaEscala del histogramaHistorialHoritzontalCompensació horitzontal de la primera línia de graella; ha de ser un número negatiu.Espaiat horitzontal de les línies de graella.Quants fitxers d'imatge recentment oberts es mantenen al menú Fitxer.ToTo-SaturacióTo-Saturació només funciona en capes de color RGB.To:ImmensI_matgeI_nterval:IconaSi estan disponibles, s'utilitzaran els consells sobre la font, però podeu preferir rebre consells aleatorisNom de variable ilegal en entorn de fitxer %s: %sImatgeInformació de la imatgeMenú ImatgeMida de la imatgeFormat d'imatge de la barra d'estatPlantilles d'imatgeFormat de títol d'imatge i de barra d'estatFormat de títol d'imatgeAparença de la finestra d'imatgeFinestres d'imatgesMàscara d'imatgeLa resolució de la imatge està fora de limits. En el seu lloc es fa servir la resolució per defecte.ImatgesMenú ImatgesOpcions d'importacióImporta una paletaImporta camíImporta camins des de SVGImporta una paleta novaCamí importatInverteix màscaraIncrementalSagnat:Indexació de la primera líniaÍndex:IndexatColor indexatConversió a colors indexatsFinestra d'informacióInicialitza la màscara de la capa a:S'estan inicialitzant els connectorsS'està inicialitzant connector: '%s' -TintaDispositius d'entrada:Nivells d'entradaInserta àncoraLa instal·lació ha fallat. Poseu-vos en contacte amb l'administrador del sistema.La instal·lació s'ha completat correctament. Feu clic a "Continua"Actualització immediataInterfícieProcediment intern del GIMPProcediments internsInterpolació:Creua amb la seleccióInterseccions (creus)Interseccions (punts)Cadena de text UTF-8 invàlidaHi ha dades UTF-8 invàlides al fitxer '%s'.Hi ha una cadena de text UTF-8 invàlida en fitxer XCFHi ha una cadena de text UTF-8 invàlida en el fitxer de pinzell '%s'Hi ha una cadena de text UTF-8 invàlida en el fitxer de degradat '%s'Hi ha una cadena de text UTF-8 invàlida en el fitxer de paleta '%s'Hi ha una cadena de text UTF-8 invàlida en el fitxer de patró '%s'.Sequencia de caràcters invàlida en URIL'amplada o l'alçada no són vàlides. Totes dues han de ser positives.InverteixInverteix el canalInverteix la seleccióLa inversió no funciona amb capes indexades.Justifica:Les dreceres del teclat es poden redefinir dinàmicament en el GIMP. El menurc conté un buidatge de la vostra configuració; es pot recuperar per a la sessió següent. Podeu editar aquest fitxer, si voleu, però és molt més fàcil definir les tecles des del GIMP. Si suprimiu aquest fitxer es restauraran les dreceres per defecte.Dreceres de teclatHoritzontalGranGran (256x256)Previsualitzacions més gransDarrer error:CapaLa capa '%s' no te informació de transparència. La capa s'ha ficat damunt seu.Atributs de la capaTipus d'omplert de capaMàscara de capa a la seleccióSelecció de capa_Nom de la capa:No es pot situar la capa més avall.No es pot situar la capa més amunt.La capa ja és a sota de tot.La capa ja és a dalt de tot.Capa a mida de la imatgeCapesMenú CapesOpcions per fusionar capesColor del límit esquerreLongitut:Permet al GIMP que intenti restaurar la darrera sessió desada en cada inici.NivellsEls nivells de les capes indexades no es poden ajustar.LíniaEstil de línia:Estil de línia utilitzat per la graellaLinealCarregaCarrega les corbesCarrega nivellsS'està carregant una previsualització ...Ubicació:LogarítmicS'estan cercant els fitxers de dadesCanal més baixAbaixa el canal fins baixAbaixa la capaCapa cap al capdavallAbaixa el camíAbaixa la capa fins a la part inferiorMagentaMagenta:AugmentaGestiona el mòduls carregablesOpacitat de la màscara:Matriu:Profunditat màxima:Màxima diferència de colorMitja:MesuraMesura distàncies i anglesMesura distàncies i anglesMitjana:MitjàFusiona al capdavallFusiona les capesFusiona paletaFusiona les capes visiblesFusiona els camins visiblesProcediments de missatgeMissatge repetit %d vegades.Missatge repetit una sola vegada.Tons mitjansMiscel·làniaMestreModeMode:Modifica color seleccionatModifica els nivells de color del rang seleccionatModifica tots els colorsModifica l'espaiat de la liniaCarpetes de mòdulsGestor del mòdulMòdulsMouMou àncoresMou el canalMou guiaMou la CapaMou la màscara de capaMou camíMou la seleccióMou les capes i les seleccionsMou el filtre seleccionat avallMou el filtre seleccionades amuntMou: MultiplicarNavegacióNou canalColor del nou canalOpcions del nou canalNova imatgeNova capaNou camíOpcions per un nou camíNova plantillaNo es disposa de cap pinzell per utilitzar amb aquesta eina.Ja no es troba disponibleNo s'han trovat camins en '%s'No s'han trovat camins en memòria intermèdiaNo hi ha patrons disponibles per a aquesta operació.No hi ha res seleccionat per traçar.CapCap (el més ràpid)NormalNormal (128x128)No és un fitxer vàlidNo hi ha prou capes visibles per una fusió. Almenys n'hi ha d'haver dues.No hi ha prou camins visibles per una fusió. Almenys n'hi ha d'haver dos.DesplaçamentDesplaça canalDesplaçament dibuixableDesplaça capaDesplaça màscara de capaDesplaçament:Al discEn màquines multiprocessador, si el GIMP ha estat compilat amb --enable-mp, defineix quants processadors usarà el GIMP simultàniament.Només a la memòriaOpacitatOpacitat:Obre imatgeObre fitxer de text (UTF-8)Obre el diàleg de selecció de pinzell Obre el diàleg de selecció de tipus de lletraObre el diàleg de selecció de degradatObre el diàleg de selecció de patróNo s'ha pogut obrir '%s': +Spencer Kimball, Peter Mattis i l'equip de desenvolupament del GIMP.El fitxer de consells del GIMP no s'ha pogut analitzar correctament.Sembla que manca el fitxer de consells del GIMPQuant al GIMPFiltres actiusAfegeix canal alfaAfegeix àncoraAfegeix un canalAfegeix guiesAfegeix guia horitzontalAfegeix capaAfegeix una màscara de capaAfegeix camíAfegeix traçatAfegeix capa de textAfegeix guia verticalAfegeix una màscara a la capaAfegeix text a la imatgeAfegeix el color actual a l'historial de colorAfegeix el filtre seleccionat a la llista de filtres actius.Afegeix a la selecció actualS'està afegint el tema '%s' (%s) +AddicióAjusta la brillantor i el contrastAjusta el balanç de colorAjusta les corbes de colorAjusta els nivells de colorAjusta la brillantor i el contrastAjusta el balanç de colorAjusta les corbes de colorAjusta els nivells de colorAjusta to i saturacióAjust automàtic dels nivellsAjustamentCompensació:VaporitzadorVaporitzador amb pressió variableAlineatAlineacióTots els canalsTotes les imatges i les dades per desfer que no caben en la memòria cau de mosàics s'escriuen en un fitxer d'intercanvi. Caldria posar-lo en un sistema de fitxers local amb prou espai lliure (alguns centenars de MB). En sistemes UNIX, potser voldreu fer servir el directori temporal del sistema ("/tmp" o "/var/tmp").Deixa regions completament transparents per omplirPermet seleccionar regions completament transparentsAlfaAlfa a seleccióAlfa:Ancora selecció flotantAngle:SuavitzatAparençaAplica una màscara de capaAplica llindarEsteu segur que voleu suprimir '%s' de la llista i del disc?Esteu segur que voleu suprimir la plantilla '%s' de la llista i del disc?Demana confirmació abans de tancar una imatge sense desar.Relació d'aspecte:Adjunta paràsitAdjunta paràsit a la imatgeAdjunta paràsit a l'elementAutor:AutomàticCàrrega automàticaFiltres disponiblesTipus disponibles:FonsColor de fons definit:Fons: %d, %d, %dÀrea base plena en totes les capes visiblesSelecció base en totes les capes visiblesDarrereBisellNegre:MesclaMescla: Mescla: No és vàlida per a les imatges indexades.S'està mesclant...BlauBlau:DifuminaDesenfoca o afilaBordeja el canalBordeja la seleccióVoreja selecció perBrillantor-ContrastBrillantor-Contrast no funciona en capes indexades.Editor del pinzellCarpetes de pinzellsInterfície del pinzellPinzell:PinzellsMenú pinzellsCubellMemòria intermèdia.Menú memòria intermèdiaCremaPuntaCMYKC_olumnes:Calibra la resolució del monitorNo es pot desfer %sCancel·laNo es pot afegir una màscara de capa de dimensions diferents que la capa especificadaNo es pot afegir una màscara de capa a una capa sense un canal alfa.No es pot afegir una màscara de capa a una capa que no és part d'una imatge.No es pot ancorar aquesta capa perquè no és una selecció flotant.No es pot crear una capa nova a partir de la selecció flotant perquè pertany a una màscara de la capa o del canal.No es pot crear la carpeta '%s': %sNo es pot crear la previsualitzacióNo s'ha pogut escapçar perquè la selecció actual està buida.No es pot expandir ${%s}No s'ha pogut flotar la selecció perquè l'àrea seleccionada està buida.No es pot pujar la capa sense informació de transparènciaNo es pot desar. No hi ha res seleccionat.No es pot traçar un canal buit.No es pot traçar un camí buit.Mida del llençCentre X:CentratCanvia el color de fonsCanvia el color de primer plaCanvia la resolució d'imatgeCanvia unitats d'imatgeCanvia perspectiva de la capa o seleccióCanalAtributs del canalNom del canal:El canal no es pot baixar més.El canal no es pot pujar més.Canal a seleccióCanal:CanalsMenú canalsTria estil de traçatNetejaAclareix el canalFeu un clic a "Continua" per acceptar els paràmetres anteriors.Feu clic a "Continua" per crear la vostra carpeta personal del GIMP.Feu clic a "Continua" per entrar a la instal·lació d'usuari del GIMP.Clica per connectar aquesta àncora amb l'extrem seleccionat.Clica per crear una nova àncora. (proveu tecla de majúscula)Clica per crear un nou component del camí.Clica per crear un nou camí.Clica per suprimir aquesta àncora.Clica per inserir una àncora en el camí. (proveu tecla de majúscula)Clica per crear aquest node angular.Clica per obrir el camíClica al camí per editar-loCliqueu per actualitzar la previsualització +%s Cliqueu per forçar l'actualització, encara que la previsualització estigui actualitzada.Clica i arrossega per canviar l'ombra de la corba. (tecla de majúscula: simétriques)Clica i arrossega per moure el contorn del ancoratge.Clica i arrossega per moure el contorn dels ancoratges.Clica i arrossega per moure el contorn del component (proveu tecla de majúscula)Clica i arrossega per moure el contorn de la nansa (proveu tecla de majúscula)Clica i arrossega per moure el contorn del camí.Clic: seleccionaClic: selecciona Arrossega: mouTallat a la mida de la capa del fonsTallat a mida de la imatgeClonaTanca aquesta pestanyaColorBalanç de colorFiltres de visualització de colorsCapturador de colorInformació del capturador de colorEl balanç de color només funciona en capes de color RGB.Color:_Tipus d'acolorit per al segment_Tipus d'acolorit per a la seleccióAcoloreixL'acoloriment només funciona en capes de color RGB.Acoloreix la imatgeAcoloreix la imatgeMapa de colorsColumnes:Con_trast:Configura graellaConfigura la graella de la imatgeConfirmeu la mida de la imatgeConnecta traçatsConstantTancamentEls cursors relatius al context són interessants. Es fan servir per defecte. De totes maneres, suposen una sobrecàrrega que potser no desitgeu.ContinuaContribucionsConverteixConverteix la voraConverteix imatge a escala de grisosConverteix imatge a indexatConverteix imatge a colors indexatsConverteix imatge a RGBEnvoltaTipus d'envolta %sCopia l'objecte anomenatS'està copiant el fitxer '%s' des de '%s'...Copyright:Hi ha un segment corrupte %d al fitxer de degradat '%s'.No s'ha pogut crear '%s': %sNo s'ha pogut crear el fitxer temporal per a '%s': %sNo s'ha pogut esborrar '%s': %sNo s'ha pogut obrir '%s' en llegir: %sNo s'ha pogut obrir '%s' per escriure: %sNo s'ha pogut obrir la miniatura '%s': %sNo s'han pogut llegir %d bytes des de '%s': %sNo s'ha pogut cercar en el fitxer XCF: %sRecompte:Crea nova plantillaCrea una nova imatgeCrea una capa novaCrea nova plantillaCrea una nova visualització per a aquesta imatgeCrea una nova imatge des de la plantilla seleccionadaCrea una nova plantillaCreeu i editeu imatges o fotografiesCreeu i editeu caminsS'està creant la carpeta '%s'...EscapçaEscapça i canvia la midaInformació d'escapçat i canvi de midaEscapça la imatgeEscapça la capaEscapça o canvia la mida d'una imatgeEscapça: Només creuCúbic (millor)Tipus de corbaCorbesLes corbes de les capes indexades no es poden ajustar.PersonalitzaRetallaRetalla l'objecte anomenatCianCian:TraçatData:Aparença predeterminada en mode a pantalla completaAparença predeterminada en mode normalGraella per defecteGraella d'imatge per defecte:Suprimeix àncoraSuprimeix la màscara de capaSuprimeix segmentSuprimeix la plantillaSuprimeix opcions desades...Suprimeix la plantilla seleccionadaSuprimeix aquesta imatgeDesaturaLa desaturació només funciona en capes de color RGB.DescripcióDissenyaEstat del dispositiuDispositiusMenú diàlegsDiferènciaColor directeDescarta informació de textVisualitzacióNavegació de la visualitzacióProcediments de visualitzacióS'està visualitzant [%0.6f, %0.6f]FondreDistància:Distància: %0.6fS'està convertint en tramatDivideixVoleu tornar a iniciar amb totes les opcions d'eina per defecte?Llista de l'historialDocumentsMenú documentsEsvaeixTraçats de l'esvaïment o crematEsvaeix/cremaArrossega àncoraArrossega àncoresArrossega corbaArrossega nansaArrossega camíArrossega: mouDibuixa en tintaProcediments dibuixablesDeixa capa novaDeixa camí nouDegut a l'absència d'alguns tipus de lletra, la funcionalitat del text no està disponible.Duplica la plantilla seleccionadaS'ha produït un error: No es pot desferEditaEdita els atributs del canalEdita el color del canalEdita la entrada de la paleta de colorEdita els atributs de la capaEdita modeEdita color de la paletaEdita els atributs del camíEdita plantillaProcediments d'edicióEdita la plantilla seleccionadaSelecció el·lipticaBuida la capa de text Nom de variable buida en fitxer d'entorn %sHabiliteu-lo per visualitzar un consell del GIMP a l'inici.Habiliteu-lo per visualitzar rètols indicadors de funció.EnormeIntroduïu un nom per a la paleta fusionadaAnomena les opcions desadesIntroduïu un nom per a aquesta memòria intermèdiaAnomena aquesta plantillaAnomena les opcions desadesEntornCarpetes d'entornEqualitzaEqualize no funciona en capes indexades.Esborra fins al fons o la transparènciaGoma d'esborrarConsola d'errorsMenú consola d'errorsS'ha produït un error en desar el fitxer XCF: %sS'ha produït un error quan s'analitzava '%s' a la línia %d: %sS'ha produít un error en llegir '%s': %sS'ha produït un error en escriure '%s': %sS'ha produït un error en escriure XCF: %sS'ha produït un error en escriure el fitxer '%s': +%sS'ha produït un error en escriure '%s': %sS'ha produït un error en escriure el fitxer temporal per a '%s': %s +No s'ha creat cap fitxerS'ha produït un error en escriure el fitxer temporal per a '%s': %s +El fitxer original no ha estat tocat.ErrorsAmpliat tant com calguiExporta camí a SVGExposició:Dispositius d'entrada extesos:Primer pla a fons (HSV en sentit horari)Primer pla a fons (HSV en sentit antihorari)De primer pla a fons (HSV)De primer pla a fons (RGB)De primer pla a transparentPrimer pla/FonsColor de primer pla/Color de fonsS'ha produït un error d'anàlisi fatal en el fitxer de pinzell '%s': el fitxer sembla truncat.S'ha produït un error d'anàlisi fatal en el fitxer de pinzell '%s': El fitxer és corrupte.S'ha produït un error d'anàlisi fatal en el fitxer de pinzell '%s': no és un fitxer de pinzell del GIMP.S'ha produït un error d'anàlisi fatal en el fitxer de pinzell '%s': versió desconeguda de pinzell del GIMP.S'ha produït un error d'analisi fatal en el fitxer de pinzells '%s': profunditat desconeguda %d.S'ha produït un error d'anàlisi fatal en el fitxer de pinzells '%s': versió desconeguda %d.S'ha produït un error d'anàlisi fatal en el fitxer de pinzell '%s': no es pot fer servir la profunditat de pinzell %d +Els pinzells del GIMP han de ser GRIS (escala de grisos) o RGBA (paleta de colors).S'ha produït un error fatal d'anàlisi: el fitxer de degradat '%s' és corrupte.S'ha produït un error d'anàlisi fatal: '%s' no és un fitxer de degradat del GIMP.S'ha produït un error fatal d'anàlisi en el fitxer de paleta '%s': manca l'encapçalament màgic.S'ha produït un error fatal d'anàlisi en el fitxer de paleta '%s': manca l'encapçalament màgic. +Cal convertir aquest fitxer des del DOS?S'ha produït un error fatal d'anàlisi en el fitxer de paleta '%s': Error de lectura en la línia %d.S'ha produït un error fatal d'anàlisi en el fitxer de patró '%s': no s'han pogut llegir %d bytes: %sS'ha produït un error fatal d'anàlisi en el fitxer de patró '%s': versió de format de patró %d desconeguda.S'ha produït un error fatal d'anàlisi en el fitxer de patró '%s': no es suporta la profunditat de patró %d. +Els patrons del GIMP han de ser GRIS o RGB.Suavitza el canalSuavitza la seleccióSuavitza selecció perOperacions amb fitxersOmple el canalOmple la opacitat:Manera d'omplir %sOmple amb el color de fonsOmple amb el color de primer plaOmple amb el patróOmple amb transparènciaOmple amb blancOmple amb un degradat de colorOmple amb un color o un patróOmplertLa capa fusionada resultant hauria de ser:S'estan cercant les regions contígüesS'està cercant colors similarsAplana la imatgeVoltejaVolteja el canalVolteja la capaVolteja camíVolteja la capa de textManera de voltejar %sVolteja la capa o la seleccióS'està voltejant...Flota seleccióSelecció flotant a capaSeleccions flotantsFocusCarpetaCarpetesCarpetes de tipus de lletraInterfície del tipus de lletraTipus de lletraMenú tipus de lletraPer instal·lar el GIMP correctament, cal crear una carpeta anomenada '%s'.Primer plaColors de primer pla i de fons. Els quadrats blancs i negres restableixen els colors. Les fletxes canvien els colors. Feu doble clic per obrir el diàleg de selecció de color.Color de primer pla definit:Primer pla: %d, %d, %dSelecció lliureMaSelecció difosaEl GIMPExtensió del GIMPMissatge del GIMPAjust del rendiment del GIMPConnector per al GIMPInici del GIMPEditor de text del GIMPConsell del dia del GIMPInstal·lació d'usuari del GIMPEl GIMP no ha pogut inicialitzar la interfície gràfica d'usuari +Assegureu-vos que el vostre entorn de visualització està configurat adequadament.La instal·lació del GIMP no és adequada per a l'usuari actual. +La instal·lació d'usuari ha estat omesa ja que s'ha usat el senyalador '--no-interface'. +Per realitzar una instal·lació d'usuari, executeu el GIMP sense el senyalador '--no-interface'.El GIMP utilitza una quantitat limitada de memòria per emmagatzemar les dades de la imatge, anomenada "Memòria cau de mosàics". Us caldrà ajustar-ne la mida per encabir-la a la memòria. Tingueu en compte la quantitat de memòria que utilitzen altres processos en execució.El GIMP fa servir un fitxer gtkrc addicional que el podeu configurar perquè es vegi diferent d'altres aplicacions GTK.Versió del GIMPEl GIMP advertirà a l'usuari si es vol crear una imatge que ocupi més memòria que la que s'especifica aquí.GammaGeneralGeneralment només afecta a visualitzacions de 8-bits, això especifica el nombre mínim de colors creats en memòria pel GIMP.Obté la resolució del monitorGegantProcediments del GimprcEditor de degradatsMenú editor de degradatsCarpetes de degradatsColor del límit esquerre del segment degradatColor del límit dret del segment degradatInterfície del degradatDegradat:DegradatsMenú degradatsGrisEscala de grisosVerdVerd:GraellaEngrandeix el canalAugmenta la seleccióAugmenta selecció perGuiaProcediments de guiaHSVHSV (%0.3f, %0.3f, %0.3f)Posició de la nansa: %0.6fDuresaDuresa:AlçadaAlçada:Navegador d'ajudaSistema d'ajudaProcediments d'ajudaHex:RessaltatsHinting altera el contorn del tipus de lletra per produïr un mapa de bits esmicolatHistogramaEscala de l'histogramaHistorialHoritzontalCompensació horitzontal de la primera línia de graella; ha de ser un número negatiu.Espaiat horitzontal de les línies de graella.Quants fitxers d'imatge recentment oberts es mantenen al menú Fitxer.ToTo-SaturacióTo-Saturació només funciona en capes de color RGB.To:ImmensI_matgeI_nterval:IconaSi estan disponibles, s'utilitzaran hints sobre el tipus de lletra, però podeu preferir utilitzar sempre el hinter automàticNom de variable ilegal en fitxer d'entorn %s: %sImatgeInformació de la imatgeMenú imatgeMida de la imatgeFormat d'imatge de la barra d'estatPlantilles d'imatgeFormat de títol d'imatge i de barra d'estatFormat de títol d'imatgeAparença de la finestra d'imatgeFinestres d'imatgesMàscara d'imatgeLa resolució de la imatge està fora de limits. En el seu lloc es fa servir la resolució per defecte.ImatgesMenú imatgesOpcions d'importacióImporta una paletaImporta camíImporta camins des de SVGImporta una paleta novaCamí importatIn_verteix màscaraIncrementalSagnat:Indexació de la primera líniaÍndex:IndexatColor indexatConversió a colors indexatsFinestra d'informacióInicialitza la màscara de la capa a:S'estan inicialitzant els connectorsS'està inicialitzant el connector: '%s' +TintaDispositius d'entrada:Nivells d'entradaInserta àncoraLa instal·lació ha fallat. Poseu-vos en contacte amb l'administrador del sistema.La instal·lació s'ha completat correctament. Feu clic a "Continua"Actualització immediataInterfícieProcediment intern del GIMPProcediments internsInterpolació:Creua amb la selecció actualInterseccions (creus)Interseccions (punts)Cadena de text UTF-8 invàlidaHi ha dades UTF-8 invàlides al fitxer '%s'.Hi ha una cadena de text UTF-8 invàlida en fitxer XCFHi ha una cadena de text UTF-8 invàlida en el fitxer de pinzell '%s'Hi ha una cadena de text UTF-8 invàlida en el fitxer de degradat '%s'Hi ha una cadena de text UTF-8 invàlida en el fitxer de paleta '%s'Hi ha una cadena de text UTF-8 invàlida en el fitxer de patró '%s'.Hi ha una seqüencia de caràcters invàlida a l'URIL'amplada o l'alçada no són vàlides. Totes dues han de ser positives.InverteixInverteix el canalInverteix la seleccióLa inversió no funciona amb capes indexades.Justifica:Conserva la transparènciaLes dreceres del teclat es poden redefinir dinàmicament en el GIMP. El menurc conté un buidatge de la vostra configuració; es pot recuperar per a la sessió següent. Podeu editar aquest fitxer, si voleu, però és molt més fàcil definir les tecles des del GIMP. Si suprimiu aquest fitxer es restauraran les dreceres per defecte.Dreceres de teclatHoritzontalGranGran (256x256)Previsualitzacions més gransDarrer error:CapaLa capa '%s' no te informació de transparència. La capa s'ha ficat damunt seu.Atributs de la capaTipus d'omplert de capaMàscara de capa a seleccióSelecció de capa_Nom de la capa:No es pot baixar la capa més avall.No es pot pujar la capa més amunt.La capa ja és a sota de tot.La capa ja és a dalt de tot.Capa a mida de la imatgeCapesMenú capesOpcions de fusió de capesColor del límit esquerreLongitut:Permet al GIMP que intenti restaurar la darrera sessió desada en cada inici.NivellsEls nivells de les capes indexades no es poden ajustar.LíniaE_stil de línia:Estil de línia utilitzat per a la graellaLinealCarregaCarrega les corbesCarrega nivellsS'està carregant una previsualització ...Ubicació:LogarítmicS'estan cercant els fitxers de dadesAbaixa el canalAbaixa el canal fins baixAbaixa la capaCapa al capdavallAbaixa el camíAbaixa la capa fins a la part inferiorMagentaMagenta:AugmentaGestiona el mòduls carregablesOpacitat de la màscara:Matriu:Profunditat màxima:Màxima diferència de colorMitja:MesuraMesura distàncies i anglesMesura distàncies i anglesMitjana:MitjàFusiona al capdavallFusiona les capesFusiona paletaFusiona les capes visiblesFusiona els camins visiblesProcediments de missatgeMissatge repetit %d vegades.Missatge repetit una sola vegada.Tons mitjansMiscel·làniaCaputxaModeMode:Modifica color seleccionatModifica els nivells de color del rang seleccionatModifica tots els colorsModifica l'espaiat de la líniaCarpetes de mòdulsGestor del mòdulMòdulsMouMou àncoresMou el canalMou guiaMou la capaMou la màscara de capaMou camíMou la seleccióMou les capes i les seleccionsMou el filtre seleccionat avallMou el filtre seleccionades amuntMou: MultiplicaNavegacióNou canalColor del nou canalOpcions del nou canalNova imatgeNova capaNou camíOpcions per a un nou camíNova plantillaNo es disposa de cap pinzell per utilitzar amb aquesta eina.Ja no es troba disponibleNo s'han trobat camins en '%s'No s'han trobat camins en memòria intermèdiaNo hi ha patrons disponibles per a aquesta operació.No hi ha res seleccionat per traçar.CapCap (el més ràpid)NormalNormal (128x128)No és un fitxer vàlidNo hi ha prou capes visibles per a una fusió. Almenys n'hi ha d'haver dues.No hi ha prou camins visibles per a una fusió. Almenys n'hi ha d'haver dos.DesplaçaDesplaça canalDesplaçament dibuixableDesplaça capaDesplaça màscara de capaDesplaçament:Al discEn màquines multiprocessador, si el GIMP ha estat compilat amb --enable-mp, defineix quants processadors usarà el GIMP simultàniament.Només a la memòriaOpacitatOpacitat:Obre imatgeObre fitxer de text (UTF-8)Obre el diàleg de selecció de pinzell Obre el diàleg de selecció de tipus de lletraObre el diàleg de selecció de degradatObre el diàleg de selecció de patróNo s'ha pogut obrir '%s': %sNo s'ha pogut obrir '%s': %sOpcions: -Origen X:Amplada original:Altres (%s) ...Nivells de sortidaSobreposarS'ha produït un error en cridar la base de dades de procediments al procedir '%s': +Origen X:Amplada original:Nivells de sortidaSobreposaS'ha produït un error en cridar la base de dades de procediments per al procediment '%s': El tipus d'argument #%d està mal emparellat (s'esperava %s, i s'ha obtingut %s)S'ha produït un error en cridar la base de dades de procediments: -no s'ha trobat el procediment '%s'PintaOpcions de pintura compartits entre einesProcediments d'eines de pinturaEina de pintarPinta amb pinzells de traç difúsPinta els pixels dels contornsPinta utilitzant patrons o regions de la imatgePinzellPaletaEditor de PaletaMenú Editor de PaletaCarpeta de paletesInterfície de paleta_Nom de paleta:PaletesMenú PaletesProcediments paràsitsParàsitsS'està analitzant '%s' -EnganxaCapa enganxadaCamíAtributs del camíEl camí no es pot abaixar més.El camí no es pot apujar més.Camí a lseleccióCaminsMenú CaminsPatróCarpetes de patronsInterfície de patróPatronsMenú PatronsLlapisPercentatge d'amplada de pinzellPercentil:Carpeta personal del GIMPPerspectivaInformació de la transformació de la perspectivaPerspectiva...Tria mode %sTria els colors de la imatgePíxelsPíxels:Espereu mentre es crea la vostra carpeta personal en el GIMP...Espereu...ConnectorEntorn de connectorCarpetes de connectorsEl connector no ha pogut obrir la imatgeEl connector no ha pogut desar la imatgeEl connector ha fallat: "%s" +no s'ha trobat el procediment '%s'PintaProcediments d'eines de pinturaEina de pintar:Pinta amb pinzells de traç difósPinta els píxels de les vores duresPinta utilitzant patrons o regions de la imatgePinzellPaletaEditor de paletaMenú editor de paletaCarpeta de paletesInterfície de paleta_Nom de paleta:PaletesMenú paletesProcediments paràsitsParàsitsS'està analitzant '%s' +EnganxaCapa enganxadaCamíAtributs del camíEl camí no es pot baixar més.El camí no es pot pujar més.Camí a seleccióCaminsMenú caminsPatróCarpetes de patronsInterfície de patróPatronsMenú patronsLlapisPercentatge d'amplada de pinzellPercentil:Carpeta personal del GIMPPerspectivaInformació de la transformació de la perspectivaPerspectiva...Tria mode %sTria els colors de la imatgePíxelsPíxels:Espereu mentre es crea la vostra carpeta personal en el GIMP...Espereu...ConnectorEntorn de connectorCarpetes de connectorsEl connector no ha pogut obrir la imatgeEl connector no ha pogut desar la imatgeEl connector ha fallat: "%s" (%s) -El connector que ha fallat pot haver fet malbé l'estat intern del GIMP. Potser convé que deseu les imatges i torneu a iniciar el GIMP per treballar sobre segur.La resposta del connector és correcta però no es veu cap imatge.ConnectorsConnectorEls connectors i les extensions són programes externs executats pel GIMP que proporcionen una funcionalitat addicional. Aquests programes es cerquen en executar el programa i la informació sobre la seva funcionalitat i temps mod s'emmagatzema en aquest fitxer. Se suposa que aquest fitxer només es pot llegir des del GIMP i no s'ha d'editar.PoligonalVerticalPosició: %0.6fPosterizePosterize (Redueix nombre de colors)Posterize no funciona en capes indexadesPreferènciesPressió:PrevisualitzaLa previsualització està caducada.PrevisualitzacionsS'han produït problemes analitzant el text paràsit per capa '%s': +El connector que ha fallat pot haver fet malbé l'estat intern del GIMP. Potser convé que deseu les imatges i torneu a iniciar el GIMP per treballar sobre segur.La resposta del connector és correcta però no es veu cap imatge.ConnectorsConnectorEls connectors i les extensions són programes externs executats pel GIMP que proporcionen una funcionalitat addicional. Aquests programes es cerquen en executar el programa i la informació sobre la seva funcionalitat i temps de modificació s'emmagatzema en aquest fitxer. Se suposa que aquest fitxer només es pot llegir des del GIMP i no s'ha d'editar.PoligonalVerticalPosició: %0.6fPosterizePosterize (Redueix nombre de colors)Posterize no funciona en capes indexades.PreferènciesPressió:PrevisualitzaLa previsualització està caducada.PrevisualitzacionsS'han produït problemes analitzant el text paràsit per a capa '%s': %s -Algunes propietats del text poden estar malament. A no ser que es vulgui editar la capa del text, no cal preocupar-se.Base de dades proceduralBase de dades de procedimentsEn procésPseudo colorFinalitat:ConsultaS'estan consultant nous connectorsS'està consultant connector:'%s' -Màscara ràpidaRGBRGB (%d, %d, %d)Color RGBRGB-buitRGBA (%0.3f, %0.3f, %0.3f, %0.3f)Torna a mostrar "%s"RadialRadi:Incrementa el canalApuja el canal fins daltAixeca la capaCapa al capdamuntAixeca el CamíApuja la capa fins a la part superiorAixeca la visualització d'aquesta imatgeVelocitatRàtio:Torna a ensenyar l'últimTorna a _centrar els punts mitjos a la seleccióTorna a _centrar el punt mig del segmentTorna a distribuir els cursors al segmentTorna a distribuir les nanses en la seleccióRe_peteix "%s"S'està llegint el fitxer de paleta '%s': S'ha perdut el component VERD en la línia %d.S'està llegint el fitxer de paleta '%s': El nombre de columnes a la línia %d és invàlid. S'utilitzaran els valors per defecteS'està llegint el fitxer de paleta '%s': S'ha perdut el component BLAU en la línia %d.S'està llegint el fitxer de paleta '%s': S'ha perdut el component VERMELL en la línia %d.S'està llegint el fitxer de paleta '%s': El valor RGB està fora de límits en la línia %d.Selecció de rectangleVermellVermell:Torna a ferRedueix la imatge a un nombre fix de colorsRedueix la imatge a dos colors fent servir un llindarRegistratTorna a carregar tema actualRecorda l'eina actual, patró, color i pinzell entre sessions del GIMP.Allunya imatgeSuprimeix el canalEsborra guiaSuprimeix la capaSuprimeix el paràsit de la imatgeSuprimeix paràsit del elementEsborra CamíSuprimeix els filtres seleccionats de la llista de filtres actius.Canvia el nom del canalCanvia el nom de la capaCanvia el nom del camíTorna a nomenar les opcions d'eina desadesRender traçatReordena el canalReordena la capaRepeteix l'últimRepeteix:Canvia la selecció actualReplicaReplica el segment degradatReplica la selecció degradadaReplica el segmentReplica la seleccióTorna opcions d'eina a valor inicialTorna el filtre seleccionat als valors predeterminatsCanvi de midaRedimensiona el canalCanvia la mida de la imatgeCanvia la mida de la capaRedimensiona camíS'està redimensionant...Resolució:Consum dels recursosConfiguració de recursosRestaura opcions des de...Restaura les dreceres de teclat desades en cada inici del GIMPTorna a estat anteriorTornar-ho a ferInverteix imatgeNo es pot tornar endarrera. No hi ha cap nom de fitxer associat a aquesta imatge.No s'ha pogut carregar el fitxer sense canvis '%s': +Algunes propietats del text poden estar malament. A no ser que es vulgui editar la capa del text, no cal preocupar-se.Base de dades de prodedimentsBase de dades de procedimentsEn procésPseudo colorFinalitat:ConsultaS'estan consultant nous connectorsS'està consultant el connector:'%s' +Màscara ràpidaRGBRGB (%d, %d, %d)Color RGBRGB-buitRGBA (%0.3f, %0.3f, %0.3f, %0.3f)_Torna a mostrar "%s"RadialRadi:Apuja el canalApuja el canal fins daltApuja la capaCapa al capdamuntApuja el camíApuja la capa fins a la part superiorAixeca la visualització d'aquesta imatgeProporcióProporció:Torna a ensenyar l'últimTorna a _centrar els punts mitjos a la seleccióTorna a _centrar el punt mig del segmentTorna a distribuir les _nanses en el segmentTorna a distribuir les _nanses en la seleccióRe_peteix "%s"S'està llegint el fitxer de paleta '%s': manca el component VERD en la línia %d.S'està llegint el fitxer de paleta '%s': El nombre de columnes a la línia %d és invàlid. S'utilitzaran els valors per defecteS'està llegint el fitxer de paleta '%s': manca el component BLAU en la línia %d.S'està llegint el fitxer de paleta '%s': manca el component VERMELL en la línia %d.S'està llegint el fitxer de paleta '%s': El valor RGB està fora de límits en la línia %d.Selecció rectangularVermellVermell:Torna a ferRedueix la imatge a un nombre fix de colorsRedueix la imatge a dos colors fent servir un llindarRegistratTorna a carregar _tema actualRecorda l'eina actual, patró, color i pinzell entre sessions del GIMP.Allunya imatgeSuprimeix el canalEsborra guiaSuprimeix capaSuprimeix el paràsit de la imatgeSuprimeix paràsit de l'elementEsborra camíSuprimeix els filtres seleccionats de la llista de filtres actius.Reanomena el canalReanomena la capaReanomena el camíReanomena les opcions d'eina desadesDibuixa el traçReordena el canalReordena la capaRepeteix l'últimRepeteix:Canvia la selecció actualReplicaReplica el segment degradatReplica la selecció degradadaReplica el segmentReplica la seleccióRestableix les opcions d'einaRestableix els valors predeterminats del filtre seleccionatCanvia de midaRedimensiona el canalCanvia la mida de la imatgeCanvia la mida de la capaRedimensiona camíS'està redimensionant...Resolució:Consum dels recursosConfiguració de recursosRestaura opcions des de...Restaura les dreceres de teclat desades en cada inici del GIMPTorna a estat anteriorTornar-ho a ferDeixa imatge com abansNo es pot tornar endarrere. No hi ha cap nom de fitxer associat a aquesta imatge.No s'ha pogut carregar el fitxer sense canvis '%s': -%sColor del límit dretGiraGira el canalGira la CapaGira camíGira la capa de textGira la capa o la seleccióS'està girant...Informació de la rotacióRodóSat.:SaturacióDesaDesa '%s' com a POV-RayDesa les corbesDesa el registre d'errors al fitxerDesa la imatgeDesa nivellsDesa opcions d'einaDesa una còpia de la imatgeDesa els canvis de les dreceres de teclat al GIMP.Desa els paràmetres de les corbes al fitxerDesa l'estat del dispositiuDesa els paràmetres dels nivells al fitxerDesa opcions a...Desa les posicions i les mides dels diàlegs principals quan el GIMP acabi.Opcions desadesS'està desant '%s' +%sColor del límit dretGiraGira el canalGira la capaGira camíGira la capa de textGira la capa o la seleccióS'està girant...Informació de la rotacióRodóSat.:SaturacióDesaDesa '%s' com a POV-RayDesa les corbesDesa el registre d'errors al fitxerDesa la imatgeDesa nivellsDesa opcions d'einaDesa una còpia de la imatgeDesa els canvis de les dreceres de teclat al sortir del GIMP.Desa els paràmetres de les corbes al fitxerDesa l'estat del dispositiuDesa els paràmetres dels nivells al fitxerDesa opcions a...Desa les posicions i les mides dels diàlegs principals en sortir del GIMP.Opcions desadesS'està desant '%s' No s'ha pogut desar '%s': -%sEscalaEscala el canalEscala la imatgeEscala la capaEscala camiEscala la capa o la seleccióEscalatS'està escalant...TisoresPantallaCarpetes Script-FuFitxers de seqüènciaSelecciona-ho totSelecciona carpetes de pinzellsSelecciona per colorSelecciona colorSelecciona les carpetes d'entornSelecciona carpetes de tipus de lletraSelecciona carpetes de degradatsSelecciona les carpetes de mòdulsNo seleccionis resSelecciona lcarpetes de paletesSelecciona carpetes de patronsSelecciona carpetes de connectorsSelecciona color primari a modificarSeleciona el rang a modificarSelecciona carpetes Script-FuSelecciona origenSeleccioneu un temaSelecciona carpetes de temesSelecciona relació d'aspecte de l'ampliacióSelecciona per colorSelecciona les regions contínuesSelecciona regions el·líptiquesSelecciona les regions a mà alçadaSelecciona regions rectangularsSelecciona les regions per colorSelecciona les ombres de la imatgeSelecciona el nombre de cops -que s'ha de replicar el segment seleccionat.Selecciona el nombre de cops -que s'ha de replicar la selecció.Selecciona el nombre de parts uniformes -en què vulgueu partir els segments de la selecció.Selecciona el nombre de parts uniformes -en què vulgueu partir el segment seleccionat.SeleccióEditor de seleccióMàscara de seleccióProcediments d'eines de seleccióSelecció: Selecció: afegirSelecció: creuarSelecció: reemplaçarSelecció: sostreureSensibilitatDefineix el color d'emplenat del llençDefineix el color del canalDefineix la opacitat del canalDefineix mida del llenç de la imatgeDefineix només element enllaçatDefineix només element visibleDefineix mida del marc de la capaEstableix el nom des de textDefineix un màxim de memòria que es pot usar per imatge per mantenir operacions a la pila de desfer. Sense fer cas d'aquests paràmetres, al menys es poden desfer tants nivells de refer com s'hagin configurat.Definiu el navegador que usareu per visualitzar l'ajudaDefineix el color d'emplenat del llenç que s'usarà quan el mode d'emplenat es defineixi com a color personalitzat.Definiu el nivell d'interpolació a usar per l'escalat i altres transformacions.Defineix com es visualitza la transparència en les imatges.Defineix el nombre mínim de operacions que es poden tornar a fer. Es poden mantenir més nivells fins arribar al límit de la mida per tornar a fer.Definiu el mode de cursor que usarà el GIMP.Defineix la mida del tauler usat per visualitzar transparències.Definiu la mida de la previsualització de navegació disponible en el cantó inferior dret de la finestra de la imatge.Defineix la mida de les previsualitzacions en la història de desfer.Defineix la ubicació del fitxer d'intercanvi. El GIMP fa servir un esquema d'ubicació de memòria basat en mosaic. El fitxer d'intercanvi s'usa per intercanviar amb el disc la memòria mosaic d'una manera ràpida i fàcil. Tingueu en compte que el fitxer d'intercanvi pot creixer molt si el GIMP es fa servir amb imatges grans. També, les coses poden anar molt lentes si el fitxer d'intercanvi es crea en un directori muntat sobre NFS. Per aquestes raons, es desitjable posar el vostre fitxer d'intercanvi a "tmp".Defineix el directori d'emmagatzematge temporal. Els fitxers apareixeran aqui durant la sessió del GIMP. La majoria de fitxers despareixen quan el GIMP acaba, però d'altres hi seguiran sent, així que és millor que aquest directori no sigui un dels compartits amb altres usuaris.Definiu el text que apareixarà en les barres d'estat de les finestres d'imatgeDefiniu el text que apareixarà en lels títols de les finestres d'imatges.Defineix si el GIMP crearà previsualitzacions de capes i canals. És útil tenir previsualitzacions en el diàleg de capes i canals però la velocitat pot minvar quan es treballi amb imatges grans.OmbresOmbraOmbra:AfilaEnfosqueix el canalEncongeix la seleccióRetallaRetalla la capa o la seleccióInformació de retallS'està retallant...Mostra la barra d'es_tatMostra les barres de _desplaçamentMostra _guiesMostra el _marc de la capaMostra la barra de _menúMostra forma d'us de la memòriaMostra un consell la propera vegada que s'iniciï el GIMPMostrar el percentatge del zoomMostra la relació d'aspecte de l'ampliacióEncongeix el canalEncongeix la seleccióEncongeix des de la vora de la imatgeEncongeix selecció perMidaMida:S'està omitint '%s': versió errònia de protocol del GIMP.PetitPrevisualitzacions més petitesSuauSuavitza perfilsTacaTaca la imatgeSòlidOrigenEspaiatEspaiat:Fitxer especialEspecifica com ha de dibuixar-se l'àrea al voltant de la imatgeVelocitat de moviment en el contorn de selecció. Aquest valor és en milisegons (menys temps indica més velocitat).Velocitat:ParteixParteix el segment degradat uniformementParteix segments degradats uniformementParteix el segment uniformementParteix el segment _uniformementParteix el segment per la _meitatParteix segments uniformementParteix els segments _uniformement...Parteix els segments per la _meitatQuadratEstàndardS'estan iniciant les extensionsS'està iniciant l'extensió: '%s' -Estat:Color estàticGris estàticDesviació estàndardPuntejatsTraça camíTraça la seleccióSostraccióSostreu de la selecció actualSupermostratgePlantillesMenú PlantillesProcediment temporalTextColor de textCapa de textProcediments de textEl GIMPEl pinzell actiu. +%sEscalaEscala el canalEscala la imatgeEscala la capaEscala camíEscala la capa o la seleccióEscalatS'està escalant...TisoresPantallaCarpetes Script-FuFitxers de seqüènciaSelecciona-ho totSelecciona carpetes de pinzellsSelecciona per colorSelecciona colorSelecciona les carpetes d'entornSelecciona carpetes de tipus de lletraSelecciona carpetes de degradatsSelecciona les carpetes de mòdulsNo seleccionis resSelecciona carpetes de paletesSelecciona carpetes de patronsSelecciona carpetes de connectorsSelecciona color primari a modificarSeleciona el rang a modificarSelecciona carpetes Script-FuSelecciona origenSelecciona temaSelecciona carpetes de temesSelecciona relació d'aspecte del zoomSelecciona per colorSelecciona les regions contígüesSelecciona regions el·líptiquesSelecciona les regions a mà alçadaSelecciona regions rectangularsSelecciona regions per colorSelecciona les formes de la imatgeSeleccioneu el nombre de cops +que s'ha de replicar el segment seleccionat.Seleccioneu el nombre de cops +que s'ha de replicar la selecció.Seleccioneu el nombre de parts uniformes +en què vulgueu partir els segments de la selecció.Seleccioneu el nombre de parts uniformes +en què vulgueu partir el segment seleccionat.SeleccióEditor de seleccióMàscara de seleccióProcediments d'eines de seleccióSelecció: Selecció: afegeixSelecció: creuaSelecció: reemplaçaSelecció: sostreuSensibilitatDefineix el color d'emplenat del llençDefineix el color del canalDefineix l'opacitat del canalDefineix mida del llenç de la imatgeDefineix només element enllaçatDefineix només element visibleDefineix mida del límit de la capaDefineix un màxim de memòria que es pot usar per imatge per mantenir operacions a la pila de refer. Sense fer cas d'aquests paràmetres, almenys es poden desfer tants nivells de refer com s'hagin configurat.Definiu el navegador que usareu per visualitzar l'ajuda.Defineix el color d'emplenat del llenç que s'usarà quan el mode d'emplenat es defineixi com a color personalitzat.Defineix quin navegador web extern s'utilitzarà. Aquest pot ser un camí absolut o el nom d'un executable a cercar pel camí d'usuari. Si l'ordre conté '%s' serà reemplaçat amb la URL, si no, la URL s'afegirà a l'ordre amb un espai separant tots dos.Definiu el nivell d'interpolació a usar per l'escalat i altres transformacions.Defineix com es visualitza la transparència en les imatges.Defineix el nombre mínim de operacions que es poden desfer. Es poden mantenir més nivells fins arribar al límit de la mida per desfer.Definiu el mode de cursor que usarà el GIMP.Defineix la mida del tauler usat per visualitzar transparències.Definiu la mida de la previsualització de navegació disponible en el cantó inferior dret de la finestra de la imatge.Defineix la ubicació del fitxer d'intercanvi. El GIMP fa servir un esquema d'ubicació de memòria basat en mosaic. El fitxer d'intercanvi s'usa per intercanviar amb el disc la memòria mosaic d'una manera ràpida i fàcil. Tingueu en compte que el fitxer d'intercanvi pot creixer molt si el GIMP es fa servir amb imatges grans. També, el sistema pot anar molt lent si el fitxer d'intercanvi es crea en un directori muntat sobre NFS. Per aquestes raons, es desitjable posar el vostre fitxer d'intercanvi a "tmp".Defineix el directori d'emmagatzematge temporal. Els fitxers apareixeran aqui durant la sessió del GIMP. La majoria de fitxers despareixen quan el GIMP acaba, però d'altres hi seguiran sent, així que és millor que aquest directori no sigui un dels compartits amb altres usuaris.Definiu el text que apareixarà en les barres d'estat de les finestres d'imatge.Definiu el text que apareixarà en els títols de les finestres d'imatges.Defineix si el GIMP crearà previsualitzacions de capes i canals. És útil tenir previsualitzacions en el diàleg de capes i canals però la velocitat pot minvar quan es treballi amb imatges grans.OmbresOmbraOmbra:AfilaAfila el canalEncongeix la seleccióRetallaRetalla la capa o la seleccióInformació de retallS'està retallant...Mostra la barra d'es_tatMostra les barres de _desplaçamentMostra _guiesMostra el _marc de la capaMostra la barra de _menúMostra l'us de la memòriaMostra un consell la propera vegada que s'iniciï el GIMPMostra el percentatge de l'ampliacióMostra la relació d'aspecte de l'ampliacióEncongeix el canalEncongeix la seleccióEncongeix des de la vora de la imatgeEncongeix selecció perMidaMida:S'està ometent '%s': versió errònia de protocol del GIMP.PetitPrevisualitzacions més petitesSuauSuavitza les voresTacaTaca la imatgeSòlidOrigenEspaiatEspaiat:Especifica com ha de dibuixar-se l'àrea al voltant de la imatge.Velocitat de moviment en el contorn de selecció. Aquest valor és en milisegons (menys temps indica més velocitat).Velocitat:ParteixParteix el segment degradat uniformementParteix segments degradats uniformementParteix el segment uniformementParteix el segment _uniformement...Parteix el segment per la _meitatParteix segments uniformementParteix els segments _uniformement...Parteix els segments per la _meitatQuadratEstàndardS'estan iniciant les extensionsS'està iniciant l'extensió: '%s' +Estat:Color estàticGris estàticDesviació estàndard:PuntejatsTraça camíTraça la seleccióSostraccióSostreu de la selecció actualPlantillesMenú plantillesProcediment temporalTextColor de textCapa de textProcediments de textEl GIMPEl pinzell actiu. Feu clic per obrir el diàleg del pinzell.El degradat actiu. Feu clic per obrir el diàleg de degradats.El patró actiu. -Feu clic per obrir el diàleg del patro.El color de fons de la graella; només s'utilitza en l'estil del ínia de doble traçat.No s'ha pogut convertir el nom de fitxer '%s' a un URI vàlid: +Feu clic per obrir el diàleg del patro.El color de fons de la graella; només s'utilitza en l'estil de línia de doble traçat.No s'ha pogut convertir el nom de fitxer '%s' a un URI vàlid: -%sEl color de primer pla de la graella.El gimprc s'utilitza per emmagatzemar les preferències personals que poden afectar al comportament per defecte del GIMP. Els camins per buscar pinzells, paletes, degradats, patrons, connectors i mòduls també es poden configurar aquí.La sessionrc es fa servir per emmagatzemar les finestres de diàleg obertes l'últim cop que es va sortir del GIMP. Podeu configurar el GIMP per obrir-les de nou a la posició desada.El caché de mosàic s'usa per assegurar que el GIMP no mogui mosaics entre memòria i disc. En incrementar el valor, el GIMP utilitzarà menys espai d'intercanvi, però també més memòria. Per contra, una mida més petita de la memòria caché farà que el GIMP utilitzi més espai d'intercanvi i menys memòria.La unitat utilitzada per coordenades quan no és en mode punt a punt.L'unitrc s'utilitza per emmagatzemar la vostra base de dades de les unitats. Podeu definir unitats addicionals i utilitzar-les tal com utilitzeu les polzades, mil·límetres, punts i piques que ja venen predefinits. Aquest fitxer es sobreescriu cada vegada que sortiu del GIMP.Resolució vertical de la imatge.El tipus de finestra aconsella que s'especifiqui en les finestres desplegables. Això pot afectar a com el vostre gestor de finestres decora i maneja les finestrs desplegables.El tipus de finestra aconsella que s'especifiqui en la caixa d'eines. Això pot afectar a com el vostre gestor de finestres decora i maneja la finestra de la caixa d'eines.TemaCarpetes de temesTemesNo hi ha prou capes visibles per a una fusió.No sempre és possible trobar un equilibri entre la memòria i la velocitat. En la majoria dels casos, el GIMP prefereix la velocitat per sobre de l'us de memòria. De totes maneres, si disposeu de poca memòria proveu d'activar aquest paràmetre.No hi ha cap capa ni canal actiu d'on copiar.No hi ha cap capa ni canal actiu d'on tallar.No hi ha cap capa ni canal actiu on traçarNo hi ha cap capa ni canal actiu on traçar.Hi hauria d'haver un fitxer anomenat '%s'. Comproveu la vostra instal·lació.Hi ha hagut un error en analitzar el fitxer '%s'. S'utilitzaran els valors per defecte. S'ha creat una còpia de seguretat de la vostra configuració a '%s'.Aquest fitxer disposa d'una col·lecció de mides estandar que serveixen com a plantilles d'imatge.En aquesta carpeta es cerquen plantilles d'imatge.En aquesta carpeta es cerquen temes personalitzats.Aquesta carpeta s'utiliza per emmagatzemar tipus de lletra que voleu veure només al GIMP. El GIMP comprova aquesta carpeta a més dels tipus de lletra de la instal·lació del sistema quan es busquen tipus de lletra. Utilitzar-la si només voleu tenir tipus de lletra del GIMP. Si no en podeu posar més en el vostre directori de tipus de lletra global.Aquesta carpeta s'utilitza per emmagatzemar fitxers de paràmetres per a l'eina Corba.Aquesta carpeta s'utilitza per emmagatzemar fitxers de paràmetres per a l'eina Nivells.Aquesta carpeta s'utilitza per emmagatzemar opcions d'eina.Aquesta carpeta s'utiliza per emmagatzemar fitxers de seqüència creats i instal·lats per l'usuari. El GIMP comprova aquesta carpeta a més de la carpeta de fitxers de seqüència per defecte del sistema quan es cerquen fitxers de seqüència.Aquesta carpeta s'utiliza per emmagatzemar mòduls DLL creats per l'usuari, temporals o en general no suportats pel sistema. El GIMP comprova aquest subdirectori a més del directori de mòduls del sistema GIMP quan es cerquen mòduls que s'han de carregar en la inicialització.Aquesta carpeta s'utiliza per emmagatzemar connectors creats per l'usuari, temporals o en general no suportats pel sistema. El GIMP comprova aquest subdirectori a més dels directoris del sistema GIMP quan es cerquen fitxers de modificació de l'entorn dels connectors.Aquesta carpeta s'utiliza per emmagatzemar connectors creats per l'usuari, temporals o en general no suportats pel sistema. El GIMP comprova aquest subdirectori a més dels directoris del sistema GIMP quan es cerquen connectors.Aquesta carpeta s'utiliza per emmagatzemar pinzells definits per l'usuari. El GIMP comprova aquesta carpeta a més dels pinzells instal·lats al GIMP quan es busquen pinzells.Aquesta carpeta s'utiliza per emmagatzemar degradats definits per l'usuari. El GIMP comprova aquest subdirectori a més dels degradats de la instal·lació del sistema GIMP quan es cerquen degradats.Aquesta carpeta s'utiliza per emmagatzemar paletes definits per l'usuari. El GIMP comprova aquest subdirectori a més de les paletes de la instal·lació del sistema GIMP quan es cerquen paletes.Aquesta carpeta s'utiliza per emmagatzemar patrons definits per l'usuari. El GIMP comprova aquest subdirectori a més dels patrons de la instal·lació del sistema GIMP quan es cerquen patrons.Aquesta carpeta s'utiliza per emmagatzemar algunes memòries intermèdies per desfer amb la intenció de reduir l'ús de memòria. Si el GIMP s'interromp de manera anòmala, poden quedar fitxers en aquesta carpeta amb la forma següent: gimp<#>.<#>. Són fitxers inútils per a les sessions GIMP i es poden eliminar tranquil·lament.Aquesta carpeta contindrà un nombre important de fitxers. Feu clic en un d'aquests fitxers o carpetes de l'arbre per aconseguir més informació sobre l'ítem seleccionat.Aquest programa es distribueix amb l'esperança que serà útil, però SENSE CAP GARANTIA; ni tan sols les garanties implícites de la COMERCIALITZACIÓ o de l'ADEQUACIÓ A UN ÚS DETERMINAT. Consulteu la llicència pública general de GNU per a més informació.Aquest programa és de lliure distribució; el podeu distribuir i/o modificar sota els termes de la llicència pública general de GNU publicada per la Free Software Foundation, ja sigui la versió 2 de la Llicència o (com desitgeu) qualsevol versió posterior.El comentari per defecte està limitat a %d caràcters.Aquesta eina no té opcions.LlindarEl llindar no funciona en capes indexades.Llindar:Miniatura %d de %dInclinació:DiminutTítol i estatOpcions d'einaMenú Opcions d'einaCommutador d'eines %sMenú caixa d'einesEinesTransfereix alfa a màscaraTransformaTransforma el canalTransforma direccióTransforma la capaTransforma camíProcediments d'eines de transformacióTransformacióS'està transformant...Traduït perTransparènciaColor realTipusTipus %sNo es pot afegir una màscara de capa ja que la capa ja en té una.No es pot retallar o copiar perquè l'àrea seleccionada està buida.No definitDesfésHistorial de desferUnitatsDesconegutTipus de fitxer desconegut.DescarregaSense nomSense títolUtiliza totes les capes visibles al encongir la seleccióRegistre de la instal·lació de l'usuariInterfície d'usuariValorValor:La versió %s ha estat desenvolupada perVersió:VerticalCompensació vertical de la primera línia de graella; ha de ser un número negatiu.Espaiat vertical de les línies de graella.Navegador webQuan sigui activat, el diàleg segueix automàticament la imatge en que s'està trballantQuan sigui activat, totes les eines de pintura mosten una previsualització del contorn de pinzell actual.Quan sigui activat, una imatge es tornarà la imatge activa quan la seva finestra rebi el focus. Això s'utilitza per gestors de finestres fent anar "clica al focus".Quan sigui activat, el menus no es poden desprendre.Quan sigui activat, en prèmer F1 s'obrirà el navegador d'ajuda.Quan sigui activat, el GIMP no desa si la imatge no s'ha canviat des de que s'ha obert.Quan sigui activat, el GIMP utilitzarà una finestra d'informació diferent per a cadascuna de les visualitzacions d'imatges.Quan sigui activat, es preguntarà la posició del ratolí cada vegada que hi hagi un event de moviment. Això significa que pintar amb pinzells grans serà més precís, però també més lent.Quan sigui activat, es veu la graella per defecte. Això també es pot commutar amb l'ordre "Visualitza->Mostra graella".Quan sigui activat, es veuen els regles. Això també es pot commutar amb l'ordre "Visualitza->Mostra regles".Quan sigui activat, en apropar i allunyar les imatges, la finestra es redimensionarà sola.Quan sigui activat, sempre que canviï la mida de la imatge, la finestra es redimensionarà sola.Quan sigui activat, es veu el marc de la capa per defecte. Això també es pot commutar amb l'ordre "Visualitza->Mostra marc de la capa".Quan sigui activat, es veu la barra de menú. Això també es pot commutar amb l'ordre "Visualitza->Mostra barra de menú".Quan sigui activat, es veuen els regles. Això també es pot commutar amb l'ordre "Visualitza->Mostra Regles".Quan sigui activat, es veuen les barres de desplaçament. Això també es pot commutar amb l'ordre "Visualitza->Mostra barra de desplaçament".Quan sigui activat, es veu la selecció per defecte. Això també es pot commutar amb l'ordre "Visualitza->Mostra selecció".Quan sigui activat, es mostra la barra d'estat. Això també es pot commutar amb l'ordre "Visualitza->Mostra Barra d'Estat".Quan sigui activat, assegura que cada pixel d'una imatge és mapejat com a pixel en la pantalla.Quan sigui activat, assegura que tota la imatge és visible un cop obert el fitxer; si no, es mostrarà a escala 1:1Quan sigui activat, es poden canviar les dreceres de teclat pels elements de menú prement una combina de tecles mentre l'element del menú està resaltat.BlancAmpladaAmplada:Gestió de finestraPosicions de la finestraS'està escrivint '%s' -S'ha produït un error en el XCF: no es pot treballar amb fitxers XCF versió %dAdvertència del XCF: la versió 0 no desava +%sEl color de primer pla de la graella.El gimprc s'utilitza per emmagatzemar les preferències personals que poden afectar al comportament per defecte del GIMP. Els camins per buscar pinzells, paletes, degradats, patrons, connectors i mòduls també es poden configurar aquí.El (fitxer) sessionrc es fa servir per emmagatzemar les finestres de diàleg obertes l'últim cop que es va sortir del GIMP. Podeu configurar el GIMP per obrir-les de nou a la posició desada.La memòria cau de mosàics s'utilitza per assegurar que el GIMP no mogui mosaics entre memòria i disc. En incrementar el valor, el GIMP utilitzarà menys espai d'intercanvi, però també més memòria. Per contra, una mida més petita de la memòria cau farà que el GIMP utilitzi més espai d'intercanvi i menys memòria.La unitat utilitzada per a coordenades es mostra quan no és en mode punt a punt.L'unitrc s'utilitza per emmagatzemar la vostra base de dades de les unitats. Podeu definir unitats addicionals i utilitzar-les tal com utilitzeu les polzades, mil·límetres, punts i piques que ja venen predefinits. Aquest fitxer es sobreescriu cada vegada que sortiu del GIMP.Resolució vertical de la imatge.El tipus de finestra hint que es defineix en les finestres desplegables. Això pot afectar a com el vostre gestor de finestres decora i maneja les finestres desplegables.El tipus de finestra que es defineix en la caixa d'eines. Això pot afectar a com el vostre gestor de finestres decora i gestiona la finestra de la caixa d'eines.TemaCarpetes de temesTemesNo hi ha prou capes visibles per a una fusió.No sempre és possible trobar un equilibri entre la memòria i la velocitat. En la majoria dels casos, el GIMP prefereix la velocitat per sobre de l'us de memòria. De totes maneres, si disposeu de poca memòria proveu d'activar aquest paràmetre.No hi ha cap capa ni canal actiu on traçarNo hi ha cap capa ni canal actiu on traçar.Hi hauria d'haver un fitxer anomenat '%s'. Comproveu la vostra instal·lació.Hi ha hagut un error en analitzar el fitxer '%s'. S'utilitzaran els valors per defecte. S'ha creat una còpia de seguretat de la vostra configuració a '%s'.Aquest fitxer disposa d'una col·lecció de mides estàndard que serveixen com a plantilles d'imatge.En aquesta carpeta es cerquen plantilles d'imatge.En aquesta carpeta es cerquen temes personalitzats.Aquesta carpeta s'utiliza per emmagatzemar tipus de lletra que voleu veure només al GIMP. El GIMP comprova aquesta carpeta a més dels tipus de lletra de la instal·lació del sistema quan es busquen tipus de lletra. Utilitzar-la si només voleu tenir tipus de lletra del GIMP. Si no en podeu posar més en el vostre directori de tipus de lletra global.Aquesta carpeta s'utilitza per emmagatzemar fitxers de paràmetres per a l'eina Corba.Aquesta carpeta s'utilitza per emmagatzemar fitxers de paràmetres per a l'eina Nivells.Aquesta carpeta s'utilitza per emmagatzemar opcions d'eina.Aquesta carpeta s'utiliza per emmagatzemar fitxers de seqüència creats i instal·lats per l'usuari. El GIMP comprova aquesta carpeta a més de la carpeta de fitxers de seqüència per defecte del sistema quan es cerquen fitxers de seqüència.Aquesta carpeta s'utiliza per emmagatzemar mòduls DLL creats per l'usuari, temporals o en general no suportats pel sistema. El GIMP comprova aquest subdirectori a més del directori de mòduls del sistema GIMP quan es cerquen mòduls que s'han de carregar en la inicialització.Aquesta carpeta s'utiliza per emmagatzemar connectors creats per l'usuari, temporals o en general no suportats pel sistema. El GIMP comprova aquest subdirectori a més dels directoris del sistema GIMP quan es cerquen fitxers de modificació de l'entorn dels connectors.Aquesta carpeta s'utiliza per emmagatzemar connectors creats per l'usuari, temporals o en general no suportats pel sistema. El GIMP comprova aquest subdirectori a més dels directoris del sistema GIMP quan es cerquen connectors.Aquesta carpeta s'utiliza per emmagatzemar pinzells definits per l'usuari. El GIMP comprova aquesta carpeta a més dels pinzells instal·lats al GIMP quan es busquen pinzells.Aquesta carpeta s'utiliza per emmagatzemar degradats definits per l'usuari. El GIMP comprova aquest subdirectori a més dels degradats de la instal·lació del sistema GIMP quan es cerquen degradats.Aquesta carpeta s'utiliza per emmagatzemar paletes definits per l'usuari. El GIMP comprova aquest subdirectori a més de les paletes de la instal·lació del sistema GIMP quan es cerquen paletes.Aquesta carpeta s'utiliza per emmagatzemar patrons definits per l'usuari. El GIMP comprova aquest subdirectori a més dels patrons de la instal·lació del sistema GIMP quan es cerquen patrons.Aquesta carpeta s'utiliza per emmagatzemar algunes memòries intermèdies per desfer amb la intenció de reduir l'ús de memòria. Si el GIMP s'interromp de manera anòmala, poden quedar fitxers en aquesta carpeta amb la forma següent: gimp<#>.<#>. Són fitxers inútils per a les sessions GIMP i es poden eliminar tranquil·lament.Aquesta carpeta contindrà un nombre important de fitxers. Feu clic en un d'aquests fitxers o carpetes de l'arbre per aconseguir més informació sobre l'ítem seleccionat.Aquest programa es distribueix amb l'esperança que serà útil, però sense cap garantia; ni tan sols les garanties implícites de la comercialització o de l'adequació a un ús determinat. Consulteu la llicència pública general de GNU per a més informació.Aquest programa és de lliure distribució; el podeu distribuir i/o modificar sota els termes de la llicència pública general de GNU publicada per la Free Software Foundation, ja sigui la versió 2 de la Llicència o (com desitgeu) qualsevol versió posterior.Aquest camp d'entrada de text està limitat a %d caràcters.Aquesta eina no té opcions.LlindarEl llindar no funciona en capes indexades.Llindar:Miniatura %d de %dInclinació:DiminutTítol i estatOpcions d'einaMenú opcions d'einaCommutador d'eina %sMenú caixa d'einesEinesTransfereix alfa a màscaraTransformaTransforma el canalDirecció de la trasformacióTransforma la capaTransforma camíProcediments d'eines de transformacióTransformacióS'està transformant...Traduït perTransparènciaColor realTipusTipus %sNo es pot afegir una màscara de capa ja que la capa ja en té una.No es pot retallar o copiar perquè l'àrea seleccionada està buida.No definitDesfésHistorial de desferUnitatsDesconegutTipus de fitxer desconegutDescarregaSense nomSense títolUtiliza totes les capes visibles en encongir la seleccióRegistre de la instal·lació d'usuariInterfície d'usuariValorValor:La versió %s ha estat desenvolupada perVersió:VerticalCompensació vertical de la primera línia de graella; ha de ser un número negatiu.Espaiat vertical de les línies de graella.Navegador webQuan sigui activat, el diàleg segueix automàticament la imatge en que s'està treballantQuan sigui activat, totes les eines de pintura mosten una previsualització del contorn de pinzell actual.Quan sigui activat, una imatge es tornarà la imatge activa quan la seva finestra rebi el focus. Això s'utilitza per gestors de finestres fent anar "clica al focus".Quan sigui activat, el menús no es poden desprendre.Quan sigui activat, en prémer F1 s'obrirà el navegador d'ajuda.Quan sigui activat, el GIMP no desarà si la imatge no s'ha canviat des que s'ha obert.Quan sigui activat, el GIMP utilitzarà una finestra d'informació diferent per a cadascuna de les visualitzacions d'imatges.Quan sigui activat, el servidor X es preguntarà la posició del ratolí cada vegada que hi hagi un event de moviment. Això significa que pintar amb pinzells grans serà més precís, però també més lent. Peversament, en alguns servidors X activar aquesta opció genera un pintat més ràpid.Quan sigui activat, es veu la graella per defecte. Això també es pot commutar amb l'ordre "Visualitza->Mostra graella".Quan sigui activat, es veuen els regles. Això també es pot commutar amb l'ordre "Visualitza->Mostra regles".Quan sigui activat, en apropar i allunyar les imatges, la finestra es redimensionarà sola.Quan sigui activat, sempre que canviï la mida de la imatge, la finestra es redimensionarà sola.Quan sigui activat, es veu el límit de la capa per defecte. Això també es pot commutar amb l'ordre "Visualitza->Mostra marc de la capa".Quan sigui activat, es veu la barra de menú. Això també es pot commutar amb l'ordre "Visualitza->Mostra barra de menú".Quan sigui activat, es veuen els regles. Això també es pot commutar amb l'ordre "Visualitza->Mostra regles".Quan sigui activat, es veuen les barres de desplaçament. Això també es pot commutar amb l'ordre "Visualitza->Mostra barres de desplaçament".Quan sigui activat, es veu la selecció per defecte. Això també es pot commutar amb l'ordre "Visualitza->Mostra selecció".Quan sigui activat, es veu la barra d'estat. Això també es pot commutar amb l'ordre "Visualitza->Mostra Barra d'Estat".Quan sigui activat, assegura que cada pixel d'una imatge és mapejat com a pixel en la pantalla.Quan sigui activat, assegura que tota la imatge és visible un cop obert el fitxer; si no, es mostrarà a escala 1:1.Quan sigui activat, es poden canviar les dreceres de teclat pels elements de menú prement una combinació de tecles mentre l'element del menú està ressaltat.BlancAmpladaAmplada:Gestió de finestraPosicions de la finestraS'està escrivint '%s' +S'ha produït un error en el XCF: no es pot treballar amb fitxers XCF versió %dAvís del XCF: la versió 0 no desava correctament els mapes de color indexats. -S'està substituint el mapa d'escala de grisos.GrocGroc:Pots deixar el diàlegs desplegables aquí.Heu d'haver rebut una còpia de la llicència pública general de GNU amb aquest programa; si no és així, demaneu-la a la Free Software Foundation, Inc. , 59 Temple Place - Suite 330, Boston, MA 02111-1307, EUA.Cal que reinicialitzeu el GIMP per a que els canvis tinguin efecte:Opcions de zoom i canvi de midaZoom 1:1Zoom totalAmplia el zoomRedueix el zoomRelació d'aspecte de l'ampliacióRelació d'aspecte de l'ampliació:Factor de zoom: %d:1Amplia el zoomAmplia i redueix el zoomRedueix el zoomZoom:[ Imatge base ]_Suavitzat_Automàtic_BS'està mesclant la funció pel segmentS'està mesclant la funció per la selecció_Brillantor:_Pinzell_CSuprimeix el segmentSuprimeix la selecció_Volteja el segment_Voltejar la selecció_GDe_gradat_Horitzontal:_To:_Icona:_Importa_Lluminositat:_M_Manualment:_Nom:_Patró_Previsualitza_R_Torna a fer_Torna a fer %s_Replica el segment_Replica la selecció_Saturació:_Selecció_DesfésDesfés %s_Vertical:_X:_Y_Y:_Zoom (%s)colorscòpiapppS'esperava 'yes' o 'no' per l'element booleà %s. S'obtingué '%s'S'ha produït un error fatal d'anàlisiescala de grisosescala de grisos-buidapolzadapolzadesindexatindexat-buitCadena de text UTF-8 invàlidaEl valor '%ld' és invalid per l'element %sEl valor '%s' és invàlid per a l'element %smil·límetremil·límetresn/apercentatgepicapiquespíxelpíxelspíxels/%apíxels/%spuntpuntstips-locale:catraductor-créditsEl valor per a l'element %s no és una cadena de text UTF-8 vàlidaAnalitzant l'element '%s': %s \ No newline at end of file +S'està substituint el mapa d'escala de grisos.GrocGroc:Podeu deixar el diàlegs desplegables aquí.Heu d'haver rebut una còpia de la llicència pública general de GNU amb aquest programa; si no és així, demaneu-la a la Free Software Foundation, Inc. , 59 Temple Place - Suite 330, Boston, MA 02111-1307, EUA.Cal que reinicialitzeu el GIMP perquè els següents canvis tinguin efecte:Comportament de zoom i canvi de midaZoom 1:1Zoom totalAmplia el zoomRedueix el zoomRelació d'aspecte del zoomRelació d'aspecte del zoom:Factor de zoom: %d:1Amplia el zoomAmplia i redueix el zoomRedueix el zoom[ Imatge base ]Su_avitzat_Automàtic_BS'està _mesclant la funció per al segmentS'està _mesclant la funció per a la selecció_Brillantor:_C_Suprimeix el segment_Suprimeix la selecció_Volteja el segment_Volteja la selecció_GDe_gradat_Horitzontal:_To:_Icona:_Importa_Lluminositat:_M_Manualment:_Nom:_Previsualitza_R_Torna a fer_Torna a fer %s_Replica el segment..._Replica la selecció..._Saturació:_Selecció_Desfés_Desfés %s_Vertical:_X:_Y_Y:colorscòpiapppS'esperava 'yes' o 'no' per a l'element booleà %s. S'obtingué '%s'S'ha produït un error fatal d'anàlisiescala de grisosescala de grisos-buidapolzadapolzadesindexatindexat-buitCadena de text UTF-8 invàlidaEl valor '%ld' és invàlid per a l'element %sEl valor '%s' és invàlid per a l'element %smil·límetremil·límetresn/apercentatgepicapiquespíxelpíxelspíxels/%apíxels/%spuntpuntstips-locale:caXavier Beà i PonsEl valor per a l'element %s no és una cadena de text UTF-8 vàlidaS'està analitzant l'element '%s': %s \ No newline at end of file diff -uraN gimp-2.2.0/po/ca.po gimp-2.2.1/po/ca.po --- gimp-2.2.0/po/ca.po 2004-12-19 03:11:18.000000000 +0100 +++ gimp-2.2.1/po/ca.po 2004-12-28 16:58:26.000000000 +0100 @@ -8,10 +8,10 @@ msgstr "" "Project-Id-Version: GIMP 2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-19 03:11+0100\n" -"PO-Revision-Date: 2004-03-29 11:46+0200\n" +"POT-Creation-Date: 2004-12-28 16:58+0100\n" +"PO-Revision-Date: 2004-05-05 20:42+0100\n" "Last-Translator: Xavier Beà \n" -"Language-Team: Catalan \n" +"Language-Team: Softcatala \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -26,9 +26,9 @@ "User installation was skipped because the '--no-interface' flag was used.\n" "To perform user installation, run the GIMP without the '--no-interface' flag." msgstr "" -"La instal·lació del GIMP no és adequada per l'usuari actual.\n" -"La instal·lació de l'usuari ha estat omesa ja que s'ha usat el senyalador '--" -"no-interface'.\n" +"La instal·lació del GIMP no és adequada per a l'usuari actual. \n" +"La instal·lació d'usuari ha estat omesa ja que s'ha usat el senyalador '--no-" +"interface'.\n" "Per realitzar una instal·lació d'usuari, executeu el GIMP sense el " "senyalador '--no-interface'." @@ -118,7 +118,7 @@ #: app/main.c:516 msgid " --no-cpu-accel Do not use special CPU accelerations.\n" msgstr "" -" --no-cpu-accel No utilitzis acceleradors espacials per la unitat " +" --no-cpu-accel No utilitzis acceleradors especials per la unitat " "central.\n" #: app/main.c:517 @@ -135,7 +135,7 @@ #: app/main.c:519 msgid " -i, --no-interface Run without a user interface.\n" -msgstr " -i, --no-interface Execució sense una interfície d'usuari.\n" +msgstr " -i, --no-interface Executa sense una interfície d'usuari.\n" #: app/main.c:520 msgid " --display Use the designated X display.\n" @@ -206,7 +206,8 @@ #: app/main.c:534 msgid " -b, --batch Process commands in batch mode.\n" -msgstr " -b, --batch Execució en processament per lots.\n" +msgstr "" +" -b, --batch Executa les ordres en processament per lots.\n" #: app/sanity.c:194 #, c-format @@ -249,7 +250,7 @@ #: app/actions/actions.c:105 app/pdb/internal_procs.c:101 #, fuzzy msgid "Context" -msgstr "/Ajuda/Ajuda _contextual" +msgstr "Converteix" #: app/actions/actions.c:108 msgid "Debug" @@ -263,7 +264,7 @@ #: app/actions/actions.c:114 #, fuzzy msgid "Dockable" -msgstr "Dibuixable" +msgstr "Desplaçament dibuixable" #: app/actions/actions.c:117 app/dialogs/dialogs.c:152 msgid "Document History" @@ -271,8 +272,9 @@ #: app/actions/actions.c:120 app/core/core-enums.c:1040 #: app/core/core-enums.c:1070 +#, fuzzy msgid "Drawable" -msgstr "Dibuixable" +msgstr "Desplaçament dibuixable" #: app/actions/actions.c:123 app/tools/tools-enums.c:144 msgid "Edit" @@ -306,7 +308,7 @@ #: app/actions/actions.c:141 #, fuzzy msgid "Help" -msgstr "/A_juda" +msgstr "/_Ajuda" #: app/actions/actions.c:144 app/pdb/internal_procs.c:149 #: app/tools/tools-enums.c:176 @@ -324,7 +326,7 @@ #: app/actions/actions.c:153 app/dialogs/dialogs.c:209 msgid "Palette Editor" -msgstr "Editor de Paleta" +msgstr "Editor de paleta" #. initialize the list of gimp palettes #: app/actions/actions.c:156 app/core/gimp.c:864 app/dialogs/dialogs.c:144 @@ -383,7 +385,7 @@ #: app/actions/brushes-actions.c:43 msgid "Brushes Menu" -msgstr "Menú Pinzells" +msgstr "Menú pinzells" #: app/actions/brushes-actions.c:47 #, fuzzy @@ -398,12 +400,12 @@ #: app/actions/brushes-actions.c:53 #, fuzzy msgid "D_uplicate Brush" -msgstr "/Duplica pinzell" +msgstr "/D_uplica pinzell" #: app/actions/brushes-actions.c:54 #, fuzzy msgid "Duplicate brush" -msgstr "/Duplica pinzell" +msgstr "/D_uplica pinzell" #: app/actions/brushes-actions.c:59 #, fuzzy @@ -418,31 +420,31 @@ #: app/actions/brushes-actions.c:65 #, fuzzy msgid "_Refresh Brushes" -msgstr "/Refresca pinzells" +msgstr "/_Actualitza pinzells" #: app/actions/brushes-actions.c:66 #, fuzzy msgid "Refresh brushes" -msgstr "/Refresca pinzells" +msgstr "/_Actualitza pinzells" #: app/actions/brushes-actions.c:74 #, fuzzy msgid "_Edit Brush..." -msgstr "/Edita pinzell..." +msgstr "/_Edita pinzell..." #: app/actions/brushes-actions.c:75 #, fuzzy msgid "Edit brush" -msgstr "/Edita pinzell..." +msgstr "/_Edita pinzell..." #: app/actions/buffers-actions.c:42 msgid "Buffers Menu" -msgstr "Menú Memòria intermèdia." +msgstr "Menú memòria intermèdia" #: app/actions/buffers-actions.c:46 #, fuzzy msgid "_Paste Buffer" -msgstr "/Enganxa la memòria intermèdia" +msgstr "/_Enganxa la memòria intermèdia" #: app/actions/buffers-actions.c:47 #, fuzzy @@ -452,7 +454,7 @@ #: app/actions/buffers-actions.c:52 #, fuzzy msgid "Paste Buffer _Into" -msgstr "/Enganxa la memòria intermèdia a" +msgstr "/Enganxa la memòria intermèdia _a" #: app/actions/buffers-actions.c:53 #, fuzzy @@ -462,17 +464,17 @@ #: app/actions/buffers-actions.c:58 #, fuzzy msgid "Paste Buffer as _New" -msgstr "/Enganxa memòria intermèdia com a nou" +msgstr "/Enganxa memòria intermèdia com a _nova" #: app/actions/buffers-actions.c:59 #, fuzzy msgid "Paste the selected buffer as new image" -msgstr "Torna el filtre seleccionat als valors predeterminats" +msgstr "Restableix els valors predeterminats del filtre seleccionat" #: app/actions/buffers-actions.c:64 #, fuzzy msgid "_Delete Buffer" -msgstr "/Suprimeix memòria intermèdia" +msgstr "/_Suprimeix memòria intermèdia" #: app/actions/buffers-actions.c:65 #, fuzzy @@ -481,7 +483,7 @@ #: app/actions/channels-actions.c:44 msgid "Channels Menu" -msgstr "Menú Canals" +msgstr "Menú canals" #: app/actions/channels-actions.c:48 #, fuzzy @@ -515,7 +517,7 @@ #: app/actions/channels-actions.c:66 #, fuzzy msgid "D_uplicate Channel" -msgstr "/Duplica el canal" +msgstr "/D_uplica el canal" #: app/actions/channels-actions.c:67 #, fuzzy @@ -535,12 +537,12 @@ #: app/actions/channels-actions.c:78 #, fuzzy msgid "_Raise Channel" -msgstr "/Apuja el canal" +msgstr "/_Apuja el canal" #: app/actions/channels-actions.c:79 #, fuzzy msgid "Raise channel" -msgstr "Incrementa el canal" +msgstr "Apuja el canal" #: app/actions/channels-actions.c:84 #, fuzzy @@ -555,12 +557,12 @@ #: app/actions/channels-actions.c:90 #, fuzzy msgid "_Lower Channel" -msgstr "/_Baixa el canal" +msgstr "/A_baixa el canal" #: app/actions/channels-actions.c:91 #, fuzzy msgid "Lower channel" -msgstr "Canal més baix" +msgstr "Abaixa el canal" #: app/actions/channels-actions.c:96 #, fuzzy @@ -575,7 +577,7 @@ #: app/actions/channels-actions.c:105 #, fuzzy msgid "Channel to Sele_ction" -msgstr "/Canal per a la sele_cció" +msgstr "/Canal a sele_cció" #: app/actions/channels-actions.c:106 #, fuzzy @@ -586,7 +588,7 @@ #: app/actions/vectors-actions.c:173 #, fuzzy msgid "_Add to Selection" -msgstr "/_Afegieix a la selecció" +msgstr "/_Afegeix a la selecció" #: app/actions/channels-actions.c:112 app/actions/vectors-actions.c:174 msgid "Add" @@ -648,7 +650,7 @@ #: app/actions/channels-commands.c:246 #, c-format msgid "%s Channel Copy" -msgstr "%s canal copia" +msgstr "Còpia del canal %s" #: app/actions/channels-commands.c:311 app/core/gimpselection.c:595 #: app/pdb/selection_cmds.c:921 app/pdb/selection_cmds.c:1045 @@ -705,7 +707,7 @@ #: app/actions/context-actions.c:46 #, fuzzy msgid "_Context" -msgstr "/Ajuda/Ajuda _contextual" +msgstr "Converteix" #: app/actions/context-actions.c:47 app/actions/layers-actions.c:53 #: app/actions/plug-in-actions.c:64 @@ -726,16 +728,18 @@ #: app/actions/context-actions.c:50 #, fuzzy msgid "_Tool" -msgstr "/Eines" +msgstr "/_Eines" #: app/actions/context-actions.c:51 app/dialogs/preferences-dialog.c:1627 +#, fuzzy msgid "_Brush" -msgstr "_Pinzell" +msgstr "Pinzell:" #: app/actions/context-actions.c:52 app/actions/plug-in-actions.c:78 #: app/dialogs/preferences-dialog.c:1630 +#, fuzzy msgid "_Pattern" -msgstr "_Patró" +msgstr "Patró" #: app/actions/context-actions.c:53 #, fuzzy @@ -775,7 +779,7 @@ #: app/actions/context-actions.c:61 #, fuzzy msgid "_Aspect" -msgstr "Perspectiva" +msgstr "Relació d'aspecte:" #: app/actions/context-actions.c:62 #, fuzzy @@ -817,7 +821,7 @@ #: app/actions/dialogs-actions.c:39 #, fuzzy msgid "Create New Doc_k" -msgstr "/Diàlegs/Crea nou desplegable" +msgstr "/Diàlegs/Crea nou _desplegable" #: app/actions/dialogs-actions.c:42 #, fuzzy @@ -970,32 +974,32 @@ #: app/actions/dockable-actions.c:49 msgid "Dialogs Menu" -msgstr "Menú Diàlegs" +msgstr "Menú diàlegs" #: app/actions/dockable-actions.c:53 #, fuzzy msgid "_Add Tab" -msgstr "/_Afegieix etiqueta" +msgstr "/_Afegeix pestanya" #: app/actions/dockable-actions.c:54 #, fuzzy msgid "_Preview Size" -msgstr "/Mida de previsualització" +msgstr "/_Mida de previsualització" #: app/actions/dockable-actions.c:55 #, fuzzy msgid "_Tab Style" -msgstr "/Estil d'etiqueta" +msgstr "/_Estil de pestanya" #: app/actions/dockable-actions.c:58 #, fuzzy msgid "_Close Tab" -msgstr "/Tanca etiqueta" +msgstr "/Tan_ca pestanya" #: app/actions/dockable-actions.c:63 #, fuzzy msgid "_Detach Tab" -msgstr "/_Depega etiqueta" +msgstr "/_Separa pestanya" #: app/actions/dockable-actions.c:68 #, fuzzy @@ -1010,7 +1014,7 @@ #: app/actions/dockable-actions.c:82 #, fuzzy msgid "Auto _Follow Active Image" -msgstr "/_Imatge activa" +msgstr "/Segueix la _imatge activa" #: app/actions/dockable-actions.c:101 #, fuzzy @@ -1075,12 +1079,12 @@ #: app/actions/dockable-actions.c:117 #, fuzzy msgid "I_con & Text" -msgstr "Icona i Text" +msgstr "Icona i text" #: app/actions/dockable-actions.c:118 #, fuzzy msgid "St_atus & Text" -msgstr "Estat i Text" +msgstr "Estat i text" #: app/actions/dockable-actions.c:127 #, fuzzy @@ -1094,7 +1098,7 @@ #: app/actions/documents-actions.c:42 msgid "Documents Menu" -msgstr "Menú Documents" +msgstr "Menú documents" #: app/actions/documents-actions.c:46 #, fuzzy @@ -1118,7 +1122,7 @@ #: app/actions/documents-actions.c:58 #, fuzzy msgid "File Open _Dialog" -msgstr "/Fitxer Obre _diàleg..." +msgstr "/_Diàleg per obrir fitxer" #: app/actions/documents-actions.c:59 #, fuzzy @@ -1165,11 +1169,11 @@ msgid "Remove dangling entries" msgstr "/Suprimeix les e_ntrades penjades" -#: app/actions/documents-commands.c:252 app/actions/file-commands.c:163 +#: app/actions/documents-commands.c:251 app/actions/file-commands.c:163 #: app/dialogs/file-open-dialog.c:198 app/dialogs/file-open-dialog.c:249 #: app/dialogs/file-open-location-dialog.c:193 -#: app/display/gimpdisplayshell-dnd.c:332 app/widgets/gimplayertreeview.c:802 -#: app/widgets/gimptoolbox-dnd.c:123 +#: app/display/gimpdisplayshell-dnd.c:334 app/widgets/gimplayertreeview.c:804 +#: app/widgets/gimptoolbox-dnd.c:125 #, c-format msgid "" "Opening '%s' failed:\n" @@ -1202,7 +1206,7 @@ #: app/actions/drawable-actions.c:65 #, fuzzy msgid "_Offset..." -msgstr "Desplaçament" +msgstr "Desplaça" #: app/actions/drawable-actions.c:73 app/actions/vectors-actions.c:153 #, fuzzy @@ -1210,9 +1214,8 @@ msgstr "Línia" #: app/actions/drawable-actions.c:79 app/actions/vectors-actions.c:147 -#, fuzzy msgid "_Visible" -msgstr "/_Fitxer" +msgstr "" #: app/actions/drawable-actions.c:88 app/actions/image-actions.c:141 #, fuzzy @@ -1228,17 +1231,17 @@ #: app/actions/drawable-actions.c:101 app/actions/image-actions.c:155 #, fuzzy msgid "Rotate 90 degrees _CW" -msgstr "/Capes/Transforma/Gira 90 graus (horari)" +msgstr "/Capes/Transforma/Gira 90 graus (_horari)" #: app/actions/drawable-actions.c:106 app/actions/image-actions.c:160 #, fuzzy msgid "Rotate _180 degrees" -msgstr "/Imatge/Transformacions/Gira 180 graus" +msgstr "/Imatge/Transforma/Gira _180 graus" #: app/actions/drawable-actions.c:111 app/actions/image-actions.c:165 #, fuzzy msgid "Rotate 90 degrees CC_W" -msgstr "/Imatge/Transformacions/Gira 90 graus (antihorari)" +msgstr "/Imatge/Transforma/Gira 90 graus (_antihorari)" #: app/actions/drawable-commands.c:58 msgid "Desaturate operates only on RGB color layers." @@ -1306,9 +1309,8 @@ #. GIMP_STOCK_COPY_VISIBLE, #: app/actions/edit-actions.c:93 -#, fuzzy msgid "Copy _Visible" -msgstr "/_Fitxer" +msgstr "" #: app/actions/edit-actions.c:98 #, fuzzy @@ -1328,17 +1330,17 @@ #: app/actions/edit-actions.c:113 #, fuzzy msgid "Cu_t Named..." -msgstr "Retalla i anomena" +msgstr "Retalla l'objecte anomenat" #: app/actions/edit-actions.c:118 #, fuzzy msgid "_Copy Named..." -msgstr "Copia allò designat" +msgstr "Copia l'objecte anomenat" #: app/actions/edit-actions.c:123 #, fuzzy msgid "_Paste Named..." -msgstr "/Edita/Memòria intermèdia/Enganxa l'objecte anomenat..." +msgstr "/Edita/Memòria intermèdia/_Enganxa l'objecte anomenat..." #: app/actions/edit-actions.c:128 #, fuzzy @@ -1363,7 +1365,7 @@ #: app/actions/edit-actions.c:214 #, c-format msgid "_Undo %s" -msgstr "Desfés %s" +msgstr "_Desfés %s" #: app/actions/edit-actions.c:219 #, c-format @@ -1381,36 +1383,38 @@ #: app/actions/edit-commands.c:210 msgid "Cut Named" -msgstr "Retalla i anomena" +msgstr "Retalla l'objecte anomenat" #: app/actions/edit-commands.c:213 app/actions/edit-commands.c:233 msgid "Enter a name for this buffer" -msgstr "Entra un nom per a aquesta memòria intermèdia" +msgstr "Introduïu un nom per a aquesta memòria intermèdia" #: app/actions/edit-commands.c:230 msgid "Copy Named" -msgstr "Copia allò designat" +msgstr "Copia l'objecte anomenat" #: app/actions/edit-commands.c:337 +#, fuzzy msgid "There is no active layer or channel to cut from." -msgstr "No hi ha cap capa ni canal actiu d'on tallar." +msgstr "No hi ha cap capa ni canal actiu on traçar." #: app/actions/edit-commands.c:349 app/actions/edit-commands.c:386 msgid "(Unnamed Buffer)" msgstr "(Memòria intermèdia sense nom)" #: app/actions/edit-commands.c:374 +#, fuzzy msgid "There is no active layer or channel to copy from." -msgstr "No hi ha cap capa ni canal actiu d'on copiar." +msgstr "No hi ha cap capa ni canal actiu on traçar." #: app/actions/error-console-actions.c:40 msgid "Error Console Menu" -msgstr "Menú Consola d'errors" +msgstr "Menú consola d'errors" #: app/actions/error-console-actions.c:44 #, fuzzy msgid "_Clear Errors" -msgstr "/Neteja errors" +msgstr "/_Neteja errors" #: app/actions/error-console-actions.c:45 #, fuzzy @@ -1420,12 +1424,12 @@ #: app/actions/error-console-actions.c:53 #, fuzzy msgid "Save _All Errors to File..." -msgstr "/Desa tots els errors al fitxer..." +msgstr "/Desa _tots els errors al fitxer..." #: app/actions/error-console-actions.c:54 #, fuzzy msgid "Save all errors" -msgstr "Neteja els errors" +msgstr "/Desa _tots els errors al fitxer..." #: app/actions/error-console-actions.c:59 #, fuzzy @@ -1497,7 +1501,7 @@ #: app/actions/file-actions.c:96 #, fuzzy msgid "Save a Cop_y..." -msgstr "/Fitxer/Desa una còpia..." +msgstr "/Fitxer/Desa una còp_ia..." #: app/actions/file-actions.c:101 #, fuzzy @@ -1544,12 +1548,12 @@ #: app/actions/file-commands.c:284 msgid "Revert failed. No file name associated with this image." msgstr "" -"No es pot tornar endarrera. No hi ha cap nom de fitxer associat a aquesta " +"No es pot tornar endarrere. No hi ha cap nom de fitxer associat a aquesta " "imatge." #: app/actions/file-commands.c:296 msgid "Revert Image" -msgstr "Inverteix imatge" +msgstr "Deixa imatge com abans" #: app/actions/file-commands.c:317 #, c-format @@ -1593,12 +1597,12 @@ #: app/actions/fonts-actions.c:44 msgid "Fonts Menu" -msgstr "Menú Tipus de lletra" +msgstr "Menú tipus de lletra" #: app/actions/fonts-actions.c:48 #, fuzzy msgid "_Rescan Font List" -msgstr "/Torna a escanejar la llista dels tipus de lletra" +msgstr "/To_rna a escanejar la llista dels tipus de lletra" #: app/actions/fonts-actions.c:49 #, fuzzy @@ -1607,12 +1611,12 @@ #: app/actions/gradient-editor-actions.c:46 msgid "Gradient Editor Menu" -msgstr "Menú Editor de degradats" +msgstr "Menú editor de degradats" #: app/actions/gradient-editor-actions.c:50 #, fuzzy msgid "_Load Left Color From" -msgstr "/Carrega el color esquerra des de " +msgstr "/_Carrega el color esquerra des de " #: app/actions/gradient-editor-actions.c:52 #, fuzzy @@ -1622,12 +1626,12 @@ #: app/actions/gradient-editor-actions.c:55 #, fuzzy msgid "Load Right Color Fr_om" -msgstr "/Carrega el color dret des de" +msgstr "/Carrega el c_olor dret des de" #: app/actions/gradient-editor-actions.c:57 #, fuzzy msgid "Sa_ve Right Color To" -msgstr "/Desa el color dret a" +msgstr "/_Desa el color dret a" #: app/actions/gradient-editor-actions.c:63 #, fuzzy @@ -1637,23 +1641,23 @@ #: app/actions/gradient-editor-actions.c:68 #, fuzzy msgid "R_ight Endpoint's Color..." -msgstr "/Color del límit dret..." +msgstr "/Color del límit _dret..." #: app/actions/gradient-editor-actions.c:108 #, fuzzy msgid "Ble_nd Endpoints' Colors" -msgstr "/Combi_na els colors dels extrems" +msgstr "/Mescla els _colors dels extrems" #: app/actions/gradient-editor-actions.c:113 #, fuzzy msgid "Blend Endpoints' Opacit_y" -msgstr "/Combina l'opacitat dels extrems" +msgstr "/Mescla l'_opacitat dels extrems" #: app/actions/gradient-editor-actions.c:143 #, fuzzy msgid "_Left Neighbor's Right Endpoint" msgstr "" -"/Carrega el color esquerra des de/el més proper al límit dret per l'esquerra" +"/Carrega el color esquerra des de/El més proper al límit dret per l'_esquerra" #: app/actions/gradient-editor-actions.c:148 #, fuzzy @@ -1676,7 +1680,7 @@ #, fuzzy msgid "_Right Neighbor's Left Endpoint" msgstr "" -"/Carrega el color dret des de/El més proper al límit esquerra per la dreta" +"/Carrega el color dret des de/El més proper al límit esquerra per la _dreta" #: app/actions/gradient-editor-actions.c:196 #, fuzzy @@ -1700,7 +1704,7 @@ #: app/actions/gradient-editor-actions.c:260 #, fuzzy msgid "Spherical (i_ncreasing)" -msgstr "/Mescla/Esfèrica (creixe_nt))" +msgstr "/Mescla/Esfèrica (creixe_nt)" #: app/actions/gradient-editor-actions.c:265 #, fuzzy @@ -1720,7 +1724,7 @@ #: app/actions/gradient-editor-actions.c:283 #, fuzzy msgid "HSV (_counter-clockwise hue)" -msgstr "/Tipus d'acolorit/HSV (to en sentit antihorari)" +msgstr "/Tipus d'acolorit/HSV (to en sentit _antihorari)" #: app/actions/gradient-editor-actions.c:288 #, fuzzy @@ -1757,169 +1761,169 @@ msgid "Zoom all" msgstr "Zoom total" -#: app/actions/gradient-editor-actions.c:582 +#: app/actions/gradient-editor-actions.c:589 msgid "_Blending Function for Segment" -msgstr "S'està mesclant la funció pel segment" +msgstr "S'està _mesclant la funció per al segment" -#: app/actions/gradient-editor-actions.c:584 +#: app/actions/gradient-editor-actions.c:591 msgid "Coloring _Type for Segment" -msgstr "Tipus d'acolorit pel segment" +msgstr "_Tipus d'acolorit per al segment" -#: app/actions/gradient-editor-actions.c:587 +#: app/actions/gradient-editor-actions.c:594 msgid "_Flip Segment" msgstr "_Volteja el segment" -#: app/actions/gradient-editor-actions.c:589 +#: app/actions/gradient-editor-actions.c:596 msgid "_Replicate Segment..." -msgstr "_Replica el segment" +msgstr "_Replica el segment..." -#: app/actions/gradient-editor-actions.c:591 +#: app/actions/gradient-editor-actions.c:598 msgid "Split Segment at _Midpoint" msgstr "Parteix el segment per la _meitat" -#: app/actions/gradient-editor-actions.c:593 +#: app/actions/gradient-editor-actions.c:600 msgid "Split Segment _Uniformly..." -msgstr "Parteix el segment _uniformement" +msgstr "Parteix el segment _uniformement..." -#: app/actions/gradient-editor-actions.c:595 +#: app/actions/gradient-editor-actions.c:602 msgid "_Delete Segment" -msgstr "Suprimeix el segment" +msgstr "_Suprimeix el segment" -#: app/actions/gradient-editor-actions.c:597 +#: app/actions/gradient-editor-actions.c:604 msgid "Re-_center Segment's Midpoint" msgstr "Torna a _centrar el punt mig del segment" -#: app/actions/gradient-editor-actions.c:599 +#: app/actions/gradient-editor-actions.c:606 msgid "Re-distribute _Handles in Segment" -msgstr "Torna a distribuir els cursors al segment" +msgstr "Torna a distribuir les _nanses en el segment" -#: app/actions/gradient-editor-actions.c:604 +#: app/actions/gradient-editor-actions.c:611 msgid "_Blending Function for Selection" -msgstr "S'està mesclant la funció per la selecció" +msgstr "S'està _mesclant la funció per a la selecció" -#: app/actions/gradient-editor-actions.c:606 +#: app/actions/gradient-editor-actions.c:613 msgid "Coloring _Type for Selection" -msgstr "_Tipus d'acolorit per la selecció" +msgstr "_Tipus d'acolorit per a la selecció" -#: app/actions/gradient-editor-actions.c:609 +#: app/actions/gradient-editor-actions.c:616 msgid "_Flip Selection" -msgstr "_Voltejar la selecció" +msgstr "_Volteja la selecció" -#: app/actions/gradient-editor-actions.c:611 +#: app/actions/gradient-editor-actions.c:618 msgid "_Replicate Selection..." -msgstr "_Replica la selecció" +msgstr "_Replica la selecció..." -#: app/actions/gradient-editor-actions.c:613 +#: app/actions/gradient-editor-actions.c:620 msgid "Split Segments at _Midpoints" msgstr "Parteix els segments per la _meitat" -#: app/actions/gradient-editor-actions.c:615 +#: app/actions/gradient-editor-actions.c:622 msgid "Split Segments _Uniformly..." msgstr "Parteix els segments _uniformement..." -#: app/actions/gradient-editor-actions.c:617 +#: app/actions/gradient-editor-actions.c:624 msgid "_Delete Selection" -msgstr "Suprimeix la selecció" +msgstr "_Suprimeix la selecció" -#: app/actions/gradient-editor-actions.c:619 +#: app/actions/gradient-editor-actions.c:626 msgid "Re-_center Midpoints in Selection" msgstr "Torna a _centrar els punts mitjos a la selecció" -#: app/actions/gradient-editor-actions.c:621 +#: app/actions/gradient-editor-actions.c:628 msgid "Re-distribute _Handles in Selection" -msgstr "Torna a distribuir les nanses en la selecció" +msgstr "Torna a distribuir les _nanses en la selecció" -#: app/actions/gradient-editor-commands.c:84 +#: app/actions/gradient-editor-commands.c:85 msgid "Left Endpoint Color" msgstr "Color del límit esquerre" -#: app/actions/gradient-editor-commands.c:86 +#: app/actions/gradient-editor-commands.c:87 msgid "Gradient Segment's Left Endpoint Color" msgstr "Color del límit esquerre del segment degradat" -#: app/actions/gradient-editor-commands.c:186 +#: app/actions/gradient-editor-commands.c:189 msgid "Right Endpoint Color" msgstr "Color del límit dret" -#: app/actions/gradient-editor-commands.c:188 +#: app/actions/gradient-editor-commands.c:191 msgid "Gradient Segment's Right Endpoint Color" msgstr "Color del límit dret del segment degradat" -#: app/actions/gradient-editor-commands.c:353 +#: app/actions/gradient-editor-commands.c:358 msgid "Replicate Segment" msgstr "Replica el segment" -#: app/actions/gradient-editor-commands.c:354 +#: app/actions/gradient-editor-commands.c:359 msgid "Replicate Gradient Segment" msgstr "Replica el segment degradat" -#: app/actions/gradient-editor-commands.c:358 +#: app/actions/gradient-editor-commands.c:363 msgid "Replicate Selection" msgstr "Replica la selecció" -#: app/actions/gradient-editor-commands.c:359 +#: app/actions/gradient-editor-commands.c:364 msgid "Replicate Gradient Selection" msgstr "Replica la selecció degradada" -#: app/actions/gradient-editor-commands.c:371 +#: app/actions/gradient-editor-commands.c:376 msgid "Replicate" msgstr "Replica" -#: app/actions/gradient-editor-commands.c:386 +#: app/actions/gradient-editor-commands.c:391 msgid "" "Select the number of times\n" "to replicate the selected segment." msgstr "" -"Selecciona el nombre de cops\n" +"Seleccioneu el nombre de cops\n" "que s'ha de replicar el segment seleccionat." -#: app/actions/gradient-editor-commands.c:389 +#: app/actions/gradient-editor-commands.c:394 msgid "" "Select the number of times\n" "to replicate the selection." msgstr "" -"Selecciona el nombre de cops \n" +"Seleccioneu el nombre de cops \n" "que s'ha de replicar la selecció." -#: app/actions/gradient-editor-commands.c:444 +#: app/actions/gradient-editor-commands.c:452 msgid "Split Segment Uniformly" msgstr "Parteix el segment uniformement" -#: app/actions/gradient-editor-commands.c:445 +#: app/actions/gradient-editor-commands.c:453 msgid "Split Gradient Segment Uniformly" msgstr "Parteix el segment degradat uniformement" -#: app/actions/gradient-editor-commands.c:449 +#: app/actions/gradient-editor-commands.c:457 msgid "Split Segments Uniformly" msgstr "Parteix segments uniformement" -#: app/actions/gradient-editor-commands.c:450 +#: app/actions/gradient-editor-commands.c:458 msgid "Split Gradient Segments Uniformly" msgstr "Parteix segments degradats uniformement" -#: app/actions/gradient-editor-commands.c:462 +#: app/actions/gradient-editor-commands.c:470 msgid "Split" msgstr "Parteix" -#: app/actions/gradient-editor-commands.c:478 +#: app/actions/gradient-editor-commands.c:486 msgid "" "Select the number of uniform parts\n" "in which to split the selected segment." msgstr "" -"Selecciona el nombre de parts uniformes\n" +"Seleccioneu el nombre de parts uniformes\n" "en què vulgueu partir el segment seleccionat." -#: app/actions/gradient-editor-commands.c:481 +#: app/actions/gradient-editor-commands.c:489 msgid "" "Select the number of uniform parts\n" "in which to split the segments in the selection." msgstr "" -"Selecciona el nombre de parts uniformes\n" +"Seleccioneu el nombre de parts uniformes\n" "en què vulgueu partir els segments de la selecció." #: app/actions/gradients-actions.c:44 msgid "Gradients Menu" -msgstr "Menú Degradats" +msgstr "Menú degradats" #: app/actions/gradients-actions.c:48 #, fuzzy @@ -1954,22 +1958,22 @@ #: app/actions/gradients-actions.c:66 #, fuzzy msgid "_Delete Gradient..." -msgstr "/Suprimeix el degradat..." +msgstr "/_Suprimeix el degradat..." #: app/actions/gradients-actions.c:67 #, fuzzy msgid "Delete gradient" -msgstr "/Suprimeix el degradat..." +msgstr "/_Suprimeix el degradat..." #: app/actions/gradients-actions.c:72 #, fuzzy msgid "_Refresh Gradients" -msgstr "/_Refresca degradats" +msgstr "/Actualitza deg_radats" #: app/actions/gradients-actions.c:73 #, fuzzy msgid "Refresh gradients" -msgstr "/_Refresca degradats" +msgstr "/Actualitza deg_radats" #: app/actions/gradients-actions.c:81 #, fuzzy @@ -1989,7 +1993,7 @@ #: app/actions/help-actions.c:38 app/actions/help-actions.c:41 #, fuzzy msgid "_Help" -msgstr "/A_juda" +msgstr "/_Ajuda" #: app/actions/help-actions.c:46 #, fuzzy @@ -2002,7 +2006,7 @@ #: app/actions/image-actions.c:51 app/actions/image-actions.c:55 msgid "Image Menu" -msgstr "Menú Imatge" +msgstr "Menú imatge" #: app/actions/image-actions.c:58 #, fuzzy @@ -2040,13 +2044,14 @@ msgstr "Mida del llenç" #: app/actions/image-actions.c:80 +#, fuzzy msgid "F_it Canvas to Layers" -msgstr "" +msgstr "FS a la capa" #: app/actions/image-actions.c:85 #, fuzzy msgid "_Print Size..." -msgstr "Mida d'impressió" +msgstr "Mida d'impressió_" #: app/actions/image-actions.c:90 #, fuzzy @@ -2071,7 +2076,7 @@ #: app/actions/image-actions.c:110 app/actions/layers-actions.c:138 #, fuzzy msgid "_Flatten Image" -msgstr "/_Aplana imatge" +msgstr "/A_plana imatge" #: app/actions/image-actions.c:115 #, fuzzy @@ -2113,12 +2118,12 @@ #: app/actions/image-commands.c:332 app/actions/layers-commands.c:535 msgid "Cannot crop because the current selection is empty." -msgstr "No s'ha pogut escapçar perquè l'àrea seleccionada està buida." +msgstr "No s'ha pogut escapçar perquè la selecció actual està buida." #: app/actions/image-commands.c:484 #, fuzzy msgid "Change Print Size" -msgstr "Mida d'impressió" +msgstr "Mida d'impressió_" #: app/actions/image-commands.c:508 app/core/gimpimage-scale.c:71 #: app/dialogs/image-scale-dialog.c:91 @@ -2134,12 +2139,12 @@ #: app/actions/images-actions.c:43 msgid "Images Menu" -msgstr "Menú Imatges" +msgstr "Menú imatges" #: app/actions/images-actions.c:47 #, fuzzy msgid "_Raise Views" -msgstr "/_Apuja les vistes" +msgstr "/_Apuja les visualitzacions" #: app/actions/images-actions.c:48 msgid "Raise this image's displays" @@ -2148,16 +2153,16 @@ #: app/actions/images-actions.c:53 app/actions/view-actions.c:68 #, fuzzy msgid "_New View" -msgstr "/_Nova vista" +msgstr "/_Nova visualització" #: app/actions/images-actions.c:54 msgid "Create a new display for this image" -msgstr "Crea una nova visualització per aquesta imatge" +msgstr "Crea una nova visualització per a aquesta imatge" #: app/actions/images-actions.c:59 #, fuzzy msgid "_Delete Image" -msgstr "/Suprimeix la imatge" +msgstr "/_Suprimeix la imatge" #: app/actions/images-actions.c:60 msgid "Delete this image" @@ -2165,26 +2170,25 @@ #: app/actions/layers-actions.c:48 msgid "Layers Menu" -msgstr "Menú Capes" +msgstr "Menú capes" #: app/actions/layers-actions.c:51 #, fuzzy msgid "_Layer" -msgstr "/Capes" +msgstr "/_Capes" #: app/actions/layers-actions.c:52 #, fuzzy msgid "Stac_k" -msgstr "/Capes/Pila" +msgstr "/Capes/P_ila" #: app/actions/layers-actions.c:54 app/tools/gimplevelstool.c:665 msgid "_Auto" msgstr "_Automàtic" #: app/actions/layers-actions.c:55 -#, fuzzy msgid "_Mask" -msgstr "_Mestre" +msgstr "" #: app/actions/layers-actions.c:56 #, fuzzy @@ -2194,7 +2198,7 @@ #: app/actions/layers-actions.c:58 #, fuzzy msgid "_Properties" -msgstr "Perspectiva" +msgstr "Propietats de l'element" #: app/actions/layers-actions.c:60 #, fuzzy @@ -2204,17 +2208,17 @@ #: app/actions/layers-actions.c:63 #, fuzzy msgid "Te_xt Tool" -msgstr "/Eina de _text" +msgstr "/Eina de te_xt" #: app/actions/layers-actions.c:68 #, fuzzy msgid "_Edit Layer Attributes..." -msgstr "/Edita atributs de la capa..." +msgstr "/_Edita atributs de la capa..." #: app/actions/layers-actions.c:69 #, fuzzy msgid "Edit layer attributes" -msgstr "Edició dels atributs de la capa" +msgstr "Edita els atributs de la capa" #: app/actions/layers-actions.c:74 #, fuzzy @@ -2258,17 +2262,17 @@ #: app/actions/layers-actions.c:98 #, fuzzy msgid "_Raise Layer" -msgstr "/Apuja la capa" +msgstr "/A_puja la capa" #: app/actions/layers-actions.c:99 #, fuzzy msgid "Raise layer" -msgstr "Aixeca la capa" +msgstr "Apuja la capa" #: app/actions/layers-actions.c:104 #, fuzzy msgid "Layer to _Top" -msgstr "/Capa al capdamunt" +msgstr "/Capa al capda_munt" #: app/actions/layers-actions.c:105 #, fuzzy @@ -2278,7 +2282,7 @@ #: app/actions/layers-actions.c:110 #, fuzzy msgid "_Lower Layer" -msgstr "/Abaixa la capa" +msgstr "/A_baixa la capa" #: app/actions/layers-actions.c:111 #, fuzzy @@ -2288,17 +2292,17 @@ #: app/actions/layers-actions.c:116 #, fuzzy msgid "Layer to _Bottom" -msgstr "/Capa cap al capdavall" +msgstr "/Capa cap al capda_vall" #: app/actions/layers-actions.c:117 #, fuzzy msgid "Lower layer to bottom" -msgstr "Capa cap al capdavall" +msgstr "Capa al capdavall" #: app/actions/layers-actions.c:122 #, fuzzy msgid "_Anchor Layer" -msgstr "/Ancora la capa" +msgstr "/_Ancora la capa" #: app/actions/layers-actions.c:123 #, fuzzy @@ -2323,7 +2327,7 @@ #: app/actions/layers-actions.c:148 #, fuzzy msgid "Layer B_oundary Size..." -msgstr "/Mida del marc de la capa" +msgstr "/Mida del _marc de la capa..." #: app/actions/layers-actions.c:153 #, fuzzy @@ -2343,15 +2347,14 @@ #: app/actions/layers-actions.c:168 #, fuzzy msgid "Add La_yer Mask..." -msgstr "/Afegeix màscara de capa..." +msgstr "/Afegeix màs_cara de capa..." #: app/actions/layers-actions.c:173 #, fuzzy msgid "Add Alpha C_hannel" -msgstr "/Afegeix canal alfa" +msgstr "/Afegeix ca_nal alfa" #: app/actions/layers-actions.c:181 -#, fuzzy msgid "Keep Transparency" msgstr "Conserva la transparència" @@ -2373,47 +2376,47 @@ #: app/actions/layers-actions.c:208 #, fuzzy msgid "Apply Layer _Mask" -msgstr "/Aplica màscara de capa" +msgstr "/Aplica _màscara de capa" #: app/actions/layers-actions.c:213 #, fuzzy msgid "Delete Layer Mas_k" -msgstr "/Suprimeix màscara de capa" +msgstr "/_Suprimeix màscara de capa" #: app/actions/layers-actions.c:221 #, fuzzy msgid "_Mask to Selection" -msgstr "/Màscara cap a la sele_cció" +msgstr "/Màscara a sele_cció" #: app/actions/layers-actions.c:244 #, fuzzy msgid "Al_pha to Selection" -msgstr "/Alfa cap a la selecció" +msgstr "/Al_fa a selecció" #: app/actions/layers-actions.c:249 #, fuzzy msgid "A_dd to Selection" -msgstr "/_Afegieix a la selecció" +msgstr "/_Afegeix a la selecció" #: app/actions/layers-actions.c:267 #, fuzzy msgid "Select _Top Layer" -msgstr "/Capes/Pila/Selecciona capa superior" +msgstr "/Capes/Pila/Selecciona capa s_uperior" #: app/actions/layers-actions.c:272 #, fuzzy msgid "Select _Bottom Layer" -msgstr "/Capes/Pila/Selecciona capa inferior" +msgstr "/Capes/Pila/Selecciona capa _inferior" #: app/actions/layers-actions.c:277 #, fuzzy msgid "Select _Previous Layer" -msgstr "/Capes/Pila/Selecciona capa anterior" +msgstr "/Capes/Pila/Selecciona capa _anterior" #: app/actions/layers-actions.c:282 #, fuzzy msgid "Select _Next Layer" -msgstr "/Capes/Pila/Selecciona capa següent" +msgstr "/Capes/Pila/Selecciona capa _següent" #: app/actions/layers-actions.c:290 #, fuzzy @@ -2426,11 +2429,11 @@ #: app/actions/layers-commands.c:199 msgid "Edit Layer Attributes" -msgstr "Edició dels atributs de la capa" +msgstr "Edita els atributs de la capa" #: app/actions/layers-commands.c:232 app/actions/layers-commands.c:234 #: app/actions/layers-commands.c:291 app/actions/layers-commands.c:295 -#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:840 +#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:842 msgid "New Layer" msgstr "Nova capa" @@ -2440,9 +2443,9 @@ #: app/actions/layers-commands.c:470 msgid "Set Layer Boundary Size" -msgstr "Defineix mida del marc de la capa" +msgstr "Defineix mida del límit de la capa" -#: app/actions/layers-commands.c:512 app/core/gimplayer.c:255 +#: app/actions/layers-commands.c:512 app/core/gimplayer.c:253 msgid "Scale Layer" msgstr "Escala la capa" @@ -2452,9 +2455,9 @@ #: app/actions/layers-commands.c:683 msgid "Layer Mask to Selection" -msgstr "Màscara de capa a la selecció" +msgstr "Màscara de capa a selecció" -#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1085 +#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1066 #: app/dialogs/layer-add-mask-dialog.c:62 msgid "Add Layer Mask" msgstr "Afegeix una màscara de capa" @@ -2465,12 +2468,12 @@ #: app/actions/palette-editor-actions.c:43 msgid "Palette Editor Menu" -msgstr "Menú Editor de Paleta" +msgstr "Menú editor de paleta" #: app/actions/palette-editor-actions.c:53 #, fuzzy msgid "_Delete Color" -msgstr "/Suprimeix color" +msgstr "/_Suprimeix color" #: app/actions/palette-editor-actions.c:54 #, fuzzy @@ -2480,22 +2483,22 @@ #: app/actions/palette-editor-actions.c:62 #, fuzzy msgid "New Color from _FG" -msgstr "/Nou color pel _primer pla" +msgstr "/Nou color per al _primer pla" #: app/actions/palette-editor-actions.c:63 #, fuzzy msgid "New color from FG" -msgstr "/Nou color pel _primer pla" +msgstr "/Nou color per al _primer pla" #: app/actions/palette-editor-actions.c:68 #, fuzzy msgid "New Color from _BG" -msgstr "/Nou color pel _fons" +msgstr "/Nou color per al _fons" #: app/actions/palette-editor-actions.c:69 #, fuzzy msgid "New color from BG" -msgstr "/Nou color pel _fons" +msgstr "/Nou color per al _fons" #: app/actions/palette-editor-actions.c:77 app/actions/view-actions.c:215 #, fuzzy @@ -2522,22 +2525,22 @@ #: app/actions/palettes-actions.c:44 msgid "Palettes Menu" -msgstr "Menú Paletes" +msgstr "Menú paletes" #: app/actions/palettes-actions.c:48 #, fuzzy msgid "_New Palette" -msgstr "_Nova paleta" +msgstr "/_Nova paleta" #: app/actions/palettes-actions.c:49 #, fuzzy msgid "New palette" -msgstr "_Nova paleta" +msgstr "/_Nova paleta" #: app/actions/palettes-actions.c:54 #, fuzzy msgid "_Import Palette..." -msgstr "/_Importa paleta" +msgstr "/_Importa paleta..." #: app/actions/palettes-actions.c:55 #, fuzzy @@ -2577,12 +2580,12 @@ #: app/actions/palettes-actions.c:78 #, fuzzy msgid "_Refresh Palettes" -msgstr "/_Refresca paletes" +msgstr "/_Actualitza paletes" #: app/actions/palettes-actions.c:79 #, fuzzy msgid "Refresh palettes" -msgstr "/_Refresca paletes" +msgstr "/_Actualitza paletes" #: app/actions/palettes-actions.c:87 #, fuzzy @@ -2600,11 +2603,11 @@ #: app/actions/palettes-commands.c:76 msgid "Enter a name for the merged palette" -msgstr "Introdueix un nom per a la paleta fusionada" +msgstr "Introduïu un nom per a la paleta fusionada" #: app/actions/patterns-actions.c:43 msgid "Patterns Menu" -msgstr "Menú Patrons" +msgstr "Menú patrons" #: app/actions/patterns-actions.c:47 #, fuzzy @@ -2639,22 +2642,22 @@ #: app/actions/patterns-actions.c:65 #, fuzzy msgid "_Refresh Patterns" -msgstr "/_Refresca patrons" +msgstr "/_Actualitza patrons" #: app/actions/patterns-actions.c:66 #, fuzzy msgid "Refresh patterns" -msgstr "/_Refresca patrons" +msgstr "/_Actualitza patrons" #: app/actions/patterns-actions.c:74 #, fuzzy msgid "_Edit Pattern..." -msgstr "/_Edita patró" +msgstr "/_Edita patró..." #: app/actions/patterns-actions.c:75 #, fuzzy msgid "Edit pattern" -msgstr "/_Edita patró" +msgstr "/_Edita patró..." #: app/actions/plug-in-actions.c:62 #, fuzzy @@ -2678,7 +2681,7 @@ #: app/actions/plug-in-actions.c:67 #, fuzzy msgid "Edge-De_tect" -msgstr "/Filtres/Detecció dels _contorns" +msgstr "/Filtres/De_tecció de vores" #: app/actions/plug-in-actions.c:68 #, fuzzy @@ -2751,7 +2754,7 @@ #: app/actions/plug-in-actions.c:85 #, fuzzy msgid "Reset all Filters..." -msgstr "/Torna a iniciar totes les opcions d'eina..." +msgstr "/Restableix t_otes les opcions d'eina..." #: app/actions/plug-in-actions.c:93 app/actions/plug-in-actions.c:358 msgid "Repeat Last" @@ -2769,7 +2772,7 @@ #: app/actions/plug-in-actions.c:345 #, c-format msgid "R_e-show \"%s\"" -msgstr "Torna a mostrar \"%s\"" +msgstr "_Torna a mostrar \"%s\"" #: app/actions/plug-in-commands.c:196 #, fuzzy @@ -2784,7 +2787,7 @@ #: app/actions/qmask-actions.c:42 #, fuzzy msgid "Quick Mask Menu" -msgstr "Menú Màscara ràpida" +msgstr "Menú màscara ràpida" #: app/actions/qmask-actions.c:46 #, fuzzy @@ -2804,12 +2807,12 @@ #: app/actions/qmask-actions.c:70 #, fuzzy msgid "Mask _Selected Areas" -msgstr "/Arees de mascara seleccionades" +msgstr "/Àrees de mascara _seleccionades" #: app/actions/qmask-actions.c:75 #, fuzzy msgid "Mask _Unselected Areas" -msgstr "/Arees de màscara no seleccionades" +msgstr "/Àrees de màscara _no seleccionades" #: app/actions/qmask-commands.c:106 #, fuzzy @@ -2897,12 +2900,12 @@ #: app/actions/select-actions.c:93 #, fuzzy msgid "Bo_rder..." -msgstr "/Selecciona/Vo_ra..." +msgstr "/Selecciona/_Vora..." #: app/actions/select-actions.c:98 #, fuzzy msgid "Save to _Channel" -msgstr "/Selecciona/Desa al _canal" +msgstr "/Selecciona/Desa al ca_nal" #: app/actions/select-actions.c:99 #, fuzzy @@ -2977,7 +2980,7 @@ #: app/actions/templates-actions.c:42 msgid "Templates Menu" -msgstr "Menú Plantilles" +msgstr "Menú plantilles" #: app/actions/templates-actions.c:46 #, fuzzy @@ -3050,7 +3053,7 @@ #: app/actions/text-editor-actions.c:44 #, fuzzy msgid "Open" -msgstr "/Fitxer/_Obre..." +msgstr "Menú obre" #: app/actions/text-editor-actions.c:45 #, fuzzy @@ -3089,38 +3092,38 @@ msgstr "Obre fitxer de text (UTF-8)" #: app/actions/text-editor-commands.c:132 app/config/gimpconfig-utils.c:552 -#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:393 +#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:396 #: app/core/gimpbrushgenerated.c:601 app/core/gimpbrushpipe.c:338 #: app/core/gimpgradient-load.c:63 app/core/gimppalette.c:360 #: app/core/gimppattern.c:328 app/tools/gimpimagemaptool.c:608 #: app/xcf/xcf.c:291 #, c-format msgid "Could not open '%s' for reading: %s" -msgstr "No s'ha pogut obrir '%s' per lectura: %s" +msgstr "No s'ha pogut obrir '%s' en llegir: %s" #: app/actions/tool-options-actions.c:56 msgid "Tool Options Menu" -msgstr "Menú Opcions d'eina" +msgstr "Menú opcions d'eina" #: app/actions/tool-options-actions.c:60 #, fuzzy msgid "_Save Options to" -msgstr "/De_sa les opcions a" +msgstr "Opcions desades" #: app/actions/tool-options-actions.c:64 #, fuzzy msgid "_Restore Options from" -msgstr "/_Restaura les opcions des de" +msgstr "/_Restaura opcions des de/(Cap)" #: app/actions/tool-options-actions.c:68 #, fuzzy msgid "Re_name Saved Options" -msgstr "/_Torna a nomenar les opcions desades" +msgstr "/Rea_nomena opcions desades/(Cap)" #: app/actions/tool-options-actions.c:72 #, fuzzy msgid "_Delete Saved Options" -msgstr "/_Suprimeix les opcions desades" +msgstr "/_Suprimeix opcions desades/(Cap)" #: app/actions/tool-options-actions.c:76 #, fuzzy @@ -3130,22 +3133,22 @@ #: app/actions/tool-options-actions.c:81 #, fuzzy msgid "R_eset Tool Options" -msgstr "/_Torna a iniciar opcions d'eina" +msgstr "/Torna a iniciar opcions d'_eina" #: app/actions/tool-options-actions.c:82 #, fuzzy msgid "Reset to default values" -msgstr "Torna el filtre seleccionat als valors predeterminats" +msgstr "Restableix els valors predeterminats del filtre seleccionat" #: app/actions/tool-options-actions.c:87 #, fuzzy msgid "Reset _all Tool Options..." -msgstr "/Torna a iniciar totes les opcions d'eina..." +msgstr "/Restableix t_otes les opcions d'eina..." #: app/actions/tool-options-actions.c:88 #, fuzzy msgid "Reset all tool options" -msgstr "/Torna a iniciar totes les opcions d'eina..." +msgstr "/Restableix t_otes les opcions d'eina..." #: app/actions/tool-options-commands.c:73 msgid "Save Tool Options" @@ -3163,7 +3166,7 @@ #: app/actions/tool-options-commands.c:146 msgid "Rename Saved Tool Options" -msgstr "Torna a nomenar les opcions d'eina desades" +msgstr "Reanomena les opcions d'eina desades" #: app/actions/tool-options-commands.c:150 msgid "Enter a new name for the saved options" @@ -3171,7 +3174,7 @@ #: app/actions/tool-options-commands.c:215 msgid "Reset Tool Options" -msgstr "Torna opcions d'eina a valor inicial" +msgstr "Restableix les opcions d'eina" #: app/actions/tool-options-commands.c:233 msgid "Do you really want to reset all tool options to default values?" @@ -3185,7 +3188,7 @@ #: app/actions/tools-actions.c:50 #, fuzzy msgid "_Tools" -msgstr "/Eines" +msgstr "/_Eines" #: app/actions/tools-actions.c:51 #, fuzzy @@ -3195,7 +3198,7 @@ #: app/actions/tools-actions.c:52 #, fuzzy msgid "_Paint Tools" -msgstr "Eina de pintar" +msgstr "Eina de pintar:" #: app/actions/tools-actions.c:53 #, fuzzy @@ -3205,7 +3208,7 @@ #: app/actions/tools-actions.c:54 #, fuzzy msgid "_Color Tools" -msgstr "/Eines/Eines de _color" +msgstr "/Eines/Eines de c_olor" #: app/actions/tools-actions.c:57 #, fuzzy @@ -3217,9 +3220,8 @@ msgstr "" #: app/actions/tools-actions.c:66 -#, fuzzy msgid "_Show in Toolbox" -msgstr "Mostra els consells de les eines" +msgstr "" #: app/actions/tools-actions.c:75 #, fuzzy @@ -3229,16 +3231,16 @@ #: app/actions/tools-actions.c:80 #, fuzzy msgid "_Arbitrary Rotation..." -msgstr "/Capa/Transforma/Gir lliure..." +msgstr "/Capa/Transforma/Gir _lliure..." #: app/actions/vectors-actions.c:44 msgid "Paths Menu" -msgstr "Menú Camins" +msgstr "Menú camins" #: app/actions/vectors-actions.c:48 #, fuzzy msgid "Path _Tool" -msgstr "/Eina de camí" +msgstr "/Eina de _camí" #: app/actions/vectors-actions.c:53 #, fuzzy @@ -3266,11 +3268,8 @@ msgstr "Nou camí" #: app/actions/vectors-actions.c:66 -#, fuzzy msgid "New path with last values" msgstr "" -"Nou camí\n" -"%s Diàleg de nou camí" #: app/actions/vectors-actions.c:71 #, fuzzy @@ -3300,12 +3299,12 @@ #: app/actions/vectors-actions.c:88 #, fuzzy msgid "_Raise Path" -msgstr "/Apuja el camí" +msgstr "/A_puja el camí" #: app/actions/vectors-actions.c:89 #, fuzzy msgid "Raise path" -msgstr "Aixeca el Camí" +msgstr "Apuja el camí" #: app/actions/vectors-actions.c:94 #, fuzzy @@ -3320,7 +3319,7 @@ #: app/actions/vectors-actions.c:100 #, fuzzy msgid "_Lower Path" -msgstr "/Abaixa el camí" +msgstr "/A_baixa el camí" #: app/actions/vectors-actions.c:101 #, fuzzy @@ -3340,12 +3339,12 @@ #: app/actions/vectors-actions.c:112 #, fuzzy msgid "Stro_ke Path..." -msgstr "/_Traça camí..." +msgstr "/Tra_ça camí..." #: app/actions/vectors-actions.c:113 #, fuzzy msgid "Stroke path..." -msgstr "/_Traça camí..." +msgstr "/Tra_ça camí..." #: app/actions/vectors-actions.c:118 #, fuzzy @@ -3353,9 +3352,8 @@ msgstr "Traça camí" #: app/actions/vectors-actions.c:119 -#, fuzzy msgid "Stroke path with last values" -msgstr "Traça utilitzant una eina de pintar" +msgstr "" #: app/actions/vectors-actions.c:124 #, fuzzy @@ -3380,27 +3378,27 @@ #: app/actions/vectors-actions.c:162 #, fuzzy msgid "Path to Sele_ction" -msgstr "/Camí a la selecció" +msgstr "/Camí a sele_cció" #: app/actions/vectors-actions.c:163 app/tools/gimpvectortool.c:1893 #, fuzzy msgid "Path to selection" -msgstr "Camí a lselecció" +msgstr "Camí a selecció" #: app/actions/vectors-actions.c:168 #, fuzzy msgid "Fr_om Path" -msgstr "/Selecciona/Ca_p al camí" +msgstr "/Selecciona/A ca_mí" #: app/actions/vectors-actions.c:194 #, fuzzy msgid "Selecti_on to Path" -msgstr "/Selecci_ó cap al camí" +msgstr "/Selecci_ó a camí" #: app/actions/vectors-actions.c:195 #, fuzzy msgid "Selection to path" -msgstr "/Selecci_ó cap al camí" +msgstr "/Selecci_ó a camí" #: app/actions/vectors-actions.c:200 #, fuzzy @@ -3434,11 +3432,11 @@ #: app/actions/vectors-commands.c:171 msgid "New Path Options" -msgstr "Opcions per un nou camí" +msgstr "Opcions per a un nou camí" #: app/actions/vectors-commands.c:299 app/pdb/paths_cmds.c:1210 msgid "Path to Selection" -msgstr "Camí a lselecció" +msgstr "Camí a selecció" #: app/actions/vectors-commands.c:370 app/tools/gimpvectortool.c:1923 #: app/vectors/gimpvectors.c:239 @@ -3453,12 +3451,12 @@ #: app/actions/view-actions.c:64 #, fuzzy msgid "_Zoom" -msgstr "Zoom:" +msgstr "Zoom 1:1" #: app/actions/view-actions.c:65 #, fuzzy msgid "_Padding Color" -msgstr "Color d'emplenat personalitzat" +msgstr "Color d'emplenat personalitzat:" #: app/actions/view-actions.c:73 #, fuzzy @@ -3536,7 +3534,7 @@ #: app/actions/view-actions.c:143 #, fuzzy msgid "Sn_ap to Guides" -msgstr "/Visualitza/Força a les guies" +msgstr "/Visualitza/Forç_a a les guies" #: app/actions/view-actions.c:149 #, fuzzy @@ -3546,7 +3544,7 @@ #: app/actions/view-actions.c:155 #, fuzzy msgid "Sna_p to Grid" -msgstr "/Visualitza/Força a la graella" +msgstr "/Visualitza/For_ça a la graella" #: app/actions/view-actions.c:161 msgid "Show _Menubar" @@ -3573,27 +3571,27 @@ #: app/actions/view-actions.c:234 #, fuzzy msgid "16:1 (1600%)" -msgstr "/Visualitza/Zoom/16:1< (1600%)" +msgstr "/Visualitza/Zoom/16:1" #: app/actions/view-actions.c:239 #, fuzzy msgid "8:1 (800%)" -msgstr "/Visualitza/Zoom/8:1 (800%)" +msgstr "/Visualitza/Zoom/8:1" #: app/actions/view-actions.c:244 #, fuzzy msgid "4:1 (400%)" -msgstr "/Visualitza/Zoom/4:1 (400%)" +msgstr "/Visualitza/Zoom/4:1" #: app/actions/view-actions.c:249 #, fuzzy msgid "2:1 (200%)" -msgstr "/Visualitza/Zoom/2:1 (200%)" +msgstr "/Visualitza/Zoom/2:1" #: app/actions/view-actions.c:254 #, fuzzy msgid "1:1 (100%)" -msgstr "/Visualitza/Zoom/1:1 (100%)" +msgstr "/Visualitza/Zoom/1:1" #: app/actions/view-actions.c:255 msgid "Zoom 1:1" @@ -3602,27 +3600,27 @@ #: app/actions/view-actions.c:260 #, fuzzy msgid "1:2 (50%)" -msgstr "/Visualitza/Zoom/1:2 (50%)" +msgstr "/Visualitza/Zoom/1:2" #: app/actions/view-actions.c:265 #, fuzzy msgid "1:4 (25%)" -msgstr "/Visualitza/Zoom/1:2 (25%)" +msgstr "/Visualitza/Zoom/1:2" #: app/actions/view-actions.c:270 #, fuzzy msgid "1:8 (12.5%)" -msgstr "/Visualitza/Zoom/1:1 (12.5%)" +msgstr "/Visualitza/Zoom/1:1" #: app/actions/view-actions.c:275 #, fuzzy msgid "1:16 (6.25%)" -msgstr "/Visualitza/Zoom/1:16 (6.25%)" +msgstr "/Visualitza/Zoom/1:16" #: app/actions/view-actions.c:280 #, fuzzy msgid "O_ther..." -msgstr "/Selecciona/_Ploma..." +msgstr "Altres (%d:%d) ..." #: app/actions/view-actions.c:288 #, fuzzy @@ -3642,7 +3640,7 @@ #: app/actions/view-actions.c:303 #, fuzzy msgid "Select _Custom Color..." -msgstr "/Selecciona un color _personalitzat..." +msgstr "/Selecciona _color personalitzat..." #: app/actions/view-actions.c:308 #, fuzzy @@ -3650,14 +3648,14 @@ msgstr "/Com en _preferències" #: app/actions/view-actions.c:592 -#, c-format +#, fuzzy, c-format msgid "Other (%s) ..." -msgstr "Altres (%s) ..." +msgstr "Altres (%d:%d) ..." #: app/actions/view-actions.c:601 -#, c-format +#, fuzzy, c-format msgid "_Zoom (%s)" -msgstr "_Zoom (%s)" +msgstr "_Zoom (%d:%d)" #: app/actions/view-commands.c:572 msgid "Set Canvas Padding Color" @@ -3666,7 +3664,7 @@ #: app/actions/view-commands.c:574 #, fuzzy msgid "Set Custom Canvas Padding Color" -msgstr "Defineix el color d'emplenat del llenç" +msgstr "Selecciona color personalitzat d'emplenat del llenç" #: app/base/base-enums.c:23 msgid "Smooth" @@ -3728,7 +3726,7 @@ #: app/base/base-enums.c:190 msgid "Highlights" -msgstr "Resaltats" +msgstr "Ressaltats" #: app/base/tile-swap.c:456 msgid "" @@ -3755,7 +3753,7 @@ #: app/config/gimpconfig-deserialize.c:467 #, c-format msgid "expected 'yes' or 'no' for boolean token %s, got '%s'" -msgstr "S'esperava 'yes' o 'no' per l'element booleà %s. S'obtingué '%s'" +msgstr "S'esperava 'yes' o 'no' per a l'element booleà %s. S'obtingué '%s'" #: app/config/gimpconfig-deserialize.c:541 #, c-format @@ -3765,12 +3763,12 @@ #: app/config/gimpconfig-deserialize.c:556 #, c-format msgid "invalid value '%ld' for token %s" -msgstr "El valor '%ld' és invalid per l'element %s" +msgstr "El valor '%ld' és invàlid per a l'element %s" #: app/config/gimpconfig-deserialize.c:625 #, c-format msgid "while parsing token '%s': %s" -msgstr "Analitzant l'element '%s': %s" +msgstr "S'està analitzant l'element '%s': %s" #: app/config/gimpconfig-path.c:177 #, c-format @@ -3784,13 +3782,13 @@ #: app/vectors/gimpvectors-export.c:83 app/xcf/xcf.c:348 #, c-format msgid "Could not open '%s' for writing: %s" -msgstr "No s'ha pogut obrir '%s' en escriure: %s" +msgstr "No s'ha pogut obrir '%s' per escriure: %s" #: app/config/gimpconfig-utils.c:572 app/config/gimpconfig-utils.c:595 #: app/vectors/gimpvectors-export.c:96 #, c-format msgid "Error while writing '%s': %s" -msgstr "S'ha produït un error en llegir '%s': %s" +msgstr "S'ha produït un error en escriure '%s': %s" #: app/config/gimpconfig-utils.c:583 #, c-format @@ -3810,7 +3808,7 @@ #: app/config/gimpconfigwriter.c:130 #, c-format msgid "Could not create temporary file for '%s': %s" -msgstr "No s'ha pogut crear el fitxer temporal per '%s': %s" +msgstr "No s'ha pogut crear el fitxer temporal per a '%s': %s" #: app/config/gimpconfigwriter.c:617 #, c-format @@ -3818,7 +3816,7 @@ "Error writing to temporary file for '%s': %s\n" "The original file has not been touched." msgstr "" -"S'ha produït un error en escriure el fitxer temporal per '%s': %s\n" +"S'ha produït un error en escriure el fitxer temporal per a '%s': %s\n" "El fitxer original no ha estat tocat." #: app/config/gimpconfigwriter.c:625 @@ -3827,7 +3825,7 @@ "Error writing to temporary file for '%s': %s\n" "No file has been created." msgstr "" -"S'ha produït un error en escriure el fitxer temporal per '%s': %s\n" +"S'ha produït un error en escriure el fitxer temporal per a '%s': %s\n" "No s'ha creat cap fitxer" #: app/config/gimpconfigwriter.c:636 @@ -3866,7 +3864,7 @@ #: app/config/gimprc-blurbs.h:23 msgid "Specifies how the area around the image should be drawn." -msgstr "Especifica com ha de dibuixar-se l'àrea al voltant de la imatge" +msgstr "Especifica com ha de dibuixar-se l'àrea al voltant de la imatge." #: app/config/gimprc-blurbs.h:26 msgid "" @@ -3918,7 +3916,7 @@ "the original is greater than a specified threshold. This value represents " "the default threshold." msgstr "" -"Eines com la selecció difusa i el cubell troben regions basades en " +"Eines com la selecció difosa i el cubell troben regions basades en " "l'algoritme seed-fill. El seed-fill comença al pixel seleccionat inicialment " "i progresa en totes direccions fins que la diferència d'intensitat del pixel " "respecte l'original és més gran que el llindar especificat. Aquest valor " @@ -3929,9 +3927,9 @@ "The window type hint that is set on dock windows. This may affect the way " "your window manager decorates and handles dock windows." msgstr "" -"El tipus de finestra aconsella que s'especifiqui en les finestres " -"desplegables. Això pot afectar a com el vostre gestor de finestres decora i " -"maneja les finestrs desplegables." +"El tipus de finestra hint que es defineix en les finestres desplegables. " +"Això pot afectar a com el vostre gestor de finestres decora i maneja les " +"finestres desplegables." #: app/config/gimprc-blurbs.h:121 msgid "When enabled, the selected brush will be used for all tools." @@ -3947,18 +3945,18 @@ #: app/config/gimprc-blurbs.h:146 msgid "Sets the browser used by the help system." -msgstr "Definiu el navegador que usareu per visualitzar l'ajuda" +msgstr "Definiu el navegador que usareu per visualitzar l'ajuda." #: app/config/gimprc-blurbs.h:154 msgid "Sets the text to appear in image window status bars." msgstr "" "Definiu el text que apareixarà en les barres d'estat de les finestres " -"d'imatge" +"d'imatge." #: app/config/gimprc-blurbs.h:157 msgid "Sets the text to appear in image window titles." msgstr "" -"Definiu el text que apareixarà en lels títols de les finestres d'imatges." +"Definiu el text que apareixarà en els títols de les finestres d'imatges." #: app/config/gimprc-blurbs.h:160 msgid "When enabled, the GIMP will use a different info window per image view." @@ -3972,7 +3970,7 @@ "is opened, otherwise it will be displayed with a scale of 1:1." msgstr "" "Quan sigui activat, assegura que tota la imatge és visible un cop obert el " -"fitxer; si no, es mostrarà a escala 1:1" +"fitxer; si no, es mostrarà a escala 1:1." #: app/config/gimprc-blurbs.h:167 #, fuzzy @@ -4069,9 +4067,10 @@ "Perversely, on some X servers enabling this option results in faster " "painting." msgstr "" -"Quan sigui activat, es preguntarà la posició del ratolí cada vegada que hi " -"hagi un event de moviment. Això significa que pintar amb pinzells grans serà " -"més precís, però també més lent." +"Quan sigui activat, el servidor X es preguntarà la posició del ratolí cada " +"vegada que hi hagi un event de moviment. Això significa que pintar amb " +"pinzells grans serà més precís, però també més lent. Peversament, en alguns " +"servidors X activar aquesta opció genera un pintat més ràpid." #: app/config/gimprc-blurbs.h:245 msgid "" @@ -4088,7 +4087,7 @@ msgid "" "Sets the preview size used for layers and channel previews in newly created " "dialogs." -msgstr "Definiu la mida de previsualització per defecte per capes i canals." +msgstr "Defineix la mida de previsualització per defecte per capes i canals." #: app/config/gimprc-blurbs.h:254 msgid "" @@ -4119,7 +4118,7 @@ #: app/config/gimprc-blurbs.h:269 msgid "Save the positions and sizes of the main dialogs when the GIMP exits." msgstr "" -"Desa les posicions i les mides dels diàlegs principals quan el GIMP acabi." +"Desa les posicions i les mides dels diàlegs principals en sortir del GIMP." #: app/config/gimprc-blurbs.h:275 msgid "" @@ -4142,7 +4141,7 @@ "When enabled, the cursor will be shown over the image while using a paint " "tool." msgstr "" -"Quan sigui activat, el GIMP no desa si la imatge no s'ha canviat des de que " +"Quan sigui activat, el GIMP no desarà si la imatge no s'ha canviat des que " "s'ha obert." #: app/config/gimprc-blurbs.h:288 @@ -4159,7 +4158,7 @@ "with the \"View->Show Rulers\" command." msgstr "" "Quan sigui activat, es veuen els regles. Això també es pot commutar amb " -"l'ordre \"Visualitza->Mostra Regles\"." +"l'ordre \"Visualitza->Mostra regles\"." #: app/config/gimprc-blurbs.h:296 msgid "" @@ -4167,15 +4166,15 @@ "toggled with the \"View->Show Scrollbars\" command." msgstr "" "Quan sigui activat, es veuen les barres de desplaçament. Això també es pot " -"commutar amb l'ordre \"Visualitza->Mostra barra de desplaçament\"." +"commutar amb l'ordre \"Visualitza->Mostra barres de desplaçament\"." #: app/config/gimprc-blurbs.h:300 msgid "" "When enabled, the statusbar is visible by default. This can also be toggled " "with the \"View->Show Statusbar\" command." msgstr "" -"Quan sigui activat, es mostra la barra d'estat. Això també es pot commutar " -"amb l'ordre \"Visualitza->Mostra Barra d'Estat\"." +"Quan sigui activat, es veu la barra d'estat. Això també es pot commutar amb " +"l'ordre \"Visualitza->Mostra Barra d'Estat\"." #: app/config/gimprc-blurbs.h:304 msgid "" @@ -4190,8 +4189,8 @@ "When enabled, the layer boundary is visible by default. This can also be " "toggled with the \"View->Show Layer Boundary\" command." msgstr "" -"Quan sigui activat, es veu el marc de la capa per defecte. Això també es pot " -"commutar amb l'ordre \"Visualitza->Mostra marc de la capa\"." +"Quan sigui activat, es veu el límit de la capa per defecte. Això també es " +"pot commutar amb l'ordre \"Visualitza->Mostra marc de la capa\"." #: app/config/gimprc-blurbs.h:312 msgid "" @@ -4211,7 +4210,7 @@ #: app/config/gimprc-blurbs.h:320 msgid "Enable to display a handy GIMP tip on startup." -msgstr "Habiliteu-lo pèr visualitzar un consell del GIMP a l'inici." +msgstr "Habiliteu-lo per visualitzar un consell del GIMP a l'inici." #: app/config/gimprc-blurbs.h:323 msgid "Enable to display tooltips." @@ -4241,13 +4240,13 @@ "d'ubicació de memòria basat en mosaic. El fitxer d'intercanvi s'usa per " "intercanviar amb el disc la memòria mosaic d'una manera ràpida i fàcil. " "Tingueu en compte que el fitxer d'intercanvi pot creixer molt si el GIMP es " -"fa servir amb imatges grans. També, les coses poden anar molt lentes si el " +"fa servir amb imatges grans. També, el sistema pot anar molt lent si el " "fitxer d'intercanvi es crea en un directori muntat sobre NFS. Per aquestes " "raons, es desitjable posar el vostre fitxer d'intercanvi a \"tmp\"." #: app/config/gimprc-blurbs.h:340 msgid "When enabled, menus can be torn off." -msgstr "Quan sigui activat, el menus no es poden desprendre." +msgstr "Quan sigui activat, el menús no es poden desprendre." #: app/config/gimprc-blurbs.h:343 msgid "" @@ -4255,11 +4254,12 @@ "key combination while the menu item is highlighted." msgstr "" "Quan sigui activat, es poden canviar les dreceres de teclat pels elements de " -"menú prement una combina de tecles mentre l'element del menú està resaltat." +"menú prement una combinació de tecles mentre l'element del menú està " +"ressaltat." #: app/config/gimprc-blurbs.h:347 msgid "Save changed keyboard shortcuts when the GIMP exits." -msgstr "Desa els canvis de les dreceres de teclat al GIMP." +msgstr "Desa els canvis de les dreceres de teclat al sortir del GIMP." #: app/config/gimprc-blurbs.h:350 msgid "Restore saved keyboard shortcuts on each GIMP startup." @@ -4283,9 +4283,9 @@ "Sets the size of the thumbnail shown in the Open dialog. Note that GIMP can " "not create thumbnails if layer previews are disabled." msgstr "" -"Defineix la mida de les miniatures desades amb cada imatge. Tingue en compte " -"que el GIMP no pot desar miniatures si la capa de previsualització és " -"desactivada." +"Defineix la mida de les miniatures desades amb cada imatge. Tingueu en " +"compte que el GIMP no pot desar miniatures si les previsualitzacions de capa " +"estan desactivada." #: app/config/gimprc-blurbs.h:369 msgid "" @@ -4300,20 +4300,20 @@ "swap space, but will also cause the GIMP to use more memory. Conversely, a " "smaller cache size causes the GIMP to use more swap space and less memory." msgstr "" -"El caché de mosàic s'usa per assegurar que el GIMP no mogui mosaics entre " -"memòria i disc. En incrementar el valor, el GIMP utilitzarà menys espai " -"d'intercanvi, però també més memòria. Per contra, una mida més petita de la " -"memòria caché farà que el GIMP utilitzi més espai d'intercanvi i menys " -"memòria." +"La memòria cau de mosàics s'utilitza per assegurar que el GIMP no mogui " +"mosaics entre memòria i disc. En incrementar el valor, el GIMP utilitzarà " +"menys espai d'intercanvi, però també més memòria. Per contra, una mida més " +"petita de la memòria cau farà que el GIMP utilitzi més espai d'intercanvi i " +"menys memòria." #: app/config/gimprc-blurbs.h:384 msgid "" "The window type hint that is set on the toolbox. This may affect how your " "window manager decorates and handles the toolbox window." msgstr "" -"El tipus de finestra aconsella que s'especifiqui en la caixa d'eines. Això " -"pot afectar a com el vostre gestor de finestres decora i maneja la finestra " -"de la caixa d'eines." +"El tipus de finestra que es defineix en la caixa d'eines. Això pot afectar a " +"com el vostre gestor de finestres decora i gestiona la finestra de la caixa " +"d'eines." #: app/config/gimprc-blurbs.h:388 msgid "Sets the manner in which transparency is displayed in images." @@ -4328,7 +4328,7 @@ "When enabled, the GIMP will not save if the image is unchanged since opening " "it." msgstr "" -"Quan sigui activat, el GIMP no desa si la imatge no s'ha canviat des de que " +"Quan sigui activat, el GIMP no desarà si la imatge no s'ha canviat des que " "s'ha obert." #: app/config/gimprc-blurbs.h:398 @@ -4336,8 +4336,8 @@ "Sets the minimal number of operations that can be undone. More undo levels " "are kept available until the undo-size limit is reached." msgstr "" -"Defineix el nombre mínim de operacions que es poden tornar a fer. Es poden " -"mantenir més nivells fins arribar al límit de la mida per tornar a fer." +"Defineix el nombre mínim de operacions que es poden desfer. Es poden " +"mantenir més nivells fins arribar al límit de la mida per desfer." #: app/config/gimprc-blurbs.h:402 msgid "" @@ -4346,16 +4346,17 @@ "as configured can be undone." msgstr "" "Defineix un màxim de memòria que es pot usar per imatge per mantenir " -"operacions a la pila de desfer. Sense fer cas d'aquests paràmetres, al menys " +"operacions a la pila de refer. Sense fer cas d'aquests paràmetres, almenys " "es poden desfer tants nivells de refer com s'hagin configurat." #: app/config/gimprc-blurbs.h:407 +#, fuzzy msgid "Sets the size of the previews in the Undo History." -msgstr "Defineix la mida de les previsualitzacions en la història de desfer." +msgstr "Defineix la mida del tauler usat per visualitzar transparències." #: app/config/gimprc-blurbs.h:410 msgid "When enabled, pressing F1 will open the help browser." -msgstr "Quan sigui activat, en prèmer F1 s'obrirà el navegador d'ajuda." +msgstr "Quan sigui activat, en prémer F1 s'obrirà el navegador d'ajuda." #: app/config/gimprc-blurbs.h:413 #, c-format @@ -4365,6 +4366,10 @@ "contains '%s' it will be replaced with the URL, else the URL will be " "appended to the command with a space separating the two." msgstr "" +"Defineix quin navegador web extern s'utilitzarà. Aquest pot ser un camí " +"absolut o el nom d'un executable a cercar pel camí d'usuari. Si l'ordre " +"conté '%s' serà reemplaçat amb la URL, si no, la URL s'afegirà a l'ordre amb " +"un espai separant tots dos." #: app/config/gimpscanner.c:220 msgid "invalid UTF-8 string" @@ -4373,7 +4378,7 @@ #: app/config/gimpscanner.c:516 #, c-format msgid "Error while parsing '%s' in line %d: %s" -msgstr "S'ha produït un error mentre s'analitzava '%s' a la línia %d: %s" +msgstr "S'ha produït un error quan s'analitzava '%s' a la línia %d: %s" #: app/core/core-enums.c:27 #, fuzzy @@ -4388,7 +4393,7 @@ #: app/core/core-enums.c:29 #, fuzzy msgid "Layer's _alpha channel" -msgstr "Canal _alfa de la apa" +msgstr "Canal _alfa de la capa" #: app/core/core-enums.c:30 #, fuzzy @@ -4425,17 +4430,17 @@ #: app/core/core-enums.c:92 #, fuzzy msgid "FG color fill" -msgstr "Omplint amb el color del primer pla" +msgstr "Omple amb el color del primer pla" #: app/core/core-enums.c:93 #, fuzzy msgid "BG color fill" -msgstr "Omplint amb el color de fons" +msgstr "Omple amb el color de fons" #: app/core/core-enums.c:94 #, fuzzy msgid "Pattern fill" -msgstr "Omplint amb el patró" +msgstr "Omple amb el patró" #: app/core/core-enums.c:123 msgid "Add to the current selection" @@ -4451,7 +4456,7 @@ #: app/core/core-enums.c:126 msgid "Intersect with the current selection" -msgstr "Creua amb la selecció" +msgstr "Creua amb la selecció actual" #: app/core/core-enums.c:160 msgid "Gray" @@ -4489,7 +4494,7 @@ #: app/core/core-enums.c:252 #, fuzzy msgid "Use web-optimized palette" -msgstr "Utilitza la paleta optimitzada per a la www" +msgstr "Utilitza la paleta optimitzada per al www" #: app/core/core-enums.c:253 #, fuzzy @@ -4504,12 +4509,12 @@ #: app/core/core-enums.c:329 #, fuzzy msgid "Foreground color" -msgstr "Color de primer pla:" +msgstr "Color de _primer pla:" #: app/core/core-enums.c:330 #, fuzzy msgid "Background color" -msgstr "Color de Fons:" +msgstr "Color de _fons:" #: app/core/core-enums.c:331 msgid "White" @@ -4528,7 +4533,7 @@ #: app/core/core-enums.c:371 #, fuzzy msgid "Bi-linear" -msgstr "Bilinial" +msgstr "Bilineal" #: app/core/core-enums.c:372 msgid "Radial" @@ -4598,7 +4603,7 @@ #: app/core/core-enums.c:441 #, fuzzy msgid "Stroke line" -msgstr "Opcions dde traçat" +msgstr "Traça la selecció" #: app/core/core-enums.c:442 #, fuzzy @@ -4607,7 +4612,7 @@ #: app/core/core-enums.c:498 msgid "Miter" -msgstr "Mestre" +msgstr "Caputxa" #: app/core/core-enums.c:499 app/core/core-enums.c:529 msgid "Round" @@ -4619,7 +4624,7 @@ #: app/core/core-enums.c:528 msgid "Butt" -msgstr "" +msgstr "Punta" #: app/core/core-enums.c:566 app/dialogs/preferences-dialog.c:1804 msgid "Custom" @@ -4632,7 +4637,7 @@ #: app/core/core-enums.c:568 #, fuzzy msgid "Long dashes" -msgstr "Trassos llargs" +msgstr "Traços llargs" #: app/core/core-enums.c:569 #, fuzzy @@ -4642,7 +4647,7 @@ #: app/core/core-enums.c:570 #, fuzzy msgid "Short dashes" -msgstr "Trassos curts" +msgstr "Traços curts" #: app/core/core-enums.c:571 #, fuzzy @@ -4666,12 +4671,12 @@ #: app/core/core-enums.c:575 #, fuzzy msgid "Dash dot..." -msgstr "Traça punt" +msgstr "Traça punt..." #: app/core/core-enums.c:576 #, fuzzy msgid "Dash dot dot..." -msgstr "Traça punt a punt" +msgstr "Traça punt a punt..." #: app/core/core-enums.c:604 msgid "Stock ID" @@ -4819,7 +4824,7 @@ #: app/core/core-enums.c:1036 #, fuzzy msgid "Merge vectors" -msgstr "Fusiona vectors" +msgstr "Fusiona els vectors" #: app/core/core-enums.c:1037 app/core/gimpchannel.c:383 #, fuzzy @@ -4859,7 +4864,7 @@ #: app/core/core-enums.c:1045 #, fuzzy msgid "Item properties" -msgstr "Propietats d'element" +msgstr "Propietats de l'element" #: app/core/core-enums.c:1046 app/core/core-enums.c:1074 #, fuzzy @@ -4889,7 +4894,7 @@ #: app/core/core-enums.c:1051 #, fuzzy msgid "Floating selection to layer" -msgstr "Selecció flotant a la capa" +msgstr "Selecció flotant a capa" #: app/core/core-enums.c:1052 #, fuzzy @@ -4904,7 +4909,7 @@ #: app/core/core-enums.c:1054 #, fuzzy msgid "Remove floating selection" -msgstr "Sura la selecció" +msgstr "Selecció flotant" #: app/core/core-enums.c:1055 app/core/gimp-edit.c:267 msgid "Paste" @@ -4937,7 +4942,7 @@ #: app/core/core-enums.c:1061 app/core/core-enums.c:1101 #, fuzzy msgid "Remove parasite" -msgstr "Suprimeix el paràsit" +msgstr "Suprimeix paràsit" #: app/core/core-enums.c:1062 #, fuzzy @@ -4971,7 +4976,7 @@ #: app/core/core-enums.c:1073 #, fuzzy msgid "Rename item" -msgstr "Canvia el nom de l'element" +msgstr "Reanomena l'element" #: app/core/core-enums.c:1076 #, fuzzy @@ -5041,7 +5046,7 @@ #: app/core/core-enums.c:1093 #, fuzzy msgid "Vectors mod" -msgstr "Vectors Mod" +msgstr "Mod dels vextors" #: app/core/core-enums.c:1094 #, fuzzy @@ -5107,14 +5112,14 @@ msgid "FG to Transparent" msgstr "De primer pla a transparent" -#: app/core/gimp-gui.c:148 +#: app/core/gimp-gui.c:153 msgid "GIMP" msgstr "El GIMP" #. register all internal procedures #: app/core/gimp.c:638 msgid "Procedural Database" -msgstr "Base de dades procedural" +msgstr "Base de dades de prodediments" #: app/core/gimp.c:641 msgid "Plug-In Environment" @@ -5139,52 +5144,73 @@ msgid "Modules" msgstr "Mòduls" -#: app/core/gimpbrush.c:531 +#: app/core/gimpbrush.c:534 #, c-format msgid "Could not read %d bytes from '%s': %s" msgstr "No s'han pogut llegir %d bytes des de '%s': %s" -#: app/core/gimpbrush.c:566 +#: app/core/gimpbrush.c:554 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Width = 0." +msgstr "" +"S'ha produït un error d'analisi fatal en el fitxer de pinzells '%s': " +"profunditat desconeguda %d." + +#: app/core/gimpbrush.c:563 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Height = 0." +msgstr "" +"S'ha produït un error d'anàlisi fatal en el fitxer de pinzell '%s': El " +"fitxer és corrupte." + +#: app/core/gimpbrush.c:572 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Bytes = 0." +msgstr "" +"S'ha produït un error d'anàlisi fatal en el fitxer de pinzell '%s': El " +"fitxer és corrupte." + +#: app/core/gimpbrush.c:596 #, c-format msgid "Fatal parse error in brush file '%s': Unknown depth %d." msgstr "" "S'ha produït un error d'analisi fatal en el fitxer de pinzells '%s': " -"Intensitat desconeguda %d." +"profunditat desconeguda %d." -#: app/core/gimpbrush.c:579 +#: app/core/gimpbrush.c:609 #, c-format msgid "Fatal parse error in brush file '%s': Unknown version %d." msgstr "" "S'ha produït un error d'anàlisi fatal en el fitxer de pinzells '%s': versió " "desconeguda %d." -#: app/core/gimpbrush.c:595 app/core/gimpbrush.c:715 +#: app/core/gimpbrush.c:625 app/core/gimpbrush.c:745 #, c-format msgid "Fatal parse error in brush file '%s': File appears truncated." msgstr "" -"S'ha produït un error d'anàlisi fatal en el fitxer de pinzell '%s': El " +"S'ha produït un error d'anàlisi fatal en el fitxer de pinzell '%s': el " "fitxer sembla truncat." -#: app/core/gimpbrush.c:603 app/core/gimpbrushgenerated.c:648 +#: app/core/gimpbrush.c:633 app/core/gimpbrushgenerated.c:648 #: app/core/gimpbrushpipe.c:354 #, c-format msgid "Invalid UTF-8 string in brush file '%s'." msgstr "Hi ha una cadena de text UTF-8 invàlida en el fitxer de pinzell '%s'" -#: app/core/gimpbrush.c:610 app/core/gimpcontext.c:1299 -#: app/core/gimpitem.c:479 app/core/gimppattern.c:400 +#: app/core/gimpbrush.c:640 app/core/gimpcontext.c:1299 +#: app/core/gimpitem.c:480 app/core/gimppattern.c:400 #: app/dialogs/template-options-dialog.c:80 app/tools/gimpvectortool.c:339 msgid "Unnamed" msgstr "Sense nom" -#: app/core/gimpbrush.c:704 +#: app/core/gimpbrush.c:734 #, c-format msgid "" "Fatal parse error in brush file '%s': Unsupported brush depth %d\n" "GIMP brushes must be GRAY or RGBA." msgstr "" -"S'ha produït un error d'anàlisi fatal en el fitxer de pinzell '%s': La " -"profunditat de pinzell no es pot fer servir %d\n" +"S'ha produït un error d'anàlisi fatal en el fitxer de pinzell '%s': no es " +"pot fer servir la profunditat de pinzell %d\n" "Els pinzells del GIMP han de ser GRIS (escala de grisos) o RGBA (paleta de " "colors)." @@ -5232,7 +5258,7 @@ #: app/core/gimpchannel.c:281 msgid "Rename Channel" -msgstr "Canvia el nom del canal" +msgstr "Reanomena el canal" #: app/core/gimpchannel.c:282 msgid "Move Channel" @@ -5269,7 +5295,7 @@ #: app/core/gimpchannel.c:311 msgid "Sharpen Channel" -msgstr "Enfosqueix el canal" +msgstr "Afila el canal" #: app/core/gimpchannel.c:312 msgid "Clear Channel" @@ -5297,7 +5323,7 @@ #: app/core/gimpchannel.c:631 msgid "Cannot stroke empty channel." -msgstr "No es pot traçar canal buit." +msgstr "No es pot traçar un canal buit." #: app/core/gimpchannel.c:1527 msgid "Set Channel Color" @@ -5305,7 +5331,7 @@ #: app/core/gimpchannel.c:1575 msgid "Set Channel Opacity" -msgstr "Defineix la opacitat del canal" +msgstr "Defineix l'opacitat del canal" #: app/core/gimpchannel.c:1644 app/core/gimpselection.c:563 msgid "Selection Mask" @@ -5313,24 +5339,24 @@ #: app/core/gimpchannel-select.c:56 app/tools/gimprectselecttool.c:96 msgid "Rect Select" -msgstr "Selecció de rectangle" +msgstr "Selecció rectangular" #: app/core/gimpchannel-select.c:107 app/tools/gimpellipseselecttool.c:71 msgid "Ellipse Select" -msgstr "Selecció d'el·lipse" +msgstr "Selecció el·liptica" #: app/core/gimpchannel-select.c:373 msgid "Alpha to Selection" -msgstr "Alfa cap a la selecció" +msgstr "Alfa a selecció" #: app/core/gimpchannel-select.c:414 #, c-format msgid "%s Channel to Selection" -msgstr "Canal %s per a la selecció" +msgstr "Canal %s a selecció" #: app/core/gimpchannel-select.c:460 app/tools/gimpfuzzyselecttool.c:97 msgid "Fuzzy Select" -msgstr "Selecció difusa" +msgstr "Selecció difosa" #: app/core/gimpchannel-select.c:505 msgid "Select by Color" @@ -5348,15 +5374,15 @@ "\n" "%s" msgstr "" -"Advertència: No s'ha pogut desar: \n" +"Avís: No s'ha pogut desar: \n" "%s" #: app/core/gimpdatafactory.c:411 app/core/gimpdatafactory.c:414 -#: app/core/gimpitem.c:274 app/core/gimpitem.c:277 +#: app/core/gimpitem.c:275 app/core/gimpitem.c:278 msgid "copy" msgstr "còpia" -#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:286 +#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:287 #, c-format msgid "%s copy" msgstr "còpia de %s" @@ -5368,7 +5394,7 @@ "\n" "%s" msgstr "" -"Advertència: No s'ha pogut obrir:\n" +"Avís: No s'ha pogut obrir:\n" "%s" #: app/core/gimpdrawable-blend.c:238 app/tools/gimpblendtool.c:101 @@ -5406,7 +5432,7 @@ #: app/core/gimpdrawable-stroke.c:319 msgid "Render Stroke" -msgstr "Render traçat" +msgstr "Dibuixa el traç" #. Start a transform undo group #: app/core/gimpdrawable-transform.c:928 app/tools/gimpfliptool.c:82 @@ -5418,7 +5444,7 @@ msgid "Rotate" msgstr "Gira" -#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:259 +#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:257 msgid "Transform Layer" msgstr "Transforma la capa" @@ -5434,7 +5460,7 @@ #: app/core/gimpenvirontable.c:303 #, c-format msgid "Illegal variable name in environment file %s: %s" -msgstr "Nom de variable ilegal en entorn de fitxer %s: %s" +msgstr "Nom de variable ilegal en fitxer d'entorn %s: %s" #: app/core/gimpgradient-load.c:72 #, c-format @@ -5468,16 +5494,16 @@ #: app/core/gimpgradient-load.c:281 #, fuzzy, c-format msgid "No linear gradients found in '%s'" -msgstr "No s'han trovat camins en '%s'" +msgstr "No s'han trobat camins en '%s'" #: app/core/gimpgradient-load.c:291 #, fuzzy, c-format msgid "Failed to import gradients from '%s': %s" -msgstr "No s'han pogut importar els camins des de \"%s\": %s" +msgstr "No s'han pogut llegir %d bytes des de '%s': %s" #: app/core/gimpgrid.c:128 msgid "Line style used for the grid." -msgstr "Estil de línia utilitzat per la graella" +msgstr "Estil de línia utilitzat per a la graella" #: app/core/gimpgrid.c:134 msgid "The foreground color of the grid." @@ -5487,7 +5513,7 @@ msgid "" "The background color of the grid; only used in double dashed line style." msgstr "" -"El color de fons de la graella; només s'utilitza en l'estil del ínia de " +"El color de fons de la graella; només s'utilitza en l'estil de línia de " "doble traçat." #: app/core/gimpgrid.c:145 @@ -5519,12 +5545,12 @@ #: app/core/gimpimage-colormap.c:115 #, fuzzy msgid "Change Colormap entry" -msgstr "Canvia unitats d'imatge" +msgstr "Color del canal" #: app/core/gimpimage-colormap.c:135 #, fuzzy msgid "Add Color to Colormap" -msgstr "/_Afegeix color del primer pla" +msgstr "/_Afegeix color del fons" #: app/core/gimpimage-convert.c:788 msgid "Convert Image to RGB" @@ -5579,7 +5605,7 @@ #: app/core/gimpimage-merge.c:107 msgid "Not enough visible layers for a merge. There must be at least two." msgstr "" -"No hi ha prou capes visibles per una fusió. Almenys n'hi ha d'haver dues." +"No hi ha prou capes visibles per a una fusió. Almenys n'hi ha d'haver dues." #: app/core/gimpimage-merge.c:142 msgid "Flatten Image" @@ -5600,7 +5626,7 @@ #: app/core/gimpimage-merge.c:580 msgid "Not enough visible paths for a merge. There must be at least two." msgstr "" -"No hi ha prou camins visibles per una fusió. Almenys n'hi ha d'haver dos." +"No hi ha prou camins visibles per a una fusió. Almenys n'hi ha d'haver dos." #: app/core/gimpimage-qmask.c:67 #, fuzzy @@ -5639,11 +5665,11 @@ #: app/core/gimpimage.c:2745 msgid "Remove Layer" -msgstr "Suprimeix la capa" +msgstr "Suprimeix capa" #: app/core/gimpimage.c:2816 msgid "Layer cannot be raised higher." -msgstr "No es pot situar la capa més amunt." +msgstr "No es pot pujar la capa més amunt." #: app/core/gimpimage.c:2822 app/core/gimpimage.c:2872 msgid "Cannot raise a layer without alpha." @@ -5651,11 +5677,11 @@ #: app/core/gimpimage.c:2827 msgid "Raise Layer" -msgstr "Aixeca la capa" +msgstr "Apuja la capa" #: app/core/gimpimage.c:2844 msgid "Layer cannot be lowered more." -msgstr "No es pot situar la capa més avall." +msgstr "No es pot baixar la capa més avall." #: app/core/gimpimage.c:2849 msgid "Lower Layer" @@ -5675,7 +5701,7 @@ #: app/core/gimpimage.c:2902 msgid "Lower Layer to Bottom" -msgstr "Capa cap al capdavall" +msgstr "Capa al capdavall" #: app/core/gimpimage.c:2941 #, c-format @@ -5694,11 +5720,11 @@ #: app/core/gimpimage.c:3082 msgid "Channel cannot be raised higher." -msgstr "El canal no es pot apujar més." +msgstr "El canal no es pot pujar més." #: app/core/gimpimage.c:3087 msgid "Raise Channel" -msgstr "Incrementa el canal" +msgstr "Apuja el canal" #: app/core/gimpimage.c:3104 #, fuzzy @@ -5711,11 +5737,11 @@ #: app/core/gimpimage.c:3126 msgid "Channel cannot be lowered more." -msgstr "El canal no es pot abaixar més." +msgstr "El canal no es pot baixar més." #: app/core/gimpimage.c:3131 msgid "Lower Channel" -msgstr "Canal més baix" +msgstr "Abaixa el canal" #: app/core/gimpimage.c:3151 #, fuzzy @@ -5728,19 +5754,19 @@ #: app/core/gimpimage.c:3231 msgid "Add Path" -msgstr "Afegeix Camí" +msgstr "Afegeix camí" #: app/core/gimpimage.c:3276 msgid "Remove Path" -msgstr "Esborra Camí" +msgstr "Esborra camí" #: app/core/gimpimage.c:3320 msgid "Path cannot be raised higher." -msgstr "El camí no es pot apujar més." +msgstr "El camí no es pot pujar més." #: app/core/gimpimage.c:3325 msgid "Raise Path" -msgstr "Aixeca el Camí" +msgstr "Apuja el camí" #: app/core/gimpimage.c:3342 #, fuzzy @@ -5753,7 +5779,7 @@ #: app/core/gimpimage.c:3364 msgid "Path cannot be lowered more." -msgstr "El camí no es pot abaixar més." +msgstr "El camí no es pot baixar més." #: app/core/gimpimage.c:3369 msgid "Lower Path" @@ -5778,7 +5804,7 @@ #: app/core/gimpimagefile.c:578 msgid "Special File" -msgstr "Fitxer especial" +msgstr "" #: app/core/gimpimagefile.c:605 #, fuzzy @@ -5799,7 +5825,7 @@ #. pixel size #: app/core/gimpimagefile.c:624 app/dialogs/info-window.c:552 -#: app/widgets/gimpsizebox.c:552 app/widgets/gimptemplateeditor.c:637 +#: app/widgets/gimpsizebox.c:429 app/widgets/gimptemplateeditor.c:637 #: app/widgets/gimptemplateeditor.c:673 #, c-format msgid "%d x %d pixels" @@ -5819,22 +5845,22 @@ msgid "Could not open thumbnail '%s': %s" msgstr "No s'ha pogut obrir la miniatura '%s': %s" -#: app/core/gimpitem.c:1096 +#: app/core/gimpitem.c:1103 msgid "Attach Parasite" msgstr "Adjunta paràsit" -#: app/core/gimpitem.c:1106 +#: app/core/gimpitem.c:1113 msgid "Attach Parasite to Item" -msgstr "Adjunta paràsit al element" +msgstr "Adjunta paràsit a l'element" -#: app/core/gimpitem.c:1145 app/core/gimpitem.c:1152 +#: app/core/gimpitem.c:1152 app/core/gimpitem.c:1159 msgid "Remove Parasite from Item" -msgstr "Suprimeix paràsit del element" +msgstr "Suprimeix paràsit de l'element" #: app/core/gimplayer-floating-sel.c:98 #, fuzzy msgid "Remove Floating Selection" -msgstr "Sura la selecció" +msgstr "Selecció flotant" #: app/core/gimplayer-floating-sel.c:129 msgid "Cannot anchor this layer because it is not a floating selection." @@ -5854,81 +5880,81 @@ #: app/core/gimplayer-floating-sel.c:215 msgid "Floating Selection to Layer" -msgstr "Selecció flotant a la capa" +msgstr "Selecció flotant a capa" -#: app/core/gimplayer.c:252 app/pdb/internal_procs.c:152 +#: app/core/gimplayer.c:250 app/pdb/internal_procs.c:152 msgid "Layer" msgstr "Capa" -#: app/core/gimplayer.c:253 +#: app/core/gimplayer.c:251 msgid "Rename Layer" -msgstr "Canvia el nom de la capa" +msgstr "Reanomena la capa" -#: app/core/gimplayer.c:254 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 +#: app/core/gimplayer.c:252 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 msgid "Move Layer" -msgstr "Mou la Capa" +msgstr "Mou la capa" -#: app/core/gimplayer.c:256 +#: app/core/gimplayer.c:254 msgid "Resize Layer" msgstr "Canvia la mida de la capa" -#: app/core/gimplayer.c:257 +#: app/core/gimplayer.c:255 msgid "Flip Layer" -msgstr "Volteja la Capa" +msgstr "Volteja la capa" -#: app/core/gimplayer.c:258 +#: app/core/gimplayer.c:256 msgid "Rotate Layer" -msgstr "Gira la Capa" +msgstr "Gira la capa" -#: app/core/gimplayer.c:341 app/core/gimplayer.c:1129 +#: app/core/gimplayer.c:339 app/core/gimplayer.c:1110 #: app/core/gimplayermask.c:236 #, c-format msgid "%s mask" msgstr "màscara %s" -#: app/core/gimplayer.c:387 +#: app/core/gimplayer.c:385 #, fuzzy, c-format msgid "" "Floating Selection\n" "(%s)" -msgstr "Sura la selecció" +msgstr "Selecció flotant" -#: app/core/gimplayer.c:1055 +#: app/core/gimplayer.c:1036 msgid "Cannot add layer mask to layer which is not part of an image." msgstr "" "No es pot afegir una màscara de capa a una capa que no és part d'una imatge." -#: app/core/gimplayer.c:1062 +#: app/core/gimplayer.c:1043 msgid "Unable to add a layer mask since the layer already has one." msgstr "No es pot afegir una màscara de capa ja que la capa ja en té una." -#: app/core/gimplayer.c:1069 +#: app/core/gimplayer.c:1050 msgid "Cannot add layer mask to a layer with no alpha channel." msgstr "No es pot afegir una màscara de capa a una capa sense un canal alfa." -#: app/core/gimplayer.c:1079 +#: app/core/gimplayer.c:1060 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "" -"No es pot afegir una màscara de capa de dimensions diferents de la capa " +"No es pot afegir una màscara de capa de dimensions diferents que la capa " "especificada" -#: app/core/gimplayer.c:1183 +#: app/core/gimplayer.c:1164 msgid "Transfer Alpha to Mask" msgstr "Transfereix alfa a màscara" -#: app/core/gimplayer.c:1343 +#: app/core/gimplayer.c:1324 msgid "Apply Layer Mask" msgstr "Aplica una màscara de capa" -#: app/core/gimplayer.c:1344 +#: app/core/gimplayer.c:1325 msgid "Delete Layer Mask" msgstr "Suprimeix la màscara de capa" -#: app/core/gimplayer.c:1445 +#: app/core/gimplayer.c:1426 msgid "Add Alpha Channel" msgstr "Afegeix canal alfa" -#: app/core/gimplayer.c:1467 +#: app/core/gimplayer.c:1448 msgid "Layer to Image Size" msgstr "Capa a mida de la imatge" @@ -5949,16 +5975,16 @@ "Fatal parse error in palette file '%s': Missing magic header.\n" "Does this file need converting from DOS?" msgstr "" -"S'ha produït un error fatal d'anàlisi en el fitxer de paleta '%s': S'ha " -"perdut l'encapçalament màgic.\n" +"S'ha produït un error fatal d'anàlisi en el fitxer de paleta '%s': manca " +"l'encapçalament màgic.\n" "Cal convertir aquest fitxer des del DOS?" #: app/core/gimppalette.c:381 #, c-format msgid "Fatal parse error in palette file '%s': Missing magic header." msgstr "" -"S'ha produït un error fatal d'anàlisi en el fitxer de paleta '%s': S'ha " -"perdut l'encapçalament màgic." +"S'ha produït un error fatal d'anàlisi en el fitxer de paleta '%s': manca " +"l'encapçalament màgic." #: app/core/gimppalette.c:395 app/core/gimppalette.c:420 #: app/core/gimppalette.c:450 app/core/gimppalette.c:536 @@ -5966,7 +5992,7 @@ msgid "Fatal parse error in palette file '%s': Read error in line %d." msgstr "" "S'ha produït un error fatal d'anàlisi en el fitxer de paleta '%s': Error de " -"lectura en la linia %d." +"lectura en la línia %d." #: app/core/gimppalette.c:410 #, c-format @@ -5987,22 +6013,22 @@ #, c-format msgid "Reading palette file '%s': Missing RED component in line %d." msgstr "" -"S'està llegint el fitxer de paleta '%s': S'ha perdut el component VERMELL en " -"la línia %d." +"S'està llegint el fitxer de paleta '%s': manca el component VERMELL en la " +"línia %d." #: app/core/gimppalette.c:492 #, c-format msgid "Reading palette '%s': Missing GREEN component in line %d." msgstr "" -"S'està llegint el fitxer de paleta '%s': S'ha perdut el component VERD en la " -"línia %d." +"S'està llegint el fitxer de paleta '%s': manca el component VERD en la línia " +"%d." #: app/core/gimppalette.c:500 #, c-format msgid "Reading palette file '%s': Missing BLUE component in line %d." msgstr "" -"S'està llegint el fitxer de paleta '%s': S'ha perdut el component BLAU en la " -"línia %d." +"S'està llegint el fitxer de paleta '%s': manca el component BLAU en la línia " +"%d." #: app/core/gimppalette.c:510 #, c-format @@ -6016,7 +6042,7 @@ #, c-format msgid "Fatal parse error in pattern file '%s': Could not read %d bytes: %s" msgstr "" -"S'ha produït un error fatal d'anàlisi en el fitxer de patró '%s': No s'han " +"S'ha produït un error fatal d'anàlisi en el fitxer de patró '%s': no s'han " "pogut llegir %d bytes: %s" #: app/core/gimppattern.c:357 @@ -6024,7 +6050,7 @@ msgid "" "Fatal parse error in pattern file '%s': Unknown pattern format version %d." msgstr "" -"S'ha produït un error fatal d'anàlisi en el fitxer de patró '%s': Versió de " +"S'ha produït un error fatal d'anàlisi en el fitxer de patró '%s': versió de " "format de patró %d desconeguda." #: app/core/gimppattern.c:367 @@ -6033,8 +6059,8 @@ "Fatal parse error in pattern file '%s: Unsupported pattern depth %d.\n" "GIMP Patterns must be GRAY or RGB." msgstr "" -"S'ha produït un error fatal d'anàlisi en el fitxer de patró '%s': La " -"profunditat de patró %d no és suportada.\n" +"S'ha produït un error fatal d'anàlisi en el fitxer de patró '%s': no es " +"suporta la profunditat de patró %d.\n" "Els patrons del GIMP han de ser GRIS o RGB." #: app/core/gimppattern.c:393 @@ -6046,8 +6072,8 @@ #, fuzzy, c-format msgid "Unable to run %s callback. The corresponding plug-in may have crashed." msgstr "" -"No es pot usar la crida de retorn del pinzell. El connector corresponent no " -"funciona correctament" +"No es pot usar la crida de retorn del pinzell. El connector corresponent pot " +"deixar de funcionar." #: app/core/gimpprogress.c:107 app/core/gimpprogress.c:154 msgid "Please wait..." @@ -6089,11 +6115,13 @@ #: app/core/gimpselection.c:839 #, fuzzy msgid "Floated Layer" -msgstr "Gira la Capa" +msgstr "Capa enganxada" #: app/core/gimptemplate.c:158 msgid "The unit used for coordinate display when not in dot-for-dot mode." -msgstr "La unitat utilitzada per coordenades quan no és en mode punt a punt." +msgstr "" +"La unitat utilitzada per a coordenades es mostra quan no és en mode punt a " +"punt." #: app/core/gimptemplate.c:165 #, fuzzy @@ -6169,7 +6197,7 @@ #. we'd prefer just the names, please no email addresses. #: app/dialogs/about-dialog.c:54 msgid "translator-credits" -msgstr "traductor-crédits" +msgstr "Xavier Beà i Pons" #: app/dialogs/about-dialog.c:59 msgid "Contributions by" @@ -6198,7 +6226,7 @@ #: app/dialogs/convert-dialog.c:179 #, fuzzy msgid "_Maximum number of colors:" -msgstr "Nombre màxim de colors:" +msgstr "Nombre mínim de colors:" #: app/dialogs/convert-dialog.c:206 #, fuzzy @@ -6208,7 +6236,7 @@ #. dithering #: app/dialogs/convert-dialog.c:221 app/tools/gimpblendoptions.c:269 msgid "Dithering" -msgstr "S'està retallant" +msgstr "S'està convertint en tramat" #: app/dialogs/convert-dialog.c:233 #, fuzzy @@ -6218,7 +6246,7 @@ #: app/dialogs/convert-dialog.c:248 #, fuzzy msgid "Enable dithering of _transparency" -msgstr "Habilita el tramat de la transparència" +msgstr "Habilita el tramatge de la transparència" #: app/dialogs/convert-dialog.c:274 #, fuzzy @@ -6227,7 +6255,7 @@ #: app/dialogs/convert-dialog.c:382 msgid "Cannot convert to a palette with more than 256 colors." -msgstr "No es pot convertir a una paleta amb més de 256 colors." +msgstr "" #: app/dialogs/dialogs-constructors.c:164 app/gui/gui.c:161 msgid "GIMP Message" @@ -6275,7 +6303,7 @@ #: app/dialogs/dialogs.c:189 msgid "Display Navigation" -msgstr "Visualitza Navegació" +msgstr "Navegació de la visualització" #: app/dialogs/dialogs.c:195 msgid "FG/BG" @@ -6332,7 +6360,7 @@ #: app/dialogs/image-merge-layers-dialog.c:62 msgid "Layers Merge Options" -msgstr "Opcions per fusionar capes" +msgstr "Opcions de fusió de capes" #: app/dialogs/image-merge-layers-dialog.c:77 msgid "Final, Merged Layer should be:" @@ -6348,7 +6376,7 @@ #: app/dialogs/image-merge-layers-dialog.c:87 msgid "Clipped to bottom layer" -msgstr "Tallat a la mida de la capa del darrere" +msgstr "Tallat a la mida de la capa del fons" #: app/dialogs/image-new-dialog.c:95 msgid "Create a New Image" @@ -6467,7 +6495,7 @@ #: app/dialogs/info-window.c:228 #, fuzzy msgid "Comment" -msgstr "Recompte:" +msgstr "Comentari de la imatge" #: app/dialogs/info-window.c:248 app/dialogs/info-window.c:634 #: app/display/gimpdisplayshell-title.c:337 @@ -6492,7 +6520,7 @@ #: app/dialogs/info-window.c:296 #, fuzzy msgid "Print size:" -msgstr "Mida d'impressió" +msgstr "Mida d'impressió_" #: app/dialogs/info-window.c:298 msgid "Resolution:" @@ -6501,12 +6529,12 @@ #: app/dialogs/info-window.c:300 #, fuzzy msgid "Scale ratio:" -msgstr "Ràtio de l'escala:" +msgstr "Relació d'escala:" #: app/dialogs/info-window.c:302 #, fuzzy msgid "Number of layers:" -msgstr "Número de capes:" +msgstr "Nombre de capes:" #: app/dialogs/info-window.c:304 #, fuzzy @@ -6564,7 +6592,7 @@ #: app/dialogs/layer-add-mask-dialog.c:96 msgid "In_vert Mask" -msgstr "Inverteix màscara" +msgstr "In_verteix màscara" #: app/dialogs/layer-options-dialog.c:116 msgid "Layer _Name:" @@ -6586,8 +6614,9 @@ msgstr "Tipus d'omplert de capa" #: app/dialogs/layer-options-dialog.c:205 +#, fuzzy msgid "Set Name from _Text" -msgstr "Estableix el nom des de text" +msgstr "Crea camí des de text" #: app/dialogs/module-dialog.c:122 msgid "Module Manager" @@ -6599,7 +6628,7 @@ #: app/dialogs/module-dialog.c:168 msgid "Autoload" -msgstr "Carrega automàtica" +msgstr "Càrrega automàtica" #: app/dialogs/module-dialog.c:175 #, fuzzy @@ -6686,7 +6715,7 @@ #: app/dialogs/offset-dialog.c:108 app/dialogs/offset-dialog.c:136 #: app/dialogs/resize-dialog.c:185 app/widgets/gimpgrideditor.c:274 msgid "Offset" -msgstr "Desplaçament" +msgstr "Desplaça" #: app/dialogs/offset-dialog.c:168 app/dialogs/resize-dialog.c:214 msgid "_X:" @@ -6699,7 +6728,7 @@ #: app/dialogs/offset-dialog.c:197 #, fuzzy msgid "Offset by x/_2, y/2" -msgstr "Compensació amb (x/_2),(y/2)" +msgstr "Desplaça (x/_2),(y/2)" #. The edge behaviour frame #: app/dialogs/offset-dialog.c:206 @@ -6746,12 +6775,12 @@ #: app/dialogs/palette-import-dialog.c:246 #, fuzzy msgid "Palette _file" -msgstr "Carpeta de paletes" +msgstr "_Nom de paleta:" #: app/dialogs/palette-import-dialog.c:273 #, fuzzy msgid "Select palette file" -msgstr "Selecciona lcarpetes de paletes" +msgstr "Selecciona carpetes de paletes" #. The "Import" frame #: app/dialogs/palette-import-dialog.c:304 @@ -6770,7 +6799,7 @@ #: app/dialogs/palette-import-dialog.c:325 #, fuzzy msgid "N_umber of colors:" -msgstr "Número de colors:" +msgstr "Nom_bre de colors:" #: app/dialogs/palette-import-dialog.c:338 msgid "C_olumns:" @@ -6787,7 +6816,8 @@ #: app/dialogs/preferences-dialog.c:294 msgid "You will have to restart GIMP for the following changes to take effect:" -msgstr "Cal que reinicialitzeu el GIMP per a que els canvis tinguin efecte:" +msgstr "" +"Cal que reinicialitzeu el GIMP perquè els següents canvis tinguin efecte:" #: app/dialogs/preferences-dialog.c:501 #, fuzzy @@ -6861,12 +6891,12 @@ #: app/dialogs/preferences-dialog.c:1114 #, fuzzy msgid "Canvas _padding mode:" -msgstr "Mode d'emplenat del llenç" +msgstr "Mode d'emplenat del llenç:" #: app/dialogs/preferences-dialog.c:1119 #, fuzzy msgid "Custom p_adding color:" -msgstr "Color d'emplenat personalitzat" +msgstr "Color d'emplenat personalitzat:" #: app/dialogs/preferences-dialog.c:1120 #, fuzzy @@ -6905,12 +6935,12 @@ #: app/dialogs/preferences-dialog.c:1371 #, fuzzy msgid "_Enable layer & channel previews" -msgstr "Activa previsualització de capa i canal" +msgstr "Activa _previsualització de capa i canal" #: app/dialogs/preferences-dialog.c:1377 #, fuzzy msgid "Default _layer & channel preview size:" -msgstr "Mida predeterminada de previsua_lització de capa i canal:" +msgstr "Mida de previsualització de _capa i canal:" #: app/dialogs/preferences-dialog.c:1380 #, fuzzy @@ -6929,7 +6959,7 @@ #: app/dialogs/preferences-dialog.c:1391 #, fuzzy msgid "Use _dynamic keyboard shortcuts" -msgstr "Utilitza dreceres de _teclat dinàmiques" +msgstr "Utilitza _dreceres de teclat dinàmiques" #: app/dialogs/preferences-dialog.c:1395 #, fuzzy @@ -6944,12 +6974,12 @@ #: app/dialogs/preferences-dialog.c:1406 #, fuzzy msgid "Save Keyboard Shortcuts _Now" -msgstr "Desa dreceres de teclat ara" +msgstr "Desa ara les dreceres de teclat" #: app/dialogs/preferences-dialog.c:1413 #, fuzzy msgid "_Reset Saved Keyboard Shortcuts to Default Values" -msgstr "Restaura a l'inici les dreceres de teclat " +msgstr "Restaura en començar les dreceres de teclat desades" #: app/dialogs/preferences-dialog.c:1428 app/dialogs/preferences-dialog.c:1431 #: app/dialogs/preferences-dialog.c:1467 @@ -6958,11 +6988,11 @@ #: app/dialogs/preferences-dialog.c:1437 msgid "Select Theme" -msgstr "Seleccioneu un tema" +msgstr "Selecciona tema" #: app/dialogs/preferences-dialog.c:1519 msgid "Reload C_urrent Theme" -msgstr "Torna a carregar tema actual" +msgstr "Torna a carregar _tema actual" #: app/dialogs/preferences-dialog.c:1531 app/dialogs/preferences-dialog.c:1534 msgid "Help System" @@ -6971,7 +7001,7 @@ #: app/dialogs/preferences-dialog.c:1546 #, fuzzy msgid "Show tool _tips" -msgstr "Mostra els consells de les eines" +msgstr "Mostra els _consells de les eines" #: app/dialogs/preferences-dialog.c:1549 #, fuzzy @@ -6981,7 +7011,7 @@ #: app/dialogs/preferences-dialog.c:1552 #, fuzzy msgid "Show tips on _startup" -msgstr "Mostra consells en començar" +msgstr "Mostra consell_s en començar" #. Help Browser #: app/dialogs/preferences-dialog.c:1556 @@ -6991,7 +7021,7 @@ #: app/dialogs/preferences-dialog.c:1560 #, fuzzy msgid "H_elp browser to use:" -msgstr "Navegador d'ajuda a utilitzar" +msgstr "_Navegador d'ajuda a utilitzar:" #: app/dialogs/preferences-dialog.c:1565 msgid "Web Browser" @@ -7020,7 +7050,7 @@ #. Contiguous Regions #: app/dialogs/preferences-dialog.c:1606 msgid "Finding Contiguous Regions" -msgstr "Cerca les regions contígües" +msgstr "S'estan cercant les regions contígües" #: app/dialogs/preferences-dialog.c:1611 #, fuzzy @@ -7040,7 +7070,7 @@ #. Global Brush, Pattern, ... #: app/dialogs/preferences-dialog.c:1623 msgid "Paint Options Shared Between Tools" -msgstr "Opcions de pintura compartits entre eines" +msgstr "" #: app/dialogs/preferences-dialog.c:1636 #, fuzzy @@ -7076,7 +7106,7 @@ #: app/dialogs/preferences-dialog.c:1675 #, fuzzy msgid "Show active _image" -msgstr "/_Imatge activa" +msgstr "Desa la imatge" #: app/dialogs/preferences-dialog.c:1685 app/dialogs/preferences-dialog.c:1688 msgid "Image Windows" @@ -7090,12 +7120,12 @@ #: app/dialogs/preferences-dialog.c:1706 #, fuzzy msgid "Marching _ants speed:" -msgstr "Velocitat del contorn de la selecció:" +msgstr "_Velocitat del contorn de la selecció:" #. Zoom & Resize Behavior #: app/dialogs/preferences-dialog.c:1710 msgid "Zoom & Resize Behavior" -msgstr "Opcions de zoom i canvi de mida" +msgstr "Comportament de zoom i canvi de mida" #: app/dialogs/preferences-dialog.c:1714 #, fuzzy @@ -7125,12 +7155,11 @@ #: app/dialogs/preferences-dialog.c:1733 #, fuzzy msgid "Show _brush outline" -msgstr "Mostra contorn de pinzell" +msgstr "Mostra contorn de pin_zell" #: app/dialogs/preferences-dialog.c:1736 -#, fuzzy msgid "Show paint _tool cursor" -msgstr "Mostra els consells de les eines" +msgstr "" #: app/dialogs/preferences-dialog.c:1742 #, fuzzy @@ -7168,7 +7197,7 @@ #: app/dialogs/preferences-dialog.c:1806 msgid "Show zoom percentage" -msgstr "Mostrar el percentatge del zoom" +msgstr "Mostra el percentatge de l'ampliació" #: app/dialogs/preferences-dialog.c:1807 msgid "Show zoom ratio" @@ -7181,7 +7210,7 @@ #: app/dialogs/preferences-dialog.c:1809 msgid "Show memory usage" -msgstr "Mostra forma d'us de la memòria" +msgstr "Mostra l'us de la memòria" #: app/dialogs/preferences-dialog.c:1820 msgid "Image Title Format" @@ -7203,7 +7232,7 @@ #: app/dialogs/preferences-dialog.c:1925 #, fuzzy msgid "Check _size:" -msgstr "Comprova la mida" +msgstr "Comprova la _mida" #: app/dialogs/preferences-dialog.c:1928 msgid "Get Monitor Resolution" @@ -7222,7 +7251,7 @@ #: app/dialogs/preferences-dialog.c:2008 #, fuzzy msgid "C_alibrate..." -msgstr "C_alibració" +msgstr "C_alibra" #: app/dialogs/preferences-dialog.c:2028 app/dialogs/preferences-dialog.c:2031 msgid "Input Devices" @@ -7246,12 +7275,12 @@ #: app/dialogs/preferences-dialog.c:2053 #, fuzzy msgid "Save Input Device Settings _Now" -msgstr "Desa l'estat dels dispositius ara" +msgstr "Desa ara l'estat dels dispositius" #: app/dialogs/preferences-dialog.c:2060 #, fuzzy msgid "_Reset Saved Input Device Settings to Default Values" -msgstr "Neteja els paràmetres dels dispositius d'entrada desats ara" +msgstr "Desa l'estat dels dispositius d'entrada en sortir" #: app/dialogs/preferences-dialog.c:2075 msgid "Additional Input Controllers" @@ -7273,12 +7302,12 @@ #: app/dialogs/preferences-dialog.c:2134 #, fuzzy msgid "Hint for the _toolbox:" -msgstr "Tipus de finestra aconsellat per caixa d'eines:" +msgstr "Tipus de finestra aconsellat per _caixa d'eines:" #: app/dialogs/preferences-dialog.c:2138 #, fuzzy msgid "Hint for the _docks:" -msgstr "Tipus de finestra aconsellat per desplegables:" +msgstr "Tipus de finestra aconsellat per _desplegables:" #: app/dialogs/preferences-dialog.c:2141 msgid "Focus" @@ -7287,7 +7316,7 @@ #: app/dialogs/preferences-dialog.c:2145 #, fuzzy msgid "Activate the _focused image" -msgstr "Activa la imatge iluminada" +msgstr "Activa la imatge amb el _focus" #. Window Positions #: app/dialogs/preferences-dialog.c:2149 @@ -7302,12 +7331,12 @@ #: app/dialogs/preferences-dialog.c:2156 #, fuzzy msgid "Save Window Positions _Now" -msgstr "Desa les posicions de la finestra ara" +msgstr "Desa ara les posicions de la finestra" #: app/dialogs/preferences-dialog.c:2163 #, fuzzy msgid "_Reset Saved Window Positions to Default Values" -msgstr "R_estaura les posicions de les finestres desades a l'inici" +msgstr "R_estaura les posicions de les finestres desades en començar" #: app/dialogs/preferences-dialog.c:2178 app/dialogs/preferences-dialog.c:2181 #: app/dialogs/preferences-dialog.c:2329 @@ -7326,12 +7355,12 @@ #: app/dialogs/preferences-dialog.c:2202 #, fuzzy msgid "Maximum undo _memory:" -msgstr "Memòria màxima per desfer" +msgstr "Memòria màxima per desfer:" #: app/dialogs/preferences-dialog.c:2205 #, fuzzy msgid "Tile cache _size:" -msgstr "Mida de la memòria caché en mosaic:" +msgstr "Mida de la memòria cau de mosàics:" #: app/dialogs/preferences-dialog.c:2208 #, fuzzy @@ -7347,7 +7376,7 @@ #: app/dialogs/preferences-dialog.c:2218 #, fuzzy msgid "Image Thumbnails" -msgstr "Màscara d'imatge" +msgstr "Sense miniatures" #: app/dialogs/preferences-dialog.c:2223 #, fuzzy @@ -7376,7 +7405,7 @@ #: app/dialogs/preferences-dialog.c:2263 #, fuzzy msgid "Temp folder:" -msgstr "Directori temporal:" +msgstr "Carpetes de temes" #: app/dialogs/preferences-dialog.c:2263 #, fuzzy @@ -7416,7 +7445,7 @@ #: app/dialogs/preferences-dialog.c:2307 msgid "Select Palette Folders" -msgstr "Selecciona lcarpetes de paletes" +msgstr "Selecciona carpetes de paletes" #: app/dialogs/preferences-dialog.c:2309 msgid "Gradient Folders" @@ -7485,35 +7514,35 @@ #: app/dialogs/print-size-dialog.c:128 #, fuzzy msgid "Print Size" -msgstr "Mida d'impressió" +msgstr "Mida d'impressió_" #. the image size labels -#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:241 +#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:222 #: app/widgets/gimptemplateeditor.c:236 #, fuzzy msgid "_Width:" msgstr "Amplada:" -#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:248 +#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:225 #: app/widgets/gimptemplateeditor.c:243 #, fuzzy msgid "H_eight:" msgstr "Alçada:" #. the resolution labels -#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:338 +#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:273 #: app/widgets/gimptemplateeditor.c:363 #, fuzzy msgid "_X resolution:" msgstr "Resolució:" -#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:345 +#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:276 #: app/widgets/gimptemplateeditor.c:370 #, fuzzy msgid "_Y resolution:" msgstr "Resolució:" -#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:357 +#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:269 #: app/widgets/gimptemplateeditor.c:383 #, c-format msgid "pixels/%a" @@ -7525,14 +7554,12 @@ msgstr "Voleu sortir del GIMP?" #: app/dialogs/quit-dialog.c:126 -#, fuzzy msgid "If you quit GIMP now, these changes will be lost." -msgstr "Es perdran els canvis no desats." +msgstr "" #: app/dialogs/quit-dialog.c:164 -#, fuzzy msgid "There is one image with unsaved changes:" -msgstr "Redimen_siona la finestra amb el canvi de mida de la imatge" +msgstr "" #: app/dialogs/quit-dialog.c:167 #, c-format @@ -7542,7 +7569,7 @@ #: app/dialogs/quit-dialog.c:183 #, fuzzy msgid "_Discard Changes" -msgstr "_Descarta els canvis" +msgstr "Duplica el canal" #: app/dialogs/resize-dialog.c:115 msgid "Canvas Size" @@ -7560,7 +7587,7 @@ #: app/dialogs/resolution-calibrate-dialog.c:120 #, fuzzy msgid "Measure the rulers and enter their lengths:" -msgstr "Mesura els regles i entra'n la llargada a continuació." +msgstr "Mesureu els regles i introduïu-ne la llargada a continuació." #: app/dialogs/resolution-calibrate-dialog.c:145 msgid "_Horizontal:" @@ -7576,9 +7603,8 @@ msgstr "Mida de la imatge" #: app/dialogs/scale-dialog.c:166 -#, fuzzy msgid "Quality" -msgstr "/Fitxer/_Surt" +msgstr "" #: app/dialogs/scale-dialog.c:178 #, fuzzy @@ -7600,11 +7626,11 @@ #: app/dialogs/stroke-dialog.c:209 msgid "Paint Tool:" -msgstr "Eina de pintar" +msgstr "Eina de pintar:" #: app/dialogs/tips-dialog.c:90 msgid "Your GIMP tips file appears to be missing!" -msgstr "Sembla que s'ha perdut el fitxer de consells del GIMP" +msgstr "Sembla que manca el fitxer de consells del GIMP" #: app/dialogs/tips-dialog.c:92 #, c-format @@ -7664,8 +7690,8 @@ "GIMP uses an additional gtkrc file so you can configure it to look " "differently than other GTK apps." msgstr "" -"El GIMP fa servir un fitxet gtkrc addicional per a que el pogueu configurar " -"perquè es vegi diferent d'altres aplicacions GTK." +"El GIMP fa servir un fitxer gtkrc addicional que el podeu configurar perquè " +"es vegi diferent d'altres aplicacions GTK." #: app/dialogs/user-install-dialog.c:149 msgid "" @@ -7676,9 +7702,9 @@ msgstr "" "Els connectors i les extensions són programes externs executats pel GIMP que " "proporcionen una funcionalitat addicional. Aquests programes es cerquen en " -"executar el programa i la informació sobre la seva funcionalitat i temps mod " -"s'emmagatzema en aquest fitxer. Se suposa que aquest fitxer només es pot " -"llegir des del GIMP i no s'ha d'editar." +"executar el programa i la informació sobre la seva funcionalitat i temps de " +"modificació s'emmagatzema en aquest fitxer. Se suposa que aquest fitxer " +"només es pot llegir des del GIMP i no s'ha d'editar." #: app/dialogs/user-install-dialog.c:159 msgid "" @@ -7699,17 +7725,17 @@ "you quit The GIMP. You can configure The GIMP to reopen these dialogs at " "the saved position." msgstr "" -"La sessionrc es fa servir per emmagatzemar les finestres de diàleg obertes " -"l'últim cop que es va sortir del GIMP. Podeu configurar el GIMP per obrir-" -"les de nou a la posició desada." +"El (fitxer) sessionrc es fa servir per emmagatzemar les finestres de diàleg " +"obertes l'últim cop que es va sortir del GIMP. Podeu configurar el GIMP per " +"obrir-les de nou a la posició desada." #: app/dialogs/user-install-dialog.c:176 msgid "" "This file holds a collection of standard media sizes that serve as image " "templates." msgstr "" -"Aquest fitxer disposa d'una col·lecció de mides estandar que serveixen com a " -"plantilles d'imatge." +"Aquest fitxer disposa d'una col·lecció de mides estàndard que serveixen com " +"a plantilles d'imatge." #: app/dialogs/user-install-dialog.c:182 msgid "" @@ -7886,12 +7912,12 @@ "The GIMP %d.%d User Installation" msgstr "" "Benvingut a\n" -"la instal·lació de l'usuari del GIMP" +"la instal·lació d'usuari del GIMP" #: app/dialogs/user-install-dialog.c:771 msgid "Click \"Continue\" to enter the GIMP user installation." msgstr "" -"Feu clic a \"Continua\" per entrar a la instal·lació de l'usuari del GIMP." +"Feu clic a \"Continua\" per entrar a la instal·lació d'usuari del GIMP." #: app/dialogs/user-install-dialog.c:778 msgid "" @@ -7922,9 +7948,9 @@ "FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for " "more details." msgstr "" -"Aquest programa es distribueix amb l'esperança que serà útil, però SENSE CAP " -"GARANTIA; ni tan sols les garanties implícites de la COMERCIALITZACIÓ o de " -"l'ADEQUACIÓ A UN ÚS DETERMINAT. Consulteu la llicència pública general de " +"Aquest programa es distribueix amb l'esperança que serà útil, però sense cap " +"garantia; ni tan sols les garanties implícites de la comercialització o de " +"l'adequació a un ús determinat. Consulteu la llicència pública general de " "GNU per a més informació." #: app/dialogs/user-install-dialog.c:800 @@ -7945,7 +7971,7 @@ #, fuzzy msgid "Click \"Continue\" to proceed with the user installation." msgstr "" -"Feu clic a \"Continua\" per entrar a la instal·lació de l'usuari del GIMP." +"Feu clic a \"Continua\" per entrar a la instal·lació d'usuari del GIMP." #: app/dialogs/user-install-dialog.c:816 msgid "It seems you have used GIMP 2.0 before." @@ -7988,7 +8014,7 @@ #: app/dialogs/user-install-dialog.c:991 msgid "User Installation Log" -msgstr "Registre de la instal·lació de l'usuari" +msgstr "Registre de la instal·lació d'usuari" #: app/dialogs/user-install-dialog.c:992 msgid "Please wait while your personal GIMP folder is being created..." @@ -8012,7 +8038,7 @@ #: app/dialogs/user-install-dialog.c:1065 #, c-format msgid "Copying file '%s' from '%s'..." -msgstr "S'està copiant el fitxer %s des de '%s'..." +msgstr "S'està copiant el fitxer '%s' des de '%s'..." #: app/dialogs/user-install-dialog.c:1084 #, c-format @@ -8031,14 +8057,14 @@ "the amount of memory used by other running processes." msgstr "" "El GIMP utilitza una quantitat limitada de memòria per emmagatzemar les " -"dades de la imatge, anomenada \"Tile Cache\". Us caldrà ajustar-ne la mida " -"per encabir-la a la memòria. Tingueu en compte la quantitat de memòria que " -"utilitzen altres processos en execució." +"dades de la imatge, anomenada \"Memòria cau de mosàics\". Us caldrà ajustar-" +"ne la mida per encabir-la a la memòria. Tingueu en compte la quantitat de " +"memòria que utilitzen altres processos en execució." #: app/dialogs/user-install-dialog.c:1375 #, fuzzy msgid "Tile cache size:" -msgstr "Mida de la memòria caché en mosaic:" +msgstr "Mida de la memòria cau de mosàics:" #: app/dialogs/user-install-dialog.c:1387 msgid "" @@ -8047,9 +8073,9 @@ "with enough free space (several hundred MB). On a UNIX system, you may want " "to use the system-wide temp-dir (\"/tmp\" or \"/var/tmp\")." msgstr "" -"Totes les imatges i les dades per desfer que no caben en la memòria mosàic " -"s'escriuen en un fitxer d'intercanvi. Caldria posar-lo en un sistema de " -"fitxers local amb prou espai lliure (alguns centenars de MB). En sistemes " +"Totes les imatges i les dades per desfer que no caben en la memòria cau de " +"mosàics s'escriuen en un fitxer d'intercanvi. Caldria posar-lo en un sistema " +"de fitxers local amb prou espai lliure (alguns centenars de MB). En sistemes " "UNIX, potser voldreu fer servir el directori temporal del sistema (\"/tmp\" " "o \"/var/tmp\")." @@ -8065,21 +8091,20 @@ #: app/dialogs/vectors-export-dialog.c:78 #, fuzzy msgid "Export the active path" -msgstr "Mou el camí actual" +msgstr "Exporta camí a SVG" #: app/dialogs/vectors-export-dialog.c:79 #, fuzzy msgid "Export all paths from this image" -msgstr "Crea una nova visualització per aquesta imatge" +msgstr "Crea una nova visualització per a aquesta imatge" #: app/dialogs/vectors-import-dialog.c:57 msgid "Import Paths from SVG" msgstr "Importa camins des de SVG" #: app/dialogs/vectors-import-dialog.c:83 -#, fuzzy msgid "All Files (*.*)" -msgstr "Filtres disponibles" +msgstr "" #: app/dialogs/vectors-import-dialog.c:88 msgid "Scalable SVG image (*.svg)" @@ -8088,7 +8113,7 @@ #: app/dialogs/vectors-import-dialog.c:99 #, fuzzy msgid "_Merge imported paths" -msgstr "Importa camí" +msgstr "Fusiona els camins visibles" #: app/dialogs/vectors-import-dialog.c:109 msgid "_Scale imported paths to fit image" @@ -8146,7 +8171,7 @@ #: app/display/gimpdisplayshell-close.c:185 #, fuzzy, c-format msgid "Close %s" -msgstr "Tanca %s?" +msgstr "Voleu tancar %s?" #: app/display/gimpdisplayshell-close.c:131 msgid "Do_n't save" @@ -8158,9 +8183,9 @@ msgstr "" #: app/display/gimpdisplayshell-close.c:209 -#, fuzzy, c-format +#, c-format msgid "If you don't save the image, changes from the last %s will be lost." -msgstr "Es perdran els canvis no desats." +msgstr "" #. one second, the time period #: app/display/gimpdisplayshell-close.c:266 @@ -8183,21 +8208,22 @@ msgid "%d minutes" msgstr "" -#: app/display/gimpdisplayshell-dnd.c:96 +#: app/display/gimpdisplayshell-dnd.c:98 msgid "Drop New Layer" -msgstr "Perd papa nova" +msgstr "Deixa capa nova" -#: app/display/gimpdisplayshell-dnd.c:140 +#: app/display/gimpdisplayshell-dnd.c:142 msgid "Drop New Path" -msgstr "Perd camí nou" +msgstr "Deixa camí nou" #: app/display/gimpdisplayshell-filter-dialog.c:73 msgid "Color Display Filters" msgstr "Filtres de visualització de colors" #: app/display/gimpdisplayshell-filter-dialog.c:76 +#, fuzzy msgid "Configure Color Display Filters" -msgstr "Configura els filtres de visualització de colors" +msgstr "Filtres de visualització de colors" #: app/display/gimpdisplayshell-layer-select.c:122 msgid "Layer Select" @@ -8205,19 +8231,20 @@ #: app/display/gimpdisplayshell-scale.c:537 msgid "Zoom Ratio" -msgstr "Relació d'aspecte de l'ampliació" +msgstr "Relació d'aspecte del zoom" #: app/display/gimpdisplayshell-scale.c:539 msgid "Select Zoom Ratio" -msgstr "Selecciona relació d'aspecte de l'ampliació" +msgstr "Selecciona relació d'aspecte del zoom" #: app/display/gimpdisplayshell-scale.c:574 msgid "Zoom Ratio:" -msgstr "Relació d'aspecte de l'ampliació:" +msgstr "Relació d'aspecte del zoom:" #: app/display/gimpdisplayshell-scale.c:601 +#, fuzzy msgid "Zoom:" -msgstr "Zoom:" +msgstr "Zoom 1:1" #: app/display/gimpdisplayshell-title.c:234 msgid "RGB-empty" @@ -8250,7 +8277,7 @@ #: app/display/gimpdisplayshell-title.c:325 msgid "1 layer" -msgstr "Capa 1" +msgstr "Una capa" #: app/display/gimpdisplayshell-title.c:325 #, c-format @@ -8272,7 +8299,7 @@ #: app/file/file-open.c:105 app/file/file-save.c:132 msgid "Unknown file type" -msgstr "Tipus de fitxer desconegut." +msgstr "Tipus de fitxer desconegut" #: app/file/file-open.c:120 app/file/file-save.c:146 msgid "Not a regular file" @@ -8297,7 +8324,7 @@ #: app/file/file-utils.c:107 msgid "Invalid character sequence in URI" -msgstr "Sequencia de caràcters invàlida en URI" +msgstr "Hi ha una seqüencia de caràcters invàlida a l'URI" #: app/gui/session.c:247 app/menus/menus.c:351 app/widgets/gimpdevices.c:218 #, fuzzy, c-format @@ -8332,7 +8359,7 @@ #: app/paint/gimpconvolve.c:121 app/tools/gimpconvolvetool.c:70 msgid "Convolve" -msgstr "Convolve" +msgstr "Envolta" #: app/paint/gimpdodgeburn.c:87 app/tools/gimpdodgeburntool.c:70 msgid "Dodge/Burn" @@ -8619,8 +8646,8 @@ "PDB calling error for procedure '%s':\n" "Argument #%d type mismatch (expected %s, got %s)" msgstr "" -"S'ha produït un error en cridar la base de dades de procediments al procedir " -"'%s':\n" +"S'ha produït un error en cridar la base de dades de procediments per al " +"procediment '%s':\n" "El tipus d'argument #%d està mal emparellat (s'esperava %s, i s'ha obtingut %" "s)" @@ -8647,7 +8674,7 @@ #: app/plug-in/plug-in.c:544 app/plug-in/plug-in.c:574 #, fuzzy, c-format msgid "Terminating plug-in: '%s'\n" -msgstr "S'està consultant connector:'%s'\n" +msgstr "S'està consultant el connector:'%s'\n" #: app/plug-in/plug-in.c:730 #, c-format @@ -8668,7 +8695,7 @@ #: app/plug-in/plug-in-rc.c:176 #, c-format msgid "Skipping '%s': wrong GIMP protocol version." -msgstr "S'està omitint '%s': versió errònia de protocol del GIMP." +msgstr "S'està ometent '%s': versió errònia de protocol del GIMP." #: app/plug-in/plug-in-rc.c:432 #, fuzzy, c-format @@ -8678,7 +8705,7 @@ #: app/plug-in/plug-in-rc.c:447 #, fuzzy, c-format msgid "invalid value '%ld' for icon type" -msgstr "El valor '%ld' és invalid per l'element %s" +msgstr "El valor '%ld' és invàlid per a l'element %s" #: app/plug-in/plug-ins.c:139 msgid "Resource configuration" @@ -8694,7 +8721,7 @@ #: app/plug-in/plug-ins.c:170 #, c-format msgid "Querying plug-in: '%s'\n" -msgstr "S'està consultant connector:'%s'\n" +msgstr "S'està consultant el connector:'%s'\n" #. initialize the plug-ins #: app/plug-in/plug-ins.c:180 @@ -8704,7 +8731,7 @@ #: app/plug-in/plug-ins.c:194 #, c-format msgid "Initializing plug-in: '%s'\n" -msgstr "S'està inicialitzant connector: '%s'\n" +msgstr "S'està inicialitzant el connector: '%s'\n" #: app/plug-in/plug-ins.c:351 msgid "Starting Extensions" @@ -8756,7 +8783,7 @@ #: app/text/gimptextlayer.c:171 #, fuzzy msgid "Rename Text Layer" -msgstr "Canvia el nom de la capa" +msgstr "Reanomena la capa" #: app/text/gimptextlayer.c:172 #, fuzzy @@ -8788,7 +8815,7 @@ #: app/text/gimptextlayer.c:531 msgid "Discard Text Information" -msgstr "Descarta informació del text" +msgstr "Descarta informació de text" #: app/text/gimptextlayer.c:581 msgid "Due to lack of any fonts, text functionality is not available." @@ -8798,7 +8825,7 @@ #: app/text/gimptextlayer.c:616 msgid "Empty Text Layer" -msgstr "Capa de text buida" +msgstr "Buida la capa de text " #: app/text/gimptextlayer-xcf.c:73 #, c-format @@ -8809,7 +8836,7 @@ "Some text properties may be wrong. Unless you want to edit the text layer, " "you don't need to worry about this." msgstr "" -"S'han produït problemes analitzant el text paràsit per capa '%s':\n" +"S'han produït problemes analitzant el text paràsit per a capa '%s':\n" "%s\n" "\n" "Algunes propietats del text poden estar malament. A no ser que es vulgui " @@ -8836,7 +8863,7 @@ #: app/tools/tools-enums.c:55 msgid "Resize" -msgstr "Canvi de mida" +msgstr "Canvia de mida" #: app/tools/tools-enums.c:83 #, fuzzy @@ -8851,7 +8878,7 @@ #: app/tools/tools-enums.c:85 #, fuzzy msgid "Fixed aspect ratio" -msgstr "Ràtio d'aspecte fixat" +msgstr "Relació d'aspecte fixat" #: app/tools/tools-enums.c:113 #, fuzzy @@ -8883,7 +8910,7 @@ #: app/tools/tools-enums.c:177 #, fuzzy msgid "Image + Grid" -msgstr "Image Mod" +msgstr "Mod de la imatge" #: app/tools/tools-enums.c:204 #, fuzzy @@ -8911,7 +8938,7 @@ #: app/tools/gimpairbrushtool.c:123 app/tools/gimpconvolvetool.c:211 #: app/tools/gimpsmudgetool.c:123 msgid "Rate:" -msgstr "Ràtio:" +msgstr "Proporció:" #: app/tools/gimpairbrushtool.c:129 msgid "Pressure:" @@ -8988,11 +9015,11 @@ #: app/tools/gimpbucketfilloptions.c:129 msgid "Allow completely transparent regions to be filled" -msgstr "Deixa regions completament transparents per a omplir" +msgstr "Deixa regions completament transparents per omplir" #: app/tools/gimpbucketfilloptions.c:135 msgid "Base filled area on all visible layers" -msgstr "Area base plena en totes les capes visibles" +msgstr "Àrea base plena en totes les capes visibles" #: app/tools/gimpbucketfilloptions.c:141 app/tools/gimpselectionoptions.c:161 msgid "Maximum color difference" @@ -9008,17 +9035,17 @@ #: app/tools/gimpbucketfilloptions.c:250 #, c-format msgid "Affected Area %s" -msgstr "Àrea afectada %s" +msgstr "" #: app/tools/gimpbucketfilloptions.c:254 #, fuzzy msgid "Fill whole selection" -msgstr "Omple tota la selecció" +msgstr "Flota selecció" #: app/tools/gimpbucketfilloptions.c:255 #, fuzzy msgid "Fill similar colors" -msgstr "Omple els colors similars" +msgstr "S'està cercant colors similars" #: app/tools/gimpbucketfilloptions.c:261 app/tools/gimpselectionoptions.c:438 msgid "Finding Similar Colors" @@ -9027,7 +9054,7 @@ #: app/tools/gimpbucketfilloptions.c:277 #, fuzzy msgid "Fill transparent areas" -msgstr "Omple arees transparents" +msgstr "Omple àrees transparents" #: app/tools/gimpbucketfilloptions.c:283 #: app/tools/gimpcolorpickeroptions.c:179 app/tools/gimpselectionoptions.c:454 @@ -9051,7 +9078,7 @@ #: app/tools/gimpbycolorselecttool.c:83 msgid "Select regions by color" -msgstr "Selecciona les regions per color" +msgstr "Selecciona regions per color" #: app/tools/gimpbycolorselecttool.c:84 #, fuzzy @@ -9102,7 +9129,7 @@ #: app/tools/gimpcolorbalancetool.c:301 msgid "Cyan" -msgstr "Cià" +msgstr "Cian" #: app/tools/gimpcolorbalancetool.c:308 msgid "Magenta" @@ -9115,7 +9142,7 @@ #: app/tools/gimpcolorbalancetool.c:325 #, fuzzy msgid "R_eset range" -msgstr "Torna el rang al valor original" +msgstr "Torna _el rang al valor original" #: app/tools/gimpcolorbalancetool.c:334 #, fuzzy @@ -9175,7 +9202,7 @@ #: app/tools/gimpcolorpickeroptions.c:193 #, fuzzy, c-format msgid "Add to palette %s" -msgstr "/_Edita paleta..." +msgstr "/Afegeix pestanya/Pal_etes" #: app/tools/gimpcolorpickertool.c:99 msgid "Color Picker" @@ -9202,20 +9229,21 @@ #: app/tools/gimpconvolvetool.c:72 #, fuzzy msgid "Con_volve" -msgstr "Convolve" +msgstr "Envolta" +# the type radio box #. the type radio box #: app/tools/gimpconvolvetool.c:193 #, c-format msgid "Convolve Type %s" -msgstr "Tipus de convolve %s" +msgstr "Tipus d'envolta %s" #. tool toggle #: app/tools/gimpcropoptions.c:188 app/tools/gimpmagnifyoptions.c:208 #: app/tools/gimpmoveoptions.c:217 #, c-format msgid "Tool Toggle %s" -msgstr "Commutador d'eines %s" +msgstr "Commutador d'eina %s" #: app/tools/gimpcropoptions.c:200 #, fuzzy @@ -9232,7 +9260,7 @@ #: app/tools/gimpcropoptions.c:215 #, fuzzy, c-format msgid "Keep aspect ratio %s" -msgstr "Ràtio d'aspecte fixat" +msgstr "Relació d'aspecte fixat" #: app/tools/gimpcroptool.c:164 msgid "Crop & Resize" @@ -9268,7 +9296,7 @@ #: app/tools/gimpcroptool.c:1071 app/widgets/gimpbrusheditor.c:194 #, fuzzy msgid "Aspect ratio:" -msgstr "Ràtio de l'aspecte:" +msgstr "Relació d'aspecte:" #: app/tools/gimpcroptool.c:1082 #, fuzzy @@ -9322,7 +9350,7 @@ #: app/tools/gimpcurvestool.c:494 app/tools/gimplevelstool.c:430 #, fuzzy msgid "R_eset channel" -msgstr "Torna a canal inicial" +msgstr "_Torna a canal inicial" #. Horizontal button box for load / save #: app/tools/gimpcurvestool.c:596 app/tools/gimplevelstool.c:640 @@ -9336,7 +9364,7 @@ #: app/tools/gimpdodgeburntool.c:71 msgid "Dodge or Burn strokes" -msgstr "Opcions de l'esvaïment o cremat" +msgstr "Traçats de l'esvaïment o cremat" #: app/tools/gimpdodgeburntool.c:72 #, fuzzy @@ -9361,7 +9389,7 @@ #: app/tools/gimpeditselectiontool.c:1203 #, fuzzy msgid "Move Floating Selection" -msgstr "Sura la selecció" +msgstr "Selecció flotant" #: app/tools/gimpeditselectiontool.c:464 app/tools/gimpeditselectiontool.c:732 msgid "Move: " @@ -9374,7 +9402,7 @@ #: app/tools/gimpellipseselecttool.c:73 #, fuzzy msgid "_Ellipse Select" -msgstr "Selecció d'el·lipse" +msgstr "Selecció el·liptica" #: app/tools/gimperasertool.c:71 msgid "Erase to background or transparency" @@ -9394,7 +9422,7 @@ #: app/tools/gimpflipoptions.c:161 app/tools/gimpmoveoptions.c:211 #: app/tools/gimptransformoptions.c:323 msgid "Affect:" -msgstr "Afecta:" +msgstr "Compensació:" #. tool toggle #: app/tools/gimpflipoptions.c:167 @@ -9422,20 +9450,20 @@ #: app/tools/gimpfuzzyselecttool.c:98 msgid "Select contiguous regions" -msgstr "Selecciona les regions contínues" +msgstr "Selecciona les regions contígües" #: app/tools/gimpfuzzyselecttool.c:99 #, fuzzy msgid "Fu_zzy Select" -msgstr "Selecció difusa" +msgstr "Selecció difosa" #: app/tools/gimphistogramoptions.c:151 msgid "Histogram Scale" -msgstr "Escala del histograma" +msgstr "Escala de l'histograma" #: app/tools/gimphuesaturationtool.c:111 msgid "Adjust hue and saturation" -msgstr "Ajusta el to i la saturació" +msgstr "Ajusta to i saturació" #: app/tools/gimphuesaturationtool.c:112 #, fuzzy @@ -9445,7 +9473,7 @@ #: app/tools/gimphuesaturationtool.c:166 #, fuzzy msgid "Adjust hue / lightness / saturation" -msgstr " Ajusta el to, la lluminositat i la saturació" +msgstr " Ajusta to, lluminositat i saturació" #: app/tools/gimphuesaturationtool.c:210 msgid "Hue-Saturation operates only on RGB color layers." @@ -9495,7 +9523,7 @@ #: app/tools/gimphuesaturationtool.c:405 #, fuzzy msgid "R_eset color" -msgstr "Torna a color inicial" +msgstr "_Torna a color inicial" #: app/tools/gimpimagemaptool.c:259 app/widgets/gimpthumbbox.c:354 msgid "_Preview" @@ -9563,7 +9591,7 @@ #: app/tools/gimpiscissorstool.c:278 msgid "Select shapes from image" -msgstr "Selecciona les ombres de la imatge" +msgstr "Selecciona les formes de la imatge" #: app/tools/gimpiscissorstool.c:279 #, fuzzy @@ -9638,9 +9666,8 @@ msgstr "Ajust automàtic dels nivells" #: app/tools/gimpmagnifyoptions.c:203 -#, fuzzy msgid "Auto-resize window" -msgstr "Redimensiona la finestra en el _zoom" +msgstr "" #: app/tools/gimpmagnifytool.c:95 msgid "Magnify" @@ -9737,7 +9764,7 @@ #: app/tools/gimppaintbrushtool.c:52 msgid "Paint fuzzy brush strokes" -msgstr "Pinta amb pinzells de traç difús" +msgstr "Pinta amb pinzells de traç difós" #: app/tools/gimppaintbrushtool.c:53 #, fuzzy @@ -9745,12 +9772,12 @@ msgstr "Pinzell" #: app/tools/gimppaintoptions-gui.c:103 app/widgets/gimpbrushselect.c:201 -#: app/widgets/gimplayertreeview.c:330 +#: app/widgets/gimplayertreeview.c:332 msgid "Opacity:" msgstr "Opacitat:" #: app/tools/gimppaintoptions-gui.c:108 app/tools/gimpselectionoptions.c:374 -#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:323 +#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:325 msgid "Mode:" msgstr "Mode:" @@ -9765,7 +9792,7 @@ #: app/tools/gimppaintoptions-gui.c:177 #, fuzzy msgid "Hard edge" -msgstr "Contorn dur" +msgstr "Vora dura" #: app/tools/gimppaintoptions-gui.c:216 #, fuzzy @@ -9782,7 +9809,7 @@ #: app/tools/gimppaintoptions-gui.c:262 msgid "Rate" -msgstr "Velocitat" +msgstr "Proporció" #: app/tools/gimppaintoptions-gui.c:275 msgid "Size" @@ -9804,7 +9831,7 @@ #: app/tools/gimppenciltool.c:52 msgid "Paint hard edged pixels" -msgstr "Pinta els pixels dels contorns" +msgstr "Pinta els píxels de les vores dures" #: app/tools/gimppenciltool.c:53 #, fuzzy @@ -9847,7 +9874,7 @@ #: app/tools/gimpposterizetool.c:173 msgid "Posterize does not operate on indexed layers." -msgstr "Posterize no funciona en capes indexades" +msgstr "Posterize no funciona en capes indexades." #: app/tools/gimpposterizetool.c:223 #, fuzzy @@ -9861,23 +9888,23 @@ #: app/tools/gimprectselecttool.c:98 #, fuzzy msgid "_Rect Select" -msgstr "Selecció de rectangle" +msgstr "Selecció rectangular" #: app/tools/gimprectselecttool.c:224 msgid "Selection: ADD" -msgstr "Selecció: afegir" +msgstr "Selecció: afegeix" #: app/tools/gimprectselecttool.c:227 msgid "Selection: SUBTRACT" -msgstr "Selecció: sostreure" +msgstr "Selecció: sostreu" #: app/tools/gimprectselecttool.c:230 msgid "Selection: INTERSECT" -msgstr "Selecció: creuar" +msgstr "Selecció: creua" #: app/tools/gimprectselecttool.c:233 msgid "Selection: REPLACE" -msgstr "Selecció: reemplaçar" +msgstr "Selecció: reemplaça" #: app/tools/gimprectselecttool.c:468 msgid "Selection: " @@ -9940,21 +9967,20 @@ #: app/tools/gimpscaletool.c:189 #, fuzzy msgid "Scale ratio X:" -msgstr "Escala de la ràtio X:" +msgstr "Relació d'escala X:" #: app/tools/gimpscaletool.c:192 #, fuzzy msgid "Scale ratio Y:" -msgstr "Escala de la ràtio X:" +msgstr "Relació d'escala X:" #: app/tools/gimpscaletool.c:196 -#, fuzzy msgid "Aspect Ratio:" -msgstr "Ràtio de l'aspecte:" +msgstr "Relació d'aspecte:" #: app/tools/gimpselectionoptions.c:136 msgid "Smooth edges" -msgstr "Suavitza perfils" +msgstr "Suavitza les vores" #: app/tools/gimpselectionoptions.c:150 msgid "Allow completely transparent regions to be selected" @@ -9966,7 +9992,7 @@ #: app/tools/gimpselectionoptions.c:171 msgid "Use all visible layers when shrinking the selection" -msgstr "Utiliza totes les capes visibles al encongir la selecció" +msgstr "Utiliza totes les capes visibles en encongir la selecció" #: app/tools/gimpselectionoptions.c:382 app/tools/gimptextoptions.c:447 msgid "Antialiasing" @@ -9975,7 +10001,7 @@ #: app/tools/gimpselectionoptions.c:399 #, fuzzy msgid "Feather edges" -msgstr "Suavitza contorns" +msgstr "Suavitza les vores" #: app/tools/gimpselectionoptions.c:425 #, fuzzy @@ -9985,7 +10011,7 @@ #: app/tools/gimpselectionoptions.c:448 #, fuzzy msgid "Select transparent areas" -msgstr "Selecciona arees transparents" +msgstr "Selecciona àrees transparents" #: app/tools/gimpselectionoptions.c:488 #, fuzzy @@ -10031,15 +10057,17 @@ #: app/tools/gimptextoptions.c:146 msgid "" "Hinting alters the font outline to produce a crisp bitmap at small sizes" -msgstr "Els consells alteren" +msgstr "" +"Hinting altera el contorn del tipus de lletra per produïr un mapa de bits " +"esmicolat" #: app/tools/gimptextoptions.c:153 msgid "" "If available, hints from the font are used but you may prefer to always use " "the automatic hinter" msgstr "" -"Si estan disponibles, s'utilitzaran els consells sobre la font, però podeu " -"preferir rebre consells aleatoris" +"Si estan disponibles, s'utilitzaran hints sobre el tipus de lletra, però " +"podeu preferir utilitzar sempre el hinter automàtic" #: app/tools/gimptextoptions.c:178 msgid "Indentation of the first line" @@ -10047,7 +10075,7 @@ #: app/tools/gimptextoptions.c:183 msgid "Modify line spacing" -msgstr "Modifica l'espaiat de la linia" +msgstr "Modifica l'espaiat de la línia" #: app/tools/gimptextoptions.c:419 #, fuzzy @@ -10057,7 +10085,7 @@ #: app/tools/gimptextoptions.c:431 #, fuzzy msgid "Hinting" -msgstr "Consell" +msgstr "_Hinting" #: app/tools/gimptextoptions.c:438 #, fuzzy @@ -10087,7 +10115,7 @@ "spacing:" msgstr "" "Espaiat\n" -"de línia" +"de línia:" #: app/tools/gimptextoptions.c:478 #, fuzzy @@ -10109,7 +10137,7 @@ #: app/tools/gimptexttool.c:842 app/tools/gimptexttool.c:845 msgid "Confirm Text Editing" -msgstr "Confirma l'edició del text" +msgstr "" #: app/tools/gimptexttool.c:866 msgid "" @@ -10139,15 +10167,16 @@ #: app/tools/gimptransformoptions.c:329 msgid "Transform Direction" -msgstr "Transforma direcció" +msgstr "Direcció de la trasformació" #: app/tools/gimptransformoptions.c:338 msgid "Interpolation:" msgstr "Interpolació:" #: app/tools/gimptransformoptions.c:348 +#, fuzzy msgid "Supersampling" -msgstr "Supermostratge" +msgstr "Supermostratge adaptable" #. the clip resulting image toggle button #: app/tools/gimptransformoptions.c:353 @@ -10160,6 +10189,7 @@ msgid "Preview:" msgstr "Previsualitza" +# the constraints frame #. the constraints frame #: app/tools/gimptransformoptions.c:413 msgid "Constraints" @@ -10173,17 +10203,17 @@ #: app/tools/gimptransformoptions.c:445 #, fuzzy, c-format msgid "Keep height %s" -msgstr "Mantenir alçada %s" +msgstr "Manté alçada %s" #: app/tools/gimptransformoptions.c:447 #, fuzzy, c-format msgid "Keep width %s" -msgstr "Mantenir amplada %s" +msgstr "Manté amplada %s" #: app/tools/gimptransformoptions.c:449 #, fuzzy, c-format msgid "Keep aspect %s" -msgstr "Ràtio d'aspecte fixat" +msgstr "Manté alçada %s" #: app/tools/gimptransformtool.c:253 msgid "Transforming..." @@ -10227,7 +10257,7 @@ #: app/tools/gimpvectortool.c:161 msgid "Create and edit paths" -msgstr "Crea i edita camins" +msgstr "Creeu i editeu camins" #: app/tools/gimpvectortool.c:363 msgid "Add Stroke" @@ -10267,11 +10297,11 @@ #: app/tools/gimpvectortool.c:567 msgid "Convert Edge" -msgstr "Converteix fil" +msgstr "Converteix la vora" #: app/tools/gimpvectortool.c:597 msgid "Delete Anchor" -msgstr "Suprimeix ancora" +msgstr "Suprimeix àncora" #: app/tools/gimpvectortool.c:619 msgid "Delete Segment" @@ -10291,15 +10321,15 @@ #: app/tools/gimpvectortool.c:1202 msgid "Click to create a new component of the path." -msgstr "Clica per a crear un nou component del camí." +msgstr "Clica per crear un nou component del camí." #: app/tools/gimpvectortool.c:1205 msgid "Click to create a new anchor. (try SHIFT)" -msgstr "Clica per a crear una nova àncora. (prova Maj)" +msgstr "Clica per crear una nova àncora. (proveu tecla de majúscula)" #: app/tools/gimpvectortool.c:1208 msgid "Click-Drag to move the anchor around." -msgstr "Clica i arrossega per moure el contorn de l'ancoratge." +msgstr "Clica i arrossega per moure el contorn del ancoratge." #: app/tools/gimpvectortool.c:1211 msgid "Click-Drag to move the anchors around." @@ -10307,17 +10337,21 @@ #: app/tools/gimpvectortool.c:1214 msgid "Click-Drag to move the handle around. (try SHIFT)" -msgstr "Clica i arrossega per moure el contorn de la nansa (prova MAJÚSCULES)" +msgstr "" +"Clica i arrossega per moure el contorn de la nansa (proveu tecla de " +"majúscula)" #: app/tools/gimpvectortool.c:1217 msgid "Click-Drag to change the shape of the curve. (SHIFT: symmetrical)" msgstr "" -"Clica i arrossega per canviar l'ombra de la corba. (MAJÚSCULES: simétriques)" +"Clica i arrossega per canviar l'ombra de la corba. (tecla de majúscula: " +"simétriques)" #: app/tools/gimpvectortool.c:1221 msgid "Click-Drag to move the component around. (try SHIFT)" msgstr "" -"Clica i arrossega per moure el contorn del component (prova MAJÚSCULES)" +"Clica i arrossega per moure el contorn del component (proveu tecla de " +"majúscula)" #: app/tools/gimpvectortool.c:1225 msgid "Click-Drag to move the path around." @@ -10325,7 +10359,7 @@ #: app/tools/gimpvectortool.c:1228 msgid "Click to insert an anchor on the path. (try SHIFT)" -msgstr "Clica per inserir una ancora en el camí. (prova MAJÚSCULES)" +msgstr "Clica per inserir una àncora en el camí. (proveu tecla de majúscula)" #: app/tools/gimpvectortool.c:1231 msgid "Click to delete this anchor." @@ -10333,7 +10367,7 @@ #: app/tools/gimpvectortool.c:1234 msgid "Click to connect this anchor with the selected endpoint." -msgstr "Clica per connectar aquesta ancora amb l'extrem seleccionat." +msgstr "Clica per connectar aquesta àncora amb l'extrem seleccionat." #: app/tools/gimpvectortool.c:1238 msgid "Click to open up the path." @@ -10341,12 +10375,12 @@ #: app/tools/gimpvectortool.c:1241 msgid "Click to make this node angular." -msgstr "Clica per crear aquest punt amgular." +msgstr "Clica per crear aquest node angular." #: app/tools/gimpvectortool.c:1751 #, fuzzy msgid "Delete Anchors" -msgstr "Suprimeix ancora" +msgstr "Suprimeix àncora" #: app/tools/gimpvectortool.c:1918 msgid "There is no active layer or channel to stroke to" @@ -10358,7 +10392,7 @@ #: app/vectors/gimpvectors.c:232 msgid "Rename Path" -msgstr "Canvia el nom del camí" +msgstr "Reanomena el camí" #: app/vectors/gimpvectors.c:233 app/vectors/gimpvectors.c:373 msgid "Move Path" @@ -10366,7 +10400,7 @@ #: app/vectors/gimpvectors.c:234 msgid "Scale Path" -msgstr "Escala cami" +msgstr "Escala camí" #: app/vectors/gimpvectors.c:235 msgid "Resize Path" @@ -10374,7 +10408,7 @@ #: app/vectors/gimpvectors.c:236 app/vectors/gimpvectors.c:464 msgid "Flip Path" -msgstr "Volteja Camí" +msgstr "Volteja camí" #: app/vectors/gimpvectors.c:237 app/vectors/gimpvectors.c:508 msgid "Rotate Path" @@ -10399,16 +10433,16 @@ #: app/vectors/gimpvectors-import.c:324 #, c-format msgid "No paths found in '%s'" -msgstr "No s'han trovat camins en '%s'" +msgstr "No s'han trobat camins en '%s'" #: app/vectors/gimpvectors-import.c:327 msgid "No paths found in the buffer" -msgstr "No s'han trovat camins en memòria intermèdia" +msgstr "No s'han trobat camins en memòria intermèdia" #: app/vectors/gimpvectors-import.c:337 -#, c-format +#, fuzzy, c-format msgid "Failed to import paths from '%s': %s" -msgstr "No s'han pogut importar els camins des de \"%s\": %s" +msgstr "No s'han pogut llegir %d bytes des de '%s': %s" #: app/widgets/gimpactiongroup.c:803 #, c-format @@ -10498,8 +10532,9 @@ msgstr "Reordena el canal" #: app/widgets/gimpchanneltreeview.c:261 +#, fuzzy msgid "Empty Channel" -msgstr "Canal buit" +msgstr "Buida canal còpia" #: app/widgets/gimpclipboard.c:283 msgid "Clipboard" @@ -10507,7 +10542,7 @@ #: app/widgets/gimpcolordialog.c:169 msgid "Add the current color to the color history" -msgstr "Afegeix el color actual al histograma de color" +msgstr "Afegeix el color actual a l'historial de color" #: app/widgets/gimpcolordisplayeditor.c:177 msgid "Available Filters" @@ -10535,7 +10570,7 @@ #: app/widgets/gimpcolordisplayeditor.c:322 msgid "Reset the selected filter to default values" -msgstr "Torna el filtre seleccionat als valors predeterminats" +msgstr "Restableix els valors predeterminats del filtre seleccionat" #: app/widgets/gimpcolordisplayeditor.c:543 #, fuzzy, c-format @@ -10764,7 +10799,7 @@ #: app/widgets/gimpcontrollerkeyboard.c:159 #, fuzzy msgid "Key Right (Control)" -msgstr "/Desa el color dret a" +msgstr "/_Desa el color dret a" #: app/widgets/gimpcontrollerkeyboard.c:162 msgid "Key Right (Shift)" @@ -10926,9 +10961,8 @@ msgstr "Mou el canal" #: app/widgets/gimpcontrollerwheel.c:229 -#, fuzzy msgid "Mouse Wheel Events" -msgstr "Mou el canal" +msgstr "" #: app/widgets/gimpdataeditor.c:205 msgid "Save" @@ -10955,12 +10989,12 @@ #: app/widgets/gimpdock.c:348 app/widgets/gimpdock.c:359 #, fuzzy msgid "Close all tabs?" -msgstr "/Tanca etiqueta" +msgstr "Voleu tancar %s?" #: app/widgets/gimpdock.c:354 #, fuzzy msgid "Close all Tabs" -msgstr "/Tanca etiqueta" +msgstr "/Tan_ca pestanya" #: app/widgets/gimpdock.c:361 #, c-format @@ -10971,11 +11005,11 @@ #: app/widgets/gimpdock.c:474 msgid "You can drop dockable dialogs here." -msgstr "Pots deixar el diàlegs desplegables aquí." +msgstr "Podeu deixar el diàlegs desplegables aquí." #: app/widgets/gimpdockable.c:209 msgid "Close this Tab" -msgstr "Tanca aquesta tabulació" +msgstr "Tanca aquesta pestanya" #: app/widgets/gimperrorconsole.c:235 app/widgets/gimperrordialog.c:252 #, c-format @@ -11032,7 +11066,7 @@ #: app/widgets/gimpgradienteditor.c:622 #, c-format msgid "Displaying [%0.6f, %0.6f]" -msgstr "S'esta visualitzant [%0.6f, %0.6f]" +msgstr "S'està visualitzant [%0.6f, %0.6f]" #: app/widgets/gimpgradienteditor.c:814 #, c-format @@ -11107,7 +11141,7 @@ #: app/widgets/gimpgrideditor.c:219 msgid "Line _Style:" -msgstr "Estil de línia:" +msgstr "E_stil de línia:" #: app/widgets/gimpgrideditor.c:223 #, fuzzy @@ -11117,7 +11151,7 @@ #: app/widgets/gimpgrideditor.c:228 #, fuzzy msgid "_Foreground color:" -msgstr "Color de primer pla:" +msgstr "Color de _primer pla:" #: app/widgets/gimpgrideditor.c:232 #, fuzzy @@ -11127,7 +11161,7 @@ #: app/widgets/gimpgrideditor.c:237 #, fuzzy msgid "_Background color:" -msgstr "Color de Fons:" +msgstr "Color de _fons:" #: app/widgets/gimpgrideditor.c:242 msgid "Spacing" @@ -11144,7 +11178,7 @@ #: app/widgets/gimphelp.c:187 #, fuzzy msgid "Help browser not found" -msgstr "Navegador d'ajuda a utilitzar" +msgstr "_Navegador d'ajuda a utilitzar:" #: app/widgets/gimphelp.c:188 #, fuzzy @@ -11159,7 +11193,7 @@ #: app/widgets/gimphelp.c:213 #, fuzzy msgid "Help browser doesn't start" -msgstr "Navegador d'ajuda a utilitzar" +msgstr "_Navegador d'ajuda a utilitzar:" #: app/widgets/gimphelp.c:214 #, fuzzy @@ -11177,7 +11211,7 @@ #: app/widgets/gimphistogrameditor.c:135 msgid "Std Dev:" -msgstr "Desviació estàndard" +msgstr "Desviació estàndard:" #: app/widgets/gimphistogrameditor.c:136 msgid "Median:" @@ -11204,7 +11238,7 @@ "When enabled the dialog automatically follows the image you are working on." msgstr "" "Quan sigui activat, el diàleg segueix automàticament la imatge en que s'està " -"trballant" +"treballant" #: app/widgets/gimpitemtreeview.c:996 msgid "Set Item Exclusive Visible" @@ -11214,25 +11248,26 @@ msgid "Set Item Exclusive Linked" msgstr "Defineix només element enllaçat" -#: app/widgets/gimplayertreeview.c:250 +#: app/widgets/gimplayertreeview.c:252 msgid "Reorder Layer" msgstr "Reordena la capa" -#: app/widgets/gimplayertreeview.c:311 +#: app/widgets/gimplayertreeview.c:313 #, fuzzy msgid "Keep transparency" msgstr "Conserva la transparència" -#: app/widgets/gimplayertreeview.c:846 +#: app/widgets/gimplayertreeview.c:848 +#, fuzzy msgid "Empty Layer" -msgstr "Capa buida" +msgstr "Buida la capa de text " -#: app/widgets/gimpmessagebox.c:458 +#: app/widgets/gimpmessagebox.c:460 #, c-format msgid "Message repeated %d times." msgstr "Missatge repetit %d vegades." -#: app/widgets/gimpmessagebox.c:460 +#: app/widgets/gimpmessagebox.c:462 msgid "Message repeated once." msgstr "Missatge repetit una sola vegada." @@ -11247,7 +11282,7 @@ #: app/widgets/gimppropwidgets.c:1537 #, c-format msgid "This text input field is limited to %d characters." -msgstr "El comentari per defecte està limitat a %d caràcters." +msgstr "Aquest camp d'entrada de text està limitat a %d caràcters." #: app/widgets/gimpselectiondata.c:317 #, c-format @@ -11264,17 +11299,12 @@ msgid "Invalid UTF-8" msgstr "Cadena de text UTF-8 invàlida" -#: app/widgets/gimpsizebox.c:290 -#, fuzzy -msgid "Keep aspect ratio" -msgstr "Ràtio d'aspecte fixat" - -#: app/widgets/gimpsizebox.c:574 +#: app/widgets/gimpsizebox.c:451 #, fuzzy, c-format msgid "%d x %d dpi" msgstr "%d x %d píxels" -#: app/widgets/gimpsizebox.c:578 +#: app/widgets/gimpsizebox.c:455 #, fuzzy, c-format msgid "%d dpi" msgstr "ppp" @@ -11287,22 +11317,22 @@ #: app/widgets/gimpstrokeeditor.c:209 #, fuzzy msgid "_Line Style" -msgstr "Estil de línia:" +msgstr "E_stil de línia:" #: app/widgets/gimpstrokeeditor.c:228 #, fuzzy msgid "_Cap style:" -msgstr "_Estil:" +msgstr "Estil _principal:" #: app/widgets/gimpstrokeeditor.c:234 #, fuzzy msgid "_Join style:" -msgstr "_Junta estil:" +msgstr "Estil de la _unió:" #: app/widgets/gimpstrokeeditor.c:239 #, fuzzy msgid "_Miter limit:" -msgstr "Limita _mesura:" +msgstr "Limit de la _caputxa:" #: app/widgets/gimpstrokeeditor.c:246 #, fuzzy @@ -11316,7 +11346,7 @@ #: app/widgets/gimpstrokeeditor.c:300 msgid "_Antialiasing" -msgstr "_Suavitzat" +msgstr "Su_avitzat" #: app/widgets/gimptemplateeditor.c:255 #, c-format @@ -11367,8 +11397,8 @@ "Click to update preview\n" "%s Click to force update even if preview is up-to-date" msgstr "" -"Cliqueu a la previsualització actualitzada\n" -"%s Cliqueu per a forçar l'actualització, encara que la previsualització " +"Cliqueu per actualitzar la previsualització\n" +"%s Cliqueu per forçar l'actualització, encara que la previsualització " "estigui actualitzada." #: app/widgets/gimpthumbbox.c:407 app/widgets/gimpthumbbox.c:477 @@ -11466,8 +11496,9 @@ msgstr "Reordena el camí" #: app/widgets/gimpvectorstreeview.c:289 +#, fuzzy msgid "Empty Path" -msgstr "Camí buit" +msgstr "Importa camí" #: app/widgets/gimpviewablebox.c:75 msgid "Open the brush selection dialog" @@ -11516,12 +11547,12 @@ #: app/widgets/gimpwidgets-constructors.c:55 #: app/widgets/gimpwidgets-constructors.c:88 msgid "Multiply" -msgstr "Multiplicar" +msgstr "Multiplica" #: app/widgets/gimpwidgets-constructors.c:56 #: app/widgets/gimpwidgets-constructors.c:89 msgid "Divide" -msgstr "Dividir" +msgstr "Divideix" #: app/widgets/gimpwidgets-constructors.c:57 #: app/widgets/gimpwidgets-constructors.c:90 @@ -11531,7 +11562,7 @@ #: app/widgets/gimpwidgets-constructors.c:58 #: app/widgets/gimpwidgets-constructors.c:91 msgid "Overlay" -msgstr "Sobreposar" +msgstr "Sobreposa" #: app/widgets/gimpwidgets-constructors.c:62 #: app/widgets/gimpwidgets-constructors.c:95 @@ -11665,22 +11696,22 @@ #: app/widgets/widgets-enums.c:265 #, fuzzy msgid "Icon & text" -msgstr "Icona i Text" +msgstr "Icona i text" #: app/widgets/widgets-enums.c:266 #, fuzzy msgid "Icon & desc" -msgstr "Icona i Desc" +msgstr "Icona i desc" #: app/widgets/widgets-enums.c:267 #, fuzzy msgid "Status & text" -msgstr "Estat i Text" +msgstr "Estat i text" #: app/widgets/widgets-enums.c:268 #, fuzzy msgid "Status & desc" -msgstr "Estat i Desc" +msgstr "Estat i desc" #: app/widgets/widgets-enums.c:295 #, fuzzy @@ -11712,7 +11743,7 @@ "did not save indexed colormaps correctly.\n" "Substituting grayscale map." msgstr "" -"Advertència del XCF: la versió 0 no desava\n" +"Avís del XCF: la versió 0 no desava\n" "correctament els mapes de color indexats.\n" "S'està substituint el mapa d'escala de grisos." @@ -11750,59 +11781,57 @@ #: data/misc/gimp.desktop.in.in.h:1 msgid "Create and edit images or photographs" -msgstr "Crea i edita imatges o fotografies" +msgstr "Creeu i editeu imatges o fotografies" #: data/misc/gimp.desktop.in.in.h:2 #, fuzzy msgid "Image Editor" -msgstr "Editor de Paleta" +msgstr "Editor de paleta" -#~ msgid "Y:" -#~ msgstr "Y:" +#, fuzzy +#~ msgid "Keep aspect ratio" +#~ msgstr "Relació d'aspecte fixat" -#~ msgid "Transformations do not work on layers that contain layer masks." -#~ msgstr "" -#~ "Les transformacions no funcionen en les capes que continguin màscares de " -#~ "capa." +#~ msgid "Light Checks" +#~ msgstr "Quadres clars" -#~ msgid "Resize Error: Both width and height must be greater than zero." -#~ msgstr "" -#~ "S'ha produït un error en el canvi de la mida: tant l'amplada com l'alçada " -#~ "han de ser més grans que zero." +#~ msgid "Mid-Tone Checks" +#~ msgstr "Quadres a mig to" -#~ msgid "Scale Error: Both width and height must be greater than zero." -#~ msgstr "" -#~ "S'ha produït un error en l'escala: tant l'alçada com l'amplada han de ser " -#~ "més grans que zero." +#~ msgid "Dark Checks" +#~ msgstr "Quadres foscos" -#~ msgid "C_enter" -#~ msgstr "C_entre" +#~ msgid "White Only" +#~ msgstr "Només blanc" -#~ msgid "Indexed Palette Menu" -#~ msgstr "Menú Paleta indexada" +#~ msgid "Gray Only" +#~ msgstr "Només gris" -#, fuzzy -#~ msgid "Inde_xed Palette" -#~ msgstr "Paleta indexada" +#~ msgid "Black Only" +#~ msgstr "Només negre" -#, fuzzy -#~ msgid "_Undo History" -#~ msgstr "Historial de desfer" +#~ msgid "Positioned Color Dithering" +#~ msgstr "Tramatge de color posicionat" -#, fuzzy -#~ msgid "Brus_hes" -#~ msgstr "Pinzells" +#~ msgid "Transparent" +#~ msgstr "Transparent" -#, fuzzy -#~ msgid "Show Image _Menu" -#~ msgstr "/Mostra el _menu d'imatge" +#~ msgid "Spiral (anticlockwise)" +#~ msgstr "Espiral (antihorari)" -#, fuzzy -#~ msgid "Buffer" -#~ msgstr "Memòria intermèdia." +#~ msgid "RGB-Alpha" +#~ msgstr "RGB-alfa" -#~ msgid "Layer _Name" -#~ msgstr "Nom de la capa" +#~ msgid "Grayscale-Alpha" +#~ msgstr "Escala de grisos-alfa" + +#~ msgid "Indexed-Alpha" +#~ msgstr "Indexat-alfa" + +#~ msgid "Trying legacy loader on file '%s' with unknown extension." +#~ msgstr "" +#~ "Es farà servir el carregador per defecte per al fitxer d'extensió " +#~ "desconeguda '%s'." #~ msgid "Set Indexed Palette" #~ msgstr "Defineix paleta indexada" @@ -11816,619 +11845,109 @@ #~ msgid "No preview available" #~ msgstr "No hi ha cap previsualització disponible" -#~ msgid "Indexed Palette" -#~ msgstr "Paleta indexada" - -#~ msgid "Scale Layer Options" -#~ msgstr "Opcions d'escalat de capa" - -#~ msgid "Scale Image Options" -#~ msgstr "Opcions d'escalat d'imatge" - -#~ msgid "Pixel Dimensions" -#~ msgstr "Dimensions del píxel" +#~ msgid "Black" +#~ msgstr "Negre" -#~ msgid "Layer Boundary Size" -#~ msgstr "Mida del marc de la capa" +#~ msgid "Set canvas padding color" +#~ msgstr "Defineix el color d'emplenat del llenç" #, fuzzy -#~ msgid "New width:" -#~ msgstr "Amplada nova:" +#~ msgid "Changes were made to '%s'." +#~ msgstr "S'han efectuat canvis a '%s'. Voleu tancar de totes maneres?" -#, fuzzy -#~ msgid "New height:" -#~ msgstr "Alçada:" +#~ msgid "Zoom to fit window" +#~ msgstr "Zoom per ajustar a la finestra." -#, fuzzy -#~ msgid "X ratio:" -#~ msgstr "Ràtio X:" +#~ msgid "General Palette Options" +#~ msgstr "Opcions de la paleta general" -#, fuzzy -#~ msgid "Y ratio:" -#~ msgstr "Ràtio X:" +#~ msgid "Max. Number of Colors:" +#~ msgstr "Nombre màxim de colors:" -#~ msgid "Constrain aspect ratio" -#~ msgstr "Força ràtio d'aspecte" +#~ msgid "Dithering Options" +#~ msgstr "Opcions de tramat" -#~ msgid "Print Size & Display Unit" -#~ msgstr "Mida d'impressió i Unitats" +#~ msgid "[ Warning ]" +#~ msgstr "[ Avís ]" -#, fuzzy -#~ msgid "X resolution:" -#~ msgstr "Resolució:" +#~ msgid "" +#~ "You are attempting to convert an image with an alpha channel to indexed " +#~ "colors.\n" +#~ "Do not generate a palette of more than 255 colors if you intend to create " +#~ "a transparent or animated GIF file." +#~ msgstr "" +#~ "Esteu intentant convertir una imatge amb canal alfa a colors indexats.\n" +#~ "No hauríeu de generar una paleta amb més de 255 colors si voleu crear un " +#~ "fitxer GIF transparent o animat." -#, fuzzy -#~ msgid "Y resolution:" -#~ msgstr "Resolució:" +#~ msgid "Select Custom Palette" +#~ msgstr "Selecciona la paleta personalitzada" -#~ msgid "Stroke Options" -#~ msgstr "Opcions dde traçat" - -#~ msgid "_Size:" -#~ msgstr "_Mida:" - -#~ msgid "" -#~ "New Channel\n" -#~ "%s New Channel Dialog" -#~ msgstr "%s diàleg del nou canal" - -#~ msgid "Delete Channel" -#~ msgstr "Suprimeix el canal" - -#, fuzzy -#~ msgid "" -#~ "Channel to selection\n" -#~ "%s Add\n" -#~ "%s Subtract\n" -#~ "%s Intersect" -#~ msgstr "" -#~ "Canal per seleccionar \n" -#~ "%s Afegeix\n" -#~ "%s Sostreu\n" -#~ "%s%s%s Creua" - -#, fuzzy -#~ msgid "He_x triplet:" -#~ msgstr "Trio he_xadecimal:" - -#, fuzzy -#~ msgid "" -#~ "Add color from FG\n" -#~ "%s from BG" -#~ msgstr "" -#~ "Afegeix color del primer pla\n" -#~ "%s del fons" - -#~ msgid "Edit Indexed Color" -#~ msgstr "Edita color indexat" - -#, fuzzy -#~ msgid "Edit indexed image palette color" -#~ msgstr "Edita color de paleta de la imatge indexada" - -#~ msgid "" -#~ "Open the selected entry\n" -#~ "%s Raise window if already open\n" -#~ "%s Open image dialog" -#~ msgstr "" -#~ "Obre l'entrada seleccionada\n" -#~ "%s Mostra la finestra si ja és oberta\n" -#~ "%s Obre el diàleg imatge" - -#~ msgid "" -#~ "Recreate preview\n" -#~ "%s Reload all previews\n" -#~ "%s Remove Dangling Entries" -#~ msgstr "" -#~ "Recrea previsualització \n" -#~ "%s Refresca totes les previsualitzacions \n" -#~ "%s Suprimeix les entrades penjades" - -#, fuzzy -#~ msgid "" -#~ "Save all errors\n" -#~ "%s Save selection" -#~ msgstr "" -#~ "Desa tots els errors\n" -#~ "%s Desa la selecció" - -#~ msgid "" -#~ "%s\n" -#~ "%s To Top" -#~ msgstr "" -#~ "%s\n" -#~ "%s Fins la part superior" - -#~ msgid "" -#~ "%s\n" -#~ "%s To Bottom" -#~ msgstr "" -#~ "%s\n" -#~ "%s Fins la part inferior" - -#~ msgid "" -#~ "New Layer\n" -#~ "%s New Layer Dialog" -#~ msgstr "" -#~ "Nova capa\n" -#~ "%s Diàleg de nova capa" - -#~ msgid "Delete Layer" -#~ msgstr "Suprimeix la capa" - -#, fuzzy -#~ msgid "" -#~ "New color from FG\n" -#~ "%s from BG" -#~ msgstr "" -#~ "Nou color del primer pla\n" -#~ "%s del fons" - -#, fuzzy -#~ msgid "" -#~ "Selection to path\n" -#~ "%s Advanced options" -#~ msgstr "" -#~ "Selecció a camí\n" -#~ "Opcions avançades %s" - -#~ msgid "" -#~ "Reset to default values\n" -#~ "%s Reset all Tool Options" -#~ msgstr "" -#~ "Torna a iniciar amb els valors per defecte\n" -#~ "%s Torna a iniciar totes les opcions d'eina" - -#~ msgid "" -#~ "Selection to Path\n" -#~ "%s Advanced Options" -#~ msgstr "" -#~ "Selecció a camí\n" -#~ "Opcions avançades %s" - -#~ msgid "" -#~ "You are trying to create an image with a size of %s.\n" -#~ "\n" -#~ "Choose OK to create this image anyway.\n" -#~ "Choose Cancel if you did not intend to create such a large image.\n" -#~ "\n" -#~ "To prevent this dialog from appearing, increase the \"Maximum Image Size" -#~ "\" setting (currently %s) in the Preferences dialog." -#~ msgstr "" -#~ "Esteu intentant de crear una imatge amb una mida inicial de %s.\n" -#~ "\n" -#~ "Trieu D'acord si voleu crear aquesta imatge.\n" -#~ "Trieu Cancel·la si no voleu crear una imatge tant gran.\n" -#~ "\n" -#~ "Per evitar l'aparició d'aquest diàleg, augmenteu el paràmetre \"Mida " -#~ "màxima de la imatge\" (actualment %s) en el diàleg Preferències." - -#~ msgid "Image exceeds maximum image size" -#~ msgstr "Imatge excedeix mida d'imatge màxima" - -#~ msgid "Layer Too Small" -#~ msgstr "Capa massa petita" - -#, fuzzy -#~ msgid "Positioned color dithering" -#~ msgstr "Tramat de color posicionat" - -#~ msgid "General Palette Options" -#~ msgstr "Opcions de la paleta general" - -#~ msgid "Dithering Options" -#~ msgstr "Opcions de tramatge" - -#~ msgid "[ Warning ]" -#~ msgstr "[ Advertència ]" - -#~ msgid "" -#~ "You are attempting to convert an image with an alpha channel to indexed " -#~ "colors.\n" -#~ "Do not generate a palette of more than 255 colors if you intend to create " -#~ "a transparent or animated GIF file." -#~ msgstr "" -#~ "Esteu intentant convertir una imatge amb canal alfa a colors indexats.\n" -#~ "No haurieu de generar una paleta amb més de 255 colors si voleu crear un " -#~ "fitxer GIF transparent o animat." - -#~ msgid "" -#~ "You are trying to create an image with an initial size of %s.\n" -#~ "\n" -#~ "Choose OK to create this image anyway.\n" -#~ "Choose Cancel if you did not intend to create such a large image.\n" -#~ "\n" -#~ "To prevent this dialog from appearing, increase the \"Maximum Image Size" -#~ "\" setting (currently %s) in the Preferences dialog." -#~ msgstr "" -#~ "Esteu intentant de crear una imatge amb una mida inicial de %s.\n" -#~ "\n" -#~ "Trieu D'acord si voleu crear aquesta imatge.\n" -#~ "Trieu Cancel·la si no voleu crear una imatge tant gran.\n" -#~ "\n" -#~ "Per evitar l'aparició d'aquest diàleg, augmenteu el paràmetre \"Mida " -#~ "màxima de la imatge\" (actualment %s) en el diàleg Preferències." - -#~ msgid "Extended" -#~ msgstr "Estès" - -#~ msgid "File Saving" -#~ msgstr "S'està desant el fitxer" - -#~ msgid "Pattern:" -#~ msgstr "Patró:" - -#~ msgid "Density:" -#~ msgstr "Densitat:" - -#~ msgid "" -#~ "Could not find the GIMP Help Browser procedure. It probably was not " -#~ "compiled because you don't have GtkHtml2 installed." -#~ msgstr "" -#~ "No s'ha pogut trobar el procediment per navegar en l'ajuda del GIMP. És " -#~ "probable que no fos compilat per què no heu instal·lat el GtkHtml2." - -#~ msgid "Could not start GIMP Help Browser" -#~ msgstr "No s'ha pogut iniciar el navegador d'ajuda del GIMP" - -#~ msgid "Internal" -#~ msgstr "Intern" - -#~ msgid "Black" -#~ msgstr "Negre" - -#~ msgid "Move Floating Layer" -#~ msgstr "Mou capa flotant" - -#~ msgid "Changes were made to '%s'." -#~ msgstr "S'han efectuat canvis a '%s'." - -#~ msgid "Unsaved changes will be lost." -#~ msgstr "Es perdran els canvis no desats." - -#~ msgid "Select Custom Palette" -#~ msgstr "Selecciona la paleta personalitzada" - -#~ msgid "Light Checks" -#~ msgstr "Quadres clars" - -#~ msgid "Mid-Tone Checks" -#~ msgstr "Quadres a mig to" - -#~ msgid "Dark Checks" -#~ msgstr "Quadres foscos" - -#~ msgid "White Only" -#~ msgstr "Només blanc" - -#~ msgid "Gray Only" -#~ msgstr "Només gris" - -#~ msgid "Black Only" -#~ msgstr "Només negre" - -#~ msgid "Configure input devices" -#~ msgstr "Configura dispositius d'entrada" - -#~ msgid "" -#~ "WARNING:\n" -#~ "Too many open message dialogs.\n" -#~ "Messages are redirected to stderr." -#~ msgstr "" -#~ "ADVERTÈNCIA:\n" -#~ "Hi ha massa diàlegs de missatges oberts.\n" -#~ "Els missatges són redireccionats a la sortida estàndard d'errors." - -#, fuzzy -#~ msgid "RGB color" -#~ msgstr "Color RGB" - -#, fuzzy -#~ msgid "Indexed color" -#~ msgstr "Color indexat" - -#, fuzzy -#~ msgid "RGB-alpha" -#~ msgstr "RGB-alfa" - -#, fuzzy -#~ msgid "Grayscale-alpha" -#~ msgstr "Escala de grisos-alfa" - -#, fuzzy -#~ msgid "Indexed-alpha" -#~ msgstr "Indexat-alfa" - -#, fuzzy -#~ msgid "Clear Saved Keyboard Shortcuts Now" -#~ msgstr "Neteja ara les dreceres de teclat desades" - -#~ msgid "Clear Saved Window Positions Now" -#~ msgstr "Neteja ara les posicions de finestra desades" - -#, fuzzy -#~ msgid "Automatic" -#~ msgstr "/Automàtic" - -#, fuzzy -#~ msgid "File Open Menu" -#~ msgstr "Menú Obre" - -#, fuzzy -#~ msgid "File Save Menu" -#~ msgstr "Menú Desa" - -#, fuzzy -#~ msgid "Foreground Color" -#~ msgstr "Color de primer pla:" - -#~ msgid "" -#~ "File '%s' exists.\n" -#~ "Overwrite it?" -#~ msgstr "" -#~ "El fitxer '%s' ja existeix. \n" -#~ "El voleu sobreescriure?" - -#~ msgid "" -#~ "Unable to run font callback. The corresponding plug-in may have crashed." -#~ msgstr "" -#~ "No es pot usar la crida de retorn del tipus de lletra. El connector " -#~ "corresponent pot esta trencat." - -#~ msgid "" -#~ "Unable to run gradient callback. The corresponding plug-in may have " -#~ "crashed." -#~ msgstr "" -#~ "No es pot usar la crida de retorn del degradat. El connector corresponent " -#~ "pot estar trencat." - -#, fuzzy -#~ msgid "" -#~ "Some images have unsaved changes.\n" -#~ "\n" -#~ "Really quit The GIMP?" -#~ msgstr "" -#~ "Hi ha fitxers sense desar.\n" -#~ "\n" -#~ "Voleu sortir del GIMP?" - -#~ msgid "" -#~ "Unable to run palette callback. The corresponding plug-in may have " -#~ "crashed." -#~ msgstr "" -#~ "No es pot usar la crida de retorn de la paleta. El connector corresponent " -#~ "pot estar trencat." - -#~ msgid "" -#~ "Unable to run pattern callback. The corresponding plug-in may have " -#~ "crashed." -#~ msgstr "" -#~ "No es pot usar la crida de retorn del patró. El connector corresponent " -#~ "pot estar trencat." - -#~ msgid "Pointer Movement Feedback" -#~ msgstr "Traça del moviment del punter" - -#~ msgid "Select Temp Dir" -#~ msgstr "Selecciona el directori temporal" - -#, fuzzy -#~ msgid "Swap dir:" -#~ msgstr "Directori d'intercanvi:" - -#~ msgid "Select Swap Dir" -#~ msgstr "Selecciona el directori d'intercanvi" - -#, fuzzy -#~ msgid "Don't show grid" -#~ msgstr "No mostris la graella" - -#~ msgid "Determine File _Type:" -#~ msgstr "Determina el _tipus de fitxer:" - -#, fuzzy -#~ msgid "Zoom to _Fit Window" -#~ msgstr "Zoom per ajustar a la finestra." - -#~ msgid "Trying legacy loader on file '%s' with unknown extension." -#~ msgstr "" -#~ "Es farà servir el carregador per defecte per al fitxer d'extensió " -#~ "desconeguda '%s'." - -#~ msgid "Set canvas padding color" -#~ msgstr "Defineix el color d'emplenat del llenç" - -#~ msgid "Zoom to fit window" -#~ msgstr "Zoom per ajustar a la finestra." - -#~ msgid "Show S_election" -#~ msgstr "Mostra _selecció" - -#~ msgid "_Undo History Preview Size:" -#~ msgstr "Mida de previsualització del _navegador:" - -#~ msgid "Dialog Behavior" -#~ msgstr "Comportament del diàleg" - -#~ msgid "_Info Window Per Display" -#~ msgstr "Finestra d'_informació per pantalla" - -#~ msgid "Menus" -#~ msgstr "Menús" - -#~ msgid "Enable _Tearoff Menus" -#~ msgstr "Ac_tiva els menús desprendibles" - -#~ msgid "Open _Recent Menu Size:" -#~ msgstr "Mida del menú de documents _recents:" - -#~ msgid "Context Sensitive _Help with \"F1\"" -#~ msgstr "_Ajuda sensible al context amb \"F1\"" - -#~ msgid "Perfect-but-Slow _Pointer Tracking" -#~ msgstr "Seguiment perfecte, però lent, del _punter" - -#~ msgid "Enable Cursor _Updating" -#~ msgstr "Activa l'act_ualització del cursor" - -#~ msgid "8-Bit Displays" -#~ msgstr "Pantalla de 8-bits" - -#~ msgid "Minimum Number of Colors:" -#~ msgstr "Nombre mínim de colors:" - -#~ msgid "Install Colormap" -#~ msgstr "Instal·la el mapa de colors" - -#~ msgid "Monitor Resolution" -#~ msgstr "Resolució del monitor" - -#~ msgid "Monitor" -#~ msgstr "Monitor" - -#~ msgid "(Currently %d x %d dpi)" -#~ msgstr "(Actualment %d x %d ppp)" - -#~ msgid "From _Windowing System" -#~ msgstr "Des del sistema de _finestres" - -#~ msgid "Conservative Memory Usage" -#~ msgstr "Ús de memòria conservadora" - -#~ msgid "Only when Modified" -#~ msgstr "Només quan s'hagi modificat" - -#~ msgid "Always" -#~ msgstr "Sempre" - -#~ msgid "\"File -> Save\" Saves the Image:" -#~ msgstr "\"Fitxer-> Desa\" Desa la imatge:" - -#~ msgid "Session Management" -#~ msgstr "Gestió de sessió" - -#~ msgid "Session" -#~ msgstr "Sessió" - -#~ msgid "Click \"Continue\" to start The GIMP." -#~ msgstr "Feu clic a \"Continua\" per iniciar el GIMP." - -#~ msgid "" -#~ "To display images in their natural size, GIMP needs to know your " -#~ "monitor resolution." -#~ msgstr "" -#~ "Per visualitzar les imatges en mida natural, el GIMP ha de saber quina " -#~ "és la resolució del monitor." - -#~ msgid "" -#~ "GIMP can obtain this information from the windowing system. However, " -#~ "usually this does not give useful values." -#~ msgstr "" -#~ "El GIMP pot obtenir aquesta informació del sistema de finestres. De totes " -#~ "maneres, això no sol proporcionar valors útils." - -#~ msgid "Alternatively, you can set the monitor resolution manually." -#~ msgstr "Altrament, podeu configurar la resolució del monitor manualment." - -#~ msgid "" -#~ "You can also press the \"Calibrate\" button to open a window which lets " -#~ "you determine your monitor resolution interactively." -#~ msgstr "" -#~ "També podeu fer un clic al botó \"Calibra\" per obrir una finestra que us " -#~ "permeti determinar la resolució del vostre monitor interactivament." - -#~ msgid "Calibrate" -#~ msgstr "Calibració" - -#~ msgid "/Tools/Selection Tools/Fu_zzy Select" -#~ msgstr "/Eines/Eines de selecció/Selecció _difusa" - -#~ msgid "Threshold Range:" -#~ msgstr "Abast del llindar:" - -#~ msgid "" -#~ "Activate both the \"Keep Height\" and\n" -#~ "\"Keep Width\" toggles to constrain\n" -#~ "the aspect ratio" -#~ msgstr "" -#~ "Activa alhora \"Mantenir alçada\" i\n" -#~ "\"Mantenir amplada\" per a forçar\n" -#~ " la proporció" - -#~ msgid "Intensity Range:" -#~ msgstr "Rang d'intensitat:" - -#~ msgid "Transparent" -#~ msgstr "Transparent" - -#~ msgid "Spiral (anticlockwise)" -#~ msgstr "Espiral (antihorari)" +#~ msgid "Indexed Palette" +#~ msgstr "Paleta indexada" #~ msgid "/Add Tab/Tool _Options" -#~ msgstr "/Afegeix etiqueta/_Opcions d'eina..." +#~ msgstr "/Afegeix pestanya/_Opcions d'eina" #~ msgid "/Add Tab/_Device Status" -#~ msgstr "/Afegeix etiqueta/Estat del _dispositiu..." +#~ msgstr "/Afegeix pestanya/Estat del _dispositiu" #~ msgid "/Add Tab/_Layers" -#~ msgstr "/Afegeix etiqueta/Capes" +#~ msgstr "/Afegeix pestanya/_Capes" #~ msgid "/Add Tab/_Channels" -#~ msgstr "/Afegeix etiqueta/_Canals..." +#~ msgstr "/Afegeix pestanya/Ca_nals" #~ msgid "/Add Tab/_Paths" -#~ msgstr "/Afegeix etiqueta/Camins" +#~ msgstr "/Afegeix pestanya/Ca_mins" #~ msgid "/Add Tab/Inde_xed Palette" -#~ msgstr "/Afegeix etiqueta/Paleta inde_xada..." +#~ msgstr "/Afegeix pestanya/Paleta inde_xada" #~ msgid "/Add Tab/Histogra_m" -#~ msgstr "/Afegeix etiqueta/Histograma" +#~ msgstr "/Afegeix pestanya/Histogra_ma" #~ msgid "/Add Tab/_Selection Editor" -#~ msgstr "/Afegeix etiqueta/Editor de _selecció..." +#~ msgstr "/Afegeix pestanya/Editor de _selecció" #~ msgid "/Add Tab/Na_vigation" -#~ msgstr "/Afegeix etiqueta/Na_vegació..." +#~ msgstr "/Afegeix pestanya/Na_vegació" #~ msgid "/Add Tab/_Undo History" -#~ msgstr "/Afegeix etiqueta/Historial de desfer..." +#~ msgstr "/Afegeix pestanya/Historial de _desfer" #~ msgid "/Add Tab/Colo_rs" -#~ msgstr "/Afegeix etiqueta/Colo_rs" +#~ msgstr "/Afegeix pestanya/Colo_rs" #~ msgid "/Add Tab/Brus_hes" -#~ msgstr "/Afegeix etiqueta/Pinzells" +#~ msgstr "/Afegeix pestanya/_Pinzells" #~ msgid "/Add Tab/P_atterns" -#~ msgstr "/Afegeix etiqueta/P_atrons" +#~ msgstr "/Afegeix pestanya/P_atrons" #~ msgid "/Add Tab/_Gradients" -#~ msgstr "/Afegeix etiqueta/De_gradats" - -#~ msgid "/Add Tab/Pal_ettes" -#~ msgstr "/Afegeix etiqueta/Pal_etes" +#~ msgstr "/Afegeix pestanya/De_gradats" #~ msgid "/Add Tab/_Fonts" -#~ msgstr "/Afegeix etiqueta/Tipus de lletra" +#~ msgstr "/Afegeix pestanya/Tipus de _lletra" #~ msgid "/Add Tab/_Buffers" -#~ msgstr "/Afegeix etiqueta/Memòria intermèdia" +#~ msgstr "/Afegeix pestanya/_Memòria intermèdia" #~ msgid "/Add Tab/_Images" -#~ msgstr "/Afegeix etiqueta/_Imatges" +#~ msgstr "/Afegeix pestanya/_Imatges" #~ msgid "/Add Tab/Document Histor_y" -#~ msgstr "/Afegeix etiqueta/Historial del document" +#~ msgstr "/Afegeix pestanya/_Historial del document" #~ msgid "/Add Tab/_Templates" -#~ msgstr "/Afegeix etiqueta/Plan_tilles" +#~ msgstr "/Afegeix pestanya/Plan_tilles" #~ msgid "/Add Tab/T_ools" -#~ msgstr "/Afegieix etiqueta/Eines" +#~ msgstr "/Afegeix pestanya/_Eines" #~ msgid "/Add Tab/Error Co_nsole" -#~ msgstr "/Afegeix etiqueta/Co_nsola d'error" +#~ msgstr "/Afegeix pestanya/Co_nsola d'error" #~ msgid "/Preview Size/_Tiny" #~ msgstr "/Mida de previsualització/_Diminuta" @@ -12455,43 +11974,76 @@ #~ msgstr "/Mida de previsualització/_Enorme" #~ msgid "/Preview Size/_Gigantic" -#~ msgstr "/Mida de previsualització/_Geganta" +#~ msgstr "/Mida de previsualització/_Gegant" #~ msgid "/Tab Style/_Icon" -#~ msgstr "/Estil d'etiqueta/_Icona" +#~ msgstr "/Estil de pestanya/_Icona" #~ msgid "/Tab Style/Current _Status" -#~ msgstr "/Estil d'etiqueta/E_stat actual" +#~ msgstr "/Estil de pestanya/E_stat actual" #~ msgid "/Tab Style/_Text" -#~ msgstr "/Estil d'etiqueta/_Text" +#~ msgstr "/Estil de pestanya/_Text" #~ msgid "/Tab Style/I_con & Text" -#~ msgstr "/Estil d'etiqueta/I_cona i text" +#~ msgstr "/Estil de pestanya/I_cona i text" #~ msgid "/Tab Style/St_atus & Text" -#~ msgstr "/Estil d'etiqueta/Est_at i text" +#~ msgstr "/Estil de pestanya/Est_at i text" #~ msgid "From _Template:" #~ msgstr "Des de la plan_tilla:" +#~ msgid "" +#~ "You are trying to create an image with an initial size of %s.\n" +#~ "\n" +#~ "Choose OK to create this image anyway.\n" +#~ "Choose Cancel if you did not intend to create such a large image.\n" +#~ "\n" +#~ "To prevent this dialog from appearing, increase the \"Maximum Image Size" +#~ "\" setting (currently %s) in the Preferences dialog." +#~ msgstr "" +#~ "Esteu intentant crear una imatge amb una mida inicial de %s.\n" +#~ "\n" +#~ "Trieu D'acord si voleu crear aquesta imatge.\n" +#~ "Trieu Cancel·la si no voleu crear una imatge tant gran.\n" +#~ "\n" +#~ "Per evitar l'aparició d'aquest diàleg, augmenteu el paràmetre \"Mida " +#~ "màxima de la imatge\" (actualment %s) en el diàleg Preferències." + +#~ msgid "/Automatic" +#~ msgstr "/Automàtic" + +#~ msgid "" +#~ "File '%s' exists.\n" +#~ "Overwrite it?" +#~ msgstr "" +#~ "El fitxer '%s' ja existeix. \n" +#~ "El voleu sobreescriure?" + +#~ msgid "" +#~ "Unable to run font callback. The corresponding plug-in may have crashed." +#~ msgstr "" +#~ "No es pot usar la crida de retorn del tipus de lletra. El connector " +#~ "corresponent pot deixar de funcionar." + #~ msgid "/Load Left Color From/_Right Endpoint" -#~ msgstr "/Carrega el color esquerra des de/el límit dret" +#~ msgstr "/Carrega el color esquerra des de/El límit _dret" #~ msgid "/Load Left Color From/_FG Color" -#~ msgstr "/Carrega el color esquerra des de/Color de primer pla" +#~ msgstr "/Carrega el color esquerra des de/Color de _primer pla" #~ msgid "/Load Left Color From/_BG Color" -#~ msgstr "/Carrega el color esquerra des de/Color de fons" +#~ msgstr "/Carrega el color esquerra des de/Color de _fons" #~ msgid "/Load Right Color From/_Left Endpoint" -#~ msgstr "/Carrega el color dret des de/El límit esquerra" +#~ msgstr "/Carrega el color dret des de/El límit _esquerra" #~ msgid "/Load Right Color From/_FG Color" -#~ msgstr "/Carrega el color dret des de/Color de primer pla" +#~ msgstr "/Carrega el color dret des de/Color de _primer pla" #~ msgid "/Load Right Color From/_BG Color" -#~ msgstr "/Carrega el color dret des de/Color de fons" +#~ msgstr "/Carrega el color dret des de/Color de _fons" #~ msgid "/blendingfunction/_Linear" #~ msgstr "/Mescla/_Lineal" @@ -12499,8 +12051,9 @@ #~ msgid "/blendingfunction/_Curved" #~ msgstr "/Mescla/_Corbada" -#~ msgid "/blendingfunction/_Sinusodial" -#~ msgstr "/Mescla/_Sinusoidal" +#, fuzzy +#~ msgid "/blendingfunction/_Sinusoidal" +#~ msgstr "/Mescla/_Sinusoïdal" #~ msgid "/blendingfunction/(Varies)" #~ msgstr "/Mescla/(Vàries)" @@ -12509,13 +12062,62 @@ #~ msgstr "/Tipus d'acolorit/_RGB" #~ msgid "/coloringtype/HSV (clockwise _hue)" -#~ msgstr "/Tipus d'acolorit/HSV (to en sentit horari)" +#~ msgstr "/Tipus d'acolorit/HSV (to en sentit _horari)" #~ msgid "/coloringtype/(Varies)" #~ msgstr "/Tipus d'acolorit/(Varis)" +#~ msgid "" +#~ "Unable to run gradient callback. The corresponding plug-in may have " +#~ "crashed." +#~ msgstr "" +#~ "No es pot usar la crida de retorn del degradat. El connector corresponent " +#~ "pot deixar de funcionar." + +#~ msgid "" +#~ "Some files are unsaved.\n" +#~ "\n" +#~ "Really quit The GIMP?" +#~ msgstr "" +#~ "Hi ha fitxers sense desar.\n" +#~ "\n" +#~ "Voleu sortir del GIMP?" + #~ msgid "Final, Anchored Layer should be:" -#~ msgstr "La capa fixada resultant hauria de ser:" +#~ msgstr "La capa ancorada resultant hauria de ser:" + +#~ msgid "Resize Error: Both width and height must be greater than zero." +#~ msgstr "" +#~ "S'ha produït un error en el canvi de la mida: tant l'amplada com l'alçada " +#~ "han de ser més grans que zero." + +#~ msgid "" +#~ "You are trying to create an image with a size of %s.\n" +#~ "\n" +#~ "Choose OK to create this image anyway.\n" +#~ "Choose Cancel if you did not intend to create such a large image.\n" +#~ "\n" +#~ "To prevent this dialog from appearing, increase the \"Maximum Image Size" +#~ "\" setting (currently %s) in the Preferences dialog." +#~ msgstr "" +#~ "Esteu intentant crear una imatge amb una mida inicial de %s.\n" +#~ "\n" +#~ "Trieu D'acord si voleu crear aquesta imatge.\n" +#~ "Trieu Cancel·la si no voleu crear una imatge tant gran.\n" +#~ "\n" +#~ "Per evitar l'aparició d'aquest diàleg, augmenteu el paràmetre \"Mida " +#~ "màxima de la imatge\" (actualment %s) en el diàleg Preferències." + +#~ msgid "Image exceeds maximum image size" +#~ msgstr "Imatge excedeix la mida d'imatge màxima" + +#~ msgid "Layer Too Small" +#~ msgstr "Capa massa petita" + +#~ msgid "Scale Error: Both width and height must be greater than zero." +#~ msgstr "" +#~ "S'ha produït un error en l'escala: tant l'alçada com l'amplada han de ser " +#~ "més grans que zero." #~ msgid "/File/_New..." #~ msgstr "/Fitxer/_Nou..." @@ -12560,25 +12162,25 @@ #~ msgstr "/Edita/Enganxa com a _nou" #~ msgid "/Edit/_Buffer" -#~ msgstr "/Edita/Memòria intermèdia" +#~ msgstr "/Edita/_Memòria intermèdia" #~ msgid "/Edit/Buffer/Cu_t Named..." -#~ msgstr "/Edita/Memòria intermèdia/Retalla l'objecte anomenat..." +#~ msgstr "/Edita/Memòria intermèdia/_Retalla l'objecte anomenat..." #~ msgid "/Edit/Buffer/_Copy Named..." -#~ msgstr "/Edita/Memòria intermèdia/Copia l'objecte anomenat..." +#~ msgstr "/Edita/Memòria intermèdia/_Copia l'objecte anomenat..." #~ msgid "/Edit/Cl_ear" #~ msgstr "/Edita/_Buida" #~ msgid "/Edit/Fill with _FG Color" -#~ msgstr "/Edita/Omple amb el color de primer _pla" +#~ msgstr "/Edita/Omple amb el color de _primer pla" #~ msgid "/Edit/Fill with B_G Color" #~ msgstr "/Edita/Omple amb el color de _fons" #~ msgid "/Edit/Fill with P_attern" -#~ msgstr "/Edita/Omple amb el patró" +#~ msgstr "/Edita/Omple amb el p_atró" #~ msgid "/Edit/_Stroke Selection..." #~ msgstr "/Edita/Traça _selecció..." @@ -12605,16 +12207,16 @@ #~ msgstr "/Selecciona/_Afila" #~ msgid "/Select/S_hrink..." -#~ msgstr "/Selecciona/Encongeix..." +#~ msgstr "/Selecciona/_Encongeix..." #~ msgid "/Select/Toggle _QuickMask" -#~ msgstr "/Selecciona/Commuta màscara ràpida" +#~ msgstr "/Selecciona/Commuta mà_scara ràpida" #~ msgid "/Select/To _Path" -#~ msgstr "/Selecciona/Cap al camí" +#~ msgstr "/Selecciona/A ca_mí" #~ msgid "/View/_New View" -#~ msgstr "/Visualitza/_Nova vista" +#~ msgstr "/Visualitza/_Nova visualització" #~ msgid "/View/_Zoom" #~ msgstr "/Visualitza/_Zoom" @@ -12635,19 +12237,19 @@ #~ msgstr "/Visualitza/Mostra _selecció" #~ msgid "/View/Show _Layer Boundary" -#~ msgstr "/Visualitza/Mostra el llindar de la capa" +#~ msgstr "/Visualitza/Mostra el _llindar de la capa" #~ msgid "/View/Show _Guides" #~ msgstr "/Visualitza/Mostra _guies" #~ msgid "/View/S_how Grid" -#~ msgstr "/Visualitza/Mostra graella" +#~ msgstr "/Visualitza/Mostra gra_ella" #~ msgid "/View/Show _Menubar" #~ msgstr "/Visualitza/Mostra barra de _menús" #~ msgid "/View/Show R_ulers" -#~ msgstr "/Visualitza/Mostra els regles" +#~ msgstr "/Visualitza/Mostra els _regles" #~ msgid "/View/Show Scroll_bars" #~ msgstr "/Visualitza/Mostra les _barres de desplaçament" @@ -12677,22 +12279,22 @@ #~ msgstr "/Imatge/_Transforma" #~ msgid "/Image/Transform/Flip _Horizontally" -#~ msgstr "/Imatge/Transforma/Volteja en _Horitzontal" +#~ msgstr "/Imatge/Transforma/Volteja en _horitzontal" #~ msgid "/Image/Transform/Flip _Vertically" -#~ msgstr "/Imatge/Transforma/Volteja en _Vertical" +#~ msgstr "/Imatge/Transforma/Volteja en _vertical" #~ msgid "/Image/Transform/Rotate 90 degrees _CW" -#~ msgstr "/Imatge/Transformacions/Gira 90 graus (horari)" +#~ msgstr "/Imatge/Transforma/Gira 90 graus (_horari)" #~ msgid "/Image/Can_vas Size..." -#~ msgstr "/Imatge/Mida del llenç..." +#~ msgstr "/Imatge/Mida del _llenç..." #~ msgid "/Image/_Scale Image..." #~ msgstr "/Imatge/E_scala la imatge..." #~ msgid "/Image/_Crop Image" -#~ msgstr "/Imatge/Escapça la imatge..." +#~ msgstr "/Imatge/Es_capça la imatge" #~ msgid "/Image/_Duplicate" #~ msgstr "/Imatge/_Duplica" @@ -12701,37 +12303,37 @@ #~ msgstr "/Imatge/_Fusiona les capes visibles..." #~ msgid "/Image/_Flatten Image" -#~ msgstr "Imatge/Aplanar la imatge" +#~ msgstr "/Imatge/A_planar la imatge" #~ msgid "/Image/Configure G_rid..." -#~ msgstr "/Imatge/Configura la graella" +#~ msgstr "/Imatge/Configura la g_raella..." #~ msgid "/Layer/_New Layer..." #~ msgstr "/Capes/_Nova capa..." #~ msgid "/Layer/Du_plicate Layer" -#~ msgstr "/Capes/Duplica la capa" +#~ msgstr "/Capes/Du_plica la capa" #~ msgid "/Layer/Anchor _Layer" -#~ msgstr "/Capes/Ancora la capa" +#~ msgstr "/Capes/_Ancora la capa" #~ msgid "/Layer/Me_rge Down" -#~ msgstr "/Capes/Combina al capdavall" +#~ msgstr "/Capes/_Combina al capdavall" #~ msgid "/Layer/_Delete Layer" -#~ msgstr "/Capes/Suprimeix la capa" +#~ msgstr "/Capes/_Suprimeix la capa" #~ msgid "/Layer/Discard _Text Information" #~ msgstr "/Capes/Descarta informació de _text" #~ msgid "/Layer/Stack/_Raise Layer" -#~ msgstr "/Capes/Pila/_Aixeca la capa" +#~ msgstr "/Capes/Pila/A_puja la capa" #~ msgid "/Layer/Stack/_Lower Layer" #~ msgstr "/Capes/Pila/A_baixa la capa" #~ msgid "/Layer/Stack/Layer to T_op" -#~ msgstr "/Capes/Pila/Capa al cap_damunt" +#~ msgstr "/Capes/Pila/Capa al capda_munt" #~ msgid "/Layer/Stack/Layer to Botto_m" #~ msgstr "/Capes/Pila/Capa al capda_vall" @@ -12746,16 +12348,16 @@ #~ msgstr "/Capes/Colors/To-_Saturació..." #~ msgid "/Layer/Colors/Colori_ze..." -#~ msgstr "/Capes/Colors/Acoloreix..." +#~ msgstr "/Capes/Colors/Ac_oloreix..." #~ msgid "/Layer/Colors/B_rightness-Contrast..." #~ msgstr "/Capes/Colors/B_rillantor-Contrast..." #~ msgid "/Layer/Colors/_Threshold..." -#~ msgstr "/Capes/Colors/Llindar..." +#~ msgstr "/Capes/Colors/_Llindar..." #~ msgid "/Layer/Colors/_Levels..." -#~ msgstr "/Capes/Colors/Nivells..." +#~ msgstr "/Capes/Colors/_Nivells..." #~ msgid "/Layer/Colors/_Curves..." #~ msgstr "/Capes/Colors/_Corbes..." @@ -12764,16 +12366,16 @@ #~ msgstr "/Capes/Colors/_Posterize..." #~ msgid "/Layer/Colors/_Desaturate" -#~ msgstr "/Capes/Colors/Desatura" +#~ msgstr "/Capes/Colors/_Desatura" #~ msgid "/Layer/Colors/In_vert" -#~ msgstr "/Capes/Colors/Inverteix" +#~ msgstr "/Capes/Colors/In_verteix" #~ msgid "/Layer/Colors/_Auto" -#~ msgstr "/Capes/Colors/Automàtic" +#~ msgstr "/Capes/Colors/_Automàtic" #~ msgid "/Layer/Colors/Auto/_Equalize" -#~ msgstr "/Capes/Colors/Automàtic/Iguala" +#~ msgstr "/Capes/Colors/Automàtic/_Iguala" #~ msgid "/Layer/Colors/_Histogram" #~ msgstr "/Capes/Colors/_Histograma" @@ -12788,10 +12390,10 @@ #~ msgstr "/Capes/Màscara/A_plica una màscara de capa" #~ msgid "/Layer/Mask/_Delete Layer Mask" -#~ msgstr "/Capes/Màscara/Suprimeix la màscara de capa" +#~ msgstr "/Capes/Màscara/_Suprimeix la màscara de capa" #~ msgid "/Layer/Mask/_Mask to Selection" -#~ msgstr "/Capes/Màscara/_Màscara a la selecció" +#~ msgstr "/Capes/Màscara/_Màscara a selecció" #~ msgid "/Layer/Mask/_Add to Selection" #~ msgstr "/Capes/Màscara/_Afegeix a la selecció" @@ -12800,46 +12402,46 @@ #~ msgstr "/Capes/Màscara/_Sostreu de la selecció" #~ msgid "/Layer/Mask/_Intersect with Selection" -#~ msgstr "Capes/Màscara/Creua amb la selecció" +#~ msgstr "/Capes/Màscara/_Creua amb la selecció" #~ msgid "/Layer/Tr_ansparency" -#~ msgstr "Capes/Tr_ansparència" +#~ msgstr "/Capes/Tr_ansparència" #~ msgid "/Layer/Transparency/_Add Alpha Channel" #~ msgstr "/Capes/Transparència/_Afegeix canal alfa" #~ msgid "/Layer/Transparency/Al_pha to Selection" -#~ msgstr "/Capes/Transparència/Alfa a la selecció" +#~ msgstr "/Capes/Transparència/Al_fa a selecció" #~ msgid "/Layer/Transparency/A_dd to Selection" -#~ msgstr "/Capes/Transparència/Afegeix a la selecció" +#~ msgstr "/Capes/Transparència/Afegeix a la s_elecció" #~ msgid "/Layer/Transparency/_Subtract from Selection" #~ msgstr "/Capes/Transparència/_Sostreu de la selecció" #~ msgid "/Layer/Transparency/_Intersect with Selection" -#~ msgstr "/Capes/Transparència/Creua amb la selecció" +#~ msgstr "/Capes/Transparència/_Creua amb la selecció" #~ msgid "/Layer/_Transform" #~ msgstr "/Capes/_Transforma" #~ msgid "/Layer/Transform/Flip _Horizontally" -#~ msgstr "/Capes/Transforma/Volteja en _Horitzontal" +#~ msgstr "/Capes/Transforma/Volteja en _horitzontal" #~ msgid "/Layer/Transform/Flip _Vertically" -#~ msgstr "/Capes/Transforma/Volteja en _Vertical" +#~ msgstr "/Capes/Transforma/Volteja en _vertical" #~ msgid "/Layer/Transform/Rotate 90 degrees CC_W" -#~ msgstr "/Capes/Transforma/Gira 90 graus (antihorari)" +#~ msgstr "/Capes/Transforma/Gira 90 graus (_antihorari)" #~ msgid "/Layer/Transform/Rotate _180 degrees" -#~ msgstr "/Capes/Transforma/Gira 180 graus" +#~ msgstr "/Capes/Transforma/Gira _180 graus" #~ msgid "/Layer/Transform/_Offset..." -#~ msgstr "/Capes/Transforma/Desplaçament..." +#~ msgstr "/Capes/Transforma/_Desplaçament..." #~ msgid "/Layer/Layer _Boundary Size..." -#~ msgstr "/Capes/Mida del marc de la capa" +#~ msgstr "/Capes/Mida del lí_mit de la capa" #~ msgid "/Layer/Layer to _Image Size" #~ msgstr "/Capes/Capa a la mida de la _imatge" @@ -12848,7 +12450,7 @@ #~ msgstr "/Capes/E_scala la capa..." #~ msgid "/Layer/Cr_op Layer" -#~ msgstr "/Capes/Anc_ora la capa" +#~ msgstr "/Capes/Escap_ça la capa" #~ msgid "/Tools/Tool_box" #~ msgstr "/Eines/_Caixa d'eines" @@ -12857,7 +12459,7 @@ #~ msgstr "/Eines/Eines de _pintura" #~ msgid "/Dialogs/Create New Dock/_Misc. Stuff" -#~ msgstr "/Diàlegs/Crea nou desplegable/Miscel·lania" +#~ msgstr "/Diàlegs/Crea nou desplegable/_Miscel·lania" #~ msgid "/Dialogs/Tool _Options" #~ msgstr "/Diàlegs/_Opcions d'eina" @@ -12904,110 +12506,255 @@ #~ msgid "/Dialogs/Pal_ettes" #~ msgstr "/Diàlegs/Pal_etes" -#~ msgid "/Dialogs/_Fonts" -#~ msgstr "/Diàlegs/Tipus de lletra" +#~ msgid "/Dialogs/_Fonts" +#~ msgstr "/Diàlegs/Tipus de _lletra" + +#~ msgid "/Dialogs/_Buffers" +#~ msgstr "/Diàlegs/_Memòria intermèdia" + +#~ msgid "/Dialogs/_Images" +#~ msgstr "/Diàlegs/I_matges" + +#~ msgid "/Dialogs/Document Histor_y" +#~ msgstr "/Diàlegs/_Historial" + +#~ msgid "/Dialogs/_Templates" +#~ msgstr "/Diàlegs/Plan_tilles" + +#~ msgid "/Dialogs/T_ools" +#~ msgstr "/Diàlegs/_Eines" + +#~ msgid "/Dialogs/Error Co_nsole" +#~ msgstr "/Diàlegs/Co_nsola d'error" + +#~ msgid "/Filters/Repeat Last" +#~ msgstr "/Filtres/Repeteix l'últim" + +#~ msgid "/Filters/Re-Show Last" +#~ msgstr "/Filtres/Torna a mostrar l'últim" + +#~ msgid "/Filters/_Blur" +#~ msgstr "/Filtres/_Desenfoca" + +#~ msgid "/Filters/_Colors" +#~ msgstr "/Filtres/_Colors" + +#~ msgid "/Filters/Colors/Ma_p" +#~ msgstr "/Filtres/Colors/Ma_pa" + +#~ msgid "/Filters/_Noise" +#~ msgstr "/Filtres/_Soroll" + +#~ msgid "/Filters/_Generic" +#~ msgstr "/Filtres/_Genèric" + +#~ msgid "/Filters/_Map" +#~ msgstr "/Filtres/_Mapa" + +#~ msgid "/Filters/_Render" +#~ msgstr "/Filtres/_Render" + +#~ msgid "/Filters/Render/_Clouds" +#~ msgstr "/Filtres/Render/_Núvols" + +#~ msgid "/Filters/Render/_Nature" +#~ msgstr "/Filtres/Render/_Natura" + +#~ msgid "/Filters/Render/_Pattern" +#~ msgstr "/Filtres/Render/_Patró" + +#~ msgid "/Filters/_Web" +#~ msgstr "/Filtres/_Web" + +#~ msgid "/Filters/To_ys" +#~ msgstr "/Filtres/_Joguines" + +#~ msgid "Extended" +#~ msgstr "Estès" + +#~ msgid "Y:" +#~ msgstr "Y:" + +#~ msgid "Layer _Name" +#~ msgstr "_Nom de la capa" + +#~ msgid "Save Menu" +#~ msgstr "Menú desa" + +#~ msgid "Indexed Palette Menu" +#~ msgstr "Menú paleta indexada" + +#~ msgid "Offset _X:" +#~ msgstr "Desplaça _X:" + +#~ msgid "_Wrap" +#~ msgstr "_Ajusta" + +#~ msgid "" +#~ "Unable to run palette callback. The corresponding plug-in may have " +#~ "crashed." +#~ msgstr "" +#~ "No es pot usar la crida de retorn de la paleta. El connector corresponent " +#~ "pot deixar de funcionar." + +#~ msgid "" +#~ "Unable to run pattern callback. The corresponding plug-in may have " +#~ "crashed." +#~ msgstr "" +#~ "No es pot usar la crida de retorn del patró. El connector corresponent " +#~ "pot deixar de funcionar." + +#, fuzzy +#~ msgid "_Undo History Preview Size:" +#~ msgstr "Mida de previsualització del _navegador:" + +#~ msgid "_Info Window Per Display" +#~ msgstr "Finestra d'_informació per pantalla" + +#~ msgid "Menus" +#~ msgstr "Menús" + +#~ msgid "Enable _Tearoff Menus" +#~ msgstr "Activa menús _desprenibles" + +#~ msgid "Open _Recent Menu Size:" +#~ msgstr "Mida del menú de documents _recents:" + +#~ msgid "Context Sensitive _Help with \"F1\"" +#~ msgstr "_Ajuda sensible al context amb \"F1\"" + +#~ msgid "Pointer Movement Feedback" +#~ msgstr "Traça del moviment del punter" + +#~ msgid "Perfect-but-Slow _Pointer Tracking" +#~ msgstr "Seguiment perfecte, però lent, del _punter" + +#~ msgid "Enable Cursor _Updating" +#~ msgstr "Activa l'act_ualització del cursor" + +#~ msgid "Show reversed zoom ratio" +#~ msgstr "Mostra la relació d'aspecte de l'ampliació inversa" + +#~ msgid "8-Bit Displays" +#~ msgstr "Pantalla de 8-bits" + +#~ msgid "Install Colormap" +#~ msgstr "Instal·la el mapa de colors" + +#~ msgid "Monitor Resolution" +#~ msgstr "Resolució del monitor" + +#~ msgid "Monitor" +#~ msgstr "Monitor" -#~ msgid "/Dialogs/_Buffers" -#~ msgstr "/Diàlegs/_Memòria intermèdia" +#~ msgid "(Currently %d x %d dpi)" +#~ msgstr "(Actualment %d x %d ppp)" -#~ msgid "/Dialogs/_Images" -#~ msgstr "/Diàlegs/I_matges" +#~ msgid "From _Windowing System" +#~ msgstr "Des del sistema de _finestres" -#~ msgid "/Dialogs/Document Histor_y" -#~ msgstr "/Diàlegs/_Historial" +#~ msgid "Window Type Hints" +#~ msgstr "Tipus de finestra aconsellats" -#~ msgid "/Dialogs/_Templates" -#~ msgstr "/Diàlegs/Plan_tilles" +#~ msgid "Conservative Memory Usage" +#~ msgstr "Ús conservador de memòria" -#~ msgid "/Dialogs/T_ools" -#~ msgstr "/Diàlegs/_Eines" +#~ msgid "File Saving" +#~ msgstr "S'està desant el fitxer" -#~ msgid "/Dialogs/Error Co_nsole" -#~ msgstr "/Diàlegs/Co_nsola d'error" +#~ msgid "Only when Modified" +#~ msgstr "Només quan s'hagi modificat" -#~ msgid "/Filters/Repeat Last" -#~ msgstr "/Filtres/Repeteix l'últim" +#~ msgid "Always" +#~ msgstr "Sempre" -#~ msgid "/Filters/Re-Show Last" -#~ msgstr "/Filtres/Torna a ensenyar l'últim" +#~ msgid "\"File -> Save\" Saves the Image:" +#~ msgstr "\"Fitxer-> Desa\" Desa la imatge:" -#~ msgid "/Filters/_Blur" -#~ msgstr "/Filtres/_Desenfoca" +#~ msgid "Session Management" +#~ msgstr "Gestió de sessió" -#~ msgid "/Filters/_Colors" -#~ msgstr "/Filtres/_Colors" +#~ msgid "Session" +#~ msgstr "Sessió" -#~ msgid "/Filters/Colors/Ma_p" -#~ msgstr "/Filtres/Colors/Ma_pa" +#~ msgid "Clear Saved Window Positions Now" +#~ msgstr "Neteja ara les posicions de finestra desades" -#~ msgid "/Filters/_Noise" -#~ msgstr "/Filtres/_Soroll" +#~ msgid "Clear Saved Keyboard Shortcuts Now" +#~ msgstr "Neteja ara les dreceres de teclat desades" -#~ msgid "/Filters/_Generic" -#~ msgstr "/Filtres/_Genèric" +#~ msgid "Clear Saved Input Device Settings Now" +#~ msgstr "Neteja ara els paràmetres dels dispositius d'entrada desats" -#~ msgid "/Filters/_Map" -#~ msgstr "/Filtres/_Mapa" +#~ msgid "Temp Dir:" +#~ msgstr "Directori temporal:" -#~ msgid "/Filters/_Render" -#~ msgstr "/Filtres/_Render" +#~ msgid "Select Temp Dir" +#~ msgstr "Selecciona el directori temporal" -#~ msgid "/Filters/Render/_Clouds" -#~ msgstr "/Filtres/Render/Núvols" +#~ msgid "Swap Dir:" +#~ msgstr "Directori d'intercanvi:" -#~ msgid "/Filters/Render/_Nature" -#~ msgstr "/Filtres/Render/_Natura" +#~ msgid "Qmask Attributes" +#~ msgstr "Atributs del Qmask" -#~ msgid "/Filters/Render/_Pattern" -#~ msgstr "/Filtres/Render/_Patró" +#~ msgid "Scale Layer Options" +#~ msgstr "Opcions d'escalat de capa" -#~ msgid "/Filters/_Web" -#~ msgstr "/Filtres/_Web" +#~ msgid "Scale Image Options" +#~ msgstr "Opcions d'escalat d'imatge" -#~ msgid "/Filters/To_ys" -#~ msgstr "/Filtres/_Joguines" +#~ msgid "Pixel Dimensions" +#~ msgstr "Dimensions del píxel" -#~ msgid "Offset _X:" -#~ msgstr "Desplaça X:" +#~ msgid "Layer Boundary Size" +#~ msgstr "Mida del límit de la capa" -#~ msgid "_Wrap" -#~ msgstr "_Ajusta" +#~ msgid "New Width:" +#~ msgstr "Nova amplada:" -#~ msgid "Show reversed zoom ratio" -#~ msgstr "Mostra la relació d'aspecte de l'ampliació inversa" +#~ msgid "Ratio X:" +#~ msgstr "Proporció X:" -#~ msgid "Window Type Hints" -#~ msgstr "Consells de tipus de finestra" +#~ msgid "Constrain aspect ratio" +#~ msgstr "Força relació d'aspecte" -#~ msgid "Qmask Attributes" -#~ msgstr "Atributs del Qmask" +#~ msgid "Print Size & Display Unit" +#~ msgstr "Mida d'impressió i unitats de visualització" #~ msgid "Resolution X:" #~ msgstr "Resolució X:" +#~ msgid "Stroke Options" +#~ msgstr "Opcions de traçat" + #~ msgid "Stroke" #~ msgstr "Traça" +#, fuzzy #~ msgid "/Save Options to/_New Entry..." -#~ msgstr "/Desa les opcions a/_Nova entrada..." +#~ msgstr "/_Desa opcions a/_Nova entrada..." +#, fuzzy #~ msgid "/Restore Options from/(None)" -#~ msgstr "/Restaura les opcions des de/(Cap)" +#~ msgstr "/_Restaura opcions des de/(Cap)" +#, fuzzy #~ msgid "/Rename Saved Options/(None)" -#~ msgstr "/Torna a nomenar les opcions desades/(Cap)" +#~ msgstr "/Rea_nomena opcions desades/(Cap)" +#, fuzzy #~ msgid "/Delete Saved Options/(None)" -#~ msgstr "/Suprimeix les opcions desades/(Cap)" +#~ msgstr "/_Suprimeix opcions desades/(Cap)" #~ msgid "/File/_Preferences" #~ msgstr "/Fitxer/_Preferències" #~ msgid "/File/_Dialogs" -#~ msgstr "/Fitxer/Diàlegs" +#~ msgstr "/Fitxer/_Diàlegs" #~ msgid "/File/Dialogs/Create New Doc_k" -#~ msgstr "/Fitxer/Diàlegs/Crea nou desplegable" +#~ msgstr "/Fitxer/Diàlegs/Crea nou _desplegable" #~ msgid "/File/Dialogs/Create New Dock/_Layers, Channels & Paths" #~ msgstr "/Fitxer/Diàlegs/Crea nou desplegable/_Capes, canals i camins" @@ -13025,10 +12772,10 @@ #~ msgstr "/Fitxer/Diàlegs/Estat del _dispositiu" #~ msgid "/File/Dialogs/_Layers" -#~ msgstr "/Fitxer/Diàlegs/Ca_pes" +#~ msgstr "/Fitxer/Diàlegs/_Capes" #~ msgid "/File/Dialogs/_Channels" -#~ msgstr "/Fitxer/Diàlegs/_Canals" +#~ msgstr "/Fitxer/Diàlegs/Ca_nals" #~ msgid "/File/Dialogs/_Paths" #~ msgstr "/Fitxer/Diàlegs/Ca_mins" @@ -13037,7 +12784,7 @@ #~ msgstr "/Fitxer/Diàlegs/Paleta _indexada" #~ msgid "/File/Dialogs/Histogra_m" -#~ msgstr "/Fitxer/Diàlegs/Histo_grama" +#~ msgstr "/Fitxer/Diàlegs/Histogra_ma" #~ msgid "/File/Dialogs/_Selection Editor" #~ msgstr "/Fitxer/Diàlegs/Editor de _selecció" @@ -13046,7 +12793,7 @@ #~ msgstr "/Fitxer/Diàlegs/Na_vegació" #~ msgid "/File/Dialogs/_Undo History" -#~ msgstr "/Fitxer/Diàlegs/_Historial de desfer" +#~ msgstr "/Fitxer/Diàlegs/Historial de _desfer" #~ msgid "/File/Dialogs/Colo_rs" #~ msgstr "/Fitxer/Diàlegs/C_olors" @@ -13073,22 +12820,22 @@ #~ msgstr "/Fitxer/Diàlegs/_Imatges" #~ msgid "/File/Dialogs/Document Histor_y" -#~ msgstr "/Fitxer/Diàlegs/Historial" +#~ msgstr "/Fitxer/Diàlegs/_Historial" #~ msgid "/File/Dialogs/_Templates" -#~ msgstr "/Fitxer/Diàlegs/Plantilles" +#~ msgstr "/Fitxer/Diàlegs/Plan_tilles" #~ msgid "/File/Dialogs/T_ools" -#~ msgstr "/Fitxer/Diàlegs/Eines" +#~ msgstr "/Fitxer/Diàlegs/_Eines" #~ msgid "/File/Dialogs/Error Co_nsole" #~ msgstr "/Fitxer/Diàlegs/Co_nsola d'error" #~ msgid "/File/D_ebug" -#~ msgstr "/Fitxer/D_ebug" +#~ msgstr "/Fitxer/D_epura" #~ msgid "/Xtns/_Module Manager" -#~ msgstr "/Extensions/_Gestor de mòduls" +#~ msgstr "/Extensions/Gestor de _mòduls" #~ msgid "/Help/_Help" #~ msgstr "/Ajuda/_Ajuda" @@ -13096,8 +12843,41 @@ #~ msgid "/Help/_About" #~ msgstr "/Ajuda/_Quant a..." +#~ msgid "Click \"Continue\" to start The GIMP." +#~ msgstr "Feu clic a \"Continua\" per iniciar el GIMP." + +#~ msgid "" +#~ "To display images in their natural size, GIMP needs to know your " +#~ "monitor resolution." +#~ msgstr "" +#~ "Per visualitzar les imatges en mida natural, el GIMP ha de saber quina " +#~ "és la resolució del monitor." + #~ msgid "Aborting Installation..." -#~ msgstr "S'està cancelant la instal·lació..." +#~ msgstr "S'està cancel·lant la instal·lació..." + +#~ msgid "" +#~ "GIMP can obtain this information from the windowing system. However, " +#~ "usually this does not give useful values." +#~ msgstr "" +#~ "El GIMP pot obtenir aquesta informació del sistema de finestres. De totes " +#~ "maneres, això no sol proporcionar valors útils." + +#~ msgid "Alternatively, you can set the monitor resolution manually." +#~ msgstr "Altrament, podeu configurar la resolució del monitor manualment." + +#~ msgid "" +#~ "You can also press the \"Calibrate\" button to open a window which lets " +#~ "you determine your monitor resolution interactively." +#~ msgstr "" +#~ "També podeu fer un clic al botó \"Calibra\" per obrir una finestra que us " +#~ "permeti determinar la resolució del vostre monitor interactivament." + +#~ msgid "Calibrate" +#~ msgstr "Calibra" + +#~ msgid "Don't Show Grid" +#~ msgstr "No mostris la graella" #~ msgid "/Tools/Paint Tools/_Airbrush" #~ msgstr "/Eines/Eines de pintura/V_aporitzador" @@ -13106,7 +12886,7 @@ #~ msgstr "/Eines/Eines de pintura/_Mescla" #~ msgid "/Tools/Color Tools/B_rightness-Contrast..." -#~ msgstr "/Eines/Eines de color/Brillantor-Contrast..." +#~ msgstr "/Eines/Eines de color/B_rillantor-Contrast..." #~ msgid "/Tools/Paint Tools/_Bucket Fill" #~ msgstr "/Eines/Eines de pintura/Omple amb el cu_bell" @@ -13118,7 +12898,7 @@ #~ msgstr "/Eines/Eines de pintura/_Clona" #~ msgid "/Tools/Color Tools/Color _Balance..." -#~ msgstr "/Eines/Eines de color/_Balanç de colors..." +#~ msgstr "/Eines/Eines de color/_Balanç de color..." #~ msgid "/Tools/Color Tools/Colori_ze..." #~ msgstr "/Eines/Eines de color/Ac_oloreix" @@ -13136,10 +12916,13 @@ #~ msgstr "/Eines/Eines de color/_Corbes..." #~ msgid "/Tools/Paint Tools/Dod_geBurn" -#~ msgstr "/Eines/Eines de pintura/EsvairCremar" +#~ msgstr "/Eines/Eines de pintura/Esvair_Cremar" + +#~ msgid "Move Floating Layer" +#~ msgstr "Mou capa flotant" #~ msgid "/Tools/Selection Tools/_Ellipse Select" -#~ msgstr "/Eines/Eines de selecció/Selecció d'_el·lipse" +#~ msgstr "/Eines/Eines de selecció/Selecció _el·liptica" #~ msgid "/Tools/Paint Tools/_Eraser" #~ msgstr "/Eines/Eines de pintura/Goma d'_esborrar" @@ -13150,8 +12933,11 @@ #~ msgid "/Tools/Selection Tools/_Free Select" #~ msgstr "/Eines/Eines de selecció/Selecció _lliure" +#~ msgid "/Tools/Selection Tools/Fu_zzy Select" +#~ msgstr "/Eines/Eines de selecció/Selecció _difosa" + #~ msgid "/Tools/Color Tools/Hue-_Saturation..." -#~ msgstr "/Eines/Eines de color/To-Saturació.." +#~ msgstr "/Eines/Eines de color/To-_Saturació.." #~ msgid "/Tools/Paint Tools/In_k" #~ msgstr "/Eines/Eines de pintura/_Tinta" @@ -13174,6 +12960,9 @@ #~ msgid "/Tools/Paint Tools/_Paintbrush" #~ msgstr "/Eines/Eines de pintura/_Pinzell" +#~ msgid "Pattern:" +#~ msgstr "Patró:" + #~ msgid "/Tools/Paint Tools/Pe_ncil" #~ msgstr "/Eines/Eines de pintura/_Llapis" @@ -13181,10 +12970,10 @@ #~ msgstr "/Eines/Eines de transformació/_Perspectiva" #~ msgid "/Tools/Color Tools/_Posterize..." -#~ msgstr "/Eines/Eines de color/_Posterize" +#~ msgstr "/Eines/Eines de color/_Posterize..." #~ msgid "/Tools/Selection Tools/_Rect Select" -#~ msgstr "/Eines/Eines de selecció/Selecció de _rectangle" +#~ msgstr "/Eines/Eines de selecció/Selecció _rectangular" #~ msgid "/Tools/Transform Tools/_Rotate" #~ msgstr "/Eines/Eines de transformació/_Gira" @@ -13198,18 +12987,58 @@ #~ msgid "/Tools/Paint Tools/_Smudge" #~ msgstr "/Eines/Eines de pintura/_Taca" +#~ msgid "_Size:" +#~ msgstr "_Mida:" + #~ msgid "/Tools/Te_xt" #~ msgstr "/Eines/Te_xt" #~ msgid "/Tools/Color Tools/_Threshold..." #~ msgstr "/Eines/Eines de color/_Llindar..." +#~ msgid "Threshold Range:" +#~ msgstr "Abast del llindar:" + +#~ msgid "Density:" +#~ msgstr "Densitat:" + +#~ msgid "" +#~ "Activate both the \"Keep Height\" and\n" +#~ "\"Keep Width\" toggles to constrain\n" +#~ "the aspect ratio" +#~ msgstr "" +#~ "Activa alhora \"Manté alçada\" i\n" +#~ "\"Manté amplada\" per a forçar\n" +#~ " la proporció" + +#~ msgid "Transformations do not work on layers that contain layer masks." +#~ msgstr "" +#~ "Les transformacions no funcionen en les capes que continguin màscares de " +#~ "capa." + #~ msgid "/Tools/_Paths" -#~ msgstr "/Eines/Camins" +#~ msgstr "/Eines/Ca_mins" #~ msgid "Delete" #~ msgstr "Suprimeix" +#, fuzzy +#~ msgid "" +#~ "New Channel\n" +#~ "%s New Channel Dialog" +#~ msgstr "Color del nou canal" + +#~ msgid "" +#~ "Channel to Selection\n" +#~ "%s Add\n" +#~ "%s Subtract\n" +#~ "%s%s%s Intersect" +#~ msgstr "" +#~ "Canal a selecció \n" +#~ "%s Afegeix\n" +#~ "%s Sostreu\n" +#~ "%s%s%s Creua" + #~ msgid "FG" #~ msgstr "Primer pla" @@ -13219,25 +13048,122 @@ #~ msgid "Edit Foreground Color" #~ msgstr "Edita el color de primer pla" +#~ msgid "" +#~ "Add Color from FG\n" +#~ "%s from BG" +#~ msgstr "" +#~ "Afegeix color del primer pla\n" +#~ "%s del fons" + +#~ msgid "He_x Triplet:" +#~ msgstr "Trio he_xadecimal:" + +#~ msgid "Edit Indexed Color" +#~ msgstr "Edita color indexat" + +#~ msgid "Edit Indexed Image Palette Color" +#~ msgstr "Edita color de paleta de la imatge indexada" + #~ msgid "New" #~ msgstr "Nou" #~ msgid "Refresh" -#~ msgstr "Refresca" +#~ msgstr "Actualitza" + +#~ msgid "Configure input devices" +#~ msgstr "Configura dispositius d'entrada" + +#~ msgid "" +#~ "Open the selected entry\n" +#~ "%s Raise window if already open\n" +#~ "%s Open image dialog" +#~ msgstr "" +#~ "Obre l'entrada seleccionada\n" +#~ "%s Mostra la finestra si ja és oberta\n" +#~ "%s Obre el diàleg imatge" + +#~ msgid "" +#~ "Recreate preview\n" +#~ "%s Reload all previews\n" +#~ "%s Remove Dangling Entries" +#~ msgstr "" +#~ "Recrea previsualització \n" +#~ "%s Actualitza totes les previsualitzacions \n" +#~ "%s Suprimeix les entrades penjades" + +#~ msgid "" +#~ "Save all Errors\n" +#~ "%s Save Selection" +#~ msgstr "" +#~ "Desa tots els errors\n" +#~ "%s Desa la selecció" + +#~ msgid "Determine File _Type:" +#~ msgstr "Determina el _tipus de fitxer:" + +#~ msgid "" +#~ "Could not find the GIMP Help Browser procedure. It probably was not " +#~ "compiled because you don't have GtkHtml2 installed." +#~ msgstr "" +#~ "No s'ha pogut trobar el procediment per navegar en l'ajuda del GIMP. És " +#~ "probable que no fos compilat per què no heu instal·lat el GtkHtml2." + +#~ msgid "Could not start GIMP Help Browser" +#~ msgstr "No s'ha pogut iniciar el navegador d'ajuda del GIMP" + +#~ msgid "Intensity Range:" +#~ msgstr "Rang d'intensitat:" + +#~ msgid "" +#~ "%s\n" +#~ "%s To Top" +#~ msgstr "" +#~ "%s\n" +#~ "%s Fins la part superior" + +#~ msgid "" +#~ "%s\n" +#~ "%s To Bottom" +#~ msgstr "" +#~ "%s\n" +#~ "%s Fins la part inferior" + +#~ msgid "" +#~ "New Color from FG\n" +#~ "%s from BG" +#~ msgstr "" +#~ "Nou color del primer pla\n" +#~ "%s del fons" #~ msgid "Stroke _Width:" -#~ msgstr "Traça amplada:" +#~ msgstr "Traça _amplada:" #~ msgid "Style" -#~ msgstr "_Estil" +#~ msgstr "Estil" -#~ msgid "Image Comment" -#~ msgstr "Comentari de la imatge" +#~ msgid "" +#~ "Reset to default values\n" +#~ "%s Reset all Tool Options" +#~ msgstr "" +#~ "Torna a iniciar amb els valors per defecte\n" +#~ "%s Torna a iniciar totes les opcions d'eina" #~ msgid "%s Options" #~ msgstr "Opcions %s" #~ msgid "" +#~ "WARNING:\n" +#~ "Too many open message dialogs.\n" +#~ "Messages are redirected to stderr." +#~ msgstr "" +#~ "Avís:\n" +#~ "Hi ha massa diàlegs de missatges oberts.\n" +#~ "Els missatges són redireccionats a la sortida estàndard d'errors." + +#~ msgid "Internal" +#~ msgstr "Intern" + +#~ msgid "" #~ " -S, --no-splash-image Do not add an image to the startup window.\n" #~ msgstr "" #~ " -S, --no-splash-image No afegeixis una imatge a la finestra " @@ -13262,16 +13188,16 @@ #~ msgstr "Copia de la capa buida" #~ msgid "Empty Vectors Copy" -#~ msgstr "Copia de vectors buits" +#~ msgstr "Còpia de vectors buits" #~ msgid "Modify letter spacing" #~ msgstr "Modifica l'espaiat de lletra" #~ msgid "Modify Curves for Channel:" -#~ msgstr "Modifica les corbes pel canal:" +#~ msgstr "Modifica les corbes per al canal:" #~ msgid "Modify Levels for Channel:" -#~ msgstr "Modifica els nivells pel canal:" +#~ msgstr "Modifica els nivells per al canal:" #~ msgid "The GIMP (unstable)" #~ msgstr "El GIMP (inestable)" diff -uraN gimp-2.2.0/po/ChangeLog gimp-2.2.1/po/ChangeLog --- gimp-2.2.0/po/ChangeLog 2004-12-19 03:07:31.000000000 +0100 +++ gimp-2.2.1/po/ChangeLog 2004-12-28 15:38:13.000000000 +0100 @@ -1,3 +1,40 @@ +2004-12-28 Adam Weinberger + + * en_CA.po: Updated Canadian English translation. + +2004-12-27 Miloslav Trmac + + * cs.po: Updated Czech translation. + +2004-12-21 Kjartan Maraas + + * nb.po: Update and fix some funnies. + * no.po: Same + +2004-12-21 Jordi Mallach + + * ca.po: Forwardported from gimp-2-2. + +2004-12-20 Sven Neumann + + * de.po: fixed wrong translation (bug #161800). + +2004-12-20 Jarkko Ranta + + * fi.po: Updated Finnish translation by Mikko Paananen. + +2004-12-20 Marco Ciampa + + * it.po: updated italian translation. + +2004-12-19 Vincent van Adrighem + + * nl.po: Translation updated. + +2004-12-19 Adam Weinberger + + * en_CA.po: Updated Canadian English translation. + 2004-12-18 Sven Neumann * de.po: updated. diff -uraN gimp-2.2.0/po/cs.gmo gimp-2.2.1/po/cs.gmo --- gimp-2.2.0/po/cs.gmo 2004-12-19 03:11:53.000000000 +0100 +++ gimp-2.2.1/po/cs.gmo 2004-12-28 16:58:41.000000000 +0100 @@ -1,229 +1,224 @@ -M Jm &kGJ9GANVi<kL@2;,PhO2 9<-v9;7 R\ -c n -x -  - - -&@V0] -  % -3 -> I Vb r ~ K.z1!%,HWnr -  -   -%0?Rj|*6(E]f'#;_y -   '1A1V3 -| -"2ACJ< .<Le}   ,:R -[fw&$   .5NU[u"}  - 7W ] jx   mC H V dnw  C7 -=B@6d]{3<#!:\y  &8Jg, ( H i!w  !5<C IWj y.55778o),32P OA+%m&41#! ES o { -  /A0S  + 5H[d t  - $ -. Kl" $2B KW_ +Dd y"" - -+)6`,z!##!+%Ms.  #5-Y% -7 <J -d -o -z $ +9 -LW-^  )<L_v  %! %2E&]    #0 @M_ nz - --) Wc jx  - # 6D^ gq :?8+ dpy  - -  -  % -/ :F O\p > "2DSe  +A Q[n - -  ,9 N[k -*!3.Jy#"&!H ^j~,# ')Q'nFTF    -7 BP m ($*=O6<?AA79c9YB=f>{CJgI    %1 C P ^l "2Fb}# 7E -X cq v -   - % 5C[w(     - O* z  -  , -= -V -m +S Js L&/kVG9 +GDANi<k@02q;PO129-9;V7  + + + " +1<?O +grz0*3; +R]dlt + +    K l.1!!Su + & < +HSh { +*+6V/CWv# + )1CLl 134HNah +/IP _ +lwAJH<[   ,8Naj  +&5$\ " $)/4 +DO^o7   ! )6; @mM  * 1C>7=@69dp3 =<Q#!  - 7AJbx#,:g  !6Lav   .5M578)*,T2 &AO]A%&4<1q#  06?N^ +mx  0 % 1> E O \i+ # ,6 +> IS$s  'EXh"}    "("Kn +  +),)V!p##!%".Ap w#-6%Lr  + + +)4LSb g u  +- ; BO_v z% 6B R ^ ly%! & 3 GUdw     )8Pk + +-  '/ 7D +L Wdw   0:A:_?8 (: KU +dou + + +    .>< {4D Ta p}  +2M c +q| +    +5 D R +^i*z!.(D#M"q& -,6#c ''EbxFTJQ Wdz   +  =L[m ($=6<<s?A729jc9BB=f>*CiJg `l|     /F[n,IPYx  +   % +2 =G Wex +   + & B V (o         + O )  - - - - - -. - - -  -  *  8  D Q V  e r       u e w D c - nz{rw&'7 _ k u     '8<Vs  -   "=Td -itH -  -H)!rB1/4 9FM] -mx } `C107 = JW -i -t ( -8 -CHN -  -  # 2 ?MR Z gs{  P\q    K -3V6" +? N$X}   (+&)R*|!/ !*2]n' - 1ASbkz  -";N e ! 4 P b  i v      - ("1"A"T"X" r"|""" ""3"""#!# 9# -F# Q# ]#j######$ $($?$ F$R$g${$$@$$-$% %'% ,% :% F%S%q% x%% % %%%%% -& & (& 4&@& W&e&}& && -&&& && ' ' -6'A'V'_'g'z''''''' '''( -(#%(I(b({(((((+() ) ) ") -.) 9) F)T)i)}))) )) ))**"3*V*_*u* *****$**++$+ 3+?+ G+ U+a+t+ y+ ++ -+ + -++ +++ , ,,4,C,Z,p,,,,,, ,,,-- -#- .-:-L-`-s- - --- - - ---.. '. -4. ?.I. d. q.}. . . .,..!./1/H/)e/ // / ///// / 00B'0Aj0000 0011 !1.1@1U1]1e111 222 -!2,2 @2N2e2 w2222"2!2!3<3T3m3 3 3 3333 33V3+74 c4(m44"44 4 445%5 -E5 P5Z5b5q55 -55 55 55 5 5666 .6 :6 F6T6&n6,6 666 -6 -66757T7l774777 -777 -8 88(8 18?8G8N8 k8w8 8!88 88 88 -9%9 59?9P9 b9o9v9;~9?99 ::%:5:R:o:4;F;O;-W; <<< -< <#<<-< "=.=C= X=b=j=== -= ==P>d>x> >>>>>> -> ->>> -? ? $?2?6?P? a? k?!u?? ??? ? ??@@ @@3@ I@U@ -h@s@@ @@ @@ -@@@A0A5A ;A!HAjA!A#AA A -A9AU6B=B<B=CEC"KC?nCCC CCCC(C,DADQDcDtD -DDDDJD E'E6EOE iE vEEE E EEEFF;.FjFF F FFF F FF G G G)G1G OGYGtGGGGGGGGH-H?HTH+kHHHHH H H H I I *I6I#MI qI}I IIII6IJ3J;JBJ WJ7dJJJJJJJK "K /K;KMK aKnK KKKK -K -K KKK LL -L L%L :LFL -]LhLL LLLLL M!M1MJMZMnM4MMMMNN1N@N.ZNENN N NN O !O/OJO PO ^O jO -vOO O -OOO OOOO PNP -PQ QQ&Q .Q:QLQhQ~Q#QQQ QQ R(R>R#XR|RR RRRRS$SBSaS vSSSSS!SST&T --T8TMT ]TjTTTTTT T U U7UNUmUU UUU UUUVV2VEV\V -nVyVV"VVV VWW5WMWfW=vW6WSWJ?XXXX XXXX Y#Y2YPY bYnY}YYY YYYY ZZ1ZGZbZ|ZZZ ZZZZ [[*[=[)[N\k\K]=] ^*^^]_3`T4`?```2*a]aac4d/dd eeeeeeeff f2f8fKf^f{f f ff;ff f gg ,g9g Ng\glg#g gg g g&gh -h&h9hIhch"uhhhhhhii&i;iKiZi kixii iiiii+i jj$j +j8j ?jLj \j -jjuj{jjj j j8jvj\kck{k k kk k!kk l)lDl]lzllllllll l l m m'm0m9m BmOm_m nmzm m mmm!mmn(nGn#Pn tn nnn -n n nnnnn -o o -o #o1oAoKJo1o7o1p52pHhpApp;~q!qq rr st}\u*uBwHw/xNxxSy Yygy)ny5yy1~z0z0z1{(D{Cm{{S2|,|2| |A~AI~*~~b P],Ђ{#˄΅Gg2 Ո-߈ - +=NTYhqw ‰ԉ   &3 -9<D  ‹֋ -$4CWf  -Ќی3;4;pNFU   Ə̏ԏ =]3v#ΐ #9HW] dpF - - ! / = J W e!s!  Ò+ϒK0GQxʓc$5+PaG-O(jxoeSj~$pow<?9>ytt-` 0DJQcx 6oО@BI4Q#Gs%XU:O  - % 1; DNW#i ȢѢ $. 3 AO fpx~  أ   ;H PZk n z  - ǤԤܤ (G Vb -ju  ĥҥ   2HXj {  ֦  - )8Jdu     /> DRbiov    - -̨  %,3;C V bo Ωݩ - * 6BJRh w  ֪ߪ 0 =KQagn -v    - ū ӫ     '18 ->I R^g v  Ĭ ͬ ڬ    )5HNQV^ m z  ȭέ׭ (HPYo41/J`p #Я 4;K"[~ -İڰ (= -V -a -lw } -αٱ - --CR Zgvz -5  % -;!P r  -Գ ߳   *07 >L._4)q!L8NDhuk#EpոMF<FѹVDo/A5&B\87ػ  -% 0: C MZk | -Ƽ"ϼ(3.bz  ) Խ -   ' -5 -@ K Xd w  Y|41#+3;@_o 9Ra v(*E5p4Ni*) -FQ cm$  l-)  $ 2@Vm}>G?, l z *,A ^ 5I=]1     ",!5 -W2b       2L R^t -    zY^m -~ -D/7Hg@4f&"8H%b#"! ! +7Mi$!4'O#w## 2J^q  ,:AWFCB$?g6.# 1&N7u,*a!B,,< ?](% ; S _k:$_ p}  20 -ALaq z - -%/-J g- 6Wr C -OZb$r!'&&5\z -3.4c+|$##%#;>_*1,\,2PV'l07M^r ;09HZy  2Jcs 2(#Lb1 !8I[n~ *D`y  3 ! ) 6 -CN]s  +8KS(\CM1 I Ubw &&9L]t <&;bs ,9 IW_z 6Uq  ")8Nhw4 :BQ/  -&Kr  -0(/@&V1})(0YWuZ(. 7E\+t" B =P $D&K"rLEM(LvMFDXwIW_PzQQW'|  -);Ba s&=Un"! -,5=[y) <I[m~! -?Qby(7% . -8C -U`h oQ{   -%$ J X -f q{ # <Jhz r - - -} -w -   t          07 1h            * I Z l  )    1 . F S&]  -&!>`sxO -  4 -=KH$E7N^ g q   -  sLB8/8h  &9*Mx %UOa p}   " +7 I -S^y Oa}#  0gB3?2!I ku   2)PAzD@BB"9 -3%Yl+ (>Vk& 7Xo'!7O` w(" 7 G ] }  ' !  "! :"F"\" p"!~" """"""6"%#8#S#l######### $#$;$X$g$$$$ $$$$%[ %g%<p%%%%%%&'& -=&H&[&d&u&&&&'&&' ' +'9'I' a' n'|' ' '''' ' ' ' ((%(:(@(I(e( -k( v(( ((( ((( ))+))'U)})) ) ) ) )(*8* A*K*]*m*|******+*+:+J+[+l++'+++/++,3,:,A,I,*`,,,,,,, , ---2-:-O-a-}-------.#.7.R.e..... . -/ / /%/!7/Y/`/h/ q/~///// / /00 #0 /0$<0a0q000 0 0$00 0# -1.1 =1 J1BX11)11%1(24G2|222 222 -2233"3H83F3 334 44 "404 A4O4c4u4|445!5;5B5 J5T5g55!55556 '6#H6 l6 66667 7 7)7=7L7R7 -f7eq7-787 8 E8,O8 |888$8$8+ 999B9J9 Q9_9r9 9999 999999:,: ;:G:[:+s:#:::: ::";"1;T;j;;;9;;; -;< -<<1< G<T< [<g<o<v< << <$<<<= =.=B=]= -p={=====M=E>Y>m>}> >)>'>?H?@"@:2@mA -|A A A A"AA1A -B$B8BJBPBXBnBwBBBBWCpCC CCCCCCC DD*D=D OD ]D kDuDD DD!D DDE$E4ECE"UE -xE E E EE E EEEE F F )F 6FDFSF%iF#FF FF*F& -G(1G)ZG!GG G?GbH>gH=H?H -$I+/IA[IIII I -II-I,+JXJkJ}JJJ J!J JNKgK{KKKKK K -L+L;LOLkLLL7L LM#M7M'MMuMM MMMMM MN -#N.NKNhN{NNNNNN*OHOeO&O2O#O+P/P@PYPsPP PPP%P3QQQeQ xQQQQEQ!R&R /R9RQRMdR RRRS S+SJSYS hSvSSSS SSS ST T%T5TNTaTtTzTTTTTT0T'U;UKUdU%UUUUUVV4V7NV%VVV&V -WW.W0IWCzWWWWWX &X$3XXX`XqXXXXXXXX Y"Y=YNYhYI+Z uZZZZZ ZZZZZ#[<[Z[ n[{[[[[$[\!\ 6\D\X\v\\%\\\ ]]&]C]Z]$u]]]] ]]] ^$^<^Z^s^^^ -^^^$^$!_F_a_ }___ ____`0`N`i` ```,`` a -"a-a Bacaaa5a,aSbOnbbbbc cc1c @cacpcc ccccc c!d%dmHoHYp<pp -qqqqqqq qrr+r4rOr jrr rrr2r ss5sQslsssss%stt8tRt-httt!tt u(u0Cu(tuuuu/u!v;vWvwvvvvvvvww2w Fw0Pwwwwwwwwww -xxx x*x:x2Mxxx xyy*4y*_y y)y*yy# z&-z Tz$uz)z z z z zz{.{4{D{ T{ a{m{ v{{{{{{{{{' |5|)H|r|'|&|||| } -$}/}5}D}Y} b}p} }} }}} }}}S}1M~:~8~5~R)H|=L L߄Jda)!7K==:{;<*/JZg72@Ҍ5WIX@;5LLJZ 4ԙ %++W^)p(ÚʚҚ  "%HYo% -қ ݛ E Uc {ŝٝ&3G ]j   ՞$K;_J4Q BPVh{  Ţ ͢ -٢$* &4<['ۣ'"7ZrHǤ! 2 ?KTm¥%ԥ$0/AMq6^U*>V)\Mݩa+ rstHKݯI){sY{vձLҲ;ٲ  (5 NZi7k02:1C*uAa$gȵ_0Z+( 7D M Yf v 6  "/ GS\uϸ ' 5BETd ̹ҹٹ - 14GP_ z ݺ  -"&I` r ɻۻ);M^s ּ̼ / ; GS\nν$#4 X bou - ʾؾ - -=@ I V -`k {    ɿ ֿ -   0@S ht)  0 < I U_ w  - -.1`iz -     -: JX k y   (AH P] nz     &!5Wu /  )3Ja$K=5.dy):,<%iB /F -LWt  - !+ 1;D M -Wb    --8Wgksv V-<W] dp'%$$# D -MX_ckptz - -0@ +qf 7}owl ybX' 51~?}SMH" GK6 =^ -:dzW>2T: =@KzH3{9#]Hp($li =3wc&fXQkO*t'.f h3, _ddxaWQbmGU1 oe!V1AZ5R/uq fX4+_>p  11s) #70Ie x`cS; z 0+( $v|/KDEu>J[,Ne|ceAb B oDrQ}:r<D ! E2sOs2F ?<h8sU<4p1G}M(Trb`1 -ku@ yk5 db.: >BGg"@lq} ep  yLJ _w  $a7 R&)# #D1* i\!MV_R[%d #RU, /[ P^m1V*DG |7vdT:. v-; 8 Ze=k~!Pan}y .VDH5EQ] /_'0<B[(+ K7% cd 6 &XZixL&$ &( 5M:?4aj"B*(3 xg| )6 jh4;]CT P< { ju~e5A6|4 AKH3;vu.s nQg7+N%)Ut#%$J^9$@%Jz= OA0XC,o B=Cb n\z]/.E 3a@I?}:Equ2{8& .L(+Czs9Y*j'q4yPf'r8*%M+ -Qv3?FOb<xAo' ! -Hn-Oq8]wthw)L?gN>^\ae.0Xv2N:6m& [+j-A`[{Fw8.(CFHr\s6 '@2V ^=0fDG -l4o>S {3K OR`0:)TK 9R~.0Dm) 7, h;0 tPb;rHgWLjipX"WNf3^#|c`E\|>cvOt\IQ]{EL<i@UW,D $ n '8G" hCuRF^P-k] -L YI*tVc=fU[_lU/S7B<9 9~NuO-4C3i>a > L"]q*78Kq<i!Z &% `- C1 n@y@~N6U(Io!Mv~-W7y UI %wt = ,$FL/ lIFi-? J-E $!/d/2 _Fk&P9pFY{4 9m - P#m%Vw)N+TtIA   ;TGZZcopzL{2X_q >Pg:?'lO)xC]=,\SrJASjBkd\6y8{mZ"WQSbAZ5KD W|s  p[!' hzGI`Nt[C R Q2 ? 0}gmm|xEyrJHR ^;cn#J@"Y(~G}M MH xnjSw`6I_TM n&V+V6; *Yj5/hgFvJ Z`kB"9Yx#B5leSz9a J gW%-,2)5 X;^!4k< -M -luY"+Yfp TE i~oYr a* -\K,h?s$8B  +; +F + + +   +2  =  I U  ^ .j     +        !  9  F S d x  u  &  c z*r&?V_q&' B ] gq    *.Hez  +   /FV +[f{H +  +H!dB1!& +8?O +_j o {`C10) / <I +[ +fq ( +* +5H@ +  +   $ 1?D L Yem  BNc}    K3H6|" 1 @$Jo   (+)D*n!/*$O`'} +!3BKZs   .  E f       ! !0!B! I!V!m!~!!!!-!##!#4#8# R#\#b#r# ##3####$ $ +&$ 1$ =$J$h$$$$$$ $%% &%2%G%[%j%@r%%-%% %& & & &&3&Q& X&d& i& u&&&&&& & ' ' ' 7'E']' v'' +''' '' '( +(!(6(?(G(Z(_(g(p(x((( (((( +(#)))B)[)q)w)))+))) ) * +* * &*4*I*]*v** ** ****"+6+?+U+ u+++++$++++, ,, ', 5,A,T, Y, f,s, +, , +,, ,,, , ,,-#-:-P-n----- ----- +. ..,.@.S. f. p.z.. . . ..... / +/ /)/ D/ Q/]/ w/ / /,//!//0(0)E0 o0|0 0 00000 0 00B1AJ1111 1111 22 252=2E222222 +3 3 3.3E3 W3d3v33"3!3!3444M4 e4 o4 y4444 44V4+5 C5(M5v5"|55 5 555%5 +%6 06:6B6Q6e6 +u66 66 66 6 6666 7 7 &747&N7,u7 777 +7 +777848L8_84q888 +888 +8 889 99'9.9 K9W9 l9!x99 99 999: ::0: B:O:V:;^:?::::;;2;O;4;&</<-7< e=o=x= += =#==-= >>#> 8>B>J>a>j> +s> ~>>0?D?X? a?n?w???? +? +??? +? ? @@@0@ A@ K@!U@w@ {@@@ @ @@@@ @@A )A5A +HASAeA xAA AA +AAAABB B!(BJB!hB#BB B +B9BUC=lC<C=C%D"+D?NDDD DDDD(D,D!E1ECETE +eEpEEEJE EFF/F IF VFcF~F F FFFFF;GJGdG sG GGG G GG G G G HH /H9HTHqHHHHHHHH II4I+KIwIIII I I II I +JJ#-J QJ]J oJ{JJJ6JJKK"K 7K7DK|KKKKKKK L LL-L ALNL lLxLLL +L +L LLL LL +LMM M&M +=MHMhM MMMMM MNN*N:NNN4cNNNNNNO O.:OEiOO O OO O PP*P 0P >P JP +VPaP rP +~PPP PPPPPNQ +QQQQR RR,RHR^R#xRRR RRRSS#8S\SzS SSSSS$S"TAT VT`TpTTT!TTTU + UU-U =UJUiUUUUU UUVV.VMVdV }VVV VVVVVW%Wg[g pg |gg;gg ggg hh .hK_ +oz3;ӎ;KF ;E J Weks ܑ3#Im’ؒ ,5F> + +  Γ ܓ   !!4 V b+nK0Qi$5ʖPGQ-OǘjoejX~ÚpBow#<?؜>tWt̝`A,0 (668ooߠ4#%IG%ZXU٢O/ + ģ Уڣ #, 4BKQ`gp äͤ Ҥ   *=X w  ڥ  +   #1EL +S^ fs{ Ǧ  + & 6DS cq   ѧ   &2AJ[ u  +Ȩר->P `    Ωݩ  (58 A K +U +`k  Ī˪Ҫڪ  ( 0=DKSm| + ɫ ի  #/ 2<AGZu~ Ϭ ܬ  + - = K +Y d r     ƭЭ׭ +ݭ   ".7 >L\c l y    ȮԮ   %2G Zgmv(&84R1// 7DJ^#o ӱڱ" +%0BSZcy Dzܲ + + +  *0@FM +mx +̳ "15 +;FMR5V Ĵ ̴ڴ!  2S +s ~  ɵϵֵ ݵ.-4J)qL28NDuLk¹E.ptM<3FpVD/SA5żB8>7w  +Ľ Ͻٽ   + '*; +Q\e"nǾ3; 3 ?)I s +   ƿ +Կ +߿    ". 3AYS|4*1_#*2G[m| #7Oh*5EZz6Pk* +  #$6[ m yl-*)XXa{    >2Gq?  '<Zz * 2J[k =1: lx ~   ! +2 4@G O\ y    2 ") +/ :D L Y cmz}  + +(3RcxD/H@O4f",O8gH%#'"K!n   *F_$v!'# DK^#n# -5 =Jg AFBCB?6P.#&7,V*aB,,o,<?(Fo%   0Mew~:A R_ fr 2 +#.CS \ +h +s~%/, Ij- 9Tm % +1<D$T!y'&&>\l +3.-\+u$##%#4>X**,U,+IO'e00FWk ;)2ASrz +C\l 2(E[z11BTgw#=Yr  3  " / +<GVl  $1DL(UC~M1 B N[p & 2EVm <&4[l~ %2 BPXs /Nj { " "1Gap4 3BJ/  &&Dk  +0((9&O1v) +()RWnZ!' 0>U+m" B=I=&D"kLEM!LoMF +DQwIWXPzQ|QW |x "4;Z lx 6Ngx"!%.6Tr" 5BTfw! &8J[r(7 ' +1< +NYa hQt   +% C Q +_ jt    5 C a s   + r  +v w   t +        001aI  '<CRZ cm) +1(.Z  &  + +$/G&Z!O +L Waw +K$EBJ7Y     +  sB/8r8 (6 Hi|* %-U<    /ARe nz  + ## +9Lasg3?!au!   <P2`)AD@DB"9 +8CU3h+ + )?Qk  &=  d       '!!B!d!|!! !!!(!"("K"d"t""""'"! +#,#"D# g$s$$ $!$ $$$$%%6%R%e%%%%%%%#%#&9&P&h&&&&&& &&''0'[8''<'''(("(3('B( +j(u(((((&('()5) K) X)f)v) ) )) ) )))) * * (* 5*C*R*g*m*v** +* ** *** *++9+A++V+'+++ + + + ,(<,e, n,x,,,,,,,,-<-W-g-w----'--./(.X.`.g.n.v.*....//"/ )/7/F/_/g/|///////0#0>0P0d000000 1 $1 +.191 H1R1!d1111 111112 2 #2/2A2 P2 \2$i22222 2 2$23 *3#73[3 j3 w3B33)34%%4(K44t4444 444 +55-5?5O5He5F5 5606 ?6I6 O6]6 n6|66666>7N7h7o7 w7777!778848 T8#u8 8 888949 <9 I9V9j9y99 +9e9-:2:7:: r:,|: :::$:$;+:;f;o;w; ~;;; ;;;; ;;<<#<+<><Y< h<t<<+<#<<== ='=";="^=====9= >> +%>0>7>L>^> t>> >>>> >> >$> ??0? M?[?o?? +??????M?E@@@@@ @)@'A=AHA>BOB:_BC +C C C C"CC1D +FDQDeDwD}DDDDDDDEEE EEEEEF F 2F@FWFjF |F F FFF FF!F GG2GQGaGpG"G +G G G GG G GGH$H ;H HH VH cHqHH%H#HH HH* I&7I(^I)I!II I?Ib1J>J=J?K +QK+\KAKKKK L +L$L-*L,XLLLLLL L!M $MNEMMMMMMN N 7NXNhN|NNNN7N OzDz MzWzgz2zzxz &{0{H{*a{*{ {){*{|#6|&Z| |$|)| | | +} }"};}[}a}q} } }} }}}}}}~~*~':~b~)u~~'~&~ ): +Q\bq    !S&1z:85 RVH=y҂ ҃y J܈Ή+1F)N7x=j:;<*\Jҍgd2̎@5@WvXΐ@'h35Cyyіw!0Zۙ6!46ZR+ߜ)("KRZ is&"?bs%ƞ +  E) o} ʠߠ&8Ma w  ġء $K-;yJ4գQ + \jp  ߥ  +$*#&N<u'ڦ')"QtӧڧH!* L Yenʨܨ%$9J/[M6٩^o*٫>VC\MaE'rs"HKIC{ Yvf;/ 8 BO ht7JLT1]*A{$g_JZ+1B Q^ g s  6к 3 <I amvһ"8 A O\_n~ ؼ +  (5KNajy  ýԽ۽ $"@cz  Ҿ/CUgxҿ . I U amv)>#N r | +  +%-5GWZ c p +z       +    (4JZm ) 6 J V c oy   + +..Kz +   + ( 9 GT dr     !)2B[b jw    +  "0@!Oq / 6 CMd{$K= +5H~):,V%B'/8I` +fq   +0 ;E KU^ g +q|   3 +GRq V*GVqw ~'%$$#:^ +gry} + +0@ El c~s fa0!Lg aL [Q [cO&  +2 kOcpm}L{R=\l[ i7 n"ae.sGM}9J 2 g:"wz]d/* &6rYR~ $ Q&:tv?NVuM8qX: t!:22/ WgN`>h(4U;Z'M2WMN}8 U E o&aLU1x{7IwPu% K7^}y/ebr**]~\%,2+;YO#S,t l#O O.O?}C8" G>~zo 4uQoA F;JBI iyt E)PWq qB# nA^O-7  dZ ZD@YFR LbZ=KxpDI1"O5rv430Bzs $K ;qCK'! |` e{qN%\Vs1_'|8!!tW&qe90H=!@VNc/y5iy6 mTSCX)UMMsJflmwN : hd-X C ,y=^kI" +z$]9hfK{v\RNo e5<h3<+>A.  N <^`~'JY~8t?bab P$@ WI  >9D [@|l -+ @ p*PxuT]Y?d9g= >7j 1C.JHUr >FA' <rD{ ( +i<fTY$jnEWw{DHZ|%YA'Ct! [dB`< l5_<84a uB"|FL{ D|_mkF 40.= +7? GvXCB{-c&o%G+2y7tE-Lw.Urz$- ? aJqs}3z*0-pcxwBEekR  wE"c1sM H , -G#7S#Nt)vbqZC[0m dj)_Q"4j +'.YJkfQ*Q6|zEI B & Shrm1/dT$5/!";& +, goEx9K m<4 ji^~)*8+nkC?ZRTKO(vV9>FJxWjw.|5uZL108@u 35> 3j6,(6|UK3A)T=W5)x kMTDB @p;Q3.sb:  zVgvkdb]0-96~9 n}: ,r\IKuSL2Y,F^8 oz? ( ! i\>*;do63 /lPP?ui`HX  (I8(H%KG@0 Rn\1 =A'y yR5 Sg 6w]i7:4&_V ~3 7M ]W`jS = P [S P[6+f=0[rf+ lH%Hpeh@h{*^Ts]O\JaV}-m+UxGnS"? +%gogP(v`ADB#_ _/x:j; 4 + + 2`VaA%1  _DIIEFQe@c9X(pp#RTZi3/ ')b/G:hG  +)   fXf$SJ#F\ %4lH;) ^p <c#5 +,# C6 DmA '.+^F]nN*!E 1 XRQXG>2QP}Lv Ub&n_yq;Heh`<$(k,M$V Invalid option "%s" Usage: %s [option ... ] [file ... ] @@ -255,8 +250,8 @@ (Unnamed Buffer)(Unnamed Template)(Varies)(clean)(invalid UTF-8 string)(modified)(none)1 Layer1 layer15 degrees %s16:1 (1600%)1:1 (100%)1:16 (6.25%)1:2 (50%)1:4 (25%)1:8 (12.5%)2:1 (200%)2D Transform...4:1 (400%)8:1 (800%)<%s><>For optimal GIMP performance, some settings may have to be adjusted.The GIMP - GNU Image Manipulation Program Copyright (C) 1995-2004 Spencer Kimball, Peter Mattis and the GIMP Development Team.The GIMP tips file could not be parsed!Your GIMP tips file appears to be missing!A file named '%s' already exists.A_dd to SelectionA_ngleAbout The GIMPActionActivate the _focused imageActive FiltersAdaptive supersamplingAddAdd Alpha C_hannelAdd Alpha ChannelAdd AnchorAdd ChannelAdd Color to ColormapAdd Guide: Add GuidesAdd Horizontal GuideAdd La_yer Mask...Add LayerAdd Layer MaskAdd PathAdd StrokeAdd Text LayerAdd Vertical GuideAdd a Mask to the LayerAdd color from BGAdd color from FGAdd layer maskAdd text to the imageAdd the current color to the color historyAdd the selected filter to the list of active filters.Add to palette %sAdd to the current selectionAdding theme '%s' (%s) -AdditionAdditional Input ControllersAdjust Brightness and ContrastAdjust Color BalanceAdjust Color CurvesAdjust Color LevelsAdjust brightness and contrastAdjust color balanceAdjust color curvesAdjust color levelsAdjust hue / lightness / saturationAdjust hue and saturationAdjust levels automaticallyAdjustmentAdvanced optionsAffect:Affected Area %sAirbrushAirbrush with variable pressureAl_pha to SelectionAlignedAlignmentAll ChannelsAll FilesAll Files (*.*)All image and undo data which doesn't fit into the Tile Cache will be written to a swap file. This file should be located on a local filesystem with enough free space (several hundred MB). On a UNIX system, you may want to use the system-wide temp-dir ("/tmp" or "/var/tmp").Allow completely transparent regions to be filledAllow completely transparent regions to be selectedAllow enlarging %sAlphaAlpha to SelectionAlpha:An image of the choosen size will use more memory than what is configured as "Maximum Image Size" in the Preferences dialog (currently %s).An_imationAnchor Floating SelectionAnchor floating layerAnchor floating selectionAngle:Anti erase %sAntialiasingAppearanceApply Layer MaskApply Layer _MaskApply ThresholdApply layer maskAre you sure you want to delete '%s' from the list and from disk?Are you sure you want to delete template '%s' from the list and from disk?As in _PreferencesAsk for confirmation before closing an image without saving.Aspect Ratio:Aspect ratio:Attach ParasiteAttach Parasite to ImageAttach Parasite to ItemAttach parasiteAuthor:AutoAuto _Follow Active ImageAuto shrinkAuto shrink selectionAuto-resize windowAutoloadAutomatically DetectedAvailable FiltersAvailable Types:BG color fillB_rightness-Contrast...B_uffersBackgroundBackground colorBackground color set to:Background: %d, %d, %dBackward (corrective)Base filled area on all visible layersBase selection on all visible layersBehindBevelBi-linearBlack & whiteBlack:Ble_nd Endpoints' ColorsBlen_dBlendBlend Endpoints' Opacit_yBlend: Blend: Invalid for indexed images.Blending...BlueBlue:BlurBlur or SharpenBo_rder...Border ChannelBorder SelectionBorder selection byBrightness-ContrastBrightness-Contrast does not operate on indexed layers.BrushBrush EditorBrush FoldersBrush UIBrush:BrushesBrushes MenuBucket FillBuffersBuffers MenuBurnButtBy ExtensionBy reverting the image to the state saved on disk, you will lose all changes, including all undo information.CMYKC_alibrate...C_olor PickerC_olumns:C_ombineCalibrate Monitor ResolutionCan't undo %sCan_vas Size...CancelCancel GuideCannot add layer mask of different dimensions than specified layer.Cannot add layer mask to a layer with no alpha channel.Cannot add layer mask to layer which is not part of an image.Cannot anchor this layer because it is not a floating selection.Cannot convert to a palette with more than 256 colors.Cannot create a new layer from the floating selection because it belongs to a layer mask or channel.Cannot create folder '%s': %sCannot create previewCannot crop because the current selection is empty.Cannot expand ${%s}Cannot float selection because the selected region is empty.Cannot raise a layer without alpha.Cannot save. Nothing is selected.Cannot stroke empty channel.Cannot stroke empty path.Canvas SizeCanvas _padding mode:Center X:CenteredChange Background ColorChange Colormap entryChange Foreground ColorChange Image ResolutionChange Image UnitChange Print SizeChange current layer or pathChange grid background colorChange grid foreground colorChange indexed paletteChange perspective of the layer or selectionChanging shortcut failed.ChannelChannel AttributesChannel Name:Channel cannot be lowered more.Channel cannot be raised higher.Channel colorChannel is already on the bottom.Channel is already on top.Channel to Sele_ctionChannel to SelectionChannel to selectionChannel:ChannelsChannels MenuCheck _size:Choose Stroke StyleCircleCl_earClearClear ChannelClear Undo HistoryClear all textClear errorsClear undo history...Click "Continue" to accept the settings above.Click "Continue" to create your personal GIMP folder.Click "Continue" to enter the GIMP user installation.Click "Continue" to proceed with the user installation.Click to connect this anchor with the selected endpoint.Click to create a new anchor. (try SHIFT)Click to create a new component of the path.Click to create a new path.Click to create previewClick to delete this anchor.Click to insert an anchor on the path. (try SHIFT)Click to make this node angular.Click to open up the path.Click to pick path to edit.Click to update preview -%s Click to force update even if preview is up-to-dateClick-Drag to change the shape of the curve. (SHIFT: symmetrical)Click-Drag to move the anchor around.Click-Drag to move the anchors around.Click-Drag to move the component around. (try SHIFT)Click-Drag to move the handle around. (try SHIFT)Click-Drag to move the path around.Click: selectClick: select Drag: moveClip resultClipboardClipped to bottom layerClipped to imageCloneClose %sClose this TabCo_py PathColo_rsColorColor BalanceColor Display FiltersColor PickerColor Picker InformationColor _Balance...Color _dithering:Color balance operates only on RGB color layers.Color eraseColor index:Color:Color_mapColor_space:Colori_ze...Coloring _Type for SegmentColoring _Type for SelectionColorizeColorize operates only on RGB color layers.Colorize the ImageColorize the imageColormapColormap EditorColormap MenuColumns:Comme_nt:CommentCon_trast:Con_volveConfigure Color Display FiltersConfigure E_xtended Input Devices...Configure G_rid...Configure GridConfigure Image GridConfigure Keyboard ShortcutsConfigure _Keyboard Shortcuts...Configure selected filterConfigure selected filter: %sConfirm Image SizeConfirm ScalingConfirm Text EditingConfirm closing of unsa_ved imagesConflicting ShortcutsConical (asym)Conical (sym)Connect StrokesConstantConstraintsContextContext-dependent cursors are cool. They are enabled by default. However, they require overhead that you may want to do without.ContinueContributions byConvertConvert EdgeConvert Image to GrayscaleConvert Image to IndexedConvert Image to Indexed ColorsConvert Image to RGBConvert imageConverting to indexed (stage 2)...Converting to indexed (stage 3)...Converting to indexed...ConvolveConvolve Type %sCopy NamedCopying file '%s' from '%s'...Copyright:Corrupt segment %d in gradient file '%s'.Could not create '%s': %sCould not create temporary file for '%s': %sCould not delete '%s': %sCould not find GIMP help browser.Could not open '%s' for reading: %sCould not open '%s' for writing: %sCould not open thumbnail '%s': %sCould not read %d bytes from '%s': %sCould not seek in XCF file: %sCould not start the GIMP help browser plug-in.Count:Cr_op LayerCreate New Doc_kCreate New TemplateCreate a New ImageCreate a New LayerCreate a New TemplateCreate a new display for this imageCreate a new image from the selected templateCreate a new templateCreate and edit images or photographsCreate and edit pathsCreate path from textCreate selection from pathCreating Preview ...Creating folder '%s'...CropCrop & ResizeCrop & Resize InformationCrop ImageCrop LayerCrop imageCrop or Resize an imageCrop: Crosshair onlyCu_tCu_t Named...Cubic (Best)Current _StatusCurrent height:Current layer onlyCurrent statusCurrent width:CursorCursor _mode:Cursor re_ndering:Curve TypeCurvesCurves for indexed layers cannot be adjusted.CustomCustom colorCustom gradientCustom p_adding color:CutCut NamedCyanCyan:D_uplicate BrushD_uplicate ChannelD_uplicate GradientD_uplicate LayerD_uplicate PaletteD_uplicate PathD_uplicate PatternD_uplicate Template...Dark check colorDarken onlyDash dot dot...Dash dot...Dash pattern:Dash preset:DashedDate:DebugDefault Appearance in Fullscreen ModeDefault Appearance in Normal ModeDefault GridDefault Image GridDefault _interpolation:Default _layer & channel preview size:Default _threshold:Delete AnchorDelete AnchorsDelete Layer Mas_kDelete Layer MaskDelete ObjectDelete SegmentDelete TemplateDelete brushDelete channelDelete colorDelete gradientDelete layerDelete layer maskDelete paletteDelete pathDelete patternDelete saved options...Delete the selected bufferDelete the selected templateDelete this imageDelete vectorsDeleting "%s" failed: %sDense dotsDesaturateDesaturate operates only on RGB color layers.DescriptionDesignDevice StatusDevicesDialogsDialogs MenuDiamondDifferenceDirect ColorDisable Layer MaskDisable Quick MaskDiscard Text InformationDisplayDisplay NavigationDisplay _Filters...Display proceduresDisplay type:Displaying [%0.6f, %0.6f]DissolveDistance:Distance: %0.6fDitheringDivideDo a _fresh user installationDo you really want to reset all filters to default values?Do you really want to reset all tool options to default values?Do you want to replace it with the image you are saving?Do_n't saveDockableDocument Histor_yDocument HistoryDocumentsDocuments MenuDod_geBurnDodgeDodge or Burn strokesDodge/BurnDouble dashedDrag AnchorDrag AnchorsDrag CurveDrag HandleDrag PathDrag: moveDraw in inkDrawableDrawable modDrawable proceduresDrop New LayerDrop New PathDue to lack of any fonts, text functionality is not available.Dump events from this controllerDuplicate brushDuplicate channelDuplicate gradientDuplicate layerDuplicate paletteDuplicate pathDuplicate patternDuplicate the selected templateEEK: can't undoE_xport Path...E_xtra SmallEdge BehaviourEdge-De_tectEditEdit Channel AttributesEdit Channel ColorEdit Color Palette EntryEdit Colormap EntryEdit Layer AttributesEdit Layer MaskEdit ModeEdit Palette ColorEdit Path AttributesEdit Quick Mask AttributesEdit Quick Mask ColorEdit TemplateEdit brushEdit channel attributesEdit colorEdit colormap entry #%dEdit gradientEdit layer attributesEdit paletteEdit path attributesEdit patternEdit proceduresEdit the selected templateEllipse SelectEmpty ChannelEmpty LayerEmpty PathEmpty Text LayerEmpty variable name in environment file %sEn_hanceEnable Quick MaskEnable dithering of _transparencyEnable this controllerEnable to display a handy GIMP tip on startup.Enable to display tooltips.EnormousEnter a name for the merged paletteEnter a name for the saved optionsEnter a name for this bufferEnter a name for this templateEnter a new name for the saved optionsEnter location (URI):EnvironmentEnvironment FoldersEqualizeEqualize does not operate on indexed layers.Erase to background or transparencyEraserError Co_nsoleError ConsoleError Console MenuError saving XCF file: %sError while parsing '%s' in line %d: %sError while reading '%s': %sError while reading brush file '%s': %sError while writing '%s': %sError writing XCF: %sError writing file '%s': +AdditionAdditional Input ControllersAdjust Brightness and ContrastAdjust Color BalanceAdjust Color CurvesAdjust Color LevelsAdjust brightness and contrastAdjust color balanceAdjust color curvesAdjust color levelsAdjust hue / lightness / saturationAdjust hue and saturationAdjust levels automaticallyAdjustmentAdvanced optionsAffect:Affected Area %sAirbrushAirbrush with variable pressureAl_pha to SelectionAlignedAlignmentAll ChannelsAll FilesAll Files (*.*)All image and undo data which doesn't fit into the Tile Cache will be written to a swap file. This file should be located on a local filesystem with enough free space (several hundred MB). On a UNIX system, you may want to use the system-wide temp-dir ("/tmp" or "/var/tmp").Allow completely transparent regions to be filledAllow completely transparent regions to be selectedAllow enlarging %sAlphaAlpha to SelectionAlpha:An image of the choosen size will use more memory than what is configured as "Maximum Image Size" in the Preferences dialog (currently %s).An_imationAnchor Floating SelectionAnchor floating layerAnchor floating selectionAngle:Anti erase %sAntialiasingAppearanceApply Layer MaskApply Layer _MaskApply ThresholdApply layer maskAre you sure you want to delete '%s' from the list and from disk?Are you sure you want to delete template '%s' from the list and from disk?As in _PreferencesAsk for confirmation before closing an image without saving.Aspect Ratio:Aspect ratio:Attach ParasiteAttach Parasite to ImageAttach Parasite to ItemAttach parasiteAuthor:AutoAuto _Follow Active ImageAuto shrinkAuto shrink selectionAuto-resize windowAutoloadAutomatically DetectedAvailable FiltersAvailable Types:BG color fillB_rightness-Contrast...B_uffersBackgroundBackground colorBackground color set to:Background: %d, %d, %dBackward (corrective)Base filled area on all visible layersBase selection on all visible layersBehindBevelBi-linearBlack & whiteBlack:Ble_nd Endpoints' ColorsBlen_dBlendBlend Endpoints' Opacit_yBlend: Blend: Invalid for indexed images.Blending...BlueBlue:BlurBlur or SharpenBo_rder...Border ChannelBorder SelectionBorder selection byBrightness-ContrastBrightness-Contrast does not operate on indexed layers.BrushBrush EditorBrush FoldersBrush UIBrush:BrushesBrushes MenuBucket FillBuffersBuffers MenuBurnButtBy ExtensionBy reverting the image to the state saved on disk, you will lose all changes, including all undo information.CMYKC_alibrate...C_olor PickerC_olumns:C_ombineCalibrate Monitor ResolutionCan't undo %sCan_vas Size...CancelCancel GuideCannot add layer mask of different dimensions than specified layer.Cannot add layer mask to a layer with no alpha channel.Cannot add layer mask to layer which is not part of an image.Cannot anchor this layer because it is not a floating selection.Cannot convert to a palette with more than 256 colors.Cannot create a new layer from the floating selection because it belongs to a layer mask or channel.Cannot create folder '%s': %sCannot create previewCannot crop because the current selection is empty.Cannot expand ${%s}Cannot float selection because the selected region is empty.Cannot raise a layer without alpha.Cannot save. Nothing is selected.Cannot stroke empty channel.Cannot stroke empty path.Canvas SizeCanvas _padding mode:Center X:Center Y:CenteredChange Background ColorChange Colormap entryChange Foreground ColorChange Image ResolutionChange Image UnitChange Print SizeChange current layer or pathChange grid background colorChange grid foreground colorChange indexed paletteChange perspective of the layer or selectionChanging shortcut failed.ChannelChannel AttributesChannel Name:Channel cannot be lowered more.Channel cannot be raised higher.Channel colorChannel is already on the bottom.Channel is already on top.Channel to Sele_ctionChannel to SelectionChannel to selectionChannel:ChannelsChannels MenuCheck _size:Choose Stroke StyleCircleCl_earClearClear ChannelClear Undo HistoryClear all textClear errorsClear undo history...Click "Continue" to accept the settings above.Click "Continue" to create your personal GIMP folder.Click "Continue" to enter the GIMP user installation.Click "Continue" to proceed with the user installation.Click to connect this anchor with the selected endpoint.Click to create a new anchor. (try SHIFT)Click to create a new component of the path.Click to create a new path.Click to create previewClick to delete this anchor.Click to insert an anchor on the path. (try SHIFT)Click to make this node angular.Click to open up the path.Click to pick path to edit.Click to update preview +%s Click to force update even if preview is up-to-dateClick-Drag to change the shape of the curve. (SHIFT: symmetrical)Click-Drag to move the anchor around.Click-Drag to move the anchors around.Click-Drag to move the component around. (try SHIFT)Click-Drag to move the handle around. (try SHIFT)Click-Drag to move the path around.Click: selectClick: select Drag: moveClip resultClipboardClipped to bottom layerClipped to imageCloneClose %sClose all TabsClose all tabs?Close this TabCo_py PathColo_rsColorColor BalanceColor Display FiltersColor PickerColor Picker InformationColor _Balance...Color _dithering:Color balance operates only on RGB color layers.Color eraseColor index:Color:Color_mapColor_space:Colori_ze...Coloring _Type for SegmentColoring _Type for SelectionColorizeColorize operates only on RGB color layers.Colorize the ImageColorize the imageColormapColormap EditorColormap MenuColumns:Comme_nt:CommentCon_trast:Con_volveConfigure Color Display FiltersConfigure E_xtended Input Devices...Configure G_rid...Configure GridConfigure Image GridConfigure Keyboard ShortcutsConfigure _Keyboard Shortcuts...Configure selected filterConfigure selected filter: %sConfirm Image SizeConfirm ScalingConfirm Text EditingConfirm closing of unsa_ved imagesConflicting ShortcutsConical (asym)Conical (sym)Connect StrokesConstantConstraintsContextContext-dependent cursors are cool. They are enabled by default. However, they require overhead that you may want to do without.ContinueContributions byConvertConvert EdgeConvert Image to GrayscaleConvert Image to IndexedConvert Image to Indexed ColorsConvert Image to RGBConvert imageConverting to indexed (stage 2)...Converting to indexed (stage 3)...Converting to indexed...ConvolveConvolve Type %sCopy NamedCopy _VisibleCopying file '%s' from '%s'...Copyright:Corrupt segment %d in gradient file '%s'.Could not create '%s': %sCould not create temporary file for '%s': %sCould not delete '%s': %sCould not find GIMP help browser.Could not open '%s' for reading: %sCould not open '%s' for writing: %sCould not open thumbnail '%s': %sCould not read %d bytes from '%s': %sCould not seek in XCF file: %sCould not start the GIMP help browser plug-in.Count:Cr_op LayerCreate New Doc_kCreate New TemplateCreate a New ImageCreate a New LayerCreate a New TemplateCreate a new display for this imageCreate a new image from the selected templateCreate a new templateCreate and edit images or photographsCreate and edit pathsCreate path from textCreate selection from pathCreating Preview ...Creating folder '%s'...CropCrop & ResizeCrop & Resize InformationCrop ImageCrop LayerCrop imageCrop or Resize an imageCrop: Crosshair onlyCu_tCu_t Named...Cubic (Best)Current _StatusCurrent height:Current layer onlyCurrent statusCurrent width:CursorCursor _mode:Cursor re_ndering:Curve TypeCurvesCurves for indexed layers cannot be adjusted.CustomCustom colorCustom gradientCustom p_adding color:CutCut NamedCyanCyan:D_uplicate BrushD_uplicate ChannelD_uplicate GradientD_uplicate LayerD_uplicate PaletteD_uplicate PathD_uplicate PatternD_uplicate Template...Dark check colorDarken onlyDash dot dot...Dash dot...Dash pattern:Dash preset:DashedDate:DebugDefault Appearance in Fullscreen ModeDefault Appearance in Normal ModeDefault GridDefault Image GridDefault _interpolation:Default _layer & channel preview size:Default _threshold:Delete AnchorDelete AnchorsDelete Layer Mas_kDelete Layer MaskDelete ObjectDelete SegmentDelete TemplateDelete brushDelete channelDelete colorDelete gradientDelete layerDelete layer maskDelete paletteDelete pathDelete patternDelete saved options...Delete the selected bufferDelete the selected templateDelete this imageDelete vectorsDeleting "%s" failed: %sDense dotsDesaturateDesaturate operates only on RGB color layers.DescriptionDesignDevice StatusDevicesDialogsDialogs MenuDiamondDifferenceDirect ColorDisable Layer MaskDisable Quick MaskDiscard Text InformationDisplayDisplay NavigationDisplay _Filters...Display proceduresDisplay type:Displaying [%0.6f, %0.6f]DissolveDistance:Distance: %0.6fDitheringDivideDo a _fresh user installationDo you really want to reset all filters to default values?Do you really want to reset all tool options to default values?Do you want to replace it with the image you are saving?Do_n't saveDockableDocument Histor_yDocument HistoryDocumentsDocuments MenuDod_geBurnDodgeDodge or Burn strokesDodge/BurnDouble dashedDrag AnchorDrag AnchorsDrag CurveDrag HandleDrag PathDrag: moveDraw in inkDrawableDrawable modDrawable proceduresDrop New LayerDrop New PathDue to lack of any fonts, text functionality is not available.Dump events from this controllerDuplicate brushDuplicate channelDuplicate gradientDuplicate layerDuplicate paletteDuplicate pathDuplicate patternDuplicate the selected templateEEK: can't undoE_xport Path...E_xtra SmallEdge BehaviourEdge-De_tectEditEdit Channel AttributesEdit Channel ColorEdit Color Palette EntryEdit Colormap EntryEdit Layer AttributesEdit Layer MaskEdit ModeEdit Palette ColorEdit Path AttributesEdit Quick Mask AttributesEdit Quick Mask ColorEdit TemplateEdit brushEdit channel attributesEdit colorEdit colormap entry #%dEdit gradientEdit layer attributesEdit paletteEdit path attributesEdit patternEdit proceduresEdit the selected templateEllipse SelectEmpty ChannelEmpty LayerEmpty PathEmpty Text LayerEmpty variable name in environment file %sEn_hanceEnable Quick MaskEnable dithering of _transparencyEnable this controllerEnable to display a handy GIMP tip on startup.Enable to display tooltips.EnormousEnter a name for the merged paletteEnter a name for the saved optionsEnter a name for this bufferEnter a name for this templateEnter a new name for the saved optionsEnter location (URI):EnvironmentEnvironment FoldersEqualizeEqualize does not operate on indexed layers.Erase to background or transparencyEraserError Co_nsoleError ConsoleError Console MenuError saving XCF file: %sError while parsing '%s' in line %d: %sError while reading '%s': %sError while reading brush file '%s': %sError while writing '%s': %sError writing XCF: %sError writing file '%s': %sError writing to '%s': %sError writing to temporary file for '%s': %s No file has been created.Error writing to temporary file for '%s': %s The original file has not been touched.ErrorsEventEx_tra LargeExpanded as necessaryExport Path to SVGExport all paths from this imageExport the active pathExposure:Extended Input DevicesExtensionsFG color fillFG to BG (HSV clockwise hue)FG to BG (HSV counter-clockwise)FG to BG (HSV)FG to BG (RGB)FG to TransparentFG to transparentFG/BGFG/BG ColorF_it Canvas to LayersFade outFailed to import gradients from '%s': %sFailed to import paths from '%s': %sFatal parse error in brush file '%s': File appears truncated.Fatal parse error in brush file '%s': File is corrupt.Fatal parse error in brush file '%s': Not a GIMP brush file.Fatal parse error in brush file '%s': Unknown GIMP brush shape.Fatal parse error in brush file '%s': Unknown GIMP brush version.Fatal parse error in brush file '%s': Unknown depth %d.Fatal parse error in brush file '%s': Unknown version %d.Fatal parse error in brush file '%s': Unsupported brush depth %d @@ -266,8 +261,8 @@ (%s)Floating Selection to LayerFloating selection to layerFloating selectionsFloyd-Steinberg (normal)Floyd-Steinberg (reduced color bleeding)FocusFolderFoldersFont FoldersFont UIFont:FontsFonts MenuFor a proper GIMP installation, a folder named '%s' needs to be created.Force auto-hinterForegroundForeground & background colors. The black and white squares reset colors. The arrows swap colors. Double click to open the color selection dialog.Foreground colorForeground color set to:Foreground: %d, %d, %dForward (traditional)Fr_om PathFree SelectFree selectFreehandFrom _ThemeFrom _windowing system (currently %d x %d dpi)From left to rightFrom right to leftFrom selectionFrom themeFu_zzy SelectFullscr_eenFuzzy SelectGIMPGIMP ExtensionGIMP MessageGIMP Performance TuningGIMP Plug-InGIMP StartupGIMP Text EditorGIMP Tip of the DayGIMP User InstallationGIMP XCF imageGIMP could not initialize the graphical user interface. Make sure a proper setup for your display environment exists.GIMP help browserGIMP is not properly installed for the current user. User installation was skipped because the '--no-interface' flag was used. -To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Generate optimum paletteGet Monitor ResolutionGiganticGimprc proceduresGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient:GradientsGradients MenuGrain extractGrain mergeGrayGrayscaleGreenGreen:GridGrid line spacingGrow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_counter-clockwise hue)HSV (clockwise _hue)HTML notation:H_eight:H_elp browser to use:Handle position: %0.6fHard edgeHard lightHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHelp proceduresHex:HighlightsHint for the _docks:Hint for the _toolbox:HintingHinting alters the font outline to produce a crisp bitmap at small sizesHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB color layers.Hue-_Saturation...Hue:HugeI_con & TextI_mageI_mport Path...I_nterpolation:I_nterval:IconIcon & descIcon & textIf available, hints from the font are used but you may prefer to always use the automatic hinterIf enabled, the move tool changes the active layer or path when a layer or path is being picked. This used to be the default behaviour in older versions.If you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.Illegal variable name in environment file %s: %sImageImage + GridImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage ThumbnailsImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage maskImage resolution is out of bounds, using the default resolution instead.Image sizeImage sourceImage typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport paletteImport pathsImported PathIn_kIn_vertIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorIndexed Color ConversionIndexed color layers are always scaled without interpolation. The chosen interpolation type will affect channels and masks only.Info WindowInitial zoom _ratio:Initialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' -InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratioKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard EventsKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine +To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Generate optimum paletteGet Monitor ResolutionGiganticGimprc proceduresGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient file '%s' is corrupt: Segments do not span the range 0-1.Gradient:GradientsGradients MenuGrain extractGrain mergeGrayGrayscaleGreenGreen:GridGrid line spacingGrow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_counter-clockwise hue)HSV (clockwise _hue)HTML notation:H_eight:H_elp browser to use:Handle position: %0.6fHard edgeHard lightHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHelp proceduresHex:HighlightsHint for the _docks:Hint for the _toolbox:HintingHinting alters the font outline to produce a crisp bitmap at small sizesHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB color layers.Hue-_Saturation...Hue:HugeI_con & TextI_mageI_mport Path...I_nterpolation:I_nterval:IconIcon & descIcon & textIf available, hints from the font are used but you may prefer to always use the automatic hinterIf enabled, the move tool changes the active layer or path when a layer or path is being picked. This used to be the default behaviour in older versions.If you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.Illegal variable name in environment file %s: %sImageImage + GridImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage ThumbnailsImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage maskImage resolution is out of bounds, using the default resolution instead.Image sizeImage sourceImage typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport paletteImport pathsImported PathIn_kIn_vertIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorIndexed Color ConversionIndexed color layers are always scaled without interpolation. The chosen interpolation type will affect channels and masks only.Info WindowInitial zoom _ratio:Initialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' +InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard EventsKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine spacing:Line Width:Line _Style:Line style used for the grid.LinearLinked itemLoadLoad CurvesLoad LevelsLoad Right Color Fr_omLoad curves settings from fileLoad levels settings from fileLoad text from fileLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower Path to _BottomLower channelLower channel to bottomLower layerLower layer to bottomLower pathLower path to bottomM_agnifyM_asterM_ove to Screen...Ma_pMagentaMagenta:MagnifyMake _transparentManage Loadable ModulesMarching _ants speed:Mask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:Max Depth:Maximum _filesize for thumbnailing:Maximum _new image size:Maximum color differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMeasure the rulers and enter their lengths:Median:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMerge vectorsMessage proceduresMessage repeated %d times.Message repeated once.Messages are redirected to stderr.MidtonesMigrate User SettingsMinimal number of _undo levels:MiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMouse WheelMouse Wheel EventsMoveMove AnchorsMove ChannelMove Floating SelectionMove GuideMove Guide: Move LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove ToolMove itemMove layers & selectionsMove selectionMove the current layerMove the current pathMove the selected filter downMove the selected filter upMove to Screen...Move: MultiplyN_umber of colors:Na_vigationNa_vigation WindowNa_vigation preview size:NameName:NavigationNew ChannelNew Channel ColorNew Channel OptionsNew Color from _BGNew Color from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channelNew channel with last valuesNew channel...New color from BGNew color from FGNew gradientNew importNew layerNew layer with last valuesNew layer...New paletteNew path with last valuesNew path...New patternNew vectorsNo brushes available for use with this tool.No filter selectedNo linear gradients found in '%s'No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of _processors to use:Number of grid linesNumber of layers:O_ther...OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset by x/_2, y/2Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the palette selection dialogOpen the pattern selection dialogOpen the selected entryOpening '%s' failed: %sOpening '%s' failed: %sOptions: @@ -308,7 +303,7 @@ You can edit the layer or create a new text layer from its text attributes.The name of the directory holding the GIMP user configuration cannot be converted to UTF-8: %s -Most probably your filesystem stores files in an encoding different from UTF-8 and you didn't tell GLib about this. Please set the environment variable G_FILENAME_ENCODING.The sessionrc is used to store what dialog windows were open the last time you quit The GIMP. You can configure The GIMP to reopen these dialogs at the saved position.The thumbnail in the Open dialog will be automatically updated if the file being previewed is smaller than the size set here.The tile cache is used to make sure the GIMP doesn't thrash tiles between memory and disk. Setting this value higher will cause the GIMP to use less swap space, but will also cause the GIMP to use more memory. Conversely, a smaller cache size causes the GIMP to use more swap space and less memory.The unit used for coordinate display when not in dot-for-dot mode.The unitrc is used to store your user units database. You can define additional units and use them just like you use the built-in units inches, millimeters, points and picas. This file is overwritten each time you quit the GIMP.The vertical image resolution.The window type hint that is set on dock windows. This may affect the way your window manager decorates and handles dock windows.The window type hint that is set on the toolbox. This may affect how your window manager decorates and handles the toolbox window.ThemeTheme FoldersThemesThere are %d images with unsaved changes:There are not enough visible layers for a merge down.There is always a tradeoff between memory usage and speed. In most cases, the GIMP opts for speed over memory. However, if memory is a big issue, try to enable this setting.There is no active layer or channel to copy from.There is no active layer or channel to cut from.There is no active layer or channel to stroke toThere is no active layer or channel to stroke to.There is one image with unsaved changes:There should be a file called '%s'. Please check your installation.There was an error parsing your '%s' file. Default values will be used. A backup of your configuration has been created at '%s'.This file holds a collection of standard media sizes that serve as image templates.This folder is searched for image templates.This folder is searched for user-installed themes.This folder is used to store fonts you only want visible in the GIMP. The GIMP checks this folder in addition to the system-wide GIMP fonts installation when searching for fonts. Use this only if you really want to have GIMP-only fonts, otherwise put things in your global font directory.This folder is used to store parameter files for the Curves tool.This folder is used to store parameter files for the Levels tool.This folder is used to store tool options.This folder is used to store user created and installed scripts. The GIMP checks this folder in addition to the systemwide GIMP scripts folder when searching for scripts.This folder is used to store user created, temporary, or otherwise non-system-supported DLL modules. The GIMP checks this folder in addition to the system-wide GIMP module folder when searching for modules to load during initialization.This folder is used to store user created, temporary, or otherwise non-system-supported additions to the plug-in environment. The GIMP checks this folder in addition to the system-wide GIMP environment folder when searching for plug-in environment modification files.This folder is used to store user created, temporary, or otherwise non-system-supported plug-ins. The GIMP checks this folder in addition to the system-wide GIMP plug-in folder when searching for plug-ins.This folder is used to store user defined brushes. The GIMP checks this folder in addition to the system-wide GIMP brushes installation when searching for brushes.This folder is used to store user defined gradients. The GIMP checks this folder in addition to the system-wide GIMP gradients installation when searching for gradients.This folder is used to store user defined palettes. The GIMP checks this folder in addition to the system-wide GIMP palettes installation when searching for palettes.This folder is used to store user defined patterns. The GIMP checks this folder in addition to the system-wide GIMP patterns installation when searching for patterns.This folder is used to temporarily store undo buffers to reduce memory usage. If The GIMP is unceremoniously killed, files of the form: gimp<#>.<#> may persist in this folder. These files are useless across GIMP sessions and can be destroyed with impunity.This folder will contain a number of important files. Click on one of the files or folders in the tree to get more information about the selected item.This is the distance in pixels where Guide and Grid snapping activates.This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.This text input field is limited to %d characters.This tool has no options.ThresholdThreshold does not operate on indexed layers.Threshold:Thumbnail %d of %dTile cache _size:Tile cache size:Tilt:TinyTitle & StatusTo _PathTo_ysToggle Quick MaskToggle _Quick MaskToo many error messages!Tool OptionsTool Options MenuTool Toggle %sTool _OptionsTool iconTool icon with crosshairTool_boxToolboxToolbox MenuToolsTools MenuTools such as fuzzy-select and bucket fill find regions based on a seed-fill algorithm. The seed fill starts at the initially selected pixel and progresses in all directions until the difference of pixel intensity from the original is greater than a specified threshold. This value represents the default threshold.Tr_ansparencyTransfer Alpha to MaskTransformTransform ChannelTransform DirectionTransform LayerTransform PathTransform Text LayerTransform Tool proceduresTransform layerTransform pathTransform selectionTransformationTransformation proceduresTransforming...Translation byTransparencyTransparency _type:Triangular waveTrue ColorTypeType %sType a new acceleratorType a new accelerator, or press Backspace to clearUnable to add a layer mask since the layer already has one.Unable to cut or copy because the selected region is empty.Unable to open a test swap file. To avoid data loss please check the location and permissions of the swap directory defined in your Preferences (currently "%s").Unable to open swap file. The Gimp has run out of memory and cannot use the swap file. Some parts of your images may be corrupted. Try to save your work using different filenames, restart the Gimp and check the location of the swap directory in your Preferences.Unable to run %s callback. The corresponding plug-in may have crashed.UndefinedUndoUndo HistoryUndo _HistoryUnitsUnknownUnknown file typeUnknown type of palette file: +Most probably your filesystem stores files in an encoding different from UTF-8 and you didn't tell GLib about this. Please set the environment variable G_FILENAME_ENCODING.The sessionrc is used to store what dialog windows were open the last time you quit The GIMP. You can configure The GIMP to reopen these dialogs at the saved position.The thumbnail in the Open dialog will be automatically updated if the file being previewed is smaller than the size set here.The tile cache is used to make sure the GIMP doesn't thrash tiles between memory and disk. Setting this value higher will cause the GIMP to use less swap space, but will also cause the GIMP to use more memory. Conversely, a smaller cache size causes the GIMP to use more swap space and less memory.The unit used for coordinate display when not in dot-for-dot mode.The unitrc is used to store your user units database. You can define additional units and use them just like you use the built-in units inches, millimeters, points and picas. This file is overwritten each time you quit the GIMP.The vertical image resolution.The window type hint that is set on dock windows. This may affect the way your window manager decorates and handles dock windows.The window type hint that is set on the toolbox. This may affect how your window manager decorates and handles the toolbox window.ThemeTheme FoldersThemesThere are %d images with unsaved changes:There are not enough visible layers for a merge down.There is always a tradeoff between memory usage and speed. In most cases, the GIMP opts for speed over memory. However, if memory is a big issue, try to enable this setting.There is no active layer or channel to copy from.There is no active layer or channel to cut from.There is no active layer or channel to stroke toThere is no active layer or channel to stroke to.There is one image with unsaved changes:There should be a file called '%s'. Please check your installation.There was an error parsing your '%s' file. Default values will be used. A backup of your configuration has been created at '%s'.This file holds a collection of standard media sizes that serve as image templates.This folder is searched for image templates.This folder is searched for user-installed themes.This folder is used to store fonts you only want visible in the GIMP. The GIMP checks this folder in addition to the system-wide GIMP fonts installation when searching for fonts. Use this only if you really want to have GIMP-only fonts, otherwise put things in your global font directory.This folder is used to store parameter files for the Curves tool.This folder is used to store parameter files for the Levels tool.This folder is used to store tool options.This folder is used to store user created and installed scripts. The GIMP checks this folder in addition to the systemwide GIMP scripts folder when searching for scripts.This folder is used to store user created, temporary, or otherwise non-system-supported DLL modules. The GIMP checks this folder in addition to the system-wide GIMP module folder when searching for modules to load during initialization.This folder is used to store user created, temporary, or otherwise non-system-supported additions to the plug-in environment. The GIMP checks this folder in addition to the system-wide GIMP environment folder when searching for plug-in environment modification files.This folder is used to store user created, temporary, or otherwise non-system-supported plug-ins. The GIMP checks this folder in addition to the system-wide GIMP plug-in folder when searching for plug-ins.This folder is used to store user defined brushes. The GIMP checks this folder in addition to the system-wide GIMP brushes installation when searching for brushes.This folder is used to store user defined gradients. The GIMP checks this folder in addition to the system-wide GIMP gradients installation when searching for gradients.This folder is used to store user defined palettes. The GIMP checks this folder in addition to the system-wide GIMP palettes installation when searching for palettes.This folder is used to store user defined patterns. The GIMP checks this folder in addition to the system-wide GIMP patterns installation when searching for patterns.This folder is used to temporarily store undo buffers to reduce memory usage. If The GIMP is unceremoniously killed, files of the form: gimp<#>.<#> may persist in this folder. These files are useless across GIMP sessions and can be destroyed with impunity.This folder will contain a number of important files. Click on one of the files or folders in the tree to get more information about the selected item.This is the distance in pixels where Guide and Grid snapping activates.This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.This text input field is limited to %d characters.This tool has no options.This window has %d tabs open. Closing the window will also close all its tabs.ThresholdThreshold does not operate on indexed layers.Threshold:Thumbnail %d of %dTile cache _size:Tile cache size:Tilt:TinyTitle & StatusTo _PathTo edit a shortcut key, click on the corresponding row and type a new accelerator, or press backspace to clear.To_ysToggle Quick MaskToggle _Quick MaskToo many error messages!Tool OptionsTool Options MenuTool Toggle %sTool _OptionsTool iconTool icon with crosshairTool_boxToolboxToolbox MenuToolsTools MenuTools such as fuzzy-select and bucket fill find regions based on a seed-fill algorithm. The seed fill starts at the initially selected pixel and progresses in all directions until the difference of pixel intensity from the original is greater than a specified threshold. This value represents the default threshold.Tr_ansparencyTransfer Alpha to MaskTransformTransform ChannelTransform DirectionTransform LayerTransform PathTransform Text LayerTransform Tool proceduresTransform layerTransform pathTransform selectionTransformationTransformation proceduresTransforming...Translation byTransparencyTransparency _type:Triangular waveTrue ColorTypeType %sType a new acceleratorType a new accelerator, or press Backspace to clearUnable to add a layer mask since the layer already has one.Unable to cut or copy because the selected region is empty.Unable to open a test swap file. To avoid data loss please check the location and permissions of the swap directory defined in your Preferences (currently "%s").Unable to open swap file. The Gimp has run out of memory and cannot use the swap file. Some parts of your images may be corrupted. Try to save your work using different filenames, restart the Gimp and check the location of the swap directory in your Preferences.Unable to run %s callback. The corresponding plug-in may have crashed.UndefinedUndoUndo HistoryUndo _HistoryUnitsUnknownUnknown file typeUnknown type of palette file: %sUnloadUnnamedUntitledUse "_Dot for dot" by defaultUse _dynamic keyboard shortcutsUse _web browser insteadUse all visible layers when shrinking the selectionUse black and white (1-bit) paletteUse color from gradientUse custom paletteUse info windowUse web-optimized paletteUser Installation LogUser InterfaceUtility windowValueValue:Vectors modVersion %s brought to you byVersion:VerticalVertical offset of the first grid line; this may be a negative number.Vertical spacing of grid lines.Very largeVery smallViewView as _GridView as _ListView as gridView as listVisual class:Visual depth:Warning: Failed to load data: %sWarning: Failed to save data: @@ -319,8 +314,8 @@ did not save indexed colormaps correctly. Substituting grayscale map.YYellowYellow:You are trying to create an image with a size of %s.You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your GIMP installation is incomplete:Your input device settings will be reset to default values the next time you start GIMP.Your keyboard shortcuts will be reset to default values the next time you start GIMP.Your window setup will be reset to default values the next time you start GIMP.Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_All_Anchor Layer_Antialiasing_Arbitrary Rotation..._Artistic_Aspect_Auto_B_BG Color_Background color:_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Bucket Fill_Buffer_By Color_By Color Select_C_Cap style:_Channels_Clear Errors_Clear Undo History_Clone_Close_Close Tab_Clouds_Color Tools_Colors_Configure Color and Opacity..._Context_Context Help_Copy_Copy Named..._Create Image from Template..._Crop & Resize_Crop Image_Curved_Curves..._Dark Check Color_Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Desaturate_Detach Tab_Device Status_Dialogs_Discard Changes_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Ellipse Select_Enable layer & channel previews_Enormous_Equalize_Eraser_FG Color_File_Fill with:_Fit Image in Window_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground color:_Free Select_G_Generic_Gigantic_Gradient_Gradients_Grayscale_Grayscale copy of layer_Grow..._Guides_Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Info Window_Intersect with Selection_Invert_Join style:_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Left Neighbor's Right Endpoint_Levels..._Light Check Color_Light Effects_Lightness:_Line Style_Linear_Linked_Load Left Color From_Lower Channel_Lower Layer_Lower Path_M_Manually_Map_Mask_Mask to Selection_Maximum number of colors:_Measure_Medium_Merge Palettes..._Merge imported paths_Migrate GIMP 2.0 user settings_Misc. Stuff_Miter limit:_Mode_Module Manager_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._Padding Color_Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preferences_Preview_Preview Size_Previous tip_Print Size..._Properties_Quick Mask Active_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Reassign shortcut_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Remove unused colors from final palette_Render_Replace_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Order & Visibility_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Right Endpoint_Right Neighbor's Left Endpoint_Rotate_Saturation:_Save_Save Left Color To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Scale imported paths to fit image_Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Show Image Selection_Show in Toolbox_Sinusoidal_Small_Smudge_Snap distance:_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tool_Tools_Transfer layer's alpha channel_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Visible_Web_Web browser to use:_White (full opacity)_White Balance_Width:_Wrap around_X resolution:_X:_Xtns_Y_Y resolution:_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for icon typeinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetermillimetersminuten/apercentpicapicaspixelpixelspixels/%apixels/%spointpointssecondtips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: gimp VERSION Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-19 03:11+0100 -PO-Revision-Date: 2004-12-07 18:03+0100 +POT-Creation-Date: 2004-12-28 16:58+0100 +PO-Revision-Date: 2004-12-26 23:47+0100 Last-Translator: Miloslav Trmac Language-Team: Czech MIME-Version: 1.0 @@ -359,8 +354,8 @@ (Nepojmenovaný buffer)(Nepojmenovaná šablona)(Mění se)(čistý)(neplatný řetězec v kódování UTF-8)(změněno)(žádný)1 vrstva1 vrstva15 stupňů %s16:1 (1600%)1:1 (100%)1:16 (6,25%)1:2 (50%)1:4 (25%)1:8 (12,5%)2:1 (200%)2D transformace...4:1 (400%)8:1 (800%)<%s><><Žádné moduly>K optimálnímu výkonu GIMPu možná bude potřeba upravit některá nastavení.GIMP - GNU program pro práci s obrázky Copyright © 1995-2004 Spencer Kimball, Peter Mattis a vývojový tým GIMP.Soubor s tipy GIMPu nebylo možné zpracovat!Váš soubor s tipy GIMPu zřejmě chybí!Soubor nazvaný '%s' již existuje._Přidat do výběru_Úhel:O GIMPuAkceAktivovat obrázek podle _oknaAktivní filtryAdaptivní převzorkováníPřidatPřidat alfa _kanálPřidat alfa kanálPřidat ukotveníPřidat kanálPřidat barvu do mapy barevPřidat vodítko: Přidat vodítkaPřidat vodorovné vodítkoPřidat ma_sku vrstvy...Přidat vrstvuPřidat masku vrstvyPřidat cestuPřidat vykresleníPřidat textovou vrstvuPřidat svislé vodítkoPřidat masku k vrstvěPřidat barvu z pozadíPřidat barvu z popředíPřidat masku vrstvyPřidání textu do obrázkuPřidá aktuální barvy do historie barevPřidat vybraný filtr do seznamu aktivních filtrů.Přidat do palety %sPřidat k aktuálnímu výběruPřidávám téma '%s' (%s) -SoučetDalší vstupní ovladačeÚprava jasu a kontrastuÚprava vyvážení barevÚprava barevných křivekÚprava úrovní barevUpravit jas a kontrastUpravit vyvážení barevÚprava barevných křivekÚprava úrovní barevNastavení odstínu / světlosti / sytostiÚprava odstínu a sytostiAutomaticky upravit úrovněNastaveníPokročilé volbyOvlivnit:Ovlivněná oblast %sVzdušný štětecVzdušný štětec s různým tlakem_Alfa do výběruSledujícíSledováníVšechny kanályVšechny filtryVšechny soubory (*.*)Všechna data obrázků a zpětných úprav, která se nevejdou do vyrovnávací paměti dlaždic, budou zapisována do odkládacího souboru. Tento soubor by se měl nacházet na místním systému souborů s dostatečným volným prostorem (několik set MB). Na systémech UNIX asi budete chtít použít systémový dočasný adresář ("/tmp" nebo "/var/tmp").Umožní vyplnit zcela transparentní oblastiUmožní vybrat zcela průhledné oblastiPovolit rozšíření %sAlfaAlfa do výběruAlfa:Obrázek zvolené velikosti bude používat více paměti, než kolik je nastaveno jako "Maximální velikost obrázku" v dialogu Nastavení (momentálně %s)._AnimaceUkotvit plovoucí výběrUkotvit plovoucí vrstvuUkotvit plovoucí výběrÚhel:Opak gumy %sVyhlazováníZobrazováníPoužít masku vrstvyPoužít _masku vrstvyAplikovat práhPoužít masku vrstvyJste si jisti, že chcete odstranit '%s' ze seznamu a z disku?Jste si jisti, že chcete odstranit šablonu '%s' ze seznamu a z disku?Podle _předvolebPožádat o potvrzení před zavřením obrázku bez uložení.Poměr stran:Poměr stran:Připojení parazitaPřipojit parazita k obrázkuPřipojení parazita k položcePřipojit parazitaAutor:AutomatickyAutomaticky následovat aktivní _obrázekAutomaticky zmenšitAutomaticky zmenšit výběrAutomaticky měnit velikost oknaAutomaticky nahrátAutomaticky detekovánoDostupné filtryDostupné typy:Vyplňování barvou pozadí_Jas-kontrast..._BufferyPozadíBarva pozadíBarva pozadí nastavena na:Pozadí: %d, %d, %dZpět (Korektivní)Založit oblast k vyplnění na všech viditelných vrstváchZaložit výběr na všech viditelných vrstváchPod kresbouKosáBilineárníČernobíleČerná:Mísení _barev koncových bodů_MíseníMíseníMísení _krytí koncových bodůMísení: Mísení: Není povoleno pro indexované obrázky.Mísení...ModráModrá:RozostřeníRozmazání nebo zaostření_Obvod...Kanál okrajeVybrat obvodVybrat obvodJas-kontrastJas-kontrast nefunguje na indexovaných vrstvách.StopaEditor stopAdresáře se stopamiRozhraní stopStopa:StopyMenu StopyPlechovkaBufferyMenu BufferyTmavnutíUseknutáPodle příponyNavrácením obrázku do stavu uloženého na disku ztratíte všechny změny včetně informací o zpětných úpravách.CMYK_Kalibrovat..._Barevná pipetaSl_oupců:_KombinaceKalibrace rozlišení monitoruNelze vrátit %s_Velikost plátna...ZrušitZrušit vodítkoNelze přidat masku vrstvy jiných rozměrů, než má daná vrstva.Nelze přidat masku do vrstvy bez alfa kanálu.Nelze přidat masku vrstvy do vrstvy, která není součástí obrázku.Nemohu pohltit tuto vrstvu, protože to není plovoucí výběr.Nemohu převést do palety s více než 256 barvami.Nemohu vytvořit novou vrstvu z plovoucího výběru, protože patří do masky výběru nebo kanálu.Nelze vytvořit adresář '%s': %sNelze vytvořit náhledNelze oříznout, protože zvolená oblast je prázdná.Nemohu expandovat ${%s}Nemohu udělat výběr plovoucí, protože vybraná oblast je prázdná.Nelze posunout výš vrstvu bez alfy.Nelze uložit. Nebylo nic vybráno.Nemohu vykreslit prázdný kanál.Nemohu vykreslit prázdnou cestu.Velikost plátnaRežim _doplňování plátna:Střed X:CentrovanýZměnit barvu pozadíZměnit položku mapy barevZměnit barvu popředíZměna rozlišení obrázkuZměna jednotky obrázkuZměnit velikost tiskuZměnit aktuální vrstvu nebo cestuZměnit barvu pozadí mřížkyZměnit barvu popředí mřížkyZměnit indexovanou paletuZměna perspektivy vrstvy nebo výběruZměna klávesové zkratky selhala.KanálVlastnosti kanáluNázev kanálu:Kanál nemůže být ještě níž.Kanál nemůže být ještě výš.Barva kanáluKanál je již vespod.Kanál je již nahoře.Kanál do _výběruKanál do výběruKanál do výběruKanál:KanályMenu KanályVeliko_st polí šachovnice:Vyberte styl vykresleníKruh_VymazatVymazatVymazat kanálVymazat historii vraceníVymazat všechen textVymazat chybyVymazat historii vracení...Klepnutím na "Pokračovat" přijmete výše uvedená nastavení.Kliknutím na "Pokračovat" vytvoříte váš osobní adresář GIMPu.Spusťte uživatelskou instalaci GIMPu kliknutím na "Pokračovat".Pokračujte v uživatelské instalaci kliknutím na "Pokračovat".Kliknutím spojíte toto ukotvení s vybraným koncovým bodem.Kliknutím vytvoříte nové ukotvení. (zkuste SHIFT)Kliknutím vytvoříte novou komponentu cesty.Kliknutím vytvoříte novou cestu.Vytvořte náhled kliknutímKliknutím odstraníte toto ukotvení.Kliknutím vložíte ukotvení na cestu. (zkuste SHIFT)Kliknutím změníte tento uzel na úhlový.Kliknutím otevřete cestu.Kliknutím vyberete cestu, kterou upravit.Aktualizujte náhled kliknutím -Klávesou %s vynutíte aktualizaci, i když je náhled aktuálníTažením s kliknutím změníte tvar křivky. (SHIFT: symetricky)Tažením s kliknutím přesunete ukotvení.Tažením s kliknutím přesunete ukotvení.Tažením s kliknutím přesunete komponentu. (zkuste SHIFT)Tažením s kliknutím přesunete řídicí bod. (zkuste SHIFT)Tažením s kliknutím přesunete cestu.Klepnutí: vybratKlepnutí: vybrat Táhnutí: posunOříznout výsledekSchránkaOříznout dle spodní vrstvyOříznout dle obrázkuKlonováníZavřít %sZavřít tuto odrážku_Kopírovat cestu_BarvyBarvaVyvážení barevFiltry barevného zobrazeníBarevná pipetaInformace o barevné pipetě_Vyvážení barev..._Rozptyl barev:Vyvážení barev pracuje pouze s vrstvami v barvách RGB.Vymazání barevIndex barvy:Barva:_Mapa barev_Prostor barev:_Obarvit..._Typ vybarvení pro segment_Typ vybarvení pro výběrObarvitObarvení pracuje pouze s vrstvami v barvách RGB.Obarvit obrázekObarvit obrázekMapa barevEditor barevné mapyMenu Mapa barevSloupce:_Poznámka:KomentářKon_trast:_Změna ostrostiNastavit filtry barevného zobrazeníNastavit _rozšířená vstupní zařízení..._Nastavit mřížku...Nastavit mřížkuNastavit mřížku obrázkůNastavit klávesové zkratkyNastavit _klávesové zkratky...Nastavit vybraný filtrNastavit vybraný filtr: %sPotvrdit rozměry plátnaPotvrďte změnu velikostiPotvrdit úpravu textuPotvrzovat zavření _neuložených obrázkůKolidující klávesové zkratkyKuželový (nesymetrický)Kuželový (symetrický)Spojit vykresleníPevnýOmezeníKontextKurzory závisící na kontextu jsou žůžo. Implicitně jsou povoleny. Vyžadují ale režii, bez které se možná budete chtít obejít.PokračovatPřispěliPřevodPřevést hranuPřevést obrázek na odstíny šediPřevést obrázek na indexovanýPřevést obrázek na indexované barvyPřevést obrázek na RGBPřevést obrázekPřevádím na indexovaný (krok 2)...Převádím na indexovaný (krok 3)...Převádím na indexovaný...Změna ostrostiDruh změny ostrosti %sKopírovat pojmenovanéKopíruji soubor '%s' z '%s'...Copyright:Poškozený segment %d v souboru s přechodem '%s'.Nemohu odstranit '%s': %sNemohu vytvořit dočasný soubor pro '%s': %sNelze odstranit '%s': %sNemohu najít prohlížeč nápovědy GIMPuNelze otevřít '%s' pro čtení: %sNelze otevřít '%s' pro zápis: %sNemohu otevřít miniaturu '%s': %sNemohu načíst %d bajtů ze '%s': %sNelze vyhledávat v souboru XCF: %sNemohu spustit zásuvný modul prohlížeče nápovědy GIMPu.Počet:_Ořezat vrstvu_Vytvořit nový dokVytvořit novou šablonuVytvoření nového obrázkuVytvořit novou vrstvuVytvořit novou šablonuVytvořit nové zobrazení tohoto obrázkuVytvořit nový obrázek z vybrané šablonyVytvořit novou šablonuVytvářet a upravovat obrázky a fotografieVytvořit a upravit cestyVytvořit cestu z textuVytvořit výběr z cestyVytvářím náhled...Vytvářím adresář '%s'...OřezOřezání a rozměryInformace o ořezu a rozměrech plátnaOřezat obrázekOřezat vrstvuOřezat obrázekOřez obrázku nebo nastavení rozměrů plátnaOřez: Pouze nitkový kříž_VyjmoutVyjmout po_jmenované...Kubická (nejlepší)_Aktuální stavAktuální výška:Pouze aktuální vrstvaAktuální stavAktuální šířka:KurzorRežim kurz_oru:_Vykreslování kurzoru:Typ křivkyKřivkyKřivky nemohou být upravovány v indexovaných vrstvách.VlastníVlastní barvaVlastní přechodVlastní _barva doplňování:VyjmoutVyříznout pojmenovanéAzurováAzurová:_Duplikovat stopu_Duplikovat kanál_Duplikovat přechod_Duplikovat vrstvu_Duplikovat paletu_Duplikovat cestu_Duplikovat vzorek_Duplikovat šablonu...Barva tmavé šachovnicePouze ztmaveníČárka tečka tečka...Čárka tečka...Vzorek čárkování:Přednastavení čárkování:ČárkovanáDatum:LaděníImplicitní vzhled v režimu přes celou obrazovkuImplicitní vzhled v normálním režimuImplicitní mřížkaImplicitní mřížka obrázkuImplicitní _interpolace:Implicitní _velikost náhledu vrstev a kanálů:Implicitní _práh:Odstranit ukotveníOdstranit ukotveníOdstranit mas_ku vrstvyOdstranit masku vrstvyOdstranit objektOdstranit segmentOdstranit šablonuOdstranit stopuOdstranit kanálOdstranit barvuOdstranit přechodOdstranit vrstvuOdstranit masku vrstvy_Odstranit paletuOdstranit cestuOdstranit vzorekOdstranit uložené volby...Odstranit vybraný bufferOdstranit vybranou šablonuOdstranit tento obrázekOdstranit vektoryOdstraňování "%s" selhalo: %sHusté tečkyOdbarvitOdbarvení pracuje pouze s vrstvami v barvách RGB.PopisNávrhStav zařízeníZařízeníDialogyMenu DialogyKosočtverecOdlišnostPřímé barvyZakázat masku vrstvyZakázat Rychlou maskuZahodit informace o textuZobrazováníNavigace zobrazeníZobrazovací _filtry...Procedury zobrazeníTyp zobrazení:Zobrazuji [%0.6f, %0.6f]RozpouštěníVzdálenost:Vzdálenost: %0.6fRozptylDěleníVytvořit _novou uživatelskou instalaciOpravdu chcete přenastavit všechny filtry na implicitní hodnoty?Chcete opravdu přenastavit všechny volby nástrojů na implicitní hodnoty?Chcete jej nahradit obrázkem, který ukládáte?_NeukládatDokovatelné_Historie dokumentůHistorie dokumentůDokumentyMenu Dokumenty_Zesvětlování/tmavnutíZesvětlováníZesvětlující nebo ztmavující tahyZesvětlování/tmavnutíDvojitě čárkovanáTáhnout ukotveníTáhnout ukotveníTáhnout křivkuTáhnout řídicí bodPřetáhnout cestuTáhnutí: posunKreslení peremObrazovkaZměna obrazovkyProcedury obrazovkyPustit novou vrstvuPustit novou cestuFunkce textu nejsou k dispozici kvůli nedostupnosti písem.Vypisovat události z tohoto ovladačeDuplikovat stopuDuplikovat kanálDuplikovat přechodDuplikovat vrstvuDuplikovat paletuDuplikovat cestuDuplikovat vzorekDuplikovat vybranou šablonuEEK: nemohu vrátit zpět_Exportovat cestu...Velmi ma_léChování chran_Detekce hranÚpravyUpravit vlastnosti kanáluUpravit barvy kanáluUpravit položku palety barevUpravit položku mapy barevÚpravy vlastností vrstvyUpravit masku vrstvyRežim úpravUpravit barvu paletyUpravit vlastnosti cestyUpravit atributy Rychlé maskyUpravit barvu Rychlé maskyUpravit šablonuUpravit stopuUpravit atributy kanáluUpravit barvuUpravit položku mapy barev č. %dUpravit přechodUpravit atributy vrstvyUpravit paletuUpravit atributy cestyUpravit vzorekProcedury pro úpravyUpravit vybranou šablonuVýběr elipsyPrázdný kanálPrázdná vrstvaPrázdná cestaPrázdná textová vrstvaPrázdný název proměnné v souboru prostředí %s_VylepšeníPovolit Rychlou masku_Povolit rozptyl průhlednostiPovolit tento ovladačPovolte pro zobrazování užitečného tipu GIMP při spuštěníPovolte pro zobrazování nástrojových tipů.EnormníZadejte název sloučené paletyZadejte název uložených volebZadejte jméno tohoto bufferuZadejte jméno této šablonyZadejte nový název uložených volebZadejte umístění (URI):ProstředíAdresáře s prostředímEkvalizaceEkvalizace nefunguje na indexovaných vrstvách.Gumování do pozadí nebo průhlednostiGuma_Chybová konzolaChybová konzolaMenu Chybová konzolaChyba při ukládání souboru XCF: %sChyba při zpracovávání '%s' na řádku %d: %sChyba při čtení '%s': %sChyba při čtení souboru stopy '%s': %sChyba při zápisu '%s': %sChyba při ukládání XCF: %sChyba při zapisování souboru '%s': +SoučetDalší vstupní ovladačeÚprava jasu a kontrastuÚprava vyvážení barevÚprava barevných křivekÚprava úrovní barevUpravit jas a kontrastUpravit vyvážení barevÚprava barevných křivekÚprava úrovní barevNastavení odstínu / světlosti / sytostiÚprava odstínu a sytostiAutomaticky upravit úrovněNastaveníPokročilé volbyOvlivnit:Ovlivněná oblast %sVzdušný štětecVzdušný štětec s různým tlakem_Alfa do výběruSledujícíSledováníVšechny kanályVšechny filtryVšechny soubory (*.*)Všechna data obrázků a zpětných úprav, která se nevejdou do vyrovnávací paměti dlaždic, budou zapisována do odkládacího souboru. Tento soubor by se měl nacházet na místním systému souborů s dostatečným volným prostorem (několik set MB). Na systémech UNIX asi budete chtít použít systémový dočasný adresář ("/tmp" nebo "/var/tmp").Umožní vyplnit zcela transparentní oblastiUmožní vybrat zcela průhledné oblastiPovolit rozšíření %sAlfaAlfa do výběruAlfa:Obrázek zvolené velikosti bude používat více paměti, než kolik je nastaveno jako "Maximální velikost obrázku" v dialogu Nastavení (momentálně %s)._AnimaceUkotvit plovoucí výběrUkotvit plovoucí vrstvuUkotvit plovoucí výběrÚhel:Opak gumy %sVyhlazováníZobrazováníPoužít masku vrstvyPoužít _masku vrstvyAplikovat práhPoužít masku vrstvyJste si jisti, že chcete odstranit '%s' ze seznamu a z disku?Jste si jisti, že chcete odstranit šablonu '%s' ze seznamu a z disku?Podle _předvolebPožádat o potvrzení před zavřením obrázku bez uložení.Poměr stran:Poměr stran:Připojení parazitaPřipojit parazita k obrázkuPřipojení parazita k položcePřipojit parazitaAutor:AutomatickyAutomaticky následovat aktivní _obrázekAutomaticky zmenšitAutomaticky zmenšit výběrAutomaticky měnit velikost oknaAutomaticky nahrátAutomaticky detekovánoDostupné filtryDostupné typy:Vyplňování barvou pozadí_Jas-kontrast..._BufferyPozadíBarva pozadíBarva pozadí nastavena na:Pozadí: %d, %d, %dZpět (Korektivní)Založit oblast k vyplnění na všech viditelných vrstváchZaložit výběr na všech viditelných vrstváchPod kresbouKosáBilineárníČernobíleČerná:Mísení _barev koncových bodů_MíseníMíseníMísení _krytí koncových bodůMísení: Mísení: Není povoleno pro indexované obrázky.Mísení...ModráModrá:RozostřeníRozmazání nebo zaostření_Obvod...Kanál okrajeVybrat obvodVybrat obvodJas-kontrastJas-kontrast nefunguje na indexovaných vrstvách.StopaEditor stopAdresáře se stopamiRozhraní stopStopa:StopyMenu StopyPlechovkaBufferyMenu BufferyTmavnutíUseknutáPodle příponyNavrácením obrázku do stavu uloženého na disku ztratíte všechny změny včetně informací o zpětných úpravách.CMYK_Kalibrovat..._Barevná pipetaSl_oupců:_KombinaceKalibrace rozlišení monitoruNelze vrátit %s_Velikost plátna...ZrušitZrušit vodítkoNelze přidat masku vrstvy jiných rozměrů, než má daná vrstva.Nelze přidat masku do vrstvy bez alfa kanálu.Nelze přidat masku vrstvy do vrstvy, která není součástí obrázku.Nemohu pohltit tuto vrstvu, protože to není plovoucí výběr.Nemohu převést do palety s více než 256 barvami.Nemohu vytvořit novou vrstvu z plovoucího výběru, protože patří do masky výběru nebo kanálu.Nelze vytvořit adresář '%s': %sNelze vytvořit náhledNelze oříznout, protože zvolená oblast je prázdná.Nemohu expandovat ${%s}Nemohu udělat výběr plovoucí, protože vybraná oblast je prázdná.Nelze posunout výš vrstvu bez alfy.Nelze uložit. Nebylo nic vybráno.Nemohu vykreslit prázdný kanál.Nemohu vykreslit prázdnou cestu.Velikost plátnaRežim _doplňování plátna:Střed X:Střed Y:CentrovanýZměnit barvu pozadíZměnit položku mapy barevZměnit barvu popředíZměna rozlišení obrázkuZměna jednotky obrázkuZměnit velikost tiskuZměnit aktuální vrstvu nebo cestuZměnit barvu pozadí mřížkyZměnit barvu popředí mřížkyZměnit indexovanou paletuZměna perspektivy vrstvy nebo výběruZměna klávesové zkratky selhala.KanálVlastnosti kanáluNázev kanálu:Kanál nemůže být ještě níž.Kanál nemůže být ještě výš.Barva kanáluKanál je již vespod.Kanál je již nahoře.Kanál do _výběruKanál do výběruKanál do výběruKanál:KanályMenu KanályVeliko_st polí šachovnice:Vyberte styl vykresleníKruh_VymazatVymazatVymazat kanálVymazat historii vraceníVymazat všechen textVymazat chybyVymazat historii vracení...Klepnutím na "Pokračovat" přijmete výše uvedená nastavení.Kliknutím na "Pokračovat" vytvoříte váš osobní adresář GIMPu.Spusťte uživatelskou instalaci GIMPu kliknutím na "Pokračovat".Pokračujte v uživatelské instalaci kliknutím na "Pokračovat".Kliknutím spojíte toto ukotvení s vybraným koncovým bodem.Kliknutím vytvoříte nové ukotvení. (zkuste SHIFT)Kliknutím vytvoříte novou komponentu cesty.Kliknutím vytvoříte novou cestu.Vytvořte náhled kliknutímKliknutím odstraníte toto ukotvení.Kliknutím vložíte ukotvení na cestu. (zkuste SHIFT)Kliknutím změníte tento uzel na úhlový.Kliknutím otevřete cestu.Kliknutím vyberete cestu, kterou upravit.Aktualizujte náhled kliknutím +Klávesou %s vynutíte aktualizaci, i když je náhled aktuálníTažením s kliknutím změníte tvar křivky. (SHIFT: symetricky)Tažením s kliknutím přesunete ukotvení.Tažením s kliknutím přesunete ukotvení.Tažením s kliknutím přesunete komponentu. (zkuste SHIFT)Tažením s kliknutím přesunete řídicí bod. (zkuste SHIFT)Tažením s kliknutím přesunete cestu.Klepnutí: vybratKlepnutí: vybrat Táhnutí: posunOříznout výsledekSchránkaOříznout dle spodní vrstvyOříznout dle obrázkuKlonováníZavřít %sZavřít všechny odrážkyZavřít všechny odrážky?Zavřít tuto odrážku_Kopírovat cestu_BarvyBarvaVyvážení barevFiltry barevného zobrazeníBarevná pipetaInformace o barevné pipetě_Vyvážení barev..._Rozptyl barev:Vyvážení barev pracuje pouze s vrstvami v barvách RGB.Vymazání barevIndex barvy:Barva:_Mapa barev_Prostor barev:_Obarvit..._Typ vybarvení pro segment_Typ vybarvení pro výběrObarvitObarvení pracuje pouze s vrstvami v barvách RGB.Obarvit obrázekObarvit obrázekMapa barevEditor barevné mapyMenu Mapa barevSloupce:_Poznámka:KomentářKon_trast:_Změna ostrostiNastavit filtry barevného zobrazeníNastavit _rozšířená vstupní zařízení..._Nastavit mřížku...Nastavit mřížkuNastavit mřížku obrázkůNastavit klávesové zkratkyNastavit _klávesové zkratky...Nastavit vybraný filtrNastavit vybraný filtr: %sPotvrdit rozměry plátnaPotvrďte změnu velikostiPotvrdit úpravu textuPotvrzovat zavření _neuložených obrázkůKolidující klávesové zkratkyKuželový (nesymetrický)Kuželový (symetrický)Spojit vykresleníPevnýOmezeníKontextKurzory závisící na kontextu jsou žůžo. Implicitně jsou povoleny. Vyžadují ale režii, bez které se možná budete chtít obejít.PokračovatPřispěliPřevodPřevést hranuPřevést obrázek na odstíny šediPřevést obrázek na indexovanýPřevést obrázek na indexované barvyPřevést obrázek na RGBPřevést obrázekPřevádím na indexovaný (krok 2)...Převádím na indexovaný (krok 3)...Převádím na indexovaný...Změna ostrostiDruh změny ostrosti %sKopírovat pojmenovanéKopírovat _viditelnéKopíruji soubor '%s' z '%s'...Copyright:Poškozený segment %d v souboru s přechodem '%s'.Nemohu odstranit '%s': %sNemohu vytvořit dočasný soubor pro '%s': %sNelze odstranit '%s': %sNemohu najít prohlížeč nápovědy GIMPuNelze otevřít '%s' pro čtení: %sNelze otevřít '%s' pro zápis: %sNemohu otevřít miniaturu '%s': %sNemohu načíst %d bajtů ze '%s': %sNelze vyhledávat v souboru XCF: %sNemohu spustit zásuvný modul prohlížeče nápovědy GIMPu.Počet:_Ořezat vrstvu_Vytvořit nový dokVytvořit novou šablonuVytvoření nového obrázkuVytvořit novou vrstvuVytvořit novou šablonuVytvořit nové zobrazení tohoto obrázkuVytvořit nový obrázek z vybrané šablonyVytvořit novou šablonuVytvářet a upravovat obrázky a fotografieVytvořit a upravit cestyVytvořit cestu z textuVytvořit výběr z cestyVytvářím náhled...Vytvářím adresář '%s'...OřezOřezání a rozměryInformace o ořezu a rozměrech plátnaOřezat obrázekOřezat vrstvuOřezat obrázekOřez obrázku nebo nastavení rozměrů plátnaOřez: Pouze nitkový kříž_VyjmoutVyjmout po_jmenované...Kubická (nejlepší)_Aktuální stavAktuální výška:Pouze aktuální vrstvaAktuální stavAktuální šířka:KurzorRežim kurz_oru:_Vykreslování kurzoru:Typ křivkyKřivkyKřivky nemohou být upravovány v indexovaných vrstvách.VlastníVlastní barvaVlastní přechodVlastní _barva doplňování:VyjmoutVyříznout pojmenovanéAzurováAzurová:_Duplikovat stopu_Duplikovat kanál_Duplikovat přechod_Duplikovat vrstvu_Duplikovat paletu_Duplikovat cestu_Duplikovat vzorek_Duplikovat šablonu...Barva tmavé šachovnicePouze ztmaveníČárka tečka tečka...Čárka tečka...Vzorek čárkování:Přednastavení čárkování:ČárkovanáDatum:LaděníImplicitní vzhled v režimu přes celou obrazovkuImplicitní vzhled v normálním režimuImplicitní mřížkaImplicitní mřížka obrázkuImplicitní _interpolace:Implicitní _velikost náhledu vrstev a kanálů:Implicitní _práh:Odstranit ukotveníOdstranit ukotveníOdstranit mas_ku vrstvyOdstranit masku vrstvyOdstranit objektOdstranit segmentOdstranit šablonuOdstranit stopuOdstranit kanálOdstranit barvuOdstranit přechodOdstranit vrstvuOdstranit masku vrstvy_Odstranit paletuOdstranit cestuOdstranit vzorekOdstranit uložené volby...Odstranit vybraný bufferOdstranit vybranou šablonuOdstranit tento obrázekOdstranit vektoryOdstraňování "%s" selhalo: %sHusté tečkyOdbarvitOdbarvení pracuje pouze s vrstvami v barvách RGB.PopisNávrhStav zařízeníZařízeníDialogyMenu DialogyKosočtverecOdlišnostPřímé barvyZakázat masku vrstvyZakázat Rychlou maskuZahodit informace o textuZobrazováníNavigace zobrazeníZobrazovací _filtry...Procedury zobrazeníTyp zobrazení:Zobrazuji [%0.6f, %0.6f]RozpouštěníVzdálenost:Vzdálenost: %0.6fRozptylDěleníVytvořit _novou uživatelskou instalaciOpravdu chcete přenastavit všechny filtry na implicitní hodnoty?Chcete opravdu přenastavit všechny volby nástrojů na implicitní hodnoty?Chcete jej nahradit obrázkem, který ukládáte?_NeukládatDokovatelné_Historie dokumentůHistorie dokumentůDokumentyMenu Dokumenty_Zesvětlování/tmavnutíZesvětlováníZesvětlující nebo ztmavující tahyZesvětlování/tmavnutíDvojitě čárkovanáTáhnout ukotveníTáhnout ukotveníTáhnout křivkuTáhnout řídicí bodPřetáhnout cestuTáhnutí: posunKreslení peremObrazovkaZměna obrazovkyProcedury obrazovkyPustit novou vrstvuPustit novou cestuFunkce textu nejsou k dispozici kvůli nedostupnosti písem.Vypisovat události z tohoto ovladačeDuplikovat stopuDuplikovat kanálDuplikovat přechodDuplikovat vrstvuDuplikovat paletuDuplikovat cestuDuplikovat vzorekDuplikovat vybranou šablonuEEK: nemohu vrátit zpět_Exportovat cestu...Velmi ma_léChování chran_Detekce hranÚpravyUpravit vlastnosti kanáluUpravit barvy kanáluUpravit položku palety barevUpravit položku mapy barevÚpravy vlastností vrstvyUpravit masku vrstvyRežim úpravUpravit barvu paletyUpravit vlastnosti cestyUpravit atributy Rychlé maskyUpravit barvu Rychlé maskyUpravit šablonuUpravit stopuUpravit atributy kanáluUpravit barvuUpravit položku mapy barev č. %dUpravit přechodUpravit atributy vrstvyUpravit paletuUpravit atributy cestyUpravit vzorekProcedury pro úpravyUpravit vybranou šablonuVýběr elipsyPrázdný kanálPrázdná vrstvaPrázdná cestaPrázdná textová vrstvaPrázdný název proměnné v souboru prostředí %s_VylepšeníPovolit Rychlou masku_Povolit rozptyl průhlednostiPovolit tento ovladačPovolte pro zobrazování užitečného tipu GIMP při spuštěníPovolte pro zobrazování nástrojových tipů.EnormníZadejte název sloučené paletyZadejte název uložených volebZadejte jméno tohoto bufferuZadejte jméno této šablonyZadejte nový název uložených volebZadejte umístění (URI):ProstředíAdresáře s prostředímEkvalizaceEkvalizace nefunguje na indexovaných vrstvách.Gumování do pozadí nebo průhlednostiGuma_Chybová konzolaChybová konzolaMenu Chybová konzolaChyba při ukládání souboru XCF: %sChyba při zpracovávání '%s' na řádku %d: %sChyba při čtení '%s': %sChyba při čtení souboru stopy '%s': %sChyba při zápisu '%s': %sChyba při ukládání XCF: %sChyba při zapisování souboru '%s': %sChyba při zápisu '%s': %sChyba při zápisu do dočasného souboru pro '%s': %s Žádný soubor nebyl vytvořen.Chyba při zápisu do dočasného souboru pro '%s': %s Původní soubor zůstal nedotčen.ChybyUdálostVelmi vel_kéZvětšit dle potřebyExportovat cestu do SVGExportovat všechny cesty z tohoto obrázkuExportovat aktivní cestuMíra:Rozšířená vstupní zařízeníPříponyVyplňování barvou popředíPopředí do pozadí (HSV odstín po směru hodinových ručiček)Popředí do pozadí (HSV proti směru hodinových ručiček)Popředí do pozadí (HSV)Popředí do pozadí (RGB)Popředí do průhlednostiPopředí do průhlednostiPopředí/pozadíBarva popředí/pozadí_Přizpůsobit plátno vrstvámDoběhNemohu importovat přechody z '%s': %sNemohu importovat cesty z '%s': %sFatální chyba zpracování souboru stopy '%s': Soubor je zřejmě useknut.Fatální chyba zpracování souboru stopy '%s': Soubor je poškozen.Fatální chyba zpracování souboru stopy '%s': Není to soubor stopy GIMPu.Fatální chyba zpracování souboru stopy '%s': Neznámý tvar stopy GIMPu.Fatální chyba zpracování souboru stopy '%s': Neznámá verze stopy GIMPu.Fatální chyba zpracování souboru stopy '%s': Neznámá hloubka %d.Fatální chyba zpracování souboru stopy '%s': Neznámá verze %d.Fatální chyba zpracování souboru stopy '%s': Nepodporovaná hloubka stopy %d @@ -370,8 +365,8 @@ (%s)Plovoucí výběr do vrstvyPlovoucí výběr do vrstvyPlovoucí výběryFloydův-Steinbergův rozptyl (běžný)Floydův-Steinbergův rozptyl (snížený odběr barev)AktivaceAdresářAdresářeAdresáře písemPísmo UI:Písmo:PísmaMenu PísmaPro řádnou instalaci GIMPu je potřeba vytvořit adresář s názvem %s.Vnutit použití auto-hinteruPopředíBarvy popředí a pozadí. Černý a bílý čtverec obnovuje barvy. Šipky prohazují barvy. Dvojitým klepnutím otevřete dialog pro výběr barev.Barva popředíBarva popředí nastavena na:Popředí: %d, %d, %dDopředu (Tradiční)Z c_estyVolný výběrVolný výběrVolná rukaZ _tématuZe systému oken (nyní %d × %d dpi)Zleva dopravaZprava dolevaZ výběruZ tématuPři_bližný výběrPřes _celou obrazovkuPřibližný výběrGIMPRozšíření GIMPuZpráva GIMPuGIMP: vyladění výkonuZásuvný modul GIMPuSpouštím GIMPTextový editor pro GIMPGIMP: Tip dneUživatelská instalace GIMPuObrázek GIMP XCFGIMP nemohl inicializovat grafické uživatelské rozhraní. Přesvědčte se, že máte správně nastaveno zobrazovací prostředí.Prohlížeč nápovědy GIMPuGIMP není správně nainstalován pro aktuálního uživatele. Uživatelská instalace byla přeskočena, protože byl použit přepínač '--no-interface'. -Uživatelskou instalaci provedete spuštěním GIMP bez přepínače '--no-interface'.GIMP používá k ukládání dat obrázků omezené množství paměti, tak zvanou "vyrovnávací paměť dlaždic". Měli byste ji nastavit tak, aby se vešla do paměti. Počítejte také s pamětí používanou ostatními běžící procesy.GIMP používá doplňující soubor gtkrc, takže můžete nastavit vzhled odlišný od ostatních aplikací GTK.GIMP verzeGIMP bude uživatele varovat při pokusu vytvořit obrázek, který by zabral více paměti než zde určená velikost.GamaVšeobecnéNastavuje minimální počet barev systému alokovaných pro GIMP, obecně důležité jen pro osmibitové displeje.Generovat optimální paletuRozlišení monitoru získatGigantickéProcedury GimprcEfekty se s_klemPřechodEditor přechodůMenu Editor přechodůAdresáře s přechodyBarva levého koncového bodu segmentu přechoduBarva pravého koncového bodu segmentu přechoduRozhraní přechoduPřechod:PřechodyMenu PřechodyExtrakce zrnitostiSloučení zrnitostiŠedáOdstíny šediZelenáZelená:MřížkaProstor mezi řádky mřížkyZvětšit kanálZvětšit výběrZvětšit výběr oVodítkoPřichytávání k vodítkům a mřížceProcedury průvodceHSVHSV (%0.3f, %0.3f, %0.3f)HSV (odstín p_roti směru hodinových ručiček)HSV (odstín p_o směru hodinových ručiček)Notace HTML:_Výška:_Používaný prohlížeč nápovědy:Poloha řídicího bodu: %0.6fOstré hranyOstré světloTvrdostTvrdost:VýškaVýška:NápovědaProhlížeč nápovědySystém nápovědyProhlížeč nápovědy se nespouštíProhlížeč nápovědy nenalezenPomocné proceduryHex:SvětlaNápověda pro _doky:Nápověda pro _nástroje:HintingHinting mění obrys fontu pro vytvoření ostré bitmapy v malých velikostech_HistogramHistogramMěřítko histogramuHistorieVodorovněVodorovný posun první čáry mřížky; může to být záporné číslo.Vodorovné rozestupy čar mřížky.Kolik názvů nedávno otevřených souborů udržovat v menu Soubor.OdstínOdstín-sytostOdstín-sytost pracuje pouze s vrstvami v barvách RGB.Odstín-_sytostOdstín:ObrovskéIkona _a text_Obrázek_Importovat cestu..._Interpolace:I_nterval:IkonaIkona a popisIkona a textJsou-li k dispozici, používají se nápovědy z písma, ale možná radši vždy používáte automatický hinterJe-li povoleno, nástroj přesunu mění aktivní vrstvu nebo cestu, když je vybrána vrstva nebo cesta. To bylo ve starších verzích implicitní chování.Pokud obrázek neuložíte, změny za poslední %s budou ztraceny.Pokud nyní ukončíte GIMP, tyto změny budou ztraceny.Neplatný název proměnné v souboru prostředí %s: %sObrázekObrázek + mřížkaEditor obrázkůInformace o obrázkuMenu ObrázekVelikost obrázkuFormát stavové lišty obrázkuŠablony obrázkůMiniatury obrázkůFormát titulku a stavové lišty obrázkuFormát titulku obrázkuVzhled okna obrázkuOkna obrázkuObrázek neobsahuje viditelné vrstvySoubor obrázkuMaska obrázkuRozlišení obrázku je mimo rozsah, používám místo něj implicitní rozlišení.Velikost obrázkuZdroj obrázkuTyp obrázkuObrázkyMenu ObrázkyVolby importuImport paletyImportovat cestyImportovat cesty z SVGImport nové paletyImportovat paletuImportovat cestyImportovaná cesta_Inkoust_InvertovatIn_vertovat maskuPostupnýOdsazení:Odsazení prvního řádkuIndex:IndexovanáIndexovaná barvaPřevod indexované barvyVrstvy s indexovanými barvami jsou vždy škálovány bez interpolace. Zvolený typ interpolace bude mít vliv jen na škálování kanálů a masek.Informační okno_Počáteční zvětšení:Implicitní stav masky vrstvy:Inicializuji zásuvného modulyInicializuji zásuvný modul: '%s' -InkoustInline pixbufVstupní ovladačeVstupní zařízeníVstupní úrovněVložit ukotveníNainstalovat soukromou barevnou mapu; může být užitečné na osmibitových (256 barev) displejích.Instalace selhala. Spojte se se správcem systému.Instalace úspěšná. Pokračujte kliknutím na "Pokračovat".Rychlá aktualizace_Inteligentní nůžkyIntenzita: %0.3f Krytí: %0.3fRozhraníVnitřní procedura GIMPuVnitřní proceduryInterpolace:PrůnikPrůnik s aktuálním výběremPrůsečíky (nitkové kříže)Průsečíky (body)Neplatné UTF-8Neplatná data v kódování UTF-8 v souboru '%s'.Neplatný řetězec v UTF-8 v souboru XCFNeplatný řetězec v kódování UTF-8 v souboru se stopou '%s'.Neplatný řetězec v kódování UTF-8 v souboru s přechodem '%s'.Neplatný řetězec v kódování UTF-8 v souboru s paletou '%s'Neplatný řetězec v kódování UTF-8 v souboru se vzorkem '%s'.Neplatná posloupnost znaků v URINeplatná zkratka.Neplatná šířka nebo výška. Obě musí být kladné.InvertovatInvertovat kanálInvertovat výběrInvertování nefunguje na indexovaných vrstvách.Invertovat výběrOpravdu to chcete udělat?Zřejmě jste dříve používali GIMP 2.0.Vlastnosti položkyViditelnost položkyZarovnat:Zachovat průhlednostUdržovat nahořePonechat poměr stran %sZachovat poměr stranPevný poměr stran %sPonechat výšku %sZachovat průhlednostPonechat šířku %sKlávesa dolůKlávesa dolů (Alt)Klávesa dolů (Control + Alt)Klávesa dolů (Control)Klávesa dolů (Shift + Alt)Klávesa dolů (Shift + Control + Alt)Klávesa dolů (Shift + Control)Klávesa dolů (Shift)Klávesa dolevaKlávesa doleva (Alt)Klávesa doleva (Control + Alt)Klávesa doleva (Control)Klávesa doleva (Shift + Alt)Klávesa doleva (Shift + Control + Alt)Klávesa doleva (Shift + Control)Klávesa doleva (Shift)Klávesa dopravaKlávesa doprava (Alt)Klávesa doprava (Control + Alt)Klávesa doprava (Control)Klávesa doprava (Shift + Alt)Klávesa doprava (Shift + Control + Alt)Klávesa doprava (Shift + Control)Klávesa doprava (Shift)Klávesa nahoruKlávesa nahoru (Alt)Klávesa nahoru (Control + Alt)Klávesa nahoru (Control)Klávesa nahoru (Shift + Alt)Klávesa nahoru (Shift + Control + Alt)Klávesa nahoru (Shift + Control)Klávesa nahoru (Shift)Klávesové zkratky je možné v GIMPu dynamicky měnit. menurc je výpis vašeho nastavení, aby bylo uloženo pro příští sezení. Chcete-li, můžete jej upravovat, ale je mnohem jednodušší definovat klávesy za běhu GIMPu. Odstranění tohoto souboru obnoví implicitní zkratky.KlávesniceUdálosti klávesniceKlávesové zkratkyZleva dopravaBarva _levého koncového bodu...Na šířkuVelkáVelké (256x256)Větší náhledyPoslední chyba:VrstvaVrstva '%s' nemá alfu. Vrstva byla umístěna nad ni.Vlastností vrstvyRozměry _hranic vrstvy...Typ vyplňování vrstvyMaska vrstvy do výběruVrstva výběruVelikost vrstvy_Režim vrstvy_Název vrstvy:Vrstva nemůže být ještě níž.Vrstva nemůže být ještě výš.Vrstva je již vespod.Vrstva je již nahoře.Velikost vrstvy dle obrázkuVrstvu _dospodVelikost vrstvy _dle obrázkuVrstvu na_horu_Alfa kanál vrstvyVrstvyMenu VrstvyVolby sloučení vrstvyBarva levého koncového boduZarovnaný dolevaDélka:Nechat GIMP pokusit se obnovit vaše poslední uložené sezení při každém spuštění.ÚrovněÚrovně nemohou být upravovány v indexovaných vrstvách.Barva světlé šachovnicePouze zesvětleníČáraRozestup +Uživatelskou instalaci provedete spuštěním GIMP bez přepínače '--no-interface'.GIMP používá k ukládání dat obrázků omezené množství paměti, tak zvanou "vyrovnávací paměť dlaždic". Měli byste ji nastavit tak, aby se vešla do paměti. Počítejte také s pamětí používanou ostatními běžící procesy.GIMP používá doplňující soubor gtkrc, takže můžete nastavit vzhled odlišný od ostatních aplikací GTK.GIMP verzeGIMP bude uživatele varovat při pokusu vytvořit obrázek, který by zabral více paměti než zde určená velikost.GamaVšeobecnéNastavuje minimální počet barev systému alokovaných pro GIMP, obecně důležité jen pro osmibitové displeje.Generovat optimální paletuRozlišení monitoru získatGigantickéProcedury GimprcEfekty se s_klemPřechodEditor přechodůMenu Editor přechodůAdresáře s přechodyBarva levého koncového bodu segmentu přechoduBarva pravého koncového bodu segmentu přechoduRozhraní přechoduSoubor s přechodem '%s' je poškozen: Segmenty nepokrývají rozsah 0-1.Přechod:PřechodyMenu PřechodyExtrakce zrnitostiSloučení zrnitostiŠedáOdstíny šediZelenáZelená:MřížkaProstor mezi řádky mřížkyZvětšit kanálZvětšit výběrZvětšit výběr oVodítkoPřichytávání k vodítkům a mřížceProcedury průvodceHSVHSV (%0.3f, %0.3f, %0.3f)HSV (odstín p_roti směru hodinových ručiček)HSV (odstín p_o směru hodinových ručiček)Notace HTML:_Výška:_Používaný prohlížeč nápovědy:Poloha řídicího bodu: %0.6fOstré hranyOstré světloTvrdostTvrdost:VýškaVýška:NápovědaProhlížeč nápovědySystém nápovědyProhlížeč nápovědy se nespouštíProhlížeč nápovědy nenalezenPomocné proceduryHex:SvětlaNápověda pro _doky:Nápověda pro _nástroje:HintingHinting mění obrys fontu pro vytvoření ostré bitmapy v malých velikostech_HistogramHistogramMěřítko histogramuHistorieVodorovněVodorovný posun první čáry mřížky; může to být záporné číslo.Vodorovné rozestupy čar mřížky.Kolik názvů nedávno otevřených souborů udržovat v menu Soubor.OdstínOdstín-sytostOdstín-sytost pracuje pouze s vrstvami v barvách RGB.Odstín-_sytostOdstín:ObrovskéIkona _a text_Obrázek_Importovat cestu..._Interpolace:I_nterval:IkonaIkona a popisIkona a textJsou-li k dispozici, používají se nápovědy z písma, ale možná radši vždy používáte automatický hinterJe-li povoleno, nástroj přesunu mění aktivní vrstvu nebo cestu, když je vybrána vrstva nebo cesta. To bylo ve starších verzích implicitní chování.Pokud obrázek neuložíte, změny za poslední %s budou ztraceny.Pokud nyní ukončíte GIMP, tyto změny budou ztraceny.Neplatný název proměnné v souboru prostředí %s: %sObrázekObrázek + mřížkaEditor obrázkůInformace o obrázkuMenu ObrázekVelikost obrázkuFormát stavové lišty obrázkuŠablony obrázkůMiniatury obrázkůFormát titulku a stavové lišty obrázkuFormát titulku obrázkuVzhled okna obrázkuOkna obrázkuObrázek neobsahuje viditelné vrstvySoubor obrázkuMaska obrázkuRozlišení obrázku je mimo rozsah, používám místo něj implicitní rozlišení.Velikost obrázkuZdroj obrázkuTyp obrázkuObrázkyMenu ObrázkyVolby importuImport paletyImportovat cestyImportovat cesty z SVGImport nové paletyImportovat paletuImportovat cestyImportovaná cesta_Inkoust_InvertovatIn_vertovat maskuPostupnýOdsazení:Odsazení prvního řádkuIndex:IndexovanáIndexovaná barvaPřevod indexované barvyVrstvy s indexovanými barvami jsou vždy škálovány bez interpolace. Zvolený typ interpolace bude mít vliv jen na škálování kanálů a masek.Informační okno_Počáteční zvětšení:Implicitní stav masky vrstvy:Inicializuji zásuvného modulyInicializuji zásuvný modul: '%s' +InkoustInline pixbufVstupní ovladačeVstupní zařízeníVstupní úrovněVložit ukotveníNainstalovat soukromou barevnou mapu; může být užitečné na osmibitových (256 barev) displejích.Instalace selhala. Spojte se se správcem systému.Instalace úspěšná. Pokračujte kliknutím na "Pokračovat".Rychlá aktualizace_Inteligentní nůžkyIntenzita: %0.3f Krytí: %0.3fRozhraníVnitřní procedura GIMPuVnitřní proceduryInterpolace:PrůnikPrůnik s aktuálním výběremPrůsečíky (nitkové kříže)Průsečíky (body)Neplatné UTF-8Neplatná data v kódování UTF-8 v souboru '%s'.Neplatný řetězec v UTF-8 v souboru XCFNeplatný řetězec v kódování UTF-8 v souboru se stopou '%s'.Neplatný řetězec v kódování UTF-8 v souboru s přechodem '%s'.Neplatný řetězec v kódování UTF-8 v souboru s paletou '%s'Neplatný řetězec v kódování UTF-8 v souboru se vzorkem '%s'.Neplatná posloupnost znaků v URINeplatná zkratka.Neplatná šířka nebo výška. Obě musí být kladné.InvertovatInvertovat kanálInvertovat výběrInvertování nefunguje na indexovaných vrstvách.Invertovat výběrOpravdu to chcete udělat?Zřejmě jste dříve používali GIMP 2.0.Vlastnosti položkyViditelnost položkyZarovnat:Zachovat průhlednostUdržovat nahořePonechat poměr stran %sPevný poměr stran %sPonechat výšku %sZachovat průhlednostPonechat šířku %sKlávesa dolůKlávesa dolů (Alt)Klávesa dolů (Control + Alt)Klávesa dolů (Control)Klávesa dolů (Shift + Alt)Klávesa dolů (Shift + Control + Alt)Klávesa dolů (Shift + Control)Klávesa dolů (Shift)Klávesa dolevaKlávesa doleva (Alt)Klávesa doleva (Control + Alt)Klávesa doleva (Control)Klávesa doleva (Shift + Alt)Klávesa doleva (Shift + Control + Alt)Klávesa doleva (Shift + Control)Klávesa doleva (Shift)Klávesa dopravaKlávesa doprava (Alt)Klávesa doprava (Control + Alt)Klávesa doprava (Control)Klávesa doprava (Shift + Alt)Klávesa doprava (Shift + Control + Alt)Klávesa doprava (Shift + Control)Klávesa doprava (Shift)Klávesa nahoruKlávesa nahoru (Alt)Klávesa nahoru (Control + Alt)Klávesa nahoru (Control)Klávesa nahoru (Shift + Alt)Klávesa nahoru (Shift + Control + Alt)Klávesa nahoru (Shift + Control)Klávesa nahoru (Shift)Klávesové zkratky je možné v GIMPu dynamicky měnit. menurc je výpis vašeho nastavení, aby bylo uloženo pro příští sezení. Chcete-li, můžete jej upravovat, ale je mnohem jednodušší definovat klávesy za běhu GIMPu. Odstranění tohoto souboru obnoví implicitní zkratky.KlávesniceUdálosti klávesniceKlávesové zkratkyZleva dopravaBarva _levého koncového bodu...Na šířkuVelkáVelké (256x256)Větší náhledyPoslední chyba:VrstvaVrstva '%s' nemá alfu. Vrstva byla umístěna nad ni.Vlastností vrstvyRozměry _hranic vrstvy...Typ vyplňování vrstvyMaska vrstvy do výběruVrstva výběruVelikost vrstvy_Režim vrstvy_Název vrstvy:Vrstva nemůže být ještě níž.Vrstva nemůže být ještě výš.Vrstva je již vespod.Vrstva je již nahoře.Velikost vrstvy dle obrázkuVrstvu _dospodVelikost vrstvy _dle obrázkuVrstvu na_horu_Alfa kanál vrstvyVrstvyMenu VrstvyVolby sloučení vrstvyBarva levého koncového boduZarovnaný dolevaDélka:Nechat GIMP pokusit se obnovit vaše poslední uložené sezení při každém spuštění.ÚrovněÚrovně nemohou být upravovány v indexovaných vrstvách.Barva světlé šachovnicePouze zesvětleníČáraRozestup řádků:Šířka čáry:_Styl řádku:Styl čáry používaný pro mřížku.LineárníSvázaná položkaNačístNačíst křivkyNačíst úrovněNačíst pravou barvu _zNačíst nastavení křivek ze souboruNačíst nastavení úrovní ze souboruNačíst text ze souboruNačítám náhled...Umístění:LogaritmickýDlouhé čárkyHledám datové souboryKanál nížKanál dospodKanál do_spodVrstvu nížVrstvu dospodSnížit cestuSnížit cestu dolůSnížit cestu _dolůKanál nížKanál dospodVrstvu nížVrstvu dospodSnížit cestuSnížit cestu dolů_Lupa_HlavníPře_sunout na obrazovku..._MapaPurpurováPurpurová:LupaZ_průhlednitSpravovat zásuvné moduly_Rychlost běhu čar:Krytí masky:Maskovat _vybrané oblastiMaskovat _nevybrané oblastiMatice:Největší hloubka:Maximální _velikost souboru pro náhledy:Maximální velikost _nového obrázku:Maximální odlišnost barevMaximální _paměť vracení:Průměr:MěřidloMěření úhlů a vzdálenostíMěření vzdáleností a úhlůZměřte čáry a zadejte jejich délky:Medián:StředníStřední čárkySloučit _dolůSloučit dolůSloučit vrstvySloučit paletySloučit viditelné vrstvySloučit viditelné cestySloučit _viditelné vrstvy...Sloučit _viditelné vrstvy...Sloučit _viditelné cestySloučit vrstvySloučit paletySloučit vektoryProcedury zprávZpráva se opakuje %dkrát.Zpráva se opakuje jednou.Zprávy jsou přesměrovány na stderr.Střední tónyPřevést nastavení uživateleMinimální počet _úrovní zpětných úprav:RůznéOstráRežimRežim:Upravit vybranou barvuUpravit úrovně barev ve vybrané oblastiUpravit všechny barvyUpravit prostor mezi řádkyAdresáře s modulySprávce modulůCesta k modulůmModulyKurzory myšiKolečko myšiUdálosti kolečka myšiPřesunPřesunout ukotveníPřesunout kanálOdstranit plovoucí výběrPřesunout vodítkoPřesunout vodítko: Přemístit vrstvuPřesunout masku vrstvyPřesunout cestuPřesunout výběrPřesunout textovou vrstvuNástroj přesunuPřesunout položkuPřesun vrstev a výběrůPřesunout výběrPřesunout aktuální vrstvuPřesunout aktuální cestuPosunout vybraný filtr nížePosunout vybraný filtr výšePřesunout na obrazovku...Přesun: NásobeníPočet bar_ev:_Navigace_Navigační oknoVelikost _navigačního náhledu:NázevNázev:NavigaceNový kanálBarva nového kanáluVolby nového kanáluNová barva z po_zadíNová barva z po_předíNový obrázekNová vrstvaNová cestaVolby nové cestyNová šablonaNová stopaNový kanálNový kanál s posledními hodnotamiNový kanál...Nová barva z pozadíNová barva z popředíNový přechodNový importNová vrstvaNová vrstva s posledními hodnotamiNová vrstva...Nová paletaNová cesta s posledními hodnotamiNová cesta...Nový vzorekNové vektoryNejsou dostupné žádné stopy pro použití s tímto nástrojem.Není vybran žádný filtrV '%s' nebyl nalezen lineáční přechodJiž není k dispoziciV '%s' nebyla nalezena žádná cestaV bufferu nebyla nalezena žádná cestaNejsou k dispozici žádné vzorky pro tuto operaci.Žádný výběrPro tah není výběr.Žádné miniaturyNezarovnánoNicŽádná (nejrychlejší)NormálníBěžné (128x128)Normální tečkyNormální oknoNení běžný souborNedostatek viditelných vrstev pro sloučení. Musí být alespoň dvě.Nedostatek viditelných cest pro sloučení. Musí být alespoň dvě.Počet užívaných _procesorů:Počet řádků mřížkyPočet vrstev:O_ther...PosunKanál posunuObrazovka posunuVrstva posunuMaska vrstvy posunuPosun o x/_2, y/2Posun:Na diskuNa víceprocesorových strojích, byl-li GIMP přeložen s --enable-mp, toto nastavuje, kolik procesorů by GIMP měl používat zároveň.Pouze v pamětiOtevřít jako v_rstvu...KrytíKrytí:OtevřítOtevřít obrázekOtevřít obrázek jako vrstvuOtevřít umístěníOtevřít textový soubor (UTF-8)Otevřít _umístění...Ot_evřít nedávnýDialog Otevřít obrázekOtevřít dialog výběru stopyOtevřít dialog výběru písmaOtevřít dialog výběru přechoduOtevřít dialog výběru paletyOtevřít dialog výběru vzorkuOtevřít vybranou položkuOtevírání '%s' selhalo: %sOtevírání '%s' selhalo: %sVolby: @@ -412,7 +407,7 @@ Můžete vrstvu upravovat nebo vytvořit novou vrstvu textu z atributů jejího textu.Název adresáře s uživatelským nastavením GIMPu nelze převést do UTF-8: %s -Pravděpodobně váš systém souborů ukládá soubory v kódování jiném než UTF-8 a neřekli jste o tom GLib. Nastavte prosím proměnnou prostředí G_FILENAME_ENCODING.sesionrc se používá pro uložené, která okna dialogů byla otevřena, když jste naposledy ukončili GIMP. Můžete GIMP nastavit, aby tyto dialogy znovu otevřel na uložených pozicích.Miniatura v dialogu Otevřít bude automaticky aktualizována, pokud soubor, jehož miniatura se tvoří, je menší než zde nastavená velikost.Vyrovnávací paměť dlaždic se používá pro zajištění toho, že GIMP nebude neustále přehazovat dlaždice mezi pamětí a diskem. Vyšší nastavení této hodnoty způsobí, že GIMP bude používat méně odkládacího prostoru, ale více paměti. Naopak menší velikost vyrovnávací paměti způsobí, že GIMP bude používat více odkládacího prostoru a méně paměti.Jednotka používaná pro zobrazování souřadnic mimo režim bod na bod.unitrc se používá pro ukládání databáze uživatelských jednotek. Můžete definovat vlastní jednotky a používat je stejně jako vestavěné palce, milimetry, body a piky. Tento soubor je přepsán pokaždé, když ukončíte GIMP.Svislé rozlišení obrázku.Nápověda typu okna, která je nastavena na dokovacích oknech. Může to mít vliv na to, jak váš správce oken dekoruje dokovací okna a jak s nimi pracuje.Nápověda typu okna, která je nastavena na nástrojích. Může to mít vliv na to, jak váš správce oken dekoruje okno nástrojů a jak s ním pracuje.TémaAdresáře s tématyTémataV %d obrázcích jsou neuložené změny:Ke sloučení dolů není dostatek viditelných vrstev.Mezi použitím paměti a rychlostí si vždy musíte vybrat. GIMP většinou dává přednosti rychlostí před pamětí. Je-li paměť velký problém, zkuste povolit toto nastavení.Není žádná aktivní vrstva nebo kanál, odkud kopírovat.Není žádná aktivní vrstva nebo kanál, odkud vyjmout.Není žádná aktivní vrstva nebo kanál, kam vykreslovatNení žádná aktivní vrstva nebo kanál, kam vykreslovat.V jednom obrázku jsou neuložené změny:Měl existovat soubor s názvem '%s'. Zkontrolujte prosím svou instalaci.Při zpracovávání vašeho souboru '%s' došlo k chybě. Budou použity implicitní hodnoty. Byla vytvořena záloha vaší konfigurace v '%s'.Tento soubor obsahuje soubor standardních velikostí médií, které slouží jako šablony obrázků.V tomto adresáři se hledají šablony obrázků.V tomto adresáři se hledají uživatelem instalovaná témata.Tento adresář se používá k ukládání písem, která chcete vidět jen v GIMPu. Při hledání písem GIMP tento adresář použije navíc k systémové instalaci písem GIMPu. Použijte to jen, pokud opravdu chcete mít písma jen pro GIMP, jinak je umístěte do svého globálního adresáře písem.Tento adresář se používá pro ukládání souborů parametrů pro nástroj Křivky.Tento adresář se používá pro ukládání souborů parametrů pro nástroj Úrovně.Tento adresář je používán pro ukládání voleb nástrojů.Tento adresář se používá k ukládání uživatelem vytvořených a nainstalovaných skriptů. Při hledání skriptů GIMP tento adresář použije navíc k systémovému adresáři skriptů GIMPu.Tento adresář se používá k ukládání uživatelem vytvořených, dočasných nebo jinak systémem nepodporovaných modulů DLL. Při hledání modulů, které načíst při inicializaci, GIMP tento adresář použije navíc k systémovému adresáři modulů GIMPu.Tento adresář se používá k ukládání uživatelem vytvořených, dočasných nebo jinak systémem nepodporovaných dodatků k prostředí zásuvných modulů. Při hledání souborů úprav prostředí zásuvných modulů GIMP tento adresář použije navíc k systémovému adresáři prosředí GIMPu.Tento adresář se používá k ukládání uživatelem vytvořených, dočasných nebo jinak systémem nepodporovaných zásuvných modulů. Při hledání zásuvných modulů GIMP tento adresář použije navíc k systémovému adresáři modulů GIMPu.Tento adresář se používá pro ukládání uživatelem definovaných stop. Při hledání stop GIMP tento adresář použije navíc k systémovým stopám GIMPu.Tento adresář se používá k ukládání uživatelem definovaných přechodů. Při hledání přechodů GIMP tento adresář použije navíc k systémovým přechodům GIMPu.Tento adresář se používá k ukládání uživatelem definovaných palet. Při hledání palet GIMP tento adresář použije navíc k systémovým paletám GIMPu.Tento adresář se používá k ukládání uživatelem definovaných vzorků. Při hledání vzorků GIMP tento adresář použije navíc k systémovým vzorkům GIMPu.Tento adresář se používá k dočasnému ukládání bufferů pro vracení, čímž se ušetří paměť. Pokud je GIMP nenormálně ukončen, mohou zde zbýt soubory ve formě: gimp<#>.<#>. Ty jsou mezi GIMP sezeními zbytečné a mohou být odstraněny jako smetí.Tento adresář bude obsahovat několik důležitých souborů. Kliknutím na jeden ze souborů nebo adresářů ve stromu získáte více informací o zvolené položce.Toto je vzdálenost v pixelech, kde se aktivuje přichytávání k vodítkům a mřížce.Tento program je šířen v naději, že bude užitečný, avšak BEZ JAKÉKOLI ZÁRUKY; neposkytují se ani odvozené záruky PRODEJNOSTI anebo VHODNOSTI PRO URČITÝ ÚČEL. Další podrobnosti hledejte v GNU General Public License.Tento program je free software; můžete jej šířit a měnit za podmínek GNU General Public License publikované Free Software Foundation; buď verze 2 této licence, nebo (podle vašeho uvážení) jakékoli novější.Toto textové vstupní pole je omezeno na %d znaků.Tento nástroj nemá volby.PráhPráh nefunguje na indexovaných vrstvách.Práh:Miniatura %d z %d_Velikost vyrovnávací paměti dlaždic:Velikost vyrovnávací paměti dlaždic:Sklon:DrobnéTitulek a stavDo _cesty_HračkyPřepnout Rychlou masku_Přepnout Rychlou maskuPříliš mnoho chybových zpráv!Volby nástrojůMenu Volby nástrojůPřepínač nástrojů %s_Volby nástrojůIkona nástrojeIkona nástroje s nitkovým křížem_NástrojeNástrojeMenu NástrojeNástrojeMenu NástrojeNástroje jako přibližný výběr a plechovka hledají oblasti algoritmem semínkového vyplňování. Semínkové vyplňování začne na původně vybraném pixelu a pokračuje ve všech směrech, dokud není rozdíl intenzity pixelu od originálu větší než zadaný limit. Tato hodnota představuje implicitní limit.Prů_hlednostPřenést alfu do maskyTransformaceTransformovat kanálSměr transformaceTransformovat vrstvuTransformovat cestuTransformovat textovou vrstvuProcedury transformačních nástrojůTransformovat vrstvuTransformovat cestuTransformovat výběrTransformaceProcedury transformaceTransformuji...PřeložiliPrůhlednost_Typ průhlednosti:Trojúhelníková vlnaPravé barvyTypTyp %sStiskněte novou klávesovou zkratkuStiskněte novou klávesovou zkratku nebo ji vymažte stisknutím BackspaceNelze přidat masku vrstvy, protože vrstva již masku má.Nemohu vyříznout nebo kopírovat, protože zvolená oblast je prázdná.Nemohu otevřít testovací odkládací soubor. Abyste předešli ztrátě dat, zkontrolujte prosím umístění a oprávnění odkládacího adresáře definovaného ve vašich Předvolbách (momentálně "%s").Nemohu otevřít odkládací soubor. Gimpu došla paměť a nemůže použít odkládací soubor. Některé části vašich obrázků mohou být poškozeny. Zkuste uložit svou práci pod jinými názvy souborů, spustit Gimp znovu a zkontrolovat nastavení odkládacího adresáře ve vašich Předvolbách.Nemohu spustit zpětné volání %s. Příslušný zásuvný modul možná spadl.NedefinovánoZpětHistorie vracení_Historie vraceníJednotkyNeznámýNeznámý typ souboruNeznámý typ souboru palety: +Pravděpodobně váš systém souborů ukládá soubory v kódování jiném než UTF-8 a neřekli jste o tom GLib. Nastavte prosím proměnnou prostředí G_FILENAME_ENCODING.sesionrc se používá pro uložené, která okna dialogů byla otevřena, když jste naposledy ukončili GIMP. Můžete GIMP nastavit, aby tyto dialogy znovu otevřel na uložených pozicích.Miniatura v dialogu Otevřít bude automaticky aktualizována, pokud soubor, jehož miniatura se tvoří, je menší než zde nastavená velikost.Vyrovnávací paměť dlaždic se používá pro zajištění toho, že GIMP nebude neustále přehazovat dlaždice mezi pamětí a diskem. Vyšší nastavení této hodnoty způsobí, že GIMP bude používat méně odkládacího prostoru, ale více paměti. Naopak menší velikost vyrovnávací paměti způsobí, že GIMP bude používat více odkládacího prostoru a méně paměti.Jednotka používaná pro zobrazování souřadnic mimo režim bod na bod.unitrc se používá pro ukládání databáze uživatelských jednotek. Můžete definovat vlastní jednotky a používat je stejně jako vestavěné palce, milimetry, body a piky. Tento soubor je přepsán pokaždé, když ukončíte GIMP.Svislé rozlišení obrázku.Nápověda typu okna, která je nastavena na dokovacích oknech. Může to mít vliv na to, jak váš správce oken dekoruje dokovací okna a jak s nimi pracuje.Nápověda typu okna, která je nastavena na nástrojích. Může to mít vliv na to, jak váš správce oken dekoruje okno nástrojů a jak s ním pracuje.TémaAdresáře s tématyTémataV %d obrázcích jsou neuložené změny:Ke sloučení dolů není dostatek viditelných vrstev.Mezi použitím paměti a rychlostí si vždy musíte vybrat. GIMP většinou dává přednosti rychlostí před pamětí. Je-li paměť velký problém, zkuste povolit toto nastavení.Není žádná aktivní vrstva nebo kanál, odkud kopírovat.Není žádná aktivní vrstva nebo kanál, odkud vyjmout.Není žádná aktivní vrstva nebo kanál, kam vykreslovatNení žádná aktivní vrstva nebo kanál, kam vykreslovat.V jednom obrázku jsou neuložené změny:Měl existovat soubor s názvem '%s'. Zkontrolujte prosím svou instalaci.Při zpracovávání vašeho souboru '%s' došlo k chybě. Budou použity implicitní hodnoty. Byla vytvořena záloha vaší konfigurace v '%s'.Tento soubor obsahuje soubor standardních velikostí médií, které slouží jako šablony obrázků.V tomto adresáři se hledají šablony obrázků.V tomto adresáři se hledají uživatelem instalovaná témata.Tento adresář se používá k ukládání písem, která chcete vidět jen v GIMPu. Při hledání písem GIMP tento adresář použije navíc k systémové instalaci písem GIMPu. Použijte to jen, pokud opravdu chcete mít písma jen pro GIMP, jinak je umístěte do svého globálního adresáře písem.Tento adresář se používá pro ukládání souborů parametrů pro nástroj Křivky.Tento adresář se používá pro ukládání souborů parametrů pro nástroj Úrovně.Tento adresář je používán pro ukládání voleb nástrojů.Tento adresář se používá k ukládání uživatelem vytvořených a nainstalovaných skriptů. Při hledání skriptů GIMP tento adresář použije navíc k systémovému adresáři skriptů GIMPu.Tento adresář se používá k ukládání uživatelem vytvořených, dočasných nebo jinak systémem nepodporovaných modulů DLL. Při hledání modulů, které načíst při inicializaci, GIMP tento adresář použije navíc k systémovému adresáři modulů GIMPu.Tento adresář se používá k ukládání uživatelem vytvořených, dočasných nebo jinak systémem nepodporovaných dodatků k prostředí zásuvných modulů. Při hledání souborů úprav prostředí zásuvných modulů GIMP tento adresář použije navíc k systémovému adresáři prosředí GIMPu.Tento adresář se používá k ukládání uživatelem vytvořených, dočasných nebo jinak systémem nepodporovaných zásuvných modulů. Při hledání zásuvných modulů GIMP tento adresář použije navíc k systémovému adresáři modulů GIMPu.Tento adresář se používá pro ukládání uživatelem definovaných stop. Při hledání stop GIMP tento adresář použije navíc k systémovým stopám GIMPu.Tento adresář se používá k ukládání uživatelem definovaných přechodů. Při hledání přechodů GIMP tento adresář použije navíc k systémovým přechodům GIMPu.Tento adresář se používá k ukládání uživatelem definovaných palet. Při hledání palet GIMP tento adresář použije navíc k systémovým paletám GIMPu.Tento adresář se používá k ukládání uživatelem definovaných vzorků. Při hledání vzorků GIMP tento adresář použije navíc k systémovým vzorkům GIMPu.Tento adresář se používá k dočasnému ukládání bufferů pro vracení, čímž se ušetří paměť. Pokud je GIMP nenormálně ukončen, mohou zde zbýt soubory ve formě: gimp<#>.<#>. Ty jsou mezi GIMP sezeními zbytečné a mohou být odstraněny jako smetí.Tento adresář bude obsahovat několik důležitých souborů. Kliknutím na jeden ze souborů nebo adresářů ve stromu získáte více informací o zvolené položce.Toto je vzdálenost v pixelech, kde se aktivuje přichytávání k vodítkům a mřížce.Tento program je šířen v naději, že bude užitečný, avšak BEZ JAKÉKOLI ZÁRUKY; neposkytují se ani odvozené záruky PRODEJNOSTI anebo VHODNOSTI PRO URČITÝ ÚČEL. Další podrobnosti hledejte v GNU General Public License.Tento program je free software; můžete jej šířit a měnit za podmínek GNU General Public License publikované Free Software Foundation; buď verze 2 této licence, nebo (podle vašeho uvážení) jakékoli novější.Toto textové vstupní pole je omezeno na %d znaků.Tento nástroj nemá volby.Toto okno má otevřeno %d odrážek. Zavření okna také zavře všechny jeho odrážky.PráhPráh nefunguje na indexovaných vrstvách.Práh:Miniatura %d z %d_Velikost vyrovnávací paměti dlaždic:Velikost vyrovnávací paměti dlaždic:Sklon:DrobnéTitulek a stavDo _cestyKlávesovou zkratku upravte kliknutím na odpovídající řádek a stisknutím nové klávesové zkratky nebo ji vymažte stisknutím Backspace._HračkyPřepnout Rychlou masku_Přepnout Rychlou maskuPříliš mnoho chybových zpráv!Volby nástrojůMenu Volby nástrojůPřepínač nástrojů %s_Volby nástrojůIkona nástrojeIkona nástroje s nitkovým křížem_NástrojeNástrojeMenu NástrojeNástrojeMenu NástrojeNástroje jako přibližný výběr a plechovka hledají oblasti algoritmem semínkového vyplňování. Semínkové vyplňování začne na původně vybraném pixelu a pokračuje ve všech směrech, dokud není rozdíl intenzity pixelu od originálu větší než zadaný limit. Tato hodnota představuje implicitní limit.Prů_hlednostPřenést alfu do maskyTransformaceTransformovat kanálSměr transformaceTransformovat vrstvuTransformovat cestuTransformovat textovou vrstvuProcedury transformačních nástrojůTransformovat vrstvuTransformovat cestuTransformovat výběrTransformaceProcedury transformaceTransformuji...PřeložiliPrůhlednost_Typ průhlednosti:Trojúhelníková vlnaPravé barvyTypTyp %sStiskněte novou klávesovou zkratkuStiskněte novou klávesovou zkratku nebo ji vymažte stisknutím BackspaceNelze přidat masku vrstvy, protože vrstva již masku má.Nemohu vyříznout nebo kopírovat, protože zvolená oblast je prázdná.Nemohu otevřít testovací odkládací soubor. Abyste předešli ztrátě dat, zkontrolujte prosím umístění a oprávnění odkládacího adresáře definovaného ve vašich Předvolbách (momentálně "%s").Nemohu otevřít odkládací soubor. Gimpu došla paměť a nemůže použít odkládací soubor. Některé části vašich obrázků mohou být poškozeny. Zkuste uložit svou práci pod jinými názvy souborů, spustit Gimp znovu a zkontrolovat nastavení odkládacího adresáře ve vašich Předvolbách.Nemohu spustit zpětné volání %s. Příslušný zásuvný modul možná spadl.NedefinovánoZpětHistorie vracení_Historie vraceníJednotkyNeznámýNeznámý typ souboruNeznámý typ souboru palety: %sUvolnitBeze jménaBez názvuPoužívat implicitně "_Bod na bod"Používat dynamické _klávesové zkratkyPoužít místo toho _WWW prohlížečPři zmenšení výběru použít všechny viditelné vrstvyPoužít černobílou (1bitovou) paletuPoužít barvu z přechoduPoužít vlastní paletuPoužít informační oknoPoužít paletu optimalizovanou pro WWWProtokol o uživatelské instalaciUživatelské rozhraníOkno nástrojůJasHodnota:Změna vektorůVerzi %s pro vás napsaliVerze:SvisleSvislý posun první čáry mřížky; může to být záporné číslo.Svislé rozestupy čar mřížky.Velmi velkéVelmi maléZobrazitZobrazit jako _mřížkuZobrazit jako _seznamZobrazit jako mřížkuZobrazit jako seznamTřída vizuálu:Hloubla vizuálu:Varování: Nemohu načíst data: %sVarování: Nemohu uložit data: diff -uraN gimp-2.2.0/po/cs.po gimp-2.2.1/po/cs.po --- gimp-2.2.0/po/cs.po 2004-12-19 03:11:19.000000000 +0100 +++ gimp-2.2.1/po/cs.po 2004-12-28 16:58:26.000000000 +0100 @@ -9,8 +9,8 @@ msgstr "" "Project-Id-Version: gimp VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-19 03:11+0100\n" -"PO-Revision-Date: 2004-12-07 18:03+0100\n" +"POT-Creation-Date: 2004-12-28 16:58+0100\n" +"PO-Revision-Date: 2004-12-26 23:47+0100\n" "Last-Translator: Miloslav Trmac \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" @@ -1028,11 +1028,11 @@ msgid "Remove dangling entries" msgstr "Odstranit visící položky" -#: app/actions/documents-commands.c:252 app/actions/file-commands.c:163 +#: app/actions/documents-commands.c:251 app/actions/file-commands.c:163 #: app/dialogs/file-open-dialog.c:198 app/dialogs/file-open-dialog.c:249 #: app/dialogs/file-open-location-dialog.c:193 -#: app/display/gimpdisplayshell-dnd.c:332 app/widgets/gimplayertreeview.c:802 -#: app/widgets/gimptoolbox-dnd.c:123 +#: app/display/gimpdisplayshell-dnd.c:334 app/widgets/gimplayertreeview.c:804 +#: app/widgets/gimptoolbox-dnd.c:125 #, c-format msgid "" "Opening '%s' failed:\n" @@ -1151,9 +1151,8 @@ #. GIMP_STOCK_COPY_VISIBLE, #: app/actions/edit-actions.c:93 -#, fuzzy msgid "Copy _Visible" -msgstr "_Viditelné" +msgstr "Kopírovat _viditelné" #: app/actions/edit-actions.c:98 msgid "_Paste" @@ -1541,115 +1540,115 @@ msgid "Zoom all" msgstr "Zvětšit vše" -#: app/actions/gradient-editor-actions.c:582 +#: app/actions/gradient-editor-actions.c:589 msgid "_Blending Function for Segment" msgstr "Funkce _mísení pro segment" -#: app/actions/gradient-editor-actions.c:584 +#: app/actions/gradient-editor-actions.c:591 msgid "Coloring _Type for Segment" msgstr "_Typ vybarvení pro segment" -#: app/actions/gradient-editor-actions.c:587 +#: app/actions/gradient-editor-actions.c:594 msgid "_Flip Segment" msgstr "_Překlopit segment" -#: app/actions/gradient-editor-actions.c:589 +#: app/actions/gradient-editor-actions.c:596 msgid "_Replicate Segment..." msgstr "_Replikovat segment..." -#: app/actions/gradient-editor-actions.c:591 +#: app/actions/gradient-editor-actions.c:598 msgid "Split Segment at _Midpoint" msgstr "Rozdělit segment ve _středním bodě" -#: app/actions/gradient-editor-actions.c:593 +#: app/actions/gradient-editor-actions.c:600 msgid "Split Segment _Uniformly..." msgstr "Rozdělit segment _stejnoměrně..." -#: app/actions/gradient-editor-actions.c:595 +#: app/actions/gradient-editor-actions.c:602 msgid "_Delete Segment" msgstr "_Odstranit segment" -#: app/actions/gradient-editor-actions.c:597 +#: app/actions/gradient-editor-actions.c:604 msgid "Re-_center Segment's Midpoint" msgstr "Pře_centrovat středový bod segmentu" -#: app/actions/gradient-editor-actions.c:599 +#: app/actions/gradient-editor-actions.c:606 msgid "Re-distribute _Handles in Segment" msgstr "Přerozdělit _řídicí body v segmentu" -#: app/actions/gradient-editor-actions.c:604 +#: app/actions/gradient-editor-actions.c:611 msgid "_Blending Function for Selection" msgstr "Funkce _mísení pro výběr" -#: app/actions/gradient-editor-actions.c:606 +#: app/actions/gradient-editor-actions.c:613 msgid "Coloring _Type for Selection" msgstr "_Typ vybarvení pro výběr" -#: app/actions/gradient-editor-actions.c:609 +#: app/actions/gradient-editor-actions.c:616 msgid "_Flip Selection" msgstr "_Překlopit výběr" -#: app/actions/gradient-editor-actions.c:611 +#: app/actions/gradient-editor-actions.c:618 msgid "_Replicate Selection..." msgstr "_Replikovat výběr..." -#: app/actions/gradient-editor-actions.c:613 +#: app/actions/gradient-editor-actions.c:620 msgid "Split Segments at _Midpoints" msgstr "Rozdělit segmenty ve _středních bodech" -#: app/actions/gradient-editor-actions.c:615 +#: app/actions/gradient-editor-actions.c:622 msgid "Split Segments _Uniformly..." msgstr "Rozdělit segmenty _stejnoměrně..." -#: app/actions/gradient-editor-actions.c:617 +#: app/actions/gradient-editor-actions.c:624 msgid "_Delete Selection" msgstr "_Odstranit výběr" -#: app/actions/gradient-editor-actions.c:619 +#: app/actions/gradient-editor-actions.c:626 msgid "Re-_center Midpoints in Selection" msgstr "Pře_centrovat středové body ve výběru" -#: app/actions/gradient-editor-actions.c:621 +#: app/actions/gradient-editor-actions.c:628 msgid "Re-distribute _Handles in Selection" msgstr "Přerozdělit _řídicí body ve výběru" -#: app/actions/gradient-editor-commands.c:84 +#: app/actions/gradient-editor-commands.c:85 msgid "Left Endpoint Color" msgstr "Barva levého koncového bodu" -#: app/actions/gradient-editor-commands.c:86 +#: app/actions/gradient-editor-commands.c:87 msgid "Gradient Segment's Left Endpoint Color" msgstr "Barva levého koncového bodu segmentu přechodu" -#: app/actions/gradient-editor-commands.c:186 +#: app/actions/gradient-editor-commands.c:189 msgid "Right Endpoint Color" msgstr "Barva pravého koncového bodu" -#: app/actions/gradient-editor-commands.c:188 +#: app/actions/gradient-editor-commands.c:191 msgid "Gradient Segment's Right Endpoint Color" msgstr "Barva pravého koncového bodu segmentu přechodu" -#: app/actions/gradient-editor-commands.c:353 +#: app/actions/gradient-editor-commands.c:358 msgid "Replicate Segment" msgstr "Replikovat segment" -#: app/actions/gradient-editor-commands.c:354 +#: app/actions/gradient-editor-commands.c:359 msgid "Replicate Gradient Segment" msgstr "Replikovat segment přechodu" -#: app/actions/gradient-editor-commands.c:358 +#: app/actions/gradient-editor-commands.c:363 msgid "Replicate Selection" msgstr "Replikovat výběr" -#: app/actions/gradient-editor-commands.c:359 +#: app/actions/gradient-editor-commands.c:364 msgid "Replicate Gradient Selection" msgstr "Replikovat výběr přechodu" -#: app/actions/gradient-editor-commands.c:371 +#: app/actions/gradient-editor-commands.c:376 msgid "Replicate" msgstr "Replikovat" -#: app/actions/gradient-editor-commands.c:386 +#: app/actions/gradient-editor-commands.c:391 msgid "" "Select the number of times\n" "to replicate the selected segment." @@ -1657,7 +1656,7 @@ "Vyberte kolikrát chcete\n" "replikovat zvolený segment." -#: app/actions/gradient-editor-commands.c:389 +#: app/actions/gradient-editor-commands.c:394 msgid "" "Select the number of times\n" "to replicate the selection." @@ -1665,27 +1664,27 @@ "Vyberte kolikrát chcete\n" "replikovat výběr." -#: app/actions/gradient-editor-commands.c:444 +#: app/actions/gradient-editor-commands.c:452 msgid "Split Segment Uniformly" msgstr "Rozdělit segment stejnoměrně" -#: app/actions/gradient-editor-commands.c:445 +#: app/actions/gradient-editor-commands.c:453 msgid "Split Gradient Segment Uniformly" msgstr "Rozdělit segment přechodu stejnoměrně" -#: app/actions/gradient-editor-commands.c:449 +#: app/actions/gradient-editor-commands.c:457 msgid "Split Segments Uniformly" msgstr "Rozdělit segmenty stejnoměrně" -#: app/actions/gradient-editor-commands.c:450 +#: app/actions/gradient-editor-commands.c:458 msgid "Split Gradient Segments Uniformly" msgstr "Rozdělit segmenty přechodu stejnoměrně" -#: app/actions/gradient-editor-commands.c:462 +#: app/actions/gradient-editor-commands.c:470 msgid "Split" msgstr "Rozdělit" -#: app/actions/gradient-editor-commands.c:478 +#: app/actions/gradient-editor-commands.c:486 msgid "" "Select the number of uniform parts\n" "in which to split the selected segment." @@ -1693,7 +1692,7 @@ "Vyberte počet stejných částí, na které\n" "chcete rozdělit zvolený segment." -#: app/actions/gradient-editor-commands.c:481 +#: app/actions/gradient-editor-commands.c:489 msgid "" "Select the number of uniform parts\n" "in which to split the segments in the selection." @@ -2130,7 +2129,7 @@ #: app/actions/layers-commands.c:232 app/actions/layers-commands.c:234 #: app/actions/layers-commands.c:291 app/actions/layers-commands.c:295 -#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:840 +#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:842 msgid "New Layer" msgstr "Nová vrstva" @@ -2142,7 +2141,7 @@ msgid "Set Layer Boundary Size" msgstr "Nastavení rozměrů hranic vrstvy" -#: app/actions/layers-commands.c:512 app/core/gimplayer.c:255 +#: app/actions/layers-commands.c:512 app/core/gimplayer.c:253 msgid "Scale Layer" msgstr "Velikost vrstvy" @@ -2154,7 +2153,7 @@ msgid "Layer Mask to Selection" msgstr "Maska vrstvy do výběru" -#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1085 +#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1066 #: app/dialogs/layer-add-mask-dialog.c:62 msgid "Add Layer Mask" msgstr "Přidat masku vrstvy" @@ -2698,7 +2697,7 @@ msgstr "Otevřít textový soubor (UTF-8)" #: app/actions/text-editor-commands.c:132 app/config/gimpconfig-utils.c:552 -#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:393 +#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:396 #: app/core/gimpbrushgenerated.c:601 app/core/gimpbrushpipe.c:338 #: app/core/gimpgradient-load.c:63 app/core/gimppalette.c:360 #: app/core/gimppattern.c:328 app/tools/gimpimagemaptool.c:608 @@ -4537,7 +4536,7 @@ msgid "FG to Transparent" msgstr "Popředí do průhlednosti" -#: app/core/gimp-gui.c:148 +#: app/core/gimp-gui.c:153 msgid "GIMP" msgstr "GIMP" @@ -4569,39 +4568,54 @@ msgid "Modules" msgstr "Moduly" -#: app/core/gimpbrush.c:531 +#: app/core/gimpbrush.c:534 #, c-format msgid "Could not read %d bytes from '%s': %s" msgstr "Nemohu načíst %d bajtů ze '%s': %s" -#: app/core/gimpbrush.c:566 +#: app/core/gimpbrush.c:554 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Width = 0." +msgstr "Fatální chyba zpracování souboru stopy '%s': Neznámá hloubka %d." + +#: app/core/gimpbrush.c:563 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Height = 0." +msgstr "Fatální chyba zpracování souboru stopy '%s': Soubor je poškozen." + +#: app/core/gimpbrush.c:572 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Bytes = 0." +msgstr "Fatální chyba zpracování souboru stopy '%s': Soubor je poškozen." + +#: app/core/gimpbrush.c:596 #, c-format msgid "Fatal parse error in brush file '%s': Unknown depth %d." msgstr "Fatální chyba zpracování souboru stopy '%s': Neznámá hloubka %d." -#: app/core/gimpbrush.c:579 +#: app/core/gimpbrush.c:609 #, c-format msgid "Fatal parse error in brush file '%s': Unknown version %d." msgstr "Fatální chyba zpracování souboru stopy '%s': Neznámá verze %d." -#: app/core/gimpbrush.c:595 app/core/gimpbrush.c:715 +#: app/core/gimpbrush.c:625 app/core/gimpbrush.c:745 #, c-format msgid "Fatal parse error in brush file '%s': File appears truncated." msgstr "Fatální chyba zpracování souboru stopy '%s': Soubor je zřejmě useknut." -#: app/core/gimpbrush.c:603 app/core/gimpbrushgenerated.c:648 +#: app/core/gimpbrush.c:633 app/core/gimpbrushgenerated.c:648 #: app/core/gimpbrushpipe.c:354 #, c-format msgid "Invalid UTF-8 string in brush file '%s'." msgstr "Neplatný řetězec v kódování UTF-8 v souboru se stopou '%s'." -#: app/core/gimpbrush.c:610 app/core/gimpcontext.c:1299 -#: app/core/gimpitem.c:479 app/core/gimppattern.c:400 +#: app/core/gimpbrush.c:640 app/core/gimpcontext.c:1299 +#: app/core/gimpitem.c:480 app/core/gimppattern.c:400 #: app/dialogs/template-options-dialog.c:80 app/tools/gimpvectortool.c:339 msgid "Unnamed" msgstr "Beze jména" -#: app/core/gimpbrush.c:704 +#: app/core/gimpbrush.c:734 #, c-format msgid "" "Fatal parse error in brush file '%s': Unsupported brush depth %d\n" @@ -4768,11 +4782,11 @@ "%s" #: app/core/gimpdatafactory.c:411 app/core/gimpdatafactory.c:414 -#: app/core/gimpitem.c:274 app/core/gimpitem.c:277 +#: app/core/gimpitem.c:275 app/core/gimpitem.c:278 msgid "copy" msgstr "kopie" -#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:286 +#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:287 #, c-format msgid "%s copy" msgstr "%s kopie" @@ -4835,7 +4849,7 @@ msgid "Rotate" msgstr "Rotovat" -#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:259 +#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:257 msgid "Transform Layer" msgstr "Transformovat vrstvu" @@ -4878,7 +4892,7 @@ #: app/core/gimpgradient-load.c:183 app/core/gimpgradient-load.c:197 #, c-format msgid "Gradient file '%s' is corrupt: Segments do not span the range 0-1." -msgstr "" +msgstr "Soubor s přechodem '%s' je poškozen: Segmenty nepokrývají rozsah 0-1." #: app/core/gimpgradient-load.c:281 #, c-format @@ -5192,7 +5206,7 @@ #. pixel size #: app/core/gimpimagefile.c:624 app/dialogs/info-window.c:552 -#: app/widgets/gimpsizebox.c:552 app/widgets/gimptemplateeditor.c:637 +#: app/widgets/gimpsizebox.c:429 app/widgets/gimptemplateeditor.c:637 #: app/widgets/gimptemplateeditor.c:673 #, c-format msgid "%d x %d pixels" @@ -5212,15 +5226,15 @@ msgid "Could not open thumbnail '%s': %s" msgstr "Nemohu otevřít miniaturu '%s': %s" -#: app/core/gimpitem.c:1096 +#: app/core/gimpitem.c:1103 msgid "Attach Parasite" msgstr "Připojení parazita" -#: app/core/gimpitem.c:1106 +#: app/core/gimpitem.c:1113 msgid "Attach Parasite to Item" msgstr "Připojení parazita k položce" -#: app/core/gimpitem.c:1145 app/core/gimpitem.c:1152 +#: app/core/gimpitem.c:1152 app/core/gimpitem.c:1159 msgid "Remove Parasite from Item" msgstr "Odstranění parazita z položky" @@ -5248,37 +5262,37 @@ msgid "Floating Selection to Layer" msgstr "Plovoucí výběr do vrstvy" -#: app/core/gimplayer.c:252 app/pdb/internal_procs.c:152 +#: app/core/gimplayer.c:250 app/pdb/internal_procs.c:152 msgid "Layer" msgstr "Vrstva" -#: app/core/gimplayer.c:253 +#: app/core/gimplayer.c:251 msgid "Rename Layer" msgstr "Přejmenovat vrstvu" -#: app/core/gimplayer.c:254 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 +#: app/core/gimplayer.c:252 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 msgid "Move Layer" msgstr "Přemístit vrstvu" -#: app/core/gimplayer.c:256 +#: app/core/gimplayer.c:254 msgid "Resize Layer" msgstr "Změnit velikost vrstvy" -#: app/core/gimplayer.c:257 +#: app/core/gimplayer.c:255 msgid "Flip Layer" msgstr "Překlopit vrstvu" -#: app/core/gimplayer.c:258 +#: app/core/gimplayer.c:256 msgid "Rotate Layer" msgstr "Rotovat vrstvu" -#: app/core/gimplayer.c:341 app/core/gimplayer.c:1129 +#: app/core/gimplayer.c:339 app/core/gimplayer.c:1110 #: app/core/gimplayermask.c:236 #, c-format msgid "%s mask" msgstr "%s maska" -#: app/core/gimplayer.c:387 +#: app/core/gimplayer.c:385 #, c-format msgid "" "Floating Selection\n" @@ -5287,39 +5301,39 @@ "Plovoucí výběr\n" "(%s)" -#: app/core/gimplayer.c:1055 +#: app/core/gimplayer.c:1036 msgid "Cannot add layer mask to layer which is not part of an image." msgstr "Nelze přidat masku vrstvy do vrstvy, která není součástí obrázku." -#: app/core/gimplayer.c:1062 +#: app/core/gimplayer.c:1043 msgid "Unable to add a layer mask since the layer already has one." msgstr "Nelze přidat masku vrstvy, protože vrstva již masku má." -#: app/core/gimplayer.c:1069 +#: app/core/gimplayer.c:1050 msgid "Cannot add layer mask to a layer with no alpha channel." msgstr "Nelze přidat masku do vrstvy bez alfa kanálu." -#: app/core/gimplayer.c:1079 +#: app/core/gimplayer.c:1060 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "Nelze přidat masku vrstvy jiných rozměrů, než má daná vrstva." -#: app/core/gimplayer.c:1183 +#: app/core/gimplayer.c:1164 msgid "Transfer Alpha to Mask" msgstr "Přenést alfu do masky" -#: app/core/gimplayer.c:1343 +#: app/core/gimplayer.c:1324 msgid "Apply Layer Mask" msgstr "Použít masku vrstvy" -#: app/core/gimplayer.c:1344 +#: app/core/gimplayer.c:1325 msgid "Delete Layer Mask" msgstr "Odstranit masku vrstvy" -#: app/core/gimplayer.c:1445 +#: app/core/gimplayer.c:1426 msgid "Add Alpha Channel" msgstr "Přidat alfa kanál" -#: app/core/gimplayer.c:1467 +#: app/core/gimplayer.c:1448 msgid "Layer to Image Size" msgstr "Velikost vrstvy dle obrázku" @@ -6142,12 +6156,12 @@ msgstr "Nastavit klávesové zkratky" #: app/dialogs/preferences-dialog.c:551 -#, fuzzy msgid "" "To edit a shortcut key, click on the corresponding row and type a new " "accelerator, or press backspace to clear." msgstr "" -"Stiskněte novou klávesovou zkratku nebo ji vymažte stisknutím Backspace" +"Klávesovou zkratku upravte kliknutím na odpovídající řádek a stisknutím nové " +"klávesové zkratky nebo ji vymažte stisknutím Backspace." #: app/dialogs/preferences-dialog.c:595 msgid "" @@ -6769,28 +6783,28 @@ msgstr "Velikost tisku" #. the image size labels -#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:241 +#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:222 #: app/widgets/gimptemplateeditor.c:236 msgid "_Width:" msgstr "_Šířka:" -#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:248 +#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:225 #: app/widgets/gimptemplateeditor.c:243 msgid "H_eight:" msgstr "_Výška:" #. the resolution labels -#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:338 +#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:273 #: app/widgets/gimptemplateeditor.c:363 msgid "_X resolution:" msgstr "Rozlišení _X:" -#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:345 +#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:276 #: app/widgets/gimptemplateeditor.c:370 msgid "_Y resolution:" msgstr "Rozlišení _Y:" -#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:357 +#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:269 #: app/widgets/gimptemplateeditor.c:383 #, c-format msgid "pixels/%a" @@ -7405,11 +7419,11 @@ msgid "%d minutes" msgstr "%d minut" -#: app/display/gimpdisplayshell-dnd.c:96 +#: app/display/gimpdisplayshell-dnd.c:98 msgid "Drop New Layer" msgstr "Pustit novou vrstvu" -#: app/display/gimpdisplayshell-dnd.c:140 +#: app/display/gimpdisplayshell-dnd.c:142 msgid "Drop New Path" msgstr "Pustit novou cestu" @@ -8868,12 +8882,12 @@ msgstr "_Štětec" #: app/tools/gimppaintoptions-gui.c:103 app/widgets/gimpbrushselect.c:201 -#: app/widgets/gimplayertreeview.c:330 +#: app/widgets/gimplayertreeview.c:332 msgid "Opacity:" msgstr "Krytí:" #: app/tools/gimppaintoptions-gui.c:108 app/tools/gimpselectionoptions.c:374 -#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:323 +#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:325 msgid "Mode:" msgstr "Režim:" @@ -9014,9 +9028,8 @@ msgstr "Střed X:" #: app/tools/gimprotatetool.c:190 -#, fuzzy msgid "Center Y:" -msgstr "Střed X:" +msgstr "Střed Y:" #: app/tools/gimpscaletool.c:91 msgid "Scale" @@ -10026,14 +10039,12 @@ msgstr "Pozadí: %d, %d, %d" #: app/widgets/gimpdock.c:348 app/widgets/gimpdock.c:359 -#, fuzzy msgid "Close all tabs?" -msgstr "_Zavřít odrážku" +msgstr "Zavřít všechny odrážky?" #: app/widgets/gimpdock.c:354 -#, fuzzy msgid "Close all Tabs" -msgstr "_Zavřít odrážku" +msgstr "Zavřít všechny odrážky" #: app/widgets/gimpdock.c:361 #, c-format @@ -10041,6 +10052,8 @@ "This window has %d tabs open. Closing the window will also close all its " "tabs." msgstr "" +"Toto okno má otevřeno %d odrážek. Zavření okna také zavře všechny jeho " +"odrážky." #: app/widgets/gimpdock.c:474 msgid "You can drop dockable dialogs here." @@ -10273,24 +10286,24 @@ msgid "Set Item Exclusive Linked" msgstr "Nastavit položku exkluzivně viditelnou" -#: app/widgets/gimplayertreeview.c:250 +#: app/widgets/gimplayertreeview.c:252 msgid "Reorder Layer" msgstr "Přerovnat vrstvu" -#: app/widgets/gimplayertreeview.c:311 +#: app/widgets/gimplayertreeview.c:313 msgid "Keep transparency" msgstr "Zachovat průhlednost" -#: app/widgets/gimplayertreeview.c:846 +#: app/widgets/gimplayertreeview.c:848 msgid "Empty Layer" msgstr "Prázdná vrstva" -#: app/widgets/gimpmessagebox.c:458 +#: app/widgets/gimpmessagebox.c:460 #, c-format msgid "Message repeated %d times." msgstr "Zpráva se opakuje %dkrát." -#: app/widgets/gimpmessagebox.c:460 +#: app/widgets/gimpmessagebox.c:462 msgid "Message repeated once." msgstr "Zpráva se opakuje jednou." @@ -10322,16 +10335,12 @@ msgid "Invalid UTF-8" msgstr "Neplatné UTF-8" -#: app/widgets/gimpsizebox.c:290 -msgid "Keep aspect ratio" -msgstr "Zachovat poměr stran" - -#: app/widgets/gimpsizebox.c:574 +#: app/widgets/gimpsizebox.c:451 #, c-format msgid "%d x %d dpi" msgstr "%d × %d dpi" -#: app/widgets/gimpsizebox.c:578 +#: app/widgets/gimpsizebox.c:455 #, c-format msgid "%d dpi" msgstr "%d dpi" @@ -10773,8 +10782,8 @@ msgid "Image Editor" msgstr "Editor obrázků" -#~ msgid "Y:" -#~ msgstr "Y:" +#~ msgid "Keep aspect ratio" +#~ msgstr "Zachovat poměr stran" #~ msgid "Transformations do not work on layers that contain layer masks." #~ msgstr "Transformace nefunguje na vrstvách, které obsahují masky." diff -uraN gimp-2.2.0/po/da.gmo gimp-2.2.1/po/da.gmo --- gimp-2.2.0/po/da.gmo 2004-12-19 03:11:53.000000000 +0100 +++ gimp-2.2.1/po/da.gmo 2004-12-28 16:58:41.000000000 +0100 @@ -353,7 +353,7 @@ did not save indexed colormaps correctly. Substituting grayscale map.YYellowYellow:You are trying to create an image with a size of %s.You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your GIMP installation is incomplete:Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_All_Anchor Layer_Antialiasing_Arbitrary Rotation..._Artistic_Aspect_Auto_B_BG Color_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Buffer_By Color_C_Channels_Clear Errors_Clear Undo History_Close_Close Tab_Clouds_Color Tools_Colors_Configure Color and Opacity..._Context_Context Help_Copy_Copy Named..._Create Image from Template..._Crop Image_Curved_Dark Check Color_Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Desaturate_Detach Tab_Device Status_Dialogs_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Enable layer & channel previews_Enormous_Equalize_FG Color_File_Fill with:_Fit Image in Window_Flatten Image_Flip Segment_Flip Selection_Float_Font_Fonts_G_Generic_Gigantic_Gradient_Gradients_Grayscale_Grayscale copy of layer_Grow..._Guides_Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Info Window_Intersect with Selection_Invert_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Left Neighbor's Right Endpoint_Light Check Color_Light Effects_Lightness:_Linear_Linked_Load Left Color From_Lower Channel_Lower Layer_Lower Path_M_Manually_Map_Mask_Mask to Selection_Maximum number of colors:_Medium_Merge Palettes..._Merge imported paths_Migrate GIMP 2.0 user settings_Misc. Stuff_Mode_Module Manager_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._Padding Color_Paint Tools_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Posterize..._Preferences_Preview_Preview Size_Previous tip_Print Size..._Properties_Quick Mask Active_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Reassign shortcut_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Remove unused colors from final palette_Render_Replace_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Order & Visibility_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Right Endpoint_Right Neighbor's Left Endpoint_Rotate_Saturation:_Save_Save Left Color To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Scale imported paths to fit image_Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Show Image Selection_Show in Toolbox_Sinusoidal_Small_Smudge_Snap distance:_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tool_Tools_Transfer layer's alpha channel_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Visible_Web_Web browser to use:_White (full opacity)_White Balance_Width:_Wrap around_X resolution:_X:_Xtns_Y_Y resolution:_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for token %sinvalid value '%s' for token %smillimetermillimetersminuten/apercentpicapicaspixelpixelspixels/%apixels/%spointpointssecondtips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: GIMP /gnome-cvs Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-19 03:11+0100 +POT-Creation-Date: 2004-12-28 16:58+0100 PO-Revision-Date: 2004-12-12 17:07+0100 Last-Translator: Ole Laursen Language-Team: Danish diff -uraN gimp-2.2.0/po/da.po gimp-2.2.1/po/da.po --- gimp-2.2.0/po/da.po 2004-12-19 03:11:20.000000000 +0100 +++ gimp-2.2.1/po/da.po 2004-12-28 16:58:26.000000000 +0100 @@ -81,7 +81,7 @@ msgstr "" "Project-Id-Version: GIMP /gnome-cvs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-19 03:11+0100\n" +"POT-Creation-Date: 2004-12-28 16:58+0100\n" "PO-Revision-Date: 2004-12-12 17:07+0100\n" "Last-Translator: Ole Laursen \n" "Language-Team: Danish \n" @@ -1101,11 +1101,11 @@ msgid "Remove dangling entries" msgstr "Fjern ekstra punkter" -#: app/actions/documents-commands.c:252 app/actions/file-commands.c:163 +#: app/actions/documents-commands.c:251 app/actions/file-commands.c:163 #: app/dialogs/file-open-dialog.c:198 app/dialogs/file-open-dialog.c:249 #: app/dialogs/file-open-location-dialog.c:193 -#: app/display/gimpdisplayshell-dnd.c:332 app/widgets/gimplayertreeview.c:802 -#: app/widgets/gimptoolbox-dnd.c:123 +#: app/display/gimpdisplayshell-dnd.c:334 app/widgets/gimplayertreeview.c:804 +#: app/widgets/gimptoolbox-dnd.c:125 #, c-format msgid "" "Opening '%s' failed:\n" @@ -1618,115 +1618,115 @@ msgid "Zoom all" msgstr "Zoom 100%" -#: app/actions/gradient-editor-actions.c:582 +#: app/actions/gradient-editor-actions.c:589 msgid "_Blending Function for Segment" msgstr "_Blandingsfunktion for segment" -#: app/actions/gradient-editor-actions.c:584 +#: app/actions/gradient-editor-actions.c:591 msgid "Coloring _Type for Segment" msgstr "Farve_type for segment" -#: app/actions/gradient-editor-actions.c:587 +#: app/actions/gradient-editor-actions.c:594 msgid "_Flip Segment" msgstr "_Vend segment" -#: app/actions/gradient-editor-actions.c:589 +#: app/actions/gradient-editor-actions.c:596 msgid "_Replicate Segment..." msgstr "_Kopiér segment..." -#: app/actions/gradient-editor-actions.c:591 +#: app/actions/gradient-editor-actions.c:598 msgid "Split Segment at _Midpoint" msgstr "Opdel segment ved _midtpunktet" -#: app/actions/gradient-editor-actions.c:593 +#: app/actions/gradient-editor-actions.c:600 msgid "Split Segment _Uniformly..." msgstr "Opdel segment _jævnt..." -#: app/actions/gradient-editor-actions.c:595 +#: app/actions/gradient-editor-actions.c:602 msgid "_Delete Segment" msgstr "_Slet segment" -#: app/actions/gradient-editor-actions.c:597 +#: app/actions/gradient-editor-actions.c:604 msgid "Re-_center Segment's Midpoint" msgstr "Gen_centrér segmentets midtpunkt" -#: app/actions/gradient-editor-actions.c:599 +#: app/actions/gradient-editor-actions.c:606 msgid "Re-distribute _Handles in Segment" msgstr "Omfordel _håndtag i segment" -#: app/actions/gradient-editor-actions.c:604 +#: app/actions/gradient-editor-actions.c:611 msgid "_Blending Function for Selection" msgstr "_Blandingsfunktion for markering" -#: app/actions/gradient-editor-actions.c:606 +#: app/actions/gradient-editor-actions.c:613 msgid "Coloring _Type for Selection" msgstr "Farve_type for markering" -#: app/actions/gradient-editor-actions.c:609 +#: app/actions/gradient-editor-actions.c:616 msgid "_Flip Selection" msgstr "_Vend det markerede" -#: app/actions/gradient-editor-actions.c:611 +#: app/actions/gradient-editor-actions.c:618 msgid "_Replicate Selection..." msgstr "_Kopiér det markerede..." -#: app/actions/gradient-editor-actions.c:613 +#: app/actions/gradient-editor-actions.c:620 msgid "Split Segments at _Midpoints" msgstr "Opdel segmenter ved _midtpunkter" -#: app/actions/gradient-editor-actions.c:615 +#: app/actions/gradient-editor-actions.c:622 msgid "Split Segments _Uniformly..." msgstr "Opdel segmenter _jævnt..." -#: app/actions/gradient-editor-actions.c:617 +#: app/actions/gradient-editor-actions.c:624 msgid "_Delete Selection" msgstr "_Slet det markerede" -#: app/actions/gradient-editor-actions.c:619 +#: app/actions/gradient-editor-actions.c:626 msgid "Re-_center Midpoints in Selection" msgstr "Gen_centrér midtpunkter i markering" -#: app/actions/gradient-editor-actions.c:621 +#: app/actions/gradient-editor-actions.c:628 msgid "Re-distribute _Handles in Selection" msgstr "Omfordel _håndtag i markeringen" -#: app/actions/gradient-editor-commands.c:84 +#: app/actions/gradient-editor-commands.c:85 msgid "Left Endpoint Color" msgstr "Venstre endepunkts farve" -#: app/actions/gradient-editor-commands.c:86 +#: app/actions/gradient-editor-commands.c:87 msgid "Gradient Segment's Left Endpoint Color" msgstr "Venstre endepunkts farve for overgangssegment" -#: app/actions/gradient-editor-commands.c:186 +#: app/actions/gradient-editor-commands.c:189 msgid "Right Endpoint Color" msgstr "Højre endepunkts farve" -#: app/actions/gradient-editor-commands.c:188 +#: app/actions/gradient-editor-commands.c:191 msgid "Gradient Segment's Right Endpoint Color" msgstr "Højre endepunkts farve for overgangssegment" -#: app/actions/gradient-editor-commands.c:353 +#: app/actions/gradient-editor-commands.c:358 msgid "Replicate Segment" msgstr "Kopiér segment" -#: app/actions/gradient-editor-commands.c:354 +#: app/actions/gradient-editor-commands.c:359 msgid "Replicate Gradient Segment" msgstr "Kopiér overgangssegment" -#: app/actions/gradient-editor-commands.c:358 +#: app/actions/gradient-editor-commands.c:363 msgid "Replicate Selection" msgstr "Kopiér det markerede" -#: app/actions/gradient-editor-commands.c:359 +#: app/actions/gradient-editor-commands.c:364 msgid "Replicate Gradient Selection" msgstr "Kopiér overgangsmarkeringen" -#: app/actions/gradient-editor-commands.c:371 +#: app/actions/gradient-editor-commands.c:376 msgid "Replicate" msgstr "Kopiér" -#: app/actions/gradient-editor-commands.c:386 +#: app/actions/gradient-editor-commands.c:391 msgid "" "Select the number of times\n" "to replicate the selected segment." @@ -1734,7 +1734,7 @@ "Vælg antal gange du ønsker\n" "at kopiere det markerede segment." -#: app/actions/gradient-editor-commands.c:389 +#: app/actions/gradient-editor-commands.c:394 msgid "" "Select the number of times\n" "to replicate the selection." @@ -1742,27 +1742,27 @@ "Vælg antal gange du ønsker\n" "at kopiere det markerede." -#: app/actions/gradient-editor-commands.c:444 +#: app/actions/gradient-editor-commands.c:452 msgid "Split Segment Uniformly" msgstr "Opdel segment jævnt" -#: app/actions/gradient-editor-commands.c:445 +#: app/actions/gradient-editor-commands.c:453 msgid "Split Gradient Segment Uniformly" msgstr "Opdel overgangssegment jævnt" -#: app/actions/gradient-editor-commands.c:449 +#: app/actions/gradient-editor-commands.c:457 msgid "Split Segments Uniformly" msgstr "Opdel segmenter jævnt" -#: app/actions/gradient-editor-commands.c:450 +#: app/actions/gradient-editor-commands.c:458 msgid "Split Gradient Segments Uniformly" msgstr "Opdel overgangssegmenter jævnt" -#: app/actions/gradient-editor-commands.c:462 +#: app/actions/gradient-editor-commands.c:470 msgid "Split" msgstr "Opdel" -#: app/actions/gradient-editor-commands.c:478 +#: app/actions/gradient-editor-commands.c:486 msgid "" "Select the number of uniform parts\n" "in which to split the selected segment." @@ -1770,7 +1770,7 @@ "Vælg antallet af ens dele du \n" "vil opdele det markerede segment i." -#: app/actions/gradient-editor-commands.c:481 +#: app/actions/gradient-editor-commands.c:489 msgid "" "Select the number of uniform parts\n" "in which to split the segments in the selection." @@ -2212,7 +2212,7 @@ #: app/actions/layers-commands.c:232 app/actions/layers-commands.c:234 #: app/actions/layers-commands.c:291 app/actions/layers-commands.c:295 -#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:840 +#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:842 msgid "New Layer" msgstr "Nyt lag" @@ -2225,7 +2225,7 @@ msgid "Set Layer Boundary Size" msgstr "Vælg lagkantstørrelse" -#: app/actions/layers-commands.c:512 app/core/gimplayer.c:255 +#: app/actions/layers-commands.c:512 app/core/gimplayer.c:253 msgid "Scale Layer" msgstr "Skalering af lag" @@ -2237,7 +2237,7 @@ msgid "Layer Mask to Selection" msgstr "Lagmaske til markering" -#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1085 +#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1066 #: app/dialogs/layer-add-mask-dialog.c:62 msgid "Add Layer Mask" msgstr "Tilføjelse af lagmaske" @@ -2793,7 +2793,7 @@ msgstr "Åbn tekstfil (UTF-8)" #: app/actions/text-editor-commands.c:132 app/config/gimpconfig-utils.c:552 -#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:393 +#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:396 #: app/core/gimpbrushgenerated.c:601 app/core/gimpbrushpipe.c:338 #: app/core/gimpgradient-load.c:63 app/core/gimppalette.c:360 #: app/core/gimppattern.c:328 app/tools/gimpimagemaptool.c:608 @@ -4613,7 +4613,7 @@ msgid "FG to Transparent" msgstr "Fg. til gennemsigtig" -#: app/core/gimp-gui.c:148 +#: app/core/gimp-gui.c:153 msgid "GIMP" msgstr "Gimp'en" @@ -4646,40 +4646,55 @@ msgid "Modules" msgstr "Programudvidelser" -#: app/core/gimpbrush.c:531 +#: app/core/gimpbrush.c:534 #, c-format msgid "Could not read %d bytes from '%s': %s" msgstr "Kunne ikke læse %d byte fra '%s': %s" -#: app/core/gimpbrush.c:566 +#: app/core/gimpbrush.c:554 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Width = 0." +msgstr "Fatal fortolkningsfejl i penselfilen '%s': ukendt dybde %d." + +#: app/core/gimpbrush.c:563 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Height = 0." +msgstr "Fatal fortolkningsfejl i penselfilen '%s': filen er ødelagt." + +#: app/core/gimpbrush.c:572 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Bytes = 0." +msgstr "Fatal fortolkningsfejl i penselfilen '%s': filen er ødelagt." + +#: app/core/gimpbrush.c:596 #, c-format msgid "Fatal parse error in brush file '%s': Unknown depth %d." msgstr "Fatal fortolkningsfejl i penselfilen '%s': ukendt dybde %d." -#: app/core/gimpbrush.c:579 +#: app/core/gimpbrush.c:609 #, c-format msgid "Fatal parse error in brush file '%s': Unknown version %d." msgstr "Fatal fortolkningsfejl i penselfilen '%s': ukendt version %d." -#: app/core/gimpbrush.c:595 app/core/gimpbrush.c:715 +#: app/core/gimpbrush.c:625 app/core/gimpbrush.c:745 #, c-format msgid "Fatal parse error in brush file '%s': File appears truncated." msgstr "" "Fatal fortolkningsfejl i penselfilen '%s': filen ser ud til at være afkortet." -#: app/core/gimpbrush.c:603 app/core/gimpbrushgenerated.c:648 +#: app/core/gimpbrush.c:633 app/core/gimpbrushgenerated.c:648 #: app/core/gimpbrushpipe.c:354 #, c-format msgid "Invalid UTF-8 string in brush file '%s'." msgstr "Ugyldig UTF-8-streng i penselfilen '%s'." -#: app/core/gimpbrush.c:610 app/core/gimpcontext.c:1299 -#: app/core/gimpitem.c:479 app/core/gimppattern.c:400 +#: app/core/gimpbrush.c:640 app/core/gimpcontext.c:1299 +#: app/core/gimpitem.c:480 app/core/gimppattern.c:400 #: app/dialogs/template-options-dialog.c:80 app/tools/gimpvectortool.c:339 msgid "Unnamed" msgstr "Unavngiven" -#: app/core/gimpbrush.c:704 +#: app/core/gimpbrush.c:734 #, c-format msgid "" "Fatal parse error in brush file '%s': Unsupported brush depth %d\n" @@ -4847,11 +4862,11 @@ "%s" #: app/core/gimpdatafactory.c:411 app/core/gimpdatafactory.c:414 -#: app/core/gimpitem.c:274 app/core/gimpitem.c:277 +#: app/core/gimpitem.c:275 app/core/gimpitem.c:278 msgid "copy" msgstr "kopi" -#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:286 +#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:287 #, c-format msgid "%s copy" msgstr "%s-kopi" @@ -4915,7 +4930,7 @@ msgid "Rotate" msgstr "Rotér" -#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:259 +#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:257 msgid "Transform Layer" msgstr "Transformér lag" @@ -5283,7 +5298,7 @@ #. pixel size #: app/core/gimpimagefile.c:624 app/dialogs/info-window.c:552 -#: app/widgets/gimpsizebox.c:552 app/widgets/gimptemplateeditor.c:637 +#: app/widgets/gimpsizebox.c:429 app/widgets/gimptemplateeditor.c:637 #: app/widgets/gimptemplateeditor.c:673 #, c-format msgid "%d x %d pixels" @@ -5303,15 +5318,15 @@ msgid "Could not open thumbnail '%s': %s" msgstr "Kunne ikke åbne miniaturefilen '%s': %s" -#: app/core/gimpitem.c:1096 +#: app/core/gimpitem.c:1103 msgid "Attach Parasite" msgstr "Parasitvedhæftning" -#: app/core/gimpitem.c:1106 +#: app/core/gimpitem.c:1113 msgid "Attach Parasite to Item" msgstr "Vedhæft parasit til element" -#: app/core/gimpitem.c:1145 app/core/gimpitem.c:1152 +#: app/core/gimpitem.c:1152 app/core/gimpitem.c:1159 msgid "Remove Parasite from Item" msgstr "Fjern parasit fra element" @@ -5339,37 +5354,37 @@ msgid "Floating Selection to Layer" msgstr "Flydende markering til lag" -#: app/core/gimplayer.c:252 app/pdb/internal_procs.c:152 +#: app/core/gimplayer.c:250 app/pdb/internal_procs.c:152 msgid "Layer" msgstr "Lag" -#: app/core/gimplayer.c:253 +#: app/core/gimplayer.c:251 msgid "Rename Layer" msgstr "Omdøb lag" -#: app/core/gimplayer.c:254 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 +#: app/core/gimplayer.c:252 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 msgid "Move Layer" msgstr "Flyt lag" -#: app/core/gimplayer.c:256 +#: app/core/gimplayer.c:254 msgid "Resize Layer" msgstr "Ændring af lagstørrelse" -#: app/core/gimplayer.c:257 +#: app/core/gimplayer.c:255 msgid "Flip Layer" msgstr "Vend lag" -#: app/core/gimplayer.c:258 +#: app/core/gimplayer.c:256 msgid "Rotate Layer" msgstr "Rotér lag" -#: app/core/gimplayer.c:341 app/core/gimplayer.c:1129 +#: app/core/gimplayer.c:339 app/core/gimplayer.c:1110 #: app/core/gimplayermask.c:236 #, c-format msgid "%s mask" msgstr "%s-maske" -#: app/core/gimplayer.c:387 +#: app/core/gimplayer.c:385 #, c-format msgid "" "Floating Selection\n" @@ -5378,39 +5393,39 @@ "Flydende markering\n" "(%s)" -#: app/core/gimplayer.c:1055 +#: app/core/gimplayer.c:1036 msgid "Cannot add layer mask to layer which is not part of an image." msgstr "Kan ikke tilføje lagmaske til lag som ikke er en del af et billede." -#: app/core/gimplayer.c:1062 +#: app/core/gimplayer.c:1043 msgid "Unable to add a layer mask since the layer already has one." msgstr "Kan ikke tilføje en lagmaske da laget allerede har en." -#: app/core/gimplayer.c:1069 +#: app/core/gimplayer.c:1050 msgid "Cannot add layer mask to a layer with no alpha channel." msgstr "Kan ikke tilføje lagmaske til et lag uden en alfakanal." -#: app/core/gimplayer.c:1079 +#: app/core/gimplayer.c:1060 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "Kan ikke tilføje lagmaske med andre dimensioner end det angivne lag." -#: app/core/gimplayer.c:1183 +#: app/core/gimplayer.c:1164 msgid "Transfer Alpha to Mask" msgstr "Overfør alfa til maske" -#: app/core/gimplayer.c:1343 +#: app/core/gimplayer.c:1324 msgid "Apply Layer Mask" msgstr "Anvendelse af lagmaske" -#: app/core/gimplayer.c:1344 +#: app/core/gimplayer.c:1325 msgid "Delete Layer Mask" msgstr "Sletning af lagmaske" -#: app/core/gimplayer.c:1445 +#: app/core/gimplayer.c:1426 msgid "Add Alpha Channel" msgstr "Tilføj alfakanal" -#: app/core/gimplayer.c:1467 +#: app/core/gimplayer.c:1448 msgid "Layer to Image Size" msgstr "Lag til billedstørrelse" @@ -6868,28 +6883,28 @@ msgstr "Udskriftsstørrelse" #. the image size labels -#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:241 +#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:222 #: app/widgets/gimptemplateeditor.c:236 msgid "_Width:" msgstr "_Bredde:" -#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:248 +#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:225 #: app/widgets/gimptemplateeditor.c:243 msgid "H_eight:" msgstr "_Højde:" #. the resolution labels -#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:338 +#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:273 #: app/widgets/gimptemplateeditor.c:363 msgid "_X resolution:" msgstr "_x-opløsning:" -#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:345 +#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:276 #: app/widgets/gimptemplateeditor.c:370 msgid "_Y resolution:" msgstr "_y-opløsning:" -#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:357 +#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:269 #: app/widgets/gimptemplateeditor.c:383 #, c-format msgid "pixels/%a" @@ -7513,11 +7528,11 @@ msgid "%d minutes" msgstr "%d minutter" -#: app/display/gimpdisplayshell-dnd.c:96 +#: app/display/gimpdisplayshell-dnd.c:98 msgid "Drop New Layer" msgstr "Drop nyt lag" -#: app/display/gimpdisplayshell-dnd.c:140 +#: app/display/gimpdisplayshell-dnd.c:142 msgid "Drop New Path" msgstr "Drop ny bane" @@ -9077,12 +9092,12 @@ msgstr "Malerpensel" #: app/tools/gimppaintoptions-gui.c:103 app/widgets/gimpbrushselect.c:201 -#: app/widgets/gimplayertreeview.c:330 +#: app/widgets/gimplayertreeview.c:332 msgid "Opacity:" msgstr "Ugennemsigtighed:" #: app/tools/gimppaintoptions-gui.c:108 app/tools/gimpselectionoptions.c:374 -#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:323 +#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:325 msgid "Mode:" msgstr "Tilstand:" @@ -10503,25 +10518,25 @@ msgid "Set Item Exclusive Linked" msgstr "Sæt element eksklusivt kædet" -#: app/widgets/gimplayertreeview.c:250 +#: app/widgets/gimplayertreeview.c:252 msgid "Reorder Layer" msgstr "Omordn lag" -#: app/widgets/gimplayertreeview.c:311 +#: app/widgets/gimplayertreeview.c:313 #, fuzzy msgid "Keep transparency" msgstr "Behold gennemsigtighed" -#: app/widgets/gimplayertreeview.c:846 +#: app/widgets/gimplayertreeview.c:848 msgid "Empty Layer" msgstr "Tomt lag" -#: app/widgets/gimpmessagebox.c:458 +#: app/widgets/gimpmessagebox.c:460 #, c-format msgid "Message repeated %d times." msgstr "Meddelelse gentaget %d gange." -#: app/widgets/gimpmessagebox.c:460 +#: app/widgets/gimpmessagebox.c:462 msgid "Message repeated once." msgstr "Meddelelse gentaget én gang." @@ -10553,17 +10568,12 @@ msgid "Invalid UTF-8" msgstr "Ugyldig UTF-8" -#: app/widgets/gimpsizebox.c:290 -#, fuzzy -msgid "Keep aspect ratio" -msgstr "Fast formatforhold" - -#: app/widgets/gimpsizebox.c:574 +#: app/widgets/gimpsizebox.c:451 #, fuzzy, c-format msgid "%d x %d dpi" msgstr "%d x %d punkter" -#: app/widgets/gimpsizebox.c:578 +#: app/widgets/gimpsizebox.c:455 #, fuzzy, c-format msgid "%d dpi" msgstr "dpi" @@ -11023,6 +11033,10 @@ msgid "Image Editor" msgstr "Billedredigering" +#, fuzzy +#~ msgid "Keep aspect ratio" +#~ msgstr "Fast formatforhold" + #~ msgid "Y:" #~ msgstr "y:" diff -uraN gimp-2.2.0/po/de.gmo gimp-2.2.1/po/de.gmo --- gimp-2.2.0/po/de.gmo 2004-12-19 03:11:53.000000000 +0100 +++ gimp-2.2.1/po/de.gmo 2004-12-28 16:58:41.000000000 +0100 @@ -1,257 +1,248 @@ -[ J ̕&kG9GALNi<Gk@21;dPO2A9t-9;7R  - - -  - -'2:B^x0 -$,4 C Q ] -k -v   K,.1!5GN]d -  -( ;ET -]hw*6M`}6K_#s - ,@ H R _iy13!( -   -,7HZjA{J< X ft !*AS dr -&$AH N Xfm"  -/C7W    m {   C7B=z@6d03<#N!r   -"8Phz,'AI \j ! !6? H Vcw~  .5 5C7y8),A]u2 OAm%&411#c   --8@ FT jw0    )Da+j   - $3Xkz ("=`v  BK\ dq "" .GP -b m{ -),!0#R#v!%.0 7CTh{#-% 2H^y  - - - " ' 5BRbu  -- 6 :DIO`s    ,9@F%L!r & $7 IWf v   +HZi - --    - $7Jck~   :?Z8   -$/5 -K V d p -} -   > ;\l~ ! 0=BZm  # -1< -T_ w     -)*:en!.# "1Tq& ,##GN ]k~''"8TFnT - $: Mn  -   -? EQZ co($=6 <W?A79Nc9B&=if>CMJg DP` r      !8M`t;BKj  -      -$  / 9  I W j  -{          -4 -H -(a - - - - - - - +Z J &kGr9GA<N~i<7kt@2!;TPO219d-9;7B z + + +  + +"*2Nh~0 + $ 3 A M +[ +f q ~  K.1!%7>MTp +  + +5D +MXgz*6=Pm&;O#c +0 8 B OYi1~3 +  +'8JZAkJ< H Vdt 1C Tbz +&$ 18 > HV]v}"  +37G    mk p ~   C72=j@6d 3<#>!b  (@Xj|,19 LZ z !&/ 8 FSgnu { .5537i8),1Me2 O A]%&41!#S w  +(0 6D Zg0  4Q+Z   + $#H[j "-Pf u 2;L Ta| ""7@ +R ]k +),! #B#f!%. '3DXk~#-%"8Ni~  + + +  %2BRet  +- & *49?Pcw    )06%<!b & ' 9GV fs   8JY +r +}-    + ':S[n   :?J8   +% +; F T ` +m x +   > +L\n  -2J]v   +!, +DO gu    +**U^!p.#"!Da& ,#7> M[n''(DF^T * =^ u +   / 5AJ S_u(~$=6<G?A79>cx9B=Yf>C=Jg 4@P bp     (=Pdw+2;Zu  +     +   )  9 G Z  +k v         +$ +8 +(Q +z + + + + + +  - -O -  -- 8      -$  /  ; G  P .\     -          +  8 E V j  u c zr1HQcr{&' B  O Yc r     :Wl{  -   !8H -MXmH -  -H !VBx1 *1A -Q\ a m`yCt10 ! .; -M -Xcz ( - -'H2 -{  -    #16 > KW_}  4@Uo    K3:6n" # 2$<a|   (+ -)6*`!/*AR'o - % 7 F O ^ w       !!2! I!j!! !!!!!!!"4"F" M"Z"q"""""-" $$%$8$<$ V$`$f$v$ $$3$$$$% % -*% 5% A%N%l%%%%%% % &#& *&6&K&_&n&@v&&-&& & ' ' ' *'7'U' \'h' m' y'''''' ( ( ($( ;(I(a( z(( -((( (( () -)%):)C)K)^)c)k)t)|))) )))) -)# *-*F*_*u*{***+*** * + -+ + *+8+M+a+z++ ++ +++,",:,C,Y, y,,,,,$,,,,- -#- +- 9-E-X- ]- j-w- -- - --- --- - --.'.>.T.r..... ..../ -/ //0/D/W/ j/ t/~// / / ///// 0 -0 #0-0 H0 U0a0 {0 0 0,00!011,1)I1 s11 1 11111 1 11B 2AN2222 2222 33$393A3I333334 -44 $424I4 [4h4z44"4!4!4 585Q5 i5 s5 }5555 55V5+6 G6(Q6z6"66 6 666%7 -)7 47>7F7U7i7 -y77 77 77 7 7777 8 8 *888&R8,y8 888 -8 -888989P9c94u999 -999 -9 99 : :#:+:2: O:[: p:!|:: :: ::: ; ;#;4; F;S;Z;;b;?;;;; <<6<S<4<*=3=-;= i>s>|> -> >#>>-> ??'? q1q7q1q5&rH\rArr;rs!ss tt uv}Pw*wBx,tkt`U@0Ơ+ <J6Lo4#9]G&%nXUOCĤ -ͤ ؤ   -#@ HV_et{ť ץ   #+1 4>Ql  ƦϦ    ! - 7EY` -gr z Ƨ̧ۧ  -(: JXg w   ŨҨ  . :FU^o   -ܩ(ARd t    ͪ ") <IL U _ -i -t  ƫ̫ҫث߫  "< DQX_g -ά ݬ  * 7C FPU[ní  ! -) 4A Q _ -m x     ȮҮ ڮ -  ) 6BK R`pw     ͯ ܯ   - 9F[ n{(Ұ ":L4f1/ͱ#C KX^r# Ȳ"1 -9DVgnw ɳ۳ -  - -* 0>DTZa - -ƴ˴ )-36EI -OZaf5j ̵ѵص ! % Fg - ¶ ɶ Ӷݶ .A8^*nݸ[L=PQ7NoغFH|D 4QK[ҼW.5E1=47r;  -  -   #/ ? -MX[l -"޿;8K -_ jv      - -   2 >J O]nlD^76+ 3@ G hv !("?b~ -  ""?bz,;$4Yb } &*9d - -  * 7 C P]7p9417NU -2OWgw:B^>~'.$3Xo:  -( 1=Oe}8- (1 N [g 2  -"3L>`       "     +0 AKS`FFOB@.S$Y*X,6@/--[k - -   '5$]$1+$* -=0H0y.-+=Y` -hs  !=7EuEI9KC( "6KR"#AAB""IE!Z|$ 3Kds{   1 -+6 = -J Ua| -* & / ; -E P ](~#$'Hp'.(>V_px " .8H&h&33)K u' -4'%;M(;26!6X4#=&.@Rm+**.Yx +=&N u ' .< L -V=a   #(.BUn  '5 JV ]2i3#>Us 4CX n|  1 >9K      <DWj }  )N<# 4>O _iy    - $8KP`pJ '?Qj{"+  -)G]}($8]p%.H^#t   0 &8_\r[+21*d#$0 )2 B9N1 '2 O p$'*$ V.` $3X q} )$ 1E K W ak --& tSliHicafwkahkhk=IXi|  - -Fdz  ! B )`   & !     - 9 -Z -o - - - - - - - - -   ) 7  W  c o        ( I O V  ]  -k v    X            +9B=Z    -  + H -T_p 0KP^f S Yc  -,7 I Wdw$$D @ M[m  - + +O +  + (      +    + 7  @ .L {    +           ( 5 F Z q u  c z r!8ASbk{&' B ? IS b p|   *G\kt  +   (8 +=H]tH| +  +H!FBh1 !1 +AL Q ]`iCd10   + += +HSjz ( +  +H" +k v +    !& . ;GOmt | $0E_u    K3*6^"  "$,Ql   (+)&*P!{/*1B'_ +  $ - < U h         ! '!H!c! t!~!!!!!!!"$" +"8"O"`"u"""-"##$$$ 4$>$D$T$ d$p$3v$$$$$ $ +% % %,%J%i%%%%% %%& &&)&=&L&@T&&-&& && & & ''3' :'F' K' W'c'z'''' ' ' '( ('(?( X(d( +z((( (( (( +())!)))<)A)I)R)Z)l)) )))) +)#) *$*=*S*Y*a*~*+*** * * +* * ++++?+X+q+ ++ ++++"+,!,7, W,e,k,p,v,$,,,,, ,- - -#-6- ;- H-U- +m- x- +-- --- - ---..2.P.l.~... ..... +. ../"/5/ H/ R/\/e/ v/ / ///// / +/ 0 0 &0 30?0 Y0 e0 q0,}00!000 +1)'1 Q1^1 v1 11111 1 11B1A,2n222 2222 22333'333333 +33 44'4 94F4X4x4"4!4!445/5 G5 Q5 [5e5u55 55V5+5 %6(/6X6"^66 6 666%6 +7 77$737G7 +W7b7 q77 77 7 7777 7 7 88&08,W8 888 +8 +88889.9A94S999 +999 +9 999 9: :: -:9: N:!Z:|: :: :::: :;; $;1;8;;@;?|;;;;;;<1<4<==-= G>Q>Z> +j> u>#>>-> >>? ?$?,?C?L? +U? `?l?@&@:@ C@P@Y@a@g@}@ +@ +@@@ +@ @ @@@A #A -A!7AYA ]AkAA A AAAA AAA BB +*B5BGB ZBhB }BB +BBBBBB B! +C,C!JC#lCC C +C9CUC=ND<D=DE" E?0EpEE EEEE(E,EFF%F6F +GFRFhF}FJF FFFG +G 8GEG`G zG GGGGG;G,HFH UH bHnHH H HH H H HHH II6ISIeIyIIIIIIIJJ+-JYJqJJJ J J JJ J JJ#K 3K?K QK]KrKK6KKKKL L7&L^L|LLLLLL L LLM #M0M NMZMoMuM +|M +MM MMM MM +MMM NN +'N2NRN oN{NNNN NNNO$O8O4MOOOOOOO +P.$PESPP P PP P PPQ Q (Q 4Q +@QKQ \Q +hQsQQ QQQQQNtR +RRRRR RSS2SHS#bSSS SSSST#"TFTdT xTTTTT$T U+U @UJUZUtUU!UUUU +UVV 'V4VSVnVVVV VVVWW7WNW gWuWW WWWWWWX&X +8XCXSX"mXXX XXXXY0Y=@Y6~YSYJ ZTZmZZ ZZZZZZZ[ ,[8[G[\[o[ [[[[ [[[\,\F\a\y\ \\\\\\\])]N]5^KI_=__*W``'a3aTa?Sb`b2b'ccYe4\f/ff |ggggggggggghh(hEh Zh fhsh;|hh hhh hi i&i6i#Ji ni{i i i&ii +iijj-j"?jbjzjjjjjjjkk$k 5kBk[k ok{kkkk+kkkk kl ll &l +4l?lElLlTl ]l il8vlvl&m-mEm]m em rm~m m!mmmmn/nLninpnnnnnn n n n nno o o!o1o @oLo ]o iouoo!ooo(op#"p Fp Tpaphp +np yp ppppp +p p +p pqqKq1hq7q1q5rH:rArr;Ps!ss ptt xuv}.w*wBxyz zz%{ +{9{)@{5j{{1P|0|0|1|(}C?}}S~,X~2~ ~AA*]4 "/MG9j2ZN - +.9L^ouzo- FSe u  Č +ʌ<Ռ   7ASgwŎԎ! 0=Q +alqz3;ŏ;=ߐF -7 < IW]e wΒ3#;_wʓٓ 'F0w + +   Δ ۔  !!& H T+`K0ؕQ [$5PGC-Oj otejJ~p4ow<?ʝ> +tIt`30ՠ۠  (6*oaѡӡڡ4#;G%LXrUˣO!q +  ¤̤ դߤ# &4=CRYbu  ĥ ҥ   /J i  ̦٦    #7> +EP Xem ا  + (6E Uc w  è٨  $3<M g q +~ɩ۩0B R s }  Ϫ ժ '* 3 = +G +R]v  ī̫ԫ   "/6=E_n +  ǬӬ۬  ! $.39Lgpx  έܭ +  / = +K V d q {   ®ɮ +Ϯڮ    ) 0>NU ^ k y   Ưٯ߯   $9 LY_hy(ٰ*4D1y/۱! )6<P#a Ų̲ܲ" +"4ELUk |γ + + + "28? +_j{ +Դ  #' +-8?D5H~  ̵!  $E +e p|  ȶ ϶ݶ.8<u*n[*=PĹQNgoF&|mD4/Kd[W 5dE1=7P; ľξ +վ  +     ++69J +_js|"ҿ;ڿ) += HT t     + +    ( -;nJD<76   % FT lx!"@\n +  ""@X,r;$7@ [| *Bb +} +    ! .;7N94,3 +-5EUf{:B<>\ $6M:e  -C[8v-  , 9E e2s *>>}            + )S>FFO @p.1$`Y*X +6c@/- 9I +e +p {'$;$`1+ +0&0W.- 7> +FQl  !=ESEI9)Cc( "K0"|#AA "b"IE!8Z$i )BQY _l  1 +   +( 3?Z +u*    +# . ;(\#'&Nf'|.4=NV  &&F&m33)) S_t' +4';+(g;26664m#= 0Kd~+** 7Vm~  &, Sa p~  * +4=?}    3L_x   (4 ;2G3z#>3Q`o!6 LZn   9) cp w   "5H [g  )Nu< - =GWt}     ).>NaJt /HY"m+  +%;[z($;Nc% &<#Rv   0 &=\P[ 2*B#m$0 9,1f '2 - N$o'*$V `c $6 O[ u)$# ) 5 ?Ig +-& tSeli&ica^f`wk?hIhk'6GZl  +  $BXm  )>  h r &z !      +8 +M + f +t + + + + + + + + +    5  A M ] o      ( ' - 4  ;  +I T  ] g Xv            =8v    +   & +2=Nb |).^D 1 7A  -"8OS"m  -&,3 9 GS&s )a  n -z -O&\|3 '3:M|]OA9Z  -    *9 O p-|  l - -9DL S]q " 5?G_ fp . %; !a  !      -  ]!Dm!B!! "%" E"Q"g"z" """""'"##-B#:p#5#+# $,$9D$ ~$$$:$$.$@.%o%% %% %%%$ &.&D&Y&p&&&&&&& ':'T'e'|'''%''(*(<(T(s((&( (())4)Q)h)()))})d+m+ +++ -+++++ -,G,X,l,,, , , , ,/,/ --<-,j------. ..8. T.a.li. .=./ 6/ D/Q/ b/ p/*}///// /(/#050K0`0y0 ~0 0000001 $121P1o1~111 11122 ;2E2M2V2q22'2222 -33+"3N3n3%3 3333@3:4B4I4Q4f4z4444445'575L5[5r55555!5%6 -6;6C6I6P60k666 66 66 677 7,7>7P7k77 777777 8 8?8S8l8,8+88 8 -99 -999!M9o9t9 -{9 99999 -: - : -:)!: K: X: e:$q:::::: -:#; +;9;#K; o; }; ;,;;.; <"<"A<1d< <<<<<<=== =1=G==&q>>> ->>>>> ?$?GHG OG \GfG mGzG GGGG GG G,GH&H 7HXHhH~HHHHH HHHMH<IIIII I$I&IJ6JJJQJ ML -WLbL rL L%L L8L LMM1M8MAM WMaMpMMM{NN N NN NNNNOO-OKO`O tO ~OOOO OO!OOP$P?PTPiP P PP PPP P Q !Q.QJQ gQuQ QQ QQ#Q@ -RKRPR VR#wR$R*R*R&S=SQS@cS^S?T>CTPTT;TDU[UrUUUU U8U>U)V:VSVkV }V%VVVvVeWuWWWWWWW -XX,XJX]XoX=X,XXYY%)YOYdY -vYYYYY YY ZZ3ZSZgZ{ZZZZ#Z,Z'[*A[(l[5[[5[ \0\E\Y\o\\\\:\;]<]R] e]q]]]M]$^+^ 4^.B^q^W^'^_ !_/_6_K_ a_ n_ {__ _ _______```3` N`\`u` -~` `"``"```a7aGa"ga"aaaaab+bKb?eb)bb"b! -c,cKc]cIxcMcd$d?d)Xddd d ddddd ee.e=eRegeze -eeejdf -ff -fffgg)gEg[g#xggggggh'h#Dhhhhhhhhh$i:iYi qi~iiii!iij -,j7jHjej{j$jj jj"j k~ "'-E] xˀ -  Q rǁ݁ -(3\r6&;[v!Ãڃ#.C!cք89A{ ΅  -& /<EL#4Ldm(,͇#; R$s# Ȉو" , 4 AM ^l -}ɉى$7+Jv'& ؊  -%+:N We z -  ы`3K>.3n!\I!Ԏ!ԏ% -0.TՓ*?_ <2[f^u_ԙ24\gĚ\c0E47YlXƝDdΟ YD5j֥ Ab2|@_ P6\  ѩ - -̪&ת'&@ VdwΫޫ a tح7L`w" ˮ׮  -+ L9YP1$g /<D M Wa v+"޳&=('f%Դ+<A G"SvM$ֵ - -.BViz/3 -. -S9+n(Mݹ_+yKfQh!O߾tB_d<_3S2"U\dv?0&K2kBW^!e       1* \i    :IPar   ""4 CPX!`  " ,4<!Df o }$5FVf$ 2HWfo -  6Ni,    -G \fx - - -    ) :FN U blt|  -   :;V   %47 @JQd "2!( 9FM T bo    ! 1 ;E -N Y gs  -  ",=N_n  (5FXq; (0,Y-0<X ` -mx%%) -%0@,T -  -2FZ p -|     -! ' -9D MW"\ -G (Q -z ''&&F -m -xW9:t[zo/7:-|R>5 U5WVn~-er91L Q)#`5tTpl?dY-'G=bj-u73 \RY| B+JPsM/ =}KFt 90#% u$ ~W\v!Pc]Ex( ?X U)[+'hep`w0 0i lLQIXe}]K836 ^M z{"+) n%/+C,TD9EL:Lv1]><m\)Z @ 4]}Dy{87 sSU%K -R- KVB 7 0pHa2oTf|?@> #1~ ;Ld!.545wz -[M]C 0 - uXg'b#~("q<U6k; r],oDNt $  z )N12 A lE0! fdJc;qIB'["{@ -]V  ]t7N-e ~f U?vJLvAg_pjW Ah){Wml * (S. W>xl*VoBISoD H8 <;yQ  cHY@.` X" ;sOFm,FhC.V$tU"j}Yf1T qE>{'/CKOhEm!rkC [Qj -A[K WF=0X$ |H1e,#k*uiha3mG8-@2?EsU qQ? <I dF^9saDIcXBO -zcKZX&N@ [+iu.7vHa>q(2 XqAH6sTD`u$\(c% E'L JO #Qn?g;7N &(m@3u+j.Yqmk`"O`wFg0|<6Pqw$C&zM> J^2xGt<FP}m 2m3 na&HP$;!$O/ tv9 I |ri@"? ji+ ).jI= -f+: # )sa(Q T:>&sj9H AEM$C_R"MVG }^d: ~Y 6K < w?D/o:X ZQf* 9=Zi lc bZ GS7'p1^S}Mkr S A<1 \CPZAapwu{ lB4,Y4 j*1l8{A=b -/2/%t: 8!Uy&(MTSv+ %kbybGye`hy L 4 =gi ;2 @@9SVD~=8iJ{pI_H 8 f ~qBP Ek!Grg~!/&<KTr(P6;ip!5B7V[$xwYGbc -gBJzr*>{c0vg6I7+w#CNS>5%.',xN_d6&_;oO4QZ :J IM,D #"}' ,_y%-h 4#6z!& _) xZn^fU)Mx( ^JWF nR ?= Y J[ ePGbU 4*CO \Z<xQBa\2hY% ynT3vNS3,WW^F 3Nd 4n5P|p |&3rW ZR :*V|9L*kKo.E b  - dy LT n*:8h\z^X-__a0  ]5R/e 3\RxODeA 2G`[`9sF='8%ORHw5, g  lk"dto6 Nf}4. u1-RV + ' 5BUm$$D  +9K ]k +p{ +"-1"Kn   +  %1&Qx )a L +Xcs +{O&\Zb3u +|;OA98r w +    * - N-Z  l  +"* 1;Ogy  %= DN`z % !? a !~      +  ] DK!B!!!%! #"/"E"X" g"t""""'"#"- #:N#5#+## +$9"$ \$h$z$:$$.$@ %M%a% z%% %%$%%&&0&B&Z&y&&&& &&'%'<'Z'r'%'''''(3(L(&l( ((((()()(F)o))})$+-+ @+N+`+ +++++++G+,,,?,N, f, t, , ,/,/,-,,*-W-m----- --- .!.l). .=.. . // "/ 0/*=/h/o/// /(/#// 0 090 >0 L0Z0r00000 001/1>1]1l1 11111 12 2212E2'^222222+23.3%E3 k3y333@334 44&4:4J4_4y444444 5525M55h55!5%5 556 660+6\6s6 66 66 666 6667+7B7 [7i7}77777 778,8,E8+r88 888 88! 9/949 +;9 F9R9i999 +9 +9 +9)9 : : %:$1:V:e:::: +:#: ::# ; /; =; J;,X;;.;;;"<1$< V<d<<<<<<<<<<==&1>X>p> +>>>>>>>>???? ? +?? ? @ @5@O@c@v@$@%@'@&A$.ASA!pA(A +A A AAAB B B_"B.BB+BB8B'C >CKC^C |C$CC C CCCD D)D 8D EDRDdD yDD DD DDDEE*;E%fEEEE E E/E/E--F,[FFF;FFF FG G G&G -G:G AGMGTGZG wGG G,GGG GH(H>HZHmH|HH HHHMH< IFIVI]I mI${I&II6uJJJQJ L +L"L 2L ?L%ML sL8L LLLLLM M!M0MFM\M;NMN _N kNxN NNNNNNN O O 4O >OKOOOiO zOO!OOO$OOP)P @P aPnP vPPP PP PP +Q 'Q5Q RQ`Q }QQ#Q@Q RR R#7R$[R*R*R&RRS@#S^dS?S>TPBTT;TDTU2UHU\U`U eU8qU>UUUV+V =V%IVoVVvV%W5WEWdWWWWWWWW +XX/X=LX,XXXX%XY$Y +6YAYZYtYY YY YYYZ'Z;ZOZcZzZ#Z,ZZ*[(,[5U[[5[[[\\/\C\]\q\:\;\\] %]1]E]]]Mx]$]] ].^1^WD^'^^ ^^^ _ !_ ._ ;_G_ X_ f_r__________ ``5` +>` I`"S`v`"`````a"'a"Jamaaaaaa b?%b)ebb"b!bb ccI8cMcccc)dBdSd bd ddddddddde'e:e +Webewej$f +ff +ffffffgg#8g\gzgggggg#h(hFh]hmhhhh$hhi 1i>iQikii!iii +iij%j;j$Ljqj jj"jjjk-kJk'hk$k kk"k" l.lDlalvl$llllmm".m6Qm"mmmm"mn:n"UnGxn9nZnUUo oooo o p p(p Cp,Pp}p pppppp#pq0qNq#dqqqqqq r#r=rWrqrrr"rr2s`s%t\u@vIv3vww3xOxP>yhy4y-z%zS}B[~>~~  8BRdk{ + Ā ҀQ2GYpʁ܁(2I_6qт6!Pr#Ӄ!#EWk}Ƅۄ9;AY_ o|  ʅׅޅ E R $-E](d,#ׇ $3#X |"Ɉ    , +=HQbv‰$҉+ +6'I&q  Ɗ +ڊ % :[ +` k w`3 >?.~3n\PIJ!!%ʐ֒.fTf ly<2?[rfΘ^5_2\'\#0E4Y,XDߝ$|NDj "2<@o_ 6 S] p +Ω٩ +&' $7N^} aҫ 4A\kڭ  7"Fiz   +Ů+ͮLYFPgw߲   ! 6W`i+r"&='&Nd}%״ "6?MH$ + +Ƶѵٵ):/J3z +.ʶS+MnyM_yKKźfhxs4ҿn_d_aUs2$6Oaz?|@BG0M&~K2kWn^!% GT c p}   1 ) D Q [ipw !2F U bo r~"" ! BK T`w z" !& / =G[z&?N^t$&/F +cn  )?Ul,    + #5 +GR +[fy +       )19BH P] +y  ;OVo ~   ! =GO"i2  +  ,<N am|      +   $0 P^f +oz   +AJMRZi x .F;X (,-C0q<  +*5O%l%) +,>GP_q +w   - +9 D N Xem } +!  + +"<Udmu +G( +7BRW \fu''&& +* +5@GLTY^djs|W91[yo.79-{Q>4 T4WVn},er80K P(#`4tSol>dX-'G=bi,t72 \QY{B*IPsM. =|JEs 8/"% t$ }V\v!Ob\Dx' ?W T([+&hep_w/ 0i kLPHXd}\K725 ^L zz"+( n$ .+C+SC9EK9Kv1\>;l[(Y ? 3\|Dx{86 rSU$J Q, JUA 6 /oHa1oSe|??= #0~ :Lc!-544vy +ZL]B / +tXf'b"~("q;U6j: q\,nCMs #  +y (N01 @ kE/ fcIc:qIB'Z"z@ ]U  ]s7M-d }e U>uJLuAg^pjV Ag){Wll * (S- W=wk*VoAIRnC G7 ;:yQ cGY@-_ X! :rNEm,FgB-V#sT!i|Ye1T pD=z~'.CJNgEm!rkB [Pi AZJ VE<0W# {G1e,"k)thg`2lF7,?2?DrT qP> ;I  dE^8raCHbWBO +zbJYW&N? Z*hu.6vG`=p'1 Xp@H6sTC_t$['b$ D&K JO #Qm>f;6M &(m?2u*j.Xpmk_!N`vFg0|< 5Oq w#C%zL= J]2xFs<FP|l1l2m`%GO#; #O/ tu8 H |qh@!> ji+ (-iH= f*9 " )s`(P S9=&sj8H @EL$C^R"MVF |]c9 ~X 6K ; v>D/n:W ZQe) 8<Yi +lc aY FR6&p0]R}Mkr R A;0 [BPZ@aowuz kA3+X3 i)1k7{@<b +.2/%t: 8 Ty%'MTRv* %jaxaFyd`hx K 3 + <g h:1 ?@9~SUC}=7hJ{pH^G 7 f ~pAO Dj!Gqf} /%<KTq'P5;io 5B6U[$wvXGab fAIyq)>zc/uf5I7*w#BMS>5%-&+wN^c5%_;oN4QY:I HL,D "!}& +_x$-h3"5y % ~_) xZm^eU)Lw' ^IVEnR ?< +Y IZ eOFbT 3)BN [Y<xPAa\1hX$ ynS3uMR2+WV]E 3Mc +4m4O|o +{&3rV ZQ 9*~U{9L*jKn.D a  dx KS m):8g\z]W,^_`0 ]5R.d 3[QwODd@ 2G_Z`9rF<&8$NRHv4+ g  lj!dtn6 Nf}4. u~0,QU Invalid option "%s" Usage: %s [option ... ] [file ... ] @@ -295,7 +286,7 @@ Make sure a proper setup for your display environment exists.GIMP help browserGIMP is not properly installed for the current user. User installation was skipped because the '--no-interface' flag was used. To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Generate optimum paletteGet Monitor ResolutionGiganticGimprc proceduresGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient file '%s' is corrupt: Segments do not span the range 0-1.Gradient:GradientsGradients MenuGrain extractGrain mergeGrayGrayscaleGreenGreen:GridGrid line spacingGrow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_counter-clockwise hue)HSV (clockwise _hue)HTML notation:H_eight:H_elp browser to use:Handle position: %0.6fHard edgeHard lightHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHelp proceduresHex:HighlightsHint for the _docks:Hint for the _toolbox:HintingHinting alters the font outline to produce a crisp bitmap at small sizesHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB color layers.Hue-_Saturation...Hue:HugeI_con & TextI_mageI_mport Path...I_nterpolation:I_nterval:IconIcon & descIcon & textIf available, hints from the font are used but you may prefer to always use the automatic hinterIf enabled, the move tool changes the active layer or path when a layer or path is being picked. This used to be the default behaviour in older versions.If you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.Illegal variable name in environment file %s: %sImageImage + GridImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage ThumbnailsImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage maskImage resolution is out of bounds, using the default resolution instead.Image sizeImage sourceImage typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport paletteImport pathsImported PathIn_kIn_vertIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorIndexed Color ConversionIndexed color layers are always scaled without interpolation. The chosen interpolation type will affect channels and masks only.Info WindowInitial zoom _ratio:Initialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' -InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratioKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard EventsKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine +InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard EventsKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine spacing:Line Width:Line _Style:Line style used for the grid.LinearLinked itemLoadLoad CurvesLoad LevelsLoad Right Color Fr_omLoad curves settings from fileLoad levels settings from fileLoad text from fileLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower Path to _BottomLower channelLower channel to bottomLower layerLower layer to bottomLower pathLower path to bottomM_agnifyM_asterM_ove to Screen...Ma_pMagentaMagenta:MagnifyMake _transparentManage Loadable ModulesMarching _ants speed:Mask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:Max Depth:Maximum _filesize for thumbnailing:Maximum _new image size:Maximum color differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMeasure the rulers and enter their lengths:Median:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMerge vectorsMessage proceduresMessage repeated %d times.Message repeated once.Messages are redirected to stderr.MidtonesMigrate User SettingsMinimal number of _undo levels:MiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMouse WheelMouse Wheel EventsMoveMove AnchorsMove ChannelMove Floating SelectionMove GuideMove Guide: Move LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove ToolMove itemMove layers & selectionsMove selectionMove the current layerMove the current pathMove the selected filter downMove the selected filter upMove to Screen...Move: MultiplyN_umber of colors:Na_vigationNa_vigation WindowNa_vigation preview size:NameName:NavigationNew ChannelNew Channel ColorNew Channel OptionsNew Color from _BGNew Color from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channelNew channel with last valuesNew channel...New color from BGNew color from FGNew gradientNew importNew layerNew layer with last valuesNew layer...New paletteNew path with last valuesNew path...New patternNew vectorsNo brushes available for use with this tool.No filter selectedNo linear gradients found in '%s'No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of _processors to use:Number of grid linesNumber of layers:O_ther...OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset by x/_2, y/2Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the palette selection dialogOpen the pattern selection dialogOpen the selected entryOpening '%s' failed: %sOpening '%s' failed: %sOptions: @@ -347,8 +338,8 @@ did not save indexed colormaps correctly. Substituting grayscale map.YYellowYellow:You are trying to create an image with a size of %s.You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your GIMP installation is incomplete:Your input device settings will be reset to default values the next time you start GIMP.Your keyboard shortcuts will be reset to default values the next time you start GIMP.Your window setup will be reset to default values the next time you start GIMP.Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_All_Anchor Layer_Antialiasing_Arbitrary Rotation..._Artistic_Aspect_Auto_B_BG Color_Background color:_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Bucket Fill_Buffer_By Color_By Color Select_C_Cap style:_Channels_Clear Errors_Clear Undo History_Clone_Close_Close Tab_Clouds_Color Tools_Colors_Configure Color and Opacity..._Context_Context Help_Copy_Copy Named..._Create Image from Template..._Crop & Resize_Crop Image_Curved_Curves..._Dark Check Color_Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Desaturate_Detach Tab_Device Status_Dialogs_Discard Changes_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Ellipse Select_Enable layer & channel previews_Enormous_Equalize_Eraser_FG Color_File_Fill with:_Fit Image in Window_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground color:_Free Select_G_Generic_Gigantic_Gradient_Gradients_Grayscale_Grayscale copy of layer_Grow..._Guides_Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Info Window_Intersect with Selection_Invert_Join style:_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Left Neighbor's Right Endpoint_Levels..._Light Check Color_Light Effects_Lightness:_Line Style_Linear_Linked_Load Left Color From_Lower Channel_Lower Layer_Lower Path_M_Manually_Map_Mask_Mask to Selection_Maximum number of colors:_Measure_Medium_Merge Palettes..._Merge imported paths_Migrate GIMP 2.0 user settings_Misc. Stuff_Miter limit:_Mode_Module Manager_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._Padding Color_Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preferences_Preview_Preview Size_Previous tip_Print Size..._Properties_Quick Mask Active_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Reassign shortcut_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Remove unused colors from final palette_Render_Replace_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Order & Visibility_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Right Endpoint_Right Neighbor's Left Endpoint_Rotate_Saturation:_Save_Save Left Color To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Scale imported paths to fit image_Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Show Image Selection_Show in Toolbox_Sinusoidal_Small_Smudge_Snap distance:_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tool_Tools_Transfer layer's alpha channel_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Visible_Web_Web browser to use:_White (full opacity)_White Balance_Width:_Wrap around_X resolution:_X:_Xtns_Y_Y resolution:_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for icon typeinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetermillimetersminuten/apercentpicapicaspixelpixelspixels/%apixels/%spointpointssecondtips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: GIMP 2.2 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-19 03:11+0100 -PO-Revision-Date: 2004-12-18 12:08+0100 +POT-Creation-Date: 2004-12-28 16:58+0100 +PO-Revision-Date: 2004-12-20 19:12+0100 Last-Translator: Sven Neumann Language-Team: German MIME-Version: 1.0 @@ -402,7 +393,7 @@ Stellen Sie sicher, dass Ihre Anzeige korrekt eingerichtet ist.Hilfe-Browser von The GimpGIMP wurde für den aktuellen Benutzer nicht korrekt installiert. Es wurde keine Benutzerinstallation ausgeführt, da die Option »--nointerface« übergeben wurde. Starten Sie GIMP ohne die Option »--nointerface«, um die Benutzerinstallation durchzuführen.GIMP verwendet für Bilddaten eine begrenzte Menge an Arbeitsspeicher, den sogenannten »Kachel-Cache«. Sie sollten seine Größe so wählen, daß er in den Arbeitsspeicher passt. Bedenken Sie dabei die Menge an Arbeitsspeicher, die bereits von anderen Programmen belegt wird.GIMP verwendet eine zusätzliche gtkrc-Datei für GIMP-spezifische Oberflächen-Einstellungen.GIMP-VersionGIMP warnt den Benutzer, falls versucht wurde, ein Bild zu erstellen, das mehr Speicher belegen würde, als die hier angegebene.GammaAllgemeinDies ist generell ausschließlich für 8-Bit-Anzeigen relevant. Dies legt die Mindestanzahl der für GIMP bereitgestellten Systemfarben fest.Optimale Palette erzeugenQuelle für BildschirmauflösungGigantischGimprc-Prozeduren_Glas-EffekteFarbverlauf:FarbverlaufseditorFarbverlaufseditormenüFarbverlaufsordnerFarbe des linken Segment-Endpunktes Farbe des rechten Segment-EndpunktesFarbverlauf-UIFarbverlauf '%s' ist fehlerhaft: Segmente reichen nicht von 0 bis 1.Farbverlauf:FarbverläufeFarbverlaufsmenüFaser extrahierenFaser mischenGrauGraustufenGrünGrün:GitterAbstand der GitterlinienKanal vergrößernAuswahl vergrößernAuswahl vergrößern umHilfslinieMagnetische Hilfslinien und GitterHilfslinien-ProzedurenHSVHSV (%0.3f, %0.3f, %0.3f)HSV (Farbton _gegen Uhrzeigersinn)HSV (Farbton _im Uhrzeigersinn)HTML_Notation:Höh_e:Zu verwendender Hilfe-_Browser:Markerposition: %0.6fHarte KantenHarte KantenHärteHärte:HöheHöhe:HilfeHilfe-BrowserHilfesystemDer Hilfe-Browser startet nichtDer Hilfe-Browser wurde nicht gefundenHilfe-ProzedurenHex:GlanzlichterFenstertyp-Hint für _Docks:Fenstertyp-Hint für as _Werkzeugfenster:HintingHinting ändert die Schriftränder, um bei kleinen Größen ein schickes Schriftbild zu erzeugen._HistogrammHistogrammHistogrammskalaJournalHorizontalHorizontaler Versatz der ersten Gitterlinie; dies darf eine negative Zahl sein.Horizontaler Abstand der Gitterlinien.Legt fest, wieviele »zuletzt geöffnet«-Einträge im Dateimenü vorgehalten werden sollen.FarbtonFarbton-SättigungFarbton-Sättigung funktioniert nur bei RGB Ebenen.Farb_ton-SättigungTon:RiesigSymbol _und Text_BildPfad i_mportieren...I_nterpolation:I_ntervall:SymbolSymbol und Beschr.Symbol und TextFalls verfügbar, werden Hints von den Schriften verwenden, möglicherweise bevorzugen Sie aber stets automatisches Hinting.Wenn diese Option ausgewählt ist, wird das Verschiebenwerkzeug die aktive Ebene oder den aktiven Pfad wechseln, wenn eine Ebene oder ein Pfad angeklickt wird. Diese Funktion bildet das normale Verhalten älterer The-Gimp-Versionen nach.Wenn Sie das Bild nicht sichern, gehen die Änderungen der letzten %s verloren.Wenn Sie GIMP jetzt beenden, gehen folgende Änderungenverlorgen:Umgebungsdatei %s enthält ungültigen Variablennamen: %sBildBild + GitterBildeditorBildinformationenBildmenüBildgrößeFormat der StatusleisteBild-VorlagenBild VorschauFormat des Bildtitels und der StatusleisteFormat des BildtitelsErscheinungsbild der BildfensterBildfensterAuswahl auf alle sichtbaren Bereiche stützenBildgrößeBildmaskeDa die Auflösung des Bildes außerhalb des gültigen Bereiches liegt, wird die Vorgabeauflösung verwendet.BildgrößeBildquelleBildartBilderBildmenüImporteinstellungenFarbpalette importierenPfade importierenPfade aus SVG importierenEine Farbpalette importierenFarbpalette importierenPfade importierenImportierter Pfad_Tinte_InvertierenMaske in_vertierenSteigerndEinzug:Einzug der ersten ZeileIndex:IndiziertIndizierte FarbenIndizierte FarbumwandlungIndizierte Farbebenen werden immer ohne Interpolation skaliert. Die ausgewählte Interpolation wird nur auf Kanäle und Maske Auswirkungen haben.Info-FensterAnfänglicher _Vergrößerungsfaktor:Initialisierung Ebenenmaske nach:Plugins werden initialisiertPlugin »%s« wird initialisiert -TinteInline pixbufEingabegeräteEingabegeräteQuellwerteAnker einfügenEine private Farbtabelle installieren; ist möglicherweise auf Pseudocolor-Anzeigen sinnvoll.Installation fehlgeschlagen. Wenden Sie sich an den Systemverwalter.Installation erfolgreich. Drücken Sie »Weiter« um fortzufahren.Dauernd auffrischenIntelligente _ScherenIntensität %0.3f Deckkraft: %0.3fOberflächeInterne GIMP ProzedurInterne ProzedurenInterpolation:ÜberkreuzenAuswahlschnittmenge bildenSchnittpunkte (Fadenkreuze)Schnittpunkte (Punkte)Ungültiges UTF-8Ungültige UTF-8-Daten in Datei »%s«.Ungültiger UTF-8 Text in XCF DateiUngültiger UTF-8 Text in Pinseldatei »%s«.Ungültige UTF-8-Zeichenkette in Farbverlaufsdatei »%s«.Ungültige UTF-8-Zeichenkette in Palettendatei »%s«Ungültiger UTF-8 Text in Musterdatei '%s'.Ungültige Zeichenfolge in URIFalscher Tastenkürzel.Ungültige Breite oder Höhe. Beide müssen positiv sein.InvertierenKanal invertierenAuswahl invertierenDas Invertieren funktioniert mit indizierten Ebenen nicht.Auswahl invertierenSind Sie sicher, dass Sie fortfahren möchten?Scheinbar haben Sie bereits The Gimp in der Version 2.0 benutzt.ObjekteigenschaftenSichtbarkeit des ObjektsAusrichtung:Transparenz erhaltenOben behaltenVerhältnis von %s beibehaltenSeitenverhältnis beibehaltenSeitenverhältnis von %s beibehaltenHöhe beibehalten %sTransparenz erhaltenBreite beibehalten %sPfeiltaste RunterPfeiltaste Runter (Alt)Pfeiltaste Runter (Strg + Alt)Pfeiltaste Runter (Strg)Pfeiltaste Runter (Shift + Alt)Pfeiltaste Runter (Shift + Strg + Alt)Pfeiltaste Runter (Shift + Strg)Pfeiltaste Runter (Shift)Pfeiltaste LinksPfeiltaste Links (Alt)Pfeiltaste Links (Strg + Alt)Pfeiltaste Links (Strg)Pfeiltaste (Shift + Alt)Pfeiltaste Links (Shift + Strg + Alt)Pfeiltaste Links (Shift + Strg)Pfeiltaste Links (Shift)Pfeiltaste RechtsPfeiltaste Rechts (Alt)Pfeiltaste Rechts (Strg + Alt)Pfeiltaste Rechts (Strg)Pfeiltaste Rechts (Shift + Alt)Pfeiltaste Rechts (Shift + Strg + Alt)Pfeiltaste Rechts (Shift + Strg)Pfeiltaste Rechts (Shift)Pfeiltaste HochPfeiltaste Hoch (Alt)Pfeiltaste Hoch (Strg + Alt)Pfeiltaste Hoch (Strg)Pfeiltaste Hoch (Shift + Alt)Pfeiltaste »Hoch« (Shift + Strg + Alt)Pfeiltaste Hoch (Shift + Strg)Pfeiltaste Hoch (Shift)Tastenkombinationen können in GIMP dynamisch vergeben werden. Die Datei menurc ist eine Speicherung Ihrer Konfiguration, so daß diese auch in der nächsten Sitzung erhalten bleibt. Diese Datei kann editiert werden, es ist jedoch einfacher, die Tastenkombinationen aus GIMP heraus zu konfigurieren. Wird diese Datei gelöscht, so wird die Vorgabe-Tastenbelegung wiederhergestellt.TastaturTastaturereignisseTastenkürzelLinks nach RechtsFarbe des li_nken Endpunktes...QuerformatGroßGroß (256x256)Größere VorschaubilderLetzter Fehler:EbeneEbene »%s« hat keinen Alphakanal. Ebene ist darüber plaziert worden.EbeneneigenschaftenEbenen_größe... EbenenfüllartAuswahl aus EbenenmaskeEbenenauswahlEbenengrößeEbenen_modusEbenen_name:Diese Ebene kann nicht weiter abgesenkt werden.Diese Ebene kann nicht weiter angehoben werden.Diese Ebene befindet sich bereits ganz unten.Diese Ebene befindet sich bereits ganz oben.Ebene auf BildgrößeEbene nach ganz _untenEbene auf _BildgrößeEbene nach ganz _oben_Alphakanal der EbeneEbenenEbenenmenüEigenschaften Ebenen vereinenFarbe des linken EndpunktesLinksbündigLänge:Wenn diese Option ausgewählt ist, versucht The Gimp bei jedem Start die letzte Sitzung wieder herzustellen.FarbwerteWerte für indizierte Ebenen können nicht geändert werden. Helle Schachbrett-FarbeNur AufhellenDurchgezogenZeilen- +TinteInline pixbufEingabegeräteEingabegeräteQuellwerteAnker einfügenEine private Farbtabelle installieren; ist möglicherweise auf Pseudocolor-Anzeigen sinnvoll.Installation fehlgeschlagen. Wenden Sie sich an den Systemverwalter.Installation erfolgreich. Drücken Sie »Weiter« um fortzufahren.Dauernd auffrischenIntelligente _ScherenIntensität %0.3f Deckkraft: %0.3fOberflächeInterne GIMP ProzedurInterne ProzedurenInterpolation:ÜberkreuzenAuswahlschnittmenge bildenSchnittpunkte (Fadenkreuze)Schnittpunkte (Punkte)Ungültiges UTF-8Ungültige UTF-8-Daten in Datei »%s«.Ungültiger UTF-8 Text in XCF DateiUngültiger UTF-8 Text in Pinseldatei »%s«.Ungültige UTF-8-Zeichenkette in Farbverlaufsdatei »%s«.Ungültige UTF-8-Zeichenkette in Palettendatei »%s«Ungültiger UTF-8 Text in Musterdatei '%s'.Ungültige Zeichenfolge in URIFalscher Tastenkürzel.Ungültige Breite oder Höhe. Beide müssen positiv sein.InvertierenKanal invertierenAuswahl invertierenDas Invertieren funktioniert mit indizierten Ebenen nicht.Auswahl invertierenSind Sie sicher, dass Sie fortfahren möchten?Scheinbar haben Sie bereits The Gimp in der Version 2.0 benutzt.ObjekteigenschaftenSichtbarkeit des ObjektsAusrichtung:Transparenz erhaltenOben behaltenVerhältnis von %s beibehaltenSeitenverhältnis von %s beibehaltenHöhe beibehalten %sTransparenz erhaltenBreite beibehalten %sPfeiltaste RunterPfeiltaste Runter (Alt)Pfeiltaste Runter (Strg + Alt)Pfeiltaste Runter (Strg)Pfeiltaste Runter (Shift + Alt)Pfeiltaste Runter (Shift + Strg + Alt)Pfeiltaste Runter (Shift + Strg)Pfeiltaste Runter (Shift)Pfeiltaste LinksPfeiltaste Links (Alt)Pfeiltaste Links (Strg + Alt)Pfeiltaste Links (Strg)Pfeiltaste (Shift + Alt)Pfeiltaste Links (Shift + Strg + Alt)Pfeiltaste Links (Shift + Strg)Pfeiltaste Links (Shift)Pfeiltaste RechtsPfeiltaste Rechts (Alt)Pfeiltaste Rechts (Strg + Alt)Pfeiltaste Rechts (Strg)Pfeiltaste Rechts (Shift + Alt)Pfeiltaste Rechts (Shift + Strg + Alt)Pfeiltaste Rechts (Shift + Strg)Pfeiltaste Rechts (Shift)Pfeiltaste HochPfeiltaste Hoch (Alt)Pfeiltaste Hoch (Strg + Alt)Pfeiltaste Hoch (Strg)Pfeiltaste Hoch (Shift + Alt)Pfeiltaste »Hoch« (Shift + Strg + Alt)Pfeiltaste Hoch (Shift + Strg)Pfeiltaste Hoch (Shift)Tastenkombinationen können in GIMP dynamisch vergeben werden. Die Datei menurc ist eine Speicherung Ihrer Konfiguration, so daß diese auch in der nächsten Sitzung erhalten bleibt. Diese Datei kann editiert werden, es ist jedoch einfacher, die Tastenkombinationen aus GIMP heraus zu konfigurieren. Wird diese Datei gelöscht, so wird die Vorgabe-Tastenbelegung wiederhergestellt.TastaturTastaturereignisseTastenkürzelLinks nach RechtsFarbe des li_nken Endpunktes...QuerformatGroßGroß (256x256)Größere VorschaubilderLetzter Fehler:EbeneEbene »%s« hat keinen Alphakanal. Ebene ist darüber plaziert worden.EbeneneigenschaftenEbenen_größe... EbenenfüllartAuswahl aus EbenenmaskeEbenenauswahlEbenengrößeEbenen_modusEbenen_name:Diese Ebene kann nicht weiter abgesenkt werden.Diese Ebene kann nicht weiter angehoben werden.Diese Ebene befindet sich bereits ganz unten.Diese Ebene befindet sich bereits ganz oben.Ebene auf BildgrößeEbene nach ganz _untenEbene auf _BildgrößeEbene nach ganz _oben_Alphakanal der EbeneEbenenEbenenmenüEigenschaften Ebenen vereinenFarbe des linken EndpunktesLinksbündigLänge:Wenn diese Option ausgewählt ist, versucht The Gimp bei jedem Start die letzte Sitzung wieder herzustellen.FarbwerteWerte für indizierte Ebenen können nicht geändert werden. Helle Schachbrett-FarbeNur AufhellenDurchgezogenZeilen- abstand:Linienbreite:Linien_stil:Der für das Gitter verwendete Linienstil.LinearVerknüpftes ObjektÖffnenKurven öffnenWerte öffnenRechte Farbe laden von _HintergrundfarbeKurveneinstellungen aus Datei ladenWerte aus Datei ladenText aus Datei ladenVorschau wird geladen...Ort:LogarithmischLange StricheSuche nach ArbeitsdatenKanal absenkenKanel nach ganz unten absenkenKanel nach ganz unten absenkenEbene absenkenEbene nach ganz untenPfad absenkenPfad nach ganz unten absenkenPfad nach ganz _unten absenkenKanal absenkenKanel nach ganz unten absenkenEbene absenkenEbene nach ganz unten absenkenPfad absenkenPfad nach ganz unten absenkenVer_größern bzw. VerkleinernA_lleAuf Bildschirm _verschieben..._AbbildenMagentaMagenta:Vergrößern / Verkleinern_Transparent machenLadbare Module verwaltenGeschwindigkeit der laufenden _Ameisen:Maskendeckkraft:Maske aus _AuswahlMaske aus _invertierter AuswahlMatrix:Maximale Tiefe:Maximale Datei_größe für Vorschaubilder:Maximale Größe _neuer Bilder:Maximale Farbdifferenz_Maximaler Speicher für das Journal:Durchschnitt:Me_ssenAbstände und Winkel messenAbstände und Winkel messenMessen Sie die Lineale aus und tragen Sie die Längen unten ein.Median:MittelStricheNach un_ten vereinenNach unten vereinenEbenen vereinenFarbpalette vereinenSichtbare Ebenen vereinenSichtbare Pfade vereinenSichtbare _Ebenen vereinen...Sichtbare _Ebenen vereinen...Sichtbare Pfade vereinenEbenen vereinenFarbpalette vereinenPfade vereinenNachrichten-ProzedurenMeldung %d mal wiederholt.Meldung einmal wiederholt.Ausgabe erfolgt jetzt auf der Standard-Fehlerausgabe.MittenBenutzereinstellungen übernehmenMinimale Anzahl an _Journalschritten:VerschiedenesGehrungModusModus:Gewählte Farbe bearbeitenDie Farbwerte des gewählten Bereichs bearbeitenAlle Farben bearbeitenZeilenabstand verändernModulordnerModule verwaltenModulpfadModuleMousezeigerMausradMausradereignisseVerschiebenAnker verschiebenKanal verschiebenSchwebende Auswahl bewegenHilfslinie verschiebenHilfslinie verschieben: Ebene bewegenEbenenmaske bewegenPfad verschiebenAuswahl verschiebenTextebene verschiebenVerschiebewerkzeugObjekt verschiebenEbenen und Auswahlen verschiebenAuswahl verschiebenAktive Ebene verschiebenAktiven Pfad verschiebenDen gewählten Filter nach unten verschiebenDen gewählten Filter nach oben verschiebenAuf Bildschirm verschieben...Verschieben: Multiplikation_Anzahl der Farben:_NavigationNavi_gationsfensterGröße der _Navigationsvorschau:Name_Name:NavigationNeuer KanalFarbe für neuen KanalEinstellungen des neuen KanalsNeue Farbe aus _HintergrundNeue Farbe aus _VordergrundNeues BildNeue EbeneNeuer PfadEinstellungen des hinzuzufügenden PfadesNeue VorlageNeuer PinselNeuer KanalNeuer Kanal mit den aktuellen WertenNeuer Kanal...Neue Farbe aus HintergrundNeue Farbe aus VordergrundNeuer FarbverlaufNeu importiertNeue EbeneNeue Ebene mit den aktuellen WertenNeue Ebene..._Neue FarbpaletteNeuer Pfad mit den aktuellen WertenNeuer Pfad...Neues MusterNeue VektorenKeine Pinsel für dieses Werkzeug vorhanden.Kein Filter ausgewähltKeinen linearen Farbverlauf in »%s« gefundenNicht mehr verfügbarKeine Pfade in »%s« gefundenKeine Pfade in der Ablage gefundenFür diese Operation sind keine Muster vorhanden.Keine AuswahlKeine Auswahl zum Nachziehen.Keine VorschauNicht ausgerichtetKeineKeine (am schnellsten)NormalNormal (128x128)PunkteNormales FensterKeine reguläre DateiEs sind nicht genügend Ebenen als »Sichtbar« markiert, um den Vorgang »Sichtbare Ebenen vereinen« auszuführen. Es müssen mindestens zwei sein.Es sind nicht genügend Pfade als »Sichtbar« markiert, um den Vorgang »Sichtbare Pfade vereinen« auszuführen. Es müssen mindestens zwei sein.Zahl der zu verwendenden _Prozessoren:Anzahl der GitterlinienAnzahl der Ebenen:A_nders...VersatzKanal verschiebenEbene verschiebenEbene verschiebenEbenenmaske verschiebenVersatz um (x/_2),(y/2)Versatz:Auf FestplatteAuf Rechnern mit mehreren Prozessoren legt dieser Wert fest, wieviele Prozessoren GIMP gleichzeitig belegen soll (nur, falls GIMP mit --enable-mp kompiliert wurde).Nur im SpeicherAls _Ebene öffnen...DeckkraftDeckkraft:ÖffnenBild öffnenBild als Ebene öffnenBild von Ort öffnenTextdatei (UTF-8) öffnen_Von Ort öffnen..._Zuletzt geöffnetDialog um ein Bild zu öffnenDen Dialog zur Pinselauswahl öffnenDen Dialog zur Schriftauswahl öffnenDen Dialog zur Farbverlaufswahl öffnenDen Dialog zur Palettenauswahl öffnenDen Dialog zur Musterauswahl öffnenGewählten Eintrag entfernenÖffnen von '%s' schlug fehl: %s»%s« konnte nicht geöffnet werden: %sOptionen: @@ -453,7 +444,7 @@ GIMP %d.%d BenutzerinstallationLegt fest, ob der Dialog automatisch dem Bild folgt, an dem Sie im Moment arbeiten.GIMP zeigt »Mnemonics«, wenn eingestellt.Wenn diese Option ausgewählt ist, werden alle Malwerkzeuge eine Vorschau der aktuellen Pinselkontur anzeigen.Wenn dieses Option ausgewählt ist, wird ein Bild zum aktiven Bild sobald dessen Fenster den Fokus erhält. Diese Funktion ist sinnvoll für Fenster-Manager die »Fokus durch anklicken« verwenden.Wenn diese Option ausgewählt ist, steht Ihnen bei jedem Dialog eine Hilfeknopf zur Verfügung über den Sie die dazugehörige Hilfeseite erreichen. Ohne diesen Knopf können Sie die Hilfe immer auch über die Taste F1 erreichen.Wenn diese Option ausgewählt ist, können einzelne Menüs abgerissen werden.Wenn diese Option ausgewählt ist, wird beim Drücken der Taste F1 der Hilfe-Browser geöffnet.Wenn diese Option ausgewählt ist, wird The Gimp keine Bilder speichern, die seit ihres Öffnens nicht verändert wurden.Legt fest, ob GIMP ein anderes Info-Fenster pro Bildansicht verwenden soll.Wenn diese Option ausgewählt ist, wird die Position des Mauszeigers bei jeder Mausbewegung vom X-Server erfragt, anstatt diese nur durch Positionsbezug zu berechnen. Dies bedeutet, dass das Malen mit großen Pinseln genauer ist, aber auch langsamer sein kann.Seltsamerweise führt diese Option aber bei manchen X-Servern dazu, dass das Malen schneller geht.Wenn diese Option ausgewählt ist, wird der Zeiger des aktuellen Malwerkzeuges über dem Bild angezeigt.Legt fest, ob das Gitter per Vorgabe angezeigt werden soll. Dies kann auch mit Hilfe des »Ansicht->Gitter anzeigen«-Befehls beeinflusst werden.Legt fest, ob die Hilfslinien per Vorgabe angezeigt werden soll. Dies kann auch mit Hilfe des »Ansicht->Hilfslinien anzeigen«-Befehls beeinflusst werden.Wenn diese Option ausgewählt ist, wird sich die Größe des Bildfensters automatisch anpassen, wenn Sie in ein Bild hinein oder hinaus zoomen.Wenn diese Option ausgewählt ist, wird sich die Größe des Bildfensters jedesmal anpassen, wenn sich die physikalische Größe des Bildes ändert.Legt fest, ob der Ebenenrahmen per Vorgabe angezeigt werden soll. Dies kann auch mit Hilfe des »Ansicht->Ebenenrahmen anzeigen«-Befehls beeinflusst werden.Legt fest, ob die Menüleiste per Vorgabe angezeigt werden soll. Dies kann auch mit Hilfe des »Ansicht->Menüleiste anzeigen«-Befehls beeinflusst werden.Legt fest, ob die Lineale per Vorgabe angezeigt werden soll. Dies kann auch mit Hilfe des »Ansicht->Lineale anzeigen«-Befehls beeinflusst werden.Legt fest, ob die Rollbalken per Vorgabe angezeigt werden soll. Dies kann auch mit Hilfe des »Ansicht->Rollbalken anzeigen«-Befehls beeinflusst werden.Wenn diese Option ausgewählt ist, wird der ausgewählte Pinsel bei allen Werkzeugen verwendet.Wenn diese Option ausgewählt ist, wird der ausgewählte Farbverlauf bei allen Werkzeugen verwendet.Wenn diese Option ausgewählt ist, wird das ausgewählte Muster bei allen Werkzeugen verwendet.Legt fest, ob die Auswahl per Vorgabe angezeigt werden soll. Dies kann auch mit Hilfe des »Ansicht->Auswahl anzeigen«-Befehls beeinflusst werden.Legt fest, ob die Statusleiste per Vorgabe angezeigt werden soll. Dies kann auch mit Hilfe des »Ansicht->Statusleiste anzeigen«-Befehls beeinflusst werden.Falls dies aktiviert ist, wird sichergestellt, dass jedes Pixel ein Bildes auf je ein Pixel auf dem Bildschirm abgebildet wird.Legt fest, ob sichergestellt werden soll, dass nach dem Öffnen einer Datei das gesamte Bild sichtbar sein soll. Andernfalls wird es im Maßstab 1:1 angezeigt.Wenn Sie diese Option auswählen, haben Sie die Möglichkeit Tastenkürzel zu vergeben, indem Sie in einem Menü eine Tastenkombination drücken, sobald der gewünschte Menüeintrag hervorgehoben ist.WeißDer Weißabgleich funktioniert nur bei RGB Ebenen.BreiteBreite:FensterverwaltungFensterverwaltungs-HintsFensterpositionen»%s« wird geschrieben XXCF Fehler: nicht unterstützte XCF-Dateiversion %d aufgetretenXCF Warnung: Version 0 des XCF-Dateiformats hat indizierte Farbpaletten falsch gespeichert. -Farben wurden durch Graustufen ersetzt.YGelbGelb:Sie versuchen ein Bild der Größe %s anzulegen.Hier können Dialoge angedockt werden.Sie sollten eine Kopie der GNU General Public License zusammen mit diesem Programm erhalten haben. Falls nicht, schreiben Sie an die Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.Sie müssen GIMP neu starten, damit die folgenden Änderungen aktiv werden:Ihre Installation von The Gimp ist unvollständig:Die Einstellungen für Eingabegeräte werden beim nächsten Start von GIMP auf Vorgabewerte zurückgesetzt.Die Tastenkürzel werden beim nächsten Start von GIMP auf Vorgabewerte zurückgesetzt.Die Fenstereinstellungen werden beim nächsten Start von GIMP auf Vorgabewerte zurückgesetzt.Verhalten bei GrößenänderungenMaßstab 1:1Alles anzeigenHineinzoomenHerauszoomenSkalierungsverhältnisSkalierung:_Alles anzeigenHin_einzoomenHera_uszoomenAlles anzeigenMaßstab: %d:1Bild zoomen, wenn die Fenstergröße sich ändertHineinzoomenVergrößern / VerkleinernHerauszoomenMaßstab:[ Basisbild ]_Über_Holen_Hintergrundfarbe hinzufügen_Vordergrundfarbe hinzufügenReiter _hinzufügenZur Auswahl _hinzufügen_Erweiterte EinstellungenS_prühpistole_AllesEbene _verankern_Kantenglättung_Beliebig drehen..._KünstlerischP_erspektive_Automatisch_BVG/HG Farbe_Hintergrundfarbe:_Schwarz (volle Transparenz)Farb_verlaufsfunktion für SegmentFarb_verlaufsfunktion für Auswahl_Weichzeichnen_Helligkeit:_Pinsel_Pinsel_Pinsel, Muster und Farbverläufe_FüllenA_blagenNach _Farbe_Nach Farbe auswählen_C_Aufsatzstil:_KanäleFehler _löschenListe _alter Operationen entfernen_Klonen_SchließenReiter s_chließen_Wolken_Farben_FarbenFarbe und Deckkraft _festlegen..._Kontext_Kontexthilfe_KopierenIn Ablage _kopierenB_ild aus Vorlage erstellen..._Zuschneiden / Größe ändernBild _zuschneiden_Kurven_Kurven_Dunkle Schachbrett-Farbe_VorgabefarbenPinsel _löschenAblage _löschenKanal _löschenFarbe _löschenFarbverlauf _löschen...Bild _löschenEbene _löschenFarbpalette _löschenPfad _löschenMuster _löschen...Gespeicherte Einstellungen _löschenSegment _löschenAuswahl _löschenVorlage _löschenSättigung ent_fernenReiter _lösen_Gerätestatus_DialogeÄnderungen _verwerfenTe_xtinformationen verwerfenVer_zerren_Punkt für Punkt_Duplizieren_BearbeitenPinsel _bearbeiten...Kanalei_genschaften...Farbe _bearbeiten...Farbverlauf _bearbeiten...Ebenenei_genschaften...Farbpalette _bearbeiten...Pfadei_genschaften...Muster _bearbeiten...Vorlage _bearbeiten..._Elliptische Auswahl_Vorschau von Ebenen und Kanälen aktivieren_Enorm_Egalisieren_RadiererVG/HG Farbe_Datei_Füllbreite:_Fenster an Bild anpassenBild z_usammenfügenSp_iegelnSegment sp_iegelnAuswahl sp_iegeln_Schwebend_Schrift_Schriften_Vordergrundfarbe:_Freie Auswahl_G_Generisch_GigantischFar_bverlaufFa_rbverläufe_Graustufen_Graustufen-Kopie der EbeneVer_größern..._Hilfslinie_Härte_Hilfe_Horizontal:_Farbton:_Riesig_Symbol_Symbol:_Bild_Bilder_ImportierenFarbpalette _importieren..._Indiziert_Info-FensterSchnittmenge _bilden_Invertieren_Verbindungsstil:_Groß_Ebene_Ebenen_Ebenen, Kanäle und PfadeFarbe des linken EndpunktesLinke Farbe laden von/Rechtem Endpunkt des _linken Nachbars_WerteH_elle Schachbrett-Farbe_Licht-Effekte_Helligkeit:Linien_stil_Linear_VerknüpftLinke Farbe l_aden vonKanal a_bsenkenEbene a_bsenkenPfad a_bsenken_M_Manuell_Abbilden_Maske_Auswahl aus MaskeMaximale Anzahl der Farben:_Maßband_MittelFarbpaletten _vereinen..._Importieren Pfade zusammenführen_Benutzereinstellunge aus The Gimp 2.0 übernehmen_Verschiedenes_Gehrung-Limit:_Modus_Modulverwaltung_Verschieben_Name:_Natur_Neuer Pinsel_Neuer Kanal_Neuer Kanal..._Neuer Eintrag..._Neuer Farbverlauf_Neue Ebene_Neue Ebene..._Neue Farbpalette_Neuer Pfad_Neuer Pfad..._Neues Muster_Neue Vorlage..._Neue Ansicht_Neu..._Nächster Tipp_RauschenA_ufheben_Versatz_DeckkraftBild ö_ffnenÖ_ffnen...Benutzerdefinierte _Rahmenfarbe_Malwerkzeuge_Pinsel_PaletteE_infügenAblage e_infügenAus Ablage e_infügen..._Pfade_MusterP_erspektive_Posterisieren_Einstellungen_VorschauVorschau_größe_Vorheriger Tipp_Druckgröße..._Eigenschaften_Schnelle Maske aktiv_Beenden_R_RGB_RadiusKanal _anhebenEbene an_hebenPfad _anhebenAnsichten an_hebenBild öffnen oder _anheben_Tastenkürzel neu zuweisen_Rechteckige Auswahl_Wiederholen_Wiederholen: %sPinsel n_eu ladenFarbverläufe n_eu ladenFarbpaletten n_eu ladenMuster n_eu ladenNicht verwendete Farben aus endgültiger Palette _entfernen_Render_ErsetzenSegment duplizieren...Auswahl _duplizieren...Schriften _neu einlesenOrdnung & Sichtbarkeit _wiederherstellenGerätestatus _jetzt auf Vorgabewerte setzenTastenkürzel auf Vorgabewerte _zurücksetzenFensterpositionen _jetzt auf Vorgabewerte setzenEinstellungen l_aden ausFarbe des rechten EndpunktesRechte Farbe laden von/Linkem Endpunkt des _rechten Nachbars_Drehen_Sättigung:_SpeichernLinke Farbe _speichern inEinstellungen _speichern alsGerätestatus beim Beenden _speichernTastenkürzel beim Beenden _speichernFensterpositionen beim Beenden _speichern_SkalierenBild _skalierenEbene _skalieren...Importierte Pfade auf Bildgröße _skalieren_AuswahlA_uswahlAuswahl_editor_Auswahlwerkzeuge_FormSch_ärfen_Bildauswahl anzeigenIm Werkzeugkasten _anzeigen_Sinusartig_KleinVersch_mieren_Reichweite des Magneten:Auswahl _nachziehenAuswahl _nachziehenVon Auswahl ab_ziehenReiter_stil_Vorlagen:_Vorlagennur _Text_Schwellwert_Winzig_Tipp des Tages_Werkzeug_Werkzeuge_Alphakanal der Ebene übernehmen_Transformation_Transformationen_Rückgängig_Rückgängig: %s_Vertikal:An_sicht_Sichtbar_WebZu verwendender _Internet-Browser:_Weiß (volle Deckkraft)_Weißabgleich_Breite:_Falten_X Auflösung:_X:_Xtns_Y_Y Auflösung:_Y:_Zoom_Zoom (%s)FarbenKopieDPI»yes« oder »no« für boolesches Symbol %s erwartet, »%s« erhaltenSchwerwiegender Fehler bei SyntaxanalyseGraustufenGraustufen leerZollZollindiziertindiziert leerungültiger UTF-8 Textungültiger Wert »%ld« für Symboltypungültiger Wert »%ld« für Symbol %sungültiger Wert »%s« für Symboltypungültiger Wert »%s« für Symbol %sMillimeterMillimeterMinuten.v.ProzentPicaPicaPixelPixelPixel/%aPixel/%sPunktPunktSekundetips-locale:deDaniel Egger +Farben wurden durch Graustufen ersetzt.YGelbGelb:Sie versuchen ein Bild der Größe %s anzulegen.Hier können Dialoge angedockt werden.Sie sollten eine Kopie der GNU General Public License zusammen mit diesem Programm erhalten haben. Falls nicht, schreiben Sie an die Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.Sie müssen GIMP neu starten, damit die folgenden Änderungen aktiv werden:Ihre Installation von The Gimp ist unvollständig:Die Einstellungen für Eingabegeräte werden beim nächsten Start von GIMP auf Vorgabewerte zurückgesetzt.Die Tastenkürzel werden beim nächsten Start von GIMP auf Vorgabewerte zurückgesetzt.Die Fenstereinstellungen werden beim nächsten Start von GIMP auf Vorgabewerte zurückgesetzt.Verhalten bei GrößenänderungenMaßstab 1:1Alles anzeigenHineinzoomenHerauszoomenSkalierungsverhältnisSkalierung:_Alles anzeigenHin_einzoomenHera_uszoomenAlles anzeigenMaßstab: %d:1Bild zoomen, wenn die Fenstergröße sich ändertHineinzoomenVergrößern / VerkleinernHerauszoomenMaßstab:[ Basisbild ]_Über_Holen_Hintergrundfarbe hinzufügen_Vordergrundfarbe hinzufügenReiter _hinzufügenZur Auswahl _hinzufügen_Erweiterte EinstellungenS_prühpistole_AllesEbene _verankern_Kantenglättung_Beliebig drehen..._KünstlerischP_erspektive_Automatisch_BVG/HG Farbe_Hintergrundfarbe:_Schwarz (volle Transparenz)Farb_verlaufsfunktion für SegmentFarb_verlaufsfunktion für Auswahl_Weichzeichnen_Helligkeit:_Pinsel_Pinsel_Pinsel, Muster und Farbverläufe_FüllenA_blagenNach _Farbe_Nach Farbe auswählen_C_Aufsatzstil:_KanäleFehler _löschenListe _alter Operationen entfernen_Klonen_SchließenReiter s_chließen_Wolken_Farben_FarbenFarbe und Deckkraft _festlegen..._Kontext_Kontexthilfe_KopierenIn Ablage _kopierenB_ild aus Vorlage erstellen..._Zuschneiden / Größe ändernBild _zuschneiden_Kurven_Kurven_Dunkle Schachbrett-Farbe_VorgabefarbenPinsel _löschenAblage _löschenKanal _löschenFarbe _löschenFarbverlauf _löschen...Bild _löschenEbene _löschenFarbpalette _löschenPfad _löschenMuster _löschen...Gespeicherte Einstellungen _löschenSegment _löschenAuswahl _löschenVorlage _löschenSättigung ent_fernenReiter _lösen_Gerätestatus_DialogeÄnderungen _verwerfenTe_xtinformationen verwerfenVer_zerren_Punkt für Punkt_Duplizieren_BearbeitenPinsel _bearbeiten...Kanalei_genschaften...Farbe _bearbeiten...Farbverlauf _bearbeiten...Ebenenei_genschaften...Farbpalette _bearbeiten...Pfadei_genschaften...Muster _bearbeiten...Vorlage _bearbeiten..._Elliptische Auswahl_Vorschau von Ebenen und Kanälen aktivieren_Enorm_Egalisieren_RadiererVG/HG Farbe_Datei_Füllung:_Fenster an Bild anpassenBild z_usammenfügenSp_iegelnSegment sp_iegelnAuswahl sp_iegeln_Schwebend_Schrift_Schriften_Vordergrundfarbe:_Freie Auswahl_G_Generisch_GigantischFar_bverlaufFa_rbverläufe_Graustufen_Graustufen-Kopie der EbeneVer_größern..._Hilfslinie_Härte_Hilfe_Horizontal:_Farbton:_Riesig_Symbol_Symbol:_Bild_Bilder_ImportierenFarbpalette _importieren..._Indiziert_Info-FensterSchnittmenge _bilden_Invertieren_Verbindungsstil:_Groß_Ebene_Ebenen_Ebenen, Kanäle und PfadeFarbe des linken EndpunktesLinke Farbe laden von/Rechtem Endpunkt des _linken Nachbars_WerteH_elle Schachbrett-Farbe_Licht-Effekte_Helligkeit:Linien_stil_Linear_VerknüpftLinke Farbe l_aden vonKanal a_bsenkenEbene a_bsenkenPfad a_bsenken_M_Manuell_Abbilden_Maske_Auswahl aus MaskeMaximale Anzahl der Farben:_Maßband_MittelFarbpaletten _vereinen..._Importieren Pfade zusammenführen_Benutzereinstellunge aus The Gimp 2.0 übernehmen_Verschiedenes_Gehrung-Limit:_Modus_Modulverwaltung_Verschieben_Name:_Natur_Neuer Pinsel_Neuer Kanal_Neuer Kanal..._Neuer Eintrag..._Neuer Farbverlauf_Neue Ebene_Neue Ebene..._Neue Farbpalette_Neuer Pfad_Neuer Pfad..._Neues Muster_Neue Vorlage..._Neue Ansicht_Neu..._Nächster Tipp_RauschenA_ufheben_Versatz_DeckkraftBild ö_ffnenÖ_ffnen...Benutzerdefinierte _Rahmenfarbe_Malwerkzeuge_Pinsel_PaletteE_infügenAblage e_infügenAus Ablage e_infügen..._Pfade_MusterP_erspektive_Posterisieren_Einstellungen_VorschauVorschau_größe_Vorheriger Tipp_Druckgröße..._Eigenschaften_Schnelle Maske aktiv_Beenden_R_RGB_RadiusKanal _anhebenEbene an_hebenPfad _anhebenAnsichten an_hebenBild öffnen oder _anheben_Tastenkürzel neu zuweisen_Rechteckige Auswahl_Wiederholen_Wiederholen: %sPinsel n_eu ladenFarbverläufe n_eu ladenFarbpaletten n_eu ladenMuster n_eu ladenNicht verwendete Farben aus endgültiger Palette _entfernen_Render_ErsetzenSegment duplizieren...Auswahl _duplizieren...Schriften _neu einlesenOrdnung & Sichtbarkeit _wiederherstellenGerätestatus _jetzt auf Vorgabewerte setzenTastenkürzel auf Vorgabewerte _zurücksetzenFensterpositionen _jetzt auf Vorgabewerte setzenEinstellungen l_aden ausFarbe des rechten EndpunktesRechte Farbe laden von/Linkem Endpunkt des _rechten Nachbars_Drehen_Sättigung:_SpeichernLinke Farbe _speichern inEinstellungen _speichern alsGerätestatus beim Beenden _speichernTastenkürzel beim Beenden _speichernFensterpositionen beim Beenden _speichern_SkalierenBild _skalierenEbene _skalieren...Importierte Pfade auf Bildgröße _skalieren_AuswahlA_uswahlAuswahl_editor_Auswahlwerkzeuge_FormSch_ärfen_Bildauswahl anzeigenIm Werkzeugkasten _anzeigen_Sinusartig_KleinVersch_mieren_Reichweite des Magneten:Auswahl _nachziehenAuswahl _nachziehenVon Auswahl ab_ziehenReiter_stil_Vorlagen:_Vorlagennur _Text_Schwellwert_Winzig_Tipp des Tages_Werkzeug_Werkzeuge_Alphakanal der Ebene übernehmen_Transformation_Transformationen_Rückgängig_Rückgängig: %s_Vertikal:An_sicht_Sichtbar_WebZu verwendender _Internet-Browser:_Weiß (volle Deckkraft)_Weißabgleich_Breite:_Falten_X Auflösung:_X:_Xtns_Y_Y Auflösung:_Y:_Zoom_Zoom (%s)FarbenKopieDPI»yes« oder »no« für boolesches Symbol %s erwartet, »%s« erhaltenSchwerwiegender Fehler bei SyntaxanalyseGraustufenGraustufen leerZollZollindiziertindiziert leerungültiger UTF-8 Textungültiger Wert »%ld« für Symboltypungültiger Wert »%ld« für Symbol %sungültiger Wert »%s« für Symboltypungültiger Wert »%s« für Symbol %sMillimeterMillimeterMinuten.v.ProzentPicaPicaPixelPixelPixel/%aPixel/%sPunktPunktSekundetips-locale:deDaniel Egger Michael Natterer Sven Neumann Christian Neumair diff -uraN gimp-2.2.0/po/de.po gimp-2.2.1/po/de.po --- gimp-2.2.0/po/de.po 2004-12-19 03:11:20.000000000 +0100 +++ gimp-2.2.1/po/de.po 2004-12-28 16:58:27.000000000 +0100 @@ -13,8 +13,8 @@ msgstr "" "Project-Id-Version: GIMP 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-19 03:11+0100\n" -"PO-Revision-Date: 2004-12-18 12:08+0100\n" +"POT-Creation-Date: 2004-12-28 16:58+0100\n" +"PO-Revision-Date: 2004-12-20 19:12+0100\n" "Last-Translator: Sven Neumann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -1045,11 +1045,11 @@ msgid "Remove dangling entries" msgstr "Hängende Einträge entfernen" -#: app/actions/documents-commands.c:252 app/actions/file-commands.c:163 +#: app/actions/documents-commands.c:251 app/actions/file-commands.c:163 #: app/dialogs/file-open-dialog.c:198 app/dialogs/file-open-dialog.c:249 #: app/dialogs/file-open-location-dialog.c:193 -#: app/display/gimpdisplayshell-dnd.c:332 app/widgets/gimplayertreeview.c:802 -#: app/widgets/gimptoolbox-dnd.c:123 +#: app/display/gimpdisplayshell-dnd.c:334 app/widgets/gimplayertreeview.c:804 +#: app/widgets/gimptoolbox-dnd.c:125 #, c-format msgid "" "Opening '%s' failed:\n" @@ -1563,115 +1563,115 @@ msgid "Zoom all" msgstr "Alles anzeigen" -#: app/actions/gradient-editor-actions.c:582 +#: app/actions/gradient-editor-actions.c:589 msgid "_Blending Function for Segment" msgstr "Farb_verlaufsfunktion für Segment" -#: app/actions/gradient-editor-actions.c:584 +#: app/actions/gradient-editor-actions.c:591 msgid "Coloring _Type for Segment" msgstr "_Färbungsart für Segment" -#: app/actions/gradient-editor-actions.c:587 +#: app/actions/gradient-editor-actions.c:594 msgid "_Flip Segment" msgstr "Segment sp_iegeln" -#: app/actions/gradient-editor-actions.c:589 +#: app/actions/gradient-editor-actions.c:596 msgid "_Replicate Segment..." msgstr "Segment duplizieren..." -#: app/actions/gradient-editor-actions.c:591 +#: app/actions/gradient-editor-actions.c:598 msgid "Split Segment at _Midpoint" msgstr "Segment _mittig teilen" -#: app/actions/gradient-editor-actions.c:593 +#: app/actions/gradient-editor-actions.c:600 msgid "Split Segment _Uniformly..." msgstr "Segment _gleichmäßig aufteilen..." -#: app/actions/gradient-editor-actions.c:595 +#: app/actions/gradient-editor-actions.c:602 msgid "_Delete Segment" msgstr "Segment _löschen" -#: app/actions/gradient-editor-actions.c:597 +#: app/actions/gradient-editor-actions.c:604 msgid "Re-_center Segment's Midpoint" msgstr "Mittelpunkt des Segments _zentrieren" -#: app/actions/gradient-editor-actions.c:599 +#: app/actions/gradient-editor-actions.c:606 msgid "Re-distribute _Handles in Segment" msgstr "Punkte _gleichmäßig im Segment verteilen" -#: app/actions/gradient-editor-actions.c:604 +#: app/actions/gradient-editor-actions.c:611 msgid "_Blending Function for Selection" msgstr "Farb_verlaufsfunktion für Auswahl" -#: app/actions/gradient-editor-actions.c:606 +#: app/actions/gradient-editor-actions.c:613 msgid "Coloring _Type for Selection" msgstr "_Färbungsart für Auswahl" -#: app/actions/gradient-editor-actions.c:609 +#: app/actions/gradient-editor-actions.c:616 msgid "_Flip Selection" msgstr "Auswahl sp_iegeln" -#: app/actions/gradient-editor-actions.c:611 +#: app/actions/gradient-editor-actions.c:618 msgid "_Replicate Selection..." msgstr "Auswahl _duplizieren..." -#: app/actions/gradient-editor-actions.c:613 +#: app/actions/gradient-editor-actions.c:620 msgid "Split Segments at _Midpoints" msgstr "Segment an _Mittelpunkten aufteilen" -#: app/actions/gradient-editor-actions.c:615 +#: app/actions/gradient-editor-actions.c:622 msgid "Split Segments _Uniformly..." msgstr "Segmente _gleichmäßig aufteilen..." -#: app/actions/gradient-editor-actions.c:617 +#: app/actions/gradient-editor-actions.c:624 msgid "_Delete Selection" msgstr "Auswahl _löschen" -#: app/actions/gradient-editor-actions.c:619 +#: app/actions/gradient-editor-actions.c:626 msgid "Re-_center Midpoints in Selection" msgstr "Mittelpunkte in Auswahl _zentrieren" -#: app/actions/gradient-editor-actions.c:621 +#: app/actions/gradient-editor-actions.c:628 msgid "Re-distribute _Handles in Selection" msgstr "Punkte _gleichmäßig in Auswahl verteilen" -#: app/actions/gradient-editor-commands.c:84 +#: app/actions/gradient-editor-commands.c:85 msgid "Left Endpoint Color" msgstr "Farbe des linken Endpunktes" -#: app/actions/gradient-editor-commands.c:86 +#: app/actions/gradient-editor-commands.c:87 msgid "Gradient Segment's Left Endpoint Color" msgstr "Farbe des linken Segment-Endpunktes " -#: app/actions/gradient-editor-commands.c:186 +#: app/actions/gradient-editor-commands.c:189 msgid "Right Endpoint Color" msgstr "Farbe des rechten Endpunktes" -#: app/actions/gradient-editor-commands.c:188 +#: app/actions/gradient-editor-commands.c:191 msgid "Gradient Segment's Right Endpoint Color" msgstr "Farbe des rechten Segment-Endpunktes" -#: app/actions/gradient-editor-commands.c:353 +#: app/actions/gradient-editor-commands.c:358 msgid "Replicate Segment" msgstr "Segment duplizieren" -#: app/actions/gradient-editor-commands.c:354 +#: app/actions/gradient-editor-commands.c:359 msgid "Replicate Gradient Segment" msgstr "Farbverlauf-Segment duplizieren" -#: app/actions/gradient-editor-commands.c:358 +#: app/actions/gradient-editor-commands.c:363 msgid "Replicate Selection" msgstr "Auswahl duplizieren" -#: app/actions/gradient-editor-commands.c:359 +#: app/actions/gradient-editor-commands.c:364 msgid "Replicate Gradient Selection" msgstr "Farbverlauf-Auswahl duplizieren" -#: app/actions/gradient-editor-commands.c:371 +#: app/actions/gradient-editor-commands.c:376 msgid "Replicate" msgstr "Duplizieren" -#: app/actions/gradient-editor-commands.c:386 +#: app/actions/gradient-editor-commands.c:391 msgid "" "Select the number of times\n" "to replicate the selected segment." @@ -1679,7 +1679,7 @@ "Geben Sie an, wie oft das\n" "ausgewählte Segments wiederholt werden soll." -#: app/actions/gradient-editor-commands.c:389 +#: app/actions/gradient-editor-commands.c:394 msgid "" "Select the number of times\n" "to replicate the selection." @@ -1687,27 +1687,27 @@ "Geben Sie an, wie oft die\n" "Auswahl wiederholt werden soll." -#: app/actions/gradient-editor-commands.c:444 +#: app/actions/gradient-editor-commands.c:452 msgid "Split Segment Uniformly" msgstr "Segment gleichmäßig teilen" -#: app/actions/gradient-editor-commands.c:445 +#: app/actions/gradient-editor-commands.c:453 msgid "Split Gradient Segment Uniformly" msgstr "Farbverlauf-Segment gleichmäßig teilen" -#: app/actions/gradient-editor-commands.c:449 +#: app/actions/gradient-editor-commands.c:457 msgid "Split Segments Uniformly" msgstr "Segmente gleichmäßig aufteilen" -#: app/actions/gradient-editor-commands.c:450 +#: app/actions/gradient-editor-commands.c:458 msgid "Split Gradient Segments Uniformly" msgstr "Farbverlauf-Segmente gleichmäßig aufteilen" -#: app/actions/gradient-editor-commands.c:462 +#: app/actions/gradient-editor-commands.c:470 msgid "Split" msgstr "Teilen" -#: app/actions/gradient-editor-commands.c:478 +#: app/actions/gradient-editor-commands.c:486 msgid "" "Select the number of uniform parts\n" "in which to split the selected segment." @@ -1715,7 +1715,7 @@ "Geben Sie an, in wieviele Abschnitte das\n" "ausgewählte Segment aufgeteilt werden soll." -#: app/actions/gradient-editor-commands.c:481 +#: app/actions/gradient-editor-commands.c:489 msgid "" "Select the number of uniform parts\n" "in which to split the segments in the selection." @@ -2154,7 +2154,7 @@ #: app/actions/layers-commands.c:232 app/actions/layers-commands.c:234 #: app/actions/layers-commands.c:291 app/actions/layers-commands.c:295 -#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:840 +#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:842 msgid "New Layer" msgstr "Neue Ebene" @@ -2166,7 +2166,7 @@ msgid "Set Layer Boundary Size" msgstr "Ebenengröße festlegen" -#: app/actions/layers-commands.c:512 app/core/gimplayer.c:255 +#: app/actions/layers-commands.c:512 app/core/gimplayer.c:253 msgid "Scale Layer" msgstr "Ebene skalieren" @@ -2178,7 +2178,7 @@ msgid "Layer Mask to Selection" msgstr "Auswahl aus Ebenenmaske" -#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1085 +#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1066 #: app/dialogs/layer-add-mask-dialog.c:62 msgid "Add Layer Mask" msgstr "Ebenenmaske hinzufügen" @@ -2726,7 +2726,7 @@ msgstr "Textdatei (UTF-8) öffnen" #: app/actions/text-editor-commands.c:132 app/config/gimpconfig-utils.c:552 -#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:393 +#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:396 #: app/core/gimpbrushgenerated.c:601 app/core/gimpbrushpipe.c:338 #: app/core/gimpgradient-load.c:63 app/core/gimppalette.c:360 #: app/core/gimppattern.c:328 app/tools/gimpimagemaptool.c:608 @@ -4607,7 +4607,7 @@ msgid "FG to Transparent" msgstr "VG nach Transparent" -#: app/core/gimp-gui.c:148 +#: app/core/gimp-gui.c:153 msgid "GIMP" msgstr "GIMP" @@ -4639,46 +4639,70 @@ msgid "Modules" msgstr "Module" -#: app/core/gimpbrush.c:531 +#: app/core/gimpbrush.c:534 #, c-format msgid "Could not read %d bytes from '%s': %s" msgstr "%d Bytes konnten nicht von »%s« gelesen werden: %s" # CHECK -#: app/core/gimpbrush.c:566 +#: app/core/gimpbrush.c:554 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Width = 0." +msgstr "" +"Schwerwiegender Fehler beim Verarbeiten der Syntax der Pinseldatei »%s«: " +"Unbekannte Farbtiefe %d." + +# CHECK +#: app/core/gimpbrush.c:563 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Height = 0." +msgstr "" +"Schwerwiegend Fehler beim Verarbeiten von Pinseldatei »%s«: Datei ist " +"fehlerhaft." + +# CHECK +#: app/core/gimpbrush.c:572 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Bytes = 0." +msgstr "" +"Schwerwiegend Fehler beim Verarbeiten von Pinseldatei »%s«: Datei ist " +"fehlerhaft." + +# CHECK +#: app/core/gimpbrush.c:596 #, c-format msgid "Fatal parse error in brush file '%s': Unknown depth %d." msgstr "" "Schwerwiegender Fehler beim Verarbeiten der Syntax der Pinseldatei »%s«: " "Unbekannte Farbtiefe %d." -#: app/core/gimpbrush.c:579 +#: app/core/gimpbrush.c:609 #, c-format msgid "Fatal parse error in brush file '%s': Unknown version %d." msgstr "" "Schwerwiegender Fehler beim Verarbeiten der Syntax der Pinseldatei »%s«: " "Unbekannte Version %d." -#: app/core/gimpbrush.c:595 app/core/gimpbrush.c:715 +#: app/core/gimpbrush.c:625 app/core/gimpbrush.c:745 #, c-format msgid "Fatal parse error in brush file '%s': File appears truncated." msgstr "" "Schwerwiegender Fehler beim Verarbeiten der Syntax der Pinseldatei »%s«: " "Datei scheint nicht vollständig zu sein." -#: app/core/gimpbrush.c:603 app/core/gimpbrushgenerated.c:648 +#: app/core/gimpbrush.c:633 app/core/gimpbrushgenerated.c:648 #: app/core/gimpbrushpipe.c:354 #, c-format msgid "Invalid UTF-8 string in brush file '%s'." msgstr "Ungültiger UTF-8 Text in Pinseldatei »%s«." -#: app/core/gimpbrush.c:610 app/core/gimpcontext.c:1299 -#: app/core/gimpitem.c:479 app/core/gimppattern.c:400 +#: app/core/gimpbrush.c:640 app/core/gimpcontext.c:1299 +#: app/core/gimpitem.c:480 app/core/gimppattern.c:400 #: app/dialogs/template-options-dialog.c:80 app/tools/gimpvectortool.c:339 msgid "Unnamed" msgstr "Namenlos" -#: app/core/gimpbrush.c:704 +#: app/core/gimpbrush.c:734 #, c-format msgid "" "Fatal parse error in brush file '%s': Unsupported brush depth %d\n" @@ -4855,11 +4879,11 @@ "%s" #: app/core/gimpdatafactory.c:411 app/core/gimpdatafactory.c:414 -#: app/core/gimpitem.c:274 app/core/gimpitem.c:277 +#: app/core/gimpitem.c:275 app/core/gimpitem.c:278 msgid "copy" msgstr "Kopie" -#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:286 +#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:287 #, c-format msgid "%s copy" msgstr "%s-Kopie" @@ -4921,7 +4945,7 @@ msgid "Rotate" msgstr "Drehen" -#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:259 +#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:257 msgid "Transform Layer" msgstr "Ebene transformieren" @@ -5292,7 +5316,7 @@ #. pixel size #: app/core/gimpimagefile.c:624 app/dialogs/info-window.c:552 -#: app/widgets/gimpsizebox.c:552 app/widgets/gimptemplateeditor.c:637 +#: app/widgets/gimpsizebox.c:429 app/widgets/gimptemplateeditor.c:637 #: app/widgets/gimptemplateeditor.c:673 #, c-format msgid "%d x %d pixels" @@ -5312,15 +5336,15 @@ msgid "Could not open thumbnail '%s': %s" msgstr "Vorschaudatei »%s« konnte nicht geöffnet werden: %s" -#: app/core/gimpitem.c:1096 +#: app/core/gimpitem.c:1103 msgid "Attach Parasite" msgstr "Parasit zuweisen" -#: app/core/gimpitem.c:1106 +#: app/core/gimpitem.c:1113 msgid "Attach Parasite to Item" msgstr "Parasit zuweisen" -#: app/core/gimpitem.c:1145 app/core/gimpitem.c:1152 +#: app/core/gimpitem.c:1152 app/core/gimpitem.c:1159 msgid "Remove Parasite from Item" msgstr "Parasit entfernen" @@ -5350,37 +5374,37 @@ msgid "Floating Selection to Layer" msgstr "Schwebende Auswahl in Ebene" -#: app/core/gimplayer.c:252 app/pdb/internal_procs.c:152 +#: app/core/gimplayer.c:250 app/pdb/internal_procs.c:152 msgid "Layer" msgstr "Ebene" -#: app/core/gimplayer.c:253 +#: app/core/gimplayer.c:251 msgid "Rename Layer" msgstr "Ebene umbenennen" -#: app/core/gimplayer.c:254 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 +#: app/core/gimplayer.c:252 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 msgid "Move Layer" msgstr "Ebene bewegen" -#: app/core/gimplayer.c:256 +#: app/core/gimplayer.c:254 msgid "Resize Layer" msgstr "Ebenengröße ändern" -#: app/core/gimplayer.c:257 +#: app/core/gimplayer.c:255 msgid "Flip Layer" msgstr "Ebene spiegeln" -#: app/core/gimplayer.c:258 +#: app/core/gimplayer.c:256 msgid "Rotate Layer" msgstr "Ebene drehen" -#: app/core/gimplayer.c:341 app/core/gimplayer.c:1129 +#: app/core/gimplayer.c:339 app/core/gimplayer.c:1110 #: app/core/gimplayermask.c:236 #, c-format msgid "%s mask" msgstr "%s Maske" -#: app/core/gimplayer.c:387 +#: app/core/gimplayer.c:385 #, c-format msgid "" "Floating Selection\n" @@ -5389,43 +5413,43 @@ "Schwebende Auswahl\n" "(%s)" -#: app/core/gimplayer.c:1055 +#: app/core/gimplayer.c:1036 msgid "Cannot add layer mask to layer which is not part of an image." msgstr "Masken können nicht zu einer Ebene ohne Alphakanal hinzufügt werden." -#: app/core/gimplayer.c:1062 +#: app/core/gimplayer.c:1043 msgid "Unable to add a layer mask since the layer already has one." msgstr "" "Es konnte keine Ebenenenmaske hinzugefügt werden, da diese Ebene bereits " "eine Maske hat." -#: app/core/gimplayer.c:1069 +#: app/core/gimplayer.c:1050 msgid "Cannot add layer mask to a layer with no alpha channel." msgstr "Masken können nicht zu einer Ebene ohne Alphakanal hinzufügt werden." -#: app/core/gimplayer.c:1079 +#: app/core/gimplayer.c:1060 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "" "Ebenenmasken mit anderen Abmessungen als die Ebene können nicht hinzufügt " "werden." -#: app/core/gimplayer.c:1183 +#: app/core/gimplayer.c:1164 msgid "Transfer Alpha to Mask" msgstr "Alpha in Maske übernehmen" -#: app/core/gimplayer.c:1343 +#: app/core/gimplayer.c:1324 msgid "Apply Layer Mask" msgstr "Ebenenmaske anwenden" -#: app/core/gimplayer.c:1344 +#: app/core/gimplayer.c:1325 msgid "Delete Layer Mask" msgstr "Ebenenmaske löschen" -#: app/core/gimplayer.c:1445 +#: app/core/gimplayer.c:1426 msgid "Add Alpha Channel" msgstr "Alphakanal hinzufügen" -#: app/core/gimplayer.c:1467 +#: app/core/gimplayer.c:1448 msgid "Layer to Image Size" msgstr "Ebene auf Bildgröße" @@ -6896,28 +6920,28 @@ msgstr "Größe des Ausdrucks" #. the image size labels -#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:241 +#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:222 #: app/widgets/gimptemplateeditor.c:236 msgid "_Width:" msgstr "_Breite:" -#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:248 +#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:225 #: app/widgets/gimptemplateeditor.c:243 msgid "H_eight:" msgstr "Höh_e:" #. the resolution labels -#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:338 +#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:273 #: app/widgets/gimptemplateeditor.c:363 msgid "_X resolution:" msgstr "_X Auflösung:" -#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:345 +#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:276 #: app/widgets/gimptemplateeditor.c:370 msgid "_Y resolution:" msgstr "_Y Auflösung:" -#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:357 +#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:269 #: app/widgets/gimptemplateeditor.c:383 #, c-format msgid "pixels/%a" @@ -7555,11 +7579,11 @@ msgid "%d minutes" msgstr "%d Minuten" -#: app/display/gimpdisplayshell-dnd.c:96 +#: app/display/gimpdisplayshell-dnd.c:98 msgid "Drop New Layer" msgstr "Neue Ebene ablegen" -#: app/display/gimpdisplayshell-dnd.c:140 +#: app/display/gimpdisplayshell-dnd.c:142 msgid "Drop New Path" msgstr "Neuen Pfad ablegen" @@ -9020,12 +9044,12 @@ msgstr "_Pinsel" #: app/tools/gimppaintoptions-gui.c:103 app/widgets/gimpbrushselect.c:201 -#: app/widgets/gimplayertreeview.c:330 +#: app/widgets/gimplayertreeview.c:332 msgid "Opacity:" msgstr "Deckkraft:" #: app/tools/gimppaintoptions-gui.c:108 app/tools/gimpselectionoptions.c:374 -#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:323 +#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:325 msgid "Mode:" msgstr "Modus:" @@ -10432,24 +10456,24 @@ msgid "Set Item Exclusive Linked" msgstr "Objekt exklusiv verknüpfen" -#: app/widgets/gimplayertreeview.c:250 +#: app/widgets/gimplayertreeview.c:252 msgid "Reorder Layer" msgstr "Ebenenreihenfolge ändern" -#: app/widgets/gimplayertreeview.c:311 +#: app/widgets/gimplayertreeview.c:313 msgid "Keep transparency" msgstr "Transparenz erhalten" -#: app/widgets/gimplayertreeview.c:846 +#: app/widgets/gimplayertreeview.c:848 msgid "Empty Layer" msgstr "Leere Ebene" -#: app/widgets/gimpmessagebox.c:458 +#: app/widgets/gimpmessagebox.c:460 #, c-format msgid "Message repeated %d times." msgstr "Meldung %d mal wiederholt." -#: app/widgets/gimpmessagebox.c:460 +#: app/widgets/gimpmessagebox.c:462 msgid "Message repeated once." msgstr "Meldung einmal wiederholt." @@ -10481,16 +10505,12 @@ msgid "Invalid UTF-8" msgstr "Ungültiges UTF-8" -#: app/widgets/gimpsizebox.c:290 -msgid "Keep aspect ratio" -msgstr "Seitenverhältnis beibehalten" - -#: app/widgets/gimpsizebox.c:574 +#: app/widgets/gimpsizebox.c:451 #, c-format msgid "%d x %d dpi" msgstr "%d x %d dpi" -#: app/widgets/gimpsizebox.c:578 +#: app/widgets/gimpsizebox.c:455 #, c-format msgid "%d dpi" msgstr "%d dpi" @@ -10543,7 +10563,7 @@ #: app/widgets/gimptemplateeditor.c:445 msgid "_Fill with:" -msgstr "_Füllbreite:" +msgstr "_Füllung:" #: app/widgets/gimptemplateeditor.c:455 msgid "Comme_nt:" @@ -10936,5 +10956,8 @@ msgid "Image Editor" msgstr "Bildeditor" +#~ msgid "Keep aspect ratio" +#~ msgstr "Seitenverhältnis beibehalten" + #~ msgid "Y:" #~ msgstr "Y:" diff -uraN gimp-2.2.0/po/el.gmo gimp-2.2.1/po/el.gmo --- gimp-2.2.0/po/el.gmo 2004-12-19 03:11:53.000000000 +0100 +++ gimp-2.2.1/po/el.gmo 2004-12-28 16:58:41.000000000 +0100 @@ -110,7 +110,7 @@ %sWeb BrowserWeb browserWelcome to The GIMP %d.%d User InstallationWhen enabled, GIMP will show mnemonics in menus.When enabled, menus can be torn off.When enabled, pressing F1 will open the help browser.When enabled, you can change keyboard shortcuts for menu items by hitting a key combination while the menu item is highlighted.WhiteWidthWidth:Window ManagementWindow PositionsXXCF error: unsupported XCF file version %d encounteredYYellowZoom 1:1Zoom AllZoom _AllZoom _InZoom _OutZoom inZoom outZoom:[ Base Image ]_About_Acquire_Add Tab_Advanced Options_Airbrush_All_Auto_Background color:_Brush_By Color_Channels_Clear Errors_Close_Close Tab_Clouds_Colors_Context Help_Copy_Default Colors_Delete Brush_Delete Channel_Delete Color_Delete Image_Delete Palette_Delete Segment_Detach Tab_Device Status_Dialogs_Duplicate_Edit_Edit Brush..._Edit Color..._Enormous_Equalize_File_Fill with:_Font_Fonts_Foreground color:_Gigantic_Help_Horizontal:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Large_Linear_Manually_Maximum number of colors:_Medium_Migrate GIMP 2.0 user settings_Mode_Name:_Nature_New Brush_New Channel_New Channel..._New Palette_New Template..._New View_New..._Noise_None_Offset..._Open Image_Open..._Palette_Paste_Preferences_Preview_Preview Size_Properties_Quit_RGB_Refresh Brushes_Replace_Save_Save keyboard shortcuts on exit_Save window positions on exit_Select_Selection_Small_Tab Style_Template:_Templates_Text_Tip of the Day_Tools_Vertical:_View_White Balance_Width:_Wrap around_X resolution:_X:_Xtns_Y resolution:_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscaleinchinchesindexedinvalid UTF-8 stringinvalid value '%ld' for token %sinvalid value '%s' for token %smillimetermillimetersminutepercentpixelpixelspixels/%apixels/%spointpointssecondvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: el Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-19 03:11+0100 +POT-Creation-Date: 2004-12-28 16:58+0100 PO-Revision-Date: 2004-11-08 17:04+0200 Last-Translator: Nikos Charonitakis Language-Team: diff -uraN gimp-2.2.0/po/el.po gimp-2.2.1/po/el.po --- gimp-2.2.0/po/el.po 2004-12-19 03:11:21.000000000 +0100 +++ gimp-2.2.1/po/el.po 2004-12-28 16:58:27.000000000 +0100 @@ -24,7 +24,7 @@ msgstr "" "Project-Id-Version: el\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-19 03:11+0100\n" +"POT-Creation-Date: 2004-12-28 16:58+0100\n" "PO-Revision-Date: 2004-11-08 17:04+0200\n" "Last-Translator: Nikos Charonitakis \n" "Language-Team: \n" @@ -1147,11 +1147,11 @@ msgid "Remove dangling entries" msgstr "Επιλογή Γραμματοσειράς" -#: app/actions/documents-commands.c:252 app/actions/file-commands.c:163 +#: app/actions/documents-commands.c:251 app/actions/file-commands.c:163 #: app/dialogs/file-open-dialog.c:198 app/dialogs/file-open-dialog.c:249 #: app/dialogs/file-open-location-dialog.c:193 -#: app/display/gimpdisplayshell-dnd.c:332 app/widgets/gimplayertreeview.c:802 -#: app/widgets/gimptoolbox-dnd.c:123 +#: app/display/gimpdisplayshell-dnd.c:334 app/widgets/gimplayertreeview.c:804 +#: app/widgets/gimptoolbox-dnd.c:125 #, fuzzy, c-format msgid "" "Opening '%s' failed:\n" @@ -1734,187 +1734,187 @@ msgid "Zoom all" msgstr "Μεγένθυνση όλων" -#: app/actions/gradient-editor-actions.c:582 +#: app/actions/gradient-editor-actions.c:589 #, fuzzy msgid "_Blending Function for Segment" msgstr "Τύπος χρώματος για τεμαχισμό" -#: app/actions/gradient-editor-actions.c:584 +#: app/actions/gradient-editor-actions.c:591 #, fuzzy msgid "Coloring _Type for Segment" msgstr "Τύπος χρώματος για τεμαχισμό" -#: app/actions/gradient-editor-actions.c:587 +#: app/actions/gradient-editor-actions.c:594 #, fuzzy msgid "_Flip Segment" msgstr "Αναστροφή τεμαχίου" -#: app/actions/gradient-editor-actions.c:589 +#: app/actions/gradient-editor-actions.c:596 #, fuzzy msgid "_Replicate Segment..." msgstr "Κατασκευή πανομοιότυπου τμήματος" -#: app/actions/gradient-editor-actions.c:591 +#: app/actions/gradient-editor-actions.c:598 #, fuzzy msgid "Split Segment at _Midpoint" msgstr "Διαίρεση τμήματος στο μέσο" -#: app/actions/gradient-editor-actions.c:593 +#: app/actions/gradient-editor-actions.c:600 #, fuzzy msgid "Split Segment _Uniformly..." msgstr "Διαίρεση τμήματος στο μέσο" -#: app/actions/gradient-editor-actions.c:595 +#: app/actions/gradient-editor-actions.c:602 msgid "_Delete Segment" msgstr "_Διαγραφή Τμήματος" -#: app/actions/gradient-editor-actions.c:597 +#: app/actions/gradient-editor-actions.c:604 #, fuzzy msgid "Re-_center Segment's Midpoint" msgstr "Διαίρεση τμήματος στο μέσο" -#: app/actions/gradient-editor-actions.c:599 +#: app/actions/gradient-editor-actions.c:606 #, fuzzy msgid "Re-distribute _Handles in Segment" msgstr "Επανατοποθέτηση στο κέντρο των μέσων στην επιλογή" # -#: app/actions/gradient-editor-actions.c:604 +#: app/actions/gradient-editor-actions.c:611 #, fuzzy msgid "_Blending Function for Selection" msgstr "Τύπος χρώματος για επιλογή" # -#: app/actions/gradient-editor-actions.c:606 +#: app/actions/gradient-editor-actions.c:613 #, fuzzy msgid "Coloring _Type for Selection" msgstr "Τύπος χρώματος για επιλογή" # -#: app/actions/gradient-editor-actions.c:609 +#: app/actions/gradient-editor-actions.c:616 #, fuzzy msgid "_Flip Selection" msgstr "Αναστροφή επιλογής" # -#: app/actions/gradient-editor-actions.c:611 +#: app/actions/gradient-editor-actions.c:618 #, fuzzy msgid "_Replicate Selection..." msgstr "Πλουμισμένη Επιλογή" -#: app/actions/gradient-editor-actions.c:613 +#: app/actions/gradient-editor-actions.c:620 #, fuzzy msgid "Split Segments at _Midpoints" msgstr "Διαίρεση τμήματος στο μέσο" -#: app/actions/gradient-editor-actions.c:615 +#: app/actions/gradient-editor-actions.c:622 #, fuzzy msgid "Split Segments _Uniformly..." msgstr "Διαίρεση τμήματος στο μέσο" -#: app/actions/gradient-editor-actions.c:617 +#: app/actions/gradient-editor-actions.c:624 #, fuzzy msgid "_Delete Selection" msgstr "Διαγραφή επιλεγμένου" -#: app/actions/gradient-editor-actions.c:619 +#: app/actions/gradient-editor-actions.c:626 #, fuzzy msgid "Re-_center Midpoints in Selection" msgstr "Επανατοποθέτηση στο κέντρο των μέσων στην επιλογή" -#: app/actions/gradient-editor-actions.c:621 +#: app/actions/gradient-editor-actions.c:628 #, fuzzy msgid "Re-distribute _Handles in Selection" msgstr "Επανατοποθέτηση στο κέντρο των μέσων στην επιλογή" -#: app/actions/gradient-editor-commands.c:84 +#: app/actions/gradient-editor-commands.c:85 #, fuzzy msgid "Left Endpoint Color" msgstr "Χρώμα δεξιού σημείου τέλους" -#: app/actions/gradient-editor-commands.c:86 +#: app/actions/gradient-editor-commands.c:87 #, fuzzy msgid "Gradient Segment's Left Endpoint Color" msgstr "Χρώμα δεξιού σημείου τέλους" -#: app/actions/gradient-editor-commands.c:186 +#: app/actions/gradient-editor-commands.c:189 #, fuzzy msgid "Right Endpoint Color" msgstr "Χρώμα δεξιού σημείου τέλους" -#: app/actions/gradient-editor-commands.c:188 +#: app/actions/gradient-editor-commands.c:191 #, fuzzy msgid "Gradient Segment's Right Endpoint Color" msgstr "Χρώμα δεξιού σημείου τέλους" -#: app/actions/gradient-editor-commands.c:353 +#: app/actions/gradient-editor-commands.c:358 #, fuzzy msgid "Replicate Segment" msgstr "Κατασκευή πανομοιότυπου τμήματος" -#: app/actions/gradient-editor-commands.c:354 +#: app/actions/gradient-editor-commands.c:359 #, fuzzy msgid "Replicate Gradient Segment" msgstr "Κατασκευή πανομοιότυπου τμήματος" # -#: app/actions/gradient-editor-commands.c:358 +#: app/actions/gradient-editor-commands.c:363 #, fuzzy msgid "Replicate Selection" msgstr "Πλουμισμένη Επιλογή" # -#: app/actions/gradient-editor-commands.c:359 +#: app/actions/gradient-editor-commands.c:364 #, fuzzy msgid "Replicate Gradient Selection" msgstr "Πλουμισμένη Επιλογή" -#: app/actions/gradient-editor-commands.c:371 +#: app/actions/gradient-editor-commands.c:376 msgid "Replicate" msgstr "Κατασκευή πανομοιότυπου" -#: app/actions/gradient-editor-commands.c:386 +#: app/actions/gradient-editor-commands.c:391 msgid "" "Select the number of times\n" "to replicate the selected segment." msgstr "Επιλέξτε πόσες φορές να αναπαραχθεί το επιλεγμένο τμήμα." -#: app/actions/gradient-editor-commands.c:389 +#: app/actions/gradient-editor-commands.c:394 msgid "" "Select the number of times\n" "to replicate the selection." msgstr "Επιλέξτε πόσες φορές να αναπαραχθεί η επιλογή." -#: app/actions/gradient-editor-commands.c:444 +#: app/actions/gradient-editor-commands.c:452 msgid "Split Segment Uniformly" msgstr "Ομοιόμορφη Διαίρεση Τμημάτος" -#: app/actions/gradient-editor-commands.c:445 +#: app/actions/gradient-editor-commands.c:453 #, fuzzy msgid "Split Gradient Segment Uniformly" msgstr "Διαίρεση τμήματος στο μέσο" -#: app/actions/gradient-editor-commands.c:449 +#: app/actions/gradient-editor-commands.c:457 msgid "Split Segments Uniformly" msgstr "Ομοιόμορφη Διαίρεση Τμημάτων" -#: app/actions/gradient-editor-commands.c:450 +#: app/actions/gradient-editor-commands.c:458 #, fuzzy msgid "Split Gradient Segments Uniformly" msgstr "Διαίρεση τμήματος στο μέσο" -#: app/actions/gradient-editor-commands.c:462 +#: app/actions/gradient-editor-commands.c:470 msgid "Split" msgstr "Διαίρεση" -#: app/actions/gradient-editor-commands.c:478 +#: app/actions/gradient-editor-commands.c:486 msgid "" "Select the number of uniform parts\n" "in which to split the selected segment." msgstr "Επιλέξτε σε πόσα ομοιόμορφα τμήματα να διαιρεθεί το επιλεγμένο τμήμα." # -#: app/actions/gradient-editor-commands.c:481 +#: app/actions/gradient-editor-commands.c:489 #, fuzzy msgid "" "Select the number of uniform parts\n" @@ -2450,7 +2450,7 @@ #: app/actions/layers-commands.c:232 app/actions/layers-commands.c:234 #: app/actions/layers-commands.c:291 app/actions/layers-commands.c:295 -#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:840 +#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:842 msgid "New Layer" msgstr "Νέο Στρώμα" @@ -2464,7 +2464,7 @@ msgstr "Ρύθμιση Μεγέθους Ορίου Στρώματος" # -#: app/actions/layers-commands.c:512 app/core/gimplayer.c:255 +#: app/actions/layers-commands.c:512 app/core/gimplayer.c:253 msgid "Scale Layer" msgstr "Μεγέθυνση/Σμίκρυνση Στρώματος" @@ -2479,7 +2479,7 @@ msgid "Layer Mask to Selection" msgstr "Αντ_ιστρφή επιλογής" -#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1085 +#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1066 #: app/dialogs/layer-add-mask-dialog.c:62 msgid "Add Layer Mask" msgstr "Προσθήκη Μάσκας Στρωμάτων" @@ -3136,7 +3136,7 @@ msgstr "Άνοιγμα Αρχείου Κειμένου (UTF-8)" #: app/actions/text-editor-commands.c:132 app/config/gimpconfig-utils.c:552 -#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:393 +#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:396 #: app/core/gimpbrushgenerated.c:601 app/core/gimpbrushpipe.c:338 #: app/core/gimpgradient-load.c:63 app/core/gimppalette.c:360 #: app/core/gimppattern.c:328 app/tools/gimpimagemaptool.c:608 @@ -5092,7 +5092,7 @@ msgid "FG to Transparent" msgstr "FG σε Διαφανές" -#: app/core/gimp-gui.c:148 +#: app/core/gimp-gui.c:153 msgid "GIMP" msgstr "Το GIMP" @@ -5125,42 +5125,61 @@ msgid "Modules" msgstr "Μονάδες" -#: app/core/gimpbrush.c:531 +#: app/core/gimpbrush.c:534 #, c-format msgid "Could not read %d bytes from '%s': %s" msgstr "Αδυναμία ανάγνωσης %d bytes από το αρχείο '%s': %s" -#: app/core/gimpbrush.c:566 +#: app/core/gimpbrush.c:554 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Width = 0." +msgstr "Μοιραίο συντακτικό σφάλμα στο αρχείο πινέλων '%s': Άγνωστο βάθος %d." + +#: app/core/gimpbrush.c:563 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Height = 0." +msgstr "" +"Μοιραίο συντακτικό σφάλμα στο αρχείο πινέλων '%s': Το αρχείο έχει " +"καταστραφεί." + +#: app/core/gimpbrush.c:572 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Bytes = 0." +msgstr "" +"Μοιραίο συντακτικό σφάλμα στο αρχείο πινέλων '%s': Το αρχείο έχει " +"καταστραφεί." + +#: app/core/gimpbrush.c:596 #, c-format msgid "Fatal parse error in brush file '%s': Unknown depth %d." msgstr "Μοιραίο συντακτικό σφάλμα στο αρχείο πινέλων '%s': Άγνωστο βάθος %d." -#: app/core/gimpbrush.c:579 +#: app/core/gimpbrush.c:609 #, c-format msgid "Fatal parse error in brush file '%s': Unknown version %d." msgstr "Μοιραίο συντακτικό σφάλμα στο αρχείο πινέλων '%s': Άγνωστη έκδοση %d." -#: app/core/gimpbrush.c:595 app/core/gimpbrush.c:715 +#: app/core/gimpbrush.c:625 app/core/gimpbrush.c:745 #, c-format msgid "Fatal parse error in brush file '%s': File appears truncated." msgstr "" "Μοιραίο συντακτικό σφάλμα στο αρχείο πινέλων '%s': Το αρχείο φαίνεται να " "τελειώνει πρόωρα" -#: app/core/gimpbrush.c:603 app/core/gimpbrushgenerated.c:648 +#: app/core/gimpbrush.c:633 app/core/gimpbrushgenerated.c:648 #: app/core/gimpbrushpipe.c:354 #, c-format msgid "Invalid UTF-8 string in brush file '%s'." msgstr "Μη έγκυρη συμβολοσειρά UTF-8 στο αρχείο πινέλων '%s'." # -#: app/core/gimpbrush.c:610 app/core/gimpcontext.c:1299 -#: app/core/gimpitem.c:479 app/core/gimppattern.c:400 +#: app/core/gimpbrush.c:640 app/core/gimpcontext.c:1299 +#: app/core/gimpitem.c:480 app/core/gimppattern.c:400 #: app/dialogs/template-options-dialog.c:80 app/tools/gimpvectortool.c:339 msgid "Unnamed" msgstr "Χωρίς όνομα" -#: app/core/gimpbrush.c:704 +#: app/core/gimpbrush.c:734 #, c-format msgid "" "Fatal parse error in brush file '%s': Unsupported brush depth %d\n" @@ -5341,11 +5360,11 @@ # #: app/core/gimpdatafactory.c:411 app/core/gimpdatafactory.c:414 -#: app/core/gimpitem.c:274 app/core/gimpitem.c:277 +#: app/core/gimpitem.c:275 app/core/gimpitem.c:278 msgid "copy" msgstr "αντιγραφή" -#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:286 +#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:287 #, c-format msgid "%s copy" msgstr "%s αντίγραφο" @@ -5415,7 +5434,7 @@ msgstr "Περιστροφή" # -#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:259 +#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:257 msgid "Transform Layer" msgstr "Μετασχηματισμός Στρώματος" @@ -5828,7 +5847,7 @@ #. pixel size #: app/core/gimpimagefile.c:624 app/dialogs/info-window.c:552 -#: app/widgets/gimpsizebox.c:552 app/widgets/gimptemplateeditor.c:637 +#: app/widgets/gimpsizebox.c:429 app/widgets/gimptemplateeditor.c:637 #: app/widgets/gimptemplateeditor.c:673 #, c-format msgid "%d x %d pixels" @@ -5849,17 +5868,17 @@ msgstr "Αδύνατο το άνοιγμα αρχείου: %s" # -#: app/core/gimpitem.c:1096 +#: app/core/gimpitem.c:1103 msgid "Attach Parasite" msgstr "Προσκόλληση Παρασίτου" # -#: app/core/gimpitem.c:1106 +#: app/core/gimpitem.c:1113 #, fuzzy msgid "Attach Parasite to Item" msgstr "Επισύναψη αρχείου" -#: app/core/gimpitem.c:1145 app/core/gimpitem.c:1152 +#: app/core/gimpitem.c:1152 app/core/gimpitem.c:1159 #, fuzzy msgid "Remove Parasite from Item" msgstr "Αφαίρεση του στοιχείου" @@ -5890,82 +5909,82 @@ msgid "Floating Selection to Layer" msgstr "Επιπλέουσα Επιλογή στο Στρώμα" -#: app/core/gimplayer.c:252 app/pdb/internal_procs.c:152 +#: app/core/gimplayer.c:250 app/pdb/internal_procs.c:152 msgid "Layer" msgstr "Στρώμα" # -#: app/core/gimplayer.c:253 +#: app/core/gimplayer.c:251 msgid "Rename Layer" msgstr "Μετονομασία Στρώματος" -#: app/core/gimplayer.c:254 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 +#: app/core/gimplayer.c:252 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 #, fuzzy msgid "Move Layer" msgstr "Νέο Στρώμα" -#: app/core/gimplayer.c:256 +#: app/core/gimplayer.c:254 msgid "Resize Layer" msgstr "Αλλαγή μεγέθους Στρώματος" -#: app/core/gimplayer.c:257 +#: app/core/gimplayer.c:255 msgid "Flip Layer" msgstr "Αναστροφή Στρώματος" -#: app/core/gimplayer.c:258 +#: app/core/gimplayer.c:256 msgid "Rotate Layer" msgstr "Περιστροφή Στρώματος" -#: app/core/gimplayer.c:341 app/core/gimplayer.c:1129 +#: app/core/gimplayer.c:339 app/core/gimplayer.c:1110 #: app/core/gimplayermask.c:236 #, c-format msgid "%s mask" msgstr "%s μάσκα" # -#: app/core/gimplayer.c:387 +#: app/core/gimplayer.c:385 #, fuzzy, c-format msgid "" "Floating Selection\n" "(%s)" msgstr "Επιλογή Γραμματοσειράς" -#: app/core/gimplayer.c:1055 +#: app/core/gimplayer.c:1036 msgid "Cannot add layer mask to layer which is not part of an image." msgstr "" "Αδυναμία προσθήκης μάσκας στρωμάτων σε στρώμα που δεν είναι τμήμα της " "εικόνας." -#: app/core/gimplayer.c:1062 +#: app/core/gimplayer.c:1043 msgid "Unable to add a layer mask since the layer already has one." msgstr "Αδυναμία προσθήκης μάσκας στρωμάτων αφού το στρώμα έχει ήδη μία." -#: app/core/gimplayer.c:1069 +#: app/core/gimplayer.c:1050 msgid "Cannot add layer mask to a layer with no alpha channel." msgstr "" -#: app/core/gimplayer.c:1079 +#: app/core/gimplayer.c:1060 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "" -#: app/core/gimplayer.c:1183 +#: app/core/gimplayer.c:1164 msgid "Transfer Alpha to Mask" msgstr "" -#: app/core/gimplayer.c:1343 +#: app/core/gimplayer.c:1324 msgid "Apply Layer Mask" msgstr "Εφαρμογή Μάσκας Στρωμάτων" -#: app/core/gimplayer.c:1344 +#: app/core/gimplayer.c:1325 msgid "Delete Layer Mask" msgstr "Διαγραφή Μάσκας Στρωμάτων" -#: app/core/gimplayer.c:1445 +#: app/core/gimplayer.c:1426 #, fuzzy msgid "Add Alpha Channel" msgstr "Προσθήκη στο ταμπλώ" -#: app/core/gimplayer.c:1467 +#: app/core/gimplayer.c:1448 #, fuzzy msgid "Layer to Image Size" msgstr "Νέα Εικόνα" @@ -7580,31 +7599,31 @@ msgstr "Μέγεθος εκτύπωσης:" #. the image size labels -#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:241 +#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:222 #: app/widgets/gimptemplateeditor.c:236 msgid "_Width:" msgstr "_Πλάτος:" -#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:248 +#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:225 #: app/widgets/gimptemplateeditor.c:243 msgid "H_eight:" msgstr "_Ύψος:" # #. the resolution labels -#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:338 +#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:273 #: app/widgets/gimptemplateeditor.c:363 msgid "_X resolution:" msgstr "_Χ ανάλυση:" # -#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:345 +#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:276 #: app/widgets/gimptemplateeditor.c:370 msgid "_Y resolution:" msgstr "_Ψ ανάλυση:" # -#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:357 +#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:269 #: app/widgets/gimptemplateeditor.c:383 #, c-format msgid "pixels/%a" @@ -8172,13 +8191,13 @@ msgid "%d minutes" msgstr "%d λεπτά" -#: app/display/gimpdisplayshell-dnd.c:96 +#: app/display/gimpdisplayshell-dnd.c:98 #, fuzzy msgid "Drop New Layer" msgstr "Νέο Στρώμα" # -#: app/display/gimpdisplayshell-dnd.c:140 +#: app/display/gimpdisplayshell-dnd.c:142 #, fuzzy msgid "Drop New Path" msgstr "Επόμενο Τμήμα" @@ -9888,12 +9907,12 @@ # #: app/tools/gimppaintoptions-gui.c:103 app/widgets/gimpbrushselect.c:201 -#: app/widgets/gimplayertreeview.c:330 +#: app/widgets/gimplayertreeview.c:332 msgid "Opacity:" msgstr "Αδιαφάνεια:" #: app/tools/gimppaintoptions-gui.c:108 app/tools/gimpselectionoptions.c:374 -#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:323 +#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:325 msgid "Mode:" msgstr "Κατάσταση:" @@ -11460,30 +11479,30 @@ msgstr "Λιγότερες Επιλογές" # # FIX? see above for "send to back" -#: app/widgets/gimplayertreeview.c:250 +#: app/widgets/gimplayertreeview.c:252 #, fuzzy msgid "Reorder Layer" msgstr "/Στοίβαγμα/Βύθιση Στρώματος" -#: app/widgets/gimplayertreeview.c:311 +#: app/widgets/gimplayertreeview.c:313 #, fuzzy msgid "Keep transparency" msgstr "Διαφανές" # -#: app/widgets/gimplayertreeview.c:846 +#: app/widgets/gimplayertreeview.c:848 #, fuzzy msgid "Empty Layer" msgstr "Καθορισμός Στρώματος" # sysdeps/names/msg_limits.c:47 sysdeps/names/msg_limits.c:58 -#: app/widgets/gimpmessagebox.c:458 +#: app/widgets/gimpmessagebox.c:460 #, fuzzy, c-format msgid "Message repeated %d times." msgstr "Το μήνυμα επαναλήφθηκε %d φορές" # sysdeps/names/msg_limits.c:47 sysdeps/names/msg_limits.c:58 -#: app/widgets/gimpmessagebox.c:460 +#: app/widgets/gimpmessagebox.c:462 #, fuzzy msgid "Message repeated once." msgstr "Το μήνυμα επαναλήφθηκε μία φορά" @@ -11516,17 +11535,12 @@ msgid "Invalid UTF-8" msgstr "Μη έγκυρο UTF-8" -#: app/widgets/gimpsizebox.c:290 -#, fuzzy -msgid "Keep aspect ratio" -msgstr "Διατήρηση αναλογιών" - -#: app/widgets/gimpsizebox.c:574 +#: app/widgets/gimpsizebox.c:451 #, c-format msgid "%d x %d dpi" msgstr "" -#: app/widgets/gimpsizebox.c:578 +#: app/widgets/gimpsizebox.c:455 #, c-format msgid "%d dpi" msgstr "%d dpi" @@ -12012,6 +12026,10 @@ msgid "Image Editor" msgstr "Παλέττα χρωμάτων:" +#, fuzzy +#~ msgid "Keep aspect ratio" +#~ msgstr "Διατήρηση αναλογιών" + #~ msgid "Y:" #~ msgstr "Υ:" diff -uraN gimp-2.2.0/po/en_CA.gmo gimp-2.2.1/po/en_CA.gmo --- gimp-2.2.0/po/en_CA.gmo 2004-12-19 03:11:53.000000000 +0100 +++ gimp-2.2.1/po/en_CA.gmo 2004-12-28 16:58:41.000000000 +0100 @@ -1,297 +1,296 @@ -Y Jw &kG29zGAN>i<k4@2;PPO29$-^9;7 :D -K V -` -k v - -(>0Ev -  - -& 1 >J Z fr w K.b1! 0?VZm -  -  - ':Rdv*6-ENk##Ga -}  )1>3p -do - -A+Jm<  $4Meu}  ": -CN_x&$ 6=C]"e  -7? E R`ip x   m+ 0 > LV_ | C7=*@h6dEc3y<#!"Da {  2Ol,  0 Q!_  $+ 1?R an.5578W),28 kOA%U&{41# -; W cm -  6H0Z  +<Obk {  - $ 5 Rs" +9I R^f -2Kk "" - ! -@)Ku,!##!@%b. !4#J-n%4L Q_ -y - - *9 @N -al-s  ->Qat  %! :GZ&r   ) 8E Ubt  -( -3-> lx   -  $8 KYs | :?8@ y  - - -  -# . : -D O[ dq > $7GYhz  ,@V fp - - + AN cp -* !&H._#"&6] s,# $'>f'FT[   +5 -L We   +(4$]=6<?:Az79c.9B=fM>CJ7g  &;@R b lx   -@Riy+BVj ~ -   -    -! , H  P \ l  |      ( -0 -6 -= - E -R -Z -` +] K &k6G9G$AlNi<gk@2Q;PO2a9-9;67r  + + +  +/ +GRZb~0 + +2=DLT c q } + +   KL.1!3Ugn} +   +(3H [et +}* 66m#7Vk# + #,L` h r 13(.AH +)0 ? +LWhzAJ(<; x  .AJas  +&$<ah n x"   +$/>Oc7w    m-   + C7b=@6dP3<1#n!  !*BXp,Gai | !,AV_ h v  .5-5c78) +,4a}2 !O=A%&41Q#  .> +MX` ft 0   % / <Id+   + )3$Sx %8H"]  bk|  ""+Ngp +  +), 6!P#r#!%.!P Wct#-%,Rh~  + + + ,3B G Ubr  +- "/?V Zdio " 2 > LY`f%l! & '5DW iw     0Khz + +-   $ +, 7DWj   !:??z8  +5 +DOU +k v + +   > [|$ 4A P]bz - C +Q\ +t    $ 2 +>I*Z!.$#-"Qt&  ,#Cgn }''%BXtFT*1 7DZ m  +  ,;M_ eqz ($0=36q1<?AW79c 0o9B=f[>CJEg  &4IN` p z   (;N`w 9 P d x    +     +     +  -f -Oq - - - - -s     -     . 1 D W  -f  q             ' u6   cQ z=CrK !1F&W'~ B     &2 7AGNS er!*@ W -al u   -*H2 -{  -H!Bae1t  -  `C1^0   - -  0A`s ( - -H -! , -9D KWf u    #* 2@Y +G KY k y K36KZ"p  $" 7 E f(+)*!1S/e*'=M]f -x  0  G h        !+! $r$$$$ $ -$ $ $$%1%Q%j%~%% %%% %%%&&@&]&-d&& && & & &&& '' ' '+'B'a''' ' ' '' ''( (,( -B(M(b( x(( (( -((((() )))")4)L) b)p))) -)#)))**!*)*F*+c*** * * -* * ***+ +9+ N+[+ j+x+++"++++ ,-,3,8,>,$T,y,,,, ,, , ,,, - -- -5- @- -M-X- h-r-- - ------.4.F.M.V. i.u.... -. ..... / /$/-/ >/ K/ U/a/~/// / -/ // / /0 !0 -0 90,E0r0!0000)0 1&1 >1 L1X1]1l1s1 1 11B1A162T2i2 {2222 222222t33333 -33 333 44 4@4"_4!4!4444 5 5 #5-5=5L5 T5b5Vj5+5 5(5 6"&6I6 _6 k6w66%6 -6 66667 -7*7 97G7 P7^7 r7 |7777 7 7 77&7,8 L8Y8^8 -n8 -y888888 949P9b9 -h9s9{9 -9 999 9999 9: :!":D: S:a: w:::: ::: ::;;;?D;;;;;;;;4<<<-< >>"> -2> =>#G>k>-~> >>> >>> ?? -? (?4???@ @@!@)@/@E@ -]@ -h@s@@ -@ @ @@@@ @ @!@!A %A3AGA VA cApAAA AAA AA -AAB "B0B EBQB -dBoBBBBB B!BB!C#4CXC nC -{C9CUC=D<TD=DD"D?D8EJE [EgEkEpE(uE,EEEEE -FF0FEFJYF FFFF F G G(G BG NG\GtGGG;GGH H *H6HPH bH nH|H H H HHH HHHI-IAITIeIxIIIIII+I!J9JYJ`J oJ |J JJ J JJ#J JK K%K:KQK6iKKKKK K7K&LDLYLiLpLLL L LLL LL M"M7M=M -DM -OMZM bMoMM MM -MMM MM -MMN 7NCNUNpNN NNNNNO4OJOgOzOOOOO.OEPaP rP PP P PPP P P P -QQ $Q -0Q;QJQ YQfQQQQNlvwlll m%m -m :mFm Lm!mmmmmmmn1n8nGnNnWnknn n n n nnnn nnn oo %o 1o=oZo!iooo(oo#o p p)p0p -6p Ap NpXpgp{pp -p p -p pppKp10q7bq1q5qHrAKrr;s!Tsvs 8tYt @uMv}v*twBxxyyjzz z{){52{h{1|0J|0{|1|(|C}K}S}, ~2M~ ~AA*%P ƃjehGI22"UNo -Ȋ -&7=BQoZʋЋ - = KUnw  -< ڍ  /?Nc}َ  -)49B3Y;;ɏF   %- ?`gox3ϒ#'?Rb| ɓF? -_ -ju z     !̔!  +(KT0Qѕ#$_5PG -SOjљo<ej~}pomwݜ<U?>ҝtt`\f0lѠ 6o)4#ߡG̢%X:UO9PYbj -s ~  #¤  !*=PYk }   ɥѥץ ڥ 1R Xelu  Ħ Ǧ Ӧ ݦ -  -5U ^lr  -çΧ   + ? M[ kxè Ԩ   ( -5@FUq֩  * 4> FP Vbw  Ѫު   - - -6 >H N[agmt{  ѫ ٫% -EPc r ~  ̬ج ۬'/BX x  - ɭ֭   -   ( 2 ?L ]g oy -   ˮ׮    " 0= F Tb q}  ¯ ίۯ 0CU(gϰ410/bر # <]|"Ʋ -βٲ " 3?FN^p - - - ųӳٳ -!28 -ALR[`u ´ȴ˴ڴ޴ -55 GQafm u!  ۵ - '3:>FKQW ^ hrx .ֶ@4&JkqGݸ9%G_ANi8<kߺ@K2;RON29Ѽ- 99;s7  -  -  - #/? -NY\l -վ0#4GPX -oz    -ȿ -ӿ ޿    $ 0K=.1>!p -, 7C [ -gr  -'6,L6y=Sh}# -6ARZlu   13)]qw -*DZt{  -AJ(s<   08= Wcy - -6M&c$  "$ GSX^c -s~7  (/ 7 DP Xej om|   <JZ aCn7=@(7id$3:n<#!" <H ^hp0N,e  !%Gbx    '4.J5y578)V,2 1RmOA%&A4h1#   )3K\bkz - 2( [ hv -~   -+ ?IZi r| -  $ 3Tn" * 3?G  ,M b"p" -  -")-W,q!##!"%Dj. #,-P~%. 3A -[ -f -q|    "0 -CN-U  "5EXo    %! ,?&W~    + ;HZ iu - -.$ S_ ft | - $ 7E_ hr :?8, eqz  - -    -  & -0 ;G P]q > #3ETf  /E U_s  -   4A Vcs   -*!;.R#" -&)P fr,# '1Y'vFTN   ( -?JY v   - ()$Rw=}6<?/Ao79c#9B=fB>CJ,gw  05I Y co   (;Mdt*BVj ~ -   -   -!,H P\l |)17> FS[a -gOr -z -   . :M` -o z     0u?cZ zFLsT"+;P'a( B   $ 2> CMSZ_ q~ -6L c -mx    - -6H> -  -H!B*mq2  -  `,C'1k0   -  -  - = N m   (  -  - H  -. - 9 +/ +: +V + ^ +j +z + + + + + + +( > D K  S ` h n  +t O   +       +      . ? R e  +t             +5uDc_ zKQrY&/?T&e' B   & 4@ EOU\a s  /8N e +oz    + !8H@ +  +H! +B,os1  +  !`-C(1l0   + + .>On ( + +H +/ : +GR Yet      18 @Ng  #9U Yg y  K36"Yh"~  $0 E S t(+)*!?a/s* '# K [ k t  +        !!,! C!d!!!!!!! ! "'" 8"B"R"l""!"""" ""#$#9#X#q#-#$$$$$ $%%% (%4%3:%n%%%% % +% % %%&-&M&f&z&& &&& &&&''@'Y'-`'' '' ' ' ''' ' +( ( ('(>(](|(( ( ( (( (() )() +>)I)^) t)) )) +)))))** ***0*H* ^*l*** +*#***+++%+B++_+++ + + ++ + +++,,5, J,W, f,t,,,",,,, -)-/-4-:-$P-u---- -- - --- - .. +1. <. +I.T. d.n.}. . ....../0/B/I/R/ e/q//// +/ ///// 0 0 0)0 :0 G0 Q0]0z000 0 +0 00 0 01 1 )1 51,A1n1!1111)1 2"2 :2 H2T2Y2h2o2 2 22B2A223P3e3 w3333 333333p44444 +44 444 4 +55<5"[5!~5!5555 6 6 6)696H6 P6^6Vf6+6 6(67""7E7 [7 g7s77%7 +7 7777 8 +8&8 58C8 L8Z8 n8 x8888 8 8 88&8,9 H9U9Z9 +j9 +u999999:4:L:^: +d:o:w: +: ::: :::: :: ;!;@; O;]; s;;;; ;;; ;;;;<?@<<<<<<<<4===-= ??? +.? 9?#C?g?-z? ??? ???@@ +@ $@0@@@@ AAA%A+AAA +YA +dAoAA +A A AAAA A A!AB !B/BCB RB _BlBBB BBB BB +BB C C,C ACMC +`CkC}CCCC C!CC!D#0DTD jD +wD9DUD=E<PE=EE"E?E4FFF WFcFgFlF(qF,FFFFF + GG,GAGJUG GGGG G G H$H >H JHXHpHHH;HH +I I &I2ILI ^I jIxI I I III IIIJ)J=JPJaJtJJJJJJ+JK5KUK\K kK xK KK K KK#K KL L!L6LML6eLLLLL L7L"M@MUMeMlMMM M MMM MM NN3N9N +@N +KNVN ^NkNN NN +NNN NN +NNO 3O?OQOlOO OOOOOO4PFPcPvPPPPP.PEQ]Q nQ |QQ Q QQQ Q Q Q +RR R +,R7RFR URbRRRRN8S +SSSSS SSSS T#&TJThT |TTTTT#T +U(U kNk^kokkkkkkk kll 3l?lDlTlil+ollll ll ll l +lm mmm !m -m8:mvsmmm n!n )n 6nBn Hn!innnnnno-o4oCoJoSogoo o o o oooo ooo pp !p -p9pVp!eppp(pp#p +q q%q,q +2q =q JqTqcqwqq +q q +q qqqKq1,r7^r1r5rHrAGss;t!Ptrt 4uUu MoVƌ̌ތ +) 9 GQjs { +< ֎ +;J_yՏ  +%05>3U;;ŐF   !) ;\ckt3˓##;N^x ŔF; +[ +fq v     !ȕ!  +$KP0Q͖$[5PG-OO}j͚o8ej~ypoiwٝ<Q?>Ξt t`Xb0h͡ ޡ6o%4#ۢGȣ%X6UO5LU^f +o z  # &9LUg y   ŦͦӦ ֦ -N Tahq   ç ϧ ٧ +  )1Q Zhn}  +ʨܨ   ' ; IW gt Щ ܩ + 5 +BMSb~ʪ  7 AK S] co ī˫ ޫ   +  +!:C KU [hntz  Ĭެ  #2 +R]p   ̭ ٭ +4<Oe  î +ˮ ֮   +  ( 5 ? LY jt | +  ˯ د  " / =J S ao ~ ° ϰ ۰ #,=Pb(tıܱ41=/oŲ #% Ij"ӳ +۳ / @LS[k} + + +̴ Ҵ +#.?E +NY_hm ˵ϵյص +5 B T^nsz ! Ƕ   +) 4@GKSX^d k u .@A&Wk~G92GlANiE<k@X2;̼RO[29޽-9F;7  +  + +% 0<L +[fiy +ȿ00AT]e +|    + +    , 1 =KJ.1K!}' +9 DP h +t  +!4C,Y6+J`u# ' +CN_gy   136j~ +,7Qg  +AJ5<  -=EJ dp + )CZ&p$   )"1 T`ekp +7   ,5< D Q] erw |m  + #, IWg nC{7=@57vd13G{<#!/ IU k u )Ge,|  -!<^y   / >K.a55784)m,2 HiOA%2&X41# + 4 @Jbsy + ,2? r  +   -.B V`q  +  $ - Jk" #1A JV^ * Cd y"" +  +9)Dn,!##!9%[. -#C-g%-E JX +r +} +  #2 9G +Ze-l  (9L\o    %! 6CV&n   % 4B R_q   +% +0.; jv }  +  '; N\v  :?8C |  + +    +& 1 = +G R^ gt > ':J\k}  1F\ lv  +  '5 KX mz   +*!0R.i#"!&@g },# .'Hp'FTe   5? +Vap    !7(@$i0=61:<l?A7+9cc092Bl=f>TCJg"     , 9 GUj4Qm )7 +J Uc h +u   +  '5Mi)   +Om +%7Qh +~   .  + % 3 ?LQ `m  u`r?c izvss' (4 ]Bi      + )8JPhy}  +# ,6=E J Wc~ +H +2 =GW +_Hj!B2+^qv { +  `8 C 1 +0H +y +  + + + +  -F -Q - X -d -s - - - - - - - - - - - -  0 7 ? N h    % ; W  [ i  {   M 3 6& ] l "      $ 4 I W x(+)*!Ce/w* -''O_ox -/B Yz "= NXh! ):On- / ?K3Q  -  %Dd}  (@0q-x     # ( 4@Xw     6B -Xcx   -'08Jb x -$39A^+{   -   8Q fs " 7EKPV%m     +8 -P [ -hs   3Oahq  -    /  9 C L  ]  j  t       -    ! !(! B! N! Z!,f!!!!!!!)" :"G" _" m"y"~""" " ""B"A#W#u## #### ###$$$$$$$$ -$$ $$% "%/%!C% e%$%#%#%% &$& <& F& P&Z&j&y& &&V&+& '($'M'"S'v' ' '''%' -' (((((<( -L(W( f(t( }(( ( (((( ( ( ( )&%),L) y))) -) -)))) *#*6*4H*}** -*** -* *** ***+ "+.+ C+!O+q+ ++ ++++ ++, ,',.,;6,?r,,,,,, --'-4--.-. =/G/P/ -`/ k/$u//-/ /// 00#0:0C0 -L0 W0c0 1111 :1H1Q1Y1_1u1 -1 -111 -1 1 111 -2 -2 &2!02R2 V2d2x2 2 2222 222 33 -%303B3 U3c3 x33 -333333 3!4'4!E4#g44 4 -494U4=I5<5=56"6?+6k6}6 6666)6-677"737 -D7O7e7z7K7 7778 )8 68C8^8 x8 88888;8*9D9 S9 `9l99 9 99 9 9 999 ::4:Q:c:w::::::::;++;W;o;;; ; ; ;; ; ;;# < 1<=< O<[<p<<6<<<<= =7$=\=z====== = ==> ">/> M>Y>n>t> -{> ->> >>> >> ->>> ?? -(?3?S? p?|???? ???@%@9@4N@@@@@@@ A.%AGTAA A AA A AAB B +B 7B -CBNB _B -kBvBB BBBBBNyC -CCCCC C DD7DMD#gDDD DDDD E#'EKEiE }EEEEE$EF0F EFOF_FyFF!FFFF -FGG -G;GZGuGGGG GGGHH?HVH oH}HH HHHHHII/I -AILI]I#wIII III -J#J\ O\\\u\ \\\\\+\\\] ]] #]0] @] -N]Y]_]f]n] w] ]8]v]@^G^_^w^ ^ ^^ ^!^^^_0_I_f________ _ _ _ ```&` /`<`L` [`g` x` ```!```( a4a#=a aa oa|aa -a a aaaaa a a -b bb/bK8b3b9b3b7&cI^cAcc;ud"dd ee fgXh*hBjFj-kLkkQl Wlel)ll5ll1|m0m0m1n(BnCknnS0o,o2o oAqAGq*qq`r Ns[t*uuyv!wwxGeyyz2{{N{ "|-,| -Z|e|x||||||o|.}4}F}Y} r}}} } }}}} }} -}=~ ?M dn$>N ]j~ 3;;/k F [e j w ƃ̓Ճރ35#iɄ $0MVF_ -ƅ -х܅    -  %!3!U w +M0 Q:%$ʈ5P%Gv-Oj<oej}~pgo؍wH<?>=t|t`fǐQё1ב (= N\6^p4%LrG;%XUOXɕҕڕ -    #2V ^lu{–˖ݖ    1;CI -LWk Ɨ ̗ٗ  -(: = I Sau| -  Θ ט (4 -<GZ ky  əי -? P \h -w   -ĚӚ+<Ufx    -śЛ ֛ *17> R_b k u - - ɜ Ϝܜ   +8R Zgnu}  -ǝҝ   4 C P\ _intǞݞ  -.4; -C N[ k y -     ğџ   -  +4 D Q]f m{   à ̠ ڠ $, ; H Tav ɡۡ)(>Vh41// ?` hu{# ţ ",O -Wbt ȤϤפ -' -2 -=H N\brx - -ʥեۥ# +8GKQTcg -mx5 Ѧۦ  !" D e - ħȧЧէۧ    !.@o* p8+ ) 4So# Y+^yuR)k98Ung& c}CmX_D [+ksi&N Y|{l7>?LvM1AQ *@ =R~< uWQQ4 [b -4 uUtj{{A 5Ct&TM&L n6O}83%3K 7jZOM}xY J !h_9( 95Klr0$)= -KM?,n1l.0 B  H-jQ b r" .#e42I<f735vumd+p)U ,`|SE(  DP1 -f ||%ZFMF,_d93hw~  X}>G[w=O.?-*%R60<BE]z@*6 rzu#tp -; D"tB!l*C. 0 O I`D r< ][@#6g:L8X -?I,cvWBV_0mvX<=jRPl<<F7U5 {-L[uJsM&'\bxcyU~\bV*^=2G1vRxG aaAFKH oUp6]TO s$ W < Jyf:k]yb 4\b3)iPW`YE' FJJk/ CBnV'ymfa-bIJOwo G$GxY s!'::{PE  ;(C\7 P Z`$noFGK%hbk\M _#FF z sJB -m*C0jC - d&iS; 5acHq,(oRDPj`&TL.d H w - aV yXIO8TQU|D.1!;Iv]KZP~Az>fdpri  h&+JE:>N RWeW?t2 ]4w7;Qs^Z4  }qq4UKxG^6"XG[V*]!,Fc3 Wv $5#!Y^kC8 g$8 t^0& qJ#6 -! ~vcI /MIA/>S.h, / #Eq$% 2N%?XAa/Y"(x' BdzSON_}EXAa9 }x No/R$0K&Xsw3E, Qa f;4LEV P;3: wI 7fq@:W2/h1i|A"@e=f@4k"(VS:eoLAg91AG)wVx)% z1ZHg]HBEy>:eWb~ZmH .y!r=LCzn;`SO/l-M_#nz|B2:DY \!-eLS h>Rg`uD  ^Nr'^ W>} +/D6}u9u5 P=3@QTs`t0$l>< T |tmNrjo ~! -teU_5~p('99{rh8Ii+kV? %HH8F)" q1 <-9c q'`KDGTq[j ,vi k hdTMP .{@p+5 =$_#ZidSUC @eV76R S{;N "n*.08Y/ " - NlL*x[pT)zTgQ\  -dZ\Kgj f 2nmo7 Y%' a+;2 7 J B{52[me? Q= HwON?"sg61- 2c iX l^|+'?(((~  %]@cy> 3,\p) + + + + + + +  C (Q  +z  + H  +   +       - : P e  t                    & 4 AMO36"- PZr $   #(D+m)*!/"RYh*y' +# +5@Pfv .?HWp  /!Gi  -/]fv  3/GW o +|  *; P^u |@ +-? R_ d r ~   /C W a my   + '5 MY +oz 4K +S$^+@H O ] +i t    )<W"n %,?Sb q}     +  +    & 5  E  O Y r       ! +! !*!=!W!\! +b! m!y!!!! ! !!! ! " ""6"E"X" k" +x" "" " "" " " ",",#!?#a#u##)# ## # $$$&$-$ >$ J$X$Bk$A$$%#% 5%?%F%U% e%r%%%%%.&=&O&W&`& +e&p& &&& &&!& &$'#D'#h'''' ' ' ''(( (((V0(+( (((("() %) 1)=)W)%o) +) ))))) +)) ) * *$* 8* B*P*V*i* ~* * **&*,* ++$+ +4+ +?+J+g+++++4+,(, +.,9,A, +Q, \,i,x, ,,,, ,, ,!, +- -'- =-I-Z-v- --- ---;-? .K.Z.b.v....4b///-/ 000 +0 1$131-F1 t111 11111 +1 11222 222223 +&3 +13<3R3 +b3 m3 w3333 +3 3!33 334 4 .4;4W4^4 f4t44 44 +444 44 55 +05;5M5i555 5!55!5#6$6 :6 +G69R6U6=6< 7=]77"7?788 '83878<8)A8-k88888 +8889K'9 s9999 9 999 : :+:C:]:m:;::: : :;; 1; =;K; [; i; v;;; ;;;;;<#<4<G<X<k<<<<+<<=(=/= >= K= X=d= v= ==#= == == > >68>o>>>> >7>>?)?9?@?W?m? |? ??? ?? ??@ @ +@ +@*@ 2@@@V@ e@s@ +y@@@ @@ +@@@ AA'ABA^A yAAAAAA4AB9BLBeBBBB.BGB5C FC TCaC yC CCC C C C +CC C +DDD -D:DWD_DsDNE +aElEuE|EE EEEEE#F$FBF VFbFtFFF#FFG G#G6GSGjG$GGG GGGH&H!>H`H|HH +HHH HHHI%I9IQI gIsIIIIII JJ)J _fnw3΅#&?Rb| ɆF? +_ +ju z     !̇!  +(MT0Qӈ%$c5PG-WOjՌo@ej~poqw<Y?>֐tt``j1p֓ 6p.4% Gԕ%XBUOAYbks +|   #˗ #*3G[dv    ʘԘܘ + >_ ery  +ә ֙   +' /= Fg p~ ͚ +՚ !1@ T bp ƛ؛   +, F P +]hn}՜" 2 S ]g +oz  ĝԝ۝      +) +4?Xa is y ɞ ՞ 'A P +q|  ǟޟ   1MV^q   Ƞؠޠ +   # +1 < J W a n{   + ɡաޡ   %5< E R `m v  Ƣɢ΢֢      3@FO`s)ɣң4,1a/ä٤  + %:#K oƥ"֥ + /6?U fry +Ѧ +ܦ +  ") +ITek +tͧ է  +"*/53i { !̨  0 +P [gnrz   !ȩ.[|r17<-~T>7 W7WVn/er;3N S +#c7tVrlAg[0'G=bl/w:5 \T\~"B-LSsM1 =MHv;2%(w$ Y_v!Re_Gx* BZ W +[!+)hesbw2 0i" nLSKXg_ N:58 ^O z}"++ n'1.C.VF9EN<Nv 1_>>o^+\ B 6_G{ {89uSX'M T/ MXD 9 2rHa4oVh|?B@ &3~ =Lf$0547y| +]O ]E 2 +"w[i'e%("q>U9m= t_,qFPv &  |+N34 CnE2# ifLc=tIB']"}@! ]X  ]v7P-g hUA +xJOxAjapmY Dj,{Zol *#(S0 W@zn*VoDLUqF J: >=|Q  fJY@0bX$ =uQHm/IjE0Y&vW$lYh4 TsG@}*1CMQjHm!rkE^Sl A]M YH?3Z& ~J1e,%n,wkjc5oI:/B5?GuW qSA >I dHa;udFKeZBR +zeM\Z)NB ]-ku19vJc@s*4 XsCH6vTFbw'^*e' G)N JO #QpAi;9P &(mB +5u-j.[spkb$Q`yFg0|8Rq w&!F(}O@ J`2xIv<FPo"4o5 pc(JR&;#&O/ tx; K tkC$A ji+ +0lK@ f-< "% )sc+S !V<@&sj;H ?CEO$CaU +%MVI `f<~[ 6K + > yAD!/q =Z ZTh, ;?\i lc d\ IU9)p3`U}Pku  U +A>3 ^EPZCarwx}nD6.[6 l,1n:~C?b 12/%w: ;#Wy(*"MWUy- %md{dIyg`h{ N 6 ?gk =4 B@9VXF=:kM +{pKaJ :f ~sDR Gm!Gti#2(<KTt*P8>lr#5E9X[$zy[Gde iDL|t,>}c2xi8I7-z#EPSA8%0 +).zQaf8(b;oQ4Q\ ":L KO,D %$}) ._{'-h 6%8|#( _) x]p^hU)O z* ^LYH nR ?? Y L] hRIbW 6,EQ ^\<{SDa\4k[' yqV3xPU5.WY`H 3Pf 4p7R|r ~!& 3rY ZT <-X~<L*mKq. G d ! d{ NV p,:8j\z`Z/a_c0  `5R1g 6^TzODgC 2Jb]`9uF?)8'QRKy7. g  om$dtq6 Nf}7. u3/TX Invalid option "%s" Usage: %s [option ... ] [file ... ] @@ -323,19 +322,19 @@ (Unnamed Buffer)(Unnamed Template)(Varies)(clean)(invalid UTF-8 string)(modified)(none)1 Layer1 layer15 degrees %s16:1 (1600%)1:1 (100%)1:16 (6.25%)1:2 (50%)1:4 (25%)1:8 (12.5%)2:1 (200%)2D Transform...4:1 (400%)8:1 (800%)<%s><>For optimal GIMP performance, some settings may have to be adjusted.The GIMP - GNU Image Manipulation Program Copyright (C) 1995-2004 Spencer Kimball, Peter Mattis and the GIMP Development Team.The GIMP tips file could not be parsed!Your GIMP tips file appears to be missing!A file named '%s' already exists.A_dd to SelectionA_ngleAbout The GIMPActionActivate the _focused imageActive FiltersAdaptive supersamplingAddAdd Alpha C_hannelAdd Alpha ChannelAdd AnchorAdd ChannelAdd Color to ColormapAdd Guide: Add GuidesAdd Horizontal GuideAdd La_yer Mask...Add LayerAdd Layer MaskAdd PathAdd StrokeAdd Text LayerAdd Vertical GuideAdd a Mask to the LayerAdd color from BGAdd color from FGAdd layer maskAdd text to the imageAdd the current color to the color historyAdd the selected filter to the list of active filters.Add to palette %sAdd to the current selectionAdding theme '%s' (%s) -AdditionAdditional Input ControllersAdjust Brightness and ContrastAdjust Color BalanceAdjust Color CurvesAdjust Color LevelsAdjust brightness and contrastAdjust color balanceAdjust color curvesAdjust color levelsAdjust hue / lightness / saturationAdjust hue and saturationAdjust levels automaticallyAdjustmentAdvanced optionsAffect:Affected Area %sAirbrushAirbrush with variable pressureAl_pha to SelectionAlignedAlignmentAll ChannelsAll FilesAll Files (*.*)All image and undo data which doesn't fit into the Tile Cache will be written to a swap file. This file should be located on a local filesystem with enough free space (several hundred MB). On a UNIX system, you may want to use the system-wide temp-dir ("/tmp" or "/var/tmp").Allow completely transparent regions to be filledAllow completely transparent regions to be selectedAllow enlarging %sAlphaAlpha to SelectionAlpha:An image of the choosen size will use more memory than what is configured as "Maximum Image Size" in the Preferences dialog (currently %s).An_imationAnchor Floating SelectionAnchor floating layerAnchor floating selectionAngle:Anti erase %sAntialiasingAppearanceApply Layer MaskApply Layer _MaskApply ThresholdApply layer maskAre you sure you want to delete '%s' from the list and from disk?Are you sure you want to delete template '%s' from the list and from disk?As in _PreferencesAsk for confirmation before closing an image without saving.Aspect Ratio:Aspect ratio:Attach ParasiteAttach Parasite to ImageAttach Parasite to ItemAttach parasiteAuthor:AutoAuto _Follow Active ImageAuto shrinkAuto shrink selectionAuto-resize windowAutoloadAutomatically DetectedAvailable FiltersAvailable Types:BG color fillB_rightness-Contrast...B_uffersBackgroundBackground colorBackground color set to:Background: %d, %d, %dBackward (corrective)Base filled area on all visible layersBase selection on all visible layersBehindBevelBi-linearBlack & whiteBlack:Ble_nd Endpoints' ColorsBlen_dBlendBlend Endpoints' Opacit_yBlend: Blend: Invalid for indexed images.Blending...BlueBlue:BlurBlur or SharpenBo_rder...Border ChannelBorder SelectionBorder selection byBrightness-ContrastBrightness-Contrast does not operate on indexed layers.BrushBrush EditorBrush FoldersBrush UIBrush:BrushesBrushes MenuBucket FillBuffersBuffers MenuBurnButtBy ExtensionBy reverting the image to the state saved on disk, you will lose all changes, including all undo information.CMYKC_alibrate...C_olor PickerC_olumns:C_ombineCalibrate Monitor ResolutionCan't undo %sCan_vas Size...CancelCancel GuideCannot add layer mask of different dimensions than specified layer.Cannot add layer mask to a layer with no alpha channel.Cannot add layer mask to layer which is not part of an image.Cannot anchor this layer because it is not a floating selection.Cannot convert to a palette with more than 256 colors.Cannot create a new layer from the floating selection because it belongs to a layer mask or channel.Cannot create folder '%s': %sCannot create previewCannot crop because the current selection is empty.Cannot expand ${%s}Cannot float selection because the selected region is empty.Cannot raise a layer without alpha.Cannot save. Nothing is selected.Cannot stroke empty channel.Cannot stroke empty path.Canvas SizeCanvas _padding mode:Center X:CenteredChange Background ColorChange Colormap entryChange Foreground ColorChange Image ResolutionChange Image UnitChange Print SizeChange current layer or pathChange grid background colorChange grid foreground colorChange indexed paletteChange perspective of the layer or selectionChanging shortcut failed.ChannelChannel AttributesChannel Name:Channel cannot be lowered more.Channel cannot be raised higher.Channel colorChannel is already on the bottom.Channel is already on top.Channel to Sele_ctionChannel to SelectionChannel to selectionChannel:ChannelsChannels MenuCheck _size:Choose Stroke StyleCircleCl_earClearClear ChannelClear Undo HistoryClear all textClear errorsClear undo history...Click "Continue" to accept the settings above.Click "Continue" to create your personal GIMP folder.Click "Continue" to enter the GIMP user installation.Click "Continue" to proceed with the user installation.Click to connect this anchor with the selected endpoint.Click to create a new anchor. (try SHIFT)Click to create a new component of the path.Click to create a new path.Click to create previewClick to delete this anchor.Click to insert an anchor on the path. (try SHIFT)Click to make this node angular.Click to open up the path.Click to pick path to edit.Click to update preview +AdditionAdditional Input ControllersAdjust Brightness and ContrastAdjust Color BalanceAdjust Color CurvesAdjust Color LevelsAdjust brightness and contrastAdjust color balanceAdjust color curvesAdjust color levelsAdjust hue / lightness / saturationAdjust hue and saturationAdjust levels automaticallyAdjustmentAdvanced optionsAffect:Affected Area %sAirbrushAirbrush with variable pressureAl_pha to SelectionAlignedAlignmentAll ChannelsAll FilesAll Files (*.*)All image and undo data which doesn't fit into the Tile Cache will be written to a swap file. This file should be located on a local filesystem with enough free space (several hundred MB). On a UNIX system, you may want to use the system-wide temp-dir ("/tmp" or "/var/tmp").Allow completely transparent regions to be filledAllow completely transparent regions to be selectedAllow enlarging %sAlphaAlpha to SelectionAlpha:An image of the choosen size will use more memory than what is configured as "Maximum Image Size" in the Preferences dialog (currently %s).An_imationAnchor Floating SelectionAnchor floating layerAnchor floating selectionAngle:Anti erase %sAntialiasingAppearanceApply Layer MaskApply Layer _MaskApply ThresholdApply layer maskAre you sure you want to delete '%s' from the list and from disk?Are you sure you want to delete template '%s' from the list and from disk?As in _PreferencesAsk for confirmation before closing an image without saving.Aspect Ratio:Aspect ratio:Attach ParasiteAttach Parasite to ImageAttach Parasite to ItemAttach parasiteAuthor:AutoAuto _Follow Active ImageAuto shrinkAuto shrink selectionAuto-resize windowAutoloadAutomatically DetectedAvailable FiltersAvailable Types:BG color fillB_rightness-Contrast...B_uffersBackgroundBackground colorBackground color set to:Background: %d, %d, %dBackward (corrective)Base filled area on all visible layersBase selection on all visible layersBehindBevelBi-linearBlack & whiteBlack:Ble_nd Endpoints' ColorsBlen_dBlendBlend Endpoints' Opacit_yBlend: Blend: Invalid for indexed images.Blending...BlueBlue:BlurBlur or SharpenBo_rder...Border ChannelBorder SelectionBorder selection byBrightness-ContrastBrightness-Contrast does not operate on indexed layers.BrushBrush EditorBrush FoldersBrush UIBrush:BrushesBrushes MenuBucket FillBuffersBuffers MenuBurnButtBy ExtensionBy reverting the image to the state saved on disk, you will lose all changes, including all undo information.CMYKC_alibrate...C_olor PickerC_olumns:C_ombineCalibrate Monitor ResolutionCan't undo %sCan_vas Size...CancelCancel GuideCannot add layer mask of different dimensions than specified layer.Cannot add layer mask to a layer with no alpha channel.Cannot add layer mask to layer which is not part of an image.Cannot anchor this layer because it is not a floating selection.Cannot convert to a palette with more than 256 colors.Cannot create a new layer from the floating selection because it belongs to a layer mask or channel.Cannot create folder '%s': %sCannot create previewCannot crop because the current selection is empty.Cannot expand ${%s}Cannot float selection because the selected region is empty.Cannot raise a layer without alpha.Cannot save. Nothing is selected.Cannot stroke empty channel.Cannot stroke empty path.Canvas SizeCanvas _padding mode:Center X:Center Y:CenteredChange Background ColorChange Colormap entryChange Foreground ColorChange Image ResolutionChange Image UnitChange Print SizeChange current layer or pathChange grid background colorChange grid foreground colorChange indexed paletteChange perspective of the layer or selectionChanging shortcut failed.ChannelChannel AttributesChannel Name:Channel cannot be lowered more.Channel cannot be raised higher.Channel colorChannel is already on the bottom.Channel is already on top.Channel to Sele_ctionChannel to SelectionChannel to selectionChannel:ChannelsChannels MenuCheck _size:Choose Stroke StyleCircleCl_earClearClear ChannelClear Undo HistoryClear all textClear errorsClear undo history...Click "Continue" to accept the settings above.Click "Continue" to create your personal GIMP folder.Click "Continue" to enter the GIMP user installation.Click "Continue" to proceed with the user installation.Click to connect this anchor with the selected endpoint.Click to create a new anchor. (try SHIFT)Click to create a new component of the path.Click to create a new path.Click to create previewClick to delete this anchor.Click to insert an anchor on the path. (try SHIFT)Click to make this node angular.Click to open up the path.Click to pick path to edit.Click to update preview %s Click to force update even if preview is up-to-dateClick-Drag to change the shape of the curve. (SHIFT: symmetrical)Click-Drag to move the anchor around.Click-Drag to move the anchors around.Click-Drag to move the component around. (try SHIFT)Click-Drag to move the handle around. (try SHIFT)Click-Drag to move the path around.Click: selectClick: select Drag: moveClip resultClipboardClipped to bottom layerClipped to imageCloneClose %sClose all TabsClose all tabs?Close this TabCo_py PathColo_rsColorColor BalanceColor Display FiltersColor PickerColor Picker InformationColor _Balance...Color _dithering:Color balance operates only on RGB color layers.Color eraseColor index:Color:Color_mapColor_space:Colori_ze...Coloring _Type for SegmentColoring _Type for SelectionColorizeColorize operates only on RGB color layers.Colorize the ImageColorize the imageColormapColormap EditorColormap MenuColumns:Comme_nt:CommentCon_trast:Con_volveConfigure Color Display FiltersConfigure E_xtended Input Devices...Configure G_rid...Configure GridConfigure Image GridConfigure Keyboard ShortcutsConfigure _Keyboard Shortcuts...Configure selected filterConfigure selected filter: %sConfirm Image SizeConfirm ScalingConfirm Text EditingConfirm closing of unsa_ved imagesConflicting ShortcutsConical (asym)Conical (sym)Connect StrokesConstantConstraintsContextContext-dependent cursors are cool. They are enabled by default. However, they require overhead that you may want to do without.ContinueContributions byConvertConvert EdgeConvert Image to GrayscaleConvert Image to IndexedConvert Image to Indexed ColorsConvert Image to RGBConvert imageConverting to indexed (stage 2)...Converting to indexed (stage 3)...Converting to indexed...ConvolveConvolve Type %sCopy NamedCopy _VisibleCopying file '%s' from '%s'...Copyright:Corrupt segment %d in gradient file '%s'.Could not create '%s': %sCould not create temporary file for '%s': %sCould not delete '%s': %sCould not find GIMP help browser.Could not open '%s' for reading: %sCould not open '%s' for writing: %sCould not open thumbnail '%s': %sCould not read %d bytes from '%s': %sCould not seek in XCF file: %sCould not start the GIMP help browser plug-in.Count:Cr_op LayerCreate New Doc_kCreate New TemplateCreate a New ImageCreate a New LayerCreate a New TemplateCreate a new display for this imageCreate a new image from the selected templateCreate a new templateCreate and edit images or photographsCreate and edit pathsCreate path from textCreate selection from pathCreating Preview ...Creating folder '%s'...CropCrop & ResizeCrop & Resize InformationCrop ImageCrop LayerCrop imageCrop or Resize an imageCrop: Crosshair onlyCu_tCu_t Named...Cubic (Best)Current _StatusCurrent height:Current layer onlyCurrent statusCurrent width:CursorCursor _mode:Cursor re_ndering:Curve TypeCurvesCurves for indexed layers cannot be adjusted.CustomCustom colorCustom gradientCustom p_adding color:CutCut NamedCyanCyan:D_uplicate BrushD_uplicate ChannelD_uplicate GradientD_uplicate LayerD_uplicate PaletteD_uplicate PathD_uplicate PatternD_uplicate Template...Dark check colorDarken onlyDash dot dot...Dash dot...Dash pattern:Dash preset:DashedDate:DebugDefault Appearance in Fullscreen ModeDefault Appearance in Normal ModeDefault GridDefault Image GridDefault _interpolation:Default _layer & channel preview size:Default _threshold:Delete AnchorDelete AnchorsDelete Layer Mas_kDelete Layer MaskDelete ObjectDelete SegmentDelete TemplateDelete brushDelete channelDelete colorDelete gradientDelete layerDelete layer maskDelete paletteDelete pathDelete patternDelete saved options...Delete the selected bufferDelete the selected templateDelete this imageDelete vectorsDeleting "%s" failed: %sDense dotsDesaturateDesaturate operates only on RGB color layers.DescriptionDesignDevice StatusDevicesDialogsDialogs MenuDiamondDifferenceDirect ColorDisable Layer MaskDisable Quick MaskDiscard Text InformationDisplayDisplay NavigationDisplay _Filters...Display proceduresDisplay type:Displaying [%0.6f, %0.6f]DissolveDistance:Distance: %0.6fDitheringDivideDo a _fresh user installationDo you really want to reset all filters to default values?Do you really want to reset all tool options to default values?Do you want to replace it with the image you are saving?Do_n't saveDockableDocument Histor_yDocument HistoryDocumentsDocuments MenuDod_geBurnDodgeDodge or Burn strokesDodge/BurnDouble dashedDrag AnchorDrag AnchorsDrag CurveDrag HandleDrag PathDrag: moveDraw in inkDrawableDrawable modDrawable proceduresDrop New LayerDrop New PathDue to lack of any fonts, text functionality is not available.Dump events from this controllerDuplicate brushDuplicate channelDuplicate gradientDuplicate layerDuplicate paletteDuplicate pathDuplicate patternDuplicate the selected templateEEK: can't undoE_xport Path...E_xtra SmallEdge BehaviourEdge-De_tectEditEdit Channel AttributesEdit Channel ColorEdit Color Palette EntryEdit Colormap EntryEdit Layer AttributesEdit Layer MaskEdit ModeEdit Palette ColorEdit Path AttributesEdit Quick Mask AttributesEdit Quick Mask ColorEdit TemplateEdit brushEdit channel attributesEdit colorEdit colormap entry #%dEdit gradientEdit layer attributesEdit paletteEdit path attributesEdit patternEdit proceduresEdit the selected templateEllipse SelectEmpty ChannelEmpty LayerEmpty PathEmpty Text LayerEmpty variable name in environment file %sEn_hanceEnable Quick MaskEnable dithering of _transparencyEnable this controllerEnable to display a handy GIMP tip on startup.Enable to display tooltips.EnormousEnter a name for the merged paletteEnter a name for the saved optionsEnter a name for this bufferEnter a name for this templateEnter a new name for the saved optionsEnter location (URI):EnvironmentEnvironment FoldersEqualizeEqualize does not operate on indexed layers.Erase to background or transparencyEraserError Co_nsoleError ConsoleError Console MenuError saving XCF file: %sError while parsing '%s' in line %d: %sError while reading '%s': %sError while reading brush file '%s': %sError while writing '%s': %sError writing XCF: %sError writing file '%s': %sError writing to '%s': %sError writing to temporary file for '%s': %s No file has been created.Error writing to temporary file for '%s': %s -The original file has not been touched.ErrorsEventEx_tra LargeExpanded as necessaryExport Path to SVGExport all paths from this imageExport the active pathExposure:Extended Input DevicesExtensionsFG color fillFG to BG (HSV clockwise hue)FG to BG (HSV counter-clockwise)FG to BG (HSV)FG to BG (RGB)FG to TransparentFG to transparentFG/BGFG/BG ColorFS relaxFS rigorFS to layerF_it Canvas to LayersFade outFailed to import gradients from '%s': %sFailed to import paths from '%s': %sFancyFatal parse error in brush file '%s': File appears truncated.Fatal parse error in brush file '%s': File is corrupt.Fatal parse error in brush file '%s': Not a GIMP brush file.Fatal parse error in brush file '%s': Unknown GIMP brush shape.Fatal parse error in brush file '%s': Unknown GIMP brush version.Fatal parse error in brush file '%s': Unknown depth %d.Fatal parse error in brush file '%s': Unknown version %d.Fatal parse error in brush file '%s': Unsupported brush depth %d -GIMP brushes must be GRAY or RGBA.Fatal parse error in gradient file '%s': File is corrupt.Fatal parse error in gradient file '%s': Not a GIMP gradient file.Fatal parse error in palette file '%s': Missing magic header.Fatal parse error in palette file '%s': Missing magic header. +The original file has not been touched.ErrorsEventEx_tra LargeExpanded as necessaryExport Path to SVGExport all paths from this imageExport the active pathExposure:Extended Input DevicesExtensionsFG color fillFG to BG (HSV clockwise hue)FG to BG (HSV counter-clockwise)FG to BG (HSV)FG to BG (RGB)FG to TransparentFG to transparentFG/BGFG/BG ColorFS relaxFS rigorFS to layerF_it Canvas to LayersFade outFailed to import gradients from '%s': %sFailed to import paths from '%s': %sFancyFatal parse error in brush file '%s': Bytes = 0.Fatal parse error in brush file '%s': File appears truncated.Fatal parse error in brush file '%s': File is corrupt.Fatal parse error in brush file '%s': Height = 0.Fatal parse error in brush file '%s': Not a GIMP brush file.Fatal parse error in brush file '%s': Unknown GIMP brush shape.Fatal parse error in brush file '%s': Unknown GIMP brush version.Fatal parse error in brush file '%s': Unknown depth %d.Fatal parse error in brush file '%s': Unknown version %d.Fatal parse error in brush file '%s': Unsupported brush depth %d +GIMP brushes must be GRAY or RGBA.Fatal parse error in brush file '%s': Width = 0.Fatal parse error in gradient file '%s': File is corrupt.Fatal parse error in gradient file '%s': Not a GIMP gradient file.Fatal parse error in palette file '%s': Missing magic header.Fatal parse error in palette file '%s': Missing magic header. Does this file need converting from DOS?Fatal parse error in palette file '%s': Read error in line %d.Fatal parse error in pattern file '%s': Could not read %d bytes: %sFatal parse error in pattern file '%s': Unknown pattern format version %d.Fatal parse error in pattern file '%s: Unsupported pattern depth %d. GIMP Patterns must be GRAY or RGB.Fea_ther...Feather ChannelFeather SelectionFeather edgesFeather selection byFileFile Open _DialogFile OperationsFile TypeFile existsFile is truncatedFill ChannelFill Opacity:Fill Type %sFill similar colorsFill transparent areasFill whole selectionFill with BG ColorFill with B_G ColorFill with FG ColorFill with P_atternFill with PatternFill with TransparencyFill with WhiteFill with _FG ColorFill with _background colorFill with a color gradientFill with a color or patternFilledFilte_rsFinal, Merged Layer should be:Finding Contiguous RegionsFinding Similar ColorsFit Image to WindowFit image in windowFit image to windowFit to windowFixed aspect ratioFixed sizeFlatten ImageFlipFlip ChannelFlip LayerFlip PathFlip Text LayerFlip Type %sFlip _HorizontallyFlip _VerticallyFlip imageFlip the layer or selectionFlip...Flipping...Float SelectionFloat selectionFloated LayerFloating Selection (%s)Floating Selection to LayerFloating selection to layerFloating selectionsFloyd-Steinberg (normal)Floyd-Steinberg (reduced color bleeding)FocusFolderFoldersFont FoldersFont UIFont:FontsFonts MenuFor a proper GIMP installation, a folder named '%s' needs to be created.Force auto-hinterForegroundForeground & background colors. The black and white squares reset colors. The arrows swap colors. Double click to open the color selection dialog.Foreground colorForeground color set to:Foreground: %d, %d, %dForward (traditional)Fr_om PathFree SelectFree selectFreehandFrom _ThemeFrom _windowing system (currently %d x %d dpi)From left to rightFrom right to leftFrom selectionFrom themeFu_zzy SelectFullscr_eenFuzzy SelectGIMPGIMP ExtensionGIMP MessageGIMP Performance TuningGIMP Plug-InGIMP StartupGIMP Text EditorGIMP Tip of the DayGIMP User InstallationGIMP XCF imageGIMP could not initialize the graphical user interface. Make sure a proper setup for your display environment exists.GIMP help browserGIMP is not properly installed for the current user. User installation was skipped because the '--no-interface' flag was used. To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Generate optimum paletteGet Monitor ResolutionGiganticGimprc proceduresGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient file '%s' is corrupt: Segments do not span the range 0-1.Gradient:GradientsGradients MenuGrain extractGrain mergeGrayGrayscaleGreenGreen:GridGrid line spacingGrow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_counter-clockwise hue)HSV (clockwise _hue)HTML notation:H_eight:H_elp browser to use:Handle position: %0.6fHard edgeHard lightHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHelp proceduresHex:HighlightsHint for the _docks:Hint for the _toolbox:HintingHinting alters the font outline to produce a crisp bitmap at small sizesHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB color layers.Hue-_Saturation...Hue:HugeI_con & TextI_mageI_mport Path...I_nterpolation:I_nterval:IconIcon & descIcon & textIf available, hints from the font are used but you may prefer to always use the automatic hinterIf enabled, the move tool changes the active layer or path when a layer or path is being picked. This used to be the default behaviour in older versions.If you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.Illegal variable name in environment file %s: %sImageImage + GridImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage ThumbnailsImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage maskImage resolution is out of bounds, using the default resolution instead.Image sizeImage sourceImage typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport paletteImport pathsImported PathIn_kIn_vertIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorIndexed Color ConversionIndexed color layers are always scaled without interpolation. The chosen interpolation type will affect channels and masks only.Info WindowInitial zoom _ratio:Initialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' -InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratioKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard EventsKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine +InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard EventsKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine spacing:Line Width:Line _Style:Line style used for the grid.LinearLinked itemLoadLoad CurvesLoad LevelsLoad Right Color Fr_omLoad curves settings from fileLoad levels settings from fileLoad text from fileLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower Path to _BottomLower channelLower channel to bottomLower layerLower layer to bottomLower pathLower path to bottomM_agnifyM_asterM_ove to Screen...Ma_pMagentaMagenta:MagnifyMake _transparentManage Loadable ModulesMarching _ants speed:Mask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:Max Depth:Maximum _filesize for thumbnailing:Maximum _new image size:Maximum color differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMeasure the rulers and enter their lengths:Median:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMerge vectorsMessage proceduresMessage repeated %d times.Message repeated once.Messages are redirected to stderr.MidtonesMigrate User SettingsMinimal number of _undo levels:MiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMouse WheelMouse Wheel EventsMoveMove AnchorsMove ChannelMove Floating SelectionMove GuideMove Guide: Move LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove ToolMove itemMove layers & selectionsMove selectionMove the current layerMove the current pathMove the selected filter downMove the selected filter upMove to Screen...Move: MultiplyN_umber of colors:Na_vigationNa_vigation WindowNa_vigation preview size:NameName:NavigationNew ChannelNew Channel ColorNew Channel OptionsNew Color from _BGNew Color from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channelNew channel with last valuesNew channel...New color from BGNew color from FGNew gradientNew importNew layerNew layer with last valuesNew layer...New paletteNew path with last valuesNew path...New patternNew vectorsNo brushes available for use with this tool.No filter selectedNo linear gradients found in '%s'No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of _processors to use:Number of grid linesNumber of layers:O_ther...OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset by x/_2, y/2Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the palette selection dialogOpen the pattern selection dialogOpen the selected entryOpening '%s' failed: %sOpening '%s' failed: %sOptions: @@ -385,10 +384,10 @@ The GIMP %d.%d User InstallationWhen enabled the dialog automatically follows the image you are working on.When enabled, GIMP will show mnemonics in menus.When enabled, all paint tools will show a preview of the current brush's outline.When enabled, an image will become the active image when its image window receives the focus. This is useful for window managers using "click to focus".When enabled, dialogs will show a help button that gives access to the related help page. Without this button, the help page can still be reached by pressing F1.When enabled, menus can be torn off.When enabled, pressing F1 will open the help browser.When enabled, the GIMP will not save if the image is unchanged since opening it.When enabled, the GIMP will use a different info window per image view.When enabled, the X server is queried for the mouse's current position on each motion event, rather than relying on the position hint. This means painting with large brushes should be more accurate, but it may be slower. Perversely, on some X servers enabling this option results in faster painting.When enabled, the cursor will be shown over the image while using a paint tool.When enabled, the grid is visible by default. This can also be toggled with the "View->Show Grid" command.When enabled, the guides are visible by default. This can also be toggled with the "View->Show Guides" command.When enabled, the image window will automatically resize itself, when zooming into and out of images.When enabled, the image window will automatically resize itself, whenever the physical image size changes.When enabled, the layer boundary is visible by default. This can also be toggled with the "View->Show Layer Boundary" command.When enabled, the menubar is visible by default. This can also be toggled with the "View->Show Menubar" command.When enabled, the rulers are visible by default. This can also be toggled with the "View->Show Rulers" command.When enabled, the scrollbars are visible by default. This can also be toggled with the "View->Show Scrollbars" command.When enabled, the selected brush will be used for all tools.When enabled, the selected gradient will be used for all tools.When enabled, the selected pattern will be used for all tools.When enabled, the selection is visible by default. This can also be toggled with the "View->Show Selection" command.When enabled, the statusbar is visible by default. This can also be toggled with the "View->Show Statusbar" command.When enabled, this will ensure that each pixel of an image gets mapped to a pixel on the screen.When enabled, this will ensure that the full image is visible after a file is opened, otherwise it will be displayed with a scale of 1:1.When enabled, you can change keyboard shortcuts for menu items by hitting a key combination while the menu item is highlighted.WhiteWhite Balance operates only on RGB color layers.WidthWidth:Window ManagementWindow Manager HintsWindow PositionsWriting '%s' XXCF error: unsupported XCF file version %d encounteredXCF warning: version 0 of XCF file format did not save indexed colormaps correctly. -Substituting grayscale map.YYellowYellow:You are trying to create an image with a size of %s.You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your GIMP installation is incomplete:Your input device settings will be reset to default values the next time you start GIMP.Your keyboard shortcuts will be reset to default values the next time you start GIMP.Your window setup will be reset to default values the next time you start GIMP.Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_All_Anchor Layer_Antialiasing_Arbitrary Rotation..._Artistic_Aspect_Auto_B_BG Color_Background color:_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Bucket Fill_Buffer_By Color_By Color Select_C_Cap style:_Channels_Clear Errors_Clear Undo History_Clone_Close_Close Tab_Clouds_Color Tools_Colors_Configure Color and Opacity..._Context_Context Help_Copy_Copy Named..._Create Image from Template..._Crop & Resize_Crop Image_Curved_Curves..._Dark Check Color_Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Desaturate_Detach Tab_Device Status_Dialogs_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Ellipse Select_Enable layer & channel previews_Enormous_Equalize_Eraser_FG Color_File_Fill with:_Fit Image in Window_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground color:_Free Select_G_Generic_Gigantic_Gradient_Gradients_Grayscale_Grayscale copy of layer_Grow..._Guides_Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Info Window_Intersect with Selection_Invert_Join style:_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Left Neighbor's Right Endpoint_Levels..._Light Check Color_Light Effects_Lightness:_Line Style_Linear_Linked_Load Left Color From_Lower Channel_Lower Layer_Lower Path_M_Manually_Map_Mask_Mask to Selection_Maximum number of colors:_Measure_Medium_Merge Palettes..._Merge imported paths_Migrate GIMP 2.0 user settings_Misc. Stuff_Miter limit:_Mode_Module Manager_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._Padding Color_Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preferences_Preview_Preview Size_Previous tip_Print Size..._Properties_Quick Mask Active_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Reassign shortcut_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Remove unused colors from final palette_Render_Replace_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Order & Visibility_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Right Endpoint_Right Neighbor's Left Endpoint_Rotate_Saturation:_Save_Save Left Color To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Scale imported paths to fit image_Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Show Image Selection_Show in Toolbox_Sinusoidal_Small_Smudge_Snap distance:_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tool_Tools_Transfer layer's alpha channel_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Visible_Web_Web browser to use:_White (full opacity)_White Balance_Width:_Wrap around_X resolution:_X:_Xtns_Y_Y resolution:_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for icon typeinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetermillimetersminuten/apercentpicapicaspixelpixelspixels/%apixels/%spointpointssecondtips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: gimp +Substituting grayscale map.YYellowYellow:You are trying to create an image with a size of %s.You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your GIMP installation is incomplete:Your input device settings will be reset to default values the next time you start GIMP.Your keyboard shortcuts will be reset to default values the next time you start GIMP.Your window setup will be reset to default values the next time you start GIMP.Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_All_Anchor Layer_Antialiasing_Arbitrary Rotation..._Artistic_Aspect_Auto_B_BG Color_Background color:_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Bucket Fill_Buffer_By Color_By Color Select_C_Cap style:_Channels_Clear Errors_Clear Undo History_Clone_Close_Close Tab_Clouds_Color Tools_Colors_Configure Color and Opacity..._Context_Context Help_Copy_Copy Named..._Create Image from Template..._Crop & Resize_Crop Image_Curved_Curves..._Dark Check Color_Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Desaturate_Detach Tab_Device Status_Dialogs_Discard Changes_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Ellipse Select_Enable layer & channel previews_Enormous_Equalize_Eraser_FG Color_File_Fill with:_Fit Image in Window_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground color:_Free Select_G_Generic_Gigantic_Gradient_Gradients_Grayscale_Grayscale copy of layer_Grow..._Guides_Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Info Window_Intersect with Selection_Invert_Join style:_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Left Neighbor's Right Endpoint_Levels..._Light Check Color_Light Effects_Lightness:_Line Style_Linear_Linked_Load Left Color From_Lower Channel_Lower Layer_Lower Path_M_Manually_Map_Mask_Mask to Selection_Maximum number of colors:_Measure_Medium_Merge Palettes..._Merge imported paths_Migrate GIMP 2.0 user settings_Misc. Stuff_Miter limit:_Mode_Module Manager_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._Padding Color_Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preferences_Preview_Preview Size_Previous tip_Print Size..._Properties_Quick Mask Active_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Reassign shortcut_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Remove unused colors from final palette_Render_Replace_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Order & Visibility_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Right Endpoint_Right Neighbor's Left Endpoint_Rotate_Saturation:_Save_Save Left Color To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Scale imported paths to fit image_Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Show Image Selection_Show in Toolbox_Sinusoidal_Small_Smudge_Snap distance:_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tool_Tools_Transfer layer's alpha channel_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Visible_Web_Web browser to use:_White (full opacity)_White Balance_Width:_Wrap around_X resolution:_X:_Xtns_Y_Y resolution:_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for icon typeinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetermillimetersminuten/apercentpicapicaspixelpixelspixels/%apixels/%spointpointssecondtips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: gimp Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-19 03:11+0100 -PO-Revision-Date: 2004-12-17 14:29-0400 +POT-Creation-Date: 2004-12-28 16:58+0100 +PO-Revision-Date: 2004-12-28 14:29-0400 Last-Translator: Adam Weinberger Language-Team: English/Canada MIME-Version: 1.0 @@ -426,19 +425,19 @@ (Unnamed Buffer)(Unnamed Template)(Varies)(clean)(invalid UTF-8 string)(modified)(none)1 Layer1 layer15 degrees %s16:1 (1600%)1:1 (100%)1:16 (6.25%)1:2 (50%)1:4 (25%)1:8 (12.5%)2:1 (200%)2D Transform...4:1 (400%)8:1 (800%)<%s><>For optimal GIMP performance, some settings may have to be adjusted.The GIMP - GNU Image Manipulation Program Copyright (C) 1995-2004 Spencer Kimball, Peter Mattis and the GIMP Development Team.The GIMP tips file could not be parsed!Your GIMP tips file appears to be missing!A file named '%s' already exists.A_dd to SelectionA_ngleAbout The GIMPActionActivate the _focused imageActive FiltersAdaptive supersamplingAddAdd Alpha C_hannelAdd Alpha ChannelAdd AnchorAdd ChannelAdd Colour to ColourmapAdd Guide: Add GuidesAdd Horizontal GuideAdd La_yer Mask...Add LayerAdd Layer MaskAdd PathAdd StrokeAdd Text LayerAdd Vertical GuideAdd a Mask to the LayerAdd colour from BGAdd colour from FGAdd layer maskAdd text to the imageAdd the current colour to the colour historyAdd the selected filter to the list of active filters.Add to palette %sAdd to the current selectionAdding theme '%s' (%s) -AdditionAdditional Input ControllersAdjust Brightness and ContrastAdjust Colour BalanceAdjust Colour CurvesAdjust Colour LevelsAdjust brightness and contrastAdjust colour balanceAdjust colour curvesAdjust colour levelsAdjust hue / lightness / saturationAdjust hue and saturationAdjust levels automaticallyAdjustmentAdvanced optionsAffect:Affected Area %sAirbrushAirbrush with variable pressureAl_pha to SelectionAlignedAlignmentAll ChannelsAll FilesAll Files (*.*)All image and undo data which doesn't fit into the Tile Cache will be written to a swap file. This file should be located on a local filesystem with enough free space (several hundred MB). On a UNIX system, you may want to use the system-wide temp-dir ("/tmp" or "/var/tmp").Allow completely transparent regions to be filledAllow completely transparent regions to be selectedAllow enlarging %sAlphaAlpha to SelectionAlpha:An image of the choosen size will use more memory than what is configured as "Maximum Image Size" in the Preferences dialogue (currently %s).An_imationAnchor Floating SelectionAnchor floating layerAnchor floating selectionAngle:Anti erase %sAntialiasingAppearanceApply Layer MaskApply Layer _MaskApply ThresholdApply layer maskAre you sure you want to delete '%s' from the list and from disk?Are you sure you want to delete template '%s' from the list and from disk?As in _PreferencesAsk for confirmation before closing an image without saving.Aspect Ratio:Aspect ratio:Attach ParasiteAttach Parasite to ImageAttach Parasite to ItemAttach parasiteAuthor:AutoAuto _Follow Active ImageAuto shrinkAuto shrink selectionAuto-resize windowAutoloadAutomatically DetectedAvailable FiltersAvailable Types:BG colour fillB_rightness-Contrast...B_uffersBackgroundBackground colourBackground colour set to:Background: %d, %d, %dBackward (corrective)Base filled area on all visible layersBase selection on all visible layersBehindBevelBi-linearBlack & whiteBlack:Ble_nd Endpoints' ColoursBlen_dBlendBlend Endpoints' Opacit_yBlend: Blend: Invalid for indexed images.Blending...BlueBlue:BlurBlur or SharpenBo_rder...Border ChannelBorder SelectionBorder selection byBrightness-ContrastBrightness-Contrast does not operate on indexed layers.BrushBrush EditorBrush FoldersBrush UIBrush:BrushesBrushes MenuBucket FillBuffersBuffers MenuBurnButtBy ExtensionBy reverting the image to the state saved on disk, you will lose all changes, including all undo information.CMYKC_alibrate...C_olour PickerC_olumns:C_ombineCalibrate Monitor ResolutionCan't undo %sCan_vas Size...CancelCancel GuideCannot add layer mask of different dimensions than specified layer.Cannot add layer mask to a layer with no alpha channel.Cannot add layer mask to layer which is not part of an image.Cannot anchor this layer because it is not a floating selection.Cannot convert to a palette with more than 256 colours.Cannot create a new layer from the floating selection because it belongs to a layer mask or channel.Cannot create folder '%s': %sCannot create previewCannot crop because the current selection is empty.Cannot expand ${%s}Cannot float selection because the selected region is empty.Cannot raise a layer without alpha.Cannot save. Nothing is selected.Cannot stroke empty channel.Cannot stroke empty path.Canvas SizeCanvas _padding mode:Centre X:CentredChange Background ColourChange Colourmap entryChange Foreground ColourChange Image ResolutionChange Image UnitChange Print SizeChange current layer or pathChange grid background colourChange grid foreground colourChange indexed paletteChange perspective of the layer or selectionChanging shortcut failed.ChannelChannel AttributesChannel Name:Channel cannot be lowered more.Channel cannot be raised higher.Channel colourChannel is already on the bottom.Channel is already on top.Channel to Sele_ctionChannel to SelectionChannel to selectionChannel:ChannelsChannels MenuCheck _size:Choose Stroke StyleCircleCl_earClearClear ChannelClear Undo HistoryClear all textClear errorsClear undo history...Click "Continue" to accept the settings above.Click "Continue" to create your personal GIMP folder.Click "Continue" to enter the GIMP user installation.Click "Continue" to proceed with the user installation.Click to connect this anchor with the selected endpoint.Click to create a new anchor. (try SHIFT)Click to create a new component of the path.Click to create a new path.Click to create previewClick to delete this anchor.Click to insert an anchor on the path. (try SHIFT)Click to make this node angular.Click to open up the path.Click to pick path to edit.Click to update preview +AdditionAdditional Input ControllersAdjust Brightness and ContrastAdjust Colour BalanceAdjust Colour CurvesAdjust Colour LevelsAdjust brightness and contrastAdjust colour balanceAdjust colour curvesAdjust colour levelsAdjust hue / lightness / saturationAdjust hue and saturationAdjust levels automaticallyAdjustmentAdvanced optionsAffect:Affected Area %sAirbrushAirbrush with variable pressureAl_pha to SelectionAlignedAlignmentAll ChannelsAll FilesAll Files (*.*)All image and undo data which doesn't fit into the Tile Cache will be written to a swap file. This file should be located on a local filesystem with enough free space (several hundred MB). On a UNIX system, you may want to use the system-wide temp-dir ("/tmp" or "/var/tmp").Allow completely transparent regions to be filledAllow completely transparent regions to be selectedAllow enlarging %sAlphaAlpha to SelectionAlpha:An image of the choosen size will use more memory than what is configured as "Maximum Image Size" in the Preferences dialogue (currently %s).An_imationAnchor Floating SelectionAnchor floating layerAnchor floating selectionAngle:Anti erase %sAntialiasingAppearanceApply Layer MaskApply Layer _MaskApply ThresholdApply layer maskAre you sure you want to delete '%s' from the list and from disk?Are you sure you want to delete template '%s' from the list and from disk?As in _PreferencesAsk for confirmation before closing an image without saving.Aspect Ratio:Aspect ratio:Attach ParasiteAttach Parasite to ImageAttach Parasite to ItemAttach parasiteAuthor:AutoAuto _Follow Active ImageAuto shrinkAuto shrink selectionAuto-resize windowAutoloadAutomatically DetectedAvailable FiltersAvailable Types:BG colour fillB_rightness-Contrast...B_uffersBackgroundBackground colourBackground colour set to:Background: %d, %d, %dBackward (corrective)Base filled area on all visible layersBase selection on all visible layersBehindBevelBi-linearBlack & whiteBlack:Ble_nd Endpoints' ColoursBlen_dBlendBlend Endpoints' Opacit_yBlend: Blend: Invalid for indexed images.Blending...BlueBlue:BlurBlur or SharpenBo_rder...Border ChannelBorder SelectionBorder selection byBrightness-ContrastBrightness-Contrast does not operate on indexed layers.BrushBrush EditorBrush FoldersBrush UIBrush:BrushesBrushes MenuBucket FillBuffersBuffers MenuBurnButtBy ExtensionBy reverting the image to the state saved on disk, you will lose all changes, including all undo information.CMYKC_alibrate...C_olour PickerC_olumns:C_ombineCalibrate Monitor ResolutionCan't undo %sCan_vas Size...CancelCancel GuideCannot add layer mask of different dimensions than specified layer.Cannot add layer mask to a layer with no alpha channel.Cannot add layer mask to layer which is not part of an image.Cannot anchor this layer because it is not a floating selection.Cannot convert to a palette with more than 256 colours.Cannot create a new layer from the floating selection because it belongs to a layer mask or channel.Cannot create folder '%s': %sCannot create previewCannot crop because the current selection is empty.Cannot expand ${%s}Cannot float selection because the selected region is empty.Cannot raise a layer without alpha.Cannot save. Nothing is selected.Cannot stroke empty channel.Cannot stroke empty path.Canvas SizeCanvas _padding mode:Centre X:Centre Y:CentredChange Background ColourChange Colourmap entryChange Foreground ColourChange Image ResolutionChange Image UnitChange Print SizeChange current layer or pathChange grid background colourChange grid foreground colourChange indexed paletteChange perspective of the layer or selectionChanging shortcut failed.ChannelChannel AttributesChannel Name:Channel cannot be lowered more.Channel cannot be raised higher.Channel colourChannel is already on the bottom.Channel is already on top.Channel to Sele_ctionChannel to SelectionChannel to selectionChannel:ChannelsChannels MenuCheck _size:Choose Stroke StyleCircleCl_earClearClear ChannelClear Undo HistoryClear all textClear errorsClear undo history...Click "Continue" to accept the settings above.Click "Continue" to create your personal GIMP folder.Click "Continue" to enter the GIMP user installation.Click "Continue" to proceed with the user installation.Click to connect this anchor with the selected endpoint.Click to create a new anchor. (try SHIFT)Click to create a new component of the path.Click to create a new path.Click to create previewClick to delete this anchor.Click to insert an anchor on the path. (try SHIFT)Click to make this node angular.Click to open up the path.Click to pick path to edit.Click to update preview %s Click to force update even if preview is up-to-dateClick-Drag to change the shape of the curve. (SHIFT: symmetrical)Click-Drag to move the anchor around.Click-Drag to move the anchors around.Click-Drag to move the component around. (try SHIFT)Click-Drag to move the handle around. (try SHIFT)Click-Drag to move the path around.Click: selectClick: select Drag: moveClip resultClipboardClipped to bottom layerClipped to imageCloneClose %sClose all TabsClose all tabs?Close this TabCo_py PathColou_rsColourColour BalanceColour Display FiltersColour PickerColour Picker InformationColour _Balance...Colour _dithering:Colour balance operates only on RGB colour layers.Colour eraseColour index:Colour:Colour_mapColour_space:Colouri_ze...Colouring _Type for SegmentColouring _Type for SelectionColourizeColourize operates only on RGB colour layers.Colourize the ImageColourize the imageColourmapColourmap EditorColourmap MenuColumns:Comme_nt:CommentCon_trast:Con_volveConfigure Colour Display FiltersConfigure E_xtended Input Devices...Configure G_rid...Configure GridConfigure Image GridConfigure Keyboard ShortcutsConfigure _Keyboard Shortcuts...Configure selected filterConfigure selected filter: %sConfirm Image SizeConfirm ScalingConfirm Text EditingConfirm closing of unsa_ved imagesConflicting ShortcutsConical (asym)Conical (sym)Connect StrokesConstantConstraintsContextContext-dependent cursors are cool. They are enabled by default. However, they require overhead that you may want to do without.ContinueContributions byConvertConvert EdgeConvert Image to GrayscaleConvert Image to IndexedConvert Image to Indexed ColoursConvert Image to RGBConvert imageConverting to indexed (stage 2)...Converting to indexed (stage 3)...Converting to indexed...ConvolveConvolve Type %sCopy NamedCopy _VisibleCopying file '%s' from '%s'...Copyright:Corrupt segment %d in gradient file '%s'.Could not create '%s': %sCould not create temporary file for '%s': %sCould not delete '%s': %sCould not find GIMP help browser.Could not open '%s' for reading: %sCould not open '%s' for writing: %sCould not open thumbnail '%s': %sCould not read %d bytes from '%s': %sCould not seek in XCF file: %sCould not start the GIMP help browser plug-in.Count:Cr_op LayerCreate New Doc_kCreate New TemplateCreate a New ImageCreate a New LayerCreate a New TemplateCreate a new display for this imageCreate a new image from the selected templateCreate a new templateCreate and edit images or photographsCreate and edit pathsCreate path from textCreate selection from pathCreating Preview ...Creating folder '%s'...CropCrop & ResizeCrop & Resize InformationCrop ImageCrop LayerCrop imageCrop or Resize an imageCrop: Crosshair onlyCu_tCu_t Named...Cubic (Best)Current _StatusCurrent height:Current layer onlyCurrent statusCurrent width:CursorCursor _mode:Cursor re_ndering:Curve TypeCurvesCurves for indexed layers cannot be adjusted.CustomCustom colourCustom gradientCustom p_adding colour:CutCut NamedCyanCyan:D_uplicate BrushD_uplicate ChannelD_uplicate GradientD_uplicate LayerD_uplicate PaletteD_uplicate PathD_uplicate PatternD_uplicate Template...Dark check colourDarken onlyDash dot dot...Dash dot...Dash pattern:Dash preset:DashedDate:DebugDefault Appearance in Fullscreen ModeDefault Appearance in Normal ModeDefault GridDefault Image GridDefault _interpolation:Default _layer & channel preview size:Default _threshold:Delete AnchorDelete AnchorsDelete Layer Mas_kDelete Layer MaskDelete ObjectDelete SegmentDelete TemplateDelete brushDelete channelDelete colourDelete gradientDelete layerDelete layer maskDelete paletteDelete pathDelete patternDelete saved options...Delete the selected bufferDelete the selected templateDelete this imageDelete vectorsDeleting "%s" failed: %sDense dotsDesaturateDesaturate operates only on RGB colour layers.DescriptionDesignDevice StatusDevicesDialoguesDialogues MenuDiamondDifferenceDirect ColourDisable Layer MaskDisable Quick MaskDiscard Text InformationDisplayDisplay NavigationDisplay _Filters...Display proceduresDisplay type:Displaying [%0.6f, %0.6f]DissolveDistance:Distance: %0.6fDitheringDivideDo a _fresh user installationDo you really want to reset all filters to default values?Do you really want to reset all tool options to default values?Do you want to replace it with the image you are saving?Do_n't saveDockableDocument Histor_yDocument HistoryDocumentsDocuments MenuDod_geBurnDodgeDodge or Burn strokesDodge/BurnDouble dashedDrag AnchorDrag AnchorsDrag CurveDrag HandleDrag PathDrag: moveDraw in inkDrawableDrawable modDrawable proceduresDrop New LayerDrop New PathDue to lack of any fonts, text functionality is not available.Dump events from this controllerDuplicate brushDuplicate channelDuplicate gradientDuplicate layerDuplicate paletteDuplicate pathDuplicate patternDuplicate the selected templateEEK: can't undoE_xport Path...E_xtra SmallEdge BehaviourEdge-De_tectEditEdit Channel AttributesEdit Channel ColourEdit Colour Palette EntryEdit Colourmap EntryEdit Layer AttributesEdit Layer MaskEdit ModeEdit Palette ColourEdit Path AttributesEdit Quick Mask AttributesEdit Quick Mask ColourEdit TemplateEdit brushEdit channel attributesEdit colourEdit colourmap entry #%dEdit gradientEdit layer attributesEdit paletteEdit path attributesEdit patternEdit proceduresEdit the selected templateEllipse SelectEmpty ChannelEmpty LayerEmpty PathEmpty Text LayerEmpty variable name in environment file %sEn_hanceEnable Quick MaskEnable dithering of _transparencyEnable this controllerEnable to display a handy GIMP tip on startup.Enable to display tooltips.EnormousEnter a name for the merged paletteEnter a name for the saved optionsEnter a name for this bufferEnter a name for this templateEnter a new name for the saved optionsEnter location (URI):EnvironmentEnvironment FoldersEqualizeEqualize does not operate on indexed layers.Erase to background or transparencyEraserError Co_nsoleError ConsoleError Console MenuError saving XCF file: %sError while parsing '%s' in line %d: %sError while reading '%s': %sError while reading brush file '%s': %sError while writing '%s': %sError writing XCF: %sError writing file '%s': %sError writing to '%s': %sError writing to temporary file for '%s': %s No file has been created.Error writing to temporary file for '%s': %s -The original file has not been touched.ErrorsEventEx_tra LargeExpanded as necessaryExport Path to SVGExport all paths from this imageExport the active pathExposure:Extended Input DevicesExtensionsFG colour fillFG to BG (HSV clockwise hue)FG to BG (HSV counter-clockwise)FG to BG (HSV)FG to BG (RGB)FG to TransparentFG to transparentFG/BGFG/BG ColourFS relaxFS rigorFS to layerF_it Canvas to LayersFade outFailed to import gradients from '%s': %sFailed to import paths from '%s': %sFancyFatal parse error in brush file '%s': File appears truncated.Fatal parse error in brush file '%s': File is corrupt.Fatal parse error in brush file '%s': Not a GIMP brush file.Fatal parse error in brush file '%s': Unknown GIMP brush shape.Fatal parse error in brush file '%s': Unknown GIMP brush version.Fatal parse error in brush file '%s': Unknown depth %d.Fatal parse error in brush file '%s': Unknown version %d.Fatal parse error in brush file '%s': Unsupported brush depth %d -GIMP brushes must be GRAY or RGBA.Fatal parse error in gradient file '%s': File is corrupt.Fatal parse error in gradient file '%s': Not a GIMP gradient file.Fatal parse error in palette file '%s': Missing magic header.Fatal parse error in palette file '%s': Missing magic header. +The original file has not been touched.ErrorsEventEx_tra LargeExpanded as necessaryExport Path to SVGExport all paths from this imageExport the active pathExposure:Extended Input DevicesExtensionsFG colour fillFG to BG (HSV clockwise hue)FG to BG (HSV counter-clockwise)FG to BG (HSV)FG to BG (RGB)FG to TransparentFG to transparentFG/BGFG/BG ColourFS relaxFS rigorFS to layerF_it Canvas to LayersFade outFailed to import gradients from '%s': %sFailed to import paths from '%s': %sFancyFatal parse error in brush file '%s': Bytes = 0.Fatal parse error in brush file '%s': File appears truncated.Fatal parse error in brush file '%s': File is corrupt.Fatal parse error in brush file '%s': Height = 0.Fatal parse error in brush file '%s': Not a GIMP brush file.Fatal parse error in brush file '%s': Unknown GIMP brush shape.Fatal parse error in brush file '%s': Unknown GIMP brush version.Fatal parse error in brush file '%s': Unknown depth %d.Fatal parse error in brush file '%s': Unknown version %d.Fatal parse error in brush file '%s': Unsupported brush depth %d +GIMP brushes must be GRAY or RGBA.Fatal parse error in brush file '%s': Width = 0.Fatal parse error in gradient file '%s': File is corrupt.Fatal parse error in gradient file '%s': Not a GIMP gradient file.Fatal parse error in palette file '%s': Missing magic header.Fatal parse error in palette file '%s': Missing magic header. Does this file need converting from DOS?Fatal parse error in palette file '%s': Read error in line %d.Fatal parse error in pattern file '%s': Could not read %d bytes: %sFatal parse error in pattern file '%s': Unknown pattern format version %d.Fatal parse error in pattern file '%s: Unsupported pattern depth %d. GIMP Patterns must be GRAY or RGB.Fea_ther...Feather ChannelFeather SelectionFeather edgesFeather selection byFileFile Open _DialogueFile OperationsFile TypeFile existsFile is truncatedFill ChannelFill Opacity:Fill Type %sFill similar coloursFill transparent areasFill whole selectionFill with BG ColourFill with B_G ColourFill with FG ColourFill with P_atternFill with PatternFill with TransparencyFill with WhiteFill with _FG ColourFill with _background colourFill with a colour gradientFill with a colour or patternFilledFilte_rsFinal, Merged Layer should be:Finding Contiguous RegionsFinding Similar ColoursFit Image to WindowFit image in windowFit image to windowFit to windowFixed aspect ratioFixed sizeFlatten ImageFlipFlip ChannelFlip LayerFlip PathFlip Text LayerFlip Type %sFlip _HorizontallyFlip _VerticallyFlip imageFlip the layer or selectionFlip...Flipping...Float SelectionFloat selectionFloated LayerFloating Selection (%s)Floating Selection to LayerFloating selection to layerFloating selectionsFloyd-Steinberg (normal)Floyd-Steinberg (reduced colour bleeding)FocusFolderFoldersFont FoldersFont UIFont:FontsFonts MenuFor a proper GIMP installation, a folder named '%s' needs to be created.Force auto-hinterForegroundForeground & background colours. The black and white squares reset colours. The arrows swap colours. Double click to open the colour selection dialogue.Foreground colourForeground colour set to:Foreground: %d, %d, %dForward (traditional)Fr_om PathFree SelectFree selectFreehandFrom _ThemeFrom _windowing system (currently %d x %d dpi)From left to rightFrom right to leftFrom selectionFrom themeFu_zzy SelectFullscr_eenFuzzy SelectGIMPGIMP ExtensionGIMP MessageGIMP Performance TuningGIMP Plug-InGIMP StartupGIMP Text EditorGIMP Tip of the DayGIMP User InstallationGIMP XCF imageGIMP could not initialize the graphical user interface. Make sure a proper setup for your display environment exists.GIMP help browserGIMP is not properly installed for the current user. User installation was skipped because the '--no-interface' flag was used. To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colours allocated for the GIMP.Generate optimum paletteGet Monitor ResolutionGiganticGimprc proceduresGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColourGradient Segment's Right Endpoint ColourGradient UIGradient file '%s' is corrupt: Segments do not span the range 0-1.Gradient:GradientsGradients MenuGrain extractGrain mergeGrayGrayscaleGreenGreen:GridGrid line spacingGrow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_counter-clockwise hue)HSV (clockwise _hue)HTML notation:H_eight:H_elp browser to use:Handle position: %0.6fHard edgeHard lightHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp browser did not startHelp browser not foundHelp proceduresHex:HighlightsHint for the _docks:Hint for the _toolbox:HintingHinting alters the font outline to produce a crisp bitmap at small sizesHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB colour layers.Hue-_Saturation...Hue:HugeI_con & TextI_mageI_mport Path...I_nterpolation:I_nterval:IconIcon & descIcon & textIf available, hints from the font are used but you may prefer to always use the automatic hinterIf enabled, the move tool changes the active layer or path when a layer or path is being picked. This used to be the default behaviour in older versions.If you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.Illegal variable name in environment file %s: %sImageImage + GridImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage ThumbnailsImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage maskImage resolution is out of bounds, using the default resolution instead.Image sizeImage sourceImage typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport paletteImport pathsImported PathIn_kIn_vertIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColourIndexed Colour ConversionIndexed colour layers are always scaled without interpolation. The chosen interpolation type will affect channels and masks only.Info WindowInitial zoom _ratio:Initialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' -InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colourmap; might be useful on 8-bit (256 colours) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratioKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard EventsKeyboard ShortcutsLTRL_eft Endpoint's Colour...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColourLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colourLighten onlyLineLine +InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colourmap; might be useful on 8-bit (256 colours) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard EventsKeyboard ShortcutsLTRL_eft Endpoint's Colour...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColourLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colourLighten onlyLineLine spacing:Line Width:Line _Style:Line style used for the grid.LinearLinked itemLoadLoad CurvesLoad LevelsLoad Right Colour Fr_omLoad curves settings from fileLoad levels settings from fileLoad text from fileLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower Path to _BottomLower channelLower channel to bottomLower layerLower layer to bottomLower pathLower path to bottomM_agnifyM_asterM_ove to Screen...Ma_pMagentaMagenta:MagnifyMake _transparentManage Loadable ModulesMarching _ants speed:Mask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:Max Depth:Maximum _file size for thumbnailing:Maximum _new image size:Maximum colour differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMeasure the rulers and enter their lengths:Median:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMerge vectorsMessage proceduresMessage repeated %d times.Message repeated once.Messages are redirected to stderr.MidtonesMigrate User SettingsMinimal number of _undo levels:MiscellaneousMitreModeMode:Modify Selected ColourModify Selected Range's Colour LevelsModify all coloursModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMouse WheelMouse Wheel EventsMoveMove AnchorsMove ChannelMove Floating SelectionMove GuideMove Guide: Move LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove ToolMove itemMove layers & selectionsMove selectionMove the current layerMove the current pathMove the selected filter downMove the selected filter upMove to Screen...Move: MultiplyN_umber of colours:Na_vigationNa_vigation WindowNa_vigation preview size:NameName:NavigationNew ChannelNew Channel ColourNew Channel OptionsNew Colour from _BGNew Colour from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channelNew channel with last valuesNew channel...New colour from BGNew colour from FGNew gradientNew importNew layerNew layer with last valuesNew layer...New paletteNew path with last valuesNew path...New patternNew vectorsNo brushes available for use with this tool.No filter selectedNo linear gradients found in '%s'No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of _processors to use:Number of grid linesNumber of layers:O_ther...OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset by x/_2, y/2Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogueOpen the brush selection dialogueOpen the font selection dialogueOpen the gradient selection dialogueOpen the palette selection dialogueOpen the pattern selection dialogueOpen the selected entryOpening '%s' failed: %sOpening '%s' failed: %sOptions: @@ -488,4 +487,4 @@ The GIMP %d.%d User InstallationWhen enabled the dialogue automatically follows the image you are working on.When enabled, GIMP will show mnemonics in menus.When enabled, all paint tools will show a preview of the current brush's outline.When enabled, an image will become the active image when its image window receives the focus. This is useful for window managers using "click to focus".When enabled, dialogues will show a help button that gives access to the related help page. Without this button, the help page can still be reached by pressing F1.When enabled, menus can be torn off.When enabled, pressing F1 will open the help browser.When enabled, the GIMP will not save if the image is unchanged since opening it.When enabled, the GIMP will use a different info window per image view.When enabled, the X server is queried for the mouse's current position on each motion event, rather than relying on the position hint. This means painting with large brushes should be more accurate, but it may be slower. Perversely, on some X servers enabling this option results in faster painting.When enabled, the cursor will be shown over the image while using a paint tool.When enabled, the grid is visible by default. This can also be toggled with the "View->Show Grid" command.When enabled, the guides are visible by default. This can also be toggled with the "View->Show Guides" command.When enabled, the image window will automatically resize itself, when zooming into and out of images.When enabled, the image window will automatically resize itself, whenever the physical image size changes.When enabled, the layer boundary is visible by default. This can also be toggled with the "View->Show Layer Boundary" command.When enabled, the menubar is visible by default. This can also be toggled with the "View->Show Menubar" command.When enabled, the rulers are visible by default. This can also be toggled with the "View->Show Rulers" command.When enabled, the scrollbars are visible by default. This can also be toggled with the "View->Show Scrollbars" command.When enabled, the selected brush will be used for all tools.When enabled, the selected gradient will be used for all tools.When enabled, the selected pattern will be used for all tools.When enabled, the selection is visible by default. This can also be toggled with the "View->Show Selection" command.When enabled, the statusbar is visible by default. This can also be toggled with the "View->Show Statusbar" command.When enabled, this will ensure that each pixel of an image gets mapped to a pixel on the screen.When enabled, this will ensure that the full image is visible after a file is opened, otherwise it will be displayed with a scale of 1:1.When enabled, you can change keyboard shortcuts for menu items by hitting a key combination while the menu item is highlighted.WhiteWhite Balance operates only on RGB colour layers.WidthWidth:Window ManagementWindow Manager HintsWindow PositionsWriting '%s' XXCF error: unsupported XCF file version %d encounteredXCF warning: version 0 of XCF file format did not save indexed colourmaps correctly. -Substituting grayscale map.YYellowYellow:You are trying to create an image with a size of %s.You can drop dockable dialogues here.You should have received a copy of the GNU General Public Licence along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your GIMP installation is incomplete:Your input device settings will be reset to default values the next time you start GIMP.Your keyboard shortcuts will be reset to default values the next time you start GIMP.Your window setup will be reset to default values the next time you start GIMP.Zoom & Resize BehaviourZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Colour from BG_Add Colour from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_All_Anchor Layer_Antialiasing_Arbitrary Rotation..._Artistic_Aspect_Auto_B_BG Colour_Background colour:_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Bucket Fill_Buffer_By Colour_By Colour Select_C_Cap style:_Channels_Clear Errors_Clear Undo History_Clone_Close_Close Tab_Clouds_Colour Tools_Colours_Configure Colour and Opacity..._Context_Context Help_Copy_Copy Named..._Create Image from Template..._Crop & Resize_Crop Image_Curved_Curves..._Dark Check Colour_Default Colours_Delete Brush_Delete Buffer_Delete Channel_Delete Colour_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Desaturate_Detach Tab_Device Status_Dialogues_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Colour..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Ellipse Select_Enable layer & channel previews_Enormous_Equalize_Eraser_FG Colour_File_Fill with:_Fit Image in Window_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground colour:_Free Select_G_Generic_Gigantic_Gradient_Gradients_Grayscale_Grayscale copy of layer_Grow..._Guides_Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Info Window_Intersect with Selection_Invert_Join style:_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Left Neighbour's Right Endpoint_Levels..._Light Check Colour_Light Effects_Lightness:_Line Style_Linear_Linked_Load Left Colour From_Lower Channel_Lower Layer_Lower Path_M_Manually_Map_Mask_Mask to Selection_Maximum number of colours:_Measure_Medium_Merge Palettes..._Merge imported paths_Migrate GIMP 2.0 user settings_Misc. Stuff_Mitre limit:_Mode_Module Manager_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._Padding Colour_Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preferences_Preview_Preview Size_Previous tip_Print Size..._Properties_Quick Mask Active_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Reassign shortcut_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Remove unused colours from final palette_Render_Replace_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Order & Visibility_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Right Endpoint_Right Neighbour's Left Endpoint_Rotate_Saturation:_Save_Save Left Colour To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Scale imported paths to fit image_Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Show Image Selection_Show in Toolbox_Sinusoidal_Small_Smudge_Snap distance:_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tool_Tools_Transfer layer's alpha channel_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Visible_Web_Web browser to use:_White (full opacity)_White Balance_Width:_Wrap around_X resolution:_X:_Xtns_Y_Y resolution:_Y:_Zoom_Zoom (%s)colourscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for icon typeinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetremillimetresminuten/apercentpicapicaspixelpixelspixels/%apixels/%spointpointssecondtips-locale:CAdam Weinberger value for token %s is not a valid UTF-8 stringwhile parsing token '%s': %s \ No newline at end of file +Substituting grayscale map.YYellowYellow:You are trying to create an image with a size of %s.You can drop dockable dialogues here.You should have received a copy of the GNU General Public Licence along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your GIMP installation is incomplete:Your input device settings will be reset to default values the next time you start GIMP.Your keyboard shortcuts will be reset to default values the next time you start GIMP.Your window setup will be reset to default values the next time you start GIMP.Zoom & Resize BehaviourZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Colour from BG_Add Colour from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_All_Anchor Layer_Antialiasing_Arbitrary Rotation..._Artistic_Aspect_Auto_B_BG Colour_Background colour:_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Bucket Fill_Buffer_By Colour_By Colour Select_C_Cap style:_Channels_Clear Errors_Clear Undo History_Clone_Close_Close Tab_Clouds_Colour Tools_Colours_Configure Colour and Opacity..._Context_Context Help_Copy_Copy Named..._Create Image from Template..._Crop & Resize_Crop Image_Curved_Curves..._Dark Check Colour_Default Colours_Delete Brush_Delete Buffer_Delete Channel_Delete Colour_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Desaturate_Detach Tab_Device Status_Dialogues_Discard Changes_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Colour..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Ellipse Select_Enable layer & channel previews_Enormous_Equalize_Eraser_FG Colour_File_Fill with:_Fit Image in Window_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground colour:_Free Select_G_Generic_Gigantic_Gradient_Gradients_Grayscale_Grayscale copy of layer_Grow..._Guides_Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Info Window_Intersect with Selection_Invert_Join style:_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Left Neighbour's Right Endpoint_Levels..._Light Check Colour_Light Effects_Lightness:_Line Style_Linear_Linked_Load Left Colour From_Lower Channel_Lower Layer_Lower Path_M_Manually_Map_Mask_Mask to Selection_Maximum number of colours:_Measure_Medium_Merge Palettes..._Merge imported paths_Migrate GIMP 2.0 user settings_Misc. Stuff_Mitre limit:_Mode_Module Manager_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._Padding Colour_Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preferences_Preview_Preview Size_Previous tip_Print Size..._Properties_Quick Mask Active_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Reassign shortcut_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Remove unused colours from final palette_Render_Replace_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Order & Visibility_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Right Endpoint_Right Neighbour's Left Endpoint_Rotate_Saturation:_Save_Save Left Colour To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Scale imported paths to fit image_Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Show Image Selection_Show in Toolbox_Sinusoidal_Small_Smudge_Snap distance:_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tool_Tools_Transfer layer's alpha channel_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Visible_Web_Web browser to use:_White (full opacity)_White Balance_Width:_Wrap around_X resolution:_X:_Xtns_Y_Y resolution:_Y:_Zoom_Zoom (%s)colourscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for icon typeinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetremillimetresminuten/apercentpicapicaspixelpixelspixels/%apixels/%spointpointssecondtips-locale:CAdam Weinberger value for token %s is not a valid UTF-8 stringwhile parsing token '%s': %s \ No newline at end of file diff -uraN gimp-2.2.0/po/en_CA.po gimp-2.2.1/po/en_CA.po --- gimp-2.2.0/po/en_CA.po 2004-12-19 03:11:21.000000000 +0100 +++ gimp-2.2.1/po/en_CA.po 2004-12-28 16:58:27.000000000 +0100 @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: gimp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-19 03:11+0100\n" -"PO-Revision-Date: 2004-12-17 14:29-0400\n" +"POT-Creation-Date: 2004-12-28 16:58+0100\n" +"PO-Revision-Date: 2004-12-28 14:29-0400\n" "Last-Translator: Adam Weinberger \n" "Language-Team: English/Canada \n" "MIME-Version: 1.0\n" @@ -1027,11 +1027,11 @@ msgid "Remove dangling entries" msgstr "Remove dangling entries" -#: app/actions/documents-commands.c:252 app/actions/file-commands.c:163 +#: app/actions/documents-commands.c:251 app/actions/file-commands.c:163 #: app/dialogs/file-open-dialog.c:198 app/dialogs/file-open-dialog.c:249 #: app/dialogs/file-open-location-dialog.c:193 -#: app/display/gimpdisplayshell-dnd.c:332 app/widgets/gimplayertreeview.c:802 -#: app/widgets/gimptoolbox-dnd.c:123 +#: app/display/gimpdisplayshell-dnd.c:334 app/widgets/gimplayertreeview.c:804 +#: app/widgets/gimptoolbox-dnd.c:125 #, c-format msgid "" "Opening '%s' failed:\n" @@ -1539,115 +1539,115 @@ msgid "Zoom all" msgstr "Zoom all" -#: app/actions/gradient-editor-actions.c:582 +#: app/actions/gradient-editor-actions.c:589 msgid "_Blending Function for Segment" msgstr "_Blending Function for Segment" -#: app/actions/gradient-editor-actions.c:584 +#: app/actions/gradient-editor-actions.c:591 msgid "Coloring _Type for Segment" msgstr "Colouring _Type for Segment" -#: app/actions/gradient-editor-actions.c:587 +#: app/actions/gradient-editor-actions.c:594 msgid "_Flip Segment" msgstr "_Flip Segment" -#: app/actions/gradient-editor-actions.c:589 +#: app/actions/gradient-editor-actions.c:596 msgid "_Replicate Segment..." msgstr "_Replicate Segment..." -#: app/actions/gradient-editor-actions.c:591 +#: app/actions/gradient-editor-actions.c:598 msgid "Split Segment at _Midpoint" msgstr "Split Segment at _Midpoint" -#: app/actions/gradient-editor-actions.c:593 +#: app/actions/gradient-editor-actions.c:600 msgid "Split Segment _Uniformly..." msgstr "Split Segment _Uniformly..." -#: app/actions/gradient-editor-actions.c:595 +#: app/actions/gradient-editor-actions.c:602 msgid "_Delete Segment" msgstr "_Delete Segment" -#: app/actions/gradient-editor-actions.c:597 +#: app/actions/gradient-editor-actions.c:604 msgid "Re-_center Segment's Midpoint" msgstr "Re-_centre Segment's Midpoint" -#: app/actions/gradient-editor-actions.c:599 +#: app/actions/gradient-editor-actions.c:606 msgid "Re-distribute _Handles in Segment" msgstr "Re-distribute _Handles in Segment" -#: app/actions/gradient-editor-actions.c:604 +#: app/actions/gradient-editor-actions.c:611 msgid "_Blending Function for Selection" msgstr "_Blending Function for Selection" -#: app/actions/gradient-editor-actions.c:606 +#: app/actions/gradient-editor-actions.c:613 msgid "Coloring _Type for Selection" msgstr "Colouring _Type for Selection" -#: app/actions/gradient-editor-actions.c:609 +#: app/actions/gradient-editor-actions.c:616 msgid "_Flip Selection" msgstr "_Flip Selection" -#: app/actions/gradient-editor-actions.c:611 +#: app/actions/gradient-editor-actions.c:618 msgid "_Replicate Selection..." msgstr "_Replicate Selection..." -#: app/actions/gradient-editor-actions.c:613 +#: app/actions/gradient-editor-actions.c:620 msgid "Split Segments at _Midpoints" msgstr "Split Segments at _Midpoints" -#: app/actions/gradient-editor-actions.c:615 +#: app/actions/gradient-editor-actions.c:622 msgid "Split Segments _Uniformly..." msgstr "Split Segments _Uniformly..." -#: app/actions/gradient-editor-actions.c:617 +#: app/actions/gradient-editor-actions.c:624 msgid "_Delete Selection" msgstr "_Delete Selection" -#: app/actions/gradient-editor-actions.c:619 +#: app/actions/gradient-editor-actions.c:626 msgid "Re-_center Midpoints in Selection" msgstr "Re-_centre Midpoints in Selection" -#: app/actions/gradient-editor-actions.c:621 +#: app/actions/gradient-editor-actions.c:628 msgid "Re-distribute _Handles in Selection" msgstr "Re-distribute _Handles in Selection" -#: app/actions/gradient-editor-commands.c:84 +#: app/actions/gradient-editor-commands.c:85 msgid "Left Endpoint Color" msgstr "Left Endpoint Colour" -#: app/actions/gradient-editor-commands.c:86 +#: app/actions/gradient-editor-commands.c:87 msgid "Gradient Segment's Left Endpoint Color" msgstr "Gradient Segment's Left Endpoint Colour" -#: app/actions/gradient-editor-commands.c:186 +#: app/actions/gradient-editor-commands.c:189 msgid "Right Endpoint Color" msgstr "Right Endpoint Colour" -#: app/actions/gradient-editor-commands.c:188 +#: app/actions/gradient-editor-commands.c:191 msgid "Gradient Segment's Right Endpoint Color" msgstr "Gradient Segment's Right Endpoint Colour" -#: app/actions/gradient-editor-commands.c:353 +#: app/actions/gradient-editor-commands.c:358 msgid "Replicate Segment" msgstr "Replicate Segment" -#: app/actions/gradient-editor-commands.c:354 +#: app/actions/gradient-editor-commands.c:359 msgid "Replicate Gradient Segment" msgstr "Replicate Gradient Segment" -#: app/actions/gradient-editor-commands.c:358 +#: app/actions/gradient-editor-commands.c:363 msgid "Replicate Selection" msgstr "Replicate Selection" -#: app/actions/gradient-editor-commands.c:359 +#: app/actions/gradient-editor-commands.c:364 msgid "Replicate Gradient Selection" msgstr "Replicate Gradient Selection" -#: app/actions/gradient-editor-commands.c:371 +#: app/actions/gradient-editor-commands.c:376 msgid "Replicate" msgstr "Replicate" -#: app/actions/gradient-editor-commands.c:386 +#: app/actions/gradient-editor-commands.c:391 msgid "" "Select the number of times\n" "to replicate the selected segment." @@ -1655,7 +1655,7 @@ "Select the number of times\n" "to replicate the selected segment." -#: app/actions/gradient-editor-commands.c:389 +#: app/actions/gradient-editor-commands.c:394 msgid "" "Select the number of times\n" "to replicate the selection." @@ -1663,27 +1663,27 @@ "Select the number of times\n" "to replicate the selection." -#: app/actions/gradient-editor-commands.c:444 +#: app/actions/gradient-editor-commands.c:452 msgid "Split Segment Uniformly" msgstr "Split Segment Uniformly" -#: app/actions/gradient-editor-commands.c:445 +#: app/actions/gradient-editor-commands.c:453 msgid "Split Gradient Segment Uniformly" msgstr "Split Gradient Segment Uniformly" -#: app/actions/gradient-editor-commands.c:449 +#: app/actions/gradient-editor-commands.c:457 msgid "Split Segments Uniformly" msgstr "Split Segments Uniformly" -#: app/actions/gradient-editor-commands.c:450 +#: app/actions/gradient-editor-commands.c:458 msgid "Split Gradient Segments Uniformly" msgstr "Split Gradient Segments Uniformly" -#: app/actions/gradient-editor-commands.c:462 +#: app/actions/gradient-editor-commands.c:470 msgid "Split" msgstr "Split" -#: app/actions/gradient-editor-commands.c:478 +#: app/actions/gradient-editor-commands.c:486 msgid "" "Select the number of uniform parts\n" "in which to split the selected segment." @@ -1691,7 +1691,7 @@ "Select the number of uniform parts\n" "in which to split the selected segment." -#: app/actions/gradient-editor-commands.c:481 +#: app/actions/gradient-editor-commands.c:489 msgid "" "Select the number of uniform parts\n" "in which to split the segments in the selection." @@ -2128,7 +2128,7 @@ #: app/actions/layers-commands.c:232 app/actions/layers-commands.c:234 #: app/actions/layers-commands.c:291 app/actions/layers-commands.c:295 -#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:840 +#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:842 msgid "New Layer" msgstr "New Layer" @@ -2140,7 +2140,7 @@ msgid "Set Layer Boundary Size" msgstr "Set Layer Boundary Size" -#: app/actions/layers-commands.c:512 app/core/gimplayer.c:255 +#: app/actions/layers-commands.c:512 app/core/gimplayer.c:253 msgid "Scale Layer" msgstr "Scale Layer" @@ -2152,7 +2152,7 @@ msgid "Layer Mask to Selection" msgstr "Layer Mask to Selection" -#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1085 +#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1066 #: app/dialogs/layer-add-mask-dialog.c:62 msgid "Add Layer Mask" msgstr "Add Layer Mask" @@ -2697,7 +2697,7 @@ msgstr "Open Text File (UTF-8)" #: app/actions/text-editor-commands.c:132 app/config/gimpconfig-utils.c:552 -#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:393 +#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:396 #: app/core/gimpbrushgenerated.c:601 app/core/gimpbrushpipe.c:338 #: app/core/gimpgradient-load.c:63 app/core/gimppalette.c:360 #: app/core/gimppattern.c:328 app/tools/gimpimagemaptool.c:608 @@ -4529,7 +4529,7 @@ msgid "FG to Transparent" msgstr "FG to Transparent" -#: app/core/gimp-gui.c:148 +#: app/core/gimp-gui.c:153 msgid "GIMP" msgstr "GIMP" @@ -4561,39 +4561,54 @@ msgid "Modules" msgstr "Modules" -#: app/core/gimpbrush.c:531 +#: app/core/gimpbrush.c:534 #, c-format msgid "Could not read %d bytes from '%s': %s" msgstr "Could not read %d bytes from '%s': %s" -#: app/core/gimpbrush.c:566 +#: app/core/gimpbrush.c:554 +#, c-format +msgid "Fatal parse error in brush file '%s': Width = 0." +msgstr "Fatal parse error in brush file '%s': Width = 0." + +#: app/core/gimpbrush.c:563 +#, c-format +msgid "Fatal parse error in brush file '%s': Height = 0." +msgstr "Fatal parse error in brush file '%s': Height = 0." + +#: app/core/gimpbrush.c:572 +#, c-format +msgid "Fatal parse error in brush file '%s': Bytes = 0." +msgstr "Fatal parse error in brush file '%s': Bytes = 0." + +#: app/core/gimpbrush.c:596 #, c-format msgid "Fatal parse error in brush file '%s': Unknown depth %d." msgstr "Fatal parse error in brush file '%s': Unknown depth %d." -#: app/core/gimpbrush.c:579 +#: app/core/gimpbrush.c:609 #, c-format msgid "Fatal parse error in brush file '%s': Unknown version %d." msgstr "Fatal parse error in brush file '%s': Unknown version %d." -#: app/core/gimpbrush.c:595 app/core/gimpbrush.c:715 +#: app/core/gimpbrush.c:625 app/core/gimpbrush.c:745 #, c-format msgid "Fatal parse error in brush file '%s': File appears truncated." msgstr "Fatal parse error in brush file '%s': File appears truncated." -#: app/core/gimpbrush.c:603 app/core/gimpbrushgenerated.c:648 +#: app/core/gimpbrush.c:633 app/core/gimpbrushgenerated.c:648 #: app/core/gimpbrushpipe.c:354 #, c-format msgid "Invalid UTF-8 string in brush file '%s'." msgstr "Invalid UTF-8 string in brush file '%s'." -#: app/core/gimpbrush.c:610 app/core/gimpcontext.c:1299 -#: app/core/gimpitem.c:479 app/core/gimppattern.c:400 +#: app/core/gimpbrush.c:640 app/core/gimpcontext.c:1299 +#: app/core/gimpitem.c:480 app/core/gimppattern.c:400 #: app/dialogs/template-options-dialog.c:80 app/tools/gimpvectortool.c:339 msgid "Unnamed" msgstr "Unnamed" -#: app/core/gimpbrush.c:704 +#: app/core/gimpbrush.c:734 #, c-format msgid "" "Fatal parse error in brush file '%s': Unsupported brush depth %d\n" @@ -4758,11 +4773,11 @@ "%s" #: app/core/gimpdatafactory.c:411 app/core/gimpdatafactory.c:414 -#: app/core/gimpitem.c:274 app/core/gimpitem.c:277 +#: app/core/gimpitem.c:275 app/core/gimpitem.c:278 msgid "copy" msgstr "copy" -#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:286 +#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:287 #, c-format msgid "%s copy" msgstr "%s copy" @@ -4825,7 +4840,7 @@ msgid "Rotate" msgstr "Rotate" -#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:259 +#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:257 msgid "Transform Layer" msgstr "Transform Layer" @@ -5182,7 +5197,7 @@ #. pixel size #: app/core/gimpimagefile.c:624 app/dialogs/info-window.c:552 -#: app/widgets/gimpsizebox.c:552 app/widgets/gimptemplateeditor.c:637 +#: app/widgets/gimpsizebox.c:429 app/widgets/gimptemplateeditor.c:637 #: app/widgets/gimptemplateeditor.c:673 #, c-format msgid "%d x %d pixels" @@ -5202,15 +5217,15 @@ msgid "Could not open thumbnail '%s': %s" msgstr "Could not open thumbnail '%s': %s" -#: app/core/gimpitem.c:1096 +#: app/core/gimpitem.c:1103 msgid "Attach Parasite" msgstr "Attach Parasite" -#: app/core/gimpitem.c:1106 +#: app/core/gimpitem.c:1113 msgid "Attach Parasite to Item" msgstr "Attach Parasite to Item" -#: app/core/gimpitem.c:1145 app/core/gimpitem.c:1152 +#: app/core/gimpitem.c:1152 app/core/gimpitem.c:1159 msgid "Remove Parasite from Item" msgstr "Remove Parasite from Item" @@ -5238,37 +5253,37 @@ msgid "Floating Selection to Layer" msgstr "Floating Selection to Layer" -#: app/core/gimplayer.c:252 app/pdb/internal_procs.c:152 +#: app/core/gimplayer.c:250 app/pdb/internal_procs.c:152 msgid "Layer" msgstr "Layer" -#: app/core/gimplayer.c:253 +#: app/core/gimplayer.c:251 msgid "Rename Layer" msgstr "Rename Layer" -#: app/core/gimplayer.c:254 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 +#: app/core/gimplayer.c:252 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 msgid "Move Layer" msgstr "Move Layer" -#: app/core/gimplayer.c:256 +#: app/core/gimplayer.c:254 msgid "Resize Layer" msgstr "Resize Layer" -#: app/core/gimplayer.c:257 +#: app/core/gimplayer.c:255 msgid "Flip Layer" msgstr "Flip Layer" -#: app/core/gimplayer.c:258 +#: app/core/gimplayer.c:256 msgid "Rotate Layer" msgstr "Rotate Layer" -#: app/core/gimplayer.c:341 app/core/gimplayer.c:1129 +#: app/core/gimplayer.c:339 app/core/gimplayer.c:1110 #: app/core/gimplayermask.c:236 #, c-format msgid "%s mask" msgstr "%s mask" -#: app/core/gimplayer.c:387 +#: app/core/gimplayer.c:385 #, c-format msgid "" "Floating Selection\n" @@ -5277,39 +5292,39 @@ "Floating Selection\n" "(%s)" -#: app/core/gimplayer.c:1055 +#: app/core/gimplayer.c:1036 msgid "Cannot add layer mask to layer which is not part of an image." msgstr "Cannot add layer mask to layer which is not part of an image." -#: app/core/gimplayer.c:1062 +#: app/core/gimplayer.c:1043 msgid "Unable to add a layer mask since the layer already has one." msgstr "Unable to add a layer mask since the layer already has one." -#: app/core/gimplayer.c:1069 +#: app/core/gimplayer.c:1050 msgid "Cannot add layer mask to a layer with no alpha channel." msgstr "Cannot add layer mask to a layer with no alpha channel." -#: app/core/gimplayer.c:1079 +#: app/core/gimplayer.c:1060 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "Cannot add layer mask of different dimensions than specified layer." -#: app/core/gimplayer.c:1183 +#: app/core/gimplayer.c:1164 msgid "Transfer Alpha to Mask" msgstr "Transfer Alpha to Mask" -#: app/core/gimplayer.c:1343 +#: app/core/gimplayer.c:1324 msgid "Apply Layer Mask" msgstr "Apply Layer Mask" -#: app/core/gimplayer.c:1344 +#: app/core/gimplayer.c:1325 msgid "Delete Layer Mask" msgstr "Delete Layer Mask" -#: app/core/gimplayer.c:1445 +#: app/core/gimplayer.c:1426 msgid "Add Alpha Channel" msgstr "Add Alpha Channel" -#: app/core/gimplayer.c:1467 +#: app/core/gimplayer.c:1448 msgid "Layer to Image Size" msgstr "Layer to Image Size" @@ -6754,28 +6769,28 @@ msgstr "Print Size" #. the image size labels -#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:241 +#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:222 #: app/widgets/gimptemplateeditor.c:236 msgid "_Width:" msgstr "_Width:" -#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:248 +#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:225 #: app/widgets/gimptemplateeditor.c:243 msgid "H_eight:" msgstr "H_eight:" #. the resolution labels -#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:338 +#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:273 #: app/widgets/gimptemplateeditor.c:363 msgid "_X resolution:" msgstr "_X resolution:" -#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:345 +#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:276 #: app/widgets/gimptemplateeditor.c:370 msgid "_Y resolution:" msgstr "_Y resolution:" -#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:357 +#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:269 #: app/widgets/gimptemplateeditor.c:383 #, c-format msgid "pixels/%a" @@ -6799,9 +6814,8 @@ msgstr "There are %d images with unsaved changes:" #: app/dialogs/quit-dialog.c:183 -#, fuzzy msgid "_Discard Changes" -msgstr "_Raise Channel" +msgstr "_Discard Changes" #: app/dialogs/resize-dialog.c:115 msgid "Canvas Size" @@ -7392,11 +7406,11 @@ msgid "%d minutes" msgstr "%d minutes" -#: app/display/gimpdisplayshell-dnd.c:96 +#: app/display/gimpdisplayshell-dnd.c:98 msgid "Drop New Layer" msgstr "Drop New Layer" -#: app/display/gimpdisplayshell-dnd.c:140 +#: app/display/gimpdisplayshell-dnd.c:142 msgid "Drop New Path" msgstr "Drop New Path" @@ -8855,12 +8869,12 @@ msgstr "_Paintbrush" #: app/tools/gimppaintoptions-gui.c:103 app/widgets/gimpbrushselect.c:201 -#: app/widgets/gimplayertreeview.c:330 +#: app/widgets/gimplayertreeview.c:332 msgid "Opacity:" msgstr "Opacity:" #: app/tools/gimppaintoptions-gui.c:108 app/tools/gimpselectionoptions.c:374 -#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:323 +#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:325 msgid "Mode:" msgstr "Mode:" @@ -9001,9 +9015,8 @@ msgstr "Centre X:" #: app/tools/gimprotatetool.c:190 -#, fuzzy msgid "Center Y:" -msgstr "Centre X:" +msgstr "Centre Y:" #: app/tools/gimpscaletool.c:91 msgid "Scale" @@ -10257,24 +10270,24 @@ msgid "Set Item Exclusive Linked" msgstr "Set Item Exclusive Linked" -#: app/widgets/gimplayertreeview.c:250 +#: app/widgets/gimplayertreeview.c:252 msgid "Reorder Layer" msgstr "Reorder Layer" -#: app/widgets/gimplayertreeview.c:311 +#: app/widgets/gimplayertreeview.c:313 msgid "Keep transparency" msgstr "Keep transparency" -#: app/widgets/gimplayertreeview.c:846 +#: app/widgets/gimplayertreeview.c:848 msgid "Empty Layer" msgstr "Empty Layer" -#: app/widgets/gimpmessagebox.c:458 +#: app/widgets/gimpmessagebox.c:460 #, c-format msgid "Message repeated %d times." msgstr "Message repeated %d times." -#: app/widgets/gimpmessagebox.c:460 +#: app/widgets/gimpmessagebox.c:462 msgid "Message repeated once." msgstr "Message repeated once." @@ -10306,16 +10319,12 @@ msgid "Invalid UTF-8" msgstr "Invalid UTF-8" -#: app/widgets/gimpsizebox.c:290 -msgid "Keep aspect ratio" -msgstr "Keep aspect ratio" - -#: app/widgets/gimpsizebox.c:574 +#: app/widgets/gimpsizebox.c:451 #, c-format msgid "%d x %d dpi" msgstr "%d x %d dpi" -#: app/widgets/gimpsizebox.c:578 +#: app/widgets/gimpsizebox.c:455 #, c-format msgid "%d dpi" msgstr "%d dpi" @@ -10757,6 +10766,3 @@ #: data/misc/gimp.desktop.in.in.h:2 msgid "Image Editor" msgstr "Image Editor" - -#~ msgid "Y:" -#~ msgstr "Y:" diff -uraN gimp-2.2.0/po/en_GB.gmo gimp-2.2.1/po/en_GB.gmo --- gimp-2.2.0/po/en_GB.gmo 2004-12-19 03:11:53.000000000 +0100 +++ gimp-2.2.1/po/en_GB.gmo 2004-12-28 16:58:41.000000000 +0100 @@ -1,287 +1,294 @@ -N Jm &kGZ9GA$Nfi<k\@2 ;<PxO29L-9;7* bl -s ~ - -  - - -6Pf0m -  ) 5 -C -N Y fr  K.1! &5<Xg~ -  - , -5@Obz*6%8Umv#7#Ko - * 7AQ1f3 - - 2BASJ< 0 >L\u + <Jb -kv&$ & 0>E^ek"  -7/g m z   mS X f t~  C7=R@6dm3<#&!Jl  6HZw, *8 X y!  $1ELS Ygz .557G8),+C2` OA;%}&41#1 Uc   -  &?Q0c  +EXkt   - $)> [|"% 4BR [go  ;Tt "" - -;)Fp,!##!;%].  /#E-i%/G LZ -t - - %4 ;I -\g-n  (9L\o  %! 5BU&m   $ 3@ P]o ~ - -# -.-9 gs z  -  3 FTn w :?8; t  - -   - ) 5 -? JV _l >  2BTcu  ';Q ak~ - - & <I ^k{ -*!!C.Z#"&1X nz,#  '9a'~FTV   &0 -G R` }  &(/$X}=6<?5Au79c)9B= -fH>CJ2g}  !6;M ] gs   (;Mdt &=Qe y -   -    -'C KWg w( + 1 8  @ M U [  -a Ol   -  n - - - +M Jm &kGJ9GANVi<kL@2;,PhO2 9<-v9;7 R\ +c n +x +  + + +&@V0] +  % +3 +> I Vb r ~ K.z1!%,HWnr +  +   +%0?Rj|*6(E]f'#;_y +   '1A1V3 +| +"2ACJ< .<Le}   ,:R +[fw&$   .5NU[u"}  + 7W ] jx   mC H V dnw  C7 +=B@6d]{3<#!:\y  &8Jg, ( H i!w  !5<C IWj y.55778o),32P OA+%m&41#! ES o { +  /A0S  + 5H[d t  + $ +. Kl" $2B KW_ +Dd y"" + ++)6`,z!##!+%Ms.  #5-Y% +7 <J +d +o +z $ +9 +LW-^  )<L_v  %! %2E&]    #0 @M_ nz + +-) Wc jx  + # 6D^ gq :?8+ dpy  + +  +  % +/ :F O\p > "2DSe  +A Q[n + +  ,9 N[k +*!3.Jy#"&!H ^j~,# ')Q'nFTF    +7 BP m  ($Hm=s6<?%Ae79c9}B=f8>CJ"gm  &+= M Wc u  +=Tdx-AU iw +   +   + 3 ;GW gu( ! (  0 = E K  +Q O\   +  ^ +o + +  - - - - - -. -, ? R  -a  l  z           " u1    cL z8>rF,A&R'y        *9KQiz~  -$ -7>F K Xd -H -3 >HX -`Hk!B1,^qv { -  `8C10Hy   - -+ C(Q -z -H -  -  -:Pe t       # 1 >KL36"( KUm $   (?+h)*! /MTc*t' -0;K]s  ;LUd}   ( < !T v        !-!-5 -d5 o5y5555 -55 55 55 6 66%686 M6 Y6 e6s6&6,6 666 -7 -7767T7s7774777 -788 - 8 +888G8 P8^8f8m8 88 8!88 88 99)9D9 T9^9o9 999?9999::5:R:4:);2;-:; h<r<{< -< <#<<-< ==&= ;=E=M=d=m= -v= ==3>G>[> d>q>z>>>> -> ->>> -> > ???3? D? N?!X?z? ~??? ? ???? ?@@ ,@8@ -K@V@h@ {@@ @@ -@@@@AA A!+AMA!kA#AA A -A9AUB=oB<B=B"(C?KCCC CCCC(C,CD.D@DQD -bDmDDDJD DEE,E FE SE`E{E E EEEEE; FGFaF pF }FFF F FF F F FGG ,G6GQGnGGGGGGGG -HH1H+HHtHHHH H H HH H II#*I NIZI lIxIII6IIJJJ 4J7AJyJJJJJJJ J KK*K >KKK iKuKKK -K -KK KKK KK -KL -L L+L -BLMLmL LLLLL LMM/M?MSM4hMMMMMNN%N.?NEnNN N NN N OO/O 5O CO OO -[OfO wO -OOO OOOOONP -PPPP Q QQ1QMQcQ#}QQQ QQQ R#R#=RaRR RRRRR$S'SFS [SeSuSSS!SSS T -TT2T BTOTnTTTTT TTUU3URUiU UUU UUUUUV*VAV -SV^VnV"VVV VVVW2WKW=[W6WSWJ$XoXXX XXXXXYY5Y GYSYbYwYY YYYY YYZ,ZGZaZ|ZZ ZZZZZZ["[)[N\P\Kd]=]]*r^^B_3_T`?n```2aBaatc4wd/dd eeeeeeeeefff0fCf`f uf ff;ff ffg gg 3gAgQg#eg gg g g&gg -h hh.hHh"Zh}hhhhhhh i i0i?i Pi]ivi iiiii+iii j jj $j1j Aj -OjZj`jgjoj xj j8jvjAkHk`kxk k kk k!kkkl1lJlgllllllll l l l mmm&m /mftt`z017>Pe v6o-/64>#sG`XUOWǡСء -   #0T \jsyǢ٢    -7?E HRe  ƣӣڣ  !2 5 A KYmt -{ ä ̤ڤ ) -1<N ^l{   ɥ ٥1 B NZir   -æߦ+DUg w    ħЧ %, ?LO X b -l -w  ɨϨըۨ  %? GT[bj -ѩ   - :F ISX^qƪ  $ -, 7D T b -p {     ˫ի ݫ -  , 9EN Ucsz     ¬Ь ߬  # 0 <I^ q~í(խ%=O4i1/Ю&F N[au# ˯"4 -<GYjqz ̰ް -  - -"- 3AGW]d - -ɱα ,069HL -R]di5m ϲԲ۲ ! ( Ij - ų ̳ ֳ .D/a&kεG:9GANFi<k<@2;RXO29.-h9;к7  DN -U ` -j -u  -ɻ -2H0O -̼׼޼    -% -0 ; HT d p|  K.l1!;:I`dw -   -ĿϿ  -$3F^r,6"?W`}&#;_y -   '1A1V3 -~  -$4AEJ< " 0>Ng  .=U -^i{&$  %3:T[a{"  -7%] c p~    mI N\ ku~  C7=I@6dd3<#!Ac  /ASp, - %3 S t!  ,@GN Tbu .55 7B8z), -&>2[ OA6%x&41#, P^ z  - &@S2f   -   ,&Sg {  -  $.=R o"#9 HVf o{ '4O h ""  -&1 -P)[,!##,!P%r.  -1D#Z-~%/D\ ao - - -  +:I P^ -q|-  +?Pcs    %!+ MZm&   /< KY iv # -< -G.R    -  -#+>R es  :?8Z   - -   $ 0 -= H T -^ iu ~ > ,>Qas  .H]s   - % >L bo    -*,5!Gi.#"8&W~ ,# $2E'_'F5T|  5 LV -mx  # ,8N(W$=6< ?]A79cQ9B=2fp>CJZg ) ;I^cw     -BVi{=Xp  -   -   +> -OZv ~ (5^dk s -O -  -  # ,.8gz -      !2F]ulc zsys%.@OXh}'(     ( -7=DI [hw3 J -T_ hry   -H% -n y -H!BTX2g  -  `tC1R0   - -$5Tg ( - -H -  --8 ?KZ iv    &5O  " >  B P  b  p  } M 3 6 -D -S -"i - - - - - -$ -   0  >  _ ( + ) * !* L /^    *   ' 6 F V _  -q |         ) @a|  $ 5?Oi}! !6Un-}  "3(\m  -  ;Thy  @H-O}       /Nm      -/:O es  -!9 O]r -# 4+Q}   -  ' <I Xfy" !&,%Ci|      -  -+6 FP_ o y$+4 HTg -     - 7C`o  -      ,)V!i)  - " 0<APW h tBA 8 M  _ i p        X!g!y!!! -!! !!! !!!" ("$I"#n"#"""" " # ##-#<# D#R#VZ#+# #(#$"$9$ O$ [$g$$%$ -$ $$$$$ -%% )%7% @%N% b% l%z%%% % % %%&%,& <&I&N& -^& -i&t&&&&&&4 '@'R' -X'c'k' -{' ''' '''' '' (!(4( C(Q( g(s((( ((( (((?(9)H)P)d)t)))4P***-* +++ -+ +$+!,-4, b,n,, ,,,,, -, ,,--- ------ -. -.*.@. -P. [. e.s.w.. -. .!.. ... / /)/E/L/ T/b/w/ // -/// // / 0 -0)0;0W0t0y0 0!00!0#01 (1 -519@1Uz1=1<2=K2"2?222 333$3))3-S33333 -3333K4 [4h4w44 4 444 4 55+5E5U5;o555 5 556 6 %636 C6 Q6 ^6j6r6 666666 77/7@7S7n777+77788 &8 38 @8L8 ^8 k8w8#8 88 88896 9W9t9|99 97999:!:(:?:U: d: q:}:: :: :::: -: -;; ;';=; L;Z; -`;k;p; ;; -;;; ;;<)<E< `<l<|<<<<4<= =3=L=i=|==.=G=> -> ;>H> `> n>|>> > > > ->> > ->>? ?!?>?F?Z?N? -H@S@\@c@u@ }@@@@@#@ A)A =AIAwAA#AAA A -BB:BQB$lBBB BBBB C!%CGCcCuC -|CCC CCCC D D8D NDZDqDDDDD DDE #E0EEEWElEEEE -EEE#EF5F OF[FoFFFF=F6 -GSAGJGGG H H)H:HPH_HyHHH HHHHH II5IHI \I jIIIIII J J)J?JUJeJtJJJ)NKPxKKKL=)MgM*MNN3^OVO?O`)P2PP@QR4S/(TXT UU'U-U4UEUVUiUqUUUUUUU U U -V;VOV _VlV|V VV VVV#V WW 'W 5W&BWiW -|WWWWW"WWX!X1XBXaXwXXXXX XXX YYY'YyPy `y nyxyyy yy -y<y z { "{,{>{R{b{q{{{{{{{{ | |(|<| L|X|]|f|3}|;|;|)}}F~ # ( 5CIQ c3#'KdwƀՀۀ  Fd - -    ȁ Ձ !! 5 A+MKy0łQH$5PG2-zOjoceӇj9~p#ow<|?>t8t`" 0čʍэ 6pPÎʎ4Ҏ%-GX>UO=T]fn -w   #Ƒ  %.BV_q    Œϒגݒ - 9Z `mt}  -Γ ѓ ݓ   -" *8 Ab ky Ȕ -Д۔  +: N \j zҕ   + + + + + +. + / B  +Q  \  j  v           u!   v c< z(.r6 1&B'i       );AYjn  +  '.6 ; HTo +H +# .8H +PH[!B  1Naf kx +  `(C108i o | + + 3(A +j +uH +  +  *@U d q       ! .K<36" ;E]q $   (/+X)*!/ =DS*d' + +;Qas *3B[n    !2 T p         !-!H"Q"d"h" """" ""3"" #!#1# I# +V# a# m#z#####$$ *$8$O$ V$b$w$$$@$$-$% *%7% <% J% V%c%% %% % %%%%&& .& 8& D&P& g&u&& && +&&& & ' $'0' +F'Q'f'o'w'''''''' '' ("( +*(#5(Y(r((((((+()) $) 2) +>) I) V)d)y)))) )) ))*,*"C*f*o** *****$**+%+4+ C+O+ W+ e+q+ v+ ++ ++ + +++ +++ , ,,1,@,W,m,,,,,, ,,,-- + - +-7-I-]-p- - --- - - ---.. $. +1. <.F. a. n.z. . . .,..!././E/)b/ // / ///// / 00B$0Ag0000 0001 1+1=1R1Z1b111222 +2)2 =2K2b2 t2222"2!2!393Q3j3 3 3 3333 33V3+44 `4(j44"44 4 445%5 +B5 M5W5_5n55 +55 55 55 5 5566 +6 76 C6Q6&k6,6 666 +6 +66727Q7i7|74777 +777 +7 88%8 .8<8D8K8 h8t8 8!88 88 889"9 29<9M9 _9l9s9?{999999:0:4:;;-; F<P<Y< +i< t<#~<<-< <<= =#=+=B=K= +T= _=k=>%>9> B>O>X>`>f>|> +> +>>> +> > >>>? "? ,?!6?X? \?j?~? ? ???? ??? +@@ +)@4@F@ Y@g@ |@@ +@@@@@@ @! A+A!IA#kAA A +A9AUA=MB<B=B"C?)CiC{C CCCC(C,CC DD/D +@DKDaDvDJD DDD +E $E 1E>EYE sE EEEEE;E%F?F NF [FgFF F FF F F FFF +GG/GLG^GrGGGGGGGGH+&HRHjHHH H H HH H HH#I ,I8I JIVIkII6IIIII J7JWJuJJJJJJ J JJK K)K GKSKhKnK +uK +KK KKK KK +KKK K L + L+LKL hLtLLLL LLL MM1M4FM{MMMMMMN.NELNN N NN N NN O O !O -O +9ODO UO +aOlO{O OOOOONmP +PPPPP PPQ+QAQ#[QQQ QQQQR#R?R]R qR~RRRR$RS$S 9SCSSSmSS!SSSS +SST T-TLTgT~TTT TTTTU0UGU `UnUU UUUUUUVV +1Vf Sf _flf;uff fff ff gg/g#Cg ggtg g g&gg +ggg h&h"8h[hshhhhhhhhii .i;iTi hitiyiii+iiii ii jj j +-j8j>jEjMj Vj bj8ojvjk&k>kVk ^k kkwk }k!kkkkl(lElblilxlllll l l l lllm mm*m 9mEm Vm bmnmm!mmm(mn#n ?n MnZnan +gn rn nnnnn +n n +n nn oKo1ao7o1o5oH3pA|pp;Iq!qq irr qs~t}'u*uBvwwxxy $y2y)9y5cyy1Iz0{z0z1z({C8{|{S{,Q|2~| |A}A~*V~~- (FG2zc2S - +؈$3<BTg   lj  +< LZ q{Ջ"1K[ jw +3ˌ;;;wF  gq v  ҏُ(3A#uĐԐ"( /;XaFj +ё +ܑ     " 0!>!`  +Kƒ0QC.$є5P,G}-ŕOjCoej~pnoߙwO<ǚ?>Dtt`mΜX؝0ޝ.C Tb6do  4#QuG>XUߠO5 + ʡ ֡ #2 :HQWfmv ɢӢ آ  # &0C^ }      )7KR +Yd ly ͤ  +, <JY iw   ĥץ  ,8GP j t +̦ަ "3E U v   çҧ ا + *- 6 @ +J +U`y  ǨϨר   %29@Hbq +  ʩ֩ީ  $ '16<Ojs{ Ī Ѫߪ - / 9 -FQWfϖ   < FP -Xc iu ėʗї    - -(AJ R\ bou{  ˘ *9 -Ydx  ƙ ՙ  5>FYo  ƚ͚ -՚    - $ 2 ? I Vc t~  - ƛ ֛   $ - : HU ^ lz  ͜ ڜ  (.7H[m)Н41I/{ў  !#2 Vw" -&< MY`hx - -à -Π٠ ߠ  -0;LR -[fluz ɡءܡ - 5P bl| ! բ  -7 BNUYaflr y '.ۣ -rg <}qwn {b](  56ASMH$ IM: =`! >g{Z@4W; ?BM|J3~9']Jr*$li =6yc*iZVkO*u).k# h5- bdfzcWQboG Z3 rh &Y5E\"8R4uq"fY6+!aAq 31v)%70Me {`dU@#} 0-) &w /KDHw@J[,Nh}cgFd C oDtS:s>G! E2sQs4G ?<j:sWA4p1 -LM*Urgc3puA |ny6 dc".= @BJg"Bmv} eu  yN K bx  'd8 T(,$ %D4+ k_!QV_U]'d #TU, ? /[ - am1 V.FH 9viT</ v/< 9 \g$?m~!Ranz  0WFH7JQ]1` '4@F^,,  P9& ff 7 (X_k{L (% ) ( 7P:A8bl$B-(4 yg} +6 ok4=`CTS= | mx f9 A66CNK5=yz1v pSg9-P)+Wy&((Lc>&@*N}@ QC2XH.r G?Ee! s^zz12G$3fEN -C<Gqu7};"' 0L(0Gt=Y/j!,q6zPf'r:,%O+ T{7?HOe<xCo)" -Jq/Qt:_xbthw-LDhSBa] cj00[w2R?8o& ].l/Db\{J|8.+F!IMw\x6 '@4X_=2hIK q4q>S~5L TR`2:.VK9!R35Fm* #70 m=1 vPb;uHlYOjls["\Ph8^#|hbE_>evRt^KQ^~GP >jDXY.H & p *8G# hExUH^R-k] -M \L*wYeBiV^_lU2X7B<: ;QvSj --9C3lCa ? Q'`s,:=Kt>i$Z +% c. C2 nC|@~N9X*Kp%Mx0W;~ UJ 'wu> 1$FN0 oIKn1AJ -F )#/g32aFm&<pH\{5 ;r P(p%Xz)P+W wIB  ;YI]]ftmzN5Z_r>Ui <B+oO)xE_A,aTrLAVjDn e -\8y8|pZ$!XRVdA[5ME W~t  p[#)k{GK`Nt`D W T3 @ 3~jmn|}I|sLLS `;c" q#MB&Z-I~O RI yoUze;IdVN n&[/V8 ,Yk71iiFyJZalD%;[x%D5neS}9a  -O {Z'2/6+: X>^#7k?O lvY"-^fs TE% -io[u d* -\O.j?u$<E" + " 2 @ +N Y g t ~   ū̫ +ҫݫ  + #, 3AQX a n |   ɬܬ   '< O\bk|(ܭ-4G1|/ޮ$ ,9?S#d ȯϯ߯" +%7HOXn Ѱ + + +  %5;B +bm~ +ױ  +&* +0;BG5K  ϲ!  'H +h s  ij˳ ҳ."/?o&kG9`GAN$is<ݷk@2Ǹ;R6O2ٹ9 -F9t;7 ", +3 > +H +S ^jz + +ʻһڻ&0-^o +ļ̼ ۼ   + +  &2 B NZ _ kKxĽ.J1y!;߾'>BU +g r~  +¿ տ߿ +$<Pds,65>[z#=W +s~   143f +\g  +A#Je<  ,E]muz  3 +<GYs&$  29?Y"a  +7; A N\el t   m' ,: IS\ y C7='@e6dB`3v<#!A^ x  1Nl,  1 R!`   +%, 2@S bo.557 8X),29 lOA%V&|41# + .< X dn + 12D w  +   ,1E Yct  +  $ 0 Mn" &4D MYa - Fg |"" + +.)9c,}!## +!.%Pv. "#8-\% ": ?M +g +r +}   ' .< +OZ-a   .AQd{    %!  +8K&c    )7 GTf u + +%.0 _k r  +  0 CQk t~ :?88 q}  + +    + & 2 +< GS \i} >  +/?Q`r   &;Q ak  +  * @M bo   +* +!%G.^#"&5\ r~,# #'=e'FTZ   *4 +KVe   +,(5$^=6<?;A{79c/9B=fN>CJ8g  '<AU e o{     4GYp6Nbv  +   +    +-8T \hx (<BI Q^fl +rO} + +   +.EXk +z      $;uJce zQWs_ -6F['l(      "' 9FUgm ( +2= FPW_ d q} +H +L Waq +yH!B262Ex  +  `RC100b   + +2E ](k + +H +  +  )8 GTj    -    .  @  N  [ Mi 3 6 " +1 +"G + j +t + + + +$ + + +     = (^ + ) * ! * /< l s  *   '  $ 4 =  +O Z j          -HYbq   5I!a !:-Iw  3(9Qa y +   4E Zh @-I \i n |    9M a k w   + 1? Wc +y )>U +]#h+IQ X f +r }   $2E`"w %5H\k z     +  + + ; EOhw  3MR +X co     ,;N a +n y     ,"!5Wk)    # 4 @NBaA   + 5 < K  [ h z    $!3!E!M!V! +[!f! z!!! !!!! !$"#:"#^"""" " " """# ##V&#+}# #(##"#$ $ '$3$M$%e$ +$ $$$$$ +$$ $% %% .% 8%F%L%_% t% % %%&%,% &&& +*& +5&@&]&{&&&&4& '' +$'/'7' +G' R'_'n' w'''' '' '!'( (( 3(?(P(l( |((( (((?()))0)@)])z)4*Q*Z*-b* +++ ++ +$++-, .,:,O, d,n,v,,, +, ,,\-p-- ------ +- +-- . +. '. 1.?.C.]. +n. y.!.. ... . ..// /./C/ Y/e/ +x/// // // +//0#0@0E0 K0!X0z0!0#00 0 +19 1UF1=1<1=2"U2?x222 2222)2-3M3]3o33 +3333K3 '444C4\4 v4 444 4 4445!5;;5w55 5 555 5 55 6 6 *666>6 \6f66666666 77:7L7a7+x77777 7 7 88 *8 78C8#Z8 ~88 888868#9@9H9O9 d97q999999 :!: 0: =:I:[: o:|: :::: +: +:: :: ; ;&; +,;7;<; Q;]; +t;;; ;;;;< ,<8<H<a<q<<4<<<<=5=H=W=.q=G== = >> ,> :>H>c> i> w> > +>> > +>>> >> +??&?N? +@@(@/@A@ I@U@g@@@#@@@ AA'ACAYA#sAAA AAABB$8B]B|B BBBBB!BC/CAC +HCSChC yCCCCCCD D&D=DTDkDDD DDD DDE#E8EQEdE{E +EEE#EEF F'F;FVFoFF=F6FS GJaGGGG GGHH+HEHTHrH HHHHH HHII (I 6IWImIIIII II J!J1J@JRJeJ)KPDKKKL=L3M*MMN3*OV^O?O`O2VPP QR4S/S$T TTTTUU"U5U=UMU_UeUxUUU U UU;UV +V8VHV YVfV {VVV#V VV V W&W5W +HWSWfWvWW"WWWWWX-XCXSXhXxXX XXX XXXXY+Y:Y@YQY XYeY lYyY Y +YYYYY Y Y8YvZZZZZ Z ZZ Z![*[B[^[y[[[[[[[[\ \ '\ 5\ A\ O\]\f\o\ x\\\ \\ \ \\\!]'];](T]}]#] ] ]]] +] ] ]]^^2^ 7^ C^ +O^ Z^h^x^K^3^9_3;_7o_I_A_3`;`"`a ab bcd*"eBMffwgghh hh)h5hi1i0i0)j1Zj(jCjjSzk,k2k .lAOmAm*mmn optqrrkstuGuuv2wx x-'x +Ux`xsxxxxxxxxxx x +yy ,y :yDy]yfy ny{y +y<y zz zz +{{.{={R{l{|{{{{{{ {{| |$|)|2|3I|;}|;||}F~ ~~ ~  /PW_h3#0CSm ׀F0 +P +[f k y    !!߁  +KE0Q‚$R5wPG-FOtjĆo/ej~ppo`wЉ<H?>Ŋtty`OٌY0_č Ս6p4%ӎGX +UcO  )2: +C N Zd mw# ̑Ցۑ"+= OY ^ lz  +˒ & ,9@I hu +}   Փܓ +  . 7EKZy  + ʔؔ  (6 FSf|  Ǖ +֕   +#2N^pŖז    +$/ 5AVe ky  ʗ ԗ +ޗ +  ( .;AGMT[ck ~  Ƙ͘Ԙܘ +%0D S _ks{   Ǚ̙ҙ +%; [ hv| +  ɚ ך +     "/ @J R\c +it }  ě ˛ٛ   ! * 8F Uatz}   Ԝ '9)Ku}Ɲ41/Gw ŞҞ؞# "Cbiy" +џ %,4DVk + + + Ϡՠܠ + +'28AF[q ġ +ʡաݡ5 .8HMT \j!  ¢ + !%-28> E OY_fm'.֣qf <}pwm zb]' 56@~SMH# HL9 =_  =fzY?3V: >AL{I3}9&]Iq)$li =5xc)hYVkO*t(.k# h4, adeybWQbnGZ2 qg&X4D[!7R4uq!fX5+ `@p  21u)$70Le z`cT@"} 0,( %v~/KDGv?J[,Ng|cfFc B oDsR:r=F ! E2sPs3F ?<i9sVA4p1 LM)Trgb2 pu@ |my5 db!.< ?BIg"Alv} eu  yMJ aw  &c7 S'+# $D3* j^!PV_T\&d #SU, >/[ `m1 V-EG 8viT;. v.; 8 [f$>l~!Qany + /VEH6JQ]0_ '3?E]++  P8% ee 6 'X_jzL'$ ( ( 6O:@7ak#B,(3 xg| *6 oj4<_CT R< { lw e8A6~5BMJ4<xz0u oRg8,O(*Vy%''Kc>%@*M|? PB1XH-q +G>Dd s]zz01F#3fEN B;Fqu7|:"& /L(0Fs<Y/j!,q5yPf'r9+%N+ S{6?GOd<xBo(! +Ip.Ps9^wbthw,LDgSA`\bj/0Zv2Q?7n& \-k.Ca[{I|8.*E HMw\x6 '@3W^=1gIJ q4p>S}4K TR`1:.UK9 R~35Em) "7/ m<0 uPb;tHlXNjkrZ"\Og8^#|haE^>dvQt]JQ]~FO +=iCWX-G % +o )8G" hDwTG^Q-k] +L [K*vXdBhU]_lU1X7B<9 :PuRi -9C3kCa > Q'_r+9=Ks=i#Z +% b- C1 nB{@~N8W)Jo$Mw/W:~ UI &wt= 1$FM/ nIKn0@J-E )"/f22`Fl&;pG[{4 :r + P(o%Wy)O+V vIA  ;YH\\etlzM4Y_q >Uh;A*nO)xD^@,aSrKAUjCmd +\7y8{oZ# WQUcAZ5LD W}s  p["(jzGJ`Nt`C W S2 ? 2}imm|}H{rKKR _;c! +p#LA%Y-~H}N RH xnTye;IdUM n&[.V7 +Yj60hhFxJZ`kC$:Zx$C5meS|9a  O {Y&2.5*: X=^"6k>N luY",^fr TE% ioZt c* +\N-i?t$;D! Invalid option "%s" Usage: %s [option ... ] [file ... ] @@ -325,7 +332,7 @@ Make sure a proper setup for your display environment exists.GIMP help browserGIMP is not properly installed for the current user. User installation was skipped because the '--no-interface' flag was used. To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Generate optimum paletteGet Monitor ResolutionGiganticGimprc proceduresGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient:GradientsGradients MenuGrain extractGrain mergeGrayGrayscaleGreenGreen:GridGrid line spacingGrow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_counter-clockwise hue)HSV (clockwise _hue)HTML notation:H_eight:H_elp browser to use:Handle position: %0.6fHard edgeHard lightHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHelp proceduresHex:HighlightsHint for the _docks:Hint for the _toolbox:HintingHinting alters the font outline to produce a crisp bitmap at small sizesHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB color layers.Hue-_Saturation...Hue:HugeI_con & TextI_mageI_mport Path...I_nterpolation:I_nterval:IconIcon & descIcon & textIf available, hints from the font are used but you may prefer to always use the automatic hinterIf enabled, the move tool changes the active layer or path when a layer or path is being picked. This used to be the default behaviour in older versions.If you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.Illegal variable name in environment file %s: %sImageImage + GridImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage ThumbnailsImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage maskImage resolution is out of bounds, using the default resolution instead.Image sizeImage sourceImage typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport paletteImport pathsImported PathIn_kIn_vertIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorIndexed Color ConversionIndexed color layers are always scaled without interpolation. The chosen interpolation type will affect channels and masks only.Info WindowInitial zoom _ratio:Initialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' -InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratioKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine +InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine spacing:Line Width:Line _Style:Line style used for the grid.LinearLinked itemLoadLoad CurvesLoad LevelsLoad Right Color Fr_omLoad curves settings from fileLoad levels settings from fileLoad text from fileLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower Path to _BottomLower channelLower channel to bottomLower layerLower layer to bottomLower pathLower path to bottomM_agnifyM_asterM_ove to Screen...Ma_pMagentaMagenta:MagnifyMake _transparentManage Loadable ModulesMarching _ants speed:Mask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:Max Depth:Maximum _filesize for thumbnailing:Maximum _new image size:Maximum color differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMeasure the rulers and enter their lengths:Median:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMerge vectorsMessage proceduresMessage repeated %d times.Message repeated once.Messages are redirected to stderr.MidtonesMigrate User SettingsMinimal number of _undo levels:MiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMouse WheelMoveMove AnchorsMove ChannelMove Floating SelectionMove GuideMove Guide: Move LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove ToolMove itemMove layers & selectionsMove selectionMove the current layerMove the current pathMove the selected filter downMove the selected filter upMove to Screen...Move: MultiplyN_umber of colors:Na_vigationNa_vigation WindowNa_vigation preview size:NameName:NavigationNew ChannelNew Channel ColorNew Channel OptionsNew Color from _BGNew Color from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channelNew channel with last valuesNew channel...New color from BGNew color from FGNew gradientNew importNew layerNew layer with last valuesNew layer...New paletteNew path with last valuesNew path...New patternNew vectorsNo brushes available for use with this tool.No filter selectedNo linear gradients found in '%s'No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of _processors to use:Number of grid linesNumber of layers:O_ther...OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset by x/_2, y/2Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the palette selection dialogOpen the pattern selection dialogOpen the selected entryOpening '%s' failed: %sOpening '%s' failed: %sOptions: @@ -377,7 +384,7 @@ did not save indexed colormaps correctly. Substituting grayscale map.YYellowYellow:You are trying to create an image with a size of %s.You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your input device settings will be reset to default values the next time you start GIMP.Your keyboard shortcuts will be reset to default values the next time you start GIMP.Your window setup will be reset to default values the next time you start GIMP.Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_All_Anchor Layer_Antialiasing_Arbitrary Rotation..._Artistic_Aspect_Auto_B_BG Color_Background color:_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Bucket Fill_Buffer_By Color_By Color Select_C_Cap style:_Channels_Clear Errors_Clear Undo History_Clone_Close_Close Tab_Clouds_Color Tools_Colors_Configure Color and Opacity..._Context_Context Help_Copy_Copy Named..._Create Image from Template..._Crop & Resize_Crop Image_Curved_Curves..._Dark Check Color_Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Desaturate_Detach Tab_Device Status_Dialogs_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Ellipse Select_Enable layer & channel previews_Enormous_Equalize_Eraser_FG Color_File_Fill with:_Fit Image in Window_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground color:_Free Select_G_Generic_Gigantic_Gradient_Gradients_Grayscale_Grayscale copy of layer_Grow..._Guides_Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Info Window_Intersect with Selection_Invert_Join style:_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Left Neighbor's Right Endpoint_Levels..._Light Check Color_Light Effects_Lightness:_Line Style_Linear_Linked_Load Left Color From_Lower Channel_Lower Layer_Lower Path_M_Manually_Map_Mask_Mask to Selection_Maximum number of colors:_Measure_Medium_Merge Palettes..._Merge imported paths_Migrate GIMP 2.0 user settings_Misc. Stuff_Miter limit:_Mode_Module Manager_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._Padding Color_Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preferences_Preview_Preview Size_Previous tip_Print Size..._Properties_Quick Mask Active_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Reassign shortcut_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Remove unused colors from final palette_Render_Replace_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Order & Visibility_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Right Endpoint_Right Neighbor's Left Endpoint_Rotate_Saturation:_Save_Save Left Color To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Scale imported paths to fit image_Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Show Image Selection_Show in Toolbox_Sinusoidal_Small_Smudge_Snap distance:_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tool_Tools_Transfer layer's alpha channel_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Visible_Web_Web browser to use:_White (full opacity)_White Balance_Width:_Wrap around_X resolution:_X:_Xtns_Y_Y resolution:_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for icon typeinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetermillimetersminuten/apercentpicapicaspixelpixelspixels/%apixels/%spointpointssecondtips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: GIMP 1.1.24 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-19 03:11+0100 +POT-Creation-Date: 2004-12-28 16:58+0100 PO-Revision-Date: 2004-11-21 22:54+0100 Last-Translator: David Lodge Language-Team: English, British @@ -428,7 +435,7 @@ Make sure a proper setup for your display environment exists.GIMP help browserGIMP is not properly installed for the current user. User installation was skipped because the '--no-interface' flag was used. To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colours allocated for the GIMP.Generate optimum paletteGet Monitor ResolutionGiganticGimprc proceduresGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColourGradient Segment's Right Endpoint ColourGradient UIGradient:GradientsGradients MenuGrain extractGrain mergeGreyGreyscaleGreenGreen:GridGrid line spacingGrow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_anti-clockwise hue)HSV (clockwise _hue)HTML notation:H_eight:H_elp browser to use:Handle position: %0.6fHard edgeHard lightHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHelp proceduresHex:HighlightsHint for the _docks:Hint for the _toolbox:HintingHinting alters the font outline to produce a crisp bitmap at small sizesHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB colour layers.Hue-_Saturation...Hue:HugeI_con & TextI_mageI_mport Path...I_nterpolation:I_nterval:IconIcon & descIcon & textIf available, hints from the font are used but you may prefer to always use the automatic hinterIf enabled, the move tool changes the active layer or path when a layer or path is being picked. This used to be the default behaviour in older versions.If you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.Illegal variable name in environment file %s: %sImageImage + GridImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage ThumbnailsImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage maskImage resolution is out of bounds, using the default resolution instead.Image sizeImage sourceImage typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport paletteImport pathsImported PathIn_kIn_vertIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColourIndexed Colour ConversionIndexed colour layers are always scaled without interpolation. The chosen interpolation type will affect channels and masks only.Info WindowInitial zoom _ratio:Initialise Layer Mask to:Initialising Plug-insInitialising plug-in: '%s' -InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colourmap; might be useful on 8-bit (256 colours) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratioKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard ShortcutsLTRL_eft Endpoint's Colour...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColourLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colourLighten onlyLineLine +InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colourmap; might be useful on 8-bit (256 colours) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard ShortcutsLTRL_eft Endpoint's Colour...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColourLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colourLighten onlyLineLine spacing:Line Width:Line _Style:Line style used for the grid.LinearLinked itemLoadLoad CurvesLoad LevelsLoad Right Colour Fr_omLoad curves settings from fileLoad levels settings from fileLoad text from fileLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower Path to _BottomLower channelLower channel to bottomLower layerLower layer to bottomLower pathLower path to bottomM_agnifyM_asterM_ove to Screen...Ma_pMagentaMagenta:MagnifyMake _transparentManage Loadable ModulesMarching _ants speed:Mask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:Max Depth:Maximum _filesize for thumbnailing:Maximum _new image size:Maximum colour differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMeasure the rulers and enter their lengths:Median:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMerge vectorsMessage proceduresMessage repeated %d times.Message repeated once.Messages are redirected to stderr.MidtonesMigrate User SettingsMinimal number of _undo levels:MiscellaneousMitreModeMode:Modify Selected ColourModify Selected Range's Colour LevelsModify all coloursModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMouse WheelMoveMove AnchorsMove ChannelMove Floating SelectionMove GuideMove Guide: Move LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove ToolMove itemMove layers & selectionsMove selectionMove the current layerMove the current pathMove the selected filter downMove the selected filter upMove to Screen...Move: MultiplyN_umber of colours:Na_vigationNa_vigation WindowNa_vigation preview size:NameName:NavigationNew ChannelNew Channel ColourNew Channel OptionsNew Colour from _BGNew Colour from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channelNew channel with last valuesNew channel...New colour from BGNew colour from FGNew gradientNew importNew layerNew layer with last valuesNew layer...New paletteNew path with last valuesNew path...New patternNew vectorsNo brushes available for use with this tool.No filter selectedNo linear gradients found in '%s'No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of _processors to use:Number of grid linesNumber of layers:O_ther...OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset by x/_2, y/2Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogueOpen the brush selection dialogueOpen the font selection dialogueOpen the gradient selection dialogueOpen the palette selection dialogueOpen the pattern selection dialogueOpen the selected entryOpening '%s' failed: %sOpening '%s' failed: %sOptions: diff -uraN gimp-2.2.0/po/en_GB.po gimp-2.2.1/po/en_GB.po --- gimp-2.2.0/po/en_GB.po 2004-12-19 03:11:22.000000000 +0100 +++ gimp-2.2.1/po/en_GB.po 2004-12-28 16:58:28.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: GIMP 1.1.24\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-19 03:11+0100\n" +"POT-Creation-Date: 2004-12-28 16:58+0100\n" "PO-Revision-Date: 2004-11-21 22:54+0100\n" "Last-Translator: David Lodge \n" "Language-Team: English, British\n" @@ -1027,11 +1027,11 @@ msgid "Remove dangling entries" msgstr "Remove dangling entries" -#: app/actions/documents-commands.c:252 app/actions/file-commands.c:163 +#: app/actions/documents-commands.c:251 app/actions/file-commands.c:163 #: app/dialogs/file-open-dialog.c:198 app/dialogs/file-open-dialog.c:249 #: app/dialogs/file-open-location-dialog.c:193 -#: app/display/gimpdisplayshell-dnd.c:332 app/widgets/gimplayertreeview.c:802 -#: app/widgets/gimptoolbox-dnd.c:123 +#: app/display/gimpdisplayshell-dnd.c:334 app/widgets/gimplayertreeview.c:804 +#: app/widgets/gimptoolbox-dnd.c:125 #, c-format msgid "" "Opening '%s' failed:\n" @@ -1540,115 +1540,115 @@ msgid "Zoom all" msgstr "Zoom all" -#: app/actions/gradient-editor-actions.c:582 +#: app/actions/gradient-editor-actions.c:589 msgid "_Blending Function for Segment" msgstr "_Blending Function for Segment" -#: app/actions/gradient-editor-actions.c:584 +#: app/actions/gradient-editor-actions.c:591 msgid "Coloring _Type for Segment" msgstr "Colouring _Type for Segment" -#: app/actions/gradient-editor-actions.c:587 +#: app/actions/gradient-editor-actions.c:594 msgid "_Flip Segment" msgstr "_Flip Segment" -#: app/actions/gradient-editor-actions.c:589 +#: app/actions/gradient-editor-actions.c:596 msgid "_Replicate Segment..." msgstr "_Replicate Segment..." -#: app/actions/gradient-editor-actions.c:591 +#: app/actions/gradient-editor-actions.c:598 msgid "Split Segment at _Midpoint" msgstr "Split Segment at _Midpoint" -#: app/actions/gradient-editor-actions.c:593 +#: app/actions/gradient-editor-actions.c:600 msgid "Split Segment _Uniformly..." msgstr "Split Segment _Uniformly..." -#: app/actions/gradient-editor-actions.c:595 +#: app/actions/gradient-editor-actions.c:602 msgid "_Delete Segment" msgstr "_Delete Segment" -#: app/actions/gradient-editor-actions.c:597 +#: app/actions/gradient-editor-actions.c:604 msgid "Re-_center Segment's Midpoint" msgstr "Re-_centre Segment's Midpoint" -#: app/actions/gradient-editor-actions.c:599 +#: app/actions/gradient-editor-actions.c:606 msgid "Re-distribute _Handles in Segment" msgstr "Re-distribute _Handles in Segment" -#: app/actions/gradient-editor-actions.c:604 +#: app/actions/gradient-editor-actions.c:611 msgid "_Blending Function for Selection" msgstr "_Blending Function for Selection" -#: app/actions/gradient-editor-actions.c:606 +#: app/actions/gradient-editor-actions.c:613 msgid "Coloring _Type for Selection" msgstr "Colouring Type for Selection" -#: app/actions/gradient-editor-actions.c:609 +#: app/actions/gradient-editor-actions.c:616 msgid "_Flip Selection" msgstr "_Flip Selection" -#: app/actions/gradient-editor-actions.c:611 +#: app/actions/gradient-editor-actions.c:618 msgid "_Replicate Selection..." msgstr "_Replicate Selection..." -#: app/actions/gradient-editor-actions.c:613 +#: app/actions/gradient-editor-actions.c:620 msgid "Split Segments at _Midpoints" msgstr "Split Segments at _Midpoints" -#: app/actions/gradient-editor-actions.c:615 +#: app/actions/gradient-editor-actions.c:622 msgid "Split Segments _Uniformly..." msgstr "Split Segments _Uniformly..." -#: app/actions/gradient-editor-actions.c:617 +#: app/actions/gradient-editor-actions.c:624 msgid "_Delete Selection" msgstr "_Delete Selection" -#: app/actions/gradient-editor-actions.c:619 +#: app/actions/gradient-editor-actions.c:626 msgid "Re-_center Midpoints in Selection" msgstr "Re-_centre Midpoints in Selection" -#: app/actions/gradient-editor-actions.c:621 +#: app/actions/gradient-editor-actions.c:628 msgid "Re-distribute _Handles in Selection" msgstr "Re-distribute _Handles in Selection" -#: app/actions/gradient-editor-commands.c:84 +#: app/actions/gradient-editor-commands.c:85 msgid "Left Endpoint Color" msgstr "Left Endpoint Colour" -#: app/actions/gradient-editor-commands.c:86 +#: app/actions/gradient-editor-commands.c:87 msgid "Gradient Segment's Left Endpoint Color" msgstr "Gradient Segment's Left Endpoint Colour" -#: app/actions/gradient-editor-commands.c:186 +#: app/actions/gradient-editor-commands.c:189 msgid "Right Endpoint Color" msgstr "Right Endpoint Colour" -#: app/actions/gradient-editor-commands.c:188 +#: app/actions/gradient-editor-commands.c:191 msgid "Gradient Segment's Right Endpoint Color" msgstr "Gradient Segment's Right Endpoint Colour" -#: app/actions/gradient-editor-commands.c:353 +#: app/actions/gradient-editor-commands.c:358 msgid "Replicate Segment" msgstr "Replicate Segment" -#: app/actions/gradient-editor-commands.c:354 +#: app/actions/gradient-editor-commands.c:359 msgid "Replicate Gradient Segment" msgstr "Replicate Gradient Segment" -#: app/actions/gradient-editor-commands.c:358 +#: app/actions/gradient-editor-commands.c:363 msgid "Replicate Selection" msgstr "Replicate Selection" -#: app/actions/gradient-editor-commands.c:359 +#: app/actions/gradient-editor-commands.c:364 msgid "Replicate Gradient Selection" msgstr "Replicate Gradient Selection" -#: app/actions/gradient-editor-commands.c:371 +#: app/actions/gradient-editor-commands.c:376 msgid "Replicate" msgstr "Replicate" -#: app/actions/gradient-editor-commands.c:386 +#: app/actions/gradient-editor-commands.c:391 msgid "" "Select the number of times\n" "to replicate the selected segment." @@ -1656,7 +1656,7 @@ "Select the number of times\n" "to replicate the selected segment." -#: app/actions/gradient-editor-commands.c:389 +#: app/actions/gradient-editor-commands.c:394 msgid "" "Select the number of times\n" "to replicate the selection." @@ -1664,27 +1664,27 @@ "Select the number of times\n" "to replicate the selection." -#: app/actions/gradient-editor-commands.c:444 +#: app/actions/gradient-editor-commands.c:452 msgid "Split Segment Uniformly" msgstr "Split Segment Uniformly" -#: app/actions/gradient-editor-commands.c:445 +#: app/actions/gradient-editor-commands.c:453 msgid "Split Gradient Segment Uniformly" msgstr "Split Gradient Segment Uniformly" -#: app/actions/gradient-editor-commands.c:449 +#: app/actions/gradient-editor-commands.c:457 msgid "Split Segments Uniformly" msgstr "Split Segments Uniformly" -#: app/actions/gradient-editor-commands.c:450 +#: app/actions/gradient-editor-commands.c:458 msgid "Split Gradient Segments Uniformly" msgstr "Split Gradient Segments Uniformly" -#: app/actions/gradient-editor-commands.c:462 +#: app/actions/gradient-editor-commands.c:470 msgid "Split" msgstr "Split" -#: app/actions/gradient-editor-commands.c:478 +#: app/actions/gradient-editor-commands.c:486 msgid "" "Select the number of uniform parts\n" "in which to split the selected segment." @@ -1692,7 +1692,7 @@ "Select the number of uniform parts\n" "in which to split the selected segment." -#: app/actions/gradient-editor-commands.c:481 +#: app/actions/gradient-editor-commands.c:489 msgid "" "Select the number of uniform parts\n" "in which to split the segments in the selection." @@ -2129,7 +2129,7 @@ #: app/actions/layers-commands.c:232 app/actions/layers-commands.c:234 #: app/actions/layers-commands.c:291 app/actions/layers-commands.c:295 -#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:840 +#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:842 msgid "New Layer" msgstr "New Layer" @@ -2141,7 +2141,7 @@ msgid "Set Layer Boundary Size" msgstr "Set Layer Boundary Size" -#: app/actions/layers-commands.c:512 app/core/gimplayer.c:255 +#: app/actions/layers-commands.c:512 app/core/gimplayer.c:253 msgid "Scale Layer" msgstr "Scale Layer" @@ -2153,7 +2153,7 @@ msgid "Layer Mask to Selection" msgstr "Layer Mask to Selection" -#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1085 +#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1066 #: app/dialogs/layer-add-mask-dialog.c:62 msgid "Add Layer Mask" msgstr "Add Layer Mask" @@ -2698,7 +2698,7 @@ msgstr "Open Text File (UTF-8)" #: app/actions/text-editor-commands.c:132 app/config/gimpconfig-utils.c:552 -#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:393 +#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:396 #: app/core/gimpbrushgenerated.c:601 app/core/gimpbrushpipe.c:338 #: app/core/gimpgradient-load.c:63 app/core/gimppalette.c:360 #: app/core/gimppattern.c:328 app/tools/gimpimagemaptool.c:608 @@ -4530,7 +4530,7 @@ msgid "FG to Transparent" msgstr "FG to Transparent" -#: app/core/gimp-gui.c:148 +#: app/core/gimp-gui.c:153 msgid "GIMP" msgstr "GIMP" @@ -4562,39 +4562,54 @@ msgid "Modules" msgstr "Modules" -#: app/core/gimpbrush.c:531 +#: app/core/gimpbrush.c:534 #, c-format msgid "Could not read %d bytes from '%s': %s" msgstr "Could not read %d bytes from '%s': %s" -#: app/core/gimpbrush.c:566 +#: app/core/gimpbrush.c:554 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Width = 0." +msgstr "Fatal parse error in brush file '%s': Unknown depth %d." + +#: app/core/gimpbrush.c:563 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Height = 0." +msgstr "Fatal parse error in brush file '%s': File is corrupt." + +#: app/core/gimpbrush.c:572 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Bytes = 0." +msgstr "Fatal parse error in brush file '%s': File is corrupt." + +#: app/core/gimpbrush.c:596 #, c-format msgid "Fatal parse error in brush file '%s': Unknown depth %d." msgstr "Fatal parse error in brush file '%s': Unknown depth %d." -#: app/core/gimpbrush.c:579 +#: app/core/gimpbrush.c:609 #, c-format msgid "Fatal parse error in brush file '%s': Unknown version %d." msgstr "Fatal parse error in brush file '%s': Unknown version %d." -#: app/core/gimpbrush.c:595 app/core/gimpbrush.c:715 +#: app/core/gimpbrush.c:625 app/core/gimpbrush.c:745 #, c-format msgid "Fatal parse error in brush file '%s': File appears truncated." msgstr "Fatal parse error in brush file '%s': File appears truncated." -#: app/core/gimpbrush.c:603 app/core/gimpbrushgenerated.c:648 +#: app/core/gimpbrush.c:633 app/core/gimpbrushgenerated.c:648 #: app/core/gimpbrushpipe.c:354 #, c-format msgid "Invalid UTF-8 string in brush file '%s'." msgstr "Invalid UTF-8 string in brush file '%s'." -#: app/core/gimpbrush.c:610 app/core/gimpcontext.c:1299 -#: app/core/gimpitem.c:479 app/core/gimppattern.c:400 +#: app/core/gimpbrush.c:640 app/core/gimpcontext.c:1299 +#: app/core/gimpitem.c:480 app/core/gimppattern.c:400 #: app/dialogs/template-options-dialog.c:80 app/tools/gimpvectortool.c:339 msgid "Unnamed" msgstr "Unnamed" -#: app/core/gimpbrush.c:704 +#: app/core/gimpbrush.c:734 #, c-format msgid "" "Fatal parse error in brush file '%s': Unsupported brush depth %d\n" @@ -4759,11 +4774,11 @@ "%s" #: app/core/gimpdatafactory.c:411 app/core/gimpdatafactory.c:414 -#: app/core/gimpitem.c:274 app/core/gimpitem.c:277 +#: app/core/gimpitem.c:275 app/core/gimpitem.c:278 msgid "copy" msgstr "copy" -#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:286 +#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:287 #, c-format msgid "%s copy" msgstr "%s copy" @@ -4826,7 +4841,7 @@ msgid "Rotate" msgstr "Rotate" -#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:259 +#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:257 msgid "Transform Layer" msgstr "Transform Layer" @@ -5183,7 +5198,7 @@ #. pixel size #: app/core/gimpimagefile.c:624 app/dialogs/info-window.c:552 -#: app/widgets/gimpsizebox.c:552 app/widgets/gimptemplateeditor.c:637 +#: app/widgets/gimpsizebox.c:429 app/widgets/gimptemplateeditor.c:637 #: app/widgets/gimptemplateeditor.c:673 #, c-format msgid "%d x %d pixels" @@ -5203,15 +5218,15 @@ msgid "Could not open thumbnail '%s': %s" msgstr "Could not open thumbnail '%s': %s" -#: app/core/gimpitem.c:1096 +#: app/core/gimpitem.c:1103 msgid "Attach Parasite" msgstr "Attach Parasite" -#: app/core/gimpitem.c:1106 +#: app/core/gimpitem.c:1113 msgid "Attach Parasite to Item" msgstr "Attach Parasite to Item" -#: app/core/gimpitem.c:1145 app/core/gimpitem.c:1152 +#: app/core/gimpitem.c:1152 app/core/gimpitem.c:1159 msgid "Remove Parasite from Item" msgstr "Remove Parasite from Item" @@ -5239,37 +5254,37 @@ msgid "Floating Selection to Layer" msgstr "Floating Selection to Layer" -#: app/core/gimplayer.c:252 app/pdb/internal_procs.c:152 +#: app/core/gimplayer.c:250 app/pdb/internal_procs.c:152 msgid "Layer" msgstr "Layer" -#: app/core/gimplayer.c:253 +#: app/core/gimplayer.c:251 msgid "Rename Layer" msgstr "Rename Layer" -#: app/core/gimplayer.c:254 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 +#: app/core/gimplayer.c:252 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 msgid "Move Layer" msgstr "Move Layer" -#: app/core/gimplayer.c:256 +#: app/core/gimplayer.c:254 msgid "Resize Layer" msgstr "Resize Layer" -#: app/core/gimplayer.c:257 +#: app/core/gimplayer.c:255 msgid "Flip Layer" msgstr "Flip Layer" -#: app/core/gimplayer.c:258 +#: app/core/gimplayer.c:256 msgid "Rotate Layer" msgstr "Rotate Layer" -#: app/core/gimplayer.c:341 app/core/gimplayer.c:1129 +#: app/core/gimplayer.c:339 app/core/gimplayer.c:1110 #: app/core/gimplayermask.c:236 #, c-format msgid "%s mask" msgstr "%s mask" -#: app/core/gimplayer.c:387 +#: app/core/gimplayer.c:385 #, c-format msgid "" "Floating Selection\n" @@ -5278,39 +5293,39 @@ "Floating Selection\n" "(%s)" -#: app/core/gimplayer.c:1055 +#: app/core/gimplayer.c:1036 msgid "Cannot add layer mask to layer which is not part of an image." msgstr "Cannot add layer mask to layer which is not part of an image." -#: app/core/gimplayer.c:1062 +#: app/core/gimplayer.c:1043 msgid "Unable to add a layer mask since the layer already has one." msgstr "Unable to add a layer mask since the layer already has one." -#: app/core/gimplayer.c:1069 +#: app/core/gimplayer.c:1050 msgid "Cannot add layer mask to a layer with no alpha channel." msgstr "Cannot add layer mask to a layer with no alpha channel." -#: app/core/gimplayer.c:1079 +#: app/core/gimplayer.c:1060 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "Cannot add layer mask of different dimensions than specified layer." -#: app/core/gimplayer.c:1183 +#: app/core/gimplayer.c:1164 msgid "Transfer Alpha to Mask" msgstr "Transfer Alpha to Mask" -#: app/core/gimplayer.c:1343 +#: app/core/gimplayer.c:1324 msgid "Apply Layer Mask" msgstr "Apply Layer Mask" -#: app/core/gimplayer.c:1344 +#: app/core/gimplayer.c:1325 msgid "Delete Layer Mask" msgstr "Delete Layer Mask" -#: app/core/gimplayer.c:1445 +#: app/core/gimplayer.c:1426 msgid "Add Alpha Channel" msgstr "Add Alpha Channel" -#: app/core/gimplayer.c:1467 +#: app/core/gimplayer.c:1448 msgid "Layer to Image Size" msgstr "Layer to Image Size" @@ -6757,28 +6772,28 @@ msgstr "Print Size" #. the image size labels -#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:241 +#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:222 #: app/widgets/gimptemplateeditor.c:236 msgid "_Width:" msgstr "_Width:" -#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:248 +#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:225 #: app/widgets/gimptemplateeditor.c:243 msgid "H_eight:" msgstr "H_eight:" #. the resolution labels -#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:338 +#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:273 #: app/widgets/gimptemplateeditor.c:363 msgid "_X resolution:" msgstr "_X resolution:" -#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:345 +#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:276 #: app/widgets/gimptemplateeditor.c:370 msgid "_Y resolution:" msgstr "_Y resolution:" -#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:357 +#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:269 #: app/widgets/gimptemplateeditor.c:383 #, c-format msgid "pixels/%a" @@ -7395,11 +7410,11 @@ msgid "%d minutes" msgstr "%d minutes" -#: app/display/gimpdisplayshell-dnd.c:96 +#: app/display/gimpdisplayshell-dnd.c:98 msgid "Drop New Layer" msgstr "Drop New Layer" -#: app/display/gimpdisplayshell-dnd.c:140 +#: app/display/gimpdisplayshell-dnd.c:142 msgid "Drop New Path" msgstr "Drop New Path" @@ -8858,12 +8873,12 @@ msgstr "_Paintbrush" #: app/tools/gimppaintoptions-gui.c:103 app/widgets/gimpbrushselect.c:201 -#: app/widgets/gimplayertreeview.c:330 +#: app/widgets/gimplayertreeview.c:332 msgid "Opacity:" msgstr "Opacity:" #: app/tools/gimppaintoptions-gui.c:108 app/tools/gimpselectionoptions.c:374 -#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:323 +#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:325 msgid "Mode:" msgstr "Mode:" @@ -10263,24 +10278,24 @@ msgid "Set Item Exclusive Linked" msgstr "Set Item Exclusive Linked" -#: app/widgets/gimplayertreeview.c:250 +#: app/widgets/gimplayertreeview.c:252 msgid "Reorder Layer" msgstr "Reorder Layer" -#: app/widgets/gimplayertreeview.c:311 +#: app/widgets/gimplayertreeview.c:313 msgid "Keep transparency" msgstr "Keep transparency" -#: app/widgets/gimplayertreeview.c:846 +#: app/widgets/gimplayertreeview.c:848 msgid "Empty Layer" msgstr "Empty Layer" -#: app/widgets/gimpmessagebox.c:458 +#: app/widgets/gimpmessagebox.c:460 #, c-format msgid "Message repeated %d times." msgstr "Message repeated %d times." -#: app/widgets/gimpmessagebox.c:460 +#: app/widgets/gimpmessagebox.c:462 msgid "Message repeated once." msgstr "Message repeated once." @@ -10312,16 +10327,12 @@ msgid "Invalid UTF-8" msgstr "Invalid UTF-8" -#: app/widgets/gimpsizebox.c:290 -msgid "Keep aspect ratio" -msgstr "Keep aspect ratio" - -#: app/widgets/gimpsizebox.c:574 +#: app/widgets/gimpsizebox.c:451 #, c-format msgid "%d x %d dpi" msgstr "%d x %d dpi" -#: app/widgets/gimpsizebox.c:578 +#: app/widgets/gimpsizebox.c:455 #, c-format msgid "%d dpi" msgstr "%d dpi" @@ -10764,6 +10775,9 @@ msgid "Image Editor" msgstr "Image Editor" +#~ msgid "Keep aspect ratio" +#~ msgstr "Keep aspect ratio" + #~ msgid "Y:" #~ msgstr "Y:" diff -uraN gimp-2.2.0/po/es.gmo gimp-2.2.1/po/es.gmo --- gimp-2.2.0/po/es.gmo 2004-12-19 03:11:53.000000000 +0100 +++ gimp-2.2.1/po/es.gmo 2004-12-28 16:58:42.000000000 +0100 @@ -1,236 +1,233 @@ -N Jm &kGZ9GA$Nfi<k\@2 ;<PxO29L-9;7* bl -s ~ - -  - - -6Pf0m -  ) 5 -C -N Y fr  K.1! &5<Xg~ -  - , -5@Obz*6%8Umv#7#Ko - * 7AQ1f3 - - 2BASJ< 0 >L\u + <Jb -kv&$ & 0>E^ek"  -7/g m z   mS X f t~  C7=R@6dm3<#&!Jl  6HZw, *8 X y!  $1ELS Ygz .557G8),+C2` OA;%}&41#1 Uc   -  &?Q0c  +EXkt   - $)> [|"% 4BR [go  ;Tt "" - -;)Fp,!##!;%].  /#E-i%/G LZ -t - - %4 ;I -\g-n  (9L\o  %! 5BU&m   $ 3@ P]o ~ - -# -.-9 gs z  -  3 FTn w :?8; t  - -   - ) 5 -? JV _l >  2BTcu  ';Q ak~ - - & <I ^k{ -*!!C.Z#"&1X nz,#  '9a'~FTV   &0 -G R` }  &(/$X}=6<?5Au79c)9B= -fH>CJ2g}  !6;M ] gs   (;Mdt &=Qe y -   -    -'C KWg w( + 1 8  @ M U [  -a Ol   -  n - - - +M Jm &kGJ9GANVi<kL@2;,PhO2 9<-v9;7 R\ +c n +x +  + + +&@V0] +  % +3 +> I Vb r ~ K.z1!%,HWnr +  +   +%0?Rj|*6(E]f'#;_y +   '1A1V3 +| +"2ACJ< .<Le}   ,:R +[fw&$   .5NU[u"}  + 7W ] jx   mC H V dnw  C7 +=B@6d]{3<#!:\y  &8Jg, ( H i!w  !5<C IWj y.55778o),32P OA+%m&41#! ES o { +  /A0S  + 5H[d t  + $ +. Kl" $2B KW_ +Dd y"" + ++)6`,z!##!+%Ms.  #5-Y% +7 <J +d +o +z $ +9 +LW-^  )<L_v  %! %2E&]    #0 @M_ nz + +-) Wc jx  + # 6D^ gq :?8+ dpy  + +  +  % +/ :F O\p > "2DSe  +A Q[n + +  ,9 N[k +*!3.Jy#"&!H ^j~,# ')Q'nFTF    +7 BP m  ($Hm=s6<?%Ae79c9}B=f8>CJ"gm  &+= M Wc u  +=Tdx-AU iw +   +   + 3 ;GW gu( ! (  0 = E K  +Q O\   +  ^ +o + +  - - - - - -. -, ? R  -a  l  z           " u1    cL z8>rF,A&R'y        *9KQiz~  -$ -7>F K Xd -H -3 >HX -`Hk!B1,^qv { -  `8C10Hy   - -+ C(Q -z -H -  -  -:Pe t       # 1 >KL36"( KUm $   (?+h)*! /MTc*t' -0;K]s  ;LUd}   ( < !T v        !-!-5 -d5 o5y5555 -55 55 55 6 66%686 M6 Y6 e6s6&6,6 666 -7 -7767T7s7774777 -788 - 8 +888G8 P8^8f8m8 88 8!88 88 99)9D9 T9^9o9 999?9999::5:R:4:);2;-:; h<r<{< -< <#<<-< ==&= ;=E=M=d=m= -v= ==3>G>[> d>q>z>>>> -> ->>> -> > ???3? D? N?!X?z? ~??? ? ???? ?@@ ,@8@ -K@V@h@ {@@ @@ -@@@@AA A!+AMA!kA#AA A -A9AUB=oB<B=B"(C?KCCC CCCC(C,CD.D@DQD -bDmDDDJD DEE,E FE SE`E{E E EEEEE; FGFaF pF }FFF F FF F F FGG ,G6GQGnGGGGGGGG -HH1H+HHtHHHH H H HH H II#*I NIZI lIxIII6IIJJJ 4J7AJyJJJJJJJ J KK*K >KKK iKuKKK -K -KK KKK KK -KL -L L+L -BLMLmL LLLLL LMM/M?MSM4hMMMMMNN%N.?NEnNN N NN N OO/O 5O CO OO -[OfO wO -OOO OOOOONP -PPPP Q QQ1QMQcQ#}QQQ QQQ R#R#=RaRR RRRRR$S'SFS [SeSuSSS!SSS T -TT2T BTOTnTTTTT TTUU3URUiU UUU UUUUUV*VAV -SV^VnV"VVV VVVW2WKW=[W6WSWJ$XoXXX XXXXXYY5Y GYSYbYwYY YYYY YYZ,ZGZaZ|ZZ ZZZZZZ["[)[N\P\Kd]=]]*r^^B_3_T`?n```2aBaatc4wd/dd eeeeeeeeefff0fCf`f uf ff;ff ffg gg 3gAgQg#eg gg g g&gg -h hh.hHh"Zh}hhhhhhh i i0i?i Pi]ivi iiiii+iii j jj $j1j Aj -OjZj`jgjoj xj j8jvjAkHk`kxk k kk k!kkkl1lJlgllllllll l l l mmm&m /mftt`z017>Pe v6o-/64>#sG`XUOWǡСء -   #0T \jsyǢ٢    -7?E HRe  ƣӣڣ  !2 5 A KYmt -{ ä ̤ڤ ) -1<N ^l{   ɥ ٥1 B NZir   -æߦ+DUg w    ħЧ %, ?LO X b -l -w  ɨϨըۨ  %? GT[bj -ѩ   - :F ISX^qƪ  $ -, 7D T b -p {     ˫ի ݫ -  , 9EN Ucsz     ¬Ь ߬  # 0 <I^ q~í(խ%=O4i1/Ю&F N[au# ˯"4 -<GYjqz ̰ް -  - -"- 3AGW]d - -ɱα ,069HL -R]di5m ϲԲ۲ ! ( Ij - ų ̳ ֳ .DNa(˵zZo:ʶXO^U|HyʸND7U˹\!W~9ֺC/TA<ƻCGP -Wb -k v  -¼ռ    1R h7r ս  # * 8 -F Q _ i s - -  ˾dھ?Fֿ;"Y|/@ Qr0Kj/=D[z   8Yw+ $%8A -T_ dBJH   # -+6OixCCO3  " ) ;#Hl 'EW0l+&-'4\,e  - 3!U\n -~   -  Y#C}NA;Rz' !1>SS%.'#V#z ##:^#z'( 1(2Z!(3Qex.CW:wAJA?;50 $!Eg=#(*N%'?G:$'# 9!Fh   1:F  #%%1.`s   -  72?r""*!%2!Xz2$0 D N\e (2 AK&^''!(%N fs* -7 9/!i;-/-%+S1I0Jav&6%.C"a+ 0#C -g -r}  1?8F 3EVew &9.+h A.F Vd}   - 0 >J \} #  9 Tai   - !)2J^u - -)N_Q8  - -2=Q Y!c  . 8FcxP%#6F Vd#u  -))C%m + '8` q)1C ^   5$3XCq= -*-)W%u3 0+Cot/;$$9I(%'+e&y !8*Oz " ,,DYn    -(( QZ[Sc -]ncT0QWlhR-Z\\i#+!3Ul|$ Ed  %$Fk%/DY jw / /A  q  }        -% -,> -k -p -x - - - - - -_ -? U \  , K ^  t     7    2 ; N a t |  "     -"&I\ tx'! -  *?]:t8 - + + + + + +. + / B  +Q  \  j  v           u!   v c< z(.r6 1&B'i       );AYjn  +  '.6 ; HTo +H +# .8H +PH[!B  1Naf kx +  `(C108i o | + + 3(A +j +uH +  +  *@U d q       ! .K<36" ;E]q $   (/+X)*!/ =DS*d' + +;Qas *3B[n    !2 T p         !-!H"Q"d"h" """" ""3"" #!#1# I# +V# a# m#z#####$$ *$8$O$ V$b$w$$$@$$-$% *%7% <% J% V%c%% %% % %%%%&& .& 8& D&P& g&u&& && +&&& & ' $'0' +F'Q'f'o'w'''''''' '' ("( +*(#5(Y(r((((((+()) $) 2) +>) I) V)d)y)))) )) ))*,*"C*f*o** *****$**+%+4+ C+O+ W+ e+q+ v+ ++ ++ + +++ +++ , ,,1,@,W,m,,,,,, ,,,-- + - +-7-I-]-p- - --- - - ---.. $. +1. <.F. a. n.z. . . .,..!././E/)b/ // / ///// / 00B$0Ag0000 0001 1+1=1R1Z1b111222 +2)2 =2K2b2 t2222"2!2!393Q3j3 3 3 3333 33V3+44 `4(j44"44 4 445%5 +B5 M5W5_5n55 +55 55 55 5 5566 +6 76 C6Q6&k6,6 666 +6 +66727Q7i7|74777 +777 +7 88%8 .8<8D8K8 h8t8 8!88 88 889"9 29<9M9 _9l9s9?{999999:0:4:;;-; F<P<Y< +i< t<#~<<-< <<= =#=+=B=K= +T= _=k=>%>9> B>O>X>`>f>|> +> +>>> +> > >>>? "? ,?!6?X? \?j?~? ? ???? ??? +@@ +)@4@F@ Y@g@ |@@ +@@@@@@ @! A+A!IA#kAA A +A9AUA=MB<B=B"C?)CiC{C CCCC(C,CC DD/D +@DKDaDvDJD DDD +E $E 1E>EYE sE EEEEE;E%F?F NF [FgFF F FF F F FFF +GG/GLG^GrGGGGGGGGH+&HRHjHHH H H HH H HH#I ,I8I JIVIkII6IIIII J7JWJuJJJJJJ J JJK K)K GKSKhKnK +uK +KK KKK KK +KKK K L + L+LKL hLtLLLL LLL MM1M4FM{MMMMMMN.NELNN N NN N NN O O !O -O +9ODO UO +aOlO{O OOOOONmP +PPPPP PPQ+QAQ#[QQQ QQQQR#R?R]R qR~RRRR$RS$S 9SCSSSmSS!SSSS +SST T-TLTgT~TTT TTTTU0UGU `UnUU UUUUUUVV +1Vf Sf _flf;uff fff ff gg/g#Cg ggtg g g&gg +ggg h&h"8h[hshhhhhhhhii .i;iTi hitiyiii+iiii ii jj j +-j8j>jEjMj Vj bj8ojvjk&k>kVk ^k kkwk }k!kkkkl(lElblilxlllll l l l lllm mm*m 9mEm Vm bmnmm!mmm(mn#n ?n MnZnan +gn rn nnnnn +n n +n nn oKo1ao7o1o5oH3pA|pp;Iq!qq irr qs~t}'u*uBvwwxxy $y2y)9y5cyy1Iz0{z0z1z({C8{|{S{,Q|2~| |A}A~*V~~- (FG2zc2S - +؈$3<BTg   lj  +< LZ q{Ջ"1K[ jw +3ˌ;;;wF  gq v  ҏُ(3A#uĐԐ"( /;XaFj +ё +ܑ     " 0!>!`  +Kƒ0QC.$є5P,G}-ŕOjCoej~pnoߙwO<ǚ?>Dtt`mΜX؝0ޝ.C Tb6do  4#QuG>XUߠO5 + ʡ ֡ #2 :HQWfmv ɢӢ آ  # &0C^ }      )7KR +Yd ly ͤ  +, <JY iw   ĥץ  ,8GP j t +̦ަ "3E U v   çҧ ا + *- 6 @ +J +U`y  ǨϨר   %29@Hbq +  ʩ֩ީ  $ '16<Ojs{ Ī Ѫߪ -);NSdjq&y #:^|  $Ebz #o A -MX n -x[/gw|9 #/ 5 B~PG2:JQbs*2 @%^*cK `n }#2 9C Yen[$s% ) A T af S <!Y!u!$!! !!! "$"3"K"c",s"("6"9#5:#7p#+#!#8#/$8$J$.^$$$&$$$ %$%;%O%h%}%%%% %%%&%&%A&g&&&&&&&('#F'j' '''''''!"(D( \(h(z((($(( )g!)***#***** -++C+b+w++++++,,'4,.\,(,,,,,--#-!2-T-t--V--9-/. K.Y.`.u..*.... .. /2%/6X/// / /// 0!0=0 V0&d0 000 0'0 -1&1 >1L1i1 -o1z111111!1*12$(2#M2q2y2/2$2223&3,3L33l333333334+4G4g44444445#+5 O5 \5)}5 55555756%86^6s66666666677 '757 Q7_7s7777777(8)/8Y8p8 x88 88*888 8 99%9>9Z9 w9 -9 -999 9 9$99:):E:U: -h:#s: : :#: : :::;"=;/`;;!;$;1;'<9<W< f<r<z<<<<<<W<\<== == = ==> !>/>L> c> m>y>&?7?K? T?^? d?q??????(?-%@+S@(@)@@$@$A -:A EA OAYA kAyAAAvA=B PB6ZBB6B)BB C C@C.`CCCCCCCCC D"D*D;D -UD`DsDyDD D DDD.D,E CEOETEiE|E E'EEEF(F9:FtFFFFFFFFFF GG!G -ʊӊ "8N]e l -vF -͌-/6 f!"Ǎ" ,5E KU"qю  &6 GSe w$*ŏ',9E  ΐܐ - *"Adjz ‘Qʑ:@W9<Ғ[_k˓Lj!ٔ'ו 7 D xm(%n27I*O<z;2Ο466/mNk:H(qeddFɤ ե0ũLFUYi -p>{# -ް,1Qpx - ٱ 0Hav  ߲ y   Դ 1:l}!׵  ,<AJEeGH<Q[g -ùι׹ )5 _ -i -t&(&ϺI#@!d%ۻ+18$H mwY.ڼ -  !'9IZ iw-0  8`?Iva;?X-how_nFoAzT5WW:ptx->4s{#KA 7-DL|lkgU2   - 2 HV_ hv2  - 7Vf|    %0&V} - ):X`hw~% '&@T -]h   - &9Xi| - -   $"6Yj6 F -R] mw"$   '5GY -\ g -s ~%   -  +5 IVo  ) #/L \j     +2;P3k#   &6H -Yd s     +5G_go v    ,9RY\a h v!  5H+\  " \BpK)8b iw>-(GPf4w  ##5 Y eo%'  + -2 =G Y f$t     - % 8BWgkqt I.FNW`p-),(  -5 @LS -Wbgmt } 9F*rg <}qwn {b](  56ASMH$ IM: =`! >g{Z@4W; ?BM|J3~9']Jr*$li =6yc*iZVkO*u).k# h5- bdfzcWQboG Z3 rh &Y5E\"8R4uq"fY6+!aAq 31v)%70Me {`dU@#} 0-) &w /KDHw@J[,Nh}cgFd C oDtS:s>G! E2sQs4G ?<j:sWA4p1 -LM*Urgc3puA |ny6 dc".= @BJg"Bmv} eu  yN K bx  'd8 T(,$ %D4+ k_!QV_U]'d #TU, ? /[ - am1 V.FH 9viT</ v/< 9 \g$?m~!Ranz  0WFH7JQ]1` '4@F^,,  P9& ff 7 (X_k{L (% ) ( 7P:A8bl$B-(4 yg} +6 ok4=`CTS= | mx f9 A66CNK5=yz1v pSg9-P)+Wy&((Lc>&@*N}@ QC2XH.r G?Ee! s^zz12G$3fEN -C<Gqu7};"' 0L(0Gt=Y/j!,q6zPf'r:,%O+ T{7?HOe<xCo)" -Jq/Qt:_xbthw-LDhSBa] cj00[w2R?8o& ].l/Db\{J|8.+F!IMw\x6 '@4X_=2hIK q4q>S~5L TR`2:.VK9!R35Fm* #70 m=1 vPb;uHlYOjls["\Ph8^#|hbE_>evRt^KQ^~GP >jDXY.H & p *8G# hExUH^R-k] -M \L*wYeBiV^_lU2X7B<: ;QvSj --9C3lCa ? Q'`s,:=Kt>i$Z +% c. C2 nC|@~N9X*Kp%Mx0W;~ UJ 'wu> 1$FN0 oIKn1AJ -F )#/g32aFm&<pH\{5 ;r P(p%Xz)P+W wIB  ;YI]]ftmzN5Z_r>Ui <B+oO)xE_A,aTrLAVjDn e -\8y8|pZ$!XRVdA[5ME W~t  p[#)k{GK`Nt`D W T3 @ 3~jmn|}I|sLLS `;c" q#MB&Z-I~O RI yoUze;IdVN n&[/V8 ,Yk71iiFyJZalD%;[x%D5neS}9a  -O {Z'2/6+: X>^#7k?O lvY"-^fs TE% -io[u d* -\O.j?u$<E" + " 2 @ +N Y g t ~   ū̫ +ҫݫ  + #, 3AQX a n |   ɬܬ   '< O\bk|(ܭ-4G1|/ޮ$ ,9?S#d ȯϯ߯" +%7HOXn Ѱ + + +  %5;B +bm~ +ױ  +&* +0;BG5K  ϲ!  'H +h s  ij˳ ҳ."N?(zҵZM:XO<U|H_yN"7qU\W\9C/2Ab<C%. +5@ +I T `l + ɼ ׼  0 F7P ʽ     +$ / = G Q +^i +  dF;"7Zpy  /P_n)Hd/="9Xx }  7Uq+ $ +2=]p ydB(Hk  + -GVCoCO a n{") #&Jew #50J+{& ':,C p} + 33:L`t} +~a f s +  YC[NA;0zl'!>1pS%.#4#X| ##<#X|'(128kq!(/CVipx !5:UAJA;_50 !#E=c#(N%'?%:e$' !$Fa hr  :$ _l #%1 >Qdt   +  72Pg"}"*!%!6Xk2$ " ,:C  )&<'c'!(, DQj*~ +7 9 !G;i-/-+11]I(?T&n6% !"?b}+#! +E +P[cy  8$ ]k#4CUo 9 +Fr A $ 4B[ s    ( :[ x#  9 2?G ^ ku + !(<Se~ + +)N_/8  + +/ 7!Acx  $AVPk%$ 4B#Sw )!%Kq +'> O]|)! <] r  5$6CO= +*-5%S3y 0+!MRfy/;$9'(a%'+eyj *-X p"} ,,"7Lbx ~   -( /Z9Sc]LcTQcWJhR ^Z\:i !3JZo$#Bb  $$Iiq%z "7 HUg /  O  [ h |       +, +I +N +V +_ +x + + + +_ + 3 :   + ) <  R ^ o   7      , ? R Z n "     "': tVj! + ;:R8 + +,1BHO&W~#<Zjs  #@X ]k#o  ++6 L +V[a/gUZ9k    ~.Gr2:(/@Qk{*2%<b*uc) >L [ex ! 7CLjs|9$Qv%  2 aD S < 7!S!$i!! !!! !$!")"A",Q"(~"6"9"5#7N#+#!#8# $$($.<$k$$&$$$ $%%-%F%^%r%% %%%%%% +&0&P&f&v&&&&(&#'3' M'['o'''''!' ( %(1(C(_(u($(((g(R*Z*r*#w*******C*++@+]+x++++++'+.%,(T,},,,,,,,!,-=-X-V_--9-- .".).>.T.*j.... ...2.6!/X/v/ / ////!/0 0&-0 T0b00 0'0 0&0 1121 +81C1[1a1i1r1w1!1*11$1#2:2B2/W2$2222223353i3r3z3333333404P4m4|44444#4 5 %5)F5 p5|5555755%6'6<6O6`6i6}6666666 66 7(7<7S7e7w7777(7)7"898 A8M8 b8o8*888 8 8889#9 @9 +M9 +X9c9z9 9 9$9999:: +1:#<: `: n:#{: : ::::";/);Y;!w;$;1;;< < /<;<C<]<d<u<<<W<\=b= |== = === ==> ,> 6>B>>?? ?'? -?:?Q?b????(?-?+@(H@)q@@$@$@ +A A A"A 4ABAJA\AvdA=A B6#BZB6aB)BB B B C.)CXC_ChCoCCCCCCCCD +D)D^JZ^$^ ^^"^_I_'Z____(_#_ ` ` )`7`N` ``m` +```````aa8aJa\a banavaa)aa;a*bAb#Qb-ub+b'bbcc=cWcpcDc1cd!d2@dsdd d?dSeVehe{e&eeee e ff/f?fOfhfzfffffffgcg7hFhNhWhnhvhhhhh)h#iCi]ivi(i"i(i2 +j,=j"jjjj&j j% k//k*_kkkk kk l*/l$Zll ll!lll/m#4m#Xm(|m&m$mm#n"&n(In+rn"n#nn%n!o@o!To"voo#ooop6pGp]p7|pp%ppq"-q Pqqq%qDq9q`6rZr$rs/s +BsMsbss,ssss tt-tEt\t qt)~tttt7t-4u4bu*u)u&u!v5vIvcv!~vvvvv5wuxx_yGyEz2z({{B||NZ}}F+~r~P(ByWOd;JRX_rτ؄6 VdsC΅%CWv!&ʆ$@/Tɇ% 1#/U%5ވ0$B#g#É/K>T ͊׊&. 5 +?J\Fm +ITmʌ-ь/ /!Pr""֍ ":]eu ŎԎ . @$Lq*',9HQ q  +Ԑߐ" +-3C TbsQ:@ 9a<[ؒ_4L3!' ȕ7Ֆ ՘xxm_%Y7*<C;[24ʟ6/6NfkJ:H:eǣd-F٤ 0ܧΨVF׫Yح2 +9>D# +,߰9AJ +[ fp ر*?]r   yֲP_ | Ҵ15FWn!~  ͵ +E.GtHQ޷[0 +͹ ֹ) ( +2 +=&H(o&I# !-Od%ʻ޻$ 6@YI. +Ҽ ݼ# 2@-T0  8Ͻ`Iiv*?XhOow(n8b +CTWSWp=A><DM#kK + 7- L|5kg2    ( 1?2W  + /E Yel |  %&FYbjs +!)1@G^%g '  +&1Oet   !2E +Zex +   ""3Hew6  +& 6@IXu"$   " +% 0 +< GS%e  +  8 T^t| )  %3H PZ x   34h#z    +"- <J]l{     (08 ?Mbi r   "%* 1 ?L\o! +% Q ^j" \B9K|)+ 2@Ie>z-(/4@ u ## " .8M%d'   +  " /$= b o   +   04:=M Q^pxI )9-P)~,( +  + +06= F R^dks9*Iqf <}pwm zb]' 56@~SMH# HL9 =_  =fzY?3V: >AL{I3}9&]Iq)$li =5xc)hYVkO*t(.k# h4, adeybWQbnGZ2 qg&X4D[!7R4uq!fX5+ `@p  21u)$70Le z`cT@"} 0,( %v~/KDGv?J[,Ng|cfFc B oDsR:r=F ! E2sPs3F ?<i9sVA4p1 LM)Trgb2 pu@ |my5 db!.< ?BIg"Alv} eu  yMJ aw  &c7 S'+# $D3* j^!PV_T\&d #SU, >/[ `m1 V-EG 8viT;. v.; 8 [f$>l~!Qany + /VEH6JQ]0_ '3?E]++  P8% ee 6 'X_jzL'$ ( ( 6O:@7ak#B,(3 xg| *6 oj4<_CT R< { lw e8A6~5BMJ4<xz0u oRg8,O(*Vy%''Kc>%@*M|? PB1XH-q +G>Dd s]zz01F#3fEN B;Fqu7|:"& /L(0Fs<Y/j!,q5yPf'r9+%N+ S{6?GOd<xBo(! +Ip.Ps9^wbthw,LDgSA`\bj/0Zv2Q?7n& \-k.Ca[{I|8.*E HMw\x6 '@3W^=1gIJ q4p>S}4K TR`1:.UK9 R~35Em) "7/ m<0 uPb;tHlXNjkrZ"\Og8^#|haE^>dvQt]JQ]~FO +=iCWX-G % +o )8G" hDwTG^Q-k] +L [K*vXdBhU]_lU1X7B<9 :PuRi -9C3kCa > Q'_r+9=Ks=i#Z +% b- C1 nB{@~N8W)Jo$Mw/W:~ UI &wt= 1$FM/ nIKn0@J-E )"/f22`Fl&;pG[{4 :r + P(o%Wy)O+V vIA  ;YH\\etlzM4Y_q >Uh;A*nO)xD^@,aSrKAUjCmd +\7y8{oZ# WQUcAZ5LD W}s  p["(jzGJ`Nt`C W S2 ? 2}imm|}H{rKKR _;c! +p#LA%Y-~H}N RH xnTye;IdUM n&[.V7 +Yj60hhFxJZ`kC$:Zx$C5meS|9a  O {Y&2.5*: X=^"6k>N luY",^fr TE% ioZt c* +\N-i?t$;D! Invalid option "%s" Usage: %s [option ... ] [file ... ] @@ -274,7 +271,7 @@ Make sure a proper setup for your display environment exists.GIMP help browserGIMP is not properly installed for the current user. User installation was skipped because the '--no-interface' flag was used. To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Generate optimum paletteGet Monitor ResolutionGiganticGimprc proceduresGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient:GradientsGradients MenuGrain extractGrain mergeGrayGrayscaleGreenGreen:GridGrid line spacingGrow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_counter-clockwise hue)HSV (clockwise _hue)HTML notation:H_eight:H_elp browser to use:Handle position: %0.6fHard edgeHard lightHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHelp proceduresHex:HighlightsHint for the _docks:Hint for the _toolbox:HintingHinting alters the font outline to produce a crisp bitmap at small sizesHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB color layers.Hue-_Saturation...Hue:HugeI_con & TextI_mageI_mport Path...I_nterpolation:I_nterval:IconIcon & descIcon & textIf available, hints from the font are used but you may prefer to always use the automatic hinterIf enabled, the move tool changes the active layer or path when a layer or path is being picked. This used to be the default behaviour in older versions.If you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.Illegal variable name in environment file %s: %sImageImage + GridImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage ThumbnailsImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage maskImage resolution is out of bounds, using the default resolution instead.Image sizeImage sourceImage typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport paletteImport pathsImported PathIn_kIn_vertIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorIndexed Color ConversionIndexed color layers are always scaled without interpolation. The chosen interpolation type will affect channels and masks only.Info WindowInitial zoom _ratio:Initialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' -InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratioKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine +InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine spacing:Line Width:Line _Style:Line style used for the grid.LinearLinked itemLoadLoad CurvesLoad LevelsLoad Right Color Fr_omLoad curves settings from fileLoad levels settings from fileLoad text from fileLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower Path to _BottomLower channelLower channel to bottomLower layerLower layer to bottomLower pathLower path to bottomM_agnifyM_asterM_ove to Screen...Ma_pMagentaMagenta:MagnifyMake _transparentManage Loadable ModulesMarching _ants speed:Mask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:Max Depth:Maximum _filesize for thumbnailing:Maximum _new image size:Maximum color differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMeasure the rulers and enter their lengths:Median:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMerge vectorsMessage proceduresMessage repeated %d times.Message repeated once.Messages are redirected to stderr.MidtonesMigrate User SettingsMinimal number of _undo levels:MiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMouse WheelMoveMove AnchorsMove ChannelMove Floating SelectionMove GuideMove Guide: Move LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove ToolMove itemMove layers & selectionsMove selectionMove the current layerMove the current pathMove the selected filter downMove the selected filter upMove to Screen...Move: MultiplyN_umber of colors:Na_vigationNa_vigation WindowNa_vigation preview size:NameName:NavigationNew ChannelNew Channel ColorNew Channel OptionsNew Color from _BGNew Color from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channelNew channel with last valuesNew channel...New color from BGNew color from FGNew gradientNew importNew layerNew layer with last valuesNew layer...New paletteNew path with last valuesNew path...New patternNew vectorsNo brushes available for use with this tool.No filter selectedNo linear gradients found in '%s'No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of _processors to use:Number of grid linesNumber of layers:O_ther...OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset by x/_2, y/2Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the palette selection dialogOpen the pattern selection dialogOpen the selected entryOpening '%s' failed: %sOpening '%s' failed: %sOptions: @@ -326,7 +323,7 @@ did not save indexed colormaps correctly. Substituting grayscale map.YYellowYellow:You are trying to create an image with a size of %s.You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your input device settings will be reset to default values the next time you start GIMP.Your keyboard shortcuts will be reset to default values the next time you start GIMP.Your window setup will be reset to default values the next time you start GIMP.Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_All_Anchor Layer_Antialiasing_Arbitrary Rotation..._Artistic_Aspect_Auto_B_BG Color_Background color:_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Bucket Fill_Buffer_By Color_By Color Select_C_Cap style:_Channels_Clear Errors_Clear Undo History_Clone_Close_Close Tab_Clouds_Color Tools_Colors_Configure Color and Opacity..._Context_Context Help_Copy_Copy Named..._Create Image from Template..._Crop & Resize_Crop Image_Curved_Curves..._Dark Check Color_Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Desaturate_Detach Tab_Device Status_Dialogs_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Ellipse Select_Enable layer & channel previews_Enormous_Equalize_Eraser_FG Color_File_Fill with:_Fit Image in Window_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground color:_Free Select_G_Generic_Gigantic_Gradient_Gradients_Grayscale_Grayscale copy of layer_Grow..._Guides_Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Info Window_Intersect with Selection_Invert_Join style:_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Left Neighbor's Right Endpoint_Levels..._Light Check Color_Light Effects_Lightness:_Line Style_Linear_Linked_Load Left Color From_Lower Channel_Lower Layer_Lower Path_M_Manually_Map_Mask_Mask to Selection_Maximum number of colors:_Measure_Medium_Merge Palettes..._Merge imported paths_Migrate GIMP 2.0 user settings_Misc. Stuff_Miter limit:_Mode_Module Manager_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._Padding Color_Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preferences_Preview_Preview Size_Previous tip_Print Size..._Properties_Quick Mask Active_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Reassign shortcut_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Remove unused colors from final palette_Render_Replace_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Order & Visibility_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Right Endpoint_Right Neighbor's Left Endpoint_Rotate_Saturation:_Save_Save Left Color To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Scale imported paths to fit image_Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Show Image Selection_Show in Toolbox_Sinusoidal_Small_Smudge_Snap distance:_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tool_Tools_Transfer layer's alpha channel_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Visible_Web_Web browser to use:_White (full opacity)_White Balance_Width:_Wrap around_X resolution:_X:_Xtns_Y_Y resolution:_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for icon typeinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetermillimetersminuten/apercentpicapicaspixelpixelspixels/%apixels/%spointpointssecondtips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: es Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-19 03:11+0100 +POT-Creation-Date: 2004-12-28 16:58+0100 PO-Revision-Date: 2004-11-22 23:47+0100 Last-Translator: Language-Team: @@ -382,7 +379,7 @@ modificador «-- no interface». Para realizar la instalación de usuario ejecute El Gimp sin el modificador «--no-interface».El Gimp usa una cantidad limitada de memoria para almacenar datos sobre las imágenes llamada «Cache de mosaico». Debería ajustar su tamaño para que quepa en memoria. Considere la cantidad de memoria que usan otros procesos en ejecución.El Gimp usa un archivo «gtkrc» adicional de modo que pueda ponerle un aspecto diferente al resto de programas GTK.Versión de El GimpEl Gimp advertirá al usuario si realiza un intento de crear una imagen que podría requerir más memoria que el tamaño especificado aquí.GammaGeneralGeneralmente sólo es importante para pantallas de 8 bits, esto define la cantidad mínima de colores del sistema reservados para El Gimp.Generar paleta óptimaObtener la resolución de monitorGigantescoProcedimientos gimprcEfecto_s de cristalDegradadoEditor de degradadosMenú del editor de degradadoCarpetas de degradadosColor del punto final izquierdo del segmento del degradadoColor del punto final derecho del segmento del degradadoInterfaz de degradadosDegradado:DegradadosMenú de degradadosExtraer granuladoCombinar granuladoGrisEscala de grisesVerdeVerde:RejillaEspaciado de las líneas de la rejillaAgrandar el canalAgrandar selecciónAgrandar selección enGuíaAjuste de la rejilla y la guíaProcedimientos de guíasHSVHSV (%0.3f, %0.3f, %0.3f)HSV (tono en _sentido anti-horario)HSV (tono en sentido horario)Notación HTML:_Altura:_Visor de ayuda:Posición del tirador: %0.6fBordes durosClaridad fuerteDurezaDureza:AlturaAltura:AyudaVisor de ayudaSistema de ayudaEl navegador de ayuda no inicia:Visor de ayuda no encontradoProcedimientos de ayudaHex:Puntos de luzHint para e_mpotrables:Hint para la caja de herramien_tas:HintingEl «hinting» altera el contorno de la tipografía para producir un mapa de bits preciso en tamaños pequeños_HistogramaHistogramaEscala del histogramaHistorialHorizontalDeslizamiento horizontal de la primera línea de la rejilla, puede ser un número negativo.Espacio horizontal de la líneas de la rejilla.Cuántos nombres de archivos de imágenes abiertas recientemente se deben mantener en el menú Archivo.TonoTono-SaturaciónTono-saturación sólo funciona sobre capas de color RGB.Tono-_Saturación...Tono:EnormeI_cono y textoI_magenI_mportar ruta...I_nterpolación:I_ntervalo:IconoIcono y descIcono y textoSi está disponible, se utilizan los «hints» de la tipografía, pero podría preferir usar siempre el «hinter» automáticoSi está activado, la herramienta de movimiento cambia la capa activa o ruta cuando una capa o ruta se escoge. Esto se usa para ser el comportamiento predeterminado en las versiones más antiguas.Si no guarda la imagen, los cambios desde los últimos %s se perderán.Si sale de Gimp ahora, estos cambios se perderán.Nombre de variable ilegal en el archivo de ambiente %s: %sImagenImagen + RejillaEditor de imagenInformación de la imagenMenú de imagenTamaño de la imagenFormato de la barra de estado de la imagenPlantillas de imágenesMiniaturas de imágenesFormato del título de imagen y la barra de estadoFormato del título de imagenApariencia de la ventana de la imagenVentanas de imagenLa imagen no contiene ninguna capa visibleArchivo de imagenMáscara de imagenLa resolución de la Imagen se sale de los límites; usando la resolución predefinida en su lugar.Tamaño de la imagenImagen origenTipo de imagenImágenesMenú de imágenesOpciones de importaciónImportar paletaImportar rutasImportar rutas desde SVGImporta una paleta nuevaImportar paletaImportar rutasRuta importada_TintaIn_vertirIn_vertir la máscaraIncrementalSangrar:Sangrado de la primera líneaÍndice:IndexadoColor indexadoConversión de color indexadoLas capas de color indexado se escalan siempre sin interpolación. El tipo de interpolación elegido sólo afectará a las máscaras y canales.Ventana de información_Proporción de ampliación inicial:Iniciar máscara de capa a:Inicializando los complementosInicializando el complemento: «%s» -TintaPixbuf en líneaControladores de entradaDispositivos de entradaNiveles de entradaInsertar un anclaInstala un mapa de color privado; podría ser muy útil en las pantallas de 8 bits (256 colores).La instalación ha fallado. Póngase en contacto con el administrador del sistema.Instalación exitosa. Presione «Continuar» para comenzar.Actualización instantáneaTijeras _inteligentesIntensidad: %0.3f Opacidad: %0.3fInterfazProcedimiento interno de El GimpProcedimientos internosInterpolación:IntersectarIntersectar con la selección actualIntersecciones (cruces)Intersecciones (puntos)UTF-8 inválidoDatos UTF-8 inválidos en el archivo «%s».Cadena UTF-8 inválida en el archivo XCFCadena UTF-8 inválida en el archivo de brocha «%s».Cadena UTF-8 inválida en el archivo de degradado «%s».Cadena UTF-8 inválida en el archivo de paleta «%s»Cadena UTF-8 inválida en el archivo de patrón «%s».Secuencia de caracteres inválida en la URICombinación de teclas inválida.Anchura o altura no válidas. Ambas deben ser positivas.InvertirInvertir el canalInvertir selecciónLa inversión no funciona con capas indexadas.Invertir selección¿Es eso lo que quiere hacer?Parece que ha usado El Gimp 2.0 antes.Propiedades del elementoVisibilidad del elementoJustificar:Mantener transparenciaMantener por encimaMantener proporción %sMantener proporciónMantener proporción %sMantener altura %sMantener transparenciaMantener anchura %sTecla bajarTecla bajar (Alt)Tecla bajar (Control + Alt)Tecla bajar (Control)Tecla bajar (Mayús. + Alt)Tecla bajar (Mayús. + Control + Alt)Tecla bajar (Mayús. + Control)Tecla bajar (Mayús.)Tecla izquierdaTecla izquierda (Alt)Tecla izquierda (Control + Alt)Tecla izquierda (Control)Tecla izquierda (Mayús. + Alt)Tecla izquierda (Mayús. +Control + Alt)Tecla izquierda (Mayús. + Control)Tecla izquierda (Mayús.)Tecla derechaTecla derecha (Alt)Tecla derecha (Control + Alt)Tecla derecha (Control)Tecla derecha (Mayús. + Alt)Tecla derecha (Mayús. + Control + Alt)Tecla derecha (Mayús. + Control)Tecla derecha (Mayús.)Tecla subirTecla subir (Alt)Tecla subir (Control + Alt)Tecla subir (Control)Tecla subir (Mayús + Alt)Tecla subir (Mayús + Control + Alt)Tecla subir (Mayús + Control)Tecla subir (Mayús.)Las combinaciones de teclas pueden ser redefinidas de forma dinámica en El GIMP. «menurc» es un volcado de su configuración para que pueda ser recordada en la próxima sesión. Puede editar este archivo si lo desea, pero es mucho más fácil definir las teclas desde El Gimp. Si borra este archivo se restaurarán las combinaciones de teclas predefinidas.TecladoCombinaciones de teclasI->DColor del punto final izqui_erdo...ApaisadoGrandeGrande (256x256)Vistas previas enormesÚltimo error:CapaLa capa «%s» no tiene alfa. La capa fue colocada encima de ésta.Atributos de la capaTamaño de b_orde de capa...Tipo de relleno de la capaMáscara de capa a selecciónSelección de capasTamaño de capas_Modo de capas_Nombre de la capa:La capa no puede bajarse más.La capa no puede ser elevada más alto.La capa ya se encuentra en la parte más baja.La capa ya se encuentra en lo más alto.Capa a tamaño de imagenCapa al _fondoCapa a tamaño de _imagenCapa a la _cimaCanal _alfa de la capaCapasMenú de capasOpciones de combinación de capasColor del punto final izquierdoJustificado a la izquierdaLargo:Permitir a El Gimp intentar restaurar la última sesión guardada durante cada inicio.NivelesLos niveles para capas indexadas no pueden ser ajustados.Color de los cuadros clarosClarear sóloLíneaEspaciado +TintaPixbuf en líneaControladores de entradaDispositivos de entradaNiveles de entradaInsertar un anclaInstala un mapa de color privado; podría ser muy útil en las pantallas de 8 bits (256 colores).La instalación ha fallado. Póngase en contacto con el administrador del sistema.Instalación exitosa. Presione «Continuar» para comenzar.Actualización instantáneaTijeras _inteligentesIntensidad: %0.3f Opacidad: %0.3fInterfazProcedimiento interno de El GimpProcedimientos internosInterpolación:IntersectarIntersectar con la selección actualIntersecciones (cruces)Intersecciones (puntos)UTF-8 inválidoDatos UTF-8 inválidos en el archivo «%s».Cadena UTF-8 inválida en el archivo XCFCadena UTF-8 inválida en el archivo de brocha «%s».Cadena UTF-8 inválida en el archivo de degradado «%s».Cadena UTF-8 inválida en el archivo de paleta «%s»Cadena UTF-8 inválida en el archivo de patrón «%s».Secuencia de caracteres inválida en la URICombinación de teclas inválida.Anchura o altura no válidas. Ambas deben ser positivas.InvertirInvertir el canalInvertir selecciónLa inversión no funciona con capas indexadas.Invertir selección¿Es eso lo que quiere hacer?Parece que ha usado El Gimp 2.0 antes.Propiedades del elementoVisibilidad del elementoJustificar:Mantener transparenciaMantener por encimaMantener proporción %sMantener proporción %sMantener altura %sMantener transparenciaMantener anchura %sTecla bajarTecla bajar (Alt)Tecla bajar (Control + Alt)Tecla bajar (Control)Tecla bajar (Mayús. + Alt)Tecla bajar (Mayús. + Control + Alt)Tecla bajar (Mayús. + Control)Tecla bajar (Mayús.)Tecla izquierdaTecla izquierda (Alt)Tecla izquierda (Control + Alt)Tecla izquierda (Control)Tecla izquierda (Mayús. + Alt)Tecla izquierda (Mayús. +Control + Alt)Tecla izquierda (Mayús. + Control)Tecla izquierda (Mayús.)Tecla derechaTecla derecha (Alt)Tecla derecha (Control + Alt)Tecla derecha (Control)Tecla derecha (Mayús. + Alt)Tecla derecha (Mayús. + Control + Alt)Tecla derecha (Mayús. + Control)Tecla derecha (Mayús.)Tecla subirTecla subir (Alt)Tecla subir (Control + Alt)Tecla subir (Control)Tecla subir (Mayús + Alt)Tecla subir (Mayús + Control + Alt)Tecla subir (Mayús + Control)Tecla subir (Mayús.)Las combinaciones de teclas pueden ser redefinidas de forma dinámica en El GIMP. «menurc» es un volcado de su configuración para que pueda ser recordada en la próxima sesión. Puede editar este archivo si lo desea, pero es mucho más fácil definir las teclas desde El Gimp. Si borra este archivo se restaurarán las combinaciones de teclas predefinidas.TecladoCombinaciones de teclasI->DColor del punto final izqui_erdo...ApaisadoGrandeGrande (256x256)Vistas previas enormesÚltimo error:CapaLa capa «%s» no tiene alfa. La capa fue colocada encima de ésta.Atributos de la capaTamaño de b_orde de capa...Tipo de relleno de la capaMáscara de capa a selecciónSelección de capasTamaño de capas_Modo de capas_Nombre de la capa:La capa no puede bajarse más.La capa no puede ser elevada más alto.La capa ya se encuentra en la parte más baja.La capa ya se encuentra en lo más alto.Capa a tamaño de imagenCapa al _fondoCapa a tamaño de _imagenCapa a la _cimaCanal _alfa de la capaCapasMenú de capasOpciones de combinación de capasColor del punto final izquierdoJustificado a la izquierdaLargo:Permitir a El Gimp intentar restaurar la última sesión guardada durante cada inicio.NivelesLos niveles para capas indexadas no pueden ser ajustados.Color de los cuadros clarosClarear sóloLíneaEspaciado de línea:Anchura de la línea:E_stilo de la línea:Estilo de línea utilizado por la rejilla.LinealElemento enlazadoCargarCargar curvasCargar nivelesCargar color derecho _desdeLeer configuración de las curvas desde un archivoLeer la configuración de los niveles desde un archivoCargar texto desde un archivoCargando la vista previa...Ubicación:LogarítmicoGuiones largosBuscando archivos de datosBajar el canalBajar el canal hasta lo más bajoBajar el canal al _fondoBajar la capaBajar la capa hasta la parte más bajaBajar la rutaBajar la ruta hasta el fondoBajar la ruta hasta el _finalBaja el canalBaja el canal hasta el fondo de la pilaBaja la capaBaja la capa hasta el fondo de la pilaBajar la rutaBajar la ruta hasta el final_LupaP_rincipal_Mover a la pantalla...Ma_paMagentaMagenta:LupaHacer _transparenteAdministra los módulos cargablesVelocid_ad de las «hormigas marchantes»:Opacidad de la máscara:Enmascarar las áreas _seleccionadasEnmascarar áreas _no seleccionadasMatriz:Profundidad máxima:Tamaño _máximo del archivo para miniaturizar:Tamaño máximo de la imagen _nueva:Máxima diferencia de color_Memoria máxima para deshacer:Media:MedirMedida de distancias y ángulosMedida de distancias y ángulosMida las reglas e introduzca sus longitudes debajo:Mediana:MedianoGuiones medianosCombinar hacia aba_joCombinar hacia abajoCombinar capasCombinar la paletaCombinar las capas visiblesCombinar las rutas visiblesCombinar las capas _visibles...Combinar las capas _visibles...Combinar las capas _visiblesCombinar capasCombinar la paletaCombinar los vectoresProcedimientos de mensajeMensaje repetido %d veces.Mensaje repetido una vez.Los mensajes se redirigen a stderr.Tonos mediosMigrar configuración de usuarioCantidad mínima de niveles de _deshacer:MisceláneaMitraModoModo:Modificar el color seleccionadoModificar los niveles de color en el rango seleccionadoModificar todos los coloresModificar el espaciado de las líneasCarpetas de módulosGestor de módulosRuta del móduloMódulosCursores del ratónRueda del ratónMoverMover las anclasMover el canalMover la selección flotanteMover la guíaMover la guía:Mover la capaMover la mascara de la capaMover la rutaMover la selecciónMover la capa de textoHerramienta moverMover el elementoMover capas y seleccionesMover la selecciónMover la capa actualMover la ruta actualMover el filtro seleccionado hacia abajoMover el filtro seleccionado hacia arribaMover a la pantalla...Mover: Multiplicar_Número de colores:Na_vegaciónVentana de na_vegaciónTamaño de vistas previas de _navegación:NombreNombre:NavegaciónNuevo canalNuevo canal de colorNuevas opciones de canalColor nuevo desde el f_ondoColor nuevo desde el _frenteNueva imagenCapa nuevaNueva rutaOpciones de ruta nuevaPlantilla nuevaBrocha nuevaNuevo canalCanal nuevo con los últimos valoresCanal nuevo...Color nuevo desde el fondoColor nuevo desde el frenteDegradado nuevoImportación nuevaCapa nuevaCapa nueva con los últimos valoresCapa nueva...Paleta nuevaRuta nueva con los últimos valoresRuta nueva...Patrón nuevoVectores nuevosNo hay brochas disponibles para usar con esta herramienta.No hay ningún filtro seleccionadoNo se encontraron degradados lineales en «%s»Ya no se encuentra disponibleNo se encontraron rutas en «%s»No se encontraron rutas en el búferNo hay patrones disponibles para esta operación.No hay selecciónNo hay selección que trazar.Sin miniaturasNo alienadoNingunoNinguna (la más rápida)NormalNormal (128x128)Puntos normalesVentana normalNo es un archivo regularNo hay suficientes capas visibles para hacer una combinación. Al menos debe haber dos.No hay suficientes capas visibles para hacer una combinación. Deben haber por lo menos dos.Número de _procesadores:Número de líneas de la rejillaCantidad de capas:O_tros...DeslizamientoDeslizar canalDeslizar dibujableDeslizar capaDeslizar la máscara de capaDesplazar por x/_2,y/2Deslizar:En el discoEn las máquinas con múltiples procesadores, si El Gimp ha sido compilado con «--enable-mp» esto define cuántos procesadores debería utilizar El Gimp simultáneamente.Sólo en memoria_Abrir como capa...OpacidadOpacidad:AbrirAbrir imagenAbrir imagen como capaAbrir direcciónAbrir archivo de texto (UTF-8)Abrir _dirección...Abrir _recienteDiálogo de apertura de imagenAbre el diálogo de selección de brochaAbre el diálogo de selección de tipografíaAbre el diálogo de selección de degradadoAbre el diálogo de selección de paletaAbre el diálogo de selección de patrónAbrir la entrada seleccionadaLa apertura de «%s» ha fallado: %sLa apertura de «%s» ha fallado: %sOpciones: Origen X:Origen Y:Anchura original:Otro (%s) ...EsquemaNiveles de salidaSolaparError de llamada a PDB para el procedimiento «%s»: diff -uraN gimp-2.2.0/po/es.po gimp-2.2.1/po/es.po --- gimp-2.2.0/po/es.po 2004-12-19 03:11:23.000000000 +0100 +++ gimp-2.2.1/po/es.po 2004-12-28 16:58:28.000000000 +0100 @@ -19,7 +19,7 @@ msgstr "" "Project-Id-Version: es\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-19 03:11+0100\n" +"POT-Creation-Date: 2004-12-28 16:58+0100\n" "PO-Revision-Date: 2004-11-22 23:47+0100\n" "Last-Translator: \n" "Language-Team: \n" @@ -1061,11 +1061,11 @@ msgid "Remove dangling entries" msgstr "Quita las entradas colgantes" -#: app/actions/documents-commands.c:252 app/actions/file-commands.c:163 +#: app/actions/documents-commands.c:251 app/actions/file-commands.c:163 #: app/dialogs/file-open-dialog.c:198 app/dialogs/file-open-dialog.c:249 #: app/dialogs/file-open-location-dialog.c:193 -#: app/display/gimpdisplayshell-dnd.c:332 app/widgets/gimplayertreeview.c:802 -#: app/widgets/gimptoolbox-dnd.c:123 +#: app/display/gimpdisplayshell-dnd.c:334 app/widgets/gimplayertreeview.c:804 +#: app/widgets/gimptoolbox-dnd.c:125 #, c-format msgid "" "Opening '%s' failed:\n" @@ -1575,115 +1575,115 @@ msgid "Zoom all" msgstr "Aumentar todo" -#: app/actions/gradient-editor-actions.c:582 +#: app/actions/gradient-editor-actions.c:589 msgid "_Blending Function for Segment" msgstr "/Función de _mezcla para el segmento" -#: app/actions/gradient-editor-actions.c:584 +#: app/actions/gradient-editor-actions.c:591 msgid "Coloring _Type for Segment" msgstr "_Tipo de coloreado para el segmento" -#: app/actions/gradient-editor-actions.c:587 +#: app/actions/gradient-editor-actions.c:594 msgid "_Flip Segment" msgstr "In_vertir segmento simétricamente" -#: app/actions/gradient-editor-actions.c:589 +#: app/actions/gradient-editor-actions.c:596 msgid "_Replicate Segment..." msgstr "_Replicar segmento..." -#: app/actions/gradient-editor-actions.c:591 +#: app/actions/gradient-editor-actions.c:598 msgid "Split Segment at _Midpoint" msgstr "Partir segmento por la _mitad" -#: app/actions/gradient-editor-actions.c:593 +#: app/actions/gradient-editor-actions.c:600 msgid "Split Segment _Uniformly..." msgstr "Partir segmento _uniformemente..." -#: app/actions/gradient-editor-actions.c:595 +#: app/actions/gradient-editor-actions.c:602 msgid "_Delete Segment" msgstr "B_orrar segmento" -#: app/actions/gradient-editor-actions.c:597 +#: app/actions/gradient-editor-actions.c:604 msgid "Re-_center Segment's Midpoint" msgstr "Re-_centrar punto medio del segmento" -#: app/actions/gradient-editor-actions.c:599 +#: app/actions/gradient-editor-actions.c:606 msgid "Re-distribute _Handles in Segment" msgstr "Redistribuir los _tiradores en el segmento" -#: app/actions/gradient-editor-actions.c:604 +#: app/actions/gradient-editor-actions.c:611 msgid "_Blending Function for Selection" msgstr "Función de m_ezcla para la selección" -#: app/actions/gradient-editor-actions.c:606 +#: app/actions/gradient-editor-actions.c:613 msgid "Coloring _Type for Selection" msgstr "_Tipo de coloreado para la selección" -#: app/actions/gradient-editor-actions.c:609 +#: app/actions/gradient-editor-actions.c:616 msgid "_Flip Selection" msgstr "_Invertir selección simétricamente" -#: app/actions/gradient-editor-actions.c:611 +#: app/actions/gradient-editor-actions.c:618 msgid "_Replicate Selection..." msgstr "_Replicar selección..." -#: app/actions/gradient-editor-actions.c:613 +#: app/actions/gradient-editor-actions.c:620 msgid "Split Segments at _Midpoints" msgstr "Partir segmentos por la _mitad" -#: app/actions/gradient-editor-actions.c:615 +#: app/actions/gradient-editor-actions.c:622 msgid "Split Segments _Uniformly..." msgstr "Partir segmentos _uniformemente..." -#: app/actions/gradient-editor-actions.c:617 +#: app/actions/gradient-editor-actions.c:624 msgid "_Delete Selection" msgstr "Bo_rrar selección" -#: app/actions/gradient-editor-actions.c:619 +#: app/actions/gradient-editor-actions.c:626 msgid "Re-_center Midpoints in Selection" msgstr "Re-_centrar puntos medios en la selección" -#: app/actions/gradient-editor-actions.c:621 +#: app/actions/gradient-editor-actions.c:628 msgid "Re-distribute _Handles in Selection" msgstr "Redistribuir los _tiradores en la selección" -#: app/actions/gradient-editor-commands.c:84 +#: app/actions/gradient-editor-commands.c:85 msgid "Left Endpoint Color" msgstr "Color del punto final izquierdo" -#: app/actions/gradient-editor-commands.c:86 +#: app/actions/gradient-editor-commands.c:87 msgid "Gradient Segment's Left Endpoint Color" msgstr "Color del punto final izquierdo del segmento del degradado" -#: app/actions/gradient-editor-commands.c:186 +#: app/actions/gradient-editor-commands.c:189 msgid "Right Endpoint Color" msgstr "Color del punto final derecho" -#: app/actions/gradient-editor-commands.c:188 +#: app/actions/gradient-editor-commands.c:191 msgid "Gradient Segment's Right Endpoint Color" msgstr "Color del punto final derecho del segmento del degradado" -#: app/actions/gradient-editor-commands.c:353 +#: app/actions/gradient-editor-commands.c:358 msgid "Replicate Segment" msgstr "Replicar segmento" -#: app/actions/gradient-editor-commands.c:354 +#: app/actions/gradient-editor-commands.c:359 msgid "Replicate Gradient Segment" msgstr "Replicar segmento del degradado" -#: app/actions/gradient-editor-commands.c:358 +#: app/actions/gradient-editor-commands.c:363 msgid "Replicate Selection" msgstr "Replicar selección" -#: app/actions/gradient-editor-commands.c:359 +#: app/actions/gradient-editor-commands.c:364 msgid "Replicate Gradient Selection" msgstr "Replicar selección del degradado" -#: app/actions/gradient-editor-commands.c:371 +#: app/actions/gradient-editor-commands.c:376 msgid "Replicate" msgstr "Replicar" -#: app/actions/gradient-editor-commands.c:386 +#: app/actions/gradient-editor-commands.c:391 msgid "" "Select the number of times\n" "to replicate the selected segment." @@ -1691,7 +1691,7 @@ "Seleccione la cantidad de veces\n" "a replicar el segmento seleccionado." -#: app/actions/gradient-editor-commands.c:389 +#: app/actions/gradient-editor-commands.c:394 msgid "" "Select the number of times\n" "to replicate the selection." @@ -1699,27 +1699,27 @@ "Seleccione la cantidad de veces\n" "a replicar la selección." -#: app/actions/gradient-editor-commands.c:444 +#: app/actions/gradient-editor-commands.c:452 msgid "Split Segment Uniformly" msgstr "Partir el segmento uniformemente" -#: app/actions/gradient-editor-commands.c:445 +#: app/actions/gradient-editor-commands.c:453 msgid "Split Gradient Segment Uniformly" msgstr "Partir el segmento de degradado uniformemente" -#: app/actions/gradient-editor-commands.c:449 +#: app/actions/gradient-editor-commands.c:457 msgid "Split Segments Uniformly" msgstr "Partir los segmentos uniformemente" -#: app/actions/gradient-editor-commands.c:450 +#: app/actions/gradient-editor-commands.c:458 msgid "Split Gradient Segments Uniformly" msgstr "Partir los segmentos de degradado uniformemente" -#: app/actions/gradient-editor-commands.c:462 +#: app/actions/gradient-editor-commands.c:470 msgid "Split" msgstr "Partir" -#: app/actions/gradient-editor-commands.c:478 +#: app/actions/gradient-editor-commands.c:486 msgid "" "Select the number of uniform parts\n" "in which to split the selected segment." @@ -1727,7 +1727,7 @@ "Seleccione la cantidad de partes uniformes \n" "en que quiere partir el segmento seleccionado." -#: app/actions/gradient-editor-commands.c:481 +#: app/actions/gradient-editor-commands.c:489 msgid "" "Select the number of uniform parts\n" "in which to split the segments in the selection." @@ -2165,7 +2165,7 @@ #: app/actions/layers-commands.c:232 app/actions/layers-commands.c:234 #: app/actions/layers-commands.c:291 app/actions/layers-commands.c:295 -#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:840 +#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:842 msgid "New Layer" msgstr "Capa nueva" @@ -2177,7 +2177,7 @@ msgid "Set Layer Boundary Size" msgstr "Establecer el tamaño de borde de capa" -#: app/actions/layers-commands.c:512 app/core/gimplayer.c:255 +#: app/actions/layers-commands.c:512 app/core/gimplayer.c:253 msgid "Scale Layer" msgstr "Escalar la capa" @@ -2189,7 +2189,7 @@ msgid "Layer Mask to Selection" msgstr "Máscara de capa a selección" -#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1085 +#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1066 #: app/dialogs/layer-add-mask-dialog.c:62 msgid "Add Layer Mask" msgstr "Añadir máscara de capa" @@ -2734,7 +2734,7 @@ msgstr "Abrir archivo de texto (UTF-8)" #: app/actions/text-editor-commands.c:132 app/config/gimpconfig-utils.c:552 -#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:393 +#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:396 #: app/core/gimpbrushgenerated.c:601 app/core/gimpbrushpipe.c:338 #: app/core/gimpgradient-load.c:63 app/core/gimppalette.c:360 #: app/core/gimppattern.c:328 app/tools/gimpimagemaptool.c:608 @@ -4625,7 +4625,7 @@ msgid "FG to Transparent" msgstr "Frente a transparente" -#: app/core/gimp-gui.c:148 +#: app/core/gimp-gui.c:153 msgid "GIMP" msgstr "El Gimp" @@ -4657,44 +4657,65 @@ msgid "Modules" msgstr "Módulos" -#: app/core/gimpbrush.c:531 +#: app/core/gimpbrush.c:534 #, c-format msgid "Could not read %d bytes from '%s': %s" msgstr "No se ha podido leer %d bytes de «%s»: %s" -#: app/core/gimpbrush.c:566 +#: app/core/gimpbrush.c:554 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Width = 0." +msgstr "" +"Error fatal de análisis en el archivo de brocha «%s»: Profundidad " +"desconocida %d." + +#: app/core/gimpbrush.c:563 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Height = 0." +msgstr "" +"Error fatal de análisis en el archivo de brocha «%s»: El archivo está " +"corrupto." + +#: app/core/gimpbrush.c:572 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Bytes = 0." +msgstr "" +"Error fatal de análisis en el archivo de brocha «%s»: El archivo está " +"corrupto." + +#: app/core/gimpbrush.c:596 #, c-format msgid "Fatal parse error in brush file '%s': Unknown depth %d." msgstr "" "Error fatal de análisis en el archivo de brocha «%s»: Profundidad " "desconocida %d." -#: app/core/gimpbrush.c:579 +#: app/core/gimpbrush.c:609 #, c-format msgid "Fatal parse error in brush file '%s': Unknown version %d." msgstr "" "Error fatal de análisis en el archivo de brocha «%s»: Versión desconocida %d." -#: app/core/gimpbrush.c:595 app/core/gimpbrush.c:715 +#: app/core/gimpbrush.c:625 app/core/gimpbrush.c:745 #, c-format msgid "Fatal parse error in brush file '%s': File appears truncated." msgstr "" "Error fatal de análisis en el archivo de brocha «%s»: El archivo parece " "estar truncado." -#: app/core/gimpbrush.c:603 app/core/gimpbrushgenerated.c:648 +#: app/core/gimpbrush.c:633 app/core/gimpbrushgenerated.c:648 #: app/core/gimpbrushpipe.c:354 #, c-format msgid "Invalid UTF-8 string in brush file '%s'." msgstr "Cadena UTF-8 inválida en el archivo de brocha «%s»." -#: app/core/gimpbrush.c:610 app/core/gimpcontext.c:1299 -#: app/core/gimpitem.c:479 app/core/gimppattern.c:400 +#: app/core/gimpbrush.c:640 app/core/gimpcontext.c:1299 +#: app/core/gimpitem.c:480 app/core/gimppattern.c:400 #: app/dialogs/template-options-dialog.c:80 app/tools/gimpvectortool.c:339 msgid "Unnamed" msgstr "Sin nombre" -#: app/core/gimpbrush.c:704 +#: app/core/gimpbrush.c:734 #, c-format msgid "" "Fatal parse error in brush file '%s': Unsupported brush depth %d\n" @@ -4867,12 +4888,12 @@ "%s" #: app/core/gimpdatafactory.c:411 app/core/gimpdatafactory.c:414 -#: app/core/gimpitem.c:274 app/core/gimpitem.c:277 +#: app/core/gimpitem.c:275 app/core/gimpitem.c:278 msgid "copy" msgstr "copiar" # Esto debe aparecer en la aplicación como 'Copia de xyz'. FVD -#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:286 +#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:287 #, c-format msgid "%s copy" msgstr "Copia de %s" @@ -4934,7 +4955,7 @@ msgid "Rotate" msgstr "Rotar" -#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:259 +#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:257 msgid "Transform Layer" msgstr "Transformar la capa" @@ -5303,7 +5324,7 @@ #. pixel size #: app/core/gimpimagefile.c:624 app/dialogs/info-window.c:552 -#: app/widgets/gimpsizebox.c:552 app/widgets/gimptemplateeditor.c:637 +#: app/widgets/gimpsizebox.c:429 app/widgets/gimptemplateeditor.c:637 #: app/widgets/gimptemplateeditor.c:673 #, c-format msgid "%d x %d pixels" @@ -5323,15 +5344,15 @@ msgid "Could not open thumbnail '%s': %s" msgstr "No se ha podido abrir la miniatura «%s»: %s" -#: app/core/gimpitem.c:1096 +#: app/core/gimpitem.c:1103 msgid "Attach Parasite" msgstr "Adjuntar parásito" -#: app/core/gimpitem.c:1106 +#: app/core/gimpitem.c:1113 msgid "Attach Parasite to Item" msgstr "Adjuntar una parásito al elemento" -#: app/core/gimpitem.c:1145 app/core/gimpitem.c:1152 +#: app/core/gimpitem.c:1152 app/core/gimpitem.c:1159 msgid "Remove Parasite from Item" msgstr "Quitar el parásito del elemento" @@ -5360,37 +5381,37 @@ msgid "Floating Selection to Layer" msgstr "Selección flotante a capa" -#: app/core/gimplayer.c:252 app/pdb/internal_procs.c:152 +#: app/core/gimplayer.c:250 app/pdb/internal_procs.c:152 msgid "Layer" msgstr "Capa" -#: app/core/gimplayer.c:253 +#: app/core/gimplayer.c:251 msgid "Rename Layer" msgstr "Renombrar la capa" -#: app/core/gimplayer.c:254 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 +#: app/core/gimplayer.c:252 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 msgid "Move Layer" msgstr "Mover la capa" -#: app/core/gimplayer.c:256 +#: app/core/gimplayer.c:254 msgid "Resize Layer" msgstr "Redimensionar la capa" -#: app/core/gimplayer.c:257 +#: app/core/gimplayer.c:255 msgid "Flip Layer" msgstr "Voltear la capa" -#: app/core/gimplayer.c:258 +#: app/core/gimplayer.c:256 msgid "Rotate Layer" msgstr "Rotar la capa" -#: app/core/gimplayer.c:341 app/core/gimplayer.c:1129 +#: app/core/gimplayer.c:339 app/core/gimplayer.c:1110 #: app/core/gimplayermask.c:236 #, c-format msgid "%s mask" msgstr "máscara %s" -#: app/core/gimplayer.c:387 +#: app/core/gimplayer.c:385 #, c-format msgid "" "Floating Selection\n" @@ -5399,42 +5420,42 @@ "Selección flotante\n" "(%s)" -#: app/core/gimplayer.c:1055 +#: app/core/gimplayer.c:1036 msgid "Cannot add layer mask to layer which is not part of an image." msgstr "" "No se puede añadir una máscara a la capa dado que no es parte de una imagen." -#: app/core/gimplayer.c:1062 +#: app/core/gimplayer.c:1043 msgid "Unable to add a layer mask since the layer already has one." msgstr "No se puede añadir una máscara de capa dado que la capa ya posee una." -#: app/core/gimplayer.c:1069 +#: app/core/gimplayer.c:1050 msgid "Cannot add layer mask to a layer with no alpha channel." msgstr "No se puede añadir una máscara de capa a una capa sin canal alfa." -#: app/core/gimplayer.c:1079 +#: app/core/gimplayer.c:1060 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "" "No se puede añadir una máscara de capa de dimensiones distintas a la capa " "especificada." -#: app/core/gimplayer.c:1183 +#: app/core/gimplayer.c:1164 msgid "Transfer Alpha to Mask" msgstr "Transferir alfa a la mascara" -#: app/core/gimplayer.c:1343 +#: app/core/gimplayer.c:1324 msgid "Apply Layer Mask" msgstr "Aplicar máscara de capa" -#: app/core/gimplayer.c:1344 +#: app/core/gimplayer.c:1325 msgid "Delete Layer Mask" msgstr "Borrar máscara de capa" -#: app/core/gimplayer.c:1445 +#: app/core/gimplayer.c:1426 msgid "Add Alpha Channel" msgstr "Añadir un canal alfa" -#: app/core/gimplayer.c:1467 +#: app/core/gimplayer.c:1448 msgid "Layer to Image Size" msgstr "Capa a tamaño de imagen" @@ -6910,28 +6931,28 @@ msgstr "Tamaño de la impresión" #. the image size labels -#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:241 +#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:222 #: app/widgets/gimptemplateeditor.c:236 msgid "_Width:" msgstr "_Anchura:" -#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:248 +#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:225 #: app/widgets/gimptemplateeditor.c:243 msgid "H_eight:" msgstr "_Altura:" #. the resolution labels -#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:338 +#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:273 #: app/widgets/gimptemplateeditor.c:363 msgid "_X resolution:" msgstr "Resolución _X:" -#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:345 +#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:276 #: app/widgets/gimptemplateeditor.c:370 msgid "_Y resolution:" msgstr "Resolución _Y:" -#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:357 +#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:269 #: app/widgets/gimptemplateeditor.c:383 #, c-format msgid "pixels/%a" @@ -7571,11 +7592,11 @@ msgid "%d minutes" msgstr "%d minutos" -#: app/display/gimpdisplayshell-dnd.c:96 +#: app/display/gimpdisplayshell-dnd.c:98 msgid "Drop New Layer" msgstr "Soltar la capa nueva" -#: app/display/gimpdisplayshell-dnd.c:140 +#: app/display/gimpdisplayshell-dnd.c:142 msgid "Drop New Path" msgstr "Borrar la ruta nueva" @@ -9056,12 +9077,12 @@ msgstr "_Pincel" #: app/tools/gimppaintoptions-gui.c:103 app/widgets/gimpbrushselect.c:201 -#: app/widgets/gimplayertreeview.c:330 +#: app/widgets/gimplayertreeview.c:332 msgid "Opacity:" msgstr "Opacidad:" #: app/tools/gimppaintoptions-gui.c:108 app/tools/gimpselectionoptions.c:374 -#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:323 +#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:325 msgid "Mode:" msgstr "Modo:" @@ -10477,25 +10498,25 @@ msgid "Set Item Exclusive Linked" msgstr "Define al elemento como exclusivo enlazado" -#: app/widgets/gimplayertreeview.c:250 +#: app/widgets/gimplayertreeview.c:252 msgid "Reorder Layer" msgstr "Reordenar la capa" -#: app/widgets/gimplayertreeview.c:311 +#: app/widgets/gimplayertreeview.c:313 msgid "Keep transparency" msgstr "Mantener transparencia" # Otra vez Empty es adjetivo y no verbo. Nada de 'vaciar' -#: app/widgets/gimplayertreeview.c:846 +#: app/widgets/gimplayertreeview.c:848 msgid "Empty Layer" msgstr "Capa vacía" -#: app/widgets/gimpmessagebox.c:458 +#: app/widgets/gimpmessagebox.c:460 #, c-format msgid "Message repeated %d times." msgstr "Mensaje repetido %d veces." -#: app/widgets/gimpmessagebox.c:460 +#: app/widgets/gimpmessagebox.c:462 msgid "Message repeated once." msgstr "Mensaje repetido una vez." @@ -10527,17 +10548,12 @@ msgid "Invalid UTF-8" msgstr "UTF-8 inválido" -# Quizá mejor Relación de aspecto. FVD -#: app/widgets/gimpsizebox.c:290 -msgid "Keep aspect ratio" -msgstr "Mantener proporción" - -#: app/widgets/gimpsizebox.c:574 +#: app/widgets/gimpsizebox.c:451 #, c-format msgid "%d x %d dpi" msgstr "%d x %d ppp" -#: app/widgets/gimpsizebox.c:578 +#: app/widgets/gimpsizebox.c:455 #, c-format msgid "%d dpi" msgstr "%d ppp" @@ -10983,6 +10999,10 @@ msgid "Image Editor" msgstr "Editor de imagen" +# Quizá mejor Relación de aspecto. FVD +#~ msgid "Keep aspect ratio" +#~ msgstr "Mantener proporción" + #~ msgid "Y:" #~ msgstr "Y:" diff -uraN gimp-2.2.0/po/eu.gmo gimp-2.2.1/po/eu.gmo --- gimp-2.2.0/po/eu.gmo 2004-12-19 03:11:54.000000000 +0100 +++ gimp-2.2.1/po/eu.gmo 2004-12-28 16:58:42.000000000 +0100 @@ -186,7 +186,7 @@ did not save indexed colormaps correctly. Substituting grayscale map.YellowYellow:You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom factor: %d:1Zoom inZoom in & outZoom outZoom:[ Base Image ]_Antialiasing_Auto_B_Blending Function for Segment_Blending Function for Selection_Brightness:_Brush_C_Delete Segment_Delete Selection_Flip Segment_Flip Selection_G_Gradient_Horizontal:_Hue:_Icon:_Import_Lightness:_M_Manually_Name:_Pattern_Preview_R_Redo_Redo %s_Replicate Segment..._Replicate Selection..._Saturation:_Selection_Undo_Undo %s_Vertical:_X:_Y_Y:_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for token %sinvalid value '%s' for token %smillimetermillimeterspercentpicapicaspixelpixelspixels/%apixels/%spointpointstips-locale:Cvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: eu Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-19 03:11+0100 +POT-Creation-Date: 2004-12-28 16:58+0100 PO-Revision-Date: 2004-04-06 17:02+0200 Last-Translator: Iñaki Larrañaga Murgoitio Language-Team: Basque diff -uraN gimp-2.2.0/po/eu.po gimp-2.2.1/po/eu.po --- gimp-2.2.0/po/eu.po 2004-12-19 03:11:24.000000000 +0100 +++ gimp-2.2.1/po/eu.po 2004-12-28 16:58:29.000000000 +0100 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: eu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-19 03:11+0100\n" +"POT-Creation-Date: 2004-12-28 16:58+0100\n" "PO-Revision-Date: 2004-04-06 17:02+0200\n" "Last-Translator: Iñaki Larrañaga Murgoitio \n" "Language-Team: Basque \n" @@ -1170,11 +1170,11 @@ msgid "Remove dangling entries" msgstr "/Kendu zintzilik dauden _sarrerak " -#: app/actions/documents-commands.c:252 app/actions/file-commands.c:163 +#: app/actions/documents-commands.c:251 app/actions/file-commands.c:163 #: app/dialogs/file-open-dialog.c:198 app/dialogs/file-open-dialog.c:249 #: app/dialogs/file-open-location-dialog.c:193 -#: app/display/gimpdisplayshell-dnd.c:332 app/widgets/gimplayertreeview.c:802 -#: app/widgets/gimptoolbox-dnd.c:123 +#: app/display/gimpdisplayshell-dnd.c:334 app/widgets/gimplayertreeview.c:804 +#: app/widgets/gimptoolbox-dnd.c:125 #, c-format msgid "" "Opening '%s' failed:\n" @@ -1762,115 +1762,115 @@ msgid "Zoom all" msgstr "Handiagotu dena" -#: app/actions/gradient-editor-actions.c:582 +#: app/actions/gradient-editor-actions.c:589 msgid "_Blending Function for Segment" msgstr "Segmentuaren nahas_te-funtzioa" -#: app/actions/gradient-editor-actions.c:584 +#: app/actions/gradient-editor-actions.c:591 msgid "Coloring _Type for Segment" msgstr "Seg_mentuaren koloreztatze-mota" -#: app/actions/gradient-editor-actions.c:587 +#: app/actions/gradient-editor-actions.c:594 msgid "_Flip Segment" msgstr "_Irauli segmentua" -#: app/actions/gradient-editor-actions.c:589 +#: app/actions/gradient-editor-actions.c:596 msgid "_Replicate Segment..." msgstr "Egin _segmentuaren erreplika..." -#: app/actions/gradient-editor-actions.c:591 +#: app/actions/gradient-editor-actions.c:598 msgid "Split Segment at _Midpoint" msgstr "Zatitu segmentua _erditik" -#: app/actions/gradient-editor-actions.c:593 +#: app/actions/gradient-editor-actions.c:600 msgid "Split Segment _Uniformly..." msgstr "Zatitu segmentua _modu uniformean..." -#: app/actions/gradient-editor-actions.c:595 +#: app/actions/gradient-editor-actions.c:602 msgid "_Delete Segment" msgstr "_Ezabatu segmentua" -#: app/actions/gradient-editor-actions.c:597 +#: app/actions/gradient-editor-actions.c:604 msgid "Re-_center Segment's Midpoint" msgstr "Zentratu berriro segmen_tuaren erdiko puntua" -#: app/actions/gradient-editor-actions.c:599 +#: app/actions/gradient-editor-actions.c:606 msgid "Re-distribute _Handles in Segment" msgstr "Banatu berriro _heldulekuak segmentuan" -#: app/actions/gradient-editor-actions.c:604 +#: app/actions/gradient-editor-actions.c:611 msgid "_Blending Function for Selection" msgstr "Hautapenaren nahas_te-funtzioa" -#: app/actions/gradient-editor-actions.c:606 +#: app/actions/gradient-editor-actions.c:613 msgid "Coloring _Type for Selection" msgstr "Hautapenaren kolore_ztatze-mota" -#: app/actions/gradient-editor-actions.c:609 +#: app/actions/gradient-editor-actions.c:616 msgid "_Flip Selection" msgstr "_Irauli hautapena" -#: app/actions/gradient-editor-actions.c:611 +#: app/actions/gradient-editor-actions.c:618 msgid "_Replicate Selection..." msgstr "_Egin hautapenaren erreplika..." -#: app/actions/gradient-editor-actions.c:613 +#: app/actions/gradient-editor-actions.c:620 msgid "Split Segments at _Midpoints" msgstr "Zatitu segmentuak e_rditik" -#: app/actions/gradient-editor-actions.c:615 +#: app/actions/gradient-editor-actions.c:622 msgid "Split Segments _Uniformly..." msgstr "Zatitu segmentuak _modu uniformean..." -#: app/actions/gradient-editor-actions.c:617 +#: app/actions/gradient-editor-actions.c:624 msgid "_Delete Selection" msgstr "E_zabatu hautapena" -#: app/actions/gradient-editor-actions.c:619 +#: app/actions/gradient-editor-actions.c:626 msgid "Re-_center Midpoints in Selection" msgstr "Zentratu _berriro erdiko puntuak hautapenean" -#: app/actions/gradient-editor-actions.c:621 +#: app/actions/gradient-editor-actions.c:628 msgid "Re-distribute _Handles in Selection" msgstr "Banatu berriro _heldulekuak hautapenean" -#: app/actions/gradient-editor-commands.c:84 +#: app/actions/gradient-editor-commands.c:85 msgid "Left Endpoint Color" msgstr "Ezkerreko amaiera-puntuaren kolorea" -#: app/actions/gradient-editor-commands.c:86 +#: app/actions/gradient-editor-commands.c:87 msgid "Gradient Segment's Left Endpoint Color" msgstr "Gradientearen segmentuaren ezkerreko amaiera-puntuaren kolorea" -#: app/actions/gradient-editor-commands.c:186 +#: app/actions/gradient-editor-commands.c:189 msgid "Right Endpoint Color" msgstr "Eskuineko amaiera-puntuaren kolorea" -#: app/actions/gradient-editor-commands.c:188 +#: app/actions/gradient-editor-commands.c:191 msgid "Gradient Segment's Right Endpoint Color" msgstr "Gradientearen segmentuaren eskuineko amaiera-puntuaren kolorea" -#: app/actions/gradient-editor-commands.c:353 +#: app/actions/gradient-editor-commands.c:358 msgid "Replicate Segment" msgstr "Egin segmentuaren erreplika" -#: app/actions/gradient-editor-commands.c:354 +#: app/actions/gradient-editor-commands.c:359 msgid "Replicate Gradient Segment" msgstr "Egin gradientearen segmentuaren erreplika" -#: app/actions/gradient-editor-commands.c:358 +#: app/actions/gradient-editor-commands.c:363 msgid "Replicate Selection" msgstr "Egin hautapenaren erreplika" -#: app/actions/gradient-editor-commands.c:359 +#: app/actions/gradient-editor-commands.c:364 msgid "Replicate Gradient Selection" msgstr "Egin gradientearen hautapenaren erreplika" -#: app/actions/gradient-editor-commands.c:371 +#: app/actions/gradient-editor-commands.c:376 msgid "Replicate" msgstr "Egin erreplika" -#: app/actions/gradient-editor-commands.c:386 +#: app/actions/gradient-editor-commands.c:391 msgid "" "Select the number of times\n" "to replicate the selected segment." @@ -1878,7 +1878,7 @@ "Hautatu hautatutako segmentuaren erreplika\n" "zenbat aldiz egin behar den." -#: app/actions/gradient-editor-commands.c:389 +#: app/actions/gradient-editor-commands.c:394 msgid "" "Select the number of times\n" "to replicate the selection." @@ -1886,27 +1886,27 @@ "Hautatu hautapenaren erreplika\n" "zenbat aldiz egin behar den." -#: app/actions/gradient-editor-commands.c:444 +#: app/actions/gradient-editor-commands.c:452 msgid "Split Segment Uniformly" msgstr "Zatitu segmentua modu uniformean" -#: app/actions/gradient-editor-commands.c:445 +#: app/actions/gradient-editor-commands.c:453 msgid "Split Gradient Segment Uniformly" msgstr "Zatitu gradientearen segmentua modu uniformean" -#: app/actions/gradient-editor-commands.c:449 +#: app/actions/gradient-editor-commands.c:457 msgid "Split Segments Uniformly" msgstr "Zatitu segmentuak modu uniformean" -#: app/actions/gradient-editor-commands.c:450 +#: app/actions/gradient-editor-commands.c:458 msgid "Split Gradient Segments Uniformly" msgstr "Zatitu gradientearen segmentuak modu uniformean" -#: app/actions/gradient-editor-commands.c:462 +#: app/actions/gradient-editor-commands.c:470 msgid "Split" msgstr "Zatitu" -#: app/actions/gradient-editor-commands.c:478 +#: app/actions/gradient-editor-commands.c:486 msgid "" "Select the number of uniform parts\n" "in which to split the selected segment." @@ -1914,7 +1914,7 @@ "Hautatu zenbat zati uniformetan zatitu \n" "behar den hautatutako segmentua." -#: app/actions/gradient-editor-commands.c:481 +#: app/actions/gradient-editor-commands.c:489 msgid "" "Select the number of uniform parts\n" "in which to split the segments in the selection." @@ -2435,7 +2435,7 @@ #: app/actions/layers-commands.c:232 app/actions/layers-commands.c:234 #: app/actions/layers-commands.c:291 app/actions/layers-commands.c:295 -#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:840 +#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:842 msgid "New Layer" msgstr "Geruza berria" @@ -2447,7 +2447,7 @@ msgid "Set Layer Boundary Size" msgstr "Ezarri geruzaren mugaren tamaina" -#: app/actions/layers-commands.c:512 app/core/gimplayer.c:255 +#: app/actions/layers-commands.c:512 app/core/gimplayer.c:253 msgid "Scale Layer" msgstr "Eskalatu geruza" @@ -2459,7 +2459,7 @@ msgid "Layer Mask to Selection" msgstr "/Geruza/Maskara/_Maskara hautapenera" -#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1085 +#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1066 #: app/dialogs/layer-add-mask-dialog.c:62 msgid "Add Layer Mask" msgstr "Gehitu geruza-maskara" @@ -3095,7 +3095,7 @@ msgstr "Ireki testu-fitxategia (UTF-8)" #: app/actions/text-editor-commands.c:132 app/config/gimpconfig-utils.c:552 -#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:393 +#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:396 #: app/core/gimpbrushgenerated.c:601 app/core/gimpbrushpipe.c:338 #: app/core/gimpgradient-load.c:63 app/core/gimppalette.c:360 #: app/core/gimppattern.c:328 app/tools/gimpimagemaptool.c:608 @@ -5102,7 +5102,7 @@ msgid "FG to Transparent" msgstr "Aurreko planoa gardenera" -#: app/core/gimp-gui.c:148 +#: app/core/gimp-gui.c:153 msgid "GIMP" msgstr "GIMP" @@ -5134,42 +5134,59 @@ msgid "Modules" msgstr "Moduluak" -#: app/core/gimpbrush.c:531 +#: app/core/gimpbrush.c:534 #, c-format msgid "Could not read %d bytes from '%s': %s" msgstr "Ezin dira %d byte irakurri '%s'(e)tik: %s" -#: app/core/gimpbrush.c:566 +#: app/core/gimpbrush.c:554 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Width = 0." +msgstr "Analisi-errore larria '%s' brotxa-fitxategian: %d sakonera ezezaguna." + +#: app/core/gimpbrush.c:563 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Height = 0." +msgstr "" +"Analisi-errore larria '%s' brotxa-fitxategian: fitxategia hondatuta dago." + +#: app/core/gimpbrush.c:572 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Bytes = 0." +msgstr "" +"Analisi-errore larria '%s' brotxa-fitxategian: fitxategia hondatuta dago." + +#: app/core/gimpbrush.c:596 #, c-format msgid "Fatal parse error in brush file '%s': Unknown depth %d." msgstr "Analisi-errore larria '%s' brotxa-fitxategian: %d sakonera ezezaguna." -#: app/core/gimpbrush.c:579 +#: app/core/gimpbrush.c:609 #, c-format msgid "Fatal parse error in brush file '%s': Unknown version %d." msgstr "" "Analisi-errore larria: '%s' brotxa-fitxategian:: %d brotxa-bertsio ezezaguna." -#: app/core/gimpbrush.c:595 app/core/gimpbrush.c:715 +#: app/core/gimpbrush.c:625 app/core/gimpbrush.c:745 #, c-format msgid "Fatal parse error in brush file '%s': File appears truncated." msgstr "" "Analisi-errore larria '%s' brotxa-fitxategian: fitxategia trunkatuta ageri " "da." -#: app/core/gimpbrush.c:603 app/core/gimpbrushgenerated.c:648 +#: app/core/gimpbrush.c:633 app/core/gimpbrushgenerated.c:648 #: app/core/gimpbrushpipe.c:354 #, c-format msgid "Invalid UTF-8 string in brush file '%s'." msgstr "UTF-8 kate baliogabea '%s' brotxa-fitxategian." -#: app/core/gimpbrush.c:610 app/core/gimpcontext.c:1299 -#: app/core/gimpitem.c:479 app/core/gimppattern.c:400 +#: app/core/gimpbrush.c:640 app/core/gimpcontext.c:1299 +#: app/core/gimpitem.c:480 app/core/gimppattern.c:400 #: app/dialogs/template-options-dialog.c:80 app/tools/gimpvectortool.c:339 msgid "Unnamed" msgstr "Izengabea" -#: app/core/gimpbrush.c:704 +#: app/core/gimpbrush.c:734 #, c-format msgid "" "Fatal parse error in brush file '%s': Unsupported brush depth %d\n" @@ -5341,11 +5358,11 @@ "%s" #: app/core/gimpdatafactory.c:411 app/core/gimpdatafactory.c:414 -#: app/core/gimpitem.c:274 app/core/gimpitem.c:277 +#: app/core/gimpitem.c:275 app/core/gimpitem.c:278 msgid "copy" msgstr "kopiatu" -#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:286 +#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:287 #, c-format msgid "%s copy" msgstr "%s(r)en kopia" @@ -5407,7 +5424,7 @@ msgid "Rotate" msgstr "Biratu" -#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:259 +#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:257 msgid "Transform Layer" msgstr "Eraldatu geruza" @@ -5777,7 +5794,7 @@ #. pixel size #: app/core/gimpimagefile.c:624 app/dialogs/info-window.c:552 -#: app/widgets/gimpsizebox.c:552 app/widgets/gimptemplateeditor.c:637 +#: app/widgets/gimpsizebox.c:429 app/widgets/gimptemplateeditor.c:637 #: app/widgets/gimptemplateeditor.c:673 #, c-format msgid "%d x %d pixels" @@ -5797,15 +5814,15 @@ msgid "Could not open thumbnail '%s': %s" msgstr "Ezin izan da koadro txikien '%s' fitxategia ireki: %s " -#: app/core/gimpitem.c:1096 +#: app/core/gimpitem.c:1103 msgid "Attach Parasite" msgstr "Erantsi parasitoa" -#: app/core/gimpitem.c:1106 +#: app/core/gimpitem.c:1113 msgid "Attach Parasite to Item" msgstr "Erantsi parasitoa elementuari" -#: app/core/gimpitem.c:1145 app/core/gimpitem.c:1152 +#: app/core/gimpitem.c:1152 app/core/gimpitem.c:1159 msgid "Remove Parasite from Item" msgstr "Kendu parasitoa elementutik" @@ -5833,76 +5850,76 @@ msgid "Floating Selection to Layer" msgstr "Hautapen mugikorra geruzara" -#: app/core/gimplayer.c:252 app/pdb/internal_procs.c:152 +#: app/core/gimplayer.c:250 app/pdb/internal_procs.c:152 msgid "Layer" msgstr "Geruza" -#: app/core/gimplayer.c:253 +#: app/core/gimplayer.c:251 msgid "Rename Layer" msgstr "Aldatu geruzaren izena" -#: app/core/gimplayer.c:254 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 +#: app/core/gimplayer.c:252 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 msgid "Move Layer" msgstr "Aldatu geruza lekuz" -#: app/core/gimplayer.c:256 +#: app/core/gimplayer.c:254 msgid "Resize Layer" msgstr "Aldatu geruza tamainaz" -#: app/core/gimplayer.c:257 +#: app/core/gimplayer.c:255 msgid "Flip Layer" msgstr "Irauli geruza" -#: app/core/gimplayer.c:258 +#: app/core/gimplayer.c:256 msgid "Rotate Layer" msgstr "Biratu geruza" -#: app/core/gimplayer.c:341 app/core/gimplayer.c:1129 +#: app/core/gimplayer.c:339 app/core/gimplayer.c:1110 #: app/core/gimplayermask.c:236 #, c-format msgid "%s mask" msgstr "%s maskara" -#: app/core/gimplayer.c:387 +#: app/core/gimplayer.c:385 #, fuzzy, c-format msgid "" "Floating Selection\n" "(%s)" msgstr "Hautapen mugikorra" -#: app/core/gimplayer.c:1055 +#: app/core/gimplayer.c:1036 msgid "Cannot add layer mask to layer which is not part of an image." msgstr "Ezin da geruza-maskara gehitu irudi baten zati ez den geruzari." -#: app/core/gimplayer.c:1062 +#: app/core/gimplayer.c:1043 msgid "Unable to add a layer mask since the layer already has one." msgstr "Ezin da geruza-maskara gehitu, geruzak dagoeneko baduelako bat." -#: app/core/gimplayer.c:1069 +#: app/core/gimplayer.c:1050 msgid "Cannot add layer mask to a layer with no alpha channel." msgstr "Ezin zaio geruza-maskara gehitu alfa kanalik ez duen geruzari." -#: app/core/gimplayer.c:1079 +#: app/core/gimplayer.c:1060 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "Ezin da aipatutako geruzaren neurriak ez dituen geruza-maskara gehitu." -#: app/core/gimplayer.c:1183 +#: app/core/gimplayer.c:1164 msgid "Transfer Alpha to Mask" msgstr "" -#: app/core/gimplayer.c:1343 +#: app/core/gimplayer.c:1324 msgid "Apply Layer Mask" msgstr "Aplikatu geruza-maskara" -#: app/core/gimplayer.c:1344 +#: app/core/gimplayer.c:1325 msgid "Delete Layer Mask" msgstr "Ezabatu geruza-maskara" -#: app/core/gimplayer.c:1445 +#: app/core/gimplayer.c:1426 msgid "Add Alpha Channel" msgstr "Gehitu alfa kanala" -#: app/core/gimplayer.c:1467 +#: app/core/gimplayer.c:1448 msgid "Layer to Image Size" msgstr "Geruza irudi-tamainara" @@ -7447,32 +7464,32 @@ msgstr "Inprimatze-tamaina:" #. the image size labels -#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:241 +#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:222 #: app/widgets/gimptemplateeditor.c:236 #, fuzzy msgid "_Width:" msgstr "Zabalera:" -#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:248 +#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:225 #: app/widgets/gimptemplateeditor.c:243 #, fuzzy msgid "H_eight:" msgstr "Altuera:" #. the resolution labels -#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:338 +#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:273 #: app/widgets/gimptemplateeditor.c:363 #, fuzzy msgid "_X resolution:" msgstr "Bereizmena:" -#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:345 +#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:276 #: app/widgets/gimptemplateeditor.c:370 #, fuzzy msgid "_Y resolution:" msgstr "Bereizmena:" -#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:357 +#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:269 #: app/widgets/gimptemplateeditor.c:383 #, c-format msgid "pixels/%a" @@ -8121,11 +8138,11 @@ msgid "%d minutes" msgstr "" -#: app/display/gimpdisplayshell-dnd.c:96 +#: app/display/gimpdisplayshell-dnd.c:98 msgid "Drop New Layer" msgstr "Bota geruza berria" -#: app/display/gimpdisplayshell-dnd.c:140 +#: app/display/gimpdisplayshell-dnd.c:142 msgid "Drop New Path" msgstr "Bota bide berria" @@ -9672,12 +9689,12 @@ msgstr "Pintzela" #: app/tools/gimppaintoptions-gui.c:103 app/widgets/gimpbrushselect.c:201 -#: app/widgets/gimplayertreeview.c:330 +#: app/widgets/gimplayertreeview.c:332 msgid "Opacity:" msgstr "Opakutasuna:" #: app/tools/gimppaintoptions-gui.c:108 app/tools/gimpselectionoptions.c:374 -#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:323 +#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:325 msgid "Mode:" msgstr "Modua:" @@ -11138,25 +11155,25 @@ msgid "Set Item Exclusive Linked" msgstr "Ezarri elementua esklusiboki ikusgai" -#: app/widgets/gimplayertreeview.c:250 +#: app/widgets/gimplayertreeview.c:252 msgid "Reorder Layer" msgstr "Ordenatu berriro geruza" -#: app/widgets/gimplayertreeview.c:311 +#: app/widgets/gimplayertreeview.c:313 #, fuzzy msgid "Keep transparency" msgstr "Mantendu gardentasuna" -#: app/widgets/gimplayertreeview.c:846 +#: app/widgets/gimplayertreeview.c:848 msgid "Empty Layer" msgstr "Hustu testuaren geruza" -#: app/widgets/gimpmessagebox.c:458 +#: app/widgets/gimpmessagebox.c:460 #, c-format msgid "Message repeated %d times." msgstr "%d aldiz errepikatutako mezua." -#: app/widgets/gimpmessagebox.c:460 +#: app/widgets/gimpmessagebox.c:462 msgid "Message repeated once." msgstr "Mezua behin errepikatu da." @@ -11185,17 +11202,12 @@ msgid "Invalid UTF-8" msgstr "UTF-8 baliogabea" -#: app/widgets/gimpsizebox.c:290 -#, fuzzy -msgid "Keep aspect ratio" -msgstr "Aspektu-erlazio finkoa" - -#: app/widgets/gimpsizebox.c:574 +#: app/widgets/gimpsizebox.c:451 #, fuzzy, c-format msgid "%d x %d dpi" msgstr "%d x %d pixel" -#: app/widgets/gimpsizebox.c:578 +#: app/widgets/gimpsizebox.c:455 #, fuzzy, c-format msgid "%d dpi" msgstr "dpi" @@ -11676,6 +11688,10 @@ msgid "Image Editor" msgstr "Irudi-zerrenda" +#, fuzzy +#~ msgid "Keep aspect ratio" +#~ msgstr "Aspektu-erlazio finkoa" + #~ msgid "Y:" #~ msgstr "Y:" diff -uraN gimp-2.2.0/po/fi.gmo gimp-2.2.1/po/fi.gmo --- gimp-2.2.0/po/fi.gmo 2004-12-19 03:11:54.000000000 +0100 +++ gimp-2.2.1/po/fi.gmo 2004-12-28 16:58:42.000000000 +0100 @@ -1,137 +1,264 @@ -d&eL@fAf&WfG~f9fGgAHgNgig<Chkh@h2-i;`iPiOi2=j9pj-j9j;k7Nk k kk -kkk -kkkkl-lCl0Jl{lllllll l lKl7m.m1mn-nvLvCSv7v=v@ w6Nwdwwx3xRx<fx#x!x x xxy y8yPy,byyy yy yyzz z.z 4z.Bz5qz5zOz -{;{W{o{{{{ {{ {{0{||8|U|+^||||| -||||}$}9} B}N}}}}} ~&~F~[~d~ -v~~ -~)~~,~#6#Z!~%&#<-`%ʀ  -% -0;SZ i -v- ˁЁց݁%! +8K]m --    -# .;T\o  Ƀ?Ѓ !+:@ -V -a lx >!&>Qj  Ѕ  -*0.[#"ӆ&2 Yey,#Ӈ ڇ'=ZwFÈT -_f|  - ؉) /$;=`6<ՊA7T9cƋ9*Bd=f>LCJύg Ɏ ֎ *AQlʏ  - * FRb~  -O͐ -(֑   #0 H Ubsuc zr+4FVk&|' ˖ ז    (7IOgx| Ǘ ϗ ܗ -H Q[k -sH~!ǘB,01?qv{ -`0$* -< -GRiy Ú -њHܚ% ,8G Vcy ͛ԛ ܛ )?[ _ m3z6 *$9^y (ޝ+)3*]!/ڞ*,-5c v 3 % 2?]|ɡ Сܡ@ N-U  ˢע  & >J -`k  -ǣң3; -B M Zh}֤ ߤ$9K_n} - - ǥ ֥3: -C NZl  ,)&+:ARBeA /7?ĨӨۨ - +"J!m ʩԩ V +`("ު %2 -Xckz - ϫ  #@^p -v - ¬ ߬ ! . =Kfm?uĭ̭ *4̮ -- @JS c#m- ˰հݰ˱ Ա (, = G!Q s   -Ҳݲ  !#E!c# 9U=F<=  (,B -ozJ ۵ , F;R Ķ Զ  9Vh|+· ѷ ޷ /6G~ 7Ҹ (: Xdy -  -͹ ع4DatE  # 1 =If -ny -û ӻ' =I`wļ ݼ  /Ic}=ɽ6S>J ݾ !-<Qd xÿٿ)N3KG=*U?`2!T4/<l'/5<DTfl    ,AQ`q+  !) 28?vx !?Ws & 3?HQ#Z ~  - -175WH;!4*B| 5P102CcS(,|2 AA?*X FS"qG]2~ - -!', ;HZ jw}   + -8CH;Q; ku z3 %BKFT KQe$5#PYG-j oeja~pKow,<?>!t`t`J5 6o0#G  - )5G O]fl {  ) , 6CIP Xd gqx - - -5"X jt   - $*0 7 AKQX.kT -&aT<IM=_iEUvD5W7X[?z<9F1=x1 & ; -GR[{ <%D M Waf wW"]3) @M bp&6!<^w!% 2R [eu(| &% 3:PXho~ +29>Net}   -$ - /9@F N1X  ?,l}  - -  - "+ N 6V : 7 @ -2A -Xt -$ - -- @ 4W & )    -   ( @ %V |         -    5- <c A M 0B'a ASZn}'   - -,A[ co  - -%)Cm # -8#?*c+5:)+4U!    -&5Kby - - -,4apx - -    /<OBm  -"-A] fp = - " 9F -]hxD=Um    (&: a  *$6[/m(  %-E_$~()J\A @>T##   -*<I06;E* 9p ; 5 E!<b!_!,!O,"9|"?""##+#=#L#]#n####### $$/>$n$$$ $ $$$$$ %%-%=% O%Y%`%h%x% -% -%;% %%{&& &&&&& &''&' 7'E'Y'vx''({) *x.****T+ l+x++++0+.+ +, L, Z, h,v, },,, ,,,,,,,--1-H-O-W-_-h- -|----B- - -..4.!J.Ql...4. -//#/(///{6/.// / / -/ -0 -%000H0`0 t0 0J00 00 0 11.1?1O1 `1j11 -1 -11 -11&1'2 -)242 E2-O2D}222223$3<3P3e3<3-3633$44X434&4I4 25?5P5 b55J56 666 7 717D67{777 7 7778+8J8`8f8l8&88Z8 -929P9 V9*b9 99999 9 9: :#: -=:H: b:n:::::: ::: -:; ;*; I;S; Y;g;v;;;;;; ; -<<< <(< A<b<{< <<<<<< << < -==*=!F="h= == -= === = = -== ->3>Q>f> >>>>>8>$? ;? E?R? -e?p? -???@@O@V@^@ c@#m@$@@#@$@)A)?A iAvAA A A -AUA -B?'BgB.nBBB B#B(C/C8C@CVCjCyCCCCCCCC CCCCD?DPDVD\D cDpDD DD!D -DD D DE/E?E VE bE6oEEEEE0E4FSF#F GG!*GLH[HaH qH(H.H HH -HH IIIIIJ -JJ$JBJ aJmJqJ J -J!JJJJ JJ -K"K @KLKlKK KKKKKL 1L<=LIzL<L=MH?MMM M MM.M NNO3NN NN NNN NN OO$O?OROlO}OOOOO -OOO$P -P9P MPYP kP yPPPP=P P QQ@.Q%oQ$Q -QQ QQQR&R5R >R KRWR`R}RR RRRS/SHSeS~SSLSST'#TKTTT dT rTTT TTTT TTTU U++UWUvUUUUUUV-VFV`V vVVVV)VVVW#5WYW"qW*W$W$W XX X-X AXKX\XnX~XXXXXXXYY1YLZ|PZ_Z/-[][.[>\BT\)\\m^57_2m__r`y`` ``` `` ` ``a%a7aKa^a$vaaaaaa bb#b1)b[babub}bbbbb b -bb>bvccc c!cccc d d4d GdUd[d{ddddd d ddee e&e=e De -Re]eoe@teHe:e9f1Qfffhg1h!hGj3Hj |kkll ll-l~l*cm)m8m~m4pn=n7noV8pMp4pqqrbs/ttuv<Yc=<yoEd[<@S;DF{nhop1+,v>QpJj+]rv\fl/+0=G=}$l / k:$^Md(~5U3:{ IJt& -&'ht<em\a{X!|PDOWYL4Fmwy96Bum}{Gw*7}q[6Qih9#f%J`XPSn&0I=EvM/gws~kjqdz.sT?[V8e87ZMN2%V^6l -SXrct -;B4|CN--*&NkR5qd80mx}Q+Vb9iCSCw[@6h& -fTN1bc"u+,C_j\efT}K9SUz"~W_u^n8,3.5Rq7vQUxk  #]^E.;hHLgn1.mtt7 LHs v'Y_UL )EGA$|)Ik4!`'( {so?r!Z@|-b:aN_bPH,ODj<c0!>J0Z/Wg",:C?xT* -xT:Z*Kz 5qHzB$oAgz`!DXKI/U [WJ8 i])Vy7O=~]V?P9F)(>xay43R AQlIZ| #`ui(2r232r*)wi3^b$;L;''YjB1D%y<egp\@]GcOY -lp FpKAu5% ?aPHBAKo R\ ""G%4On@~#` _M(#>e2F aRf X6-M +Q Jm ,&kG9G ATNi<Ok@29;lPO2I9|-9;7Z  + + +  + +/:BJf0 +%,4< K Y e +s +~   K4.1!=OVel +   +0 CM\ +ep*6Uh >Sg#{ + 4H P Z gq13)0 + ' +4?PbrAJ<# ` n| )2I[ lz +&$$IP V `nu"  + &7K7_    m   C7J=@6d83<#V!z   6Nfx,%?G Zh ! +4= F Tau|  .5 5A7w8),?[s2 OAk%&41/#a    ++6> DR hu0   'B_+h   + $1Vix &";^t  @IZ bo "" ,EN +` ky +),!.#P#t!%.. 5ARfy#-% +0F\w  + + + + % 3@P`s  +-  4 8BGM^q    *7>D%J!p & "5 GUd t   )FXg + +-    + + "5Hai|   :?X8   +"-3 +I T b n +{ +   > 9Zj|  .;@Xk  ! +/: +R] u     +'*8cl!~.# "/Ro& ,#!EL [i|'' 6RFlT "8 Kl  +   ++= C O[q(z$=6 <C?A79:ct9B=Uf>C9J}g 0<L ^l      $9L`s +'.7Vq  +   + % 5CV +gr    4 (M v |       + O  + + +$ + + + + + +    ' 3  < .H w    +           $ 1 B V m u|    c zr4=O^gw&'      )5 :DJQV hu$-C Z +do x   +-H5 +~  +H!B!dh1w  + + `"C1a0   + + #3Dcv ( + +H +$ / +<G NZi x    &- 5C\ .JN ` n {K36 @O"e  $ , : [(|+)*!&H/Z*' +2BR[ +mx *Kfw    ) 9 S g !        ! !?!X!-g!""""" """" ##3!#U#f#~## # +# # ###$4$M$a$r$ $$$ $$$$$@$@%-G%u% %% % % %%% %% % &&%&D&c&w& & & && &&& '' +%'0'E' ['i' '' +'''''''''((/( E(S(h(( +(#((((() )))+F)r)z) ) ) +) ) ))))** 1*>* M*[*n**"**** ++++!+$7+\+n+++ ++ + +++ + +, +, #, +0,;, K,U,d, t, ~,,,,,,,-)-0-9- L-X-k--- +- ----- - -.. !. .. 8.D.a.p.. . +. .. . .. / / /,(/U/!h////)/ / 0 !0 /0;0@0O0V0 g0 s00B0A0171L1 ^1h1o1~1 111111W2f2x222 +22 222 223#3"B3!e3!3333 3 3 44 4/4 74E4VM4+4 4(45" 5,5 B5 N5Z5t5%5 +5 55555 +6 6 6*6 36A6 U6 _6m6s66 6 6 66&6,7 /7<7A7 +Q7 +\7g7777774738E8 +K8V8^8 +n8 y888 8888 88 8!9'9 69D9 Z9f9w99 999 999;9?':g:v:~:::::4~;;;-; <<= += =#*=N=-a= === ===== +> >>>>> >>? ??(? +@? +K?V?l? +|? ? ???? ? ?!?@ @@*@ 9@ F@S@n@u@ }@@@ @@ +@@@ AA (A4A +GARAdAAAA A!AA!A#B;B QB +^B9iBUB=B<7C=tCC"C?CD-D >DJDNDSD(XD,DDDDD +DDE(EJYHYYYoY~YYYY YYYZZ .Z:ZSZeZ yZZZZZZ [$[ 8[D[Y[n[~[[[)T\N~\\K]=-^k^*^__3b`T`?``+a2aaAbc4d/)eYe f f(f.f5fFfWfjfrfffffff f f g;gPg `gmg}g gg ggg#g hh (h 6h&Chjh +}hhhhh"hhi"i2iCibixiiiii iii jjj(j=j+Cjojujj jj jj j +jjjjj j k8kvGkkkkk k +ll l!=l_lwlllllmmmm'm;mUm \m im um mmm mmm mm m mn!n!0nRnfn(nn#n n nnn +n o oo.oBo]o +bo mo +yo oooKo1o7)p1ap5pHpAqTq;q!r=r r s tu}u*;vBfwwxx1yy yy)y5y/z1z0{0B{1s{({C{|S|,|2} G}Ah~A~*~ 1܃,/GȆ2N6 - +ȉۉ !'9L er  ŊΊ ֊ +< 1? V`rԌ0@ O\p +3;; \F LV [ hv| Ɛϐ 3&#Z~ӑ   =FFO + +̒ ђ ߒ    !#!E g s+K0Q(z$5ەPGb-Oؗj(oeji~ԙpSoĚw4<?>)thtݜ`R=0Þ( 9G6Io4#6ZG#%kXUO@ +ʢ բ  #= ES\bqx£ ԣޣ    (. 1;Ni  ä̤   +  * 4BV] +do w åɥإ  +%7 GUd t   ¦Ϧ + 7CR[ u  +ȧק->P `    Ψݨ  (58 A K +U +`k  ĩ˩ҩک  ( 0=DKSm| + ɪ ժ  #/ 2<AGZu~ ϫ ܫ  + - = K +Y d r     ƬЬ׬ +ݬ   ".7 >L\c l y    ȭԭ   %2G Zgmv(&84R1// 7DJ^#o Ӱڰ" +%0BSZcy DZܱ + + +  *0@FM +mx +̲ "15 +;FMR5V ij ̳ڳ!  2S +s ~  ɴϴִ ݴ.-%Jp-ja#<I·M _ZiE$vjD7&7^X[;K<9ĻF=E1 +żм ټ  +   &): O +[fo ½8н  5AP +oz      +Ǿ +Ҿ ݾ    ! 2W@"3;o.> M[m  +D]r& !#E^u!8%,Rr{ (& 7&X%Q /9Rh +20c9u +-C![-} ! + 4 @ LYq-$   +!3;!C e1o -?L  + + "L=    "6":Y7@2 X@$- 5#&Y*%!  +'<Vk! %(#Nry     )<N`hpx   5+<aAAE"0h. ' 61%h'MG*g,;8(4]o  '1 CPW]v A $3 : F R^y'   +  ( +2 =I%b!-BT,n  ~ + + ), H6T6,  #1 +U4`"*+!51:g)4!,# P +^ iv  3G^u{ + + + + +2BT gu -  -AIY`hy * ; +G +R ]i  %  +<K \i z      +>*NyB  &/6E +`k + + &*=@=~.  +*5F]o    +':J[Dm# -<Kb  $<X ly!"2Rf   &(OW+f  3EXs $/( ' 1 >K%_6%$*@)kJ\= E O[u @>E##   0H _*i*<2 =>1|2E9'@a5;<WQ,O9&?` $5Nds->Oi} /Gas    *;P e$q  $#65Z   + +;/ O[  7 @ N\o+x +  (6Ui z j4H5{ vw    -?0S.       ".6 ?I[l~" 2#<` +w  +   ) %F  +l Bw      4 !" +QD + + +5 + + +   ' , E T [ b s {  P ( . ; @  R  ^  k  +w   +        + 8JB +    +  ' 1 += HUe v + +} +OZl&' + n-D +%8Jf|<-/6]343&1XIp   #6Zn$9Xq& $B"a,&"!D a*$3M'k!J'=U*Z D%4G ^ +l w 1G_qw}'Z +<3G{ + * '@\w    #  +? J  d p     +   !!'!-! C!M!U!^!g!|!!!!! !"0"C"^"%n" +""""," ## # 5# C#Q#`#q######$$&$8$V$'h$ $$"$ +$$$ $% %:%S% e%s%%%% %%%%%%&& 1&>& R&`&q&&&&&&&!&"'<' R'\'b' t' +'''' +' ''''( ( !( ++(6( +L( W( e(!q((((( +( (( ) )() D) +R) ])3j)))))** ?*K*i* |* *******8+$;+)`++++ + ++ ++++ +,,(,,,,,, -- -#--Q- c- q-${--#--$- .)!.)K. u. . .. . . . +.U.1/N/DU//./// / 0#"0(F0o0x000000000001 +1)101A1 P1]1n1}111 111 1 2222R2m222522223 3323D3U3 \3i3o3!u3 +33 3 3334 (464I4`4t444 4 4 4<46 5D5M5\5w505455#666!6777 +8 8((8Q8.f8 88 88 +88 +8 8 9 99999: +:#:):0:N: +m:x:~: +: : ::::: ; +;!;?;D;[; y; ;;(;;; ;;< +7<B< `<l<< << +<< ==.=L=h= q={=====> *> +6>=A>I>=>>?GF??)?4??@@/@ 8@ B@L@&k@@@@@ @@'A'0ANXAA A%AAA BB.B =BJB%ZBBBBBB BB CC8CSCcCkC~CCCCCCCC +D!D0D @DNDbD~D'DD)D$E$-ERE(iE EE EEEE E F-F*AF lFzF FFFF=FG 0G:GBG^G@zG%G%GHH#HAH`H rHHHHHHHHH II #I 0I :I HIiII I IIIII J%J%CJiJJ"JJJKK0KGKYKvK/KKK$KL0LFLWL0rLLLLMM)+MUMfMvMMM M M MM MMNN $N0NKNTN^gNEN OOO(O ;O IOWOkOOO%OOPP-P#GPkP!P+P%PPQ+Q!CQeQQ)Q#QQ RR-RLReR&R RRRRRS %S3S+MSySSSSSST-TMTfTTTTT TTUU-UBUXUoUUU)U0U V V?VQViV#VVV"V*V% W%FWlWWWWWW WW W!X%X 5X?XPXbXrXXXXXXXX Y-Y>YPYbYrYY YYYYY1ZQZ|[_[/[)\.\\j]9];.^>j^B^)^x__;a5b2;bnb 7cEcLcRcYcmcc ccc cccd;d Md [d id>sdddddee*e=eMeieeeee4e f)f-ivliiijj!jXn}ʼn։%- +< G S`r   ɋ׋ ( /9GP4B͌@$ +-8Ut{)̏9;Lbv!ʐِސ +8!Q s ˑۑ  +* +56@Nw<ƒ`d&&I۔M%[sWϖ5't]eҗ_8|9GVGCq*2Yϛx)i AX_gy8y { +%*QП#"^FYS'S {  + ѡ ڡ'+4 E O YgpŢע  4 AKZ ] jx ͣ ף + +A DR[n!Ȥ -B +Xcl   Υۥ    &7 Ub q~ɦݦ$!4Vjӧ'6 H R _ is   ʨ +Ԩ ߨ     .: U +alsy + ͩ +۩ #*A%a    Ϊ ۪  + +. +=HN_x~* +ګ +! 0= M[ +l w  +  +  ĬҬ۬    +(;LU^fv   +ʭ٭  "%* 0 +> IUdy ®Ѯ8  ES Zhz1Я+.A,_ !հ,/+Fr{&ıͱֱ  9HNTiyò ʲ ײ + + #+; BL\ eot dz ճ   #)8-f u +!۴!  @ +a ly  ˵ ѵ۵T5H$~uj=}swq ~d^+  87fDUOJ & LP: ?c">i~[C7X>  BDPL3<'`Mu,$ni @7|f*j\WmR*x+.l$!! h80 cgi}eWTerI"[6 ti!'Z5E_#9T5ws$f\9.#dBt 64x )(90Me |`gWA$~ 00, )z +/NFIzBJ^,NjejGf F oG wU:vAH! H2uSv7J B<l<sZB7s1 MP-Xthd5qx D }p "9 df%1> CBKj"Epw#hv yP N c{  (e; "W+-' (D5. n`$QXbV`*f #VW,?  2 [ bo1 V.IK <yjT>2 v1? < ^i%Ap~!Ucn}  3ZIH:KQ]4c '4@F_,/  +Q;) gh: +[`m}N *( * ( :Q=D8eo'E.(7 |g8 -6 pm4@aCWT@  nz i9 C99FOL7@z{2w sVi</R). Y z')(Od?)@+ +NA TF4ZI0sHBGg$ t`}c42J$3gFO C?Iqu8<#* 3L+1Gw=Y 0l"-t8!}R h'u=/(Q+U +|7?JOf?zEq,% +Ms2Tu=a{vjy-OEkTBb`#fk23<\z5R@;q&_/n2Ed_~J}:.,G$JNx\y6*B6Zb=5jJKr4tAS 8O UDUc5</XM;$R46Hm- #:0 n?4 ySb;wKm[Pmnu\"%]Sk9`#|ieG`@hxSw aNSaJP AmDY\1H ( r + 8G& kHyVK^T0n_ P ]M -yZgCkY_aoU3Y7D>= =RySk -:F6mDa B R(av.;>Kv@k%Z ,% d1 E5 q7~CQ:Y-Ns%M{1Y;# XM *zxA 2$IQ3 pILo1!CL -I *%/h32cHo +&T=rK]{8 >s P)q%[{,!S+X!xKE  >ZK^^hutzQ6]_ u>Vk ?C+qQ)xHbA/bWrODWjGo#h ^;{;r\'![UWgA^5OH Zw  p]&, +l~JMbPtaG X" U6 C 4lpq~I}vNLV b=c"r&NE&].LR SL |roX|f<LeYQ p)\/Y: /\n93llF{M]doG&>^{'F5pgV~9d  +P + |[)306.; X?a&8k@Rly["0_it VE& lr]v e* +_O1mAx'|F% Invalid option "%s" Usage: %s [option ... ] [file ... ] + --batch-interpreter + The procedure to process batch commands with. --debug-handlers Enable non-fatal debugging signal handlers. --display Use the designated X display. --dump-gimprc Output a gimprc file with default settings. @@ -153,61 +280,78 @@ -i, --no-interface Run without a user interface. -s, --no-splash Do not show the startup window. -v, --version Output version information. -%d Layers%d layers%d x %d pixels%g x %g %s%s Channel Copy%s Channel to Selection%s Message%s copy%s mask%s%sClick: extend selection%s%sDrag: move & compress(%0.3f, %0.3f, %0.3f)(None)(This console window will close in ten seconds) -(Unnamed Buffer)(Unnamed Template)(invalid UTF-8 string)(none)1 Layer1 layer<%s><>For optimal GIMP performance, some settings may have to be adjusted.The GIMP - GNU Image Manipulation Program +%d Layers%d dpi%d dpi, %s%d layers%d minutes%d seconds%d x %d dpi%d x %d dpi, %s%d x %d pixels%g x %g %s%p%s Channel Copy%s Channel to Selection%s Message%s copy%s mask%s%sClick: extend selection%s%sDrag: move & compress(%0.3f, %0.3f, %0.3f)(None)(This console window will close in ten seconds) +(Unnamed Buffer)(Unnamed Template)(Varies)(clean)(invalid UTF-8 string)(modified)(none)1 Layer1 layer15 degrees %s16:1 (1600%)1:1 (100%)1:16 (6.25%)1:2 (50%)1:4 (25%)1:8 (12.5%)2:1 (200%)2D Transform...4:1 (400%)8:1 (800%)<%s><>For optimal GIMP performance, some settings may have to be adjusted.The GIMP - GNU Image Manipulation Program Copyright (C) 1995-2004 -Spencer Kimball, Peter Mattis and the GIMP Development Team.The GIMP tips file could not be parsed!Your GIMP tips file appears to be missing!About The GIMPActive FiltersAddAdd Alpha ChannelAdd AnchorAdd ChannelAdd GuidesAdd Horizontal GuideAdd LayerAdd Layer MaskAdd PathAdd Text LayerAdd Vertical GuideAdd a Mask to the LayerAdd text to the imageAdd the current color to the color historyAdd the selected filter to the list of active filters.Add to the current selectionAdding theme '%s' (%s) -AdditionAdjust Brightness and ContrastAdjust Color BalanceAdjust Color CurvesAdjust Color LevelsAdjust brightness and contrastAdjust color balanceAdjust color curvesAdjust color levelsAdjust hue and saturationAdjust levels automaticallyAdjustmentAffect:Affected Area %sAirbrushAirbrush with variable pressureAlignedAlignmentAll ChannelsAll image and undo data which doesn't fit into the Tile Cache will be written to a swap file. This file should be located on a local filesystem with enough free space (several hundred MB). On a UNIX system, you may want to use the system-wide temp-dir ("/tmp" or "/var/tmp").Allow completely transparent regions to be filledAllow completely transparent regions to be selectedAlphaAlpha to SelectionAlpha:Anchor Floating SelectionAngle:AntialiasingAppearanceApply Layer MaskApply ThresholdAre you sure you want to delete '%s' from the list and from disk?Are you sure you want to delete template '%s' from the list and from disk?Ask for confirmation before closing an image without saving.Attach ParasiteAttach Parasite to ImageAttach Parasite to ItemAuthor:AutoAutoloadAvailable FiltersAvailable Types:BackgroundBackground color set to:Background: %d, %d, %dBase filled area on all visible layersBase selection on all visible layersBehindBevelBlack:BlendBlend: Blend: Invalid for indexed images.Blending...BlueBlue:BlurBlur or SharpenBorder ChannelBorder SelectionBorder selection byBrightness-ContrastBrightness-Contrast does not operate on indexed layers.Brush EditorBrush FoldersBrush UIBrush:BrushesBrushes MenuBucket FillBuffersBuffers MenuBurnButtCMYKC_olumns:Calibrate Monitor ResolutionCan't undo %sCancelCannot add layer mask of different dimensions than specified layer.Cannot add layer mask to a layer with no alpha channel.Cannot add layer mask to layer which is not part of an image.Cannot anchor this layer because it is not a floating selection.Cannot convert to a palette with more than 256 colors.Cannot create a new layer from the floating selection because it belongs to a layer mask or channel.Cannot create folder '%s': %sCannot create previewCannot crop because the current selection is empty.Cannot expand ${%s}Cannot float selection because the selected region is empty.Cannot raise a layer without alpha.Cannot save. Nothing is selected.Canvas SizeCenter X:CenteredChange Background ColorChange Foreground ColorChange Image ResolutionChange Image UnitChange perspective of the layer or selectionChannelChannel AttributesChannel Name:Channel cannot be lowered more.Channel cannot be raised higher.Channel to SelectionChannel:ChannelsChannels MenuClearClear ChannelClick "Continue" to accept the settings above.Click "Continue" to create your personal GIMP folder.Click "Continue" to enter the GIMP user installation.Click to update preview -%s Click to force update even if preview is up-to-dateClick: selectClick: select Drag: moveClipped to bottom layerClipped to imageCloneClose this TabColorColor BalanceColor Display FiltersColor PickerColor Picker InformationColor balance operates only on RGB color layers.Color:Coloring _Type for SegmentColoring _Type for SelectionColorizeColorize operates only on RGB color layers.Colorize the ImageColorize the imageColormapColumns:Con_trast:Configure Color Display FiltersConfigure GridConfigure Image GridConfirm Image SizeConfirm Text EditingConstantConstraintsContext-dependent cursors are cool. They are enabled by default. However, they require overhead that you may want to do without.ContinueContributions byConvertConvert Image to GrayscaleConvert Image to IndexedConvert Image to Indexed ColorsConvert Image to RGBConvolveConvolve Type %sCopy NamedCopying file '%s' from '%s'...Copyright:Corrupt segment %d in gradient file '%s'.Could not create '%s': %sCould not create temporary file for '%s': %sCould not delete '%s': %sCould not open '%s' for reading: %sCould not open '%s' for writing: %sCould not open thumbnail '%s': %sCould not read %d bytes from '%s': %sCould not seek in XCF file: %sCount:Create New TemplateCreate a New ImageCreate a New LayerCreate a New TemplateCreate a new display for this imageCreate a new image from the selected templateCreate a new templateCreate and edit images or photographsCreate and edit pathsCreating folder '%s'...CropCrop & ResizeCrop & Resize InformationCrop ImageCrop LayerCrop or Resize an imageCrop: Crosshair onlyCubic (Best)Curve TypeCurvesCurves for indexed layers cannot be adjusted.CustomCutCut NamedCyanCyan:DashedDate:Default Appearance in Fullscreen ModeDefault Appearance in Normal ModeDefault GridDefault Image GridDelete Layer MaskDelete TemplateDelete saved options...Delete the selected templateDelete this imageDesaturateDesaturate operates only on RGB color layers.DescriptionDesignDevice StatusDevicesDialogs MenuDifferenceDirect ColorDiscard Text InformationDisplayDisplay NavigationDisplay proceduresDisplaying [%0.6f, %0.6f]DissolveDistance:Distance: %0.6fDitheringDivideDo you really want to reset all tool options to default values?Document HistoryDocumentsDocuments MenuDodgeDodge or Burn strokesDodge/BurnDrag: moveDraw in inkDrawableDrawable proceduresDrop New LayerDrop New PathDue to lack of any fonts, text functionality is not available.Duplicate the selected templateEEK: can't undoEditEdit Channel AttributesEdit Channel ColorEdit Color Palette EntryEdit Layer AttributesEdit ModeEdit Palette ColorEdit Path AttributesEdit TemplateEdit proceduresEdit the selected templateEllipse SelectEmpty ChannelEmpty LayerEmpty PathEmpty Text LayerEmpty variable name in environment file %sEnable to display a handy GIMP tip on startup.Enable to display tooltips.EnormousEnter a name for the merged paletteEnter a name for the saved optionsEnter a name for this bufferEnter a name for this templateEnter a new name for the saved optionsEnvironmentEnvironment FoldersEqualizeEqualize does not operate on indexed layers.Erase to background or transparencyEraserError ConsoleError Console MenuError saving XCF file: %sError while parsing '%s' in line %d: %sError while reading '%s': %sError while writing '%s': %sError writing XCF: %sError writing file '%s': +Spencer Kimball, Peter Mattis and the GIMP Development Team.The GIMP tips file could not be parsed!Your GIMP tips file appears to be missing!A file named '%s' already exists.A_dd to SelectionA_ngleAbout The GIMPActionActivate the _focused imageActive FiltersAdaptive supersamplingAddAdd Alpha C_hannelAdd Alpha ChannelAdd AnchorAdd ChannelAdd Color to ColormapAdd Guide: Add GuidesAdd Horizontal GuideAdd La_yer Mask...Add LayerAdd Layer MaskAdd PathAdd StrokeAdd Text LayerAdd Vertical GuideAdd a Mask to the LayerAdd color from BGAdd color from FGAdd layer maskAdd text to the imageAdd the current color to the color historyAdd the selected filter to the list of active filters.Add to palette %sAdd to the current selectionAdding theme '%s' (%s) +AdditionAdditional Input ControllersAdjust Brightness and ContrastAdjust Color BalanceAdjust Color CurvesAdjust Color LevelsAdjust brightness and contrastAdjust color balanceAdjust color curvesAdjust color levelsAdjust hue / lightness / saturationAdjust hue and saturationAdjust levels automaticallyAdjustmentAdvanced optionsAffect:Affected Area %sAirbrushAirbrush with variable pressureAl_pha to SelectionAlignedAlignmentAll ChannelsAll FilesAll Files (*.*)All image and undo data which doesn't fit into the Tile Cache will be written to a swap file. This file should be located on a local filesystem with enough free space (several hundred MB). On a UNIX system, you may want to use the system-wide temp-dir ("/tmp" or "/var/tmp").Allow completely transparent regions to be filledAllow completely transparent regions to be selectedAllow enlarging %sAlphaAlpha to SelectionAlpha:An image of the choosen size will use more memory than what is configured as "Maximum Image Size" in the Preferences dialog (currently %s).An_imationAnchor Floating SelectionAnchor floating layerAnchor floating selectionAngle:Anti erase %sAntialiasingAppearanceApply Layer MaskApply Layer _MaskApply ThresholdApply layer maskAre you sure you want to delete '%s' from the list and from disk?Are you sure you want to delete template '%s' from the list and from disk?As in _PreferencesAsk for confirmation before closing an image without saving.Aspect Ratio:Aspect ratio:Attach ParasiteAttach Parasite to ImageAttach Parasite to ItemAttach parasiteAuthor:AutoAuto _Follow Active ImageAuto shrinkAuto shrink selectionAuto-resize windowAutoloadAutomatically DetectedAvailable FiltersAvailable Types:BG color fillB_rightness-Contrast...B_uffersBackgroundBackground colorBackground color set to:Background: %d, %d, %dBackward (corrective)Base filled area on all visible layersBase selection on all visible layersBehindBevelBi-linearBlack & whiteBlack:Ble_nd Endpoints' ColorsBlen_dBlendBlend Endpoints' Opacit_yBlend: Blend: Invalid for indexed images.Blending...BlueBlue:BlurBlur or SharpenBo_rder...Border ChannelBorder SelectionBorder selection byBrightness-ContrastBrightness-Contrast does not operate on indexed layers.BrushBrush EditorBrush FoldersBrush UIBrush:BrushesBrushes MenuBucket FillBuffersBuffers MenuBurnButtBy ExtensionBy reverting the image to the state saved on disk, you will lose all changes, including all undo information.CMYKC_alibrate...C_olor PickerC_olumns:C_ombineCalibrate Monitor ResolutionCan't undo %sCan_vas Size...CancelCancel GuideCannot add layer mask of different dimensions than specified layer.Cannot add layer mask to a layer with no alpha channel.Cannot add layer mask to layer which is not part of an image.Cannot anchor this layer because it is not a floating selection.Cannot convert to a palette with more than 256 colors.Cannot create a new layer from the floating selection because it belongs to a layer mask or channel.Cannot create folder '%s': %sCannot create previewCannot crop because the current selection is empty.Cannot expand ${%s}Cannot float selection because the selected region is empty.Cannot raise a layer without alpha.Cannot save. Nothing is selected.Cannot stroke empty channel.Cannot stroke empty path.Canvas SizeCanvas _padding mode:Center X:CenteredChange Background ColorChange Colormap entryChange Foreground ColorChange Image ResolutionChange Image UnitChange Print SizeChange current layer or pathChange grid background colorChange grid foreground colorChange indexed paletteChange perspective of the layer or selectionChanging shortcut failed.ChannelChannel AttributesChannel Name:Channel cannot be lowered more.Channel cannot be raised higher.Channel colorChannel is already on the bottom.Channel is already on top.Channel to Sele_ctionChannel to SelectionChannel to selectionChannel:ChannelsChannels MenuCheck _size:Choose Stroke StyleCircleCl_earClearClear ChannelClear Undo HistoryClear all textClear errorsClear undo history...Click "Continue" to accept the settings above.Click "Continue" to create your personal GIMP folder.Click "Continue" to enter the GIMP user installation.Click "Continue" to proceed with the user installation.Click to connect this anchor with the selected endpoint.Click to create a new anchor. (try SHIFT)Click to create a new component of the path.Click to create a new path.Click to create previewClick to delete this anchor.Click to insert an anchor on the path. (try SHIFT)Click to make this node angular.Click to open up the path.Click to pick path to edit.Click to update preview +%s Click to force update even if preview is up-to-dateClick-Drag to change the shape of the curve. (SHIFT: symmetrical)Click-Drag to move the anchor around.Click-Drag to move the anchors around.Click-Drag to move the component around. (try SHIFT)Click-Drag to move the handle around. (try SHIFT)Click-Drag to move the path around.Click: selectClick: select Drag: moveClip resultClipboardClipped to bottom layerClipped to imageCloneClose %sClose all TabsClose all tabs?Close this TabCo_py PathColo_rsColorColor BalanceColor Display FiltersColor PickerColor Picker InformationColor _Balance...Color _dithering:Color balance operates only on RGB color layers.Color eraseColor index:Color:Color_mapColor_space:Colori_ze...Coloring _Type for SegmentColoring _Type for SelectionColorizeColorize operates only on RGB color layers.Colorize the ImageColorize the imageColormapColormap EditorColormap MenuColumns:Comme_nt:CommentCon_trast:Con_volveConfigure Color Display FiltersConfigure E_xtended Input Devices...Configure G_rid...Configure GridConfigure Image GridConfigure Keyboard ShortcutsConfigure _Keyboard Shortcuts...Configure selected filterConfigure selected filter: %sConfirm Image SizeConfirm ScalingConfirm Text EditingConfirm closing of unsa_ved imagesConflicting ShortcutsConical (asym)Conical (sym)Connect StrokesConstantConstraintsContextContext-dependent cursors are cool. They are enabled by default. However, they require overhead that you may want to do without.ContinueContributions byConvertConvert EdgeConvert Image to GrayscaleConvert Image to IndexedConvert Image to Indexed ColorsConvert Image to RGBConvert imageConverting to indexed (stage 2)...Converting to indexed (stage 3)...Converting to indexed...ConvolveConvolve Type %sCopy NamedCopy _VisibleCopying file '%s' from '%s'...Copyright:Corrupt segment %d in gradient file '%s'.Could not create '%s': %sCould not create temporary file for '%s': %sCould not delete '%s': %sCould not find GIMP help browser.Could not open '%s' for reading: %sCould not open '%s' for writing: %sCould not open thumbnail '%s': %sCould not read %d bytes from '%s': %sCould not seek in XCF file: %sCould not start the GIMP help browser plug-in.Count:Cr_op LayerCreate New Doc_kCreate New TemplateCreate a New ImageCreate a New LayerCreate a New TemplateCreate a new display for this imageCreate a new image from the selected templateCreate a new templateCreate and edit images or photographsCreate and edit pathsCreate path from textCreate selection from pathCreating Preview ...Creating folder '%s'...CropCrop & ResizeCrop & Resize InformationCrop ImageCrop LayerCrop imageCrop or Resize an imageCrop: Crosshair onlyCu_tCu_t Named...Cubic (Best)Current _StatusCurrent height:Current layer onlyCurrent statusCurrent width:CursorCursor _mode:Cursor re_ndering:Curve TypeCurvesCurves for indexed layers cannot be adjusted.CustomCustom colorCustom gradientCustom p_adding color:CutCut NamedCyanCyan:D_uplicate BrushD_uplicate ChannelD_uplicate GradientD_uplicate LayerD_uplicate PaletteD_uplicate PathD_uplicate PatternD_uplicate Template...Dark check colorDarken onlyDash dot dot...Dash dot...Dash pattern:Dash preset:DashedDate:DebugDefault Appearance in Fullscreen ModeDefault Appearance in Normal ModeDefault GridDefault Image GridDefault _interpolation:Default _layer & channel preview size:Default _threshold:Delete AnchorDelete AnchorsDelete Layer Mas_kDelete Layer MaskDelete ObjectDelete SegmentDelete TemplateDelete brushDelete channelDelete colorDelete gradientDelete layerDelete layer maskDelete paletteDelete pathDelete patternDelete saved options...Delete the selected bufferDelete the selected templateDelete this imageDelete vectorsDeleting "%s" failed: %sDense dotsDesaturateDesaturate operates only on RGB color layers.DescriptionDesignDevice StatusDevicesDialogsDialogs MenuDiamondDifferenceDirect ColorDisable Layer MaskDisable Quick MaskDiscard Text InformationDisplayDisplay NavigationDisplay _Filters...Display proceduresDisplay type:Displaying [%0.6f, %0.6f]DissolveDistance:Distance: %0.6fDitheringDivideDo a _fresh user installationDo you really want to reset all filters to default values?Do you really want to reset all tool options to default values?Do you want to replace it with the image you are saving?Do_n't saveDockableDocument Histor_yDocument HistoryDocumentsDocuments MenuDod_geBurnDodgeDodge or Burn strokesDodge/BurnDouble dashedDrag AnchorDrag AnchorsDrag CurveDrag HandleDrag PathDrag: moveDraw in inkDrawableDrawable modDrawable proceduresDrop New LayerDrop New PathDue to lack of any fonts, text functionality is not available.Dump events from this controllerDuplicate brushDuplicate channelDuplicate gradientDuplicate layerDuplicate paletteDuplicate pathDuplicate patternDuplicate the selected templateEEK: can't undoE_xport Path...E_xtra SmallEdge BehaviourEdge-De_tectEditEdit Channel AttributesEdit Channel ColorEdit Color Palette EntryEdit Colormap EntryEdit Layer AttributesEdit Layer MaskEdit ModeEdit Palette ColorEdit Path AttributesEdit Quick Mask AttributesEdit Quick Mask ColorEdit TemplateEdit brushEdit channel attributesEdit colorEdit colormap entry #%dEdit gradientEdit layer attributesEdit paletteEdit path attributesEdit patternEdit proceduresEdit the selected templateEllipse SelectEmpty ChannelEmpty LayerEmpty PathEmpty Text LayerEmpty variable name in environment file %sEn_hanceEnable Quick MaskEnable dithering of _transparencyEnable this controllerEnable to display a handy GIMP tip on startup.Enable to display tooltips.EnormousEnter a name for the merged paletteEnter a name for the saved optionsEnter a name for this bufferEnter a name for this templateEnter a new name for the saved optionsEnter location (URI):EnvironmentEnvironment FoldersEqualizeEqualize does not operate on indexed layers.Erase to background or transparencyEraserError Co_nsoleError ConsoleError Console MenuError saving XCF file: %sError while parsing '%s' in line %d: %sError while reading '%s': %sError while reading brush file '%s': %sError while writing '%s': %sError writing XCF: %sError writing file '%s': %sError writing to '%s': %sError writing to temporary file for '%s': %s No file has been created.Error writing to temporary file for '%s': %s -The original file has not been touched.ErrorsExpanded as necessaryExport Path to SVGExposure:Extended Input DevicesExtensionsFG to BG (HSV clockwise hue)FG to BG (HSV counter-clockwise)FG to BG (HSV)FG to BG (RGB)FG to TransparentFG/BGFG/BG ColorFailed to import paths from '%s': %sFatal parse error in brush file '%s': File appears truncated.Fatal parse error in brush file '%s': File is corrupt.Fatal parse error in brush file '%s': Not a GIMP brush file.Fatal parse error in brush file '%s': Unknown GIMP brush version.Fatal parse error in brush file '%s': Unknown depth %d.Fatal parse error in brush file '%s': Unknown version %d.Fatal parse error in brush file '%s': Unsupported brush depth %d +The original file has not been touched.ErrorsEventEx_tra LargeExpanded as necessaryExport Path to SVGExport all paths from this imageExport the active pathExposure:Extended Input DevicesExtensionsFG color fillFG to BG (HSV clockwise hue)FG to BG (HSV counter-clockwise)FG to BG (HSV)FG to BG (RGB)FG to TransparentFG to transparentFG/BGFG/BG ColorFS to layerF_it Canvas to LayersFade outFailed to import gradients from '%s': %sFailed to import paths from '%s': %sFancyFatal parse error in brush file '%s': File appears truncated.Fatal parse error in brush file '%s': File is corrupt.Fatal parse error in brush file '%s': Not a GIMP brush file.Fatal parse error in brush file '%s': Unknown GIMP brush shape.Fatal parse error in brush file '%s': Unknown GIMP brush version.Fatal parse error in brush file '%s': Unknown depth %d.Fatal parse error in brush file '%s': Unknown version %d.Fatal parse error in brush file '%s': Unsupported brush depth %d GIMP brushes must be GRAY or RGBA.Fatal parse error in gradient file '%s': File is corrupt.Fatal parse error in gradient file '%s': Not a GIMP gradient file.Fatal parse error in palette file '%s': Missing magic header.Fatal parse error in palette file '%s': Missing magic header. Does this file need converting from DOS?Fatal parse error in palette file '%s': Read error in line %d.Fatal parse error in pattern file '%s': Could not read %d bytes: %sFatal parse error in pattern file '%s': Unknown pattern format version %d.Fatal parse error in pattern file '%s: Unsupported pattern depth %d. -GIMP Patterns must be GRAY or RGB.Feather ChannelFeather SelectionFeather selection byFile OperationsFill ChannelFill Opacity:Fill Type %sFill with BG ColorFill with FG ColorFill with PatternFill with TransparencyFill with WhiteFill with a color gradientFill with a color or patternFilledFinal, Merged Layer should be:Finding Contiguous RegionsFinding Similar ColorsFlatten ImageFlipFlip ChannelFlip LayerFlip Text LayerFlip Type %sFlip the layer or selectionFlipping...Float SelectionFloating Selection to LayerFloating selectionsFocusFolderFoldersFont FoldersFont UIFontsFonts MenuFor a proper GIMP installation, a folder named '%s' needs to be created.ForegroundForeground & background colors. The black and white squares reset colors. The arrows swap colors. Double click to open the color selection dialog.Foreground color set to:Foreground: %d, %d, %dFree SelectFreehandFuzzy SelectGIMPGIMP ExtensionGIMP MessageGIMP Performance TuningGIMP Plug-InGIMP StartupGIMP Text EditorGIMP Tip of the DayGIMP User InstallationGIMP could not initialize the graphical user interface. -Make sure a proper setup for your display environment exists.GIMP is not properly installed for the current user. +GIMP Patterns must be GRAY or RGB.Fea_ther...Feather ChannelFeather SelectionFeather edgesFeather selection byFileFile Open _DialogFile OperationsFile TypeFile existsFile is truncatedFill ChannelFill Opacity:Fill Type %sFill similar colorsFill transparent areasFill whole selectionFill with BG ColorFill with B_G ColorFill with FG ColorFill with P_atternFill with PatternFill with TransparencyFill with WhiteFill with _FG ColorFill with _background colorFill with a color gradientFill with a color or patternFilledFilte_rsFinal, Merged Layer should be:Finding Contiguous RegionsFinding Similar ColorsFit Image to WindowFit image in windowFit image to windowFit to windowFixed aspect ratioFixed sizeFlatten ImageFlipFlip ChannelFlip LayerFlip PathFlip Text LayerFlip Type %sFlip _HorizontallyFlip _VerticallyFlip imageFlip the layer or selectionFlip...Flipping...Float SelectionFloat selectionFloated LayerFloating Selection +(%s)Floating Selection to LayerFloating selection to layerFloating selectionsFloyd-Steinberg (normal)Floyd-Steinberg (reduced color bleeding)FocusFolderFoldersFont FoldersFont UIFont:FontsFonts MenuFor a proper GIMP installation, a folder named '%s' needs to be created.Force auto-hinterForegroundForeground & background colors. The black and white squares reset colors. The arrows swap colors. Double click to open the color selection dialog.Foreground colorForeground color set to:Foreground: %d, %d, %dForward (traditional)Fr_om PathFree SelectFree selectFreehandFrom _ThemeFrom _windowing system (currently %d x %d dpi)From left to rightFrom right to leftFrom selectionFrom themeFu_zzy SelectFullscr_eenFuzzy SelectGIMPGIMP ExtensionGIMP MessageGIMP Performance TuningGIMP Plug-InGIMP StartupGIMP Text EditorGIMP Tip of the DayGIMP User InstallationGIMP XCF imageGIMP could not initialize the graphical user interface. +Make sure a proper setup for your display environment exists.GIMP help browserGIMP is not properly installed for the current user. User installation was skipped because the '--no-interface' flag was used. -To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Get Monitor ResolutionGiganticGimprc proceduresGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient:GradientsGradients MenuGrayGrayscaleGreenGreen:GridGrow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)Handle position: %0.6fHardnessHardness:HeightHeight:Help BrowserHelp SystemHelp proceduresHex:HighlightsHinting alters the font outline to produce a crisp bitmap at small sizesHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB color layers.Hue:HugeI_mageI_nterval:IconIf available, hints from the font are used but you may prefer to always use the automatic hinterIllegal variable name in environment file %s: %sImageImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage maskImage resolution is out of bounds, using the default resolution instead.ImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorIndexed Color ConversionInfo WindowInitialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' -InkInput DevicesInput LevelsInstallation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateInterfaceInternal GIMP procedureInternal ProceduresInterpolation:Intersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Justify:Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.Keyboard ShortcutsLandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer Fill TypeLayer Mask to SelectionLayer SelectLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.LineLine _Style:Line style used for the grid.LinearLoadLoad CurvesLoad LevelsLoading preview ...Location:LogarithmicLooking for data filesLower ChannelLower Channel to BottomLower LayerLower Layer to BottomLower PathLower Path to BottomMagentaMagenta:MagnifyManage Loadable ModulesMask Opacity:Matrix:Max Depth:Maximum color differenceMean:MeasureMeasure Distances and AnglesMeasure distances and anglesMedian:MediumMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMessage proceduresMessage repeated %d times.Message repeated once.MidtonesMiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModulesMoveMove ChannelMove GuideMove LayerMove Layer MaskMove PathMove SelectionMove ToolMove layers & selectionsMove the selected filter downMove the selected filter upMove: MultiplyNavigationNew ChannelNew Channel ColorNew Channel OptionsNew ImageNew LayerNew PathNew Path OptionsNew TemplateNo brushes available for use with this tool.No longer availableNo patterns available for this operation.NoneNone (Fastest)NormalNormal (128x128)Not a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOpacityOpacity:OpenOpen ImageOpen Text File (UTF-8)Open the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the pattern selection dialogOpening '%s' failed: +To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Generate optimum paletteGet Monitor ResolutionGiganticGimprc proceduresGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient:GradientsGradients MenuGrain extractGrain mergeGrayGrayscaleGreenGreen:GridGrid line spacingGrow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_counter-clockwise hue)HSV (clockwise _hue)HTML notation:H_eight:H_elp browser to use:Handle position: %0.6fHard edgeHard lightHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHelp proceduresHex:HighlightsHint for the _docks:Hint for the _toolbox:HintingHinting alters the font outline to produce a crisp bitmap at small sizesHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB color layers.Hue-_Saturation...Hue:HugeI_con & TextI_mageI_mport Path...I_nterpolation:I_nterval:IconIcon & descIcon & textIf available, hints from the font are used but you may prefer to always use the automatic hinterIf enabled, the move tool changes the active layer or path when a layer or path is being picked. This used to be the default behaviour in older versions.If you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.Illegal variable name in environment file %s: %sImageImage + GridImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage ThumbnailsImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage maskImage resolution is out of bounds, using the default resolution instead.Image sizeImage sourceImage typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport paletteImport pathsImported PathIn_kIn_vertIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorIndexed Color ConversionIndexed color layers are always scaled without interpolation. The chosen interpolation type will affect channels and masks only.Info WindowInitial zoom _ratio:Initialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' +InkInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard EventsKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine +spacing:Line Width:Line _Style:Line style used for the grid.LinearLinked itemLoadLoad CurvesLoad LevelsLoad Right Color Fr_omLoad curves settings from fileLoad levels settings from fileLoad text from fileLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower Path to _BottomLower channelLower channel to bottomLower layerLower layer to bottomLower pathLower path to bottomM_agnifyM_asterM_ove to Screen...Ma_pMagentaMagenta:MagnifyMake _transparentManage Loadable ModulesMarching _ants speed:Mask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:Max Depth:Maximum _filesize for thumbnailing:Maximum _new image size:Maximum color differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMeasure the rulers and enter their lengths:Median:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMerge vectorsMessage proceduresMessage repeated %d times.Message repeated once.Messages are redirected to stderr.MidtonesMigrate User SettingsMinimal number of _undo levels:MiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMouse WheelMouse Wheel EventsMoveMove AnchorsMove ChannelMove Floating SelectionMove GuideMove Guide: Move LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove ToolMove itemMove layers & selectionsMove selectionMove the current layerMove the current pathMove the selected filter downMove the selected filter upMove to Screen...Move: MultiplyN_umber of colors:Na_vigationNa_vigation WindowNa_vigation preview size:NameName:NavigationNew ChannelNew Channel ColorNew Channel OptionsNew Color from _BGNew Color from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channelNew channel with last valuesNew channel...New color from BGNew color from FGNew gradientNew importNew layerNew layer with last valuesNew layer...New paletteNew path with last valuesNew path...New patternNew vectorsNo brushes available for use with this tool.No filter selectedNo linear gradients found in '%s'No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of _processors to use:Number of grid linesNumber of layers:O_ther...OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset by x/_2, y/2Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the palette selection dialogOpen the pattern selection dialogOpen the selected entryOpening '%s' failed: %sOpening '%s' failed: %sOptions: -Origin X:Original Width:Other (%s) ...Output LevelsOverlayPDB calling error for procedure '%s': +Origin X:Origin Y:Original Width:Other (%s) ...OutlineOutput LevelsOverlayPDB calling error for procedure '%s': Argument #%d type mismatch (expected %s, got %s)PDB calling error: -procedure '%s' not foundPack my box with -five dozen liquor jugs.PaintPaint Options Shared Between ToolsPaint Tool proceduresPaint Tool:Paint fuzzy brush strokesPaint hard edged pixelsPaint using Patterns or Image RegionsPaintbrushPalettePalette EditorPalette Editor MenuPalette FoldersPalette UIPalette _Name:PalettesPalettes MenuParasite proceduresParasitesParsing '%s' -PastePasted LayerPathPath AttributesPath cannot be lowered more.Path cannot be raised higher.Path to SelectionPathsPaths MenuPatternPattern FoldersPattern UIPatternsPatterns MenuPencilPercentage of width of brushPercentile:Personal GIMP FolderPerspectivePerspective Transform InformationPerspective...Pick Mode %sPick colors from the imagePixelsPixels:Please wait while your personal GIMP folder is being created...Please wait...Plug-InPlug-In EnvironmentPlug-In FoldersPlug-In could not open imagePlug-In could not save imagePlug-In crashed: "%s" +procedure '%s' not foundP_atternsPack my box with +five dozen liquor jugs.PaintPaint Options Shared Between ToolsPaint Tool proceduresPaint Tool:Paint _ModePaint fuzzy brush strokesPaint hard edged pixelsPaint using Patterns or Image RegionsPaintbrushPal_ettesPalettePalette EditorPalette Editor MenuPalette FoldersPalette UIPalette _Name:Palette _filePalettesPalettes MenuParasite proceduresParasitesParsing '%s' +PastePaste Buffer _IntoPaste Buffer as _NewPaste Pat_hPaste _IntoPaste as _NewPaste the selected bufferPaste the selected buffer as new imagePaste the selected buffer into the selectionPasted LayerPathPath AttributesPath Name:Path _ToolPath cannot be lowered more.Path cannot be raised higher.Path is already on the bottom.Path is already on top.Path to Sele_ctionPath to SelectionPath to Selection +%s Add +%s Subtract +%s IntersectPath to selectionPathsPaths MenuPatternPattern FoldersPattern UIPattern fillPattern sourcePatternsPatterns MenuPe_ncilPencilPercentage of width of brushPercentile:Personal GIMP FolderPerspectivePerspective Transform InformationPerspective...Pick Mode %sPick a layer or guidePick a pathPick black pointPick colors from the imagePick gray pointPick onlyPick white pointPixel dimensions:Pixel valuesPixelsPixels:Plase make sure the menu XML files are correctly installed.Please wait while your personal GIMP folder is being created...Please wait...Plug-InPlug-In EnvironmentPlug-In FoldersPlug-In could not open imagePlug-In could not save imagePlug-In crashed: "%s" (%s) -The dying Plug-In may have messed up GIMP's internal state. You may want to save your images and restart GIMP to be on the safe side.Plug-In returned SUCCESS but did not return an imagePlug-InsPlug-inPlug-ins and extensions are external programs run by the GIMP which provide additional functionality. These programs are searched for at run-time and information about their functionality and mod-times is cached in this file. This file is intended to be GIMP-readable only, and should not be edited.PolygonalPortraitPosition: %0.6fPosterizePosterize (Reduce Number of Colors)Posterize does not operate on indexed layers.PreferencesPressure:PreviewPreview is out of datePreviewsProblems parsing the text parasite for layer '%s': +The dying Plug-In may have messed up GIMP's internal state. You may want to save your images and restart GIMP to be on the safe side.Plug-In returned SUCCESS but did not return an imagePlug-InsPlug-inPlug-ins and extensions are external programs run by the GIMP which provide additional functionality. These programs are searched for at run-time and information about their functionality and mod-times is cached in this file. This file is intended to be GIMP-readable only, and should not be edited.PolygonalPortraitPosition: %0.6fPositionedPosterizePosterize (Reduce Number of Colors)Posterize _levels:Posterize does not operate on indexed layers.PreferencesPreserve _luminosityPressure sensitivityPressure:PreviewPreview is out of datePreview:PreviewsPrint SizePrint size:Problems parsing the text parasite for layer '%s': %s -Some text properties may be wrong. Unless you want to edit the text layer, you don't need to worry about this.Procedural DatabaseProcedural databaseProgressPseudo ColorPurpose:QueryQuerying new Plug-insQuerying plug-in: '%s' -QuickMaskRGBRGB (%d, %d, %d)RGB ColorRGB-emptyRGBA (%0.3f, %0.3f, %0.3f, %0.3f)R_e-show "%s"RadialRadius:Raise ChannelRaise Channel to TopRaise LayerRaise Layer to TopRaise PathRaise Path to TopRaise this image's displaysRateRate:Re-Show LastRe-_center Midpoints in SelectionRe-_center Segment's MidpointRe-distribute _Handles in SegmentRe-distribute _Handles in SelectionRe_peat "%s"Reading palette '%s': Missing GREEN component in line %d.Reading palette file '%s': Invalid number of columns in line %d. Using default value.Reading palette file '%s': Missing BLUE component in line %d.Reading palette file '%s': Missing RED component in line %d.Reading palette file '%s': RGB value out of range in line %d.Rect SelectRedRed:RedoReduce image to a fixed number of colorsReduce image to two colors using a thresholdRegisteredReload C_urrent ThemeRemember the current tool, pattern, color, and brush across GIMP sessions.Remote imageRemove ChannelRemove GuideRemove LayerRemove Parasite from ImageRemove Parasite from ItemRemove PathRemove the selected filter from the list of active filters.Rename ChannelRename LayerRename Saved Tool OptionsReorder ChannelReorder LayerRepeat LastRepeat:Replace the current selectionReplicateReplicate Gradient SegmentReplicate Gradient SelectionReplicate SegmentReplicate SelectionReset Tool OptionsReset the selected filter to default valuesResizeResize ChannelResize ImageResize LayerResizing...Resolution:Resource ConsumptionResource configurationRestore options from...Restore saved keyboard shortcuts on each GIMP startup.ReverseRevertRevert ImageRevert failed. No file name associated with this image.Reverting to '%s' failed: +Some text properties may be wrong. Unless you want to edit the text layer, you don't need to worry about this.Procedural DatabaseProcedural databaseProgressPseudo ColorPurpose:QualityQueryQuerying new Plug-insQuerying plug-in: '%s' +Quick LoadQuick MaskQuick Mask AttributesQuick Mask MenuQuick SaveQuickMaskQuit The GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB ColorRGB-emptyRGBA (%0.3f, %0.3f, %0.3f, %0.3f)RTLR_e-show "%s"R_eset Tool OptionsR_eset channelR_eset colorR_eset rangeR_ight Endpoint's Color...RadialRadius:Raise ChannelRaise Channel to TopRaise Channel to _TopRaise LayerRaise Layer to TopRaise PathRaise Path to TopRaise Path to _TopRaise channelRaise channel to topRaise layerRaise layer to topRaise pathRaise path to topRaise this image's displaysRaise window if already openRateRate:Re-Show LastRe-_center Midpoints in SelectionRe-_center Segment's MidpointRe-distribute _Handles in SegmentRe-distribute _Handles in SelectionRe_name Saved OptionsRe_peat "%s"Re_vert...Reading palette '%s': Missing GREEN component in line %d.Reading palette file '%s': Invalid number of columns in line %d. Using default value.Reading palette file '%s': Missing BLUE component in line %d.Reading palette file '%s': Missing RED component in line %d.Reading palette file '%s': RGB value out of range in line %d.ReadyReally clear image's undo history?Reassigning the shortcut will cause it to be removed from "%s".Recreate _PreviewRecreate previewRect SelectRedRed:RedoReduce image to a fixed number of colorsReduce image to two colors using a thresholdRefresh brushesRefresh gradientsRefresh palettesRefresh patternsRegisteredReload C_urrent ThemeReload _all PreviewsReload all previewsRemember the current tool, pattern, color, and brush across GIMP sessions.Remote imageRemove ChannelRemove Dangling E_ntriesRemove Floating SelectionRemove GuideRemove LayerRemove Parasite from ImageRemove Parasite from ItemRemove PathRemove _EntryRemove dangling entriesRemove floating selectionRemove parasiteRemove the selected entryRemove the selected filter from the list of active filters.Removing shortcut failed.Rename ChannelRename LayerRename PathRename Saved Tool OptionsRename Text LayerRename itemRender StrokeReorder ChannelReorder LayerReorder pathRepeat LastRepeat:Replace the current selectionReplicateReplicate Gradient SegmentReplicate Gradient SelectionReplicate SegmentReplicate SelectionReposition channelReposition layerReposition vectorsRescan font listReset Tool OptionsReset _all Tool Options...Reset all FiltersReset all Filters...Reset all tool optionsReset the selected filter to default valuesReset to default valuesReset tool order and visibilityResizeResize ChannelResize ImageResize LayerResize PathResize Text LayerResize imageResize itemResize window on _zoomResize window on image _size changeResizing...Resolution changeResolution:Resource ConsumptionResource configurationRestore options from...Restore saved keyboard shortcuts on each GIMP startup.Restrict editing to polygonsReverseRevertRevert '%s' to '%s'?Revert ImageRevert failed. No file name associated with this image.Reverting to '%s' failed: -%sRight Endpoint ColorRotateRotate ChannelRotate LayerRotate Text LayerRotate the layer or selectionRotating...Rotation InformationRoundSat.:SaturationSaveSave '%s' as POV-RaySave CurvesSave Error Log to FileSave ImageSave LevelsSave Tool OptionsSave a Copy of the ImageSave changed keyboard shortcuts when the GIMP exits.Save curves settings to fileSave device statusSave levels settings to fileSave options to...Save the positions and sizes of the main dialogs when the GIMP exits.Saved OptionsSaving '%s' +%sRight Endpoint ColorRight justifiedRotateRotate 90 degrees CC_WRotate 90 degrees _CWRotate ChannelRotate LayerRotate PathRotate Text LayerRotate _180 degreesRotate imageRotate the layer or selectionRotating...Rotation InformationRoundS_hearS_how GridS_hrink...S_pikesS_wap ColorsSa_ve Right Color ToSample averageSample mergedSat.:SaturationSaveSave '%s' as POV-RaySave CurvesSave Error Log to FileSave ImageSave Input Device Settings _NowSave Keyboard Shortcuts _NowSave LevelsSave Tool OptionsSave Window Positions _NowSave _All Errors to File...Save _Selection to File...Save _as...Save a Cop_y...Save a Copy of the ImageSave all errorsSave as _POV-Ray...Save as _Template...Save changed keyboard shortcuts when the GIMP exits.Save curves settings to fileSave device statusSave gradient as POV-RaySave levels settings to fileSave options to...Save selectionSave selection to channelSave the changes to image '%s' before closing?Save the positions and sizes of the main dialogs when the GIMP exits.Save to _ChannelSaved OptionsSaving '%s' Saving '%s' failed: -%sScaleScale ChannelScale ImageScale LayerScale the layer or selectionScalingScaling...ScissorsScreenScript-Fu FoldersScriptsSelect AllSelect Brush FoldersSelect By ColorSelect ColorSelect Environment FoldersSelect Font FoldersSelect Gradient FoldersSelect Module FoldersSelect NoneSelect Palette FoldersSelect Pattern FoldersSelect Plug-In FoldersSelect Primary Color to ModifySelect Range to ModifySelect Script-Fu FoldersSelect SourceSelect ThemeSelect Theme FoldersSelect Zoom RatioSelect by ColorSelect contiguous regionsSelect elliptical regionsSelect hand-drawn regionsSelect rectangular regionsSelect regions by colorSelect shapes from imageSelect the number of times +%sSaving ImagesSawtooth waveScalable SVG image (*.svg)ScaleScale ChannelScale ImageScale LayerScale PathScale Text LayerScale imageScale itemScale ratio X:Scale ratio Y:Scale ratio:Scale the layer or selectionScalingScaling informationScaling the image to the choosen size will make it use more memory than what is configured as "Maximum Image Size" in the Preferences dialog (currently %s).Scaling the image to the choosen size will shrink some layers completely away.Scaling...ScissorsScreenScript-Fu FoldersScriptsScroll DownScroll Down (Alt)Scroll Down (Control + Alt)Scroll Down (Control)Scroll Down (Shift + Alt)Scroll Down (Shift + Control + Alt)Scroll Down (Shift + Control)Scroll Down (Shift)Scroll LeftScroll Left (Alt)Scroll Left (Control + Alt)Scroll Left (Control)Scroll Left (Shift + Alt)Scroll Left (Shift + Control + Alt)Scroll Left (Shift + Control)Scroll Left (Shift)Scroll RightScroll Right (Alt)Scroll Right (Control + Alt)Scroll Right (Control)Scroll Right (Shift + Alt)Scroll Right (Shift + Control + Alt)Scroll Right (Shift + Control)Scroll Right (Shift)Scroll UpScroll Up (Alt)Scroll Up (Control + Alt)Scroll Up (Control)Scroll Up (Shift + Alt)Scroll Up (Shift + Control + Alt)Scroll Up (Shift + Control)Scroll Up (Shift)SelectSelect AllSelect Brush FoldersSelect By ColorSelect ColorSelect Controller Event ActionSelect Environment FoldersSelect File _Type (%s)Select Font FoldersSelect Gradient FoldersSelect Module FoldersSelect NoneSelect Palette FoldersSelect Pattern FoldersSelect Plug-In FoldersSelect Primary Color to ModifySelect Range to ModifySelect Script-Fu FoldersSelect SourceSelect Swap FolderSelect Temp FolderSelect ThemeSelect Theme FoldersSelect Zoom RatioSelect _Bottom LayerSelect _Custom Color...Select _Next LayerSelect _Previous LayerSelect _Top LayerSelect allSelect by ColorSelect contiguous regionsSelect custom canvas padding colorSelect elliptical regionsSelect hand-drawn regionsSelect noneSelect palette fileSelect rectangular regionsSelect regions by colorSelect shapes from imageSelect swap dirSelect the number of times to replicate the selected segment.Select the number of times to replicate the selection.Select the number of uniform parts in which to split the segments in the selection.Select the number of uniform parts -in which to split the selected segment.SelectionSelection EditorSelection MaskSelection Tool proceduresSelection: Selection: ADDSelection: INTERSECTSelection: REPLACESelection: SUBTRACTSensitivitySet Canvas Padding ColorSet Channel ColorSet Channel OpacitySet Image Canvas SizeSet Layer Boundary SizeSet Name from _TextSets an upper limit to the memory that is used per image to keep operations on the undo stack. Regardless of this setting, at least as many undo-levels as configured can be undone.Sets the browser used by the help system.Sets the canvas padding color used if the padding mode is set to custom color.Sets the external web browser to be used. This can be an absolute path or the name of an executable to search for in the user's PATH. If the command contains '%s' it will be replaced with the URL, else the URL will be appended to the command with a space separating the two.Sets the level of interpolation used for scaling and other transformations.Sets the manner in which transparency is displayed in images.Sets the minimal number of operations that can be undone. More undo levels are kept available until the undo-size limit is reached.Sets the mode of cursor the GIMP will use.Sets the size of the checkerboard used to display transparency.Sets the size of the navigation preview available in the lower right corner of the image window.Sets the size of the previews in the Undo History.Sets the swap file location. The gimp uses a tile based memory allocation scheme. The swap file is used to quickly and easily swap tiles out to disk and back in. Be aware that the swap file can easily get very large if the GIMP is used with large images. Also, things can get horribly slow if the swap file is created on a directory that is mounted over NFS. For these reasons, it may be desirable to put your swap file in "/tmp".Sets the temporary storage directory. Files will appear here during the course of running the GIMP. Most files will disappear when the GIMP exits, but some files are likely to remain, so it is best if this directory not be one that is shared by other users.Sets the text to appear in image window status bars.Sets the text to appear in image window titles.Sets whether GIMP should create previews of layers and channels. Previews in the layers and channels dialog are nice to have but they can slow things down when working with large images.ShadowsShapeShape:SharpenSharpen ChannelSharpen SelectionShearShear the layer or selectionShearing InformationShearing...Show S_tatusbarShow Scroll_barsShow _GuidesShow _Layer BoundaryShow _MenubarShow memory usageShow tip next time GIMP startsShow zoom percentageShow zoom ratioShrink ChannelShrink SelectionShrink from image borderShrink selection bySizeSize:Skipping '%s': wrong GIMP protocol version.SmallSmaller PreviewsSmoothSmooth edgesSmudgeSmudge imageSolidSourceSpacingSpacing:Special FileSpecifies how the area around the image should be drawn.Speed of marching ants in the selection outline. This value is in milliseconds (less time indicates faster marching).Speed:SplitSplit Gradient Segment UniformlySplit Gradient Segments UniformlySplit Segment UniformlySplit Segment _Uniformly...Split Segment at _MidpointSplit Segments UniformlySplit Segments _Uniformly...Split Segments at _MidpointsSquareStandardStarting ExtensionsStarting extension: '%s' -State:Static ColorStatic GrayStd Dev:StipplesSubtractSubtract from the current selectionSupersamplingTemplatesTemplates MenuTemporary ProcedureTextText ColorText LayerText proceduresThe GIMPThe active brush. +in which to split the selected segment.Select transparent areasSelect web browserSelecti_on to PathSelectionSelection EditorSelection Editor MenuSelection MaskSelection Tool proceduresSelection maskSelection to Path (_Advanced)Selection to pathSelection: Selection: ADDSelection: INTERSECTSelection: REPLACESelection: SUBTRACTSensitivitySet Canvas Padding ColorSet Channel ColorSet Channel OpacitySet ColormapSet Custom Canvas Padding ColorSet Image Canvas SizeSet Image Print ResolutionSet Item Exclusive LinkedSet Item Exclusive VisibleSet Layer Boundary SizeSet Name from _TextSet OpacitySet background colorSet foreground colorSet item linkedSet layer modeSet layer opacitySets an upper limit to the memory that is used per image to keep operations on the undo stack. Regardless of this setting, at least as many undo-levels as configured can be undone.Sets the browser used by the help system.Sets the canvas padding color used if the padding mode is set to custom color.Sets the external web browser to be used. This can be an absolute path or the name of an executable to search for in the user's PATH. If the command contains '%s' it will be replaced with the URL, else the URL will be appended to the command with a space separating the two.Sets the level of interpolation used for scaling and other transformations.Sets the manner in which transparency is displayed in images.Sets the minimal number of operations that can be undone. More undo levels are kept available until the undo-size limit is reached.Sets the mode of cursor the GIMP will use.Sets the monitor's horizontal resolution, in dots per inch. If set to 0, forces the X server to be queried for both horizontal and vertical resolution information.Sets the monitor's vertical resolution, in dots per inch. If set to 0, forces the X server to be queried for both horizontal and vertical resolution information.Sets the pixel format of cursors the GIMP will use.Sets the preview size used for layers and channel previews in newly created dialogs.Sets the size of the checkerboard used to display transparency.Sets the size of the navigation preview available in the lower right corner of the image window.Sets the size of the previews in the Undo History.Sets the size of the thumbnail shown in the Open dialog. Note that GIMP can not create thumbnails if layer previews are disabled.Sets the swap file location. The gimp uses a tile based memory allocation scheme. The swap file is used to quickly and easily swap tiles out to disk and back in. Be aware that the swap file can easily get very large if the GIMP is used with large images. Also, things can get horribly slow if the swap file is created on a directory that is mounted over NFS. For these reasons, it may be desirable to put your swap file in "/tmp".Sets the temporary storage directory. Files will appear here during the course of running the GIMP. Most files will disappear when the GIMP exits, but some files are likely to remain, so it is best if this directory not be one that is shared by other users.Sets the text to appear in image window status bars.Sets the text to appear in image window titles.Sets whether GIMP should create previews of layers and channels. Previews in the layers and channels dialog are nice to have but they can slow things down when working with large images.Shadow typeShadowsShapeShape:Shaped (angular)Shaped (dimpled)Shaped (spherical)SharpenSharpen ChannelSharpen SelectionShearShear magnitude X:Shear magnitude Y:Shear the layer or selectionShearing InformationShearing...Short dashesShortcutShortcut "%s" is already taken by "%s" from the "%s" group.Show Layer MaskShow R_ulersShow S_tatusbarShow Scroll_barsShow _GuidesShow _Layer BoundaryShow _MenubarShow _SelectionShow _brush outlineShow _foreground & background colorShow _guidesShow _layer boundaryShow _menubarShow _rulersShow active _brush, pattern & gradientShow active _imageShow gri_dShow help _buttonsShow image sizeShow interactive boundaryShow memory usageShow menu _mnemonics (access keys)Show paint _tool cursorShow s_electionShow s_tatusbarShow scroll_barsShow tip next time GIMP startsShow tips on _startupShow tool _tipsShow zoom percentageShow zoom ratioShrink ChannelShrink SelectionShrink _WrapShrink from image borderShrink selection byShrink wrapSizeSize in memory:Size of _thumbnails:Size:Skipping '%s': wrong GIMP protocol version.SmallSmaller PreviewsSmoothSmooth edgesSmudgeSmudge imageSn_ap to GuidesSna_p to GridSoft lightSolidSourceSpacingSpacing:Sparse dotsSpecial FileSpecifies how the area around the image should be drawn.Speed of marching ants in the selection outline. This value is in milliseconds (less time indicates faster marching).Speed:Spherical (_decreasing)Spherical (i_ncreasing)Spikes:Spiral (ccw)Spiral (cw)SplitSplit Gradient Segment UniformlySplit Gradient Segments UniformlySplit Segment UniformlySplit Segment _Uniformly...Split Segment at _MidpointSplit Segments UniformlySplit Segments _Uniformly...Split Segments at _MidpointsSquareSt_atus & TextStac_kStandardStarting ExtensionsStarting extension: '%s' +State:Static ColorStatic GrayStatus & descStatus & textStd Dev:StipplesStro_ke PathStro_ke Path...Stroke ChannelStroke PathStroke SelectionStroke lineStroke pathStroke path with last valuesStroke path...Stroke selection with last valuesStroke selection...Stroke with a paint toolStyle of bevel around the statusbar textSubtractSubtract from the current selectionSupersamplingSwap folder:T_oolsTe_xtTe_xt ToolTemp folder:TemplatesTemplates MenuTemporary ProcedureTerminating plug-in: '%s' +TextText ColorText EditorText LayerText modifiedText proceduresThe GIMPThe GIMP help browser plug-in appears to be missing from your installation.The active brush. Click to open the Brush Dialog.The active gradient. -Click to open the Gradient Dialog.The active pattern. -Click to open the Pattern Dialog.The background color of the grid; only used in double dashed line style.The filename '%s' couldn't be converted to a valid URI: +Click to open the Gradient Dialog.The active image. +Click to open the Image Dialog.The active pattern. +Click to open the Pattern Dialog.The background color of the grid; only used in double dashed line style.The batch interpreter '%s' is not available, batch mode disabled.The configured filename encoding cannot be converted to UTF-8: %s -%sThe foreground color of the grid.The gimprc is used to store personal preferences that affect GIMP's default behavior. Paths to search for brushes, palettes, gradients, patterns, plug-ins and modules can also configured here.The layer you selected is a text layer but it has been modified using other tools. Editing the layer with the text tool will discard these modifications. +Please check the value of the environment variable G_FILENAME_ENCODING.The filename '%s' couldn't be converted to a valid URI: -You can edit the layer or create a new text layer from its text attributes.The sessionrc is used to store what dialog windows were open the last time you quit The GIMP. You can configure The GIMP to reopen these dialogs at the saved position.The tile cache is used to make sure the GIMP doesn't thrash tiles between memory and disk. Setting this value higher will cause the GIMP to use less swap space, but will also cause the GIMP to use more memory. Conversely, a smaller cache size causes the GIMP to use more swap space and less memory.The unit used for coordinate display when not in dot-for-dot mode.The unitrc is used to store your user units database. You can define additional units and use them just like you use the built-in units inches, millimeters, points and picas. This file is overwritten each time you quit the GIMP.The vertical image resolution.The window type hint that is set on dock windows. This may affect the way your window manager decorates and handles dock windows.The window type hint that is set on the toolbox. This may affect how your window manager decorates and handles the toolbox window.ThemeTheme FoldersThemesThere are not enough visible layers for a merge down.There is always a tradeoff between memory usage and speed. In most cases, the GIMP opts for speed over memory. However, if memory is a big issue, try to enable this setting.There is no active layer or channel to copy from.There is no active layer or channel to cut from.There should be a file called '%s'. Please check your installation.There was an error parsing your '%s' file. Default values will be used. A backup of your configuration has been created at '%s'.This file holds a collection of standard media sizes that serve as image templates.This folder is searched for image templates.This folder is searched for user-installed themes.This folder is used to store fonts you only want visible in the GIMP. The GIMP checks this folder in addition to the system-wide GIMP fonts installation when searching for fonts. Use this only if you really want to have GIMP-only fonts, otherwise put things in your global font directory.This folder is used to store parameter files for the Curves tool.This folder is used to store parameter files for the Levels tool.This folder is used to store tool options.This folder is used to store user created and installed scripts. The GIMP checks this folder in addition to the systemwide GIMP scripts folder when searching for scripts.This folder is used to store user created, temporary, or otherwise non-system-supported DLL modules. The GIMP checks this folder in addition to the system-wide GIMP module folder when searching for modules to load during initialization.This folder is used to store user created, temporary, or otherwise non-system-supported additions to the plug-in environment. The GIMP checks this folder in addition to the system-wide GIMP environment folder when searching for plug-in environment modification files.This folder is used to store user created, temporary, or otherwise non-system-supported plug-ins. The GIMP checks this folder in addition to the system-wide GIMP plug-in folder when searching for plug-ins.This folder is used to store user defined brushes. The GIMP checks this folder in addition to the system-wide GIMP brushes installation when searching for brushes.This folder is used to store user defined gradients. The GIMP checks this folder in addition to the system-wide GIMP gradients installation when searching for gradients.This folder is used to store user defined palettes. The GIMP checks this folder in addition to the system-wide GIMP palettes installation when searching for palettes.This folder is used to store user defined patterns. The GIMP checks this folder in addition to the system-wide GIMP patterns installation when searching for patterns.This folder is used to temporarily store undo buffers to reduce memory usage. If The GIMP is unceremoniously killed, files of the form: gimp<#>.<#> may persist in this folder. These files are useless across GIMP sessions and can be destroyed with impunity.This folder will contain a number of important files. Click on one of the files or folders in the tree to get more information about the selected item.This is the distance in pixels where Guide and Grid snapping activates.This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.This text input field is limited to %d characters.This tool has no options.ThresholdThreshold does not operate on indexed layers.Threshold:Thumbnail %d of %dTilt:TinyTitle & StatusTool OptionsTool Options MenuTool Toggle %sToolbox MenuToolsTransfer Alpha to MaskTransformTransform ChannelTransform DirectionTransform LayerTransform PathTransform Tool proceduresTransformationTransforming...Translation byTransparencyTrue ColorTypeType %sUnable to add a layer mask since the layer already has one.Unable to cut or copy because the selected region is empty.Unable to open a test swap file. To avoid data loss please check the location and permissions of the swap directory defined in your Preferences (currently "%s").UndefinedUndoUndo HistoryUnitsUnknownUnknown file typeUnloadUnnamedUntitledUse all visible layers when shrinking the selectionUser Installation LogUser InterfaceValueValue:Version %s brought to you byVersion:VerticalVertical offset of the first grid line; this may be a negative number.Vertical spacing of grid lines.Web BrowserWhen enabled the dialog automatically follows the image you are working on.When enabled, all paint tools will show a preview of the current brush's outline.When enabled, an image will become the active image when its image window receives the focus. This is useful for window managers using "click to focus".When enabled, menus can be torn off.When enabled, pressing F1 will open the help browser.When enabled, the GIMP will not save if the image is unchanged since opening it.When enabled, the GIMP will use a different info window per image view.When enabled, the X server is queried for the mouse's current position on each motion event, rather than relying on the position hint. This means painting with large brushes should be more accurate, but it may be slower. Perversely, on some X servers enabling this option results in faster painting.When enabled, the grid is visible by default. This can also be toggled with the "View->Show Grid" command.When enabled, the guides are visible by default. This can also be toggled with the "View->Show Guides" command.When enabled, the image window will automatically resize itself, when zooming into and out of images.When enabled, the image window will automatically resize itself, whenever the physical image size changes.When enabled, the layer boundary is visible by default. This can also be toggled with the "View->Show Layer Boundary" command.When enabled, the menubar is visible by default. This can also be toggled with the "View->Show Menubar" command.When enabled, the rulers are visible by default. This can also be toggled with the "View->Show Rulers" command.When enabled, the scrollbars are visible by default. This can also be toggled with the "View->Show Scrollbars" command.When enabled, the selected brush will be used for all tools.When enabled, the selected gradient will be used for all tools.When enabled, the selected pattern will be used for all tools.When enabled, the selection is visible by default. This can also be toggled with the "View->Show Selection" command.When enabled, the statusbar is visible by default. This can also be toggled with the "View->Show Statusbar" command.When enabled, this will ensure that each pixel of an image gets mapped to a pixel on the screen.When enabled, this will ensure that the full image is visible after a file is opened, otherwise it will be displayed with a scale of 1:1.When enabled, you can change keyboard shortcuts for menu items by hitting a key combination while the menu item is highlighted.WhiteWidthWidth:Window ManagementWindow PositionsWriting '%s' -XCF error: unsupported XCF file version %d encounteredXCF warning: version 0 of XCF file format +%sThe foreground color of the grid.The gimprc is used to store personal preferences that affect GIMP's default behavior. Paths to search for brushes, palettes, gradients, patterns, plug-ins and modules can also configured here.The horizontal image resolution.The layer you selected is a text layer but it has been modified using other tools. Editing the layer with the text tool will discard these modifications. + +You can edit the layer or create a new text layer from its text attributes.The name of the directory holding the GIMP user configuration cannot be converted to UTF-8: %s + +Most probably your filesystem stores files in an encoding different from UTF-8 and you didn't tell GLib about this. Please set the environment variable G_FILENAME_ENCODING.The sessionrc is used to store what dialog windows were open the last time you quit The GIMP. You can configure The GIMP to reopen these dialogs at the saved position.The thumbnail in the Open dialog will be automatically updated if the file being previewed is smaller than the size set here.The tile cache is used to make sure the GIMP doesn't thrash tiles between memory and disk. Setting this value higher will cause the GIMP to use less swap space, but will also cause the GIMP to use more memory. Conversely, a smaller cache size causes the GIMP to use more swap space and less memory.The unit used for coordinate display when not in dot-for-dot mode.The unitrc is used to store your user units database. You can define additional units and use them just like you use the built-in units inches, millimeters, points and picas. This file is overwritten each time you quit the GIMP.The vertical image resolution.The window type hint that is set on dock windows. This may affect the way your window manager decorates and handles dock windows.The window type hint that is set on the toolbox. This may affect how your window manager decorates and handles the toolbox window.ThemeTheme FoldersThemesThere are %d images with unsaved changes:There are not enough visible layers for a merge down.There is always a tradeoff between memory usage and speed. In most cases, the GIMP opts for speed over memory. However, if memory is a big issue, try to enable this setting.There is no active layer or channel to copy from.There is no active layer or channel to cut from.There is no active layer or channel to stroke toThere is no active layer or channel to stroke to.There is one image with unsaved changes:There should be a file called '%s'. Please check your installation.There was an error parsing your '%s' file. Default values will be used. A backup of your configuration has been created at '%s'.This file holds a collection of standard media sizes that serve as image templates.This folder is searched for image templates.This folder is searched for user-installed themes.This folder is used to store fonts you only want visible in the GIMP. The GIMP checks this folder in addition to the system-wide GIMP fonts installation when searching for fonts. Use this only if you really want to have GIMP-only fonts, otherwise put things in your global font directory.This folder is used to store parameter files for the Curves tool.This folder is used to store parameter files for the Levels tool.This folder is used to store tool options.This folder is used to store user created and installed scripts. The GIMP checks this folder in addition to the systemwide GIMP scripts folder when searching for scripts.This folder is used to store user created, temporary, or otherwise non-system-supported DLL modules. The GIMP checks this folder in addition to the system-wide GIMP module folder when searching for modules to load during initialization.This folder is used to store user created, temporary, or otherwise non-system-supported additions to the plug-in environment. The GIMP checks this folder in addition to the system-wide GIMP environment folder when searching for plug-in environment modification files.This folder is used to store user created, temporary, or otherwise non-system-supported plug-ins. The GIMP checks this folder in addition to the system-wide GIMP plug-in folder when searching for plug-ins.This folder is used to store user defined brushes. The GIMP checks this folder in addition to the system-wide GIMP brushes installation when searching for brushes.This folder is used to store user defined gradients. The GIMP checks this folder in addition to the system-wide GIMP gradients installation when searching for gradients.This folder is used to store user defined palettes. The GIMP checks this folder in addition to the system-wide GIMP palettes installation when searching for palettes.This folder is used to store user defined patterns. The GIMP checks this folder in addition to the system-wide GIMP patterns installation when searching for patterns.This folder is used to temporarily store undo buffers to reduce memory usage. If The GIMP is unceremoniously killed, files of the form: gimp<#>.<#> may persist in this folder. These files are useless across GIMP sessions and can be destroyed with impunity.This folder will contain a number of important files. Click on one of the files or folders in the tree to get more information about the selected item.This is the distance in pixels where Guide and Grid snapping activates.This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.This text input field is limited to %d characters.This tool has no options.This window has %d tabs open. Closing the window will also close all its tabs.ThresholdThreshold does not operate on indexed layers.Threshold:Thumbnail %d of %dTile cache _size:Tile cache size:Tilt:TinyTitle & StatusTo _PathTo_ysToggle Quick MaskToggle _Quick MaskToo many error messages!Tool OptionsTool Options MenuTool Toggle %sTool _OptionsTool iconTool icon with crosshairTool_boxToolboxToolbox MenuToolsTools MenuTools such as fuzzy-select and bucket fill find regions based on a seed-fill algorithm. The seed fill starts at the initially selected pixel and progresses in all directions until the difference of pixel intensity from the original is greater than a specified threshold. This value represents the default threshold.Tr_ansparencyTransfer Alpha to MaskTransformTransform ChannelTransform DirectionTransform LayerTransform PathTransform Text LayerTransform Tool proceduresTransform layerTransform pathTransform selectionTransformationTransformation proceduresTransforming...Translation byTransparencyTransparency _type:Triangular waveTrue ColorTypeType %sType a new acceleratorType a new accelerator, or press Backspace to clearUnable to add a layer mask since the layer already has one.Unable to cut or copy because the selected region is empty.Unable to open a test swap file. To avoid data loss please check the location and permissions of the swap directory defined in your Preferences (currently "%s").Unable to open swap file. The Gimp has run out of memory and cannot use the swap file. Some parts of your images may be corrupted. Try to save your work using different filenames, restart the Gimp and check the location of the swap directory in your Preferences.Unable to run %s callback. The corresponding plug-in may have crashed.UndefinedUndoUndo HistoryUndo _HistoryUnitsUnknownUnknown file typeUnknown type of palette file: +%sUnloadUnnamedUntitledUse "_Dot for dot" by defaultUse _dynamic keyboard shortcutsUse _web browser insteadUse all visible layers when shrinking the selectionUse black and white (1-bit) paletteUse color from gradientUse custom paletteUse info windowUse web-optimized paletteUser Installation LogUser InterfaceUtility windowValueValue:Vectors modVersion %s brought to you byVersion:VerticalVertical offset of the first grid line; this may be a negative number.Vertical spacing of grid lines.Very largeVery smallViewView as _GridView as _ListView as gridView as listVisual class:Visual depth:Warning: Failed to load data: + +%sWarning: Failed to save data: + +%sWeb BrowserWeb browserWelcome to +The GIMP %d.%d User InstallationWhen enabled the dialog automatically follows the image you are working on.When enabled, GIMP will show mnemonics in menus.When enabled, all paint tools will show a preview of the current brush's outline.When enabled, an image will become the active image when its image window receives the focus. This is useful for window managers using "click to focus".When enabled, dialogs will show a help button that gives access to the related help page. Without this button, the help page can still be reached by pressing F1.When enabled, menus can be torn off.When enabled, pressing F1 will open the help browser.When enabled, the GIMP will not save if the image is unchanged since opening it.When enabled, the GIMP will use a different info window per image view.When enabled, the X server is queried for the mouse's current position on each motion event, rather than relying on the position hint. This means painting with large brushes should be more accurate, but it may be slower. Perversely, on some X servers enabling this option results in faster painting.When enabled, the cursor will be shown over the image while using a paint tool.When enabled, the grid is visible by default. This can also be toggled with the "View->Show Grid" command.When enabled, the guides are visible by default. This can also be toggled with the "View->Show Guides" command.When enabled, the image window will automatically resize itself, when zooming into and out of images.When enabled, the image window will automatically resize itself, whenever the physical image size changes.When enabled, the layer boundary is visible by default. This can also be toggled with the "View->Show Layer Boundary" command.When enabled, the menubar is visible by default. This can also be toggled with the "View->Show Menubar" command.When enabled, the rulers are visible by default. This can also be toggled with the "View->Show Rulers" command.When enabled, the scrollbars are visible by default. This can also be toggled with the "View->Show Scrollbars" command.When enabled, the selected brush will be used for all tools.When enabled, the selected gradient will be used for all tools.When enabled, the selected pattern will be used for all tools.When enabled, the selection is visible by default. This can also be toggled with the "View->Show Selection" command.When enabled, the statusbar is visible by default. This can also be toggled with the "View->Show Statusbar" command.When enabled, this will ensure that each pixel of an image gets mapped to a pixel on the screen.When enabled, this will ensure that the full image is visible after a file is opened, otherwise it will be displayed with a scale of 1:1.When enabled, you can change keyboard shortcuts for menu items by hitting a key combination while the menu item is highlighted.WhiteWhite Balance operates only on RGB color layers.WidthWidth:Window ManagementWindow Manager HintsWindow PositionsWriting '%s' +XXCF error: unsupported XCF file version %d encounteredXCF warning: version 0 of XCF file format did not save indexed colormaps correctly. -Substituting grayscale map.YellowYellow:You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom factor: %d:1Zoom inZoom in & outZoom outZoom:[ Base Image ]_Antialiasing_Auto_B_Blending Function for Segment_Blending Function for Selection_Brightness:_Brush_C_Delete Segment_Delete Selection_Flip Segment_Flip Selection_G_Gradient_Horizontal:_Hue:_Icon:_Import_Lightness:_M_Manually_Name:_Pattern_Preview_R_Redo_Redo %s_Replicate Segment..._Replicate Selection..._Saturation:_Selection_Undo_Undo %s_Vertical:_X:_Y_Y:_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for token %sinvalid value '%s' for token %smillimetermillimetersn/apercentpicapicaspixelpixelspixels/%apixels/%spointpointstranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: gimp +Substituting grayscale map.YYellowYellow:You are trying to create an image with a size of %s.You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your GIMP installation is incomplete:Your input device settings will be reset to default values the next time you start GIMP.Your keyboard shortcuts will be reset to default values the next time you start GIMP.Your window setup will be reset to default values the next time you start GIMP.Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_All_Anchor Layer_Antialiasing_Arbitrary Rotation..._Artistic_Aspect_Auto_B_BG Color_Background color:_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Bucket Fill_Buffer_By Color_By Color Select_C_Cap style:_Channels_Clear Errors_Clear Undo History_Clone_Close_Close Tab_Clouds_Color Tools_Colors_Configure Color and Opacity..._Context_Context Help_Copy_Copy Named..._Create Image from Template..._Crop & Resize_Crop Image_Curved_Curves..._Dark Check Color_Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Desaturate_Detach Tab_Device Status_Dialogs_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Ellipse Select_Enable layer & channel previews_Enormous_Equalize_Eraser_FG Color_File_Fill with:_Fit Image in Window_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground color:_Free Select_G_Generic_Gigantic_Gradient_Gradients_Grayscale_Grayscale copy of layer_Grow..._Guides_Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Info Window_Intersect with Selection_Invert_Join style:_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Left Neighbor's Right Endpoint_Levels..._Light Check Color_Light Effects_Lightness:_Line Style_Linear_Linked_Load Left Color From_Lower Channel_Lower Layer_Lower Path_M_Manually_Map_Mask_Mask to Selection_Maximum number of colors:_Measure_Medium_Merge Palettes..._Merge imported paths_Migrate GIMP 2.0 user settings_Misc. Stuff_Miter limit:_Mode_Module Manager_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._Padding Color_Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preferences_Preview_Preview Size_Previous tip_Print Size..._Properties_Quick Mask Active_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Reassign shortcut_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Remove unused colors from final palette_Render_Replace_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Order & Visibility_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Right Endpoint_Right Neighbor's Left Endpoint_Rotate_Saturation:_Save_Save Left Color To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Scale imported paths to fit image_Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Show Image Selection_Show in Toolbox_Sinusoidal_Small_Smudge_Snap distance:_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tool_Tools_Transfer layer's alpha channel_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Visible_Web_Web browser to use:_White (full opacity)_White Balance_Width:_Wrap around_X resolution:_X:_Xtns_Y_Y resolution:_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for icon typeinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetermillimetersminuten/apercentpicapicaspixelpixelspixels/%apixels/%spointpointssecondtips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: gimp Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-19 03:11+0100 -PO-Revision-Date: 2004-03-22 18:36+0200 +POT-Creation-Date: 2004-12-28 16:58+0100 +PO-Revision-Date: 2004-12-18 06:20+0200 Last-Translator: Mikko Paananen -Language-Team: Finnish +Language-Team: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit @@ -217,6 +361,8 @@ Käyttö: %s [valitsin ...] [tiedosto ...] + --batch-interpreter + Komentojonokomennot tulkitsevat proseduuri. --debug-handlers Käytä ei-vakavien signaalien käsittelijöiden virheenjäljitystä. --display Käytä annettua X näyttöä. --dump-gimprc Tulosta gimprc-tiedosto jossa on oletusarvot. @@ -228,77 +374,75 @@ --stack-trace-mode Virheenjäljitystila vakaville signaaleille. --system-gimprc Käytä järjestelmän gimprc-tiedostoa. - --verbose Näytä käynnistyslokia. + --verbose Näytä käynnistysviestit. -b, --batch Suorita komennot eräajona. -c, --console-messages Näytä varoitukset pääteikkunassa eikä valintaikkunassa. - -d, --no-data Älä lataa kuvioita, väriliukumia, paletteja tai siveltimiä. - -f, --no-fonts Älä lataa mitään kirjasinlajeja. + -d, --no-data Älä lataa siveltimiä, väriliukumia, paletteja tai kuvioita. + -f, --no-fonts Älä lataa mitään kirjasimia. -g, --gimprc Käytä toista gimprc-tiedostoa. -h, --help Tulosta tämä avustusteksti. -i, --no-interface Suorita ohjelma ilman käyttöliittymää. -s, --no-splash Älä näytä käynnistysikkunaa. -v, --version Tulosta versiotiedot. -%d tasoa%d tasoa%d×%d pikseliä%g×%g %s%s kanavan kopio%s kanava valinnaksi%s ilmoitus%s:n kopio%s-maski%s%sNapsauta: valinnan kasvatus%s%sVeto: siirto ja skaalaus(%0.3f, %0.3f, %0.3f)(Ei mikään)(Tämä pääteikkuna sulkeutuu kymmenen sekunnin kuluttua) -(Nimeämätön leike)(Nimeämätön malli)(epäkelpo unicode-merkkijono)(tyhjä)Yksi tasoYksi taso<%s><>Parhaan mahdollisen suorituskyvyn saavuttamiseksi joitain asetuksia pitää säätää.GIMP — GNU-projektin kuvankäsittelyohjelma +%d tasoa%d dpi%d dpi, %s%d tasoa%d minuuttia%d sekuntia%d×%d dpi%dx%d dpi, %s%d×%d pikseliä%g×%g %s%p%s kanavan kopio%s kanava valinnaksi%s ilmoitus%s:n kopio%s-maski%s%sNapsauta: valinnan kasvatus%s%sVeto: siirto ja skaalaus(%0.3f, %0.3f, %0.3f)(Ei mikään)(Tämä pääteikkuna sulkeutuu kymmenessä sekunnissa) +(Nimeämätön leike)(Nimeämätön malli)(Vaihtelee)(muokkaamaton)(epäkelpo Unicode-merkkijono)(muutettu)(tyhjä)Yksi tasoYksi taso15° %s16:1 (1600%)1:1 (100%)1:16 (6.25%)1:2 (50%)1:4 (25%)1:8 (12.5%)2:1 (200%)Muunnetaan...4:1 (400%)8:1 (800%)<%s><>Parhaan mahdollisen suorituskyvyn saavuttamiseksi joitain asetuksia pitää säätää.GIMP — GNU-projektin kuvankäsittelyohjelma Copyright © 1995-2004 -Spencer Kimball, Peter Mattis ja GIMP-kehitystiimi.Vinkkitiedoston muoto on väärä!Vinkkejä ei näytä olevan tälle kielelle!Tietoja GIMPistäAktiiviset suodattimetLisääLisää alfakanavaLisää ankkuriLisää kanavaLisää apulinjatLisää vaaka-apulinjaLisää tasoLisää tasoon maskiLisää polkuLisää tekstitasoLisää pysty-apulinjaLisää tasoon maskiLisää kuvaan tekstiäLisää nykyinen väri värihistoriaanLisää valittu suodatinLisää valintaanLisätään teema '%s' (%s) -SummaKirkkauden ja kontrastin säätöVäritasapainon säätöVärikäyrien säätöVäritasojen säätöKirkkauden ja kontrastin säätöVäritasapainon säätöVärikäyrien säätöVäritasojen säätöVärisävyn ja kylläisyyden säätöSäädä tasoja automaattisestiSäätöVaikutus:Vaikutusalue %sRuiskuRuiskuta väriä vaihtelevalla paineellaLinjassaLinjausKaikki kanavatKaikki kuva- ja kumoamisdata joka ei mahdu kuvavälimuistiin kirjoitetaan sivutustiedostoon. Tämän tiedoston tulee sijaita paikallisella tiedostojärjestelmällä jossa on tarpeeksi tilaa (useita satoja megatavuja). Unix-järjestelmässä sopivin paikka on /var/tmp tai /tmp -hakemisto.Salli läpinäkyvien alueiden täyttöSalli läpinäkyvien alueiden valintaPeittoAlfakanava valinnaksiPeitto:Kelluva valintaKulma:AntialiasointiUlkoasuSovella tason maskiaRaja-arvoHaluat poistaa "%s":n listalta ja levyltä?Haluatko poistaa mallin '%s' listalta ja levyltä?Kysy vahvistusta ennen kuin kuva suljetaan tallettamatta.Lisää kenttäLisää kuvaan kenttäLiitä kenttäTekijä:AutoAutomaattinen latausSuodattimetTyypit:TaustaväriTaustaväri:Taustaväri: %d, %d, %dTäyttö perustuu kaikkiin näkyviin tasoihinValinta kaikille näkyville tasoilleTason taaViisteMustaSekoitaSekoita: Sekoittaminen ei sallittu indeksoiduille kuville.Täytän...SininenSininen:Tee epäteräväksiEpäterävöi tai terävöiReunusta kanavaValitse valinnan reunaReunan valintaKirkkaus- ja kontrastisäätöKirkkaus- ja kontrastisäätö ei toimi indeksoiduille kuville.SivellinmuokkainSivellinkansiotSivellinkäyttöliittymäSivellin:SiveltimetSiveltimetTäyttöLeikkeetLeikkeetVärivarjostusTylppäCMYKSarakkeita:Näytön resoluution kalibrointiToiminnon %s kumoaminen ei onnistuPeruutaMaskin lisäys tasoon joko on eri kokoinen ei onnistu.Maskin lisäys tasoon jolla ei ole alfakanavaa ei onnistu.Maskin lisäys tasoon joka ei ole osa kuvaa ei onnistu.Tason ankkurointi epäonnistui, koska se ei ole kelluva valinta.Ei voi muuntaa paletiksi jossa on yli 256 väriä.Kelluvasta valinnasta ei voi tehdä uutta tasoa, koska se on osa tasomaskia tai kanavaa.Kansion '%s' luonti epäonnistui: %sEsikatselun luonti epäonnistuiEi voida rajata koska valittu alue on tyhjä.Ei voi laajentaa ${%s}Kopiointi epäonnistui -koska valittu alue on tyhjä.Tasoa ilman alfakanavaa ei voi nostaa.Ei voi tallentaa, mitään ei ole valittuKankaan kokoKeski-X:KeskitettyVaihda taustaväriäVaihta edustaväriäVaihda kuvan tarkkuuttaVaihda kuvan yksikötMuuta tason tai valinnan perspektiiviKanavaKanavan ominaisuudetKanavan nimi:Kanavaa ei voi laskea enempää.Kanavaa ei voi nostaa enempää.Kanava valinnaksiKanava:KanavatKanavatTyhjennäTyhjennä kanavaNapsauta "Jatka" jos hyväksyt ylläolevat asetukset.Napsauta "Jatka" luodaksesi henkilökohtaisen GIMP-kansiosi.Napsauta "Jatka" aloittaaksesi henkilökohtaisen GIMP-asennuksen.Napsauta päivittääksesi esikatselun -%s napsauta pakottaaksesi päivityksenNapsauta: valintaNapsauta: valinta Veto: siirtorajataan pohjimmaisen tason koon mukaanrajataan kuvan koon mukaanKloonausPoista välilehtiVäriVäritasapainon säätöNäyttösuotimetVäripoimintaPoimi väri -tiedotVäritasapainon säätö käytettävissä vain täysvärikuvilla.Väri:Värityksen valintaVäritystyyppiVäritäVäritys toimii vain täysvärikuvilla.Väritä kuvaVäritä kuvaaVärikarttaSaraketta:Kontrasti:Näyttösuodinten asetusAseta apuviivatAseta kuvan apuviivatVahvista koon muutosVahvista tekstin muokkausJatkuvaRajoituksetYhteysriippuvat kohdistimet ovat viileitä. Ne ovat oletusarvoisesti käytössä. Niistä aiheutuu kuitenkin yleisrasitetta jota ehkä haluat välttää.JatkaAvustaneetMuunnoksetMuunna kuva harmaasävyiseksiMuunna kuva rajoitettuun värimääräänMuuta indeksoituun palettiinMuunna kuva täysväriseksiKonvoluutioSekoituksen tyyppi %sKopioi nimettyKopioidaan tiedosto '%s' -> '%s'...Copyright:Segmentti %d on korruptoitunut väriliukutiedostossa %s.Tiedostoa "%s" ei voinut luoada: %sTilapäistiedostoa "%s" ei voitu luoda: %sTiedoston '%s' poistaminen epäonnistui: %sTiedoston "%s" avaaminen luettavaksi epäonnistui: %sTiedoston "%s" avaaminen kirjoitettavaksi epäonnistui: %sTiedoston '%s' avaaminen epäonnistui: %sEi voinut lukea %d tavua tiedostosta '%s'. Virhe: %sTiedoston '%s' haku epäonnistui.Lukumäärä:Luo uusi malliLuo uusi kuvaUusi tasoLuo uusi malliLuo kuvalle uusi näkymäLuo kuva valitusta mallistaLuo uusi malliLuo ja muokkaa kuvia.Luo ja muokkaa polkujaLuodaan kansio '%s'...RajaaRajaa & muokkaa kokoaRajaa & muokkaa kokoa -tiedotRajaa kuvaRajaa tasoRajaa tai muokkaa kuvan kokoaRajaa: Vain ristiKuutiollinen (paras)Käyrän tyyppiVärintoistokäyrätIndeksoitujen kuvien käyriä ei voi muokataRäätälöityLeikkaaLeikkaa nimettySyaaniSyaaniKatkoviivaPäiväys:Ulkoasu kokoruututilassaUlkoasu normaalitilassaApuviivatApuviivatPoista tasomaskiPoista malliPoista tallennetut asetukset...Poista malliPoista tämä kuvaPienennä värikylläisyyttäVärikylläisyyden vähentäminen onnistuu vain täyväritasoille.KuvausSuunnitteleLaitteiden tilaLaitteetIkkunatErotusSuoraväritilaHylkää tekstitietoNäytön asetuksetNavigointiDisplay-proseduuritNäytetään [%0.6f, %0.6f]RoiskivaEtäisyysEtäisyys: %0.6fPehmennysJaaHaluatko nollata kaikki työkalujen asetukset oletusarvoihin?AsiakirjahistoriaAsiakirjatAsiakirjavalikkoVärilisävalotusVarjosta/lisävalotaVarjostus/lisävalotusVeto: siirtoPiirrä mustekynälläPiirtotasoKuvaproseduuritPudota uusi tasoPudota uusi polkuKirjasinten puutteen vuoksi toiminnallisuus ei ole käytettävissä.Kahdenna valittu malliToiminnon kumoaminen ei onnistuMuokkaaMuokkaa kanavan ominaisuuksiaMuokkaa kanavan väriäMuokkaa paletin väriäMuokkaa tason ominaisuuksiaMuokkaustilaMuokkaa väriäMuokkaa polun ominaisuuksiaMuokkaa malliaMuokkaustoiminnotMuokkaa malliaEllipsivalintaTyhjä kanavaTyhjä tasoTyhjä polkuTyhjä tekstitasoTyhjä muuttujalista tiedostossa '%s'.Näytä vihjeet käynnistyessä.Näytä työkaluvihjeetJättikokoinenAnna nimi yhdistetylle paletilleAnna tallennetuille asetuksilleAnna kuvalle nimiAnna mallille nimiAnna uusi nimi asetuksilleYmpäristöKansiot tallennetulle ympäristölleTasoita sävyalueEkvalistointi ei toimi indeksoiduilla tasoilla.Pyyhi taustaväriin tai läpinäkyväksiPyyhekumiVirhekonsoliVirhekonsolivalikkoVirhe tallennettaessa tiedostoa '%s'.Virhe %s tiedoston avauksessa rivillä %d: %sVirhe luettaessa "%s": %sVirhe kirjoitettaessa "%s": %sVirhe kirjoitettaessa tiedostoa "%s"Virhe tiedostoon kirjoituksessa: %s +Spencer Kimball, Peter Mattis ja GIMP-kehitystiimi.Vinkkitiedoston muoto on väärä!Vinkkejä ei näytä olevan tälle kielelle!Tiedosto '%s' on jo olemassa.Lisää valintaanKulmaTietoja GIMPistäToimintoAktivoi kohdistettu kuvaAktiiviset suodattimetYlinäytteistysLisääLisää alfakanavaLisää alfakanavaLisää ankkuriLisää kanavaLisää väriLisää apulinja:Lisää apulinjatLisää vaaka-apulinjaLisää tason maski...Lisää tasoLisää tasoon maskiLisää polkuLisää piirtoLisää tekstitasoLisää pysty-apulinjaLisää tasoon maskiLisää väri _taustastaLisää väri _edustastaTason maskin lisäysLisää kuvaan tekstiäLisää nykyinen väri värihistoriaanLisää valittu suodatin.Lisää palettiin %sLisää valintaanLisätään teema '%s' (%s) +SummaLisäohjaimetKirkkauden ja kontrastin säätöVäritasapainon säätöVärikäyrien säätöVäritasojen säätöKirkkauden ja kontrastin säätöVäritasapainon säätöVärikäyrien säätöVäritasojen säätöSävyn / valoisuuden / värikylläisyyden (HLS) säätöVärisävyn ja kylläisyyden säätöSäädä tasoja automaattisestiSäätöKehittyneet asetuksetVaikutus:Vaikutusalue %sRuiskuRuiskuta väriä vaihtelevalla paineellaLäpinäkyvyys valinnaksiLinjassaLinjausKaikki kanavatKaikki tiedostotKaikki tiedostotKaikki kuva- ja kumoamisdata joka ei mahdu kuvavälimuistiin kirjoitetaan sivutustiedostoon. Tämän tiedoston tulee sijaita paikallisella tiedostojärjestelmällä jossa on tarpeeksi tilaa (useita satoja megatavuja). Unix-järjestelmässä sopivin paikka on /var/tmp tai /tmp -hakemisto.Salli läpinäkyvien alueiden täyttöSalli läpinäkyvien alueiden valintaSalli suurennos %sPeittoAlfakanava valinnaksiPeitto:Valitun koon kuva käyttäisi enemmän muistia kuin asetuksissa on sallittu (%s).AnimaatioAnkkuroi kelluva valintaAnkkuroi kelluva tasoAnkkuroi kelluva valintaKulma:Käänteinen pyyhkiminen %sAntialiasointiUlkoasuSovella tason maskiaSovella tason maskiaRaja-arvosovella tason maskiaHaluat poistaa "%s":n listalta ja levyltä?Haluatko poistaa mallin '%s' listalta ja levyltä?Kuten asetuksissaKysy vahvistusta ennen kuin kuva suljetaan tallettamatta.Sivusuhde:Suhde:Lisää kenttäLisää kuvaan kenttäLiitä kenttäLisää kenttäTekijä:AutoSeuraa automaattisesti käsiteltävää kuvaaAutomaattinen pienennysPienennä valinta automaattisestiMuuta ikkunan kokoa suurennoskertoimen mukaanAutomaattinen latausAutomaattisesti tunnistettuSuodattimetTyypit:Täyttö taustavärilläKirkkaus- ja kontrastisäätö...LeikkeetTaustaväriTaustaväriTaustaväri:Taustaväri: %d, %d, %dKäänteinen (korjaava)Täyttö perustuu kaikkiin näkyviin tasoihinValinta kaikille näkyville tasoilleTason taaViisteBilineaarinenMustavalkoinenMusta:Sekoita päätepisteitten vä_ritSekoitaSekoitaSekoita päätepisteitten _peitotSekoita: Sekoittaminen ei sallittu indeksoiduille kuville.Täytän...SininenSininen:Tee epäteräväksiEpäterävöi tai terävöiReuna...Reunusta kanavaValitse valinnan reunaReunan valintaKirkkaus- ja kontrastisäätöKirkkaus- ja kontrastisäätö ei toimi indeksoiduille kuville.SivellinSivellinmuokkainSivellinkansiotSivellinkäyttöliittymäSivellin:SiveltimetSiveltimetTäyttöLeikkeetLeikkeetVärivarjostusTylppäNimen loppuliitteen mukaanPalauttamalla kuvan levyltä +menetät kaikki muutokset ja toimintohistorian.CMYKKalibroi...VäripoimintaSarakkeita:YhdistäNäytön resoluution kalibrointiToiminnon %s kumoaminen ei onnistuKankaan koko...PeruutaPeruutaMaskin lisäys tasoon joko on eri kokoinen ei onnistu.Maskin lisäys tasoon jolla ei ole alfakanavaa ei onnistu.Maskin lisäys tasoon joka ei ole osa kuvaa ei onnistu.Tason ankkurointi epäonnistui, koska se ei ole kelluva valinta.Ei voi muuntaa paletiksi jossa on yli 256 väriä.Kelluvasta valinnasta ei voi tehdä uutta tasoa, koska se on osa tasomaskia tai kanavaa.Kansion "%s" luonti epäonnistui: %sEsikatselun luonti epäonnistuiEi voida rajata koska valittu alue on tyhjä.Ei voi laajentaa ${%s}Kopiointi epäonnistui, koska valittu alue on tyhjä.Tasoa ilman alfakanavaa ei voi nostaa.Ei voi tallentaa, mitään ei ole valittu.Tyhjälle kanavalla ei voi piirtää.Ei voi piirtää tyhjää polkua.Kankaan kokoKankaan laajennus:Keski-X:KeskitettyVaihda taustaväriäVaihda värikartan kohdatVaihta edustaväriäVaihda kuvan tarkkuuttaVaihda kuvan yksikötVaihda tulostuskokoVaihda nykyistä tasoa tai polkuaVaihda apuviivojen taustaväriVaihda apuviivojen edustaväriMuuta indeksoitua palettiaMuuta tason tai valinnan perspektiiviOikopolun muuttaminen epäonnistui.KanavaKanavan ominaisuudetKanavan nimi:Kanavaa ei voi laskea enempää.Kanavaa ei voi nostaa enempää.Kanavan väriKanava on jo pohjimmaisena.Kanava on jo päällimmäisenä.Kanava _valinnaksiKanava valinnaksiKanava valinnaksiKanava:KanavatKanavatRuudutuksen koko:Valitse piirtotyyliYmpyräTyhjennäTyhjennäTyhjennä kanavaTyhjennä toimintohistoriaPoista kaikki tekstiTyhjennä virheetTyhjennä toimintohistoria...Napsauta "Jatka" jos hyväksyt ylläolevat asetukset.Napsauta "Jatka" luodaksesi henkilökohtaisen GIMP-kansiosi.Napsauta "Jatka" aloittaaksesi henkilökohtaisen GIMP-asennuksen.Napsauta "Jatka" aloittaaksesi henkilökohtaisen GIMP-asennuksen.Napsauta liittääksesi tämän ankkurin valittuun päätepisteeseen.Napsauta lisätäksesi ankkurin (Koita Shiftiä)Napsauta luodaksesi uuden komponentin polkuun.Napsauta luodaksesi uuden polun.Napsauta luodaksesi esikatselunNapsauta poistaaksesi tämän ankkurin.Napsauta lisätäksi ankkurin polkuun (Koita Shiftiä)Napsauta tehdäksesi solmusta kulman.Napsauta avataksesi polun.Napsauta valitaksesi muokattavan polun.Napsauta päivittääksesi esikatselun +%s napsauta pakottaaksesi päivityksenNapsauta ja vedä muuttaaksesi käyrän muotoa (Shift: epäsymmetrinen)Napsauta ja vedä siirtääksesi ankkuria.Napsauta ja vedä siirtääksesi ankkureita.Napsauta ja vedä siirtääksi komponentti (Koita Shiftiä)Napsauta ja vedä siirtääksesi kahvaa (Koita Shiftiä)Napsauta ja vedä siirtääksesi polkua.Napsauta: valintaNapsauta: valinta Veto: siirtoLeikkaa tulosLeikepöytärajataan pohjimmaisen tason koon mukaanrajataan kuvan koon mukaanKloonausSulje %sSulje kaikki välilehdetSulje kaikki välilehdet?Poista välilehtiKopioi polkuVäritVäriVäritasapainon säätöNäyttösuotimetVäripoimintaPoimi väri -tiedotVäritasapainon säätö...Värisekoitus:Väritasapainon säätö käytettävissä vain täysvärikuvilla.Värin poistoVäri-indeksi:Väri:VärikarttaVärimalli:Väritä...Värityksen valinta osalleVäritystyyppiVäritäVäritys toimii vain täysvärikuvilla.Väritä kuvaVäritä kuvaaVärikarttaVärikartan editointiVärikarttavalikkoSaraketta:Kuvan komme_ntti:KommenttiKontrasti:KonvoluutioNäyttösuodinten asetusAseta kehittyneet syöttölaitteet...Aseta apuviivat...Aseta apuviivatAseta kuvan apuviivatNäppäimistöoikopolut_Aseta näppäimistöoikopolut...Aseta valittu suodatinAseta valittu suodatin: %sVahvista koon muutosVahvista skaalausVahvista tekstin muokkausVahvista tallentamattomien kuvien sulkeminenPäällekkäiset oikopolutKartiomainen (epäsymmetrinen)Kartiomainen (symmetrinen)Yhdistä piirrotJatkuvaRajoituksetKontekstiYhteysriippuvat kohdistimet ovat oletusarvoisesti käytössä. Niistä aiheutuu kuitenkin kuormaa jota voit haluta välttää.JatkaAvustaneetMuunnoksetMuunna reunaMuunna kuva harmaasävyiseksiMuunna kuva rajoitettuun värimääräänMuuta indeksoituun palettiinMuunna kuva täysväriseksiMuunna kuvaMuunna kuva rajoitettuun värimäärään (vaihe 2)...Muunna kuva rajoitettuun värimäärään (vaihe 3)...Muunna kuva rajoitettuun värimäärään...KonvoluutioSekoituksen tyyppi %sKopioi nimettyKopioi _näkyväKopioidaan tiedosto "%s" -> "%s"...Copyright:Rikkonainen segmentti %d väriliukutiedostossa '%s'.Tiedostoa "%s" ei voinut luoda: %sTilapäistiedostoa "%s" ei voitu luoda: %sTiedoston '%s' poistaminen epäonnistui: %sGIMP-avustusselainta ei löytynytTiedoston "%s" avaaminen luettavaksi epäonnistui: %sTiedoston "%s" avaaminen kirjoitettavaksi epäonnistui: %sTiedoston '%s' avaaminen epäonnistui: %sEi voinut lukea %d tavua tiedostosta '%s'. Virhe: %sTiedoston '%s' haku epäonnistui.GIMP-avustusselainta ei voitu käynnistää.Lukumäärä:Rajaa tasoUusi telakkaLuo uusi malliLuo uusi kuvaUusi tasoLuo uusi malliLuo kuvalle uusi näkymäLuo kuva valitusta mallistaLuo uusi malliLuo ja muokkaa kuvia.Luo ja muokkaa polkujaLuo polku tekstistäLuo valinta polustaLuodaan esikatselua...Luodaan kansio "%s"...RajaaRajaa & muokkaa kokoaRajaa & muokkaa kokoa -tiedotRajaa kuvaRajaa tasoRajaa kuvaRajaa tai muokkaa kuvan kokoaRajaa: Vain risti_LeikkaaLeikkaa nimetty...Kuutiollinen (paras)Nykyinen asetusNykyinen korkeus:Vain nykyinen tasoNykyinen tilaNykyinen leveys:Kohdistin_Osoittimen tila:Osoittime_n piirto:Käyrän tyyppiVärintoistokäyrätIndeksoitujen kuvien käyriä ei voi muokata.OmaMukautettu väriOma väriliukuOma laajennosväri:LeikkaaLeikkaa nimettySyaaniSyaani:_Kopioi sivellin_Kahdenna kanava_Kahdenna väriliukumaKahdenna tasoKahdenna palettiKahdenna polkuKahdenna kuvioTuplaa malli...Tumma ruudutusTummennaViiva piste piste...Piste viiva...Katkoviivakuvio:Esivalinta:KatkoviivaPäiväys:VirheenhakuUlkoasu kokoruututilassaUlkoasu normaalitilassaApuviivatApuviivat_Interpolaatiomenetelmä:Tasojen ja kanavien esikatselun koko:_Raja-arvo:Poista ankkuriPoista ankkuriPoista tason maskiPoista tasomaskiPoista objektiPoista segmenttiPoista malli_Poista sivellinPoista kanavaPoista väri_Poista väriliukuPoista tasoPoista tason maskiPoista palettiPoista polku_Poista kuvioPoista tallennetut asetukset...Poista leikePoista malliPoista tämä kuvaPoista vektoritTiedoston "%s" tuhoaminen epäonnistui: %sTiheät pisteetPienennä värikylläisyyttäVärikylläisyyden vähentäminen onnistuu vain täyväritasoille.KuvausSuunnitteleLaitteiden tilaLaitteetIkkunatIkkunatTimanttiErotusSuoraväritilaTason maski pois päältäQMask poisHylkää tekstitietoNäytön asetuksetNavigointiNäyttösuotimet...Display-proseduuritNäytön tyyppi:Näytetään [%0.6f, %0.6f]RoiskivaEtäisyys:Etäisyys: %0.6fVärisekoitusJaaTee uusi GIMP-asennusHaluatko nollata kaikki suodatinten asetukset oletusarvoihin?Haluatko nollata kaikki työkalujen asetukset oletusarvoihin?Haluatko korvata sen tallennettavalla kuvalla?Älä tallennaTelakoitavaAsiakirjahistoriaAsiakirjahistoriaAsiakirjatAsiakirjavalikkoVarjostus/lisävalotusVärilisävalotusVarjosta/lisävalotaVarjostus/lisävalotusTuplakatkoviivaSiirrä ankkuriSiirrä ankkuritSiirrä käyräSiirrä kahvaSiirrä polkuVeto: siirtoPiirrä mustekynälläPiirtotasoPiirtotason muutosKuvaproseduuritPudota uusi tasoPudota uusi polkuKirjasinten puutteen vuoksi toiminnallisuus ei ole käytettävissä.Näytä tämän ohjaimen tapahtumat_Kopioi sivellinKahdenna kanava_Kahdenna väriliukumaKahdenna tasoKahdenna palettiKahdenna polkuKahdenna kuvioKahdenna valittu malliToiminnon kumoaminen ei onnistuVie polku tiedostoon...Hyvin pieniReunan käyttäytyminenReunantunnistusMuokkaaMuokkaa kanavan ominaisuuksiaMuokkaa kanavan väriäMuokkaa paletin väriäMuokkaa paletin väriäMuokkaa tason ominaisuuksiaMuokka tason maskiaMuokkaustilaMuokkaa väriäMuokkaa polun ominaisuuksiaMuuta QMask-ominaisuuksiaMuuta QMask-väriäMuokkaa mallia_Muokkaa siveltimen ominaisuuksiaMuokkaa kanavan ominaisuuksiaMuokkaa väriäMuokkaa paletin väriä nro. %dMuokkaa väriliukuaMuokkaa tason ominaisuuksiaMuokkaa palettiaMuokkaa polun ominaisuuksiaMuokkaa kuviotaMuokkaustoiminnotMuokkaa malliaEllipsivalintaTyhjä kanavaTyhjä tasoTyhjä polkuTyhjä tekstitasoTyhjä muuttujalista tiedostossa '%s'.ParannaQMask päälleKäytä sekoitusta myös läpinäkyvyydelleTämä ohjain päälleNäytä vihjeet käynnistyessä.Näytä työkaluvihjeet.JättikokoinenAnna nimi yhdistetylle paletilleAnna tallennetuille asetuksilleAnna kuvalle nimiAnna mallille nimiAnna uusi nimi asetuksilleSyötä sijainti (URI):YmpäristöKansiot tallennetulle ympäristölleTasoita sävyalueEkvalistointi ei toimi indeksoiduilla tasoilla.Pyyhi taustaväriin tai läpinäkyväksiPyyhekumiVirhekonsoliVirhekonsoliVirhekonsolivalikkoVirhe tallennettaessa tiedostoa '%s'.Virhe jäsennettäessä tiedostoa '%s' rivillä %d: %sVirhe luettaessa "%s": %sVirhe luettaessa sivellintä "%s": %sVirhe kirjoitettaessa "%s": %sVirhe kirjoitettaessa tiedostoa "%s"Virhe tiedostoon "%s" kirjoituksessa: "%s"Virhe kirjoitettaessa tiedostoon "%s": %sVirhe kirjoitettaessa tilapäistiedostoon "%s": %s Tiedostoa ei ole luotu.Virhe kirjoitettaessa tilapäistiedostoon "%s": %s -Alkuperäistä tiedostoa ei ole muutettu.Virheetlaajennetaan tarvittaessaTallenna polku SVG -tiedostoonValotus:Kehittyneet syöttölaitteet:LaajennuksetEdustaväristä taustaväriin (HSV-värisävy myötäpäivään)Edustaväristä taustaväriin (HSV-värisävy vastapäivään)Edustaväristä taustaväriin (HSV)Edustaväristä taustaväriin (RGB)Edustaväristä läpinäkyväänEdusta/TaustaEdusta/Tausta-väriPolun luku tiedostosta %s epäonnistui: %sJäsennysvirhe: -Sivellintiedosto '%s' näyttää katkenneen.Virhe sivellintiedostossa '%s': File is corrupt.Virhe sivellintiedostossa '%s': Not a GIMP brush file.Virhe sivellintiedostossa '%s': Unknown GIMP brush version.Virhe: Sivellintiedosto '%s' on viallinen. Tuntematon värisyvyys %d.Sivellintiedosto '%s' on viallinen. Tuntematon versio %d.Virhe sivellintiedostossa '%s': Unsupported brush depth %d.Jäsennysvirhe: -Väriliukutiedosto '%s' on viallinen.Vakava jäsennysvirhe: -Siveltimen putkitustiedosto '%s' on viallinen.Jäsennysvirhe: Palettitiedosto '%s': Puuttuva otsikkotieto.Ladataan palettia '%s': Otsikkotieto puuttuu. -Pitäisikö tämä tiedosto muuntaa DOS muodosta?Ladataan palettia %s: Lukuvirhe rivillä %d.Jäsennysvirhe: Kuviotiedosto '%s' katkesi kesken: Ei voinut lukea %d tavua: %sJäsennysvirhe: Kuviotiedosto '%s': tuntematon versio %d.Jäsennysvirhe: Kuviotiedosto '%s': Tuntematon värisyvyys: %d.Pyöristä kanavaPyöristä valintaPyöristyssädeTiedostotoiminnotTäytä kanavaTäytön peitto:Täyttötyppi %sTäytä taustavärilläTäytä edustavärilläTäytä kuviollaTäytä läpinäkyvälläTäytä valkoisellaTäytä väriliukumallaTäytä värillä tai kuviollaTäytettyLopullista, yhdistettyä tasoa:Väriltään yhtenäisten alueiden löytäminenEtsi samanväriset alueetYhdistä tasotPeilikuvatyökaluPeilaa kanavaPeilaa tasoPeilaa tekstitasoPeilaustyyppi %sTee tasosta tai valinnasta peilikuvaKäännetään...Kelluva valintaKelluva valintaKelluvat valinnatKohdistusKansioKansiotKirjasinkansiotKirjasinkäyttöliittymäKirjasimetKirjasimetGIMP-asennusta varten on luotava kansio nimeltä %s.EdustaväriEdusta- ja taustavärit. Musta ja valkoinen neliö palauttavat värit. Nuolet vaihtavat värit keskenään. Napsauta vaihtaaksesi väriä.Edustaväri asetettu:Edustaväri: %d, %d, %dVapaa valintaVapaalla kädelläEpäterävä valintaGIMPGIMP-laajennosGIMP-ilmoitusGIMP'n virittelyGIMP-liitännäinenGIMP käynnistyyTekstieditoriPäivän GIMP-vihjeHenkilökohtainen GIMP-asennusGIMP ei voinut käynnistää graafista käyttöliittymää. -Varmistu, että kunnolliset asetukset on tehty näytölle.GIMP:n asennusta ei ole tehty kunnolla tälle käyttäjälle. -Käyttäjäkohtainen asennus ohitettiin '--no-interface' -valitsimen takia. -Käyttäjäkohtainen asennus tehdään kun GIMP käynnistetään ilman '--no-interface' -valitsinta. GIMP käyttää osaa keskusmuistista kuvatiedolle kuvavälimuistina. Voit säätää sen kokoa niin että se mahtuu keskusmuistiin. Ota huomioon muiden ajossa olevien ohjelmien vaatima muistitila.GIMP käyttää lisäksi gtkrc-nimistä tiedostoa jotta voit säätää sen ulkonäköä erikseen muista GTK-sovelluksista.GIMPin versioGIMP varkoittaa käyttäjää mikäli yritetään luoda kuva joka veisi enemmän muistia kuin tässä määritelty koko.GammaYleistäMäärittää GIMP:n käyttöön varattujen järjestelmän värien vähimmäismäärän. Tämä on yleensä merkityksellinen vain 8-bittisillä näytöillä.Hae näytön resoluutioGiganttinenGimprc-proseduuritVäriliukumien muokkainVäriliukumavalikkoVäriliukumakansiotVäriliun vasemmanpuoleisen päätypisteen väriVäriliun oikeanpuoleisen päätypisteen väriVäriliukumien käyttöliittymäVäriliukuma:VäriliukumatVäriliukumatHarmaaHarmaasävyVihreäVihreä:ApuviivatSuurenna kanavaaLaajenna valintaaLaajenna valintaaApulinjaApuviivoihin tarttuminenApulinjojen proseduuritHSVHSV (%0.3f, %0.3f, %0.3f)Kahvan sijainti: %.06fKovuusKovuus:KorkeusKorkeus:Selain avustuksilleAvustuksetApuproseduuritHex:Kirkkaat kohdatVihjeistys parantaa kirjasimen luettavuutta pienellä tarkkuudellaHistogrammiHistogrammiHistoriaVaakaEnsimmäisen rivin siirtymä; voi olla negatiivinen.Apuviivojen vaakasuora välistys.Kuinka monta hiljattain avatun kuvan tiedostonimeä pidetään tiedostovalikossa.SävySävy-värikylläisyysSävy-värikylläisyys toimii vain täysvärikuvillaSävy (H):ValtavaKuvaVäli:KuvakeJos kirjasimeen on tallennettu vihjeet niitä käytetään, mutta voit haluta käyttää ohjelmistopohjaista vihjeistystä.Virheellinen muuttujanimi tiedostossa '%s': %sKuvaKuvan tiedotKuvavalikkoKuvan kokoKuvan tilapalkin formaattiKuvamallitKuvan otsikon formaattiKuvan otsikon formaattiKuvaikkunan ulkoasuKuvaikkunatKuvamaskiKuvan tarkkuus on rajojen ulkopuolella, käytetään normaalia tarkkuutta.KuvatKuvavalikkoTyökalujen asetuksetTuo palettiTuo polkuTuo polut SVG -tiedostostaTuo uusi palettiKäännä maskiInkrementaalinenSisennys:Ensimmäisen rivin sisennysIndeksi:IndeksoituIndeksoituMuunnos indeksoiduksiInfoikkunaAlusta tason maski:Käynnistetään liitännäis-ohjelmatKäynnistetään liitännäistä: "%s" -MustekynäSyöttölaitteetOttotasotAsennus epäonnistui. Ota yhteys ylläpitoon.Käyttäjäkohtainen asennus onnistui. Napsauta "Jatka" jatkaaksesi.Päivitä hetiKäyttöliittymäGIMPin sisäinen proseduuriSisäiset proseduuritInterpolaatio:Leikkaa valinnan kanssaRisteykset (ristit)Risteykset (pisteet)Epäkelpo unicode-merkkijonoTiedostossa '%s' on virheellisiä unicode (UTF-8) merkkejä.Epäkelpo unicode merkkijono XCF tiedostossa.Epäkelpo unicode merkkijono sivellintiedostossa '%s'.Epäkelpo unicode-merkkijono kuviotiedostossa '%s'.Epäkelpo unicode-merkkijono palettitiedostossa '%s'Epäkelpo unicode-merkkijono kuviotiedostossa '%s'.Osoitteessa on virheellinen merkkijonoEpäkelpo leveys tai korkeus. Molempien täytyy olla suurempi kuin nolla.KäänteinenKäännä kanavaKäännä valintaEi toimi indeksoiduilla kuvilla.Tasaus:Voit muuttaa näppäinkomentoja dynaamisesti; menurc-tiedostossa luetellaan näppäinkomennot jotta ne voidaan ottaa käyttöön seuraavallakin kerralla. Voit muokata tätä tiedostoa jos haluat, mutta on paljon helpompaa sitoa näppäinkomennot uudestaan GIMPissä. Poistamalla tämän tiedoston palautat oletusnäppäinkomennot.NäppäimistöoikopolutVaakatasoIsoSuuri (256x256)Suurempi esikatseluViimeisin virhe:TasoTasolla "%s" ei ole alfakanavaa. Taso sijoitettiin sen yläpuolelle.Tason ominaisuudetTason täyttötapaTason Maski valinnaksiTason valintaTason _nimi:Tasoa ei voi laskea enempää.Tasoa ei voi nostaa enempää.Taso on jo pohjimmaisena.Taso on jo päällimmäisenä.Taso kuvan kokoiseksiTasotTasotTasojen yhdistelyn asetuksetVasemmanpuoleisen päätypisteen väriPituusGIMP yrittää palauttaa viimeisimmän talletetun istunnon jokaisella käynnistyskerralla.VäritasotIndeksoitujen kuvien väritasoja ei voi säätääViivaViivatyyli:Viivatyyli jota käytetään apuviivoissa.LineaarinenLataaLataa väritasoasetuksetLataa väritasoasetuksetLadataan esikatselua ...Sijainti:LogaritminenEtsin datatiedostojaLaske kanavaLaske taso pohjimmaiseksiLaske tasoLaske taso pohjimmaiseksiLaske polkuLaske polku pohjimmaiseksi.MagentaMagentaSuurennaHallitse ladattavia modulejaMaskin peitto:Matriisi:Enimmäissyvyys:Suurin värieroKeskiarvo:MittaMittaa etäisyyksiä ja kulmiaMittaa etäisyyksiä ja kulmiaMediaani:KeskiYhdistä alasYhdistä tasotYhdistä palettiYhdistä näkyvät tasotYhdistä näkyvät polutViestiproseduuritIlmoitus toistunut %d kertaaIlmoitus toistui.KeskisävytSekalaistaSärmäTilaToiminta:Muokkaa valittua väriäMuuta valitun välin väritasojaMuokkaa kaikkia värejäMuuta riviväliäModulikansiotModulihallintaModulitSiirräSiirrä kanavaaSiirrä apulinjaSiirrä tasoSiirrä tason maskiSiirrä polkuSiirrä valintaaSiirtotyökaluSiirrä tasoja ja valintojaLaske valittua suodatinta alemmasNosta valittua suodatinta ylemmäsSiirrä: KerroNavigointiUusi kanavaUusi kanavan väriUuden kanavan asetuksetUusi kuvaUusi tasoUusi polkuUuden polun asetuksetUusi malliEi siveltimiä käytettävissä tälle työkalulle.Ei enää saatavillaEi kuvioita tälle toiminnolleEi mikäänEi mitään (Nopein)NormaaliNormaali (128x128)Ei ole tavallinen tiedostoYhdistämiseen tarvitaan ainakin kaksi näkyvää tasoa.Ei tarpeeksi polkuja yhdistämiseen.SiirtymäTekstikanavaPiirtotason siirtoTekstitasoTekstitason maskiSiirtymä:LevylläJos GIMP on käännetty valitsimella --enable-mp tämä asetus määrittää kuinka montaa prosessoria GIMP:n pitäisi käyttää samanaikaisesti moniprosessorikoneissa.Vain muistissaPeittoPeitto:AvaaAvaa kuvaAvaa tekstitiedosto (Unicode/UTF-8)Napsauta avataksesi kuviovalitsijan.Avaa kirjasinvalitsinNapsauta avataksesi kuviovalitsijanNapsauta avataksesi kuviovalitsijan.Tiedoston '%s' avaaminen epäonnistui: +Alkuperäistä tiedostoa ei ole muutettu.VirheetTapahtumaHyvin suurilaajennetaan tarvittaessaTallenna polku SVG -tiedostoonVie kaikki polutVie valittu polkuValotus:Kehittyneet syöttölaitteet:LaajennuksetTäyttö edustavärilläEdustaväristä taustaväriin (HSV-värisävy myötäpäivään)Edustaväristä taustaväriin (HSV-värisävy vastapäivään)Edustaväristä taustaväriin (HSV)Edustaväristä taustaväriin (RGB)Edustaväristä läpinäkyväänEdustaväristä läpinäkyväänEdusta/TaustaEdusta/Tausta-väriKelluva valinta tasoksiSovita kangas tasoihinHäivytäPolun luku tiedostosta %s epäonnistui: %sPolun luku tiedostosta %s epäonnistui: %sKoristeellinenJäsennysvirhe: Sivellintiedosto '%s' näyttää katkenneen.Virhe sivellintiedostossa '%s': Tiedosto on rikki.Virhe sivellintiedostossa '%s': Ei ole GIMP sivellintiedosto.Virhe sivellintiedostossa '%s': Tuntematon muoto.Virhe sivellintiedostossa '%s': Tuntematon versio.Virhe: Sivellintiedosto '%s' on viallinen. Tuntematon värisyvyys %d.Sivellintiedosto '%s' on viallinen. Tuntematon versio %d.Virhe sivellintiedostossa '%s': Tuntematon siveltimen syvyys %d.Jäsennysvirhe: Väriliukutiedosto '%s' on viallinen.Jäsennysvirhe: Väriliukutiedosto '%s' ei ole GIMP muotoa.Jäsennysvirhe: Palettitiedosto '%s': Puuttuva otsikkotieto.Ladataan palettia '%s': Otsikkotieto puuttuu. +Tiedosto pitää muunnettaa DOS muodosta?Ladataan palettia %s: Lukuvirhe rivillä %d.Jäsennysvirhe: Kuviotiedosto '%s' katkesi kesken: Ei voinut lukea %d tavua: %sJäsennysvirhe: Kuviotiedosto '%s': tuntematon versio %d.Jäsennysvirhe: Kuviotiedosto '%s': Tuntematon värisyvyys: %d.Pyöristä...Pyöristä kanavaPyöristä valintaPyöristä reunatPyöristyssädeTiedostoT_iedoston avaus...TiedostotoiminnotTiedoston tyyppiTiedosto on jo olemassa!Tiedosto on katkennutTäytä kanavaTäytön peitto:Täyttötyppi %sTäytä samanväriset alueetTäytä läpinäkyvät alueetTäytä koko valintaTäytä taustavärilläTäytä taustavärilläTäytä edustavärilläTäytä kuviollaTäytä kuviollaTäytä läpinäkyvälläTäytä valkoisellaTäytä edustavärilläTäytä taustavärilläTäytä väriliukumallaTäytä värillä tai kuviollaTäytettySuotimetLopullista, yhdistettyä tasoa:Väriltään yhtenäisten alueiden löytäminenEtsi samanväriset alueetLaajenna ikkunaanSuhteuta ikkunan kokoonLaajenna ikkunaanLaajenna ikkunaanKiinteä kuvasuhdeKiinteä kokoYhdistä tasotPeilikuvatyökaluPeilaa kanavaPeilaa tasoPeilaa polkuPeilaa tekstitasoPeilaustyyppi %sPeilaa vaakasuuntaanPeilaa pystysuuntaanPeilaa kuvaTee tasosta tai valinnasta peilikuvaKäännetään...Käännetään...Kelluva valintaKelluva valintaKelluva tasoKelluva valinta +(%s)Kelluva valintaKelluva valinta tasoksiKelluvat valinnatTavallinen Floyd-Steinberg sekoitusFloyd-Steinberg sekoitus vähennetyllä värivuodollaKohdistusKansioKansiotKirjasinkansiotKirjasinkäyttöliittymäKirjasin:KirjasimetKirjasimetGIMP-asennusta varten on luotava kansio nimeltä %s.Pakota automaattinen vihjeistysEdustaväriEdusta- ja taustavärit. Musta ja valkoinen neliö palauttavat värit. Nuolet vaihtavat värit keskenään. Napsauta vaihtaaksesi väriä.EdustaväriEdustaväri asetettu:Edustaväri: %d, %d, %dNormaali (perinteinen)P_olustaVapaa valintaVapaa valintaVapaalla kädelläTeemastaIkkunointijärjestelmän tieto (%d×%d dpi)Vasemmalta oikealleOikealta vasemmalleValinnastaTeemastaEpäterävä valintaKokoruutuEpäterävä valintaGIMPGIMP-laajennosGIMP-ilmoitusGIMPin suorituskyvyn virittelyGIMP-liitännäinenGIMP käynnistyyTekstieditoriPäivän GIMP-vihjeHenkilökohtainen GIMP-asennusGIMP XCF kuvaGIMP ei voinut käynnistää graafista käyttöliittymää. +Varmista että ympäristö on asetettu oikein.Selain avustuksilleGIMP asennusta ei ole tehty kunnolla tälle käyttäjälle. +Käyttäjäkohtainen asennus ohitettiin "--no-interface" -valitsimen takia. +Käyttäjäkohtainen asennus tehdään kun GIMP käynnistetään ilman "--no-interface" -valitsinta.GIMP käyttää osaa keskusmuistista kuvatiedolle kuvavälimuistina. Voit säätää sen kokoa niin että se mahtuu keskusmuistiin. Ota huomioon muiden ajossa olevien ohjelmien vaatima muistitila.GIMP käyttää lisäksi gtkrc-nimistä tiedostoa jotta voit säätää sen ulkonäköä erikseen muista GTK-sovelluksista.GIMP versioGIMP varoittaa käyttäjää mikäli yritetään luoda kuva joka veisi enemmän muistia kuin tässä määritelty koko.GammaYleistäMäärittää GIMP:n käyttöön varattujen järjestelmän värien vähimmäismäärän. Tämä on yleensä merkityksellinen vain 8-bittisillä näytöillä.Muodosta optimaalinen palettiHae näytön resoluutioGiganttinenGimprc-proseduuritLasiefektitVäriliukumaVäriliukumien muokkainVäriliukuvalikkoVäriliukumakansiotVäriliun vasemmanpuoleisen päätypisteen väriVäriliun oikeanpuoleisen päätypisteen väriVäriliukumien käyttöliittymäVäriliukuma:VäriliukumatVäriliukumatVärin poistoVärin lisäysHarmaaHarmaasävyVihreäVihreä:ApuviivatApuviivojen väliSuurenna kanavaaLaajenna valintaaLaajenna valintaaApulinjaApuviivoihin tarttuminenApulinjojen proseduuritHSVHSV (%0.3f, %0.3f, %0.3f)HSV (sävy vastapäivään)HSV (sävy myötäpäivään)HTML-merkintä:_Korkeus:Käytettävä _selain avustuksille:Kahvan sijainti: %.06fKova reunaKova valoKovuusKovuus:KorkeusKorkeus:OhjeSelain avustuksilleAvustuksetApuselain ei käynnistynytApu-selainta ei löytynytApuproseduuritHex:Kirkkaat kohdatIkkunan reunustus Telakalle:Ikkunan reunustus Työkalulaatikolle:VihjeistysVihjeistys parantaa kirjasimen luettavuutta pienellä tarkkuudellaHistogrammiHistogrammiHistogrammiHistoriaVaakaEnsimmäisen rivin siirtymä; voi olla negatiivinen.Apuviivojen vaakasuora välistys.Kuinka monta hiljattain avatun kuvan tiedostonimeä pidetään tiedostovalikossa.SävySävy-värikylläisyysSävy-värikylläisyys toimii vain täysvärikuvilla.Sävy-värikylläisyys...Sävy (H):ValtavaKuvake ja tekstiKuvaTuo polku tiedostosta...Interpolaatio:Väli:KuvakeKuvake ja kuvausKuvake ja tekstiJos kirjasimeen on tallennettu vihjeet niitä käytetään, mutta voit haluta käyttää ohjelmistopohjaista vihjeistystä.Jos päällä, siirtotyökalu muuttaa aktiivista tasoa tai polkua, kun taso tai polku valitaan. Tämä on vanhempien versioiden käyttäytyminen.Jos et tallenna kuvaa, viimeisimmät muutokset menetetään (tallentamatta: %s).Tallentamattomat muutokset menetetään.Virheellinen muuttujanimi tiedostossa '%s': %sKuvaKuva ja apuviivatKuvaeditoriKuvan tiedotKuvavalikkoKuvan kokoKuvan tilapalkin formaattiKuvamallitKuvien esikatselutKuvan otsikon formaattiKuvan otsikon formaattiKuvaikkunan ulkoasuKuvaikkunatKuvassa ei ole näkyviä tasojaKuvatiedostoKuvamaskiKuvan tarkkuus on rajojen ulkopuolella, käytetään normaalia tarkkuutta.Kuvan kokoKuva lähteenäKuvalajiKuvatKuvavalikkoTyökalujen asetuksetTuo palettiTuo polkuTuo polut SVG -tiedostostaTuo uusi palettiTuo palettiTuo polkuTuotu polkuMustekynäKäänteinenKäännä maskiInkrementaalinenSisennys:Ensimmäisen rivin sisennysIndeksi:IndeksoituIndeksoituMuunnos indeksoiduksiKuvat indeksoidulla paletilla skaalataan aina ilman interpolaatiota. Asetus vaikuttaa vain skaalaaviin kanaviin ja maskeihin.InfoikkunaSuurennos alussa:Alusta tason maski:Käynnistetään liitännäis-ohjelmatKäynnistetään liitännäistä: "%s" +MustekynäOhjaimetSyöttölaitteetOttotasotLisää ankkuri väliinAsenna yksityinen värikartta; saattaa olla hyödyllinen pseudovärejä (256) käyttävissä näyttötiloissa.Asennus epäonnistui. Ota yhteys ylläpitoon.Käyttäjäkohtainen asennus onnistui. Napsauta "Jatka" jatkaaksesi.Päivitä hetiÄlysaksetIntensiteetti: %0.3f Peitto: %0.3fKäyttöliittymäGIMPin sisäinen proseduuriSisäiset proseduuritInterpolaatio:LeikkausLeikkaa valinnan kanssaRisteykset (ristit)Risteykset (pisteet)Epäkelpo Unicode-merkkijonoTiedostossa '%s' on virheellisiä unicode (UTF-8) merkkejä.Epäkelpo unicode merkkijono XCF tiedostossa.Epäkelpo unicode merkkijono sivellintiedostossa '%s'.Epäkelpo unicode-merkkijono kuviotiedostossa '%s'.Epäkelpo unicode-merkkijono palettitiedostossa '%s'Epäkelpo unicode-merkkijono kuviotiedostossa '%s'.Osoitteessa on virheellinen merkkijonoVirheellinen oikopolku.Epäkelpo leveys tai korkeus. Molempien täytyy olla suurempi kuin nolla.KäänteinenKäännä kanavaKäännä valintaEi toimi indeksoiduilla kuvilla.Käännä valintaHaluatko tehdä tämän?Olet käyttänyt GIMP 2.0:aa ennen.Kohdan ominaisuudetKohdan näkyvyysTasaus:Pidä läpinäkyysPidä päälläSäilytä kuvasuhde %sSäilytä kuvasude %sSäilytä korkeys %sPidä läpinäkyysSäilytä leveys %sNäppäin alasNäppäin alas (Alt)Näppäin alas (Control + Alt)Näppäin alas (Control)Näppäin alas (Shift + Alt)Näppäin alas (Shift + Control + Alt)Näppäin alas (Shift + Control)Näppäin alas (Shift)Näppäin vasemmalleNäppäin vasemmalle (Alt)Näppäin vasemmalle (Control + Alt)Näppäin vasemmalle (Control)Näppäin vasemmalle (Shift + Alt)Näppäin vasemmalle (Shift + Control + Alt)Näppäin vasemmalle (Shift + Control)Näppäin vasemmalle (Shift)Näppäin oikealleNäppäin oikealle (Alt)Näppäin oikealle (Control + Alt)Näppäin oikealle (Control)Näppäin oikealle (Shift + Alt)Näppäin oikealle (Shift + Control + Alt)Näppäin oikealle (Shift + Control)Näppäin oikealle (Shift)Näppäin ylösNäppäin ylös (Alt)Näppäin ylös (Control + Alt)Näppäin ylös (Control)Näppäin ylös (Shift + Alt)Näppäin ylös (Shift + Control + Alt)Näppäin ylös (Shift + Control)Näppäin ylös (Shift)Voit muuttaa näppäinkomentoja dynaamisesti; menurc-tiedostossa luetellaan näppäinkomennot jotta ne voidaan ottaa käyttöön seuraavallakin kerralla. Voit muokata tätä tiedostoa jos haluat, mutta on paljon helpompaa sitoa näppäinkomennot uudestaan GIMPissä. Poistamalla tämän tiedoston palautat oletusnäppäinkomennot.NäppäimistöNäppäinpainalluksetNäppäimistöoikopolutV->O_Vasemmanpuoleisen päätypisteen väri...VaakatasoIsoSuuri (256x256)Suurempi esikatseluViimeisin virhe:TasoTasolla "%s" ei ole alfakanavaa. Taso sijoitettiin sen yläpuolelle.Tason ominaisuudetTason rajat...Tason täyttötapaTason Maski valinnaksiTason valintaTason kokoTason _tilaTason _nimi:Tasoa ei voi laskea enempää.Tasoa ei voi nostaa enempää.Taso on jo pohjimmaisena.Taso on jo päällimmäisenä.Taso kuvan kokoiseksiTaso pohjimmaiseksiTaso kuvan kokoiseksiTaso päällimmäiseksiTason _alfakanavaTasotTasotTasojen yhdistelyn asetukset_Vasemmanpuoleisen päätypisteen väriVasemman reunan tasausPituus:GIMP yrittää palauttaa viimeisimmän talletetun istunnon jokaisella käynnistyskerralla.VäritasotIndeksoitujen kuvien väritasoja ei voi säätää.Vaalea ruudutusVaalennaViivaRiviväli:Viivan leveys:Viivatyyli:Viivatyyli jota käytetään apuviivoissa.Lineaarinenlinkitetty kohtaLataaLataa väritasoasetuksetLataa väritasoasetuksetLataa oikeanpuoleinen väriLataa käyrät tiedostostaLataa tasot tiedostostaLataa teksti tiedostostaLadataan esikatselua ...Sijainti:LogaritminenPitkät viivatEtsin datatiedostojaLaske kanavaLaske taso pohjimmaiseksiLaske kanava pohjimmaiseksiLaske tasoLaske taso pohjimmaiseksiLaske polkuLaske polku pohjimmaiseksi.Laske polku pohjimmaiseksi.Laske kanavaLaske kanava pohjimmaiseksiLaske tasoLaske taso pohjimmaiseksiLaske polkuLaske polku pohjimmaiseksi.SuurennaPääSiirrä näytölle...KuvauksetMagentaMagenta:SuurennaTee läpinäkyväksiHallitse ladattavia modulejaValinta-animaation nopeus:Maskin peitto:Maskaa _valitut alueetMaskaa v_alitsettomat alueetMatriisi:Enimmäissyvyys:Suurin tiedostokoko, josta tehdään esikatselu.Uuden kuvan enimmäiskoko:Suurin värieroMuistin käyttö kumoamistoiminnolle:Keskiarvo:MittaMittaa etäisyyksiä ja kulmiaMittaa etäisyyksiä ja kulmiaMittaa viivaimet ja syötä niiden pituudet:Mediaani:KeskiKeskipituiset viivatYhdistä alasYhdistä alasYhdistä tasotYhdistä palettiYhdistä näkyvät tasotYhdistä näkyvät polutYhdistä näkyvät tasot...Yhdistä näkyvät tasot...Yhdistä näkyvät polutYhdistä tasotYhdistä paletitYhdistä vektoritViestiproseduuritIlmoitus toistunut %d kertaa.Ilmoitus toistui.Ilmoitukset ohjataan virhesyötteeseen.KeskisävytSiirrä käyttäjän asetuksetKumoamistoiminnolle varatut tasot:SekalaistaSärmäTilaToiminta:Muokkaa valittua väriäMuuta valitun välin väritasojaMuokkaa kaikkia värejäMuuta riviväliäModulikansiotModulihallintaModulien hakupolkuModulitHiiren osoitinHiiren rullaHiiren rullan liikeSiirräSiirrä ankkuritSiirrä kanavaaSiirrä kelluva valintaSiirrä apulinjaSiirrä apulinja:Siirrä tasoSiirrä tason maskiSiirrä polkuSiirrä valintaaSiirrä tekstitasoaSiirtotyökaluSiirräSiirrä tasoja ja valintojaSiirrä valintaaSiirrä nykyinen tasoSiirrä valittua polkuaLaske valittua suodatinta alemmasNosta valittua suodatinta ylemmäsSiirrä näytölle...Siirrä: KerroVärien määrä:Na_vigointiNavigointiNavigointi-ikkunan koko:NimiNimi:NavigointiUusi kanavaUusi kanavan väriUuden kanavan asetuksetVäri taustastaVäri edustaväristäUusi kuvaUusi tasoUusi polkuUuden polun asetuksetUusi malliUusi sivellinUusi kanavaUusi kanava edellisillä arvoillaUusi kanava...Väri taustastaVäri edustaväristä_Uusi väriliukuLataa uusiUusi tasoUusi taso edellisillä arvoillaUusi taso...Uusi palettiUusi polku samoin asetuksinUusi polku...Uusi kuvioUusi vektoriEi siveltimiä käytettävissä tälle työkalulle.Ei valittua suodatintaEi sisällä väliliukuja: '%s'Ei enää saatavilla'%s' ei sisällä polkuja.Puskurissa ei ole polkujaEi kuvioita tälle toiminnolle.Ei valintaaEi valintaa piirrettäväksi.Ei esikatselukuviaEi linjassaEi mikäänEi mitään (Nopein)NormaaliNormaali (128x128)Normaalit pisteetNormaali-ikkunaEi ole tavallinen tiedostoYhdistämiseen tarvitaan ainakin kaksi näkyvää tasoa.Ei tarpeeksi polkuja yhdistämiseen.Käytettävien suorittimien lukumäärä:Apuviivojen määräTasojen määrä:Muu...SiirtymäTekstikanavaPiirtotason siirtoTekstitasoTekstitason maskiSiirrä (x/_2),(y/2)Siirtymä:LevylläJos GIMP on käännetty valitsimella --enable-mp tämä asetus määrittää kuinka montaa prosessoria GIMP:n pitäisi käyttää samanaikaisesti moniprosessorikoneissa.Vain muistissaAvaa tasona...PeittoPeitto:AvaaAvaa kuvaAvaa kuva tasonaAvaa sijaintiAvaa tekstitiedosto (Unicode/UTF-8)Avaa _sijainti..._PikavalinnatAvaa kuvaNapsauta avataksesi kuviovalitsijan.Avaa kirjasinvalitsinNapsauta avataksesi kuviovalitsijanAvaa paletin valintaNapsauta avataksesi kuviovalitsijan.Avaa valittuTiedoston "%s" avaaminen epäonnistui: %sTiedoston "%s" avaaminen epäonnistui: %sValitsimet: -Origo X:Alkuperäinen leveys:Muu %s...AntotasotSulauttavaPDB-kutsuvirhe proseduurille "%s" -Parametri #%d tyyppivirhe: odotettu %s, annettu %s.PDB-kutsuvirhe: %s ei löydyIsoviisaria Aira siivosi. -ABCabc XYZxyz åäöÅÄÖàášü€piirtoAsetukset jaetaan maalaustyökalujen välilläMaalausproseduuritMaalaustyökalu:Piirrä pehmeitä sivellinvetojaPiirrä kovareunaisella työkalullaMaalaa käyttäen kuviota tai kuvan osiaSivellinPalettiVäripaletin muokkainVäripalettivalikkoPalettikansiotPalettiPaletti:PaletitPaletitLoisproseduuritKentätJäsennetään tiedostoa '%s' -LiitäLiitetty tasoPolutPolun ominaisuudetPolkua ei voi laskea enempää.Polkua ei voi nostaa enempää.Polku valinnaksiPolutPolutKuviotKuviokansiotKuvioiden käyttöliittymäKuviotKuviovalikkoKynäProsenttia siveltimen leveydestäProsentti:Henkilökohtainen GIMP-kansioPerspektiiviTietoja perspektiivimuunnoksestaPerspektiivi...Valitse tila %sPoimi värejä kuvastapikseleitäPikseleitä:Odota kun henkilökohtaista GIMP hakemistoa luodaan...Odota...LiitännäisetLiitännäisen ympäristöLiitännäiskansiotLiitännäinen: tiedoston avaaminen epäonnistuiLiitännäinen: tiedoston tallentaminen epäonnistuiLiitännäinen kaatui: "%s" +Alkukohta X:Alkukohta Y:Alkuperäinen leveys:Muu %s...UlkoreunaAntotasotSulauttavaPDB-kutsuvirhe proseduurille "%s" +Parametri #%d tyyppivirhe: odotettu %s, annettu %s.PDB-kutsuvirhe: %s ei löydyKuviotIske siat lekalla keltaiseksi! +ABCabc XYZxyz åäöÅÄÖàášü€piirtoAsetukset jaetaan maalaustyökalujen välilläMaalausproseduuritMaalaustyökalu:_MaalaustilaPiirrä pehmeitä sivellinvetojaPiirrä kovareunaisella työkalullaMaalaa käyttäen kuviota tai kuvan osiaSivellinPaletitPalettiVäripaletin muokkainVäripalettivalikkoPalettikansiotPalettiPaletti:PalettitiedostoPaletitPaletitLoisproseduuritKentätJäsennetään tiedostoa '%s' +LiitäLiitä _johonkinLiitä _uutenaLiitä polkuLiitä _johonkinLiitä _uutenaLiitä valittu leikeUusi kuva valitusta leikkeestäLiitä valittu leike valintaanLiitetty tasoPolutPolun ominaisuudetPolun nimi:PolkutyökaluPolkua ei voi laskea enempää.Polkua ei voi nostaa enempää.Polku on jo pohjimmaisena.Polku on jo päällimmäisenä.Polku valinnaksiPolku valinnaksiPolku valinnaksi +%s Lisää +%s Vähennä +%s LeikkausPolku valinnaksiPolutPolutKuviotKuviokansiotKuvioiden käyttöliittymäTäyttö kuviollaKuvio lähteenäKuviotKuviovalikkoKynäKynäProsenttia siveltimen leveydestäProsentti:Henkilökohtainen GIMP-kansioPerspektiiviTietoja perspektiivimuunnoksestaPerspektiivi...Valitse tila %sValitse taso tai apulinjaValitse polkuValitse mustapistePoimi värejä kuvastaValitse harmaapistePelkkä valintaValitse valkopisteKoko pikseleissä:PikseliarvotpikseleitäPikseleitä:Varmista että valikoiden XML-tiedostot on asennettu oikein.Odota kun henkilökohtaista GIMP hakemistoa luodaan...Odota...LiitännäisetLiitännäisen ympäristöLiitännäiskansiotLiitännäinen: tiedoston avaaminen epäonnistuiLiitännäinen: tiedoston tallentaminen epäonnistuiLiitännäinen kaatui: "%s" (%s) Kaatunut liitännäinen on voinut sekoittaa GIMP:in sisäistä -tilaa. Tallenna kuvat ja käynnistä GIMP uudelleen.Liitännäinen ei palauttanut kuvaaLiitännäisetLiitännäinenLiitännäiset ja laajennokset ovat GIMPin suorittamia erillisiä ohjelmia jotka laajentavat sen toiminnallisuutta. -Näitä ohjelmia etsitään ajonaikaisesti ja tietoa niiden toiminnoista sekä niiden aikaleimat säilötään tässä tiedostossa. Tätä tiedostoa ei pidä muokata käsin.Lisää kulmiaPystySijainti: %.06fPosterisaatioPosterize (Vähennä värien määrää)Posterisaatio ei toimi indeksoiduilla kuvilla.AsetuksetPaine:EsikatseluEsikatselu on vanhentunutEsikatselutTekstin ominaisuuksien jäsentäminen tasolle: '%s' epäonnistui: +tilaa. Tallenna kuvat ja käynnistä GIMP uudelleen.Liitännäinen ei palauttanut kuvaaLiitännäisetLiitännäinenLiitännäiset ja laajennokset ovat GIMPin suorittamia erillisiä ohjelmia jotka laajentavat sen toiminnallisuutta. Näitä ohjelmia etsitään ajonaikaisesti ja tietoa niiden toiminnoista sekä niiden aikaleimat säilötään tässä tiedostossa. Tätä tiedostoa ei pidä muokata käsin.Lisää kulmiaPystySijainti: %.06fSijoitettuPosterisaatioPosterize (Vähennä värien määrää)Posterisaatiotasoja:Posterisaatio ei toimi indeksoiduilla kuvilla.AsetuksetSäilytä valoisuusPaineherkkyysPaine:EsikatseluEsikatselu on vanhentunutEsikatseluEsikatselutTulostuskokoTulostuskoko:Tekstin ominaisuuksien jäsentäminen tasolle: '%s' epäonnistui: %s -Tekstin muoto voi olla väärä. Jos et muokkaa tekstitasoa, ilmoituksesta ei tarvitse välittää.ProseduuritietokantaProseduuritietokantaToiminnon eteneminenPseudoväritilaTarkoitus:KyselyHaetaan uusia liitännäisiäHaetaan liitännäistä: "%s" -Nopea maskiRGBRGB (%d, %d, %d)TäysvärinenRGB-tyhjäRGBA (%0.3f, %0.3f, %0.3f, %0.3f)Näytä uudelleen "%s"SäteittäinenSäde:Nosta kanavaNosta kanava päällimmäiseksiNosta tasoNosta taso päällimmäiseksiNosta polkuNosta polku päällimmäiseksi.Nosta tämän kuvan näkymätVirtaamaVirtaama:Näytä uudelleen edellinenKeskitä keskikohta valinnassaKeskitä osan keskipisteeseenUudelleenjaa kahvat osassaJaa kahvat uudelleen valinnassaToista "%s"Ladataan palettia %s (rivi %d): -Puuttuva VIHREÄ komponenttiLadataan palettia %s: Lukuvirhe rivillä %d. Käytetään oletuspalettia.Ladataan palettia %s (rivi %d): -Puuttuva SININEN komponenttiLadataan palettia %s (rivi %d): -Puuttuva PUNAINEN komponenttiLadataan palettia %s (rivi %d): -RGB arvot säädetyn alueen ulkopuolellaSuorakulmiovalintaPunainenPunainen:UudelleenVähennä värien lukumääräVähennä värien lukumäärä kahteen rajastaRekisteröityLataa uudelleen nykyinen teemaMuista käytetty työkalu, kuvio, väri ja sivellin GIMP-istuntojen välillä. EtäkuvaPoista kanavaPoista apulinjaPoista tasoPoista kuvasta kenttäPoista kenttäPoista polkuPoista valittu suodatinNimeä kanavaUudelleennimeä tasoNimeä asetukset uudelleenJärjestä kanavatUudelleenjärjestä tasotToista edellinenToista:Korvaa valittu alueKahdennaKorvaa väliliun osaKopioi väriliun valintaKopioi osaKopioi valintaPalauta työkalujen asetuksetNollaa valittujen suodattimien arvotMuuta kokoaMuuta kanavan kokoaMuuta kokoaMuuta tason kokoaMuunnetaan...Tarkkuus:ResurssikulutusResurssien konfigurointiPalauta asetukset...Lataa tallennetut näppäinoikotie kun GIMP käynnistetään.KäännäPalautaPalauta alkuperäinen kuvaa?En voi palauttaa kuvaa ennalleen. Kuvalle ei ole tiedostonimeä.'%s':n palauttaminen epäonnistui: -%sOikeanpuoleisen päätypisteen väriKäännösPyöritä kanavaaKierrä tasoaPyöritä tekstitasoaKierrä tasoa tai valintaaKierretään...Kierron tiedotPyöreäKylläisyys:KylläisyysTallennaTallenna %s POV-Ray-muodossaTallenna väritasoasetuksetTallenna virhelista tiedostoonTallenna kuvaTallenna väritasoasetuksetTallenna työkalujen asetuksetTallenna kuvasta kopioTallenna näppäinoikotiet kun GIMP lopetetaan.Tallenna käyrät tiedostoonTallenna laitteiden tilaTallenna tasot poistuessaTallenna asetukset...Tallenna tärkeimpien valintaikkunoiden sijainnit ja koot kun GIMP lopettaa.Tallennetut asetuksetTalletetaan "%s" -Tiedoston %s tallennus epäonnistui: -%sSkaalausSkaalaa kanavaaSkaalaa kuvaaSkaalaa tasoaSkaalaa tasoa tai valintaaSkaalausSkaalaan...SaksetNäyttöScript-Fu -kansiotKomentosarjatValitse kaikkiValitse sivellinkansioValitse värin mukaanValitse väriValitse kansio tallennetulle ympäristölleValitse kansio väriliukumilleValitse kansio väriliukumilleValitse kansio moduleilleTyhjennä valintaValitse kansio paleteilleValitse kansio kuvioilleValitse kansio liitännäisilleValitse muokattava väriValitse muutettava väliValitse Script-Fu -kansio/Valitse/TerävöitäValitse teemaValitse teemakansiotValitse mittasuhdeValitse värin mukaanValitse väriltään yhtenäisiä alueitaValitse ellipsejäValitse vapaamuotoisia alueitaValitse suorakulmioitaValitse osia kuvasta värien mukaanValitse muotoja kuvastaMontako kertaa valinta toistetaan.Valitse montako kertaa valinta toistetaan.Moneenko osaan valinnan osat jaetaanMoneenko osaan valinnan osat jaetaanValintaValintaeditoriValintamaskiTyökaluproseduuritValinta: Valinta: LISÄÄValinta: LEIKKAUSValinta: KORVAAValinta: POISTAHerkkyysKankaan täyttöväriAseta kanavan väriAseta kanavan läpinäkyvyysAseta kankaan kokoAseta tason rajatNimi tekstistäSuurin muistin määrä joka käytetään kuvaa kohti pitämään toimintoja kumoamispinossa. Tästä asetuksesta riippumatta vähintää minimimäärä kumoamisia on mahdollista suorittaa.Asettaa ohjejärjestelmän käyttämän selaimen.Asettaa kankaan täyttövärin jos täyttötavan asetus on mukautettu väri.Määritä käytettävä ulkoinen Web-selain. -'%s' komennossa korvataan URL:illa, muutoin URL lisätään komennon perään.Asettaa mittakaavan muutoksissa ja muissa muunnoksissa käytettävän interpolaation määrän.Aseta tapa jolla läpinäkyvyys näkyy kuvissa.Pienin määrä operaatioita jotka voidaan kumota. Enemmän kumottavia toimintoja pidetään muistissa, kunnes kumoamisraja saavutetaan.Asettaa GIMP:n käyttämän kohdistimen tilan.Aseta läpinäkyvyyteen käytettävän šakkilautakuvion koon.Asettaa esikatselunäkymän koon kuvaikkunan oikeassa alakulmassa.Aseta kumoamishistorian esikatselun koko.Sivutustiedoston sijainti. GIMP käyttää muistia lohkoissa ja sivuttaa käyttämättömät lohkot tiedostoon ladakseen ne taas käyttöön. -Sivutustiedosto voi kasvaa isoksi jos GIMP:llä muokataan suuria kuvia. Nopeuden optimoimiseksi sivutustiedostoa ei saa sijoittaa verkkolevylle tai muistipohjaiseen tiedostojärjestelmään. Yleensä on paras sijoittaa sivutustiedosto työaseman levylle /var/tmp tai /tmp -hakemistoon.Väliaikaistiedostojen luotipaikka. Suurin osa tiedostoista poistetaan kun GIMP lopetetaan, mutta osa voi jäädä. Ei ole suositeltavaa käyttää hakemistoa joka on jaettu muiden käyttäjien kanssa.Asettaa tekstin joka näkyy kuvaikkunan tilapalkissa.Asettaa tekstin joka näkyy kuvaikkunan otsikossa.Määrää milloin GIMP:n pitäisi luoda tasojen ja kanavien esikatselunäkymiä. Esikatselunäkymät tasojen ja kanavien valintaikkunassa ovat mukavia mutta ne saattavat hidastaa käsiteltäessä isoja kuvia.VarjotMuotoMuotoTerävöitäTerävöitä kanavaaTerävöitä valintaVääntöTason tai valinnan vääntöVääntöVäännän...Näytä tilapalkkiNäytä vierityspalkitNäytä apulinjatNäytä tason rajatNäytä menupalkkiNäytä muistinkäyttöNäytä vihjeet seuraavalla kerrallaNäytä suurennosprosenttiNäytä suurennossuhdePienennä kanavaaPienennä valintaaPienennä kuvan rajoistaPienennä valintaaKokoKoko:Ohitetaan "%s": väärä GIMP-protokollan versio.PieniPienempi esikatseluPehmeäPehmennä reunojaSormiTuhriJatkuvaLähdeVälistysVälistys:ErikoistiedostoMäärittää miten kuvan ympärillä oleva alue piirretään.Valinnan ääriviivassa marssivien muurahaisten nopeus. Arvo on millisekunneissa (pienempi aika tarkoittaa nopeampaa).Nopeus:JakoJaa väriliukuman osa tasaisestiJaa väriliukuman osat tasaisestiJaa tasaisestiJaa osa tasaisesti...Jaa osa keskeltäJaa osat tasaisestiJaa osat tasaisestiJaa osat keskeltäNeliömäinenVakioKäynnistetään laajennokset: Käynnistetään laajennus %s. -Tila:VakioväritilaVakioharmaasävytilaStandardipoikkeama:PisteitysVähennysVähennä valinnastaYlinäytteistysMallitTeemavalikkoTilapäinen proseduuriTekstiTekstin väriTekstitasoTekstiproseduuritGIMPKäytössä oleva sivellin. +Tekstin muoto voi olla väärä. Jos et muokkaa tekstitasoa, ilmoituksesta ei tarvitse välittää.ProseduuritietokantaProseduuritietokantaToiminnon eteneminenPseudoväritilaTarkoitus:LaatuKyselyHaetaan uusia liitännäisiäHaetaan liitännäistä: "%s" +PikalatausQMaskMuuta QMask-ominaisuuksiaQMask menuPikatallennusNopea maskiPoistutaanko GIMPistä?RGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)TäysvärinenRGB-tyhjäRGBA (%0.3f, %0.3f, %0.3f, %0.3f)O->VNäytä uudelleen "%s"N_ollaa työkalujen asetuksetNollaa kanavaPalauta väriPalauta alkuperäinen_Oikeanpuoleisen päätypisteen väri...SäteittäinenSäde:Nosta kanavaNosta kanava päällimmäiseksiNosta kanava päällimmäiseksiNosta tasoNosta taso päällimmäiseksiNosta polkuNosta polku päällimmäiseksi.Nosta polku päällimmäiseksi.Nosta kanavaNosta kanava päällimmäiseksiNosta tasoNosta taso päällimmäiseksiNosta polkuNosta polku päällimmäiseksi.Nosta tämän kuvan näkymätNosta ikkuna, jos jo avattuVirtaamaVirtaama:Näytä uudelleen edellinenKeskitä keskikohta valinnassaKeskitä osan keskipisteeseenUudelleenjaa kahvat osassaJaa kahvat uudelleen valinnassa_Uudelleennimeä asetuksetToista "%s"Palauta...Ladataan palettia %s (rivi %d): Puuttuva VIHREÄ komponentti.Ladataan palettia %s: Lukuvirhe rivillä %d. Käytetään oletuspalettia.Ladataan palettia %s (rivi %d): Puuttuva SININEN komponentti.Ladataan palettia %s (rivi %d): Puuttuva PUNAINEN komponentti.Ladataan palettia %s (rivi %d): RGB arvot sallitun alueen ulkopuolella.ValmisTyhjennetäänkö kuvan toimintohistoria?Oikotien uudelleenasettaminen poistaa sen "%s":stä.Luo _esikatselukuvaLuo _esikatselukuvaSuorakulmiovalintaPunainenPunainen:UudelleenVähennä värien lukumääräVähennä värien lukumäärä kahteenLue siveltimetP_äivitä väriliu'utVirkistä paletitVirkistä kuviotRekisteröityLataa uudelleen nykyinen teemaLataa k_aikki esikatselukuvat uudelleenLataa k_aikki esikatselukuvat uudelleenMuista käytetty työkalu, kuvio, väri ja sivellin GIMP-istuntojen välillä.EtäkuvaPoista kanavaPoista _hävinneet tiedostot listaltaPoista kelluva valintaPoista apulinjaPoista tasoPoista kuvasta kenttäPoista kenttäPoista polku_Poista valittuPoista _hävinneet tiedostot listaltaPoista kelluva valintaPoista kenttäPoista valittuPoista valittu suodatin.Oikopolun poisto epäonnistui.Nimeä kanavaUudelleennimeä tasoNimeä polkuNimeä asetukset uudelleenUudelleennimeä tekstitasoUudelleennimeäPiirräJärjestä kanavatUudelleenjärjestä tasotUudelleenjärjestä polkuToista edellinenToista:Korvaa valittu alueKahdennaKorvaa väliliun osaKopioi väriliun valintaKopioi osaKopioi valintaSiirrä kanavaaSiirrä tasoaJärjestä vektoritLue kirjasinlista uudelleenPalauta työkalujen asetuksetNollaa k_aikki työkalujen asetukset...Nollaa kaikki suodattimetNollaa k_aikkien suodatinten asetukset...Nollaa k_aikki työkalujen asetuksetNollaa valittujen suodattimien arvotPalauta oletusarvoihinNollaa työkalun järjestys ja näkyvyysMuuta kokoaMuuta kanavan kokoaMuuta kokoaMuuta tason kokoaMuunna polun kokoaMuuta tekstitason kokoaMuuta kokoaMuuta kokoaMuuta ikkunan kokoa suurennoskertoimen mukaanMuuta ikkunan kokoa kun kuvan koko muuttuuMuunnetaan...tarkkuuden vaihtoTarkkuus:ResurssikulutusResurssien konfigurointiPalauta asetukset...Lataa tallennetut näppäinoikotie kun GIMP käynnistetään.Rajoita muokkaus polygoneihinKäännäPalautaPalautetaanko "%s" -> "%s"?Palauta alkuperäinen kuva?En voi palauttaa kuvaa ennalleen. Kuvalle ei ole tiedostonimeä."%s":n palauttaminen epäonnistui: +%s_Oikeanpuoleisen päätypisteen väriOikean reunan tasausKiertoKierrä 90° _vastapäiväänKierrä 90° myötäpäiväänPyöritä kanavaaKierrä tasoaKierrä polkuaPyöritä tekstitasoaKierrä _180°Käännä kuvaaKierrä tasoa tai valintaaKierretään...Kierron tiedotPyöreäVääntöNäytä apuviivatPienennä...PiikkejäVaihda väritTallenna vasemmanpuoleinen väriNäytteistä keskiarvoYhdistetty valintaKylläisyys:KylläisyysTallennaTallenna "%s" POV-Ray-muodossaTallenna väritasoasetuksetTallenna virhelista tiedostoonTallenna kuvaTallenna syöttölaitteiden tila _nytTallenna näppäimistöoikopolut _nytTallenna väritasoasetuksetTallenna työkalujen asetuksetTallenna ikkunoiden sijainnit _nytT_allenna virheet tiedostoon...Tallenna _valinta tiedostoon...Tallenna _nimellä...Tallenna k_opio...Tallenna kuvasta kopioTyhjennä virheetTallenna POV-Ray-muodossa...Tallenna malliksi...Tallenna näppäinoikotiet kun GIMP lopetetaan.Tallenna käyrät tiedostoonTallenna laitteiden tilaTallenna väriliuku POV-Ray-muodossaTallenna tasot poistuessaTallenna asetukset...Tallenna valintaTallenna valinta kanavalleTallenna muutokset kuvaan '%s' ennen sulkemista?Tallenna tärkeimpien valintaikkunoiden sijainnit ja koot kun GIMP lopettaa.Tallenna kanavalleTallennetut asetuksetTalletetaan "%s" +Tiedoston "%s" tallennus epäonnistui: +%sKuvien tallennusSahalaita-aaltoSkaalattava SVG-kuva (*.svg)SkaalausSkaalaa kanavaaSkaalaa kuvaaSkaalaa tasoaSkaalaa polkuSkaalaa tekstitasoaSkaalaa kuvaaSkaalaaSkaalaus X-suhde:Skaalaus Y-suhde:Mittasuhde:Skaalaa tasoa tai valintaaSkaalausSkaalauksen tiedotKuva skaalaus valittuun kokoon käyttäisi enemmän muistia kuin asetuksissa on sallittu (%s).Valittu kuvakoko tulee poistamaan jotkin tasot kokonaan. Jatketaanko?Skaalaan...SaksetNäyttöScript-Fu -kansiotKomentosarjatVieritys alasVieritys alas (Alt)Vieritys alas (Control + Alt)Vieritys alas (Control)Vieritys alas (Shift + Alt)Vieritys alas (Shift + Control + Alt)Vieritys alas (Shift + Control)Vieritys alas (Shift)Vieritys vasemmalleVieritys vasemmalle (Alt)Vieritys vasemmalle (Control + Alt)Vieritys vasemmalle (Control)Vieritys vasemmalle (Shift + Alt)Vieritys vasemmalle (Shift + Control + Alt)Vieritys vasemmalle (Shift + Control)Vieritys vasemmalle (Shift)Vieritys oikealleVieritys oikealle (Alt)Vieritys oikealle (Control + Alt)Vieritys oikealle (Control)Vieritys oikealle (Shift + Alt)Vieritys oikealle (Shift + Control + Alt)Vieritys oikealle (Shift + Control)Vieritys oikealle (Shift)Vieritys ylösVieritys ylös (Alt)Vieritys ylös (Control + Alt)Vieritys ylös (Control)Vieritys ylös (Shift + Alt)Vieritys ylös (Shift + Control + Alt)Vieritys ylös (Shift + Control)Vieritys ylös (Shift)ValitseValitse kaikkiValitse sivellinkansioValitse värin mukaanValitse väriValitse ohjaimen toimintoValitse kansio tallennetulle ympäristölleTiedoston _tyyppi (%s)Valitse kansio väriliukumilleValitse kansio väriliukumilleValitse kansio moduleilleTyhjennä valintaValitse kansio paleteilleValitse kansio kuvioilleValitse kansio liitännäisilleValitse muokattava väriValitse muutettava väliValitse Script-Fu -kansio/Valitse/TerävöitäValitse sivutuskansioValitse tilapäiskansioValitse teemaValitse teemakansiotValitse mittasuhdeValitse pohjimmainen tasoValitse oma väri...Valitse seuraava tasoValitse edellinen tasoValitse päällimmäinen tasoValitse kaikkiValitse värin mukaanValitse väriltään yhtenäisiä alueitaValitse väri joka lisätään kankaan reunoihinValitse ellipsejäValitse vapaamuotoisia alueitaTyhjennä valintaValitse palettitiedostoValitse suorakulmioitaValitse osia kuvasta värien mukaanValitse muotoja kuvastaValitse sivutuskansioMontako kertaa valinta toistetaan.Valitse montako kertaa valinta toistetaan.Moneenko osaan valinnan osat jaetaan.Moneenko osaan valinnan osat jaetaan.Läpinäkyvien alueiden valintaValitse Web-selainValinta poluksiValintaValintaeditoriValintaeditoriValintamaskiTyökaluproseduuritValintamaskiValinta poluksi (_Lisäasetukset)Valinta poluksiValinta: Valinta: LISÄÄValinta: LEIKKAUSValinta: KORVAAValinta: POISTAHerkkyysKankaan täyttöväriAseta kanavan väriAseta kanavan läpinäkyvyysAseta värikarttaKankaan täyttöväriAseta kankaan kokoVaihda kuvan tulostustarkkuuttaAseta linkatuksiAseta näkyväksiAseta tason rajatNimi tekstistäAseta tason peittoAseta taustaväriEdustaväriAseta linkitetyksiAseta tason tilaAseta tason peittoSuurin muistin määrä joka käytetään kuvaa kohti pitämään toimintoja kumoamispinossa. Tästä asetuksesta riippumatta vähintää minimimäärä kumoamisia on mahdollista suorittaa.Asettaa ohjejärjestelmän käyttämän selaimen.Asettaa piirtoalueen täyttövärin jos täyttötavan asetus on mukautettu väri.Määritä käytettävä ulkoinen Web-selain. '%s' komennossa korvataan URL:illa, muutoin URL lisätään komennon perään.Asettaa mittakaavan muutoksissa ja muissa muunnoksissa käytettävän interpolaation määrän.Aseta tapa jolla läpinäkyvyys näkyy kuvissa.Pienin määrä operaatioita jotka voidaan kumota. Enemmän kumottavia toimintoja pidetään muistissa, kunnes kumoamisraja saavutetaan.Asettaa GIMP:n käyttämän kohdistimen tilan.Asettaa näytön vaakatarkkuuden, pistettä tuumalla. Jos asetus on nolla, kysytään arvoa X:ltä sekä vaaka- että pystytarkkuudelle.Asettaa näytön pystytarkkuuden, pistettä tuumalla. Jos asetus on nolla, kysytään arvoa X:ltä sekä vaaka- että pystytarkkuudelle.<Asettaa GIMP:n käyttämän kohdistimen pikseliformaatin.Asettaa tasojen ja kanavien esikatselunäkymän oletuskoon.Aseta läpinäkyvyyteen käytettävän šakkilautakuvion koon.Asettaa esikatselunäkymän koon kuvaikkunan oikeassa alakulmassa.Aseta kumoamishistorian esikatselun koko.Asettaa tallennettavan esikatselukuvan koon. GIMP ei voi tallentaa esikatselukuvia jos tasoesikatselu on pois päältä.Sivutustiedoston sijainti. GIMP käyttää muistia lohkoissa ja sivuttaa käyttämättömät lohkot tiedostoon ladakseen ne taas käyttöön. Sivutustiedosto voi kasvaa isoksi jos GIMP:llä muokataan suuria kuvia. Nopeuden optimoimiseksi sivutustiedostoa ei saa sijoittaa verkkolevylle tai muistipohjaiseen tiedostojärjestelmään. Yleensä on paras sijoittaa sivutustiedosto työaseman levylle /var/tmp tai /tmp -hakemistoon.Väliaikaistiedostojen luotipaikka. Suurin osa tiedostoista poistetaan kun GIMP lopetetaan, mutta osa voi jäädä. Ei ole suositeltavaa käyttää hakemistoa joka on jaettu muiden käyttäjien kanssa.Asettaa tekstin joka näkyy kuvaikkunan tilapalkissa.Asettaa tekstin joka näkyy kuvaikkunan otsikossa.Kun käytössä, GIMP luo tasojen ja kanavien esikatselunäkymät. Esikatselunäkymät tasojen ja kanavien valintaikkunassa ovat hyödyllisiä mutta ne saattavat hidastaa käsiteltäessä isoja kuvia.Varjon tyyppiVarjotMuotoMuoto:Muotopurske (kulma)Muotopurske (näppyläinen)Muotopurske (pallo)TerävöitäTerävöitä kanavaaTerävöitä valintaVääntöVäännön suuruus X-suunnassa:Väännön suuruus Y-suunnassa:Tason tai valinnan vääntöVäännön tiedotVäännän...Lyhyet viivatOikopolkuOikotie "%s" on käytössä toiminnolle: "%s" ryhmässä: "%s"Näytä tason maskiNäytä viivottimetNäytä tilapalkkiNäytä vierityspalkitNäytä apulinjatNäytä tason rajatNäytä menupalkkiNäytä valintaNäytä siveltimen ulkorajaNäytä edusta- ja taustaväriNäytä apu_linjatNäytä tason rajatNäytä _menupalkkiNäytä _viivottimetNäytä aktiiviset siveltimet, kuviot ja väriliu'utNäytä käsiteltävä kuvaNäytä apuviiva_tNäytä Apu-painikkeetNäytä kuvan kokoNäytä aktiivinen reunaNäytä muistinkäyttöNäytä valikoiden pikanäppäimetNäytä maalaustyökalun osoitinNäytä v_alintaNäytä _tilapalkkiNäytä v_ierityspalkitNäytä vihjeet seuraavalla kerrallaNäytä vihjeet alussaNäytä työkaluvihjeetNäytä suurennosprosenttiNäytä suurennossuhdePienennä kanavaaPienennä valintaaPienennä ikkunaPienennä kuvan rajoistaPienennä valintaaPienennä ikkunaKokoKoko muistissa:Esikatselukuvan koko:Koko:Ohitetaan "%s": väärä GIMP-protokollan versio.PieniPienempi esikatseluPehmeäPehmennä reunojaSormiTuhriTartu apulinjoihinNaksahda apuviivoihinPehmeä valoJatkuvaLähdeVälistysVälistys:Harvat pisteetErikoistiedostoMäärittää miten kuvan ympärillä oleva alue piirretään.Valinnan ääriviivassa marssivien muurahaisten nopeus. Arvo on millisekunneissa (pienempi aika tarkoittaa nopeampaa).Nopeus:Pallomainen (_laskeva)Pallomainen (_kasvava)Piikit:Spiraali (vastapäivään)Spiraali (myötäpäivään)JakoJaa väriliu'un osa tasaisestiJaa väriliu'un osat tasaisestiJaa tasaisestiJaa osa tasaisesti...Jaa osa keskeltäJaa osat tasaisestiJaa osat tasaisesti...Jaa osat keskeltäNeliömäinenTila ja tekstiPinoVakioKäynnistetään laajennokset: Käynnistetään laajennus %s. +Tila:VakioväritilaVakioharmaasävytilaTila ja kuvausTila ja tekstiStandardipoikkeama:PisteitysPiirrä polkuPiirrä polkua pitkin...Piirrä kanavaPiirrä polkuPiirrä valintaPiirtoasetuksetPiirrä polkuPiirrä käyttäen edellisiä asetuksiaPiirrä polkua pitkin...Piirrä valinta viimeillä arvoilla_Piirrä valinta...Piirrä käyttäen maalaustyökaluaTilapalkin reunustusVähennysVähennä valinnastaYlinäytteistysSivutuskansio:TyökalulaatikkoTekstiTekstityökaluTilapäistiedostot:MallitTeemavalikkoTilapäinen proseduuriSuljetaan liitännäinen "%s" +TekstiTekstin väriTekstieditoriTekstitasoTekstiä muutettuTekstiproseduuritGIMPGIMP-avustusselaimen liitännäinen näyttää puuttuvat asennuksestasi.Käytössä oleva sivellin. Napsauta avataksesi sivellinvalikon.Käytössä oleva väriliukuma. Napsauta avataksesi väriliukumavalikon.Käytössä oleva kuvio. -Napsauta avataksesi kuviovalikon.Apuviivojen taustaväriTiedostonimeä "%s" ei voitu muuntaa URI:ksi: +Napsauta avataksesi kuviovalikon.Käytössä oleva kuvio. +Napsauta avataksesi kuviovalikon.Apuviivojen taustaväri, käytetään vain tuplakatkoviiva tyylissä.Komentojonotulkkia "%s" ei löydy, komentojono tila ei käytettävissäMääriteltyä tiedostonimen koodausta ei voi muuntaa Unicodeen: %s + +Tarkista ympäristömuuttujan G_FILENAME_ENCODING arvo.Tiedostonimeä "%s" ei voitu muuntaa URI:ksi: + +%sApuviivojen edustaväri.gimprc-tiedostoa käytetään henkilökohtaisten asetusten tallentamiseksi. Lisäksi siinä voi myös asettaa hakupolut siveltimiä, paletteja, väriliukumia, kuvioita, liitännäisiä ja moduleja varten.Kuvan vaakatarkkuus.Valittu taso on tekstitaso, mutta sitä on muutettu muilla työkaluilla. Muokkaaminen tekstityökalulla hylkää nämä muutokset. +Voit muokata tasoa tai luoda uuden tekstitason sen tekstiasetuksilla.Gimpin käyttäjän asetukset sisältävän tiedoston nimeä ei voi muuttaa Unicode-merkistöön: %s + +Luultavimmin tiedostonimet eivät ole Unicode-yhteensopivia, ja et ole määritellyt tätä. Aseta ympäristömuuttujen G_FILENAME_ENCODING arvo.sessionrc-tiedostoon tallennetaan ikkunoiden sijainnit GIMPista poistuttaessa. Voit määrätä GIMPin avaamaan ikkunat uudelleen samaan paikkaan missä ne olivat viimeksi.Avausikkunan esikatselu päivitetään automaattisesti, jos tiedosto on pienempi kuin asetettu koko.Kuvavälimuisti varmistaa että GIMP ei jatkuvasti lataa ja tallenna kuvalohkoja levylle. Asettamalla tämän arvon suureksi GIMP käyttää vähemmän sivutustilaa, mutta enemmän muistia. Vastaavasti pieni arvo aiheuttaa että GIMP käyttää enemmän sivutustilaa ja vähemmän muistia.Mittayksikkö jota käytetään, kun ei olla piste-pisteeltä -tilassa.unitrc-tiedostoon tallentuvat käyttämäsi lisämittayksiköt. Voit ottaa käyttöön GIMPissä lisää mittayksiköitä ja käyttää ne samaan tapaan kuin sisäänrakennettuja yksiköitä (tuuma, millimetri, typografiset piste ja pica). Tämä tiedosto kirjoitetaan uusiksi joka kerta kun lopetat GIMPin.Kuvan pystytarkkuus.Ikkunan reunustus telakoiduille ikkunoille. Tämä vaikuttaa ikkunointiohjelman tapaa reunustaa ja käsitellä telakoituja ikkunoita.Ikkunan reunustus työkalulaatikolle. Tämä vaikuttaa siihen miten ikkunointiohjelma reunustaa ja käsittelee työkalulaatikko -ikkunoita.TeemaTeemakansiotTeemat%d kuvaa joissa on tallentamattomia muutoksia:Ei tarpeeksi näkyviä tasoja yhdistämiseen.Yleensä GIMP optio nopeutta muistinkäytön kustannuksella. Jos muistinkäyttö on ongelma, aktivoi säästääksesi muistia.Ei tasoa tai kanavaa josta voisi kopioida.Ei tasoa tai kanavaa josta voisi leikata.Ei aktiivista tasoa tai kanavaa jolle piirtääEi taso tai kanavaa jolle piirtää.Kuvalla on tallentamattomia muutoksia:Tiedosto "%s" puuttuu! Tarkista asennuksen oikeellisuus.Tapahtui virhe jäsennettäessä tiedostoa "%s". Käytetään oletusarvoja. Varmuuskopio asetuksista on luotu tiedostoon "%s".Tässä tiedostossa on kokoelma eri kokoisia malleja.Tästä kansiosta GIMP hakee käyttäjäkohtaiset mallikuvat.Tähän kansioon tulevat käyttäjän asentamat teemat.Tähän kansioon voit tallentaa kirjasimia joiden haluat näkyvän vain GIMP:issä. GIMP lukee tämän kansion sisällön järjestelmän kirjasinten lisäksi. Jos halut kirjasinten näkyvän muissakin ohjelmissa, tallenna ne järjestelmän- tai käyttäjäkohtaiseen kirjasinkansioon.Tämä on kansio jonne GIMP tallentaa väritoistokäyrätyökalun parametritiedostoja.Tämä on kansio jonne GIMP tallentaa väritasotyökalun parametritiedostoja.Tähän kansioon tallennetaan työkalujen asetukset.Tämä on kansio jonne voit tallentaa Script-Fu skriptejä. Oletusarvoisesti gimprc-tiedosto ohjaa GIMPiä etsimään skriptejä tästä kansiosta järjestelmälaajuisen skriptikansion lisäksi.Tämä on kansio jonne voit tallentaa GIMPin lisämoduleja. Oletusarvoisesti gimprc-tiedosto ohjaa GIMPiä etsimään moduleja tästä kansiosta järjestelmälaajuisen modulikansion lisäksi.Tämä on kansio jonne voit tallentaa liitännäisohjelmia. Oletusarvoisesti gimprc-tiedosto ohjaa GIMPiä etsimään liitännäisiä tästä kansiosta järjestelmälaajuisen liitännäiskansion lisäksi.Tämä on kansio jonne voit tallentaa liitännäisohjelmia. Oletusarvoisesti gimprc-tiedosto ohjaa GIMPiä etsimään liitännäisiä tästä kansiosta järjestelmälaajuisen liitännäiskansion lisäksi.Tämä on kansio jonne voit tallentaa luomiasi siveltimiä. Oletusarvoisesti gimprc-tiedosto ohjaa GIMPiä etsimään siveltimiä tästä kansiosta järjestelmälaajuisen sivellinkansion lisäksi.Tämä on kansio jonne voit tallentaa luomiasi väriliukumia. Oletusarvoisesti gimprc-tiedosto ohjaa GIMPiä etsimään väriliukumia tästä kansiosta järjestelmälaajuisen väriliukumakansion lisäksi.Tämä on kansio jonne voit tallentaa luomiasi paletteja. Oletusarvoisesti gimprc-tiedosto ohjaa GIMPiä etsimään paletteja tästä kansiosta järjestelmälaajuisen kuviokansion lisäksi.Tämä on kansio jonne voit tallentaa luomiasi kuvioita. Oletusarvoisesti gimprc-tiedosto ohjaa GIMPiä etsimään paletteja tästä kansiosta järjestelmälaajuisen kuviokansion lisäksi.Tämä on kansio jonne GIMP tallentaa tilapäisiä puskureita muistikäytön säästämiseksi. Jos GIMPin suoritus pysähtyy virheeseen tähän kansioon voi jäädä tiedostoja joiden nimet ovat muotoa: gimp#.#. Näitä tiedostoja ei tarvitse säilyttää käyttökertojen välillä, ja ne voi poistaa ilman haittaa.Tähän kansioon tulee joukko tärkeitä tiedostoja ja alikansioita. Napsauta yhtä tiedostoa tai kansiota vasemmalla niin saat lisätietoja siitä.Matka jonka päästä apulinjat ja apuviivat tarttuvat.Tämä ohjelma levitetään siinä toivossa, että siitä on hyötyä, mutta ILMAN MITÄÄN TAKUUTA; jopa ilman konkludenttista takuuta MYYNTIKELPOISUUDESTA TAI SOVELTUMISESTA TIETTYYN ERITYISEEN TARKOITUKSEEN. Yksityiskohtien osalta katso GNU yleistä julkista lisenssiä.Tämä on vapaa ohjelma; voit levittää ja muuttaa sitä GNU yleisen julkisen lisenssin sopimusehtojen mukaisesti sellaisina kun Free Software Foundation on ne julkaissut. Voit soveltaa lisenssin versiota 2 tai myöhempää.Tekstikenttä on rajattu %d merkkiin.Tällä työkalulla ei ole asetuksia.Ikkunassa on %d aukinaista välilehteä. Ikkunan sulkeminen sulkee myös ne.Raja-arvoRaja-muunnosta ei voi käyttää indeksoiduilla kuvilla.Raja:Esikatselu %d / %dKuvavälimuistin koko:Kuvavälimuistin koko:Kallistus:MinimaalinenOtsikot ja tilapalkkiPoluksiLelutAseta QmaskiAseta _QMaskToistuva virheilmoitus!Työkalujen asetuksetTyökalujen asetuksetTyökalu päälle/pois %sTyökalujen asetuksetTyökalukuvakeTyökalu ikoni ristinäTyökaluvalikkoTyökaluvalikkoTyökaluvalikkoTyökalulaatikkoTyökaluvalikkoSumean valinnan ja täytön kaltaiset työkalut löytävät alueita algoritmilla nimeltä siementäyttö. Siementäyttö alkaa valitusta kuvapisteestä ja etenee kaikkiin suuntiin kunnes kuvapisteen väri eroaa siitä kynnysarvoa enemmän. Tämä on kynnyksen oletusarvo.LäpinäkyvyysSiirrä läpinäkyvyys maskiksiMuunnosMuunna kanavaaMuunnoksetMuunna tasoMuunna polkuMuunna tekstitasoTyökaluproseduuritMuunna tasoMuunna polkuMuunna valintaMuunnosMuunnosproseduuritMuunnetaan...Käännökset:LäpinäkyvyysLäpinäkyyden _tyyppi:KolmioaaltoTäysväritilaTyyppiTyyppi %sSyötä uusi oikopolkuSyötä uusi oikopolku, tai paina Peruuta-näppäintä tyhjentääksesiMaskin lisäys ei onnistu koska tasolla on jo maski.Leikkaus tai kopiointi epäonnistui, koska valittu alue on tyhjä.Ei voinut avata sivutustiedostoa. Välttääksesi datan häviämisen, tarkista asetuksista sivutustiedoston paikka ja sen oikeudet. (asetus: '%s').Ei voinut avata sivutustiedostoa. Gimpin käytettävissä oleva muisti on loppunut ja sivutusta ei voi käyttää. Osa kuvastasi voi korruptoitua. Tallenna työsi uudella nimellä, käynnistä Gimp uudelleen ja tarkista sivutustiedoston sijainti asetuksista.Ei voinut suorittaa kutsua: %s. Liitännäinen on voinut kaatua.MäärittelemätönKumoaToimintohistoriaToimintohistoriaYksikötTuntematonTuntematon tiedoston tyyppi.Tuntematon palettitiedosto: +%sPoistaNimetönNimetönKäytä "Piste pisteeltä" alkuasetuksinaDynaamiset oikopolutKäytä web-selaintaKäytä kaikkia näkyviä tasoja valinnan pienentämiseenKäytä mustavalkoista palettiaVäri liukumastaKäytä omaa palettiaKäytä infoikkunaaKäytä WWW-optimoitua palettiaHenkilökohtaisen asennuksen lokiKäyttöliittymäDialogi-ikkunaArvoArvo:Muuta vektoreitaVersion %s tekijät:Versio:PystyEnsimmäisen sarakkeen siirtymä, voi olla negatiivinen.Apuviivojen pystysuora välistys.Hyvin suuriHyvin pieniNäytäNäytä _taulukkonaNäytä _listanaNäytä ruudukkonaNäytä listanaNäyttöluokka:Värisyvyys:Lataus ei onnistunut: + +%sEi voitu tallentaa: -%sApuviivojen edustavärigimprc-tiedostoa käytetään henkilökohtaisten asetusten tallentamiseksi. Lisäksi siinä voi myös asettaa hakupolut siveltimiä, paletteja, väriliukumia, kuvioita, liitännäisiä ja moduleja varten.Valittu taso on tekstitaso, mutta sitä on muutettu muilla työkaluilla. Muokkaaminen tekstityökalulla hylkää nämä muutokset. -Voit muokata tasoa tai luoda uuden tekstitason sen tekstiasetuksilla.sessionrc-tiedostoon tallennetaan ikkunoiden sijainnit GIMPista poistuttaessa. Voit määrätä GIMPin avaamaan ikkunat uudelleen samaan paikkaan missä ne olivat viimeksi.Kuvavälimuisti varmistaa että GIMP ei jatkuvasti lataa ja tallenna kuvalohkoja levylle. Asettamalla tämän arvon suureksi GIMP käyttää vähemmän sivutustilaa, mutta enemmän muistia. Vastaavasti pieni arvo aiheuttaa että GIMP käyttää enemmän sivutustilaa ja vähemmän muistia.Mittayksikkö jota käytetään, kun ei olla piste-pisteeltä -tilassa.unitrc-tiedostoon tallentuvat käyttämäsi lisämittayksiköt. Voit ottaa käyttöön GIMPissä lisää mittayksiköitä ja käyttää ne samaan tapaan kuin sisäänrakennettuja yksiköitä (tuuma, millimetri, typografiset piste ja pica). Tämä tiedosto kirjoitetaan uusiksi joka kerta kun lopetat GIMPin.PystytarkkuusIkkunan reunustus telakoiduille ikkunoille. Tämä vaikuttaa ikkunointiohjelman tapaa reunustaa ja käsitellä telakoituja ikkunoita.Ikkunan reunustus työkalulaatikolle. Tämä vaikuttaa siihen miten ikkunointiohjelma reunustaa ja käsittelee työkalulaatikko -ikkunoita.TeemaTeemakansiotTeematEi tarpeeksi näkyviä tasoja yhdistämiseen.Yleensä GIMP optio nopeutta muistinkäytön kustannuksella. Jos muistinkäyttö on ongelma, aktivoi säästääksesi muistia.Ei tasoa tai kanavaa josta voisi kopioida.Ei tasoa tai kanavaa josta voisi leikata.Tiedosto "%s" puuttuu! Tarkista asennuksen oikeellisuus.Tapahtui virhe jäsennettäessä tiedostoa "%s". Käytetään oletusarvoja. Varmuuskopio asetuksista on luotu tiedostoon "%s".Tässä tiedostossa on kokoelma eri kokoisia mallejaTästä kansiosta GIMP hakee käyttäjäkohtaiset mallikuvat.Tähän kansioon tulevat käyttäjän asentamat teemat.Tähän kansioon voit tallentaa kirjasimia joiden haluat näkyvän vain GIMP:issä. GIMP lukee tämän kansion sisällön järjestelmän kirjasinten lisäksi. Jos halut kirjasinten näkyvän muissakin ohjelmissa, tallenna ne järjestelmän- tai käyttäjäkohtaiseen kirjasinkansioon.Tämä on kansio jonne GIMP tallentaa väritoistokäyrätyökalun parametritiedostoja.Tämä on kansio jonne GIMP tallentaa väritasotyökalun parametritiedostoja.Tähän kansioon tallennetaan työkalujen asetukset.Tämä on kansio jonne voit tallentaa Script-Fu skriptejä. -Oletusarvoisesti gimprc-tiedosto ohjaa GIMPiä etsimään skriptejä tästä kansiosta järjestelmälaajuisen skriptikansion lisäksi.Tämä on kansio jonne voit tallentaa GIMPin lisämoduleja. -Oletusarvoisesti gimprc-tiedosto ohjaa GIMPiä etsimään moduleja tästä kansiosta järjestelmälaajuisen modulikansion lisäksi.Tämä on kansio jonne voit tallentaa liitännäisohjelmia. -Oletusarvoisesti gimprc-tiedosto ohjaa GIMPiä etsimään liitännäisiä tästä kansiosta järjestelmälaajuisen liitännäiskansion lisäksi.Tämä on kansio jonne voit tallentaa liitännäisohjelmia. -Oletusarvoisesti gimprc-tiedosto ohjaa GIMPiä etsimään liitännäisiä tästä kansiosta järjestelmälaajuisen liitännäiskansion lisäksi.Tämä on kansio jonne voit tallentaa luomiasi siveltimiä. Oletusarvoisesti gimprc-tiedosto ohjaa GIMPiä etsimään siveltimiä tästä kansiosta järjestelmälaajuisen sivellinkansion lisäksi.Tämä on kansio jonne voit tallentaa luomiasi väriliukumia. Oletusarvoisesti gimprc-tiedosto ohjaa GIMPiä etsimään väriliukumia tästä kansiosta järjestelmälaajuisen väriliukumakansion lisäksi.Tämä on kansio jonne voit tallentaa luomiasi paletteja. -Oletusarvoisesti gimprc-tiedosto ohjaa GIMPiä etsimään paletteja tästä kansiosta järjestelmälaajuisen kuviokansion lisäksi.Tämä on kansio jonne voit tallentaa luomiasi kuvioita. -Oletusarvoisesti gimprc-tiedosto ohjaa GIMPiä etsimään paletteja tästä kansiosta järjestelmälaajuisen kuviokansion lisäksi.Tämä on kansio jonne GIMP tallentaa tilapäisiä puskureita -muistikäytön säästämiseksi. Jos GIMPin suoritus pysähtyy virheeseen tähän kansioon voi jäädä tiedostoja joiden nimet ovat muotoa: gimp#.#. Näitä tiedostoja ei tarvitse säilyttää käyttökertojen välillä, ja ne voi poistaa ilman haittaa.Tähän kansioon tulee joukko tärkeitä tiedostoja ja alikansioita. Napsauta yhtä tiedostoa tai kansiota vasemmalla niin saat lisää tietoa siitä.Matka jonka päästä apulinjat ja apuviivat tarttuvat.Tämä ohjelma levitetään siinä toivossa, että siitä on hyötyä, mutta ILMAN MITÄÄN TAKUUTA; jopa ilman konkludenttista takuuta MYYNTIKELPOISUUDESTA TAI SOVELTUMISESTA TIETTYYN ERITYISEEN TARKOITUKSEEN. Yksityiskohtien osalta katso GNU yleistä julkista lisenssiä.Tämä on vapaa ohjelma; voit levittää ja muuttaa sitä GNU yleisen julkisen lisenssin sopimusehtojen mukaisesti sellaisina kun Free Software Foundation on ne julkaissut. Voit soveltaa lisenssin versiota 2 tai myöhempää.Tekstikenttä on rajattu %d merkkiin.Tällä työkalulla ei ole asetuksia.Raja-arvoRaja-muunnosta ei voi käyttää indeksoiduilla kuvillaRaja:Esikatselu %d / %dKallistus:MinimaalinenOtsikot ja tilapalkkiTyökalujen asetuksetTyökalujen asetuksetTyökalu päälle/pois %sTyökaluvalikkoTyökalulaatikkoSiirrä läpinäkyvyys maskiksiMuunnosMuunna kanavaaMuunnoksetMuunna tasoMuunna polkuTyökaluproseduuritMuunnosMuunnetaan...Käännökset:LäpinäkyvyysTäysväritilaTyyppiTyyppi %sMaskin lisäys ei onnistu koska tasolla on jo maski.Leikkaus tai kopiointi epäonnistui -koska valittu alue on tyhjä.Ei voinut avata sivutustiedostoa. Välttääksesi datan häviämisen, tarkista asetuksista sivutustiedoston paikka ja sen oikeudet. (asetus: '%s').MäärittelemätönKumoaToimintohistoriaYksikötTuntematonTuntematon tiedoston tyyppi.PoistaNimetönNimetönKäytä kaikkia näkyviä tasoja valinnan pienentämiseenHenkilökohtaisen asennuksen lokiKäyttöliittymäArvoArvo:Version %s tekijät:Versio:PystyEnsimmäisen sarakkeen siirtymä, voi olla negatiivinen.Apuviivojen pystysuora välistys.Web-selainKun asetus on aktivoitu, ikkuna seuraa automaattisesti käsiteltävää kuvaa.Kun käytössä, kaikki maalaustyökalut näyttävät esikatselussa nykysiveltimen ääriviivat.Kun käytössä, kuvasta tulee aktiivinen kohdistettaessa sen kuvaikkunaan. Tämä on hyödyllinen ikkunointiohjelman käyttäessä "click to focus"-toimintoa.Jos päällä, valikot saa irrotettua.Jos päällä, F1 avaa avusteselaimen.Jos asetettu, GIMP ei tallenna jos kuva on muuttamaton avauksen jälkeenKun käytössä, GIMP käyttää eri tietoikkunaa jokaiselle kuvanäkymälle.Kun käytössä, X-palvelimelta kysytään hiiren sijaintia jokaisen liiketapahtuman kohdalla, muuten luotetaan sijaintivihjeeseen. Tämä tarkoittaa, että isoilla siveltimillä maalaamisen pitäisi olla tarkempaa, mutta se voi olla hitaampaa. Omituista kyllä, joillakin X-palvelimilla tämän valitsimen käyttö johtaa nopeampaan maalaamiseen.Jos päällä, apuviivat ovat näkyvissä oletuksena.Jos päällä, apulinjat ovat oletusarvoisesti näkyvillä. Asetusta voi myös muuttaa valikosta Näytä->Apulinjat.Kun käytössä, kuvaikkuna muuttaa itsestään kokoaan aina kun zoomataan sisään tai ulos kuvasta.Kun käytössä, kuvaikkuna muuttaa itsestään kokoaan aina kun kuvan todellinen koko muuttuu.Jos päällä, tasojen rajat ovat oletusarvoisesti näkyvissä. Asetusta voi myös muuttaa valikosta Näytä -> Näytä tason raja.Kun käytössä, valikkopalkki on oletusarvona näkyvissä. Tilan voi vaihtaa myös "Näkymä->Näytä valikkopalkki"-toiminnolla.Kun käytössä, viivaimet ovat oletusarvona näkyvissä. Tilan voi vaihtaa myös "Näkymä->Näytä viivaimet"-toiminnolla.Jos päällä, vierityspalkit näkyvät oletusarvoisesti.Kun päällä, valittua sivellintä käytetään kaikille työkaluille.Kun päällä, valittua väliliukua käytetään kaikille työkaluille.Kun päällä, valittua kuviota käytetään kaikille työkaluille.Jos päällä, valitut alueet ovat näkyvissä. Asetusta voi myös muuttaa valikosta: Näytä -> Näytä valinta.Jos päällä, tilapalkki näkyy oletusarvoisesti.Kun käytössä, kuvautuu jokainen kuvan kuvapiste varmasti ruudun kuvapisteeseen.Kun käytössä, varmistetaan koko kuvan olevan näkyvissä kun tiedosto on avattu, muuten se näytetään mittakaavalla 1:1.Jos päällä, näppäimistöoikopolut voidaan asettaa painamalla näppäinyhdistelmä valikon päällä.ValkoinenLeveysLeveys:Istunnon hallintaIkkunoiden sijainnitKirjoitetaan '%s' -XCF virhe: havaittua XCF tiedoston versiota %d ei tueta.XCF varoitus: XCF-tiedostomuoto versio 0 +%sWeb-selainWeb-selainTervetuloa! +Gimp %d.%d. Henkilökohtainen GIMP-asennusKun asetus on aktivoitu, ikkuna seuraa automaattisesti käsiteltävää kuvaa.Kun käytössä, Gimp näyttää pikanäppäimet valikoissa.Kun käytössä, kaikki maalaustyökalut näyttävät esikatselussa nykysiveltimen ääriviivat.Kun käytössä, kuvasta tulee aktiivinen kohdistettaessa sen kuvaikkunaan. Tämä on hyödyllinen ikkunointiohjelman käyttäessä "click to focus"-toimintoa.Jos päällä, kyselyikkunoissa näkyy apu-painike, joka avaa avustustoiminnon. Ilman tätä avustuksen saa näkyviin F1-näppäimellä.Jos päällä, valikot saa irrotettua.Jos päällä, F1 avaa avusteselaimen.Jos asetettu, GIMP ei tallenna jos kuva on muuttamaton avauksen jälkeen.Kun käytössä, GIMP käyttää eri tietoikkunaa jokaiselle kuvanäkymälle.Kun käytössä, X-palvelimelta kysytään hiiren sijaintia jokaisen liiketapahtuman kohdalla, muuten luotetaan sijaintivihjeeseen. Tämä tarkoittaa, että isoilla siveltimillä maalaamisen pitäisi olla tarkempaa, mutta se voi olla hitaampaa. Omituista kyllä, joillakin X-palvelimilla tämän valitsimen käyttö johtaa nopeampaan maalaamiseen.Kun käytössä, osoitin näytetään kuvan päällä käytettäessä maalaustyökalua.Jos päällä, apuviivat ovat näkyvissä oletuksena.Jos päällä, apulinjat ovat oletusarvoisesti näkyvillä. Asetusta voi myös muuttaa valikosta Näytä->Apulinjat.Kun käytössä, kuvaikkuna muuttaa itsestään kokoaan aina kun zoomataan sisään tai ulos kuvasta.Kun käytössä, kuvaikkuna muuttaa itsestään kokoaan aina kun kuvan todellinen koko muuttuu.Jos päällä, tasojen rajat ovat oletusarvoisesti näkyvissä. Asetusta voi myös muuttaa valikosta Näytä -> Näytä tason raja.Kun käytössä, valikkopalkki on oletusarvona näkyvissä. Tilan voi vaihtaa myös "Näkymä->Näytä valikkopalkki"-toiminnolla.Kun käytössä, viivaimet ovat oletusarvona näkyvissä. Tilan voi vaihtaa myös "Näkymä->Näytä viivaimet"-toiminnolla.Jos päällä, vierityspalkit näkyvät oletusarvoisesti.Kun päällä, valittua sivellintä käytetään kaikille työkaluille.Kun päällä, valittua väliliukua käytetään kaikille työkaluille.Kun päällä, valittua kuviota käytetään kaikille työkaluille.Jos päällä, valitut alueet ovat näkyvissä. Asetusta voi myös muuttaa valikosta: Näytä -> Näytä valinta.Jos päällä, tilapalkki näkyy oletusarvoisesti.Kun käytössä, varmistutaan että jokainen kuvan kuvapiste vastaa ruudun kuvapistettä.Kun käytössä, varmistetaan koko kuvan olevan näkyvissä kun tiedosto on avattu, muuten käytetään mittakaavaa 1:1.Jos päällä, näppäimistöoikopolut voidaan asettaa painamalla näppäinyhdistelmä valikon päällä.ValkoinenVäritasapainon säätö käytettävissä vain täysvärikuvilla.LeveysLeveys:Istunnon hallintaIkkunointiohjelman asetuksetIkkunoiden sijainnitKirjoitetaan '%s' +XXCF virhe: havaittua XCF tiedoston versiota %d ei tueta.XCF varoitus: XCF-tiedostomuoto versio 0 ei tallettanut indeksoituja väripaletteja oikein. -Korvataan harmaasävy väripaletti.KeltainenKeltainenVoi pudottaa telakoitavat ikkunat tähän.Sinun olisi pitänyt saada kopio GNU:n yleisestä julkisesta lisenssistä tämän ohjelman mukana; jos et sitä saanut, niin lähetä kirje osoitteella +Korvataan harmaasävy väripaletti.YKeltainenKeltainen:Yrität luoda kuvaa jonka koko on %s.Voi pudottaa telakoitavat ikkunat tähän.Sinun olisi pitänyt saada kopio GNU:n yleisestä julkisesta lisenssistä tämän ohjelman mukana; jos et sitä saanut, niin lähetä kirje osoitteella Free Software Foundation, Inc. 59 Temple Place - Suite 330 -Boston, MA 02111-1307, USA.GIMP täytyy käynnistää uudestaan jotta muutokset tulisivat voimaan.Suurennus- ja pienennyskäyttäytyminenSuhde 1:1Suurenna kaikkiSuurennaPienennäMittasuhdeMittasuhde:Suurennos %d:1SuurennaSuurennoskerroinPienennäSuurenna[ peruskuva ]Antialiasointi_AutomaattinenBOsan sekoitustapaSekoitusfunktioKirkkaus:Siveltimet:CPoista väliPoista valintaPeilaaPeilaa valintaGVäriliukumaVaakasuuntaan:Sävy (H):_Kuvake:TuoValoisuus (L):MManuaalisesti:_Nimi:KuviotEsikatseluRUudelleenTee uudelleen %sKopioiKopioi valintaVärikylläisyys (S):ValintaK_umoaK_umoa %sPystysuuntaan:_X:Y_Y:Suurenna %sväriäkopiodpisallitut arvot: "yes" tai "no" asetukselle %s, tuli '%s'jäsennysvirheharmaasävyharmaasävy-tyhjätuumatuumaaindeksoituindeksoitu-tyhjäEpäkelpo unicode-merkkijonokelvoton arvo "%ld" symbolille %skelvoton arvo "%s" symbolille %smillimetrimillimetriä-prosenttipicapicaapikselipikseleitäpikseleitä/%apikseleitä/%spistepistettäVille Hautamäki +Boston, MA 02111-1307, USA.GIMP täytyy käynnistää uudestaan jotta seuraavat muutokset tulisivat voimaan:GIMP-asennuksesi on keskeneräinen:Syöttölaitteiden asetukset palautuvat perusasetuksiin seuraavan kerran kun Gimp käynnistyy.Näppäimistöoikopolut nollataan oletusasetuksiin seuraavan kerran kun Gimp käynnistyy.Ikkunoiden paikat palautuvat perusasetuksiin seuraavan kerran kun Gimp käynnistyy.Suurennus- ja pienennyskäyttäytyminenSuhde 1:1Suurenna kaikkiSuurennaPienennäMittasuhdeMittasuhde:Suurenna (täysi)SuurennaPienennäSuurenna täysiSuurennos %d:1Suurenna kuvaa kun ikkunan koko muuttuuSuurennaSuurennoskerroinPienennäSuurenna:[ peruskuva ]_TietojaKuvan syöttöLisää väri _taustastaLisää väri _edustasta_Lisää välilehtiLisää valintaanKehittyneet asetuksetRuiskuK_aikki_Ankkuroi taso_AntialiasointiMielivaltainen kierto...TaiteellisetSivusuhde_Automaattinen_B_Taustaväri_Taustaväri:_Musta (täysin läpinäkyvä)Osan sekoitustapaSekoitusfunktioTee epäteräväksiKirkkaus:_SiveltimetSiveltimetSiveltimet, kuviot ja väriliutTäyttöLeikeVärin mukaanValinta värin mukaan_C_Lopun tyyli:_KanavatT_yhjennä virheetTyhjennä toimintohistoriaKloonaus_Sulje_Sulje välilehtiPilvetVärityökalutVärit_Aseta väri ja läpinäkyvyys...TilavalikkoYhteydestä riippuva avustus_KopioiKopioi nimetty...Luo kuva mallista...Rajaa & muokkaa kokoaRajaa kuva_KäyräVärintoistokäyrät...Tumma ruudutusOletusvärit_Poista sivellin_Poista leike_Poista kanavaPoista väri_Poista väriliuku...Poista kuvaPoista taso_Poista palettiPoista polku_Poista kuvio...Poi_sta tallennetut asetuksetPoista väliPoista valintaPoista malliPienennä värikylläisyyttä_Irroita välilehtiLaitteiden tila_IkkunatHylkää tekstidataVääristyksetPiste pisteeltäKahdenna_Muokkaa_Muokkaa siveltimen ominaisuuksia..._Muokkaa kanavan ominaisuuksia..._Muokkaa väriä...Muokkaa väriliukua...Muokkaa tason ominaisuuksia...Muokkaa palettia...Muokkaa polun ominaisuuksia...Muokkaa kuviota...Muokkaa mallia...EllipsivalintaTasojen ja kanavien esikatselutJättikokoinenTasoita sävyaluePyyhekumi_Edustaväri_TiedostoTäyttö:_Laajenna ikkunaanYhdistä kuvaPeilikuvatyökalu_Peilaa osaPeilaa valinta_Kelluva_KirjasinKirjasimet_Edustaväri:Vapaa valinta_G_YleisetGiganttinenVäriliukumaVäriliukumatHarmaasävy_Harmaasävy kopio tasostaLaajenna..._ApulinjatKovuus_Ohje_Vaakasuuntaan:Sävy (H):Valtava_Kuvake_Kuvake:_KuvaKuvatTuo_Tuo paletti...Indeksoitu...InfoikkunaLeikkaa valinnastaK_äänteinenL_iitoksen tyyli:IsoT_aso_TasotTasot, kanavat & polut_Vasemmanpuoleinen päätypiste_Vasemman naapurin oikea päätypisteVäritasot...Vaalea ruudutusValoefektitValoisuus (L):_Viivan tyyli_Lineaarinen_Yhdistetty_Lataa vasemmanpuoleinen väri_Laske kanavaLaske tasoLaske polku_MManuaalisesti:_KuvauksetMaskiMaski valinnaksiVärien maksimimäärä:MittaKeski_Yhdistä paletit...Yhdistä tuodut polut_Siirrä käyttäjän GIMP 2.0 -asetukset.Sekalaiset_Särmän raja:_TilaModulihallintaSiirrä_Nimi:_Luonto_Uusi sivellin_Uusi kanava_Uusi kanava...Uusi kohta..._Uusi väriliuku_Uusi tasoUusi taso..._Uusi palettiUusi polkuUusi polku...Uusi kuvioUusi malli...Uusi näkymä_Uusi..._Seuraava vihjeKohina_Ei mikäänSiirtymä...Peitt_o_Avaa kuva_Avaa...Oma laajennosväriMaalaustyökalu:Sivellin_PalettiL_iitä_Liitä nimettyLiitä nimetty..._Polut_KuviotPerspektiiviPosterisaatio...AsetuksetEsikatseluEsikatselukoko_Edellinen vihje_Tulostuskoko..._Ominaisuudet_QMask päällä_Poistu_R_RGBSäde_Nosta kanavaNosta tasoNosta polkuNosta näkymä_Nosta tai avaa kuva_Määrää uusi oikopolkuSuorakulmiovalintaUudelleenTee uudelleen %sLue siveltimetP_äivitä väriliu'ut_Virkistä paletitVirkistä kuviotPoista käyttämättömät värit lopullisesta paletistaMuodosta kuvaKorvaaKopioi osa...Kopioi valinta...Lue kirjasinlista uudelleenNollaa järjestys ja näkyvyys_Nollaa syöttölaitteiden_Palauta näppäimistöoikotiet käynnistyksessä_Palauta ikkunoiden sijainnit poistuttaessa_Palauta asetukset_Oikeanpuoleinen päätypiste_Oikeanpuoleisen naapurin vasen päätypisteKiertoVärikylläisyys (S):_Tallenna_Tallenna vasemmanpuoleinen väri_Tallenna asetukset_Tallenna syöttölaitteiden tila poistuessa_Tallenna näppäimistöoikopolut poistuttaessaTallenna ikkunoiden sijainnit poistuttaessaSkaalausSkaalaa kuvaa...Skaalaa tasoa..._Skaalaa tuodut polkut sopimaan kuvaan_Valitse_ValintaValintaeditoriValintatyökalutMuotoTerävöitäNäytä kuvan valintaNäytä työkaluvalikossa_SinimuotoinenPieniSormi_Tarttumisetäisyys:Piirrä valinta_Piirrä valinta...Vähennä valinnastaVälilehden tyyliMallit:MallitTekstiRaja-arvo...MinimaalinenPäivän vihje_TyökalutT_yökalut_Siirrä tason alfakanavaMuunnosMuuntotyökalutK_umoaK_umoa %s_Pystysuuntaan:_Näytä_Näkyvä_WebKäytettävä Web-selain:_Valkoinen (täysin peittävä)_Valkotasapaino_Leveys:Kiedo ympäriX-tarkkuus:_X:_Laajennokset_YY-tarkkuus:_Y:SuurennaSuurenna %sväriäkopiodpisallitut arvot: "yes" tai "no" asetukselle %s, tuli '%s'jäsennysvirheharmaasävyharmaasävy-tyhjätuumatuumaaindeksoituindeksoitu-tyhjäEpäkelpo unicode-merkkijonoväärä arvo "%ld" ikonityypillekelvoton arvo "%ld" symbolille %sväärä arvo "%s" ikonityypilleväärä arvo "%s" symbolille %smillimetrimillimetriäminuutin-prosenttipicapicaapikselipikseleitäpikseleitä/%apikseleitä/%spistepistettäsekunnintips-locale:fiVille Hautamäki Tor Lillqvist Sami Gerdt Jarkko Ranta diff -uraN gimp-2.2.0/po/fi.po gimp-2.2.1/po/fi.po --- gimp-2.2.0/po/fi.po 2004-12-19 03:11:25.000000000 +0100 +++ gimp-2.2.1/po/fi.po 2004-12-28 16:58:29.000000000 +0100 @@ -14,10 +14,10 @@ msgstr "" "Project-Id-Version: gimp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-19 03:11+0100\n" -"PO-Revision-Date: 2004-03-22 18:36+0200\n" +"POT-Creation-Date: 2004-12-28 16:58+0100\n" +"PO-Revision-Date: 2004-12-18 06:20+0200\n" "Last-Translator: Mikko Paananen\n" -"Language-Team: Finnish \n" +"Language-Team:\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -25,7 +25,7 @@ #: app/app_procs.c:144 msgid "(This console window will close in ten seconds)\n" -msgstr "(Tämä pääteikkuna sulkeutuu kymmenen sekunnin kuluttua)\n" +msgstr "(Tämä pääteikkuna sulkeutuu kymmenessä sekunnissa)\n" #: app/app_procs.c:238 msgid "" @@ -33,10 +33,10 @@ "User installation was skipped because the '--no-interface' flag was used.\n" "To perform user installation, run the GIMP without the '--no-interface' flag." msgstr "" -"GIMP:n asennusta ei ole tehty kunnolla tälle käyttäjälle.\n" -"Käyttäjäkohtainen asennus ohitettiin '--no-interface' -valitsimen takia.\n" -"Käyttäjäkohtainen asennus tehdään kun GIMP käynnistetään ilman '--no-" -"interface' -valitsinta. " +"GIMP asennusta ei ole tehty kunnolla tälle käyttäjälle.\n" +"Käyttäjäkohtainen asennus ohitettiin \"--no-interface\" -valitsimen takia.\n" +"Käyttäjäkohtainen asennus tehdään kun GIMP käynnistetään ilman \"--no-" +"interface\" -valitsinta." #: app/app_procs.c:289 #, c-format @@ -56,7 +56,7 @@ #: app/batch.c:84 app/batch.c:101 #, c-format msgid "The batch interpreter '%s' is not available, batch mode disabled." -msgstr "" +msgstr "Komentojonotulkkia \"%s\" ei löydy, komentojono tila ei käytettävissä" #: app/main.c:211 msgid "" @@ -64,7 +64,7 @@ "Make sure a proper setup for your display environment exists." msgstr "" "GIMP ei voinut käynnistää graafista käyttöliittymää.\n" -"Varmistu, että kunnolliset asetukset on tehty näytölle." +"Varmista että ympäristö on asetettu oikein." #: app/main.c:222 app/widgets/gimptoolbox.c:559 #: data/misc/gimp.desktop.in.in.h:3 @@ -85,7 +85,7 @@ #: app/main.c:501 msgid "GIMP version" -msgstr "GIMPin versio" +msgstr "GIMP versio" #: app/main.c:509 #, c-format @@ -112,7 +112,7 @@ #: app/main.c:514 msgid " --verbose Show startup messages.\n" -msgstr " --verbose Näytä käynnistyslokia.\n" +msgstr " --verbose Näytä käynnistysviestit.\n" #: app/main.c:515 msgid "" @@ -132,12 +132,12 @@ " -d, --no-data Do not load brushes, gradients, palettes, " "patterns.\n" msgstr "" -" -d, --no-data Älä lataa kuvioita, väriliukumia, paletteja tai " -"siveltimiä.\n" +" -d, --no-data Älä lataa siveltimiä, väriliukumia, paletteja tai " +"kuvioita.\n" #: app/main.c:518 msgid " -f, --no-fonts Do not load any fonts.\n" -msgstr " -f, --no-fonts Älä lataa mitään kirjasinlajeja.\n" +msgstr " -f, --no-fonts Älä lataa mitään kirjasimia.\n" #: app/main.c:519 msgid " -i, --no-interface Run without a user interface.\n" @@ -205,6 +205,8 @@ " --batch-interpreter \n" " The procedure to process batch commands with.\n" msgstr "" +" --batch-interpreter \n" +" Komentojonokomennot tulkitsevat proseduuri.\n" #: app/main.c:534 msgid " -b, --batch Process commands in batch mode.\n" @@ -217,6 +219,9 @@ "\n" "Please check the value of the environment variable G_FILENAME_ENCODING." msgstr "" +"Määriteltyä tiedostonimen koodausta ei voi muuntaa Unicodeen: %s\n" +"\n" +"Tarkista ympäristömuuttujan G_FILENAME_ENCODING arvo." #: app/sanity.c:213 #, c-format @@ -228,6 +233,11 @@ "8 and you didn't tell GLib about this. Please set the environment variable " "G_FILENAME_ENCODING." msgstr "" +"Gimpin käyttäjän asetukset sisältävän tiedoston nimeä ei voi muuttaa Unicode-" +"merkistöön: %s\n" +"\n" +"Luultavimmin tiedostonimet eivät ole Unicode-yhteensopivia, ja et ole " +"määritellyt tätä. Aseta ympäristömuuttujen G_FILENAME_ENCODING arvo." #. initialize the list of gimp brushes #: app/actions/actions.c:93 app/core/gimp.c:856 app/dialogs/dialogs.c:138 @@ -244,28 +254,24 @@ msgstr "Kanavat" #: app/actions/actions.c:102 -#, fuzzy msgid "Colormap Editor" -msgstr "Väritasapainon säätö" +msgstr "Värikartan editointi" #: app/actions/actions.c:105 app/pdb/internal_procs.c:101 -#, fuzzy msgid "Context" -msgstr "/Ohje/Yhteydestä riippuva avustus..." +msgstr "Konteksti" #: app/actions/actions.c:108 msgid "Debug" -msgstr "" +msgstr "Virheenhaku" #: app/actions/actions.c:111 -#, fuzzy msgid "Dialogs" -msgstr "/_Ikkunat" +msgstr "Ikkunat" #: app/actions/actions.c:114 -#, fuzzy msgid "Dockable" -msgstr "Piirtotaso" +msgstr "Telakoitava" #: app/actions/actions.c:117 app/dialogs/dialogs.c:152 msgid "Document History" @@ -285,9 +291,8 @@ msgstr "Virhekonsoli" #: app/actions/actions.c:129 -#, fuzzy msgid "File" -msgstr "/_Tiedosto" +msgstr "Tiedosto" #. initialize the list of gimp fonts #: app/actions/actions.c:132 app/core/gimp.c:872 app/dialogs/dialogs.c:146 @@ -306,9 +311,8 @@ msgstr "Väriliukumat" #: app/actions/actions.c:141 -#, fuzzy msgid "Help" -msgstr "/_Ohje" +msgstr "Ohje" #: app/actions/actions.c:144 app/pdb/internal_procs.c:149 #: app/tools/tools-enums.c:176 @@ -349,9 +353,8 @@ msgstr "Nopea maski" #: app/actions/actions.c:168 -#, fuzzy msgid "Select" -msgstr "/_Valitse" +msgstr "Valitse" #. initialize the template list #: app/actions/actions.c:171 app/core/gimp.c:880 app/dialogs/dialogs.c:154 @@ -359,7 +362,6 @@ msgstr "Mallit" #: app/actions/actions.c:174 -#, fuzzy msgid "Text Editor" msgstr "Tekstieditori" @@ -379,216 +381,177 @@ msgstr "Polut" #: app/actions/actions.c:186 -#, fuzzy msgid "View" -msgstr "/_Näytä" +msgstr "Näytä" #: app/actions/brushes-actions.c:43 msgid "Brushes Menu" msgstr "Siveltimet" #: app/actions/brushes-actions.c:47 -#, fuzzy msgid "_New Brush" -msgstr "/_Uusi sivellin" +msgstr "_Uusi sivellin" #: app/actions/brushes-actions.c:48 -#, fuzzy msgid "New brush" -msgstr "/_Uusi sivellin" +msgstr "Uusi sivellin" #: app/actions/brushes-actions.c:53 -#, fuzzy msgid "D_uplicate Brush" -msgstr "/_Kopioi sivellin" +msgstr "_Kopioi sivellin" #: app/actions/brushes-actions.c:54 -#, fuzzy msgid "Duplicate brush" -msgstr "/_Kopioi sivellin" +msgstr "_Kopioi sivellin" #: app/actions/brushes-actions.c:59 -#, fuzzy msgid "_Delete Brush" -msgstr "/_Poista sivellin" +msgstr "_Poista sivellin" #: app/actions/brushes-actions.c:60 -#, fuzzy msgid "Delete brush" -msgstr "/_Poista sivellin" +msgstr "_Poista sivellin" #: app/actions/brushes-actions.c:65 -#, fuzzy msgid "_Refresh Brushes" -msgstr "/Lue siveltimet" +msgstr "Lue siveltimet" #: app/actions/brushes-actions.c:66 -#, fuzzy msgid "Refresh brushes" -msgstr "/Lue siveltimet" +msgstr "Lue siveltimet" #: app/actions/brushes-actions.c:74 -#, fuzzy msgid "_Edit Brush..." -msgstr "/_Muokkaa siveltimen ominaisuuksia" +msgstr "_Muokkaa siveltimen ominaisuuksia..." #: app/actions/brushes-actions.c:75 -#, fuzzy msgid "Edit brush" -msgstr "/_Muokkaa siveltimen ominaisuuksia" +msgstr "_Muokkaa siveltimen ominaisuuksia" #: app/actions/buffers-actions.c:42 msgid "Buffers Menu" msgstr "Leikkeet" #: app/actions/buffers-actions.c:46 -#, fuzzy msgid "_Paste Buffer" -msgstr "/_Liitä nimetty" +msgstr "_Liitä nimetty" #: app/actions/buffers-actions.c:47 -#, fuzzy msgid "Paste the selected buffer" -msgstr "Nosta valittua suodatinta ylemmäs" +msgstr "Liitä valittu leike" #: app/actions/buffers-actions.c:52 -#, fuzzy msgid "Paste Buffer _Into" -msgstr "/Liitä _johonkin" +msgstr "Liitä _johonkin" #: app/actions/buffers-actions.c:53 -#, fuzzy msgid "Paste the selected buffer into the selection" -msgstr "Kierrä tasoa tai valintaa" +msgstr "Liitä valittu leike valintaan" #: app/actions/buffers-actions.c:58 -#, fuzzy msgid "Paste Buffer as _New" -msgstr "/Liitä _uutena" +msgstr "Liitä _uutena" #: app/actions/buffers-actions.c:59 -#, fuzzy msgid "Paste the selected buffer as new image" -msgstr "Nollaa valittujen suodattimien arvot" +msgstr "Uusi kuva valitusta leikkeestä" #: app/actions/buffers-actions.c:64 -#, fuzzy msgid "_Delete Buffer" -msgstr "/_Poista leike" +msgstr "_Poista leike" #: app/actions/buffers-actions.c:65 -#, fuzzy msgid "Delete the selected buffer" -msgstr "Poista malli" +msgstr "Poista leike" #: app/actions/channels-actions.c:44 msgid "Channels Menu" msgstr "Kanavat" #: app/actions/channels-actions.c:48 -#, fuzzy msgid "_Edit Channel Attributes..." -msgstr "/_Muokkaa kanavan ominaisuuksia..." +msgstr "_Muokkaa kanavan ominaisuuksia..." #: app/actions/channels-actions.c:49 -#, fuzzy msgid "Edit channel attributes" msgstr "Muokkaa kanavan ominaisuuksia" #: app/actions/channels-actions.c:54 -#, fuzzy msgid "_New Channel..." -msgstr "/_Uusi kanava..." +msgstr "_Uusi kanava..." #: app/actions/channels-actions.c:55 -#, fuzzy msgid "New channel..." -msgstr "/_Uusi kanava..." +msgstr "Uusi kanava..." #: app/actions/channels-actions.c:60 -#, fuzzy msgid "_New Channel" -msgstr "Uusi kanava" +msgstr "_Uusi kanava" #: app/actions/channels-actions.c:61 msgid "New channel with last values" -msgstr "" +msgstr "Uusi kanava edellisillä arvoilla" #: app/actions/channels-actions.c:66 -#, fuzzy msgid "D_uplicate Channel" -msgstr "/_Kahdenna kanava" +msgstr "_Kahdenna kanava" #: app/actions/channels-actions.c:67 -#, fuzzy msgid "Duplicate channel" msgstr "Kahdenna kanava" #: app/actions/channels-actions.c:72 -#, fuzzy msgid "_Delete Channel" -msgstr "/_Poista kanava" +msgstr "_Poista kanava" #: app/actions/channels-actions.c:73 app/core/core-enums.c:1088 -#, fuzzy msgid "Delete channel" msgstr "Poista kanava" #: app/actions/channels-actions.c:78 -#, fuzzy msgid "_Raise Channel" -msgstr "/_Nosta kanava" +msgstr "_Nosta kanava" #: app/actions/channels-actions.c:79 -#, fuzzy msgid "Raise channel" msgstr "Nosta kanava" #: app/actions/channels-actions.c:84 -#, fuzzy msgid "Raise Channel to _Top" msgstr "Nosta kanava päällimmäiseksi" #: app/actions/channels-actions.c:85 -#, fuzzy msgid "Raise channel to top" msgstr "Nosta kanava päällimmäiseksi" #: app/actions/channels-actions.c:90 -#, fuzzy msgid "_Lower Channel" -msgstr "/_Laske kanava" +msgstr "_Laske kanava" #: app/actions/channels-actions.c:91 -#, fuzzy msgid "Lower channel" msgstr "Laske kanava" #: app/actions/channels-actions.c:96 -#, fuzzy msgid "Lower Channel to _Bottom" -msgstr "Laske taso pohjimmaiseksi" +msgstr "Laske kanava pohjimmaiseksi" #: app/actions/channels-actions.c:97 -#, fuzzy msgid "Lower channel to bottom" -msgstr "Laske taso pohjimmaiseksi" +msgstr "Laske kanava pohjimmaiseksi" #: app/actions/channels-actions.c:105 -#, fuzzy msgid "Channel to Sele_ction" -msgstr "/Kanava _valinnaksi" +msgstr "Kanava _valinnaksi" #: app/actions/channels-actions.c:106 -#, fuzzy msgid "Channel to selection" msgstr "Kanava valinnaksi" #: app/actions/channels-actions.c:111 app/actions/layers-actions.c:226 #: app/actions/vectors-actions.c:173 -#, fuzzy msgid "_Add to Selection" -msgstr "/Lisää valintaan" +msgstr "Lisää valintaan" #: app/actions/channels-actions.c:112 app/actions/vectors-actions.c:174 msgid "Add" @@ -596,9 +559,8 @@ #: app/actions/channels-actions.c:117 app/actions/layers-actions.c:231 #: app/actions/layers-actions.c:254 app/actions/vectors-actions.c:179 -#, fuzzy msgid "_Subtract from Selection" -msgstr "/Vähennä valinnasta" +msgstr "Vähennä valinnasta" #: app/actions/channels-actions.c:118 app/actions/vectors-actions.c:180 #: app/widgets/gimpwidgets-constructors.c:69 @@ -608,14 +570,12 @@ #: app/actions/channels-actions.c:123 app/actions/layers-actions.c:236 #: app/actions/layers-actions.c:259 app/actions/vectors-actions.c:185 -#, fuzzy msgid "_Intersect with Selection" -msgstr "/Leikkaa valinnasta" +msgstr "Leikkaa valinnasta" #: app/actions/channels-actions.c:124 app/actions/vectors-actions.c:186 -#, fuzzy msgid "Intersect" -msgstr "Käyttöliittymä" +msgstr "Leikkaus" #: app/actions/channels-commands.c:86 app/actions/channels-commands.c:383 msgid "Channel Attributes" @@ -658,91 +618,77 @@ msgstr "Kanava valinnaksi" #: app/actions/colormap-editor-actions.c:43 -#, fuzzy msgid "Colormap Menu" -msgstr "Värikartta" +msgstr "Värikarttavalikko" #: app/actions/colormap-editor-actions.c:47 #: app/actions/palette-editor-actions.c:47 -#, fuzzy msgid "_Edit Color..." -msgstr "/_Muokkaa väriä..." +msgstr "_Muokkaa väriä..." #: app/actions/colormap-editor-actions.c:48 #: app/actions/palette-editor-actions.c:48 -#, fuzzy msgid "Edit color" -msgstr "Vasemmanpuoleisen päätypisteen väri" +msgstr "Muokkaa väriä" #: app/actions/colormap-editor-actions.c:56 -#, fuzzy msgid "_Add Color from FG" -msgstr "/Lisää väri _edustasta" +msgstr "Lisää väri _edustasta" #: app/actions/colormap-editor-actions.c:57 -#, fuzzy msgid "Add color from FG" -msgstr "/Lisää väri _edustasta" +msgstr "Lisää väri _edustasta" #: app/actions/colormap-editor-actions.c:62 -#, fuzzy msgid "_Add Color from BG" -msgstr "/Lisää väri _taustasta" +msgstr "Lisää väri _taustasta" #: app/actions/colormap-editor-actions.c:63 -#, fuzzy msgid "Add color from BG" -msgstr "/Lisää väri _taustasta" +msgstr "Lisää väri _taustasta" #: app/actions/colormap-editor-commands.c:70 -#, fuzzy, c-format +#, c-format msgid "Edit colormap entry #%d" -msgstr "Muokkaa paletin väriä" +msgstr "Muokkaa paletin väriä nro. %d" #: app/actions/colormap-editor-commands.c:76 -#, fuzzy msgid "Edit Colormap Entry" msgstr "Muokkaa paletin väriä" #: app/actions/context-actions.c:46 -#, fuzzy msgid "_Context" -msgstr "/Ohje/Yhteydestä riippuva avustus..." +msgstr "Tilavalikko" #: app/actions/context-actions.c:47 app/actions/layers-actions.c:53 #: app/actions/plug-in-actions.c:64 -#, fuzzy msgid "_Colors" -msgstr "Väri" +msgstr "Värit" #: app/actions/context-actions.c:48 app/actions/layers-actions.c:59 -#, fuzzy msgid "_Opacity" -msgstr "Peitto" +msgstr "Peitt_o" #: app/actions/context-actions.c:49 -#, fuzzy msgid "Paint _Mode" -msgstr "Muokkaustila" +msgstr "_Maalaustila" #: app/actions/context-actions.c:50 -#, fuzzy msgid "_Tool" -msgstr "/T_yökalut" +msgstr "_Työkalut" #: app/actions/context-actions.c:51 app/dialogs/preferences-dialog.c:1627 msgid "_Brush" -msgstr "Siveltimet:" +msgstr "_Siveltimet" #: app/actions/context-actions.c:52 app/actions/plug-in-actions.c:78 #: app/dialogs/preferences-dialog.c:1630 msgid "_Pattern" -msgstr "Kuviot" +msgstr "_Kuviot" #: app/actions/context-actions.c:53 -#, fuzzy msgid "_Palette" -msgstr "Paletti" +msgstr "_Paletti" #: app/actions/context-actions.c:54 app/dialogs/palette-import-dialog.c:219 #: app/dialogs/preferences-dialog.c:1633 @@ -750,49 +696,40 @@ msgstr "Väriliukuma" #: app/actions/context-actions.c:55 -#, fuzzy msgid "_Font" -msgstr "Kirjasin:" +msgstr "_Kirjasin" #: app/actions/context-actions.c:57 -#, fuzzy msgid "_Shape" msgstr "Muoto" #: app/actions/context-actions.c:58 -#, fuzzy msgid "_Radius" -msgstr "Säde:" +msgstr "Säde" #: app/actions/context-actions.c:59 -#, fuzzy msgid "S_pikes" -msgstr "pikseleitä" +msgstr "Piikkejä" #: app/actions/context-actions.c:60 -#, fuzzy msgid "_Hardness" msgstr "Kovuus" #: app/actions/context-actions.c:61 -#, fuzzy msgid "_Aspect" -msgstr "Perspektiivi" +msgstr "Sivusuhde" #: app/actions/context-actions.c:62 -#, fuzzy msgid "A_ngle" -msgstr "Kulma:" +msgstr "Kulma" #: app/actions/context-actions.c:65 -#, fuzzy msgid "_Default Colors" -msgstr "/Työkalut/Oletusvärit" +msgstr "Oletusvärit" #: app/actions/context-actions.c:70 -#, fuzzy msgid "S_wap Colors" -msgstr "/Työkalut/Vaihda värit" +msgstr "Vaihda värit" #: app/actions/data-commands.c:79 app/core/gimpimage.c:1283 #: app/core/gimppalette-import.c:219 app/core/gimppalette.c:523 @@ -802,7 +739,6 @@ msgstr "Nimetön" #: app/actions/data-commands.c:149 -#, fuzzy msgid "Delete Object" msgstr "Poista objekti" @@ -812,434 +748,355 @@ msgstr "Haluat poistaa \"%s\":n listalta ja levyltä?" #: app/actions/dialogs-actions.c:38 -#, fuzzy msgid "_Dialogs" -msgstr "/_Ikkunat" +msgstr "_Ikkunat" #: app/actions/dialogs-actions.c:39 -#, fuzzy msgid "Create New Doc_k" -msgstr "/Ikkunat/Uusi telakka" +msgstr "Uusi telakka" #: app/actions/dialogs-actions.c:42 -#, fuzzy msgid "_Layers, Channels & Paths" -msgstr "/Ikkunat/Uusi telakka/Tasot, kanavat & polut" +msgstr "Tasot, kanavat & polut" #: app/actions/dialogs-actions.c:47 -#, fuzzy msgid "_Brushes, Patterns & Gradients" -msgstr "/Ikkunat/Uusi telakka/Siveltimet, kuviot ja väriliut" +msgstr "Siveltimet, kuviot ja väriliut" #: app/actions/dialogs-actions.c:52 msgid "_Misc. Stuff" -msgstr "" +msgstr "Sekalaiset" #: app/actions/dialogs-actions.c:57 -#, fuzzy msgid "Tool_box" msgstr "Työkaluvalikko" #: app/actions/dialogs-actions.c:65 -#, fuzzy msgid "Tool _Options" msgstr "Työkalujen asetukset" #: app/actions/dialogs-actions.c:70 -#, fuzzy msgid "_Device Status" msgstr "Laitteiden tila" #: app/actions/dialogs-actions.c:75 -#, fuzzy msgid "_Layers" -msgstr "Tasot" +msgstr "_Tasot" #: app/actions/dialogs-actions.c:80 -#, fuzzy msgid "_Channels" -msgstr "Kanavat" +msgstr "_Kanavat" #: app/actions/dialogs-actions.c:85 app/tools/gimpvectortool.c:162 -#, fuzzy msgid "_Paths" -msgstr "Polut" +msgstr "_Polut" #: app/actions/dialogs-actions.c:90 -#, fuzzy msgid "Color_map" msgstr "Värikartta" #: app/actions/dialogs-actions.c:95 -#, fuzzy msgid "Histogra_m" msgstr "Histogrammi" #: app/actions/dialogs-actions.c:100 -#, fuzzy msgid "_Selection Editor" msgstr "Valintaeditori" #: app/actions/dialogs-actions.c:105 -#, fuzzy msgid "Na_vigation" -msgstr "Navigointi" +msgstr "Na_vigointi" #: app/actions/dialogs-actions.c:110 -#, fuzzy msgid "Undo _History" msgstr "Toimintohistoria" #: app/actions/dialogs-actions.c:115 -#, fuzzy msgid "Colo_rs" -msgstr "Väri" +msgstr "Värit" #: app/actions/dialogs-actions.c:120 -#, fuzzy msgid "_Brushes" msgstr "Siveltimet" #: app/actions/dialogs-actions.c:125 -#, fuzzy msgid "P_atterns" msgstr "Kuviot" #: app/actions/dialogs-actions.c:130 -#, fuzzy msgid "_Gradients" -msgstr "Väriliukuma" +msgstr "Väriliukumat" #: app/actions/dialogs-actions.c:135 -#, fuzzy msgid "Pal_ettes" msgstr "Paletit" #: app/actions/dialogs-actions.c:140 -#, fuzzy msgid "_Fonts" msgstr "Kirjasimet" #: app/actions/dialogs-actions.c:145 -#, fuzzy msgid "B_uffers" msgstr "Leikkeet" #: app/actions/dialogs-actions.c:150 -#, fuzzy msgid "_Images" msgstr "Kuvat" #: app/actions/dialogs-actions.c:155 -#, fuzzy msgid "Document Histor_y" msgstr "Asiakirjahistoria" #: app/actions/dialogs-actions.c:160 -#, fuzzy msgid "_Templates" msgstr "Mallit" #: app/actions/dialogs-actions.c:165 -#, fuzzy msgid "T_ools" msgstr "Työkalulaatikko" #: app/actions/dialogs-actions.c:170 -#, fuzzy msgid "Error Co_nsole" msgstr "Virhekonsoli" #: app/actions/dialogs-actions.c:180 -#, fuzzy msgid "_Preferences" msgstr "Asetukset" #: app/actions/dialogs-actions.c:185 -#, fuzzy msgid "_Module Manager" msgstr "Modulihallinta" #: app/actions/dialogs-actions.c:190 -#, fuzzy msgid "_Tip of the Day" -msgstr "/Ohje/Päivän vihje..." +msgstr "Päivän vihje" #: app/actions/dialogs-actions.c:195 -#, fuzzy msgid "_About" -msgstr "_Automaattinen" +msgstr "_Tietoja" #: app/actions/dockable-actions.c:49 msgid "Dialogs Menu" msgstr "Ikkunat" #: app/actions/dockable-actions.c:53 -#, fuzzy msgid "_Add Tab" -msgstr "/_Lisää välilehti" +msgstr "_Lisää välilehti" #: app/actions/dockable-actions.c:54 -#, fuzzy msgid "_Preview Size" -msgstr "/Esikatselukoko" +msgstr "Esikatselukoko" #: app/actions/dockable-actions.c:55 -#, fuzzy msgid "_Tab Style" -msgstr "/Välilehden tyyli" +msgstr "Välilehden tyyli" #: app/actions/dockable-actions.c:58 -#, fuzzy msgid "_Close Tab" -msgstr "/_Sulje välilehti" +msgstr "_Sulje välilehti" #: app/actions/dockable-actions.c:63 -#, fuzzy msgid "_Detach Tab" -msgstr "/_Irroita välilehti" +msgstr "_Irroita välilehti" #: app/actions/dockable-actions.c:68 -#, fuzzy msgid "M_ove to Screen..." -msgstr "/Siirrä näytölle..." +msgstr "Siirrä näytölle..." #: app/actions/dockable-actions.c:76 -#, fuzzy msgid "_Show Image Selection" -msgstr "Näytä valinta" +msgstr "Näytä kuvan valinta" #: app/actions/dockable-actions.c:82 -#, fuzzy msgid "Auto _Follow Active Image" -msgstr "/Seuraa automaattisesti käsiteltävää kuvaa" +msgstr "Seuraa automaattisesti käsiteltävää kuvaa" #: app/actions/dockable-actions.c:101 -#, fuzzy msgid "_Tiny" msgstr "Minimaalinen" #: app/actions/dockable-actions.c:102 -#, fuzzy msgid "E_xtra Small" msgstr "Hyvin pieni" #: app/actions/dockable-actions.c:103 -#, fuzzy msgid "_Small" msgstr "Pieni" #: app/actions/dockable-actions.c:104 -#, fuzzy msgid "_Medium" msgstr "Keski" #: app/actions/dockable-actions.c:105 -#, fuzzy msgid "_Large" msgstr "Iso" #: app/actions/dockable-actions.c:106 -#, fuzzy msgid "Ex_tra Large" msgstr "Hyvin suuri" #: app/actions/dockable-actions.c:107 -#, fuzzy msgid "_Huge" msgstr "Valtava" #: app/actions/dockable-actions.c:108 -#, fuzzy msgid "_Enormous" msgstr "Jättikokoinen" #: app/actions/dockable-actions.c:109 -#, fuzzy msgid "_Gigantic" msgstr "Giganttinen" #: app/actions/dockable-actions.c:114 -#, fuzzy msgid "_Icon" -msgstr "_Kuvake:" +msgstr "_Kuvake" #: app/actions/dockable-actions.c:115 -#, fuzzy msgid "Current _Status" msgstr "Nykyinen asetus" #: app/actions/dockable-actions.c:116 -#, fuzzy msgid "_Text" msgstr "Teksti" #: app/actions/dockable-actions.c:117 -#, fuzzy msgid "I_con & Text" msgstr "Kuvake ja teksti" #: app/actions/dockable-actions.c:118 -#, fuzzy msgid "St_atus & Text" msgstr "Tila ja teksti" #: app/actions/dockable-actions.c:127 -#, fuzzy msgid "View as _List" -msgstr "/Näytä _listana" +msgstr "Näytä _listana" #: app/actions/dockable-actions.c:132 -#, fuzzy msgid "View as _Grid" -msgstr "/Näytä _taulukkona" +msgstr "Näytä _taulukkona" #: app/actions/documents-actions.c:42 msgid "Documents Menu" msgstr "Asiakirjavalikko" #: app/actions/documents-actions.c:46 -#, fuzzy msgid "_Open Image" -msgstr "/_Avaa kuva" +msgstr "_Avaa kuva" #: app/actions/documents-actions.c:47 -#, fuzzy msgid "Open the selected entry" -msgstr "Poista valittu" +msgstr "Avaa valittu" #: app/actions/documents-actions.c:52 -#, fuzzy msgid "_Raise or Open Image" -msgstr "/_Nosta tai avaa kuva" +msgstr "_Nosta tai avaa kuva" #: app/actions/documents-actions.c:53 msgid "Raise window if already open" -msgstr "" +msgstr "Nosta ikkuna, jos jo avattu" #: app/actions/documents-actions.c:58 -#, fuzzy msgid "File Open _Dialog" -msgstr "/T_iedoston avaus..." +msgstr "T_iedoston avaus..." #: app/actions/documents-actions.c:59 -#, fuzzy msgid "Open image dialog" msgstr "Avaa kuva" #: app/actions/documents-actions.c:64 -#, fuzzy msgid "Remove _Entry" -msgstr "/_Poista" +msgstr "_Poista valittu" #: app/actions/documents-actions.c:65 -#, fuzzy msgid "Remove the selected entry" msgstr "Poista valittu" #: app/actions/documents-actions.c:70 -#, fuzzy msgid "Recreate _Preview" -msgstr "/Luo _esikatselukuva" +msgstr "Luo _esikatselukuva" #: app/actions/documents-actions.c:71 -#, fuzzy msgid "Recreate preview" -msgstr "/Luo _esikatselukuva" +msgstr "Luo _esikatselukuva" #: app/actions/documents-actions.c:76 -#, fuzzy msgid "Reload _all Previews" -msgstr "/Lataa k_aikki esikatselukuvat uudelleen" +msgstr "Lataa k_aikki esikatselukuvat uudelleen" #: app/actions/documents-actions.c:77 -#, fuzzy msgid "Reload all previews" -msgstr "/Lataa k_aikki esikatselukuvat uudelleen" +msgstr "Lataa k_aikki esikatselukuvat uudelleen" #: app/actions/documents-actions.c:82 -#, fuzzy msgid "Remove Dangling E_ntries" -msgstr "/Poista _hävinneet tiedostot listalta" +msgstr "Poista _hävinneet tiedostot listalta" #: app/actions/documents-actions.c:83 -#, fuzzy msgid "Remove dangling entries" -msgstr "/Poista _hävinneet tiedostot listalta" +msgstr "Poista _hävinneet tiedostot listalta" -#: app/actions/documents-commands.c:252 app/actions/file-commands.c:163 +#: app/actions/documents-commands.c:251 app/actions/file-commands.c:163 #: app/dialogs/file-open-dialog.c:198 app/dialogs/file-open-dialog.c:249 #: app/dialogs/file-open-location-dialog.c:193 -#: app/display/gimpdisplayshell-dnd.c:332 app/widgets/gimplayertreeview.c:802 -#: app/widgets/gimptoolbox-dnd.c:123 +#: app/display/gimpdisplayshell-dnd.c:334 app/widgets/gimplayertreeview.c:804 +#: app/widgets/gimptoolbox-dnd.c:125 #, c-format msgid "" "Opening '%s' failed:\n" "\n" "%s" msgstr "" -"Tiedoston '%s' avaaminen epäonnistui:\n" +"Tiedoston \"%s\" avaaminen epäonnistui:\n" "%s" #: app/actions/drawable-actions.c:45 -#, fuzzy msgid "_Desaturate" msgstr "Pienennä värikylläisyyttä" #: app/actions/drawable-actions.c:50 -#, fuzzy msgid "_Equalize" msgstr "Tasoita sävyalue" #: app/actions/drawable-actions.c:55 -#, fuzzy msgid "In_vert" msgstr "Käänteinen" #: app/actions/drawable-actions.c:60 msgid "_White Balance" -msgstr "" +msgstr "_Valkotasapaino" #: app/actions/drawable-actions.c:65 -#, fuzzy msgid "_Offset..." -msgstr "Siirtymä" +msgstr "Siirtymä..." #: app/actions/drawable-actions.c:73 app/actions/vectors-actions.c:153 -#, fuzzy msgid "_Linked" -msgstr "Viiva" +msgstr "_Yhdistetty" #: app/actions/drawable-actions.c:79 app/actions/vectors-actions.c:147 -#, fuzzy msgid "_Visible" -msgstr "/_Tiedosto" +msgstr "_Näkyvä" #: app/actions/drawable-actions.c:88 app/actions/image-actions.c:141 -#, fuzzy msgid "Flip _Horizontally" -msgstr "Vaakasuuntaan:" +msgstr "Peilaa vaakasuuntaan" #: app/actions/drawable-actions.c:93 app/actions/image-actions.c:146 -#, fuzzy msgid "Flip _Vertically" -msgstr "Pystysuuntaan:" +msgstr "Peilaa pystysuuntaan" #. please use the degree symbol in the translation #: app/actions/drawable-actions.c:101 app/actions/image-actions.c:155 -#, fuzzy msgid "Rotate 90 degrees _CW" -msgstr "/Taso/Muunnokset/Kierrä 90° myötäpäivään" +msgstr "Kierrä 90° myötäpäivään" #: app/actions/drawable-actions.c:106 app/actions/image-actions.c:160 -#, fuzzy msgid "Rotate _180 degrees" -msgstr "/Kuva/Muunnokset/Kierrä _180°" +msgstr "Kierrä _180°" #: app/actions/drawable-actions.c:111 app/actions/image-actions.c:165 -#, fuzzy msgid "Rotate 90 degrees CC_W" -msgstr "/Kuva/Muunnokset/Kierrä 90° _vastapäivään" +msgstr "Kierrä 90° _vastapäivään" #: app/actions/drawable-commands.c:58 msgid "Desaturate operates only on RGB color layers." @@ -1254,19 +1111,16 @@ msgstr "Ei toimi indeksoiduilla kuvilla." #: app/actions/drawable-commands.c:114 -#, fuzzy msgid "White Balance operates only on RGB color layers." msgstr "Väritasapainon säätö käytettävissä vain täysvärikuvilla." #: app/actions/edit-actions.c:61 -#, fuzzy msgid "_Edit" -msgstr "/_Muokkaa" +msgstr "_Muokkaa" #: app/actions/edit-actions.c:62 -#, fuzzy msgid "_Buffer" -msgstr "Leikkeet" +msgstr "Leike" #: app/actions/edit-actions.c:65 app/actions/edit-actions.c:230 msgid "_Undo" @@ -1286,78 +1140,63 @@ msgstr "Uudelleen" #: app/actions/edit-actions.c:77 -#, fuzzy msgid "_Clear Undo History" -msgstr "Toimintohistoria" +msgstr "Tyhjennä toimintohistoria" #: app/actions/edit-actions.c:78 -#, fuzzy msgid "Clear undo history..." -msgstr "/Ikkunat/Toimintohistoria..." +msgstr "Tyhjennä toimintohistoria..." #: app/actions/edit-actions.c:83 -#, fuzzy msgid "Cu_t" -msgstr "Leikkaa" +msgstr "_Leikkaa" #: app/actions/edit-actions.c:88 -#, fuzzy msgid "_Copy" -msgstr "kopio" +msgstr "_Kopioi" #. GIMP_STOCK_COPY_VISIBLE, #: app/actions/edit-actions.c:93 -#, fuzzy msgid "Copy _Visible" -msgstr "/_Tiedosto" +msgstr "Kopioi _näkyvä" #: app/actions/edit-actions.c:98 -#, fuzzy msgid "_Paste" -msgstr "Liitä" +msgstr "L_iitä" #: app/actions/edit-actions.c:103 -#, fuzzy msgid "Paste _Into" -msgstr "Liitä johonkin" +msgstr "Liitä _johonkin" #: app/actions/edit-actions.c:108 -#, fuzzy msgid "Paste as _New" -msgstr "Liitä uutena" +msgstr "Liitä _uutena" #: app/actions/edit-actions.c:113 -#, fuzzy msgid "Cu_t Named..." -msgstr "Leikkaa nimetty" +msgstr "Leikkaa nimetty..." #: app/actions/edit-actions.c:118 -#, fuzzy msgid "_Copy Named..." -msgstr "Kopioi nimetty" +msgstr "Kopioi nimetty..." #: app/actions/edit-actions.c:123 -#, fuzzy msgid "_Paste Named..." -msgstr "/Muokkaa/Leikepöytä/Liitä nimetty..." +msgstr "Liitä nimetty..." #: app/actions/edit-actions.c:128 -#, fuzzy msgid "Cl_ear" msgstr "Tyhjennä" #: app/actions/edit-actions.c:136 -#, fuzzy msgid "Fill with _FG Color" msgstr "Täytä edustavärillä" #: app/actions/edit-actions.c:141 -#, fuzzy msgid "Fill with B_G Color" msgstr "Täytä taustavärillä" #: app/actions/edit-actions.c:146 -#, fuzzy msgid "Fill with P_attern" msgstr "Täytä kuviolla" @@ -1372,13 +1211,12 @@ msgstr "Tee uudelleen %s" #: app/actions/edit-commands.c:104 -#, fuzzy msgid "Clear Undo History" -msgstr "Toimintohistoria" +msgstr "Tyhjennä toimintohistoria" #: app/actions/edit-commands.c:122 msgid "Really clear image's undo history?" -msgstr "" +msgstr "Tyhjennetäänkö kuvan toimintohistoria?" #: app/actions/edit-commands.c:210 msgid "Cut Named" @@ -1409,38 +1247,32 @@ msgstr "Virhekonsolivalikko" #: app/actions/error-console-actions.c:44 -#, fuzzy msgid "_Clear Errors" -msgstr "/T_yhjennä virheet" +msgstr "T_yhjennä virheet" #: app/actions/error-console-actions.c:45 -#, fuzzy msgid "Clear errors" msgstr "Tyhjennä virheet" #: app/actions/error-console-actions.c:53 -#, fuzzy msgid "Save _All Errors to File..." -msgstr "/T_allenna virheet tiedostoon..." +msgstr "T_allenna virheet tiedostoon..." #: app/actions/error-console-actions.c:54 -#, fuzzy msgid "Save all errors" msgstr "Tyhjennä virheet" #: app/actions/error-console-actions.c:59 -#, fuzzy msgid "Save _Selection to File..." -msgstr "/Tallenna _valinta tiedostoon..." +msgstr "Tallenna _valinta tiedostoon..." #: app/actions/error-console-actions.c:60 -#, fuzzy msgid "Save selection" -msgstr "Siirrä valintaa" +msgstr "Tallenna valinta" #: app/actions/error-console-commands.c:69 msgid "Cannot save. Nothing is selected." -msgstr "Ei voi tallentaa, mitään ei ole valittu" +msgstr "Ei voi tallentaa, mitään ei ole valittu." #: app/actions/error-console-commands.c:80 msgid "Save Error Log to File" @@ -1452,68 +1284,56 @@ "Error writing file '%s':\n" "%s" msgstr "" -"Virhe tiedostoon kirjoituksessa: %s\n" +"Virhe tiedostoon \"%s\" kirjoituksessa:\n" "\"%s\"" #: app/actions/file-actions.c:61 -#, fuzzy msgid "_File" -msgstr "/_Tiedosto" +msgstr "_Tiedosto" #: app/actions/file-actions.c:62 -#, fuzzy msgid "Open _Recent" -msgstr "/Tiedosto/_Pikavalinnat" +msgstr "_Pikavalinnat" #: app/actions/file-actions.c:63 -#, fuzzy msgid "_Acquire" -msgstr "/Tiedosto/Kuvan syöttö" +msgstr "Kuvan syöttö" #: app/actions/file-actions.c:66 app/actions/file-actions.c:71 -#, fuzzy msgid "_Open..." -msgstr "/Tiedosto/_Avaa..." +msgstr "_Avaa..." #: app/actions/file-actions.c:76 -#, fuzzy msgid "Op_en as Layer..." -msgstr "/Uusi taso..." +msgstr "Avaa tasona..." #: app/actions/file-actions.c:81 -#, fuzzy msgid "Open _Location..." -msgstr "Sijainti:" +msgstr "Avaa _sijainti..." #: app/actions/file-actions.c:86 -#, fuzzy msgid "_Save" -msgstr "Tallenna" +msgstr "_Tallenna" #: app/actions/file-actions.c:91 -#, fuzzy msgid "Save _as..." -msgstr "/Tiedosto/Tallenna _nimellä..." +msgstr "Tallenna _nimellä..." #: app/actions/file-actions.c:96 -#, fuzzy msgid "Save a Cop_y..." -msgstr "/Tiedosto/Tallenna k_opio..." +msgstr "Tallenna k_opio..." #: app/actions/file-actions.c:101 -#, fuzzy msgid "Save as _Template..." -msgstr "/Tiedosto/Tallenna malliksi..." +msgstr "Tallenna malliksi..." #: app/actions/file-actions.c:106 -#, fuzzy msgid "Re_vert..." -msgstr "Palauta" +msgstr "Palauta..." #: app/actions/file-actions.c:111 -#, fuzzy msgid "_Quit" -msgstr "/Tiedosto/_Poistu" +msgstr "_Poistu" #: app/actions/file-commands.c:208 app/dialogs/file-save-dialog.c:249 #, c-format @@ -1522,7 +1342,7 @@ "\n" "%s" msgstr "" -"Tiedoston %s tallennus epäonnistui:\n" +"Tiedoston \"%s\" tallennus epäonnistui:\n" "%s" #: app/actions/file-commands.c:231 app/dialogs/file-save-dialog.c:77 @@ -1547,26 +1367,24 @@ #: app/actions/file-commands.c:296 msgid "Revert Image" -msgstr "Palauta alkuperäinen kuvaa?" +msgstr "Palauta alkuperäinen kuva?" #: app/actions/file-commands.c:317 #, c-format msgid "Revert '%s' to '%s'?" -msgstr "" +msgstr "Palautetaanko \"%s\" -> \"%s\"?" #: app/actions/file-commands.c:323 -#, fuzzy msgid "" "By reverting the image to the state saved on disk, you will lose all " "changes, including all undo information." msgstr "" -"Palautetaanko \"%s\" -> \"%s\"?\n" -"Menetät kaikki muutokset ja toimintohistorian." +"Palauttamalla kuvan levyltä\n" +"menetät kaikki muutokset ja toimintohistorian." #: app/actions/file-commands.c:372 -#, fuzzy msgid "Open Image as Layer" -msgstr "Avaa kuva" +msgstr "Avaa kuva tasona" #: app/actions/file-commands.c:377 app/dialogs/file-open-dialog.c:74 msgid "Open Image" @@ -1583,7 +1401,7 @@ "\n" "%s" msgstr "" -"'%s':n palauttaminen epäonnistui:\n" +"\"%s\":n palauttaminen epäonnistui:\n" "%s" #: app/actions/fonts-actions.c:44 @@ -1591,134 +1409,111 @@ msgstr "Kirjasimet" #: app/actions/fonts-actions.c:48 -#, fuzzy msgid "_Rescan Font List" -msgstr "/Lue kirjasinlista uudelleen" +msgstr "Lue kirjasinlista uudelleen" #: app/actions/fonts-actions.c:49 -#, fuzzy msgid "Rescan font list" msgstr "Lue kirjasinlista uudelleen" #: app/actions/gradient-editor-actions.c:46 msgid "Gradient Editor Menu" -msgstr "Väriliukumavalikko" +msgstr "Väriliukuvalikko" #: app/actions/gradient-editor-actions.c:50 -#, fuzzy msgid "_Load Left Color From" -msgstr "/Lataa vasemmanpuoleinen väri" +msgstr "_Lataa vasemmanpuoleinen väri" #: app/actions/gradient-editor-actions.c:52 -#, fuzzy msgid "_Save Left Color To" -msgstr "/Tallenna vasemmanpuoleinen väri" +msgstr "_Tallenna vasemmanpuoleinen väri" #: app/actions/gradient-editor-actions.c:55 -#, fuzzy msgid "Load Right Color Fr_om" -msgstr "/Lataa oikeanpuoleinen väri" +msgstr "Lataa oikeanpuoleinen väri" #: app/actions/gradient-editor-actions.c:57 -#, fuzzy msgid "Sa_ve Right Color To" -msgstr "/Tallenna vasemmanpuoleinen väri" +msgstr "Tallenna vasemmanpuoleinen väri" #: app/actions/gradient-editor-actions.c:63 -#, fuzzy msgid "L_eft Endpoint's Color..." -msgstr "/Vasemmanpuoleisen päätypisteen väri" +msgstr "_Vasemmanpuoleisen päätypisteen väri..." #: app/actions/gradient-editor-actions.c:68 -#, fuzzy msgid "R_ight Endpoint's Color..." -msgstr "/Oikeanpuoleisen päätypisteen väri" +msgstr "_Oikeanpuoleisen päätypisteen väri..." #: app/actions/gradient-editor-actions.c:108 -#, fuzzy msgid "Ble_nd Endpoints' Colors" -msgstr "/Sekoita päätepisteitten värit" +msgstr "Sekoita päätepisteitten vä_rit" #: app/actions/gradient-editor-actions.c:113 -#, fuzzy msgid "Blend Endpoints' Opacit_y" -msgstr "/Sekoita päätepisteitten peitot" +msgstr "Sekoita päätepisteitten _peitot" #: app/actions/gradient-editor-actions.c:143 -#, fuzzy msgid "_Left Neighbor's Right Endpoint" -msgstr "/Lataa vasemmanpuoleinen väri/Vasemman naapurin oikea päätypiste" +msgstr "_Vasemman naapurin oikea päätypiste" #: app/actions/gradient-editor-actions.c:148 -#, fuzzy msgid "_Right Endpoint" -msgstr "Oikeanpuoleisen päätypisteen väri" +msgstr "_Oikeanpuoleinen päätypiste" #: app/actions/gradient-editor-actions.c:153 #: app/actions/gradient-editor-actions.c:201 -#, fuzzy msgid "_FG Color" -msgstr "Edusta/Tausta-väri" +msgstr "_Edustaväri" #: app/actions/gradient-editor-actions.c:158 #: app/actions/gradient-editor-actions.c:206 -#, fuzzy msgid "_BG Color" -msgstr "Edusta/Tausta-väri" +msgstr "_Taustaväri" #: app/actions/gradient-editor-actions.c:191 -#, fuzzy msgid "_Right Neighbor's Left Endpoint" -msgstr "/Lataa oikeanpuoleinen väri/Oikeanpuoleisen naapurin vasen päätypiste" +msgstr "_Oikeanpuoleisen naapurin vasen päätypiste" #: app/actions/gradient-editor-actions.c:196 -#, fuzzy msgid "_Left Endpoint" -msgstr "Vasemmanpuoleisen päätypisteen väri" +msgstr "_Vasemmanpuoleinen päätypiste" #: app/actions/gradient-editor-actions.c:245 -#, fuzzy msgid "_Linear" -msgstr "Lineaarinen" +msgstr "_Lineaarinen" #: app/actions/gradient-editor-actions.c:250 -#, fuzzy msgid "_Curved" -msgstr "Värintoistokäyrät" +msgstr "_Käyrä" #: app/actions/gradient-editor-actions.c:255 msgid "_Sinusoidal" -msgstr "" +msgstr "_Sinimuotoinen" #: app/actions/gradient-editor-actions.c:260 -#, fuzzy msgid "Spherical (i_ncreasing)" -msgstr "/blendingfunction/Pallomainen (kasvava)" +msgstr "Pallomainen (_kasvava)" #: app/actions/gradient-editor-actions.c:265 -#, fuzzy msgid "Spherical (_decreasing)" -msgstr "/blendingfunction/Pallomainen (laskeva)" +msgstr "Pallomainen (_laskeva)" #: app/actions/gradient-editor-actions.c:270 #: app/actions/gradient-editor-actions.c:293 msgid "(Varies)" -msgstr "" +msgstr "(Vaihtelee)" #: app/actions/gradient-editor-actions.c:278 app/actions/image-actions.c:123 -#, fuzzy msgid "_RGB" -msgstr "RGB" +msgstr "_RGB" #: app/actions/gradient-editor-actions.c:283 -#, fuzzy msgid "HSV (_counter-clockwise hue)" -msgstr "/coloringtype/HSV vastapäivään" +msgstr "HSV (sävy vastapäivään)" #: app/actions/gradient-editor-actions.c:288 -#, fuzzy msgid "HSV (clockwise _hue)" -msgstr "Edustaväristä taustaväriin (HSV-värisävy myötäpäivään)" +msgstr "HSV (sävy myötäpäivään)" #: app/actions/gradient-editor-actions.c:301 msgid "Zoom In" @@ -1746,240 +1541,225 @@ #: app/actions/gradient-editor-actions.c:314 #: app/actions/palette-editor-actions.c:90 -#, fuzzy msgid "Zoom all" -msgstr "Suurenna kaikki" +msgstr "Suurenna täysi" -#: app/actions/gradient-editor-actions.c:582 +#: app/actions/gradient-editor-actions.c:589 msgid "_Blending Function for Segment" msgstr "Osan sekoitustapa" -#: app/actions/gradient-editor-actions.c:584 +#: app/actions/gradient-editor-actions.c:591 msgid "Coloring _Type for Segment" -msgstr "Värityksen valinta" +msgstr "Värityksen valinta osalle" -#: app/actions/gradient-editor-actions.c:587 +#: app/actions/gradient-editor-actions.c:594 msgid "_Flip Segment" -msgstr "Peilaa" +msgstr "_Peilaa osa" -#: app/actions/gradient-editor-actions.c:589 +#: app/actions/gradient-editor-actions.c:596 msgid "_Replicate Segment..." -msgstr "Kopioi" +msgstr "Kopioi osa..." -#: app/actions/gradient-editor-actions.c:591 +#: app/actions/gradient-editor-actions.c:598 msgid "Split Segment at _Midpoint" msgstr "Jaa osa keskeltä" -#: app/actions/gradient-editor-actions.c:593 +#: app/actions/gradient-editor-actions.c:600 msgid "Split Segment _Uniformly..." msgstr "Jaa osa tasaisesti..." -#: app/actions/gradient-editor-actions.c:595 +#: app/actions/gradient-editor-actions.c:602 msgid "_Delete Segment" msgstr "Poista väli" -#: app/actions/gradient-editor-actions.c:597 +#: app/actions/gradient-editor-actions.c:604 msgid "Re-_center Segment's Midpoint" msgstr "Keskitä osan keskipisteeseen" -#: app/actions/gradient-editor-actions.c:599 +#: app/actions/gradient-editor-actions.c:606 msgid "Re-distribute _Handles in Segment" msgstr "Uudelleenjaa kahvat osassa" -#: app/actions/gradient-editor-actions.c:604 +#: app/actions/gradient-editor-actions.c:611 msgid "_Blending Function for Selection" msgstr "Sekoitusfunktio" -#: app/actions/gradient-editor-actions.c:606 +#: app/actions/gradient-editor-actions.c:613 msgid "Coloring _Type for Selection" msgstr "Väritystyyppi" -#: app/actions/gradient-editor-actions.c:609 +#: app/actions/gradient-editor-actions.c:616 msgid "_Flip Selection" msgstr "Peilaa valinta" -#: app/actions/gradient-editor-actions.c:611 +#: app/actions/gradient-editor-actions.c:618 msgid "_Replicate Selection..." -msgstr "Kopioi valinta" +msgstr "Kopioi valinta..." -#: app/actions/gradient-editor-actions.c:613 +#: app/actions/gradient-editor-actions.c:620 msgid "Split Segments at _Midpoints" msgstr "Jaa osat keskeltä" -#: app/actions/gradient-editor-actions.c:615 +#: app/actions/gradient-editor-actions.c:622 msgid "Split Segments _Uniformly..." -msgstr "Jaa osat tasaisesti" +msgstr "Jaa osat tasaisesti..." -#: app/actions/gradient-editor-actions.c:617 +#: app/actions/gradient-editor-actions.c:624 msgid "_Delete Selection" msgstr "Poista valinta" -#: app/actions/gradient-editor-actions.c:619 +#: app/actions/gradient-editor-actions.c:626 msgid "Re-_center Midpoints in Selection" msgstr "Keskitä keskikohta valinnassa" -#: app/actions/gradient-editor-actions.c:621 +#: app/actions/gradient-editor-actions.c:628 msgid "Re-distribute _Handles in Selection" msgstr "Jaa kahvat uudelleen valinnassa" -#: app/actions/gradient-editor-commands.c:84 +#: app/actions/gradient-editor-commands.c:85 msgid "Left Endpoint Color" -msgstr "Vasemmanpuoleisen päätypisteen väri" +msgstr "_Vasemmanpuoleisen päätypisteen väri" -#: app/actions/gradient-editor-commands.c:86 +#: app/actions/gradient-editor-commands.c:87 msgid "Gradient Segment's Left Endpoint Color" msgstr "Väriliun vasemmanpuoleisen päätypisteen väri" -#: app/actions/gradient-editor-commands.c:186 +#: app/actions/gradient-editor-commands.c:189 msgid "Right Endpoint Color" -msgstr "Oikeanpuoleisen päätypisteen väri" +msgstr "_Oikeanpuoleisen päätypisteen väri" -#: app/actions/gradient-editor-commands.c:188 +#: app/actions/gradient-editor-commands.c:191 msgid "Gradient Segment's Right Endpoint Color" msgstr "Väriliun oikeanpuoleisen päätypisteen väri" -#: app/actions/gradient-editor-commands.c:353 +#: app/actions/gradient-editor-commands.c:358 msgid "Replicate Segment" msgstr "Kopioi osa" -#: app/actions/gradient-editor-commands.c:354 +#: app/actions/gradient-editor-commands.c:359 msgid "Replicate Gradient Segment" msgstr "Korvaa väliliun osa" -#: app/actions/gradient-editor-commands.c:358 +#: app/actions/gradient-editor-commands.c:363 msgid "Replicate Selection" msgstr "Kopioi valinta" -#: app/actions/gradient-editor-commands.c:359 +#: app/actions/gradient-editor-commands.c:364 msgid "Replicate Gradient Selection" msgstr "Kopioi väriliun valinta" -#: app/actions/gradient-editor-commands.c:371 +#: app/actions/gradient-editor-commands.c:376 msgid "Replicate" msgstr "Kahdenna" -#: app/actions/gradient-editor-commands.c:386 +#: app/actions/gradient-editor-commands.c:391 msgid "" "Select the number of times\n" "to replicate the selected segment." msgstr "Montako kertaa valinta toistetaan." -#: app/actions/gradient-editor-commands.c:389 +#: app/actions/gradient-editor-commands.c:394 msgid "" "Select the number of times\n" "to replicate the selection." msgstr "Valitse montako kertaa valinta toistetaan." -#: app/actions/gradient-editor-commands.c:444 +#: app/actions/gradient-editor-commands.c:452 msgid "Split Segment Uniformly" msgstr "Jaa tasaisesti" -#: app/actions/gradient-editor-commands.c:445 +#: app/actions/gradient-editor-commands.c:453 msgid "Split Gradient Segment Uniformly" -msgstr "Jaa väriliukuman osa tasaisesti" +msgstr "Jaa väriliu'un osa tasaisesti" -#: app/actions/gradient-editor-commands.c:449 +#: app/actions/gradient-editor-commands.c:457 msgid "Split Segments Uniformly" msgstr "Jaa osat tasaisesti" -#: app/actions/gradient-editor-commands.c:450 +#: app/actions/gradient-editor-commands.c:458 msgid "Split Gradient Segments Uniformly" -msgstr "Jaa väriliukuman osat tasaisesti" +msgstr "Jaa väriliu'un osat tasaisesti" -#: app/actions/gradient-editor-commands.c:462 +#: app/actions/gradient-editor-commands.c:470 msgid "Split" msgstr "Jako" -#: app/actions/gradient-editor-commands.c:478 +#: app/actions/gradient-editor-commands.c:486 msgid "" "Select the number of uniform parts\n" "in which to split the selected segment." -msgstr "Moneenko osaan valinnan osat jaetaan" +msgstr "Moneenko osaan valinnan osat jaetaan." -#: app/actions/gradient-editor-commands.c:481 +#: app/actions/gradient-editor-commands.c:489 msgid "" "Select the number of uniform parts\n" "in which to split the segments in the selection." -msgstr "Moneenko osaan valinnan osat jaetaan" +msgstr "Moneenko osaan valinnan osat jaetaan." #: app/actions/gradients-actions.c:44 msgid "Gradients Menu" msgstr "Väriliukumat" #: app/actions/gradients-actions.c:48 -#, fuzzy msgid "_New Gradient" -msgstr "/Uusi väriliukuma" +msgstr "_Uusi väriliuku" #: app/actions/gradients-actions.c:49 -#, fuzzy msgid "New gradient" -msgstr "/Uusi väriliukuma" +msgstr "_Uusi väriliuku" #: app/actions/gradients-actions.c:54 -#, fuzzy msgid "D_uplicate Gradient" -msgstr "/Kahdenna väriliukuma" +msgstr "_Kahdenna väriliukuma" #: app/actions/gradients-actions.c:55 -#, fuzzy msgid "Duplicate gradient" -msgstr "/Kahdenna väriliukuma" +msgstr "_Kahdenna väriliukuma" #: app/actions/gradients-actions.c:60 -#, fuzzy msgid "Save as _POV-Ray..." -msgstr "/Tallenna POV-Ray-muodossa" +msgstr "Tallenna POV-Ray-muodossa..." #: app/actions/gradients-actions.c:61 -#, fuzzy msgid "Save gradient as POV-Ray" -msgstr "Tallenna %s POV-Ray-muodossa" +msgstr "Tallenna väriliuku POV-Ray-muodossa" #: app/actions/gradients-actions.c:66 -#, fuzzy msgid "_Delete Gradient..." -msgstr "/Poista väriliukuma" +msgstr "_Poista väriliuku..." #: app/actions/gradients-actions.c:67 -#, fuzzy msgid "Delete gradient" -msgstr "/Poista väriliukuma" +msgstr "_Poista väriliuku" #: app/actions/gradients-actions.c:72 -#, fuzzy msgid "_Refresh Gradients" -msgstr "/Päivitä väriliukumat" +msgstr "P_äivitä väriliu'ut" #: app/actions/gradients-actions.c:73 -#, fuzzy msgid "Refresh gradients" -msgstr "/Päivitä väriliukumat" +msgstr "P_äivitä väriliu'ut" #: app/actions/gradients-actions.c:81 -#, fuzzy msgid "_Edit Gradient..." -msgstr "/Väriliukumien muokkain..." +msgstr "Muokkaa väriliukua..." #: app/actions/gradients-actions.c:82 -#, fuzzy msgid "Edit gradient" -msgstr "/Väriliukumien muokkain..." +msgstr "Muokkaa väriliukua" #: app/actions/gradients-commands.c:65 #, c-format msgid "Save '%s' as POV-Ray" -msgstr "Tallenna %s POV-Ray-muodossa" +msgstr "Tallenna \"%s\" POV-Ray-muodossa" #: app/actions/help-actions.c:38 app/actions/help-actions.c:41 -#, fuzzy msgid "_Help" -msgstr "/_Ohje" +msgstr "_Ohje" #: app/actions/help-actions.c:46 -#, fuzzy msgid "_Context Help" -msgstr "/Ohje/Yhteydestä riippuva avustus..." +msgstr "Yhteydestä riippuva avustus" #: app/actions/image-actions.c:47 msgid "Toolbox Menu" @@ -1990,88 +1770,72 @@ msgstr "Kuvavalikko" #: app/actions/image-actions.c:58 -#, fuzzy msgid "_Xtns" -msgstr "/_Laajennokset" +msgstr "_Laajennokset" #: app/actions/image-actions.c:59 -#, fuzzy msgid "_Image" -msgstr "/_Kuva" +msgstr "_Kuva" #: app/actions/image-actions.c:60 -#, fuzzy msgid "_Mode" -msgstr "Tila" +msgstr "_Tila" #: app/actions/image-actions.c:61 app/actions/layers-actions.c:57 -#, fuzzy msgid "_Transform" msgstr "Muunnos" #: app/actions/image-actions.c:62 -#, fuzzy msgid "_Guides" -msgstr "Apulinja" +msgstr "_Apulinjat" #: app/actions/image-actions.c:65 app/actions/image-actions.c:70 -#, fuzzy msgid "_New..." -msgstr "/Uusi polku" +msgstr "_Uusi..." #: app/actions/image-actions.c:75 -#, fuzzy msgid "Can_vas Size..." -msgstr "Kankaan koko" +msgstr "Kankaan koko..." #: app/actions/image-actions.c:80 msgid "F_it Canvas to Layers" -msgstr "" +msgstr "Sovita kangas tasoihin" #: app/actions/image-actions.c:85 -#, fuzzy msgid "_Print Size..." -msgstr "Tulostuskoko:" +msgstr "_Tulostuskoko..." #: app/actions/image-actions.c:90 -#, fuzzy msgid "_Scale Image..." -msgstr "Skaalaa kuvaa" +msgstr "Skaalaa kuvaa..." #: app/actions/image-actions.c:95 -#, fuzzy msgid "_Crop Image" msgstr "Rajaa kuva" #: app/actions/image-actions.c:100 -#, fuzzy msgid "_Duplicate" msgstr "Kahdenna" #: app/actions/image-actions.c:105 -#, fuzzy msgid "Merge Visible _Layers..." -msgstr "/Yhdistä näkyvät tasot..." +msgstr "Yhdistä näkyvät tasot..." #: app/actions/image-actions.c:110 app/actions/layers-actions.c:138 -#, fuzzy msgid "_Flatten Image" -msgstr "/Yhdistä kuva" +msgstr "Yhdistä kuva" #: app/actions/image-actions.c:115 -#, fuzzy msgid "Configure G_rid..." -msgstr "Aseta apuviivat" +msgstr "Aseta apuviivat..." #: app/actions/image-actions.c:128 -#, fuzzy msgid "_Grayscale" msgstr "Harmaasävy" #: app/actions/image-actions.c:133 -#, fuzzy msgid "_Indexed..." -msgstr "Indeksoitu" +msgstr "Indeksoitu..." #: app/actions/image-commands.c:192 msgid "Set Image Canvas Size" @@ -2082,9 +1846,8 @@ msgstr "Muunnetaan..." #: app/actions/image-commands.c:242 -#, fuzzy msgid "Set Image Print Resolution" -msgstr "Vaihda kuvan tarkkuutta" +msgstr "Vaihda kuvan tulostustarkkuutta" #: app/actions/image-commands.c:289 msgid "Flipping..." @@ -2101,9 +1864,8 @@ msgstr "Ei voida rajata koska valittu alue on tyhjä." #: app/actions/image-commands.c:484 -#, fuzzy msgid "Change Print Size" -msgstr "Tulostuskoko:" +msgstr "Vaihda tulostuskoko" #: app/actions/image-commands.c:508 app/core/gimpimage-scale.c:71 #: app/dialogs/image-scale-dialog.c:91 @@ -2122,27 +1884,24 @@ msgstr "Kuvavalikko" #: app/actions/images-actions.c:47 -#, fuzzy msgid "_Raise Views" -msgstr "/Nosta näkymä" +msgstr "Nosta näkymä" #: app/actions/images-actions.c:48 msgid "Raise this image's displays" msgstr "Nosta tämän kuvan näkymät" #: app/actions/images-actions.c:53 app/actions/view-actions.c:68 -#, fuzzy msgid "_New View" -msgstr "/Uusi näkymä" +msgstr "Uusi näkymä" #: app/actions/images-actions.c:54 msgid "Create a new display for this image" msgstr "Luo kuvalle uusi näkymä" #: app/actions/images-actions.c:59 -#, fuzzy msgid "_Delete Image" -msgstr "/Poista kuva" +msgstr "Poista kuva" #: app/actions/images-actions.c:60 msgid "Delete this image" @@ -2153,255 +1912,206 @@ msgstr "Tasot" #: app/actions/layers-actions.c:51 -#, fuzzy msgid "_Layer" -msgstr "/T_aso" +msgstr "T_aso" #: app/actions/layers-actions.c:52 -#, fuzzy msgid "Stac_k" -msgstr "/Taso/Pino" +msgstr "Pino" #: app/actions/layers-actions.c:54 app/tools/gimplevelstool.c:665 msgid "_Auto" msgstr "_Automaattinen" #: app/actions/layers-actions.c:55 -#, fuzzy msgid "_Mask" -msgstr "maski" +msgstr "Maski" #: app/actions/layers-actions.c:56 -#, fuzzy msgid "Tr_ansparency" msgstr "Läpinäkyvyys" #: app/actions/layers-actions.c:58 -#, fuzzy msgid "_Properties" -msgstr "Perspektiivi" +msgstr "_Ominaisuudet" #: app/actions/layers-actions.c:60 -#, fuzzy msgid "Layer _Mode" -msgstr "tason muokkaus" +msgstr "Tason _tila" #: app/actions/layers-actions.c:63 -#, fuzzy msgid "Te_xt Tool" -msgstr "/Tekstityökalu" +msgstr "Tekstityökalu" #: app/actions/layers-actions.c:68 -#, fuzzy msgid "_Edit Layer Attributes..." -msgstr "/Muokkaa tason ominaisuuksia..." +msgstr "Muokkaa tason ominaisuuksia..." #: app/actions/layers-actions.c:69 -#, fuzzy msgid "Edit layer attributes" msgstr "Muokkaa tason ominaisuuksia" #: app/actions/layers-actions.c:74 -#, fuzzy msgid "_New Layer..." -msgstr "/Uusi taso..." +msgstr "Uusi taso..." #: app/actions/layers-actions.c:75 -#, fuzzy msgid "New layer..." -msgstr "/Uusi taso..." +msgstr "Uusi taso..." #: app/actions/layers-actions.c:80 -#, fuzzy msgid "_New Layer" -msgstr "Uusi taso" +msgstr "_Uusi taso" #: app/actions/layers-actions.c:81 msgid "New layer with last values" -msgstr "" +msgstr "Uusi taso edellisillä arvoilla" #: app/actions/layers-actions.c:86 -#, fuzzy msgid "D_uplicate Layer" -msgstr "/Kahdenna taso" +msgstr "Kahdenna taso" #: app/actions/layers-actions.c:87 -#, fuzzy msgid "Duplicate layer" msgstr "Kahdenna taso" #: app/actions/layers-actions.c:92 -#, fuzzy msgid "_Delete Layer" -msgstr "/Poista taso" +msgstr "Poista taso" #: app/actions/layers-actions.c:93 app/core/core-enums.c:1078 -#, fuzzy msgid "Delete layer" -msgstr "tason poisto" +msgstr "Poista taso" #: app/actions/layers-actions.c:98 -#, fuzzy msgid "_Raise Layer" -msgstr "/Nosta taso" +msgstr "Nosta taso" #: app/actions/layers-actions.c:99 -#, fuzzy msgid "Raise layer" msgstr "Nosta taso" #: app/actions/layers-actions.c:104 -#, fuzzy msgid "Layer to _Top" -msgstr "/Nosta taso päällimmäiseksi" +msgstr "Taso päällimmäiseksi" #: app/actions/layers-actions.c:105 -#, fuzzy msgid "Raise layer to top" msgstr "Nosta taso päällimmäiseksi" #: app/actions/layers-actions.c:110 -#, fuzzy msgid "_Lower Layer" -msgstr "/Laske taso" +msgstr "Laske taso" #: app/actions/layers-actions.c:111 -#, fuzzy msgid "Lower layer" msgstr "Laske taso" #: app/actions/layers-actions.c:116 -#, fuzzy msgid "Layer to _Bottom" -msgstr "/Laske taso pohjimmaiseksi" +msgstr "Taso pohjimmaiseksi" #: app/actions/layers-actions.c:117 -#, fuzzy msgid "Lower layer to bottom" msgstr "Laske taso pohjimmaiseksi" #: app/actions/layers-actions.c:122 -#, fuzzy msgid "_Anchor Layer" -msgstr "/_Ankkuroi taso" +msgstr "_Ankkuroi taso" #: app/actions/layers-actions.c:123 -#, fuzzy msgid "Anchor floating layer" msgstr "Ankkuroi kelluva taso" #: app/actions/layers-actions.c:128 -#, fuzzy msgid "Merge Do_wn" -msgstr "/Yhdistä alas" +msgstr "Yhdistä alas" #: app/actions/layers-actions.c:133 -#, fuzzy msgid "Merge _Visible Layers..." -msgstr "/Yhdistä näkyvät tasot..." +msgstr "Yhdistä näkyvät tasot..." #: app/actions/layers-actions.c:143 -#, fuzzy msgid "_Discard Text Information" -msgstr "/Hylkää tekstidata" +msgstr "Hylkää tekstidata" #: app/actions/layers-actions.c:148 -#, fuzzy msgid "Layer B_oundary Size..." -msgstr "/Tason rajat..." +msgstr "Tason rajat..." #: app/actions/layers-actions.c:153 -#, fuzzy msgid "Layer to _Image Size" -msgstr "/Taso kuvan kokoiseksi" +msgstr "Taso kuvan kokoiseksi" #: app/actions/layers-actions.c:158 -#, fuzzy msgid "_Scale Layer..." -msgstr "/Skaalaa tasoa..." +msgstr "Skaalaa tasoa..." #: app/actions/layers-actions.c:163 -#, fuzzy msgid "Cr_op Layer" msgstr "Rajaa taso" #: app/actions/layers-actions.c:168 -#, fuzzy msgid "Add La_yer Mask..." -msgstr "/Lisää tason maski..." +msgstr "Lisää tason maski..." #: app/actions/layers-actions.c:173 -#, fuzzy msgid "Add Alpha C_hannel" -msgstr "/Lisää alfakanava" +msgstr "Lisää alfakanava" #: app/actions/layers-actions.c:181 -#, fuzzy msgid "Keep Transparency" msgstr "Pidä läpinäkyys" #: app/actions/layers-actions.c:187 -#, fuzzy msgid "Edit Layer Mask" -msgstr "Lisää tasoon maski" +msgstr "Muokka tason maskia" #: app/actions/layers-actions.c:193 -#, fuzzy msgid "Show Layer Mask" -msgstr "Siirrä tason maski" +msgstr "Näytä tason maski" #: app/actions/layers-actions.c:199 -#, fuzzy msgid "Disable Layer Mask" -msgstr "Poista tasomaski" +msgstr "Tason maski pois päältä" #: app/actions/layers-actions.c:208 -#, fuzzy msgid "Apply Layer _Mask" -msgstr "/Sovella tason maskia" +msgstr "Sovella tason maskia" #: app/actions/layers-actions.c:213 -#, fuzzy msgid "Delete Layer Mas_k" -msgstr "/Poista tason maski" +msgstr "Poista tason maski" #: app/actions/layers-actions.c:221 -#, fuzzy msgid "_Mask to Selection" -msgstr "/Maski valinnaksi" +msgstr "Maski valinnaksi" #: app/actions/layers-actions.c:244 -#, fuzzy msgid "Al_pha to Selection" -msgstr "/Läpinäkyvyys valinnaksi" +msgstr "Läpinäkyvyys valinnaksi" #: app/actions/layers-actions.c:249 -#, fuzzy msgid "A_dd to Selection" -msgstr "/Lisää valintaan" +msgstr "Lisää valintaan" #: app/actions/layers-actions.c:267 -#, fuzzy msgid "Select _Top Layer" -msgstr "/Taso/Pino/Valitse päällimmäinen taso" +msgstr "Valitse päällimmäinen taso" #: app/actions/layers-actions.c:272 -#, fuzzy msgid "Select _Bottom Layer" -msgstr "/Taso/Pino/Valitse pohjimmainen taso" +msgstr "Valitse pohjimmainen taso" #: app/actions/layers-actions.c:277 -#, fuzzy msgid "Select _Previous Layer" -msgstr "/Taso/Pino/Valitse edellinen taso" +msgstr "Valitse edellinen taso" #: app/actions/layers-actions.c:282 -#, fuzzy msgid "Select _Next Layer" -msgstr "/Taso/Pino/Valitse seuraava taso" +msgstr "Valitse seuraava taso" #: app/actions/layers-actions.c:290 -#, fuzzy msgid "Set Opacity" msgstr "Aseta tason peitto" @@ -2415,7 +2125,7 @@ #: app/actions/layers-commands.c:232 app/actions/layers-commands.c:234 #: app/actions/layers-commands.c:291 app/actions/layers-commands.c:295 -#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:840 +#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:842 msgid "New Layer" msgstr "Uusi taso" @@ -2427,7 +2137,7 @@ msgid "Set Layer Boundary Size" msgstr "Aseta tason rajat" -#: app/actions/layers-commands.c:512 app/core/gimplayer.c:255 +#: app/actions/layers-commands.c:512 app/core/gimplayer.c:253 msgid "Scale Layer" msgstr "Skaalaa tasoa" @@ -2439,7 +2149,7 @@ msgid "Layer Mask to Selection" msgstr "Tason Maski valinnaksi" -#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1085 +#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1066 #: app/dialogs/layer-add-mask-dialog.c:62 msgid "Add Layer Mask" msgstr "Lisää tasoon maski" @@ -2454,49 +2164,40 @@ msgstr "Väripalettivalikko" #: app/actions/palette-editor-actions.c:53 -#, fuzzy msgid "_Delete Color" -msgstr "/Poista väri" +msgstr "Poista väri" #: app/actions/palette-editor-actions.c:54 -#, fuzzy msgid "Delete color" msgstr "Poista väri" #: app/actions/palette-editor-actions.c:62 -#, fuzzy msgid "New Color from _FG" msgstr "Väri edustaväristä" #: app/actions/palette-editor-actions.c:63 -#, fuzzy msgid "New color from FG" msgstr "Väri edustaväristä" #: app/actions/palette-editor-actions.c:68 -#, fuzzy msgid "New Color from _BG" -msgstr "/Väri taustasta" +msgstr "Väri taustasta" #: app/actions/palette-editor-actions.c:69 -#, fuzzy msgid "New color from BG" -msgstr "/Väri taustasta" +msgstr "Väri taustasta" #: app/actions/palette-editor-actions.c:77 app/actions/view-actions.c:215 -#, fuzzy msgid "Zoom _In" -msgstr "/Suurenna" +msgstr "Suurenna" #: app/actions/palette-editor-actions.c:83 app/actions/view-actions.c:209 -#, fuzzy msgid "Zoom _Out" -msgstr "/Pienennä" +msgstr "Pienennä" #: app/actions/palette-editor-actions.c:89 -#, fuzzy msgid "Zoom _All" -msgstr "/Suurenna (täysi)" +msgstr "Suurenna (täysi)" #: app/actions/palette-editor-commands.c:68 msgid "Edit Palette Color" @@ -2511,74 +2212,60 @@ msgstr "Paletit" #: app/actions/palettes-actions.c:48 -#, fuzzy msgid "_New Palette" -msgstr "/Uusi paletti" +msgstr "_Uusi paletti" #: app/actions/palettes-actions.c:49 -#, fuzzy msgid "New palette" -msgstr "/Uusi paletti" +msgstr "Uusi paletti" #: app/actions/palettes-actions.c:54 -#, fuzzy msgid "_Import Palette..." -msgstr "/Lataa paletti" +msgstr "_Tuo paletti..." #: app/actions/palettes-actions.c:55 -#, fuzzy msgid "Import palette" msgstr "Tuo paletti" #: app/actions/palettes-actions.c:60 -#, fuzzy msgid "D_uplicate Palette" -msgstr "/Kahdenna paletti" +msgstr "Kahdenna paletti" #: app/actions/palettes-actions.c:61 -#, fuzzy msgid "Duplicate palette" -msgstr "/Kahdenna paletti" +msgstr "Kahdenna paletti" #: app/actions/palettes-actions.c:66 -#, fuzzy msgid "_Merge Palettes..." -msgstr "/Yhdistä paletit..." +msgstr "_Yhdistä paletit..." #: app/actions/palettes-actions.c:67 -#, fuzzy msgid "Merge palettes" -msgstr "Yhdistä paletti" +msgstr "Yhdistä paletit" #: app/actions/palettes-actions.c:72 -#, fuzzy msgid "_Delete Palette" -msgstr "/Poista paletti" +msgstr "_Poista paletti" #: app/actions/palettes-actions.c:73 -#, fuzzy msgid "Delete palette" -msgstr "/Poista paletti" +msgstr "Poista paletti" #: app/actions/palettes-actions.c:78 -#, fuzzy msgid "_Refresh Palettes" -msgstr "/Virkistä paletit" +msgstr "_Virkistä paletit" #: app/actions/palettes-actions.c:79 -#, fuzzy msgid "Refresh palettes" -msgstr "/Virkistä paletit" +msgstr "Virkistä paletit" #: app/actions/palettes-actions.c:87 -#, fuzzy msgid "_Edit Palette..." -msgstr "/Muokkaa palettia..." +msgstr "Muokkaa palettia..." #: app/actions/palettes-actions.c:88 -#, fuzzy msgid "Edit palette" -msgstr "/Muokkaa palettia..." +msgstr "Muokkaa palettia" #: app/actions/palettes-commands.c:72 msgid "Merge Palette" @@ -2593,151 +2280,124 @@ msgstr "Kuviovalikko" #: app/actions/patterns-actions.c:47 -#, fuzzy msgid "_New Pattern" -msgstr "/Uusi kuvio" +msgstr "Uusi kuvio" #: app/actions/patterns-actions.c:48 -#, fuzzy msgid "New pattern" -msgstr "/Uusi kuvio" +msgstr "Uusi kuvio" #: app/actions/patterns-actions.c:53 -#, fuzzy msgid "D_uplicate Pattern" -msgstr "/Kahdenna kuvio" +msgstr "Kahdenna kuvio" #: app/actions/patterns-actions.c:54 -#, fuzzy msgid "Duplicate pattern" -msgstr "/Kahdenna kuvio" +msgstr "Kahdenna kuvio" #: app/actions/patterns-actions.c:59 -#, fuzzy msgid "_Delete Pattern..." -msgstr "/Poista kuvio" +msgstr "_Poista kuvio..." #: app/actions/patterns-actions.c:60 -#, fuzzy msgid "Delete pattern" -msgstr "/Poista kuvio" +msgstr "_Poista kuvio" #: app/actions/patterns-actions.c:65 -#, fuzzy msgid "_Refresh Patterns" -msgstr "/Virkistä kuviot" +msgstr "Virkistä kuviot" #: app/actions/patterns-actions.c:66 -#, fuzzy msgid "Refresh patterns" -msgstr "/Virkistä kuviot" +msgstr "Virkistä kuviot" #: app/actions/patterns-actions.c:74 -#, fuzzy msgid "_Edit Pattern..." -msgstr "/Muokkaa kuviota..." +msgstr "Muokkaa kuviota..." #: app/actions/patterns-actions.c:75 -#, fuzzy msgid "Edit pattern" -msgstr "/Muokkaa kuviota..." +msgstr "Muokkaa kuviota" #: app/actions/plug-in-actions.c:62 -#, fuzzy msgid "Filte_rs" -msgstr "/Suotimet" +msgstr "Suotimet" #: app/actions/plug-in-actions.c:63 -#, fuzzy msgid "_Blur" msgstr "Tee epäteräväksi" #: app/actions/plug-in-actions.c:65 msgid "Ma_p" -msgstr "" +msgstr "Kuvaukset" #: app/actions/plug-in-actions.c:66 -#, fuzzy msgid "_Noise" -msgstr "Ei mikään" +msgstr "Kohina" #: app/actions/plug-in-actions.c:67 -#, fuzzy msgid "Edge-De_tect" -msgstr "/Suotimet/Reunakorostus" +msgstr "Reunantunnistus" #: app/actions/plug-in-actions.c:68 -#, fuzzy msgid "En_hance" -msgstr "/Suotimet/Paranna" +msgstr "Paranna" #: app/actions/plug-in-actions.c:69 -#, fuzzy msgid "_Generic" -msgstr "Keskus" +msgstr "_Yleiset" #: app/actions/plug-in-actions.c:70 -#, fuzzy msgid "Gla_ss Effects" -msgstr "/Suotimet/Lasiefektit" +msgstr "Lasiefektit" #: app/actions/plug-in-actions.c:71 -#, fuzzy msgid "_Light Effects" -msgstr "/Suotimet/Valoefektit" +msgstr "Valoefektit" #: app/actions/plug-in-actions.c:72 -#, fuzzy msgid "_Distorts" -msgstr "/Suotimet/Vääristykset" +msgstr "Vääristykset" #: app/actions/plug-in-actions.c:73 -#, fuzzy msgid "_Artistic" -msgstr "/Suotimet/Taiteelliset" +msgstr "Taiteelliset" #: app/actions/plug-in-actions.c:74 -#, fuzzy msgid "_Map" -msgstr "M" +msgstr "_Kuvaukset" #: app/actions/plug-in-actions.c:75 -#, fuzzy msgid "_Render" -msgstr "Keskus" +msgstr "Muodosta kuva" #: app/actions/plug-in-actions.c:76 msgid "_Clouds" -msgstr "" +msgstr "Pilvet" #: app/actions/plug-in-actions.c:77 -#, fuzzy msgid "_Nature" -msgstr "_Nimi:" +msgstr "_Luonto" #: app/actions/plug-in-actions.c:79 msgid "_Web" -msgstr "" +msgstr "_Web" #: app/actions/plug-in-actions.c:80 -#, fuzzy msgid "An_imation" -msgstr "/Suotimet/Animaatio" +msgstr "Animaatio" #: app/actions/plug-in-actions.c:81 -#, fuzzy msgid "C_ombine" -msgstr "/Suotimet/Yhdistä" +msgstr "Yhdistä" #: app/actions/plug-in-actions.c:82 -#, fuzzy msgid "To_ys" -msgstr "Työkalulaatikko" +msgstr "Lelut" #: app/actions/plug-in-actions.c:85 -#, fuzzy msgid "Reset all Filters..." -msgstr "/Nollaa k_aikki työkalujen asetukset" +msgstr "Nollaa k_aikkien suodatinten asetukset..." #: app/actions/plug-in-actions.c:93 app/actions/plug-in-actions.c:358 msgid "Repeat Last" @@ -2758,57 +2418,46 @@ msgstr "Näytä uudelleen \"%s\"" #: app/actions/plug-in-commands.c:196 -#, fuzzy msgid "Reset all Filters" -msgstr "Suodattimet" +msgstr "Nollaa kaikki suodattimet" #: app/actions/plug-in-commands.c:210 -#, fuzzy msgid "Do you really want to reset all filters to default values?" -msgstr "Haluatko nollata kaikki työkalujen asetukset oletusarvoihin?" +msgstr "Haluatko nollata kaikki suodatinten asetukset oletusarvoihin?" #: app/actions/qmask-actions.c:42 -#, fuzzy msgid "Quick Mask Menu" -msgstr "nopea maski" +msgstr "QMask menu" #: app/actions/qmask-actions.c:46 -#, fuzzy msgid "_Configure Color and Opacity..." -msgstr "/Aseta väri ja läpinäkyvyys" +msgstr "_Aseta väri ja läpinäkyvyys..." #: app/actions/qmask-actions.c:54 -#, fuzzy msgid "_Quick Mask Active" -msgstr "/QMask päällä" +msgstr "_QMask päällä" #: app/actions/qmask-actions.c:60 -#, fuzzy msgid "Toggle _Quick Mask" -msgstr "Aseta maski" +msgstr "Aseta _QMask" #: app/actions/qmask-actions.c:70 -#, fuzzy msgid "Mask _Selected Areas" -msgstr "/Maskaa valitut alueet" +msgstr "Maskaa _valitut alueet" #: app/actions/qmask-actions.c:75 -#, fuzzy msgid "Mask _Unselected Areas" -msgstr "/Maskaa valitsettomat alueet" +msgstr "Maskaa v_alitsettomat alueet" #: app/actions/qmask-commands.c:106 -#, fuzzy msgid "Quick Mask Attributes" msgstr "Muuta QMask-ominaisuuksia" #: app/actions/qmask-commands.c:109 -#, fuzzy msgid "Edit Quick Mask Attributes" msgstr "Muuta QMask-ominaisuuksia" #: app/actions/qmask-commands.c:111 -#, fuzzy msgid "Edit Quick Mask Color" msgstr "Muuta QMask-väriä" @@ -2817,104 +2466,84 @@ msgstr "Maskin peitto:" #: app/actions/select-actions.c:44 -#, fuzzy msgid "Selection Editor Menu" msgstr "Valintaeditori" #: app/actions/select-actions.c:47 -#, fuzzy msgid "_Select" -msgstr "/_Valitse" +msgstr "_Valitse" #: app/actions/select-actions.c:50 -#, fuzzy msgid "_All" -msgstr "Kaikki" +msgstr "K_aikki" #: app/actions/select-actions.c:51 -#, fuzzy msgid "Select all" msgstr "Valitse kaikki" #: app/actions/select-actions.c:56 -#, fuzzy msgid "_None" -msgstr "Ei mikään" +msgstr "_Ei mikään" #: app/actions/select-actions.c:57 -#, fuzzy msgid "Select none" msgstr "Tyhjennä valinta" #: app/actions/select-actions.c:62 -#, fuzzy msgid "_Invert" -msgstr "Käänteinen" +msgstr "K_äänteinen" #: app/actions/select-actions.c:63 -#, fuzzy msgid "Invert selection" msgstr "Käännä valinta" #: app/actions/select-actions.c:68 -#, fuzzy msgid "_Float" -msgstr "Kirjasin:" +msgstr "_Kelluva" #: app/actions/select-actions.c:73 -#, fuzzy msgid "Fea_ther..." -msgstr "/Valitse/Pehmennä..." +msgstr "Pyöristä..." #: app/actions/select-actions.c:78 -#, fuzzy msgid "_Sharpen" msgstr "Terävöitä" #: app/actions/select-actions.c:83 -#, fuzzy msgid "S_hrink..." -msgstr "Väännän..." +msgstr "Pienennä..." #: app/actions/select-actions.c:88 -#, fuzzy msgid "_Grow..." -msgstr "/Valitse/Laajenna..." +msgstr "Laajenna..." #: app/actions/select-actions.c:93 -#, fuzzy msgid "Bo_rder..." -msgstr "/Valitse/Reuna..." +msgstr "Reuna..." #: app/actions/select-actions.c:98 -#, fuzzy msgid "Save to _Channel" -msgstr "/Valitse/Tallenna kanavalle" +msgstr "Tallenna kanavalle" #: app/actions/select-actions.c:99 -#, fuzzy msgid "Save selection to channel" msgstr "Tallenna valinta kanavalle" #: app/actions/select-actions.c:104 -#, fuzzy msgid "_Stroke Selection..." -msgstr "Kopioi valinta" +msgstr "_Piirrä valinta..." #: app/actions/select-actions.c:105 -#, fuzzy msgid "Stroke selection..." -msgstr "Kopioi valinta" +msgstr "_Piirrä valinta..." #: app/actions/select-actions.c:110 -#, fuzzy msgid "_Stroke Selection" -msgstr "Kopioi valinta" +msgstr "Piirrä valinta" #: app/actions/select-actions.c:111 -#, fuzzy msgid "Stroke selection with last values" -msgstr "Pienennä valintaa" +msgstr "Piirrä valinta viimeillä arvoilla" #: app/actions/select-commands.c:136 app/core/gimpselection.c:201 msgid "Feather Selection" @@ -2956,56 +2585,51 @@ #: app/actions/vectors-commands.c:365 app/actions/vectors-commands.c:392 #: app/dialogs/stroke-dialog.c:275 msgid "There is no active layer or channel to stroke to." -msgstr "" +msgstr "Ei taso tai kanavaa jolle piirtää." #: app/actions/select-commands.c:280 app/core/gimpselection.c:184 msgid "Stroke Selection" -msgstr "" +msgstr "Piirrä valinta" #: app/actions/templates-actions.c:42 msgid "Templates Menu" msgstr "Teemavalikko" #: app/actions/templates-actions.c:46 -#, fuzzy msgid "_Create Image from Template..." -msgstr "/Luo kuva mallista..." +msgstr "Luo kuva mallista..." #: app/actions/templates-actions.c:47 msgid "Create a new image from the selected template" msgstr "Luo kuva valitusta mallista" #: app/actions/templates-actions.c:52 -#, fuzzy msgid "_New Template..." -msgstr "/Uusi malli..." +msgstr "Uusi malli..." #: app/actions/templates-actions.c:53 msgid "Create a new template" msgstr "Luo uusi malli" #: app/actions/templates-actions.c:58 -#, fuzzy msgid "D_uplicate Template..." -msgstr "/Tuplaa malli..." +msgstr "Tuplaa malli..." #: app/actions/templates-actions.c:59 msgid "Duplicate the selected template" msgstr "Kahdenna valittu malli" #: app/actions/templates-actions.c:64 -#, fuzzy msgid "_Edit Template..." -msgstr "/Muokkaa mallia..." +msgstr "Muokkaa mallia..." #: app/actions/templates-actions.c:65 msgid "Edit the selected template" msgstr "Muokkaa mallia" #: app/actions/templates-actions.c:70 -#, fuzzy msgid "_Delete Template" -msgstr "/Poista malli" +msgstr "Poista malli" #: app/actions/templates-actions.c:71 msgid "Delete the selected template" @@ -3038,7 +2662,6 @@ msgstr "Avaa" #: app/actions/text-editor-actions.c:45 -#, fuzzy msgid "Load text from file" msgstr "Lataa teksti tiedostosta" @@ -3047,25 +2670,22 @@ msgstr "Tyhjennä" #: app/actions/text-editor-actions.c:51 -#, fuzzy msgid "Clear all text" msgstr "Poista kaikki teksti" #: app/actions/text-editor-actions.c:59 msgid "LTR" -msgstr "" +msgstr "V->O" #: app/actions/text-editor-actions.c:60 app/text/text-enums.c:51 -#, fuzzy msgid "From left to right" msgstr "Vasemmalta oikealle" #: app/actions/text-editor-actions.c:65 msgid "RTL" -msgstr "" +msgstr "O->V" #: app/actions/text-editor-actions.c:66 app/text/text-enums.c:52 -#, fuzzy msgid "From right to left" msgstr "Oikealta vasemmalle" @@ -3074,7 +2694,7 @@ msgstr "Avaa tekstitiedosto (Unicode/UTF-8)" #: app/actions/text-editor-commands.c:132 app/config/gimpconfig-utils.c:552 -#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:393 +#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:396 #: app/core/gimpbrushgenerated.c:601 app/core/gimpbrushpipe.c:338 #: app/core/gimpgradient-load.c:63 app/core/gimppalette.c:360 #: app/core/gimppattern.c:328 app/tools/gimpimagemaptool.c:608 @@ -3088,49 +2708,40 @@ msgstr "Työkalujen asetukset" #: app/actions/tool-options-actions.c:60 -#, fuzzy msgid "_Save Options to" -msgstr "/_Tallenna asetukset" +msgstr "_Tallenna asetukset" #: app/actions/tool-options-actions.c:64 -#, fuzzy msgid "_Restore Options from" -msgstr "/_Palauta asetukset" +msgstr "_Palauta asetukset" #: app/actions/tool-options-actions.c:68 -#, fuzzy msgid "Re_name Saved Options" -msgstr "/_Uudelleennimeä asetukset" +msgstr "_Uudelleennimeä asetukset" #: app/actions/tool-options-actions.c:72 -#, fuzzy msgid "_Delete Saved Options" -msgstr "/Poi_sta tallennetut asetukset" +msgstr "Poi_sta tallennetut asetukset" #: app/actions/tool-options-actions.c:76 -#, fuzzy msgid "_New Entry..." -msgstr "/Uusi polku" +msgstr "Uusi kohta..." #: app/actions/tool-options-actions.c:81 -#, fuzzy msgid "R_eset Tool Options" -msgstr "/N_ollaa työkalujen asetukset" +msgstr "N_ollaa työkalujen asetukset" #: app/actions/tool-options-actions.c:82 -#, fuzzy msgid "Reset to default values" -msgstr "Poista valittu" +msgstr "Palauta oletusarvoihin" #: app/actions/tool-options-actions.c:87 -#, fuzzy msgid "Reset _all Tool Options..." -msgstr "/Nollaa k_aikki työkalujen asetukset" +msgstr "Nollaa k_aikki työkalujen asetukset..." #: app/actions/tool-options-actions.c:88 -#, fuzzy msgid "Reset all tool options" -msgstr "/Nollaa k_aikki työkalujen asetukset" +msgstr "Nollaa k_aikki työkalujen asetukset" #: app/actions/tool-options-commands.c:73 msgid "Save Tool Options" @@ -3163,245 +2774,196 @@ msgstr "Haluatko nollata kaikki työkalujen asetukset oletusarvoihin?" #: app/actions/tools-actions.c:47 -#, fuzzy msgid "Tools Menu" msgstr "Työkaluvalikko" #: app/actions/tools-actions.c:50 -#, fuzzy msgid "_Tools" -msgstr "/T_yökalut" +msgstr "T_yökalut" #: app/actions/tools-actions.c:51 -#, fuzzy msgid "_Selection Tools" -msgstr "/Työkalut/Valintatyökalut" +msgstr "Valintatyökalut" #: app/actions/tools-actions.c:52 -#, fuzzy msgid "_Paint Tools" msgstr "Maalaustyökalu:" #: app/actions/tools-actions.c:53 -#, fuzzy msgid "_Transform Tools" -msgstr "/Työkalut/Muuntotyökalut" +msgstr "Muuntotyökalut" #: app/actions/tools-actions.c:54 -#, fuzzy msgid "_Color Tools" -msgstr "/Työkalut/Värityökalut" +msgstr "Värityökalut" #: app/actions/tools-actions.c:57 -#, fuzzy msgid "_Reset Order & Visibility" -msgstr "Kohdan näkyvyys" +msgstr "Nollaa järjestys ja näkyvyys" #: app/actions/tools-actions.c:58 msgid "Reset tool order and visibility" -msgstr "" +msgstr "Nollaa työkalun järjestys ja näkyvyys" #: app/actions/tools-actions.c:66 -#, fuzzy msgid "_Show in Toolbox" -msgstr "Näytä työkaluvihjeet" +msgstr "Näytä työkaluvalikossa" #: app/actions/tools-actions.c:75 -#, fuzzy msgid "_By Color" -msgstr "Täysvärinen" +msgstr "Värin mukaan" #: app/actions/tools-actions.c:80 -#, fuzzy msgid "_Arbitrary Rotation..." -msgstr "/Taso/Muunnokset/Mielivaltainen kierto..." +msgstr "Mielivaltainen kierto..." #: app/actions/vectors-actions.c:44 msgid "Paths Menu" msgstr "Polut" #: app/actions/vectors-actions.c:48 -#, fuzzy msgid "Path _Tool" -msgstr "/Polkutyökalu" +msgstr "Polkutyökalu" #: app/actions/vectors-actions.c:53 -#, fuzzy msgid "_Edit Path Attributes..." -msgstr "/Muokkaa polun ominaisuuksia" +msgstr "Muokkaa polun ominaisuuksia..." #: app/actions/vectors-actions.c:54 -#, fuzzy msgid "Edit path attributes" msgstr "Muokkaa polun ominaisuuksia" #: app/actions/vectors-actions.c:59 -#, fuzzy msgid "_New Path..." -msgstr "/Uusi polku" +msgstr "Uusi polku..." #: app/actions/vectors-actions.c:60 -#, fuzzy msgid "New path..." -msgstr "/Uusi polku" +msgstr "Uusi polku..." #: app/actions/vectors-actions.c:65 -#, fuzzy msgid "_New Path" msgstr "Uusi polku" #: app/actions/vectors-actions.c:66 -#, fuzzy msgid "New path with last values" -msgstr "" -"Uusi kanava\n" -"%s Uusi kanava -dialogi" +msgstr "Uusi polku samoin asetuksin" #: app/actions/vectors-actions.c:71 -#, fuzzy msgid "D_uplicate Path" -msgstr "/Kahdenna polku" +msgstr "Kahdenna polku" #: app/actions/vectors-actions.c:72 -#, fuzzy msgid "Duplicate path" msgstr "Kahdenna polku" #: app/actions/vectors-actions.c:77 -#, fuzzy msgid "_Delete Path" -msgstr "/Poista polku" +msgstr "Poista polku" #: app/actions/vectors-actions.c:78 -#, fuzzy msgid "Delete path" msgstr "Poista polku" #: app/actions/vectors-actions.c:83 -#, fuzzy msgid "Merge _Visible Paths" -msgstr "/Yhdistä näkyvät polut" +msgstr "Yhdistä näkyvät polut" #: app/actions/vectors-actions.c:88 -#, fuzzy msgid "_Raise Path" -msgstr "/Nosta polku" +msgstr "Nosta polku" #: app/actions/vectors-actions.c:89 -#, fuzzy msgid "Raise path" msgstr "Nosta polku" #: app/actions/vectors-actions.c:94 -#, fuzzy msgid "Raise Path to _Top" msgstr "Nosta polku päällimmäiseksi." #: app/actions/vectors-actions.c:95 -#, fuzzy msgid "Raise path to top" msgstr "Nosta polku päällimmäiseksi." #: app/actions/vectors-actions.c:100 -#, fuzzy msgid "_Lower Path" -msgstr "/Laske polku" +msgstr "Laske polku" #: app/actions/vectors-actions.c:101 -#, fuzzy msgid "Lower path" msgstr "Laske polku" #: app/actions/vectors-actions.c:106 -#, fuzzy msgid "Lower Path to _Bottom" msgstr "Laske polku pohjimmaiseksi." #: app/actions/vectors-actions.c:107 -#, fuzzy msgid "Lower path to bottom" msgstr "Laske polku pohjimmaiseksi." #: app/actions/vectors-actions.c:112 -#, fuzzy msgid "Stro_ke Path..." -msgstr "/Piirrä polkua pitkin" +msgstr "Piirrä polkua pitkin..." #: app/actions/vectors-actions.c:113 -#, fuzzy msgid "Stroke path..." -msgstr "/Piirrä polkua pitkin" +msgstr "Piirrä polkua pitkin..." #: app/actions/vectors-actions.c:118 -#, fuzzy msgid "Stro_ke Path" -msgstr "/Piirrä polkua pitkin" +msgstr "Piirrä polku" #: app/actions/vectors-actions.c:119 msgid "Stroke path with last values" -msgstr "" +msgstr "Piirrä käyttäen edellisiä asetuksia" #: app/actions/vectors-actions.c:124 -#, fuzzy msgid "Co_py Path" -msgstr "/Kopioi polku" +msgstr "Kopioi polku" #: app/actions/vectors-actions.c:129 -#, fuzzy msgid "Paste Pat_h" -msgstr "/Liitä polku" +msgstr "Liitä polku" #: app/actions/vectors-actions.c:134 -#, fuzzy msgid "I_mport Path..." -msgstr "/Tuo polku tiedostosta..." +msgstr "Tuo polku tiedostosta..." #: app/actions/vectors-actions.c:139 -#, fuzzy msgid "E_xport Path..." -msgstr "/Vie polku tiedostoon..." +msgstr "Vie polku tiedostoon..." #: app/actions/vectors-actions.c:162 -#, fuzzy msgid "Path to Sele_ction" -msgstr "/Polku valinnaksi" +msgstr "Polku valinnaksi" #: app/actions/vectors-actions.c:163 app/tools/gimpvectortool.c:1893 -#, fuzzy msgid "Path to selection" msgstr "Polku valinnaksi" #: app/actions/vectors-actions.c:168 -#, fuzzy msgid "Fr_om Path" -msgstr "/Select/Polusta" +msgstr "P_olusta" #: app/actions/vectors-actions.c:194 -#, fuzzy msgid "Selecti_on to Path" -msgstr "/Valinta poluksi" +msgstr "Valinta poluksi" #: app/actions/vectors-actions.c:195 -#, fuzzy msgid "Selection to path" -msgstr "/Valinta poluksi" +msgstr "Valinta poluksi" #: app/actions/vectors-actions.c:200 -#, fuzzy msgid "To _Path" -msgstr "Siirrä polku" +msgstr "Poluksi" #: app/actions/vectors-actions.c:205 -#, fuzzy msgid "Selection to Path (_Advanced)" -msgstr "" -"Valinta poluksi\n" -"%s lisäasetukset" +msgstr "Valinta poluksi (_Lisäasetukset)" #: app/actions/vectors-actions.c:206 -#, fuzzy msgid "Advanced options" -msgstr "Tallennetut asetukset" +msgstr "Kehittyneet asetukset" #: app/actions/vectors-commands.c:140 msgid "Path Attributes" @@ -3427,85 +2989,69 @@ #: app/actions/vectors-commands.c:370 app/tools/gimpvectortool.c:1923 #: app/vectors/gimpvectors.c:239 msgid "Stroke Path" -msgstr "" +msgstr "Piirrä polku" #: app/actions/view-actions.c:63 -#, fuzzy msgid "_View" -msgstr "/_Näytä" +msgstr "_Näytä" #: app/actions/view-actions.c:64 -#, fuzzy msgid "_Zoom" msgstr "Suurenna" #: app/actions/view-actions.c:65 -#, fuzzy msgid "_Padding Color" -msgstr "Oma laajennosväri:" +msgstr "Oma laajennosväri" #: app/actions/view-actions.c:73 -#, fuzzy msgid "_Close" -msgstr "Kloonaus" +msgstr "_Sulje" #: app/actions/view-actions.c:78 -#, fuzzy msgid "_Fit Image in Window" -msgstr "Kuvaikkunat" +msgstr "_Laajenna ikkunaan" #: app/actions/view-actions.c:79 -#, fuzzy msgid "Fit image in window" -msgstr "Kuvaikkunat" +msgstr "Suhteuta ikkunan kokoon" #: app/actions/view-actions.c:84 -#, fuzzy msgid "Fit Image to Window" msgstr "Laajenna ikkunaan" #: app/actions/view-actions.c:85 -#, fuzzy msgid "Fit image to window" msgstr "Laajenna ikkunaan" #: app/actions/view-actions.c:90 -#, fuzzy msgid "_Info Window" msgstr "Infoikkuna" #: app/actions/view-actions.c:95 -#, fuzzy msgid "Na_vigation Window" -msgstr "/Näytä/Navigointi" +msgstr "Navigointi" #: app/actions/view-actions.c:100 -#, fuzzy msgid "Display _Filters..." -msgstr "/Näytä/Näyttösuotimet..." +msgstr "Näyttösuotimet..." #: app/actions/view-actions.c:105 -#, fuzzy msgid "Shrink _Wrap" msgstr "Pienennä ikkuna" #: app/actions/view-actions.c:106 -#, fuzzy msgid "Shrink wrap" msgstr "Pienennä ikkuna" #: app/actions/view-actions.c:111 -#, fuzzy msgid "Move to Screen..." -msgstr "/Siirrä näytölle..." +msgstr "Siirrä näytölle..." #: app/actions/view-actions.c:119 -#, fuzzy msgid "_Dot for Dot" -msgstr "/Näytä/Piste pisteeltä" +msgstr "Piste pisteeltä" #: app/actions/view-actions.c:125 -#, fuzzy msgid "Show _Selection" msgstr "Näytä valinta" @@ -3518,26 +3064,22 @@ msgstr "Näytä apulinjat" #: app/actions/view-actions.c:143 -#, fuzzy msgid "Sn_ap to Guides" -msgstr "/Näytä/Tartu apulinjoihin" +msgstr "Tartu apulinjoihin" #: app/actions/view-actions.c:149 -#, fuzzy msgid "S_how Grid" msgstr "Näytä apuviivat" #: app/actions/view-actions.c:155 -#, fuzzy msgid "Sna_p to Grid" -msgstr "/Näytä/Naksahda apuviivoihin" +msgstr "Naksahda apuviivoihin" #: app/actions/view-actions.c:161 msgid "Show _Menubar" msgstr "Näytä menupalkki" #: app/actions/view-actions.c:167 -#, fuzzy msgid "Show R_ulers" msgstr "Näytä viivottimet" @@ -3550,88 +3092,72 @@ msgstr "Näytä tilapalkki" #: app/actions/view-actions.c:185 -#, fuzzy msgid "Fullscr_een" -msgstr "/Näytä/Kokoruutu" +msgstr "Kokoruutu" #: app/actions/view-actions.c:234 -#, fuzzy msgid "16:1 (1600%)" -msgstr "/Näytä/Suurennoskerroin/16:1" +msgstr "16:1 (1600%)" #: app/actions/view-actions.c:239 -#, fuzzy msgid "8:1 (800%)" -msgstr "/Näytä/Suurennoskerroin/8:1" +msgstr "8:1 (800%)" #: app/actions/view-actions.c:244 -#, fuzzy msgid "4:1 (400%)" -msgstr "/Näytä/Suurennoskerroin/4:1" +msgstr "4:1 (400%)" #: app/actions/view-actions.c:249 -#, fuzzy msgid "2:1 (200%)" -msgstr "/Näytä/Suurennoskerroin/2:1" +msgstr "2:1 (200%)" #: app/actions/view-actions.c:254 -#, fuzzy msgid "1:1 (100%)" -msgstr "/Näytä/Suurennoskerroin/1:1" +msgstr "1:1 (100%)" #: app/actions/view-actions.c:255 msgid "Zoom 1:1" msgstr "Suhde 1:1" #: app/actions/view-actions.c:260 -#, fuzzy msgid "1:2 (50%)" -msgstr "/Näytä/Suurennoskerroin/1:2" +msgstr "1:2 (50%)" #: app/actions/view-actions.c:265 -#, fuzzy msgid "1:4 (25%)" -msgstr "/Näytä/Suurennoskerroin/1:2" +msgstr "1:4 (25%)" #: app/actions/view-actions.c:270 -#, fuzzy msgid "1:8 (12.5%)" -msgstr "/Näytä/Suurennoskerroin/1:1" +msgstr "1:8 (12.5%)" #: app/actions/view-actions.c:275 -#, fuzzy msgid "1:16 (6.25%)" -msgstr "/Näytä/Suurennoskerroin/1:16" +msgstr "1:16 (6.25%)" #: app/actions/view-actions.c:280 -#, fuzzy msgid "O_ther..." -msgstr "/Valitse/Pehmennä..." +msgstr "Muu..." #: app/actions/view-actions.c:288 -#, fuzzy msgid "From _Theme" -msgstr "/Teemasta" +msgstr "Teemasta" #: app/actions/view-actions.c:293 -#, fuzzy msgid "_Light Check Color" -msgstr "/Vaalea ruudutus" +msgstr "Vaalea ruudutus" #: app/actions/view-actions.c:298 -#, fuzzy msgid "_Dark Check Color" -msgstr "/Tumma ruudutus" +msgstr "Tumma ruudutus" #: app/actions/view-actions.c:303 -#, fuzzy msgid "Select _Custom Color..." -msgstr "/Valitse oma väri" +msgstr "Valitse oma väri..." #: app/actions/view-actions.c:308 -#, fuzzy msgid "As in _Preferences" -msgstr "/Kuten asetuksissa" +msgstr "Kuten asetuksissa" #: app/actions/view-actions.c:592 #, c-format @@ -3648,7 +3174,6 @@ msgstr "Kankaan täyttöväri" #: app/actions/view-commands.c:574 -#, fuzzy msgid "Set Custom Canvas Padding Color" msgstr "Kankaan täyttöväri" @@ -3721,6 +3246,10 @@ "using different filenames, restart the Gimp and check the location of the " "swap directory in your Preferences." msgstr "" +"Ei voinut avata sivutustiedostoa. Gimpin käytettävissä oleva muisti on " +"loppunut ja sivutusta ei voi käyttää. Osa kuvastasi voi korruptoitua. " +"Tallenna työsi uudella nimellä, käynnistä Gimp uudelleen ja tarkista " +"sivutustiedoston sijainti asetuksista." #: app/config/gimpconfig-deserialize.c:100 #, c-format @@ -3744,7 +3273,7 @@ #: app/config/gimpconfig-deserialize.c:541 #, c-format msgid "invalid value '%s' for token %s" -msgstr "kelvoton arvo \"%s\" symbolille %s" +msgstr "väärä arvo \"%s\" symbolille %s" #: app/config/gimpconfig-deserialize.c:556 #, c-format @@ -3821,7 +3350,7 @@ #: app/config/gimpconfigwriter.c:654 #, c-format msgid "Could not create '%s': %s" -msgstr "Tiedostoa \"%s\" ei voinut luoada: %s" +msgstr "Tiedostoa \"%s\" ei voinut luoda: %s" #: app/config/gimprc.c:335 app/config/gimprc.c:348 #, c-format @@ -3855,16 +3384,16 @@ msgid "" "Sets the canvas padding color used if the padding mode is set to custom " "color." -msgstr "Asettaa kankaan täyttövärin jos täyttötavan asetus on mukautettu väri." +msgstr "" +"Asettaa piirtoalueen täyttövärin jos täyttötavan asetus on mukautettu väri." #: app/config/gimprc-blurbs.h:30 msgid "Ask for confirmation before closing an image without saving." msgstr "Kysy vahvistusta ennen kuin kuva suljetaan tallettamatta." #: app/config/gimprc-blurbs.h:33 -#, fuzzy msgid "Sets the pixel format of cursors the GIMP will use." -msgstr "Asettaa GIMP:n käyttämän kohdistimen tilan." +msgstr "Asettaa GIMP:n käyttämän kohdistimen pikseliformaatin." #: app/config/gimprc-blurbs.h:36 msgid "Sets the mode of cursor the GIMP will use." @@ -3875,23 +3404,22 @@ "Context-dependent cursors are cool. They are enabled by default. However, " "they require overhead that you may want to do without." msgstr "" -"Yhteysriippuvat kohdistimet ovat viileitä. Ne ovat oletusarvoisesti " -"käytössä. Niistä aiheutuu kuitenkin yleisrasitetta jota ehkä haluat välttää." +"Yhteysriippuvat kohdistimet ovat oletusarvoisesti käytössä. Niistä aiheutuu " +"kuitenkin kuormaa jota voit haluta välttää." #: app/config/gimprc-blurbs.h:47 msgid "" "When enabled, this will ensure that each pixel of an image gets mapped to a " "pixel on the screen." msgstr "" -"Kun käytössä, kuvautuu jokainen kuvan kuvapiste varmasti ruudun " -"kuvapisteeseen." +"Kun käytössä, varmistutaan että jokainen kuvan kuvapiste vastaa ruudun " +"kuvapistettä." #: app/config/gimprc-blurbs.h:73 msgid "This is the distance in pixels where Guide and Grid snapping activates." msgstr "Matka jonka päästä apulinjat ja apuviivat tarttuvat." #: app/config/gimprc-blurbs.h:77 -#, fuzzy msgid "" "Tools such as fuzzy-select and bucket fill find regions based on a seed-fill " "algorithm. The seed fill starts at the initially selected pixel and " @@ -3899,10 +3427,10 @@ "the original is greater than a specified threshold. This value represents " "the default threshold." msgstr "" -"Sumean valinnan ja kaatotäytön kaltaiset työkalut löytävät alueita " -"algoritmilla nimeltä siementäyttö. Siementäyttö alkaa valitusta " -"kuvapisteestä ja etenee kaikkiin suuntiin kunnes kuvapisteen väri eroaa " -"siitä kynnysarvoa enemmän. Tämä on kynnyksen oletusarvo." +"Sumean valinnan ja täytön kaltaiset työkalut löytävät alueita algoritmilla " +"nimeltä siementäyttö. Siementäyttö alkaa valitusta kuvapisteestä ja etenee " +"kaikkiin suuntiin kunnes kuvapisteen väri eroaa siitä kynnysarvoa enemmän. " +"Tämä on kynnyksen oletusarvo." #: app/config/gimprc-blurbs.h:90 msgid "" @@ -3946,15 +3474,14 @@ "is opened, otherwise it will be displayed with a scale of 1:1." msgstr "" "Kun käytössä, varmistetaan koko kuvan olevan näkyvissä kun tiedosto on " -"avattu, muuten se näytetään mittakaavalla 1:1." +"avattu, muuten käytetään mittakaavaa 1:1." #: app/config/gimprc-blurbs.h:167 -#, fuzzy msgid "" "Install a private colormap; might be useful on 8-bit (256 colors) displays." msgstr "" -"Asenna yksityinen värikartta; saattaa olla hyödyllinen pseudoväriä " -"käyttävissä näyttötiloissa. " +"Asenna yksityinen värikartta; saattaa olla hyödyllinen pseudovärejä (256) " +"käyttävissä näyttötiloissa." #: app/config/gimprc-blurbs.h:170 msgid "" @@ -3982,13 +3509,12 @@ "GIMP will warn the user if an attempt is made to create an image that would " "take more memory than the size specified here." msgstr "" -"GIMP varkoittaa käyttäjää mikäli yritetään luoda kuva joka veisi enemmän " +"GIMP varoittaa käyttäjää mikäli yritetään luoda kuva joka veisi enemmän " "muistia kuin tässä määritelty koko." #: app/config/gimprc-blurbs.h:185 -#, fuzzy msgid "When enabled, GIMP will show mnemonics in menus." -msgstr "Kun käytössä, GIMP käyttää eri tietoikkunaa jokaiselle kuvanäkymälle." +msgstr "Kun käytössä, Gimp näyttää pikanäppäimet valikoissa." #: app/config/gimprc-blurbs.h:188 msgid "" @@ -4004,6 +3530,8 @@ "forces the X server to be queried for both horizontal and vertical " "resolution information." msgstr "" +"Asettaa näytön vaakatarkkuuden, pistettä tuumalla. Jos asetus on nolla, " +"kysytään arvoa X:ltä sekä vaaka- että pystytarkkuudelle." #: app/config/gimprc-blurbs.h:204 msgid "" @@ -4011,6 +3539,8 @@ "forces the X server to be queried for both horizontal and vertical " "resolution information." msgstr "" +"Asettaa näytön pystytarkkuuden, pistettä tuumalla. Jos asetus on nolla, " +"kysytään arvoa X:ltä sekä vaaka- että pystytarkkuudelle.<" #: app/config/gimprc-blurbs.h:209 msgid "" @@ -4018,6 +3548,8 @@ "path is being picked. This used to be the default behaviour in older " "versions." msgstr "" +"Jos päällä, siirtotyökalu muuttaa aktiivista tasoa tai polkua, kun taso tai " +"polku valitaan. Tämä on vanhempien versioiden käyttäytyminen." #: app/config/gimprc-blurbs.h:214 msgid "" @@ -4054,12 +3586,11 @@ "the layers and channels dialog are nice to have but they can slow things " "down when working with large images." msgstr "" -"Määrää milloin GIMP:n pitäisi luoda tasojen ja kanavien esikatselunäkymiä. " -"Esikatselunäkymät tasojen ja kanavien valintaikkunassa ovat mukavia mutta ne " -"saattavat hidastaa käsiteltäessä isoja kuvia." +"Kun käytössä, GIMP luo tasojen ja kanavien esikatselunäkymät. " +"Esikatselunäkymät tasojen ja kanavien valintaikkunassa ovat hyödyllisiä " +"mutta ne saattavat hidastaa käsiteltäessä isoja kuvia." #: app/config/gimprc-blurbs.h:250 -#, fuzzy msgid "" "Sets the preview size used for layers and channel previews in newly created " "dialogs." @@ -4091,7 +3622,7 @@ msgid "" "Remember the current tool, pattern, color, and brush across GIMP sessions." msgstr "" -"Muista käytetty työkalu, kuvio, väri ja sivellin GIMP-istuntojen välillä. " +"Muista käytetty työkalu, kuvio, väri ja sivellin GIMP-istuntojen välillä." #: app/config/gimprc-blurbs.h:269 msgid "Save the positions and sizes of the main dialogs when the GIMP exits." @@ -4112,14 +3643,15 @@ "related help page. Without this button, the help page can still be reached " "by pressing F1." msgstr "" +"Jos päällä, kyselyikkunoissa näkyy apu-painike, joka avaa avustustoiminnon. " +"Ilman tätä avustuksen saa näkyviin F1-näppäimellä." #: app/config/gimprc-blurbs.h:284 -#, fuzzy msgid "" "When enabled, the cursor will be shown over the image while using a paint " "tool." msgstr "" -"Jos asetettu, GIMP ei tallenna jos kuva on muuttamaton avauksen jälkeen" +"Kun käytössä, osoitin näytetään kuvan päällä käytettäessä maalaustyökalua." #: app/config/gimprc-blurbs.h:288 msgid "" @@ -4185,7 +3717,7 @@ #: app/config/gimprc-blurbs.h:323 msgid "Enable to display tooltips." -msgstr "Näytä työkaluvihjeet" +msgstr "Näytä työkaluvihjeet." #: app/config/gimprc-blurbs.h:326 msgid "" @@ -4206,9 +3738,9 @@ "reasons, it may be desirable to put your swap file in \"/tmp\"." msgstr "" "Sivutustiedoston sijainti. GIMP käyttää muistia lohkoissa ja sivuttaa " -"käyttämättömät lohkot tiedostoon ladakseen ne taas käyttöön.\n" -"Sivutustiedosto voi kasvaa isoksi jos GIMP:llä muokataan suuria kuvia. " -"Nopeuden optimoimiseksi sivutustiedostoa ei saa sijoittaa verkkolevylle tai " +"käyttämättömät lohkot tiedostoon ladakseen ne taas käyttöön. Sivutustiedosto " +"voi kasvaa isoksi jos GIMP:llä muokataan suuria kuvia. Nopeuden " +"optimoimiseksi sivutustiedostoa ei saa sijoittaa verkkolevylle tai " "muistipohjaiseen tiedostojärjestelmään. Yleensä on paras sijoittaa " "sivutustiedosto työaseman levylle /var/tmp tai /tmp -hakemistoon." @@ -4244,7 +3776,6 @@ "hakemistoa joka on jaettu muiden käyttäjien kanssa." #: app/config/gimprc-blurbs.h:365 -#, fuzzy msgid "" "Sets the size of the thumbnail shown in the Open dialog. Note that GIMP can " "not create thumbnails if layer previews are disabled." @@ -4257,6 +3788,8 @@ "The thumbnail in the Open dialog will be automatically updated if the file " "being previewed is smaller than the size set here." msgstr "" +"Avausikkunan esikatselu päivitetään automaattisesti, jos tiedosto on " +"pienempi kuin asetettu koko." #: app/config/gimprc-blurbs.h:373 msgid "" @@ -4291,7 +3824,7 @@ "When enabled, the GIMP will not save if the image is unchanged since opening " "it." msgstr "" -"Jos asetettu, GIMP ei tallenna jos kuva on muuttamaton avauksen jälkeen" +"Jos asetettu, GIMP ei tallenna jos kuva on muuttamaton avauksen jälkeen." #: app/config/gimprc-blurbs.h:398 msgid "" @@ -4327,8 +3860,8 @@ "contains '%s' it will be replaced with the URL, else the URL will be " "appended to the command with a space separating the two." msgstr "" -"Määritä käytettävä ulkoinen Web-selain.\n" -"'%s' komennossa korvataan URL:illa, muutoin URL lisätään komennon perään." +"Määritä käytettävä ulkoinen Web-selain. '%s' komennossa korvataan URL:illa, " +"muutoin URL lisätään komennon perään." #: app/config/gimpscanner.c:220 msgid "invalid UTF-8 string" @@ -4337,36 +3870,31 @@ #: app/config/gimpscanner.c:516 #, c-format msgid "Error while parsing '%s' in line %d: %s" -msgstr "Virhe %s tiedoston avauksessa rivillä %d: %s" +msgstr "Virhe jäsennettäessä tiedostoa '%s' rivillä %d: %s" #: app/core/core-enums.c:27 -#, fuzzy msgid "_White (full opacity)" -msgstr "Valkoinen (täysin peittävä)" +msgstr "_Valkoinen (täysin peittävä)" #: app/core/core-enums.c:28 -#, fuzzy msgid "_Black (full transparency)" -msgstr "Musta (täysin läpinäkyvä)" +msgstr "_Musta (täysin läpinäkyvä)" #: app/core/core-enums.c:29 -#, fuzzy msgid "Layer's _alpha channel" -msgstr "Tason alfakanava" +msgstr "Tason _alfakanava" #: app/core/core-enums.c:30 -#, fuzzy msgid "_Transfer layer's alpha channel" -msgstr "Siirtotason alfakanava" +msgstr "_Siirrä tason alfakanava" #: app/core/core-enums.c:31 msgid "_Selection" -msgstr "Valinta" +msgstr "_Valinta" #: app/core/core-enums.c:32 -#, fuzzy msgid "_Grayscale copy of layer" -msgstr "Harmaasävy kopio tasosta" +msgstr "_Harmaasävy kopio tasosta" #: app/core/core-enums.c:61 app/core/gimp-gradients.c:70 msgid "FG to BG (RGB)" @@ -4377,27 +3905,22 @@ msgstr "Edustaväristä taustaväriin (HSV)" #: app/core/core-enums.c:63 -#, fuzzy msgid "FG to transparent" msgstr "Edustaväristä läpinäkyvään" #: app/core/core-enums.c:64 -#, fuzzy msgid "Custom gradient" -msgstr "Räätälöity väriliukuma" +msgstr "Oma väriliuku" #: app/core/core-enums.c:92 -#, fuzzy msgid "FG color fill" msgstr "Täyttö edustavärillä" #: app/core/core-enums.c:93 -#, fuzzy msgid "BG color fill" msgstr "Täyttö taustavärillä" #: app/core/core-enums.c:94 -#, fuzzy msgid "Pattern fill" msgstr "Täyttö kuviolla" @@ -4431,47 +3954,38 @@ msgstr "Ei mikään" #: app/core/core-enums.c:220 -#, fuzzy msgid "Floyd-Steinberg (normal)" -msgstr "Tavallinen Floyd-Steinberg pehmennys" +msgstr "Tavallinen Floyd-Steinberg sekoitus" #: app/core/core-enums.c:221 -#, fuzzy msgid "Floyd-Steinberg (reduced color bleeding)" -msgstr "Floyd-Steinberg pehmennys vähennetyllä värivuodolla" +msgstr "Floyd-Steinberg sekoitus vähennetyllä värivuodolla" #: app/core/core-enums.c:222 -#, fuzzy msgid "Positioned" -msgstr "Sijainti: %.06f" +msgstr "Sijoitettu" #: app/core/core-enums.c:251 -#, fuzzy msgid "Generate optimum palette" -msgstr "Muodosta optimaalinen paletti:" +msgstr "Muodosta optimaalinen paletti" #: app/core/core-enums.c:252 -#, fuzzy msgid "Use web-optimized palette" msgstr "Käytä WWW-optimoitua palettia" #: app/core/core-enums.c:253 -#, fuzzy msgid "Use black and white (1-bit) palette" msgstr "Käytä mustavalkoista palettia" #: app/core/core-enums.c:254 -#, fuzzy msgid "Use custom palette" -msgstr "Käytä räätälöityä palettia:" +msgstr "Käytä omaa palettia" #: app/core/core-enums.c:329 -#, fuzzy msgid "Foreground color" msgstr "Edustaväri" #: app/core/core-enums.c:330 -#, fuzzy msgid "Background color" msgstr "Taustaväri" @@ -4490,7 +4004,6 @@ msgstr "Kuviot" #: app/core/core-enums.c:371 -#, fuzzy msgid "Bi-linear" msgstr "Bilineaarinen" @@ -4504,39 +4017,32 @@ msgstr "Neliömäinen" #: app/core/core-enums.c:374 -#, fuzzy msgid "Conical (sym)" msgstr "Kartiomainen (symmetrinen)" #: app/core/core-enums.c:375 -#, fuzzy msgid "Conical (asym)" msgstr "Kartiomainen (epäsymmetrinen)" #: app/core/core-enums.c:376 -#, fuzzy msgid "Shaped (angular)" msgstr "Muotopurske (kulma)" #: app/core/core-enums.c:377 -#, fuzzy msgid "Shaped (spherical)" msgstr "Muotopurske (pallo)" #: app/core/core-enums.c:378 -#, fuzzy msgid "Shaped (dimpled)" msgstr "Muotopurske (näppyläinen)" #: app/core/core-enums.c:379 -#, fuzzy msgid "Spiral (cw)" msgstr "Spiraali (myötäpäivään)" #: app/core/core-enums.c:380 -#, fuzzy msgid "Spiral (ccw)" -msgstr "Spiraali (myötäpäivään)" +msgstr "Spiraali (vastapäivään)" #: app/core/core-enums.c:410 msgid "Intersections (dots)" @@ -4551,7 +4057,6 @@ msgstr "Katkoviiva" #: app/core/core-enums.c:413 -#, fuzzy msgid "Double dashed" msgstr "Tuplakatkoviiva" @@ -4560,13 +4065,12 @@ msgstr "Jatkuva" #: app/core/core-enums.c:441 -#, fuzzy msgid "Stroke line" -msgstr "Kanava" +msgstr "Piirtoasetukset" #: app/core/core-enums.c:442 msgid "Stroke with a paint tool" -msgstr "" +msgstr "Piirrä käyttäen maalaustyökalua" #: app/core/core-enums.c:498 msgid "Miter" @@ -4586,39 +4090,33 @@ #: app/core/core-enums.c:566 app/dialogs/preferences-dialog.c:1804 msgid "Custom" -msgstr "Räätälöity" +msgstr "Oma" #: app/core/core-enums.c:567 msgid "Line" msgstr "Viiva" #: app/core/core-enums.c:568 -#, fuzzy msgid "Long dashes" msgstr "Pitkät viivat" #: app/core/core-enums.c:569 -#, fuzzy msgid "Medium dashes" msgstr "Keskipituiset viivat" #: app/core/core-enums.c:570 -#, fuzzy msgid "Short dashes" msgstr "Lyhyet viivat" #: app/core/core-enums.c:571 -#, fuzzy msgid "Sparse dots" msgstr "Harvat pisteet" #: app/core/core-enums.c:572 -#, fuzzy msgid "Normal dots" msgstr "Normaalit pisteet" #: app/core/core-enums.c:573 -#, fuzzy msgid "Dense dots" msgstr "Tiheät pisteet" @@ -4627,12 +4125,10 @@ msgstr "Pisteitys" #: app/core/core-enums.c:575 -#, fuzzy msgid "Dash dot..." msgstr "Piste viiva..." #: app/core/core-enums.c:576 -#, fuzzy msgid "Dash dot dot..." msgstr "Viiva piste piste..." @@ -4645,17 +4141,16 @@ msgstr "" #: app/core/core-enums.c:606 -#, fuzzy msgid "Image file" -msgstr "Kuvan koko" +msgstr "Kuvatiedosto" #: app/core/core-enums.c:634 msgid "Circle" -msgstr "" +msgstr "Ympyrä" #: app/core/core-enums.c:636 msgid "Diamond" -msgstr "" +msgstr "Timantti" #: app/core/core-enums.c:664 app/dialogs/preferences-dialog.c:1950 msgid "Horizontal" @@ -4674,9 +4169,8 @@ msgstr "Minimaalinen" #: app/core/core-enums.c:731 -#, fuzzy msgid "Very small" -msgstr "Pieni" +msgstr "Hyvin pieni" #: app/core/core-enums.c:732 msgid "Small" @@ -4691,7 +4185,6 @@ msgstr "Iso" #: app/core/core-enums.c:735 -#, fuzzy msgid "Very large" msgstr "Hyvin suuri" @@ -4708,17 +4201,14 @@ msgstr "Giganttinen" #: app/core/core-enums.c:767 -#, fuzzy msgid "Sawtooth wave" msgstr "Sahalaita-aalto" #: app/core/core-enums.c:768 -#, fuzzy msgid "Triangular wave" msgstr "Kolmioaalto" #: app/core/core-enums.c:830 -#, fuzzy msgid "No thumbnails" msgstr "Ei esikatselukuvia" @@ -4731,63 +4221,52 @@ msgstr "Suuri (256x256)" #: app/core/core-enums.c:859 -#, fuzzy msgid "Forward (traditional)" -msgstr "Normaali" +msgstr "Normaali (perinteinen)" #: app/core/core-enums.c:860 -#, fuzzy msgid "Backward (corrective)" -msgstr "Käänteinen" +msgstr "Käänteinen (korjaava)" #: app/core/core-enums.c:1028 msgid "<>" msgstr "<>" #: app/core/core-enums.c:1029 -#, fuzzy msgid "Scale image" msgstr "Skaalaa kuvaa" #: app/core/core-enums.c:1030 -#, fuzzy msgid "Resize image" msgstr "Muuta kokoa" #: app/core/core-enums.c:1031 -#, fuzzy msgid "Flip image" msgstr "Peilaa kuva" #: app/core/core-enums.c:1032 -#, fuzzy msgid "Rotate image" msgstr "Käännä kuvaa" #: app/core/core-enums.c:1033 -#, fuzzy msgid "Crop image" msgstr "Rajaa kuva" #: app/core/core-enums.c:1034 -#, fuzzy msgid "Convert image" msgstr "Muunna kuva" #: app/core/core-enums.c:1035 -#, fuzzy msgid "Merge layers" msgstr "Yhdistä tasot" #: app/core/core-enums.c:1036 -#, fuzzy msgid "Merge vectors" msgstr "Yhdistä vektorit" #: app/core/core-enums.c:1037 app/core/gimpchannel.c:383 -#, fuzzy msgid "Quick Mask" -msgstr "Nopea maski" +msgstr "QMask" #: app/core/core-enums.c:1038 app/core/core-enums.c:1067 #: app/core/gimpimage-grid.c:59 app/dialogs/grid-dialog.c:144 @@ -4800,74 +4279,60 @@ msgstr "Apulinja" #: app/core/core-enums.c:1041 app/core/core-enums.c:1071 -#, fuzzy msgid "Drawable mod" msgstr "Piirtotason muutos" #: app/core/core-enums.c:1042 app/core/core-enums.c:1072 -#, fuzzy msgid "Selection mask" msgstr "Valintamaski" #: app/core/core-enums.c:1043 app/core/core-enums.c:1075 -#, fuzzy msgid "Item visibility" msgstr "Kohdan näkyvyys" #: app/core/core-enums.c:1044 -#, fuzzy msgid "Linked item" -msgstr "linkitetty taso" +msgstr "linkitetty kohta" #: app/core/core-enums.c:1045 -#, fuzzy msgid "Item properties" msgstr "Kohdan ominaisuudet" #: app/core/core-enums.c:1046 app/core/core-enums.c:1074 -#, fuzzy msgid "Move item" -msgstr "Siirrä: " +msgstr "Siirrä" #: app/core/core-enums.c:1047 -#, fuzzy msgid "Scale item" -msgstr "Skaalaa kuvaa" +msgstr "Skaalaa" #: app/core/core-enums.c:1048 -#, fuzzy msgid "Resize item" msgstr "Muuta kokoa" #: app/core/core-enums.c:1049 app/core/core-enums.c:1079 -#, fuzzy msgid "Add layer mask" -msgstr "tason maskin lisäys" +msgstr "Tason maskin lisäys" #: app/core/core-enums.c:1050 -#, fuzzy msgid "Apply layer mask" msgstr "sovella tason maskia" #: app/core/core-enums.c:1051 -#, fuzzy msgid "Floating selection to layer" -msgstr "Kelluva valinta" +msgstr "Kelluva valinta tasoksi" #: app/core/core-enums.c:1052 -#, fuzzy msgid "Float selection" msgstr "Kelluva valinta" #: app/core/core-enums.c:1053 -#, fuzzy msgid "Anchor floating selection" -msgstr "Kelluva valinta" +msgstr "Ankkuroi kelluva valinta" #: app/core/core-enums.c:1054 -#, fuzzy msgid "Remove floating selection" -msgstr "Kelluva valinta" +msgstr "Poista kelluva valinta" #: app/core/core-enums.c:1055 app/core/gimp-edit.c:267 msgid "Paste" @@ -4893,17 +4358,14 @@ msgstr "piirto" #: app/core/core-enums.c:1060 app/core/core-enums.c:1100 -#, fuzzy msgid "Attach parasite" msgstr "Lisää kenttä" #: app/core/core-enums.c:1061 app/core/core-enums.c:1101 -#, fuzzy msgid "Remove parasite" msgstr "Poista kenttä" #: app/core/core-enums.c:1062 -#, fuzzy msgid "Import paths" msgstr "Tuo polku" @@ -4912,109 +4374,88 @@ msgstr "Liitännäiset" #: app/core/core-enums.c:1064 -#, fuzzy msgid "Image type" msgstr "Kuvalaji" #: app/core/core-enums.c:1065 -#, fuzzy msgid "Image size" msgstr "Kuvan koko" #: app/core/core-enums.c:1066 -#, fuzzy msgid "Resolution change" msgstr "tarkkuuden vaihto" #: app/core/core-enums.c:1069 -#, fuzzy msgid "Change indexed palette" msgstr "Muuta indeksoitua palettia" #: app/core/core-enums.c:1073 -#, fuzzy msgid "Rename item" msgstr "Uudelleennimeä" #: app/core/core-enums.c:1076 -#, fuzzy msgid "Set item linked" msgstr "Aseta linkitetyksi" #: app/core/core-enums.c:1077 -#, fuzzy msgid "New layer" -msgstr "uusi taso" +msgstr "Uusi taso" #: app/core/core-enums.c:1080 -#, fuzzy msgid "Delete layer mask" -msgstr "tason maskin poisto" +msgstr "Poista tason maski" #: app/core/core-enums.c:1081 -#, fuzzy msgid "Reposition layer" msgstr "Siirrä tasoa" #: app/core/core-enums.c:1082 -#, fuzzy msgid "Set layer mode" msgstr "Aseta tason tila" #: app/core/core-enums.c:1083 -#, fuzzy msgid "Set layer opacity" msgstr "Aseta tason peitto" #: app/core/core-enums.c:1084 -#, fuzzy msgid "Set preserve trans" -msgstr "Säilytä läpinäkyvyys" +msgstr "" #: app/core/core-enums.c:1086 -#, fuzzy msgid "Text modified" -msgstr "Ainoastaan jos muokattu" +msgstr "Tekstiä muutettu" #: app/core/core-enums.c:1087 -#, fuzzy msgid "New channel" msgstr "Uusi kanava" #: app/core/core-enums.c:1089 -#, fuzzy msgid "Reposition channel" -msgstr "Nosta kanavaa" +msgstr "Siirrä kanavaa" #: app/core/core-enums.c:1090 -#, fuzzy msgid "Channel color" msgstr "Kanavan väri" #: app/core/core-enums.c:1091 -#, fuzzy msgid "New vectors" msgstr "Uusi vektori" #: app/core/core-enums.c:1092 -#, fuzzy msgid "Delete vectors" msgstr "Poista vektorit" #: app/core/core-enums.c:1093 -#, fuzzy msgid "Vectors mod" msgstr "Muuta vektoreita" #: app/core/core-enums.c:1094 -#, fuzzy msgid "Reposition vectors" msgstr "Järjestä vektorit" #: app/core/core-enums.c:1095 -#, fuzzy msgid "FS to layer" -msgstr "Yksi taso" +msgstr "Kelluva valinta tasoksi" #: app/core/core-enums.c:1096 msgid "FS rigor" @@ -5030,9 +4471,7 @@ #: app/core/gimp-edit.c:109 app/core/gimpselection.c:668 msgid "Unable to cut or copy because the selected region is empty." -msgstr "" -"Leikkaus tai kopiointi epäonnistui\n" -"koska valittu alue on tyhjä." +msgstr "Leikkaus tai kopiointi epäonnistui, koska valittu alue on tyhjä." #: app/core/gimp-edit.c:195 app/core/gimp-edit.c:319 msgid "Pasted Layer" @@ -5070,7 +4509,7 @@ msgid "FG to Transparent" msgstr "Edustaväristä läpinäkyvään" -#: app/core/gimp-gui.c:148 +#: app/core/gimp-gui.c:153 msgid "GIMP" msgstr "GIMP" @@ -5102,76 +4541,89 @@ msgid "Modules" msgstr "Modulit" -#: app/core/gimpbrush.c:531 +#: app/core/gimpbrush.c:534 #, c-format msgid "Could not read %d bytes from '%s': %s" msgstr "Ei voinut lukea %d tavua tiedostosta '%s'. Virhe: %s" -#: app/core/gimpbrush.c:566 +#: app/core/gimpbrush.c:554 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Width = 0." +msgstr "Virhe: Sivellintiedosto '%s' on viallinen. Tuntematon värisyvyys %d." + +#: app/core/gimpbrush.c:563 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Height = 0." +msgstr "Virhe sivellintiedostossa '%s': Tiedosto on rikki." + +#: app/core/gimpbrush.c:572 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Bytes = 0." +msgstr "Virhe sivellintiedostossa '%s': Tiedosto on rikki." + +#: app/core/gimpbrush.c:596 #, c-format msgid "Fatal parse error in brush file '%s': Unknown depth %d." msgstr "Virhe: Sivellintiedosto '%s' on viallinen. Tuntematon värisyvyys %d." -#: app/core/gimpbrush.c:579 +#: app/core/gimpbrush.c:609 #, c-format msgid "Fatal parse error in brush file '%s': Unknown version %d." msgstr "Sivellintiedosto '%s' on viallinen. Tuntematon versio %d." -#: app/core/gimpbrush.c:595 app/core/gimpbrush.c:715 +#: app/core/gimpbrush.c:625 app/core/gimpbrush.c:745 #, c-format msgid "Fatal parse error in brush file '%s': File appears truncated." -msgstr "" -"Jäsennysvirhe:\n" -"Sivellintiedosto '%s' näyttää katkenneen." +msgstr "Jäsennysvirhe: Sivellintiedosto '%s' näyttää katkenneen." -#: app/core/gimpbrush.c:603 app/core/gimpbrushgenerated.c:648 +#: app/core/gimpbrush.c:633 app/core/gimpbrushgenerated.c:648 #: app/core/gimpbrushpipe.c:354 #, c-format msgid "Invalid UTF-8 string in brush file '%s'." msgstr "Epäkelpo unicode merkkijono sivellintiedostossa '%s'." -#: app/core/gimpbrush.c:610 app/core/gimpcontext.c:1299 -#: app/core/gimpitem.c:479 app/core/gimppattern.c:400 +#: app/core/gimpbrush.c:640 app/core/gimpcontext.c:1299 +#: app/core/gimpitem.c:480 app/core/gimppattern.c:400 #: app/dialogs/template-options-dialog.c:80 app/tools/gimpvectortool.c:339 msgid "Unnamed" msgstr "Nimetön" -#: app/core/gimpbrush.c:704 +#: app/core/gimpbrush.c:734 #, c-format msgid "" "Fatal parse error in brush file '%s': Unsupported brush depth %d\n" "GIMP brushes must be GRAY or RGBA." -msgstr "Virhe sivellintiedostossa '%s': Unsupported brush depth %d." +msgstr "Virhe sivellintiedostossa '%s': Tuntematon siveltimen syvyys %d." #: app/core/gimpbrushgenerated.c:614 #, c-format msgid "Fatal parse error in brush file '%s': Not a GIMP brush file." -msgstr "Virhe sivellintiedostossa '%s': Not a GIMP brush file." +msgstr "Virhe sivellintiedostossa '%s': Ei ole GIMP sivellintiedosto." #: app/core/gimpbrushgenerated.c:630 #, c-format msgid "Fatal parse error in brush file '%s': Unknown GIMP brush version." -msgstr "Virhe sivellintiedostossa '%s': Unknown GIMP brush version." +msgstr "Virhe sivellintiedostossa '%s': Tuntematon versio." #: app/core/gimpbrushgenerated.c:669 -#, fuzzy, c-format +#, c-format msgid "Fatal parse error in brush file '%s': Unknown GIMP brush shape." -msgstr "Virhe sivellintiedostossa '%s': Unknown GIMP brush version." +msgstr "Virhe sivellintiedostossa '%s': Tuntematon muoto." #: app/core/gimpbrushgenerated.c:750 -#, fuzzy, c-format +#, c-format msgid "Error while reading brush file '%s': %s" -msgstr "Virhe luettaessa \"%s\": %s" +msgstr "Virhe luettaessa sivellintä \"%s\": %s" #: app/core/gimpbrushgenerated.c:752 msgid "File is truncated" -msgstr "" +msgstr "Tiedosto on katkennut" #: app/core/gimpbrushpipe.c:369 app/core/gimpbrushpipe.c:389 #: app/core/gimpbrushpipe.c:479 #, c-format msgid "Fatal parse error in brush file '%s': File is corrupt." -msgstr "Virhe sivellintiedostossa '%s': File is corrupt." +msgstr "Virhe sivellintiedostossa '%s': Tiedosto on rikki." #: app/core/gimpchannel.c:280 app/pdb/internal_procs.c:95 msgid "Channel" @@ -5206,9 +4658,8 @@ msgstr "Muunna kanavaa" #: app/core/gimpchannel.c:288 -#, fuzzy msgid "Stroke Channel" -msgstr "Kanava" +msgstr "Piirrä kanava" #: app/core/gimpchannel.c:310 msgid "Feather Channel" @@ -5244,7 +4695,7 @@ #: app/core/gimpchannel.c:631 msgid "Cannot stroke empty channel." -msgstr "" +msgstr "Tyhjälle kanavalla ei voi piirtää." #: app/core/gimpchannel.c:1527 msgid "Set Channel Color" @@ -5289,32 +4740,36 @@ msgstr "Tiedoston '%s' poistaminen epäonnistui: %s" #: app/core/gimpdatafactory.c:291 app/core/gimpdatafactory.c:511 -#, fuzzy, c-format +#, c-format msgid "" "Warning: Failed to save data:\n" "\n" "%s" -msgstr "Ei voitu tallentaa: %s" +msgstr "" +"Ei voitu tallentaa:\n" +"\n" +"%s" #: app/core/gimpdatafactory.c:411 app/core/gimpdatafactory.c:414 -#: app/core/gimpitem.c:274 app/core/gimpitem.c:277 +#: app/core/gimpitem.c:275 app/core/gimpitem.c:278 msgid "copy" msgstr "kopio" -#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:286 +#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:287 #, c-format msgid "%s copy" msgstr "%s:n kopio" #: app/core/gimpdatafactory.c:614 -#, fuzzy, c-format +#, c-format msgid "" "Warning: Failed to load data:\n" "\n" "%s" msgstr "" "Lataus ei onnistunut:\n" -"\"%s\"" +"\n" +"%s" #: app/core/gimpdrawable-blend.c:238 app/tools/gimpblendtool.c:101 msgid "Blend" @@ -5322,7 +4777,7 @@ #: app/core/gimpdrawable-bucket-fill.c:85 app/paint/gimpclone.c:183 msgid "No patterns available for this operation." -msgstr "Ei kuvioita tälle toiminnolle" +msgstr "Ei kuvioita tälle toiminnolle." #: app/core/gimpdrawable-bucket-fill.c:272 app/tools/gimpbucketfilltool.c:91 msgid "Bucket Fill" @@ -5351,7 +4806,7 @@ #: app/core/gimpdrawable-stroke.c:319 msgid "Render Stroke" -msgstr "" +msgstr "Piirrä" #. Start a transform undo group #: app/core/gimpdrawable-transform.c:928 app/tools/gimpfliptool.c:82 @@ -5361,9 +4816,9 @@ #. Start a transform undo group #: app/core/gimpdrawable-transform.c:1009 app/tools/gimprotatetool.c:97 msgid "Rotate" -msgstr "Käännös" +msgstr "Kierto" -#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:259 +#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:257 msgid "Transform Layer" msgstr "Muunna taso" @@ -5384,9 +4839,7 @@ #: app/core/gimpgradient-load.c:72 #, c-format msgid "Fatal parse error in gradient file '%s': Not a GIMP gradient file." -msgstr "" -"Vakava jäsennysvirhe:\n" -"Siveltimen putkitustiedosto '%s' on viallinen." +msgstr "Jäsennysvirhe: Väriliukutiedosto '%s' ei ole GIMP muotoa." #: app/core/gimpgradient-load.c:87 #, c-format @@ -5396,14 +4849,12 @@ #: app/core/gimpgradient-load.c:115 #, c-format msgid "Fatal parse error in gradient file '%s': File is corrupt." -msgstr "" -"Jäsennysvirhe:\n" -"Väriliukutiedosto '%s' on viallinen." +msgstr "Jäsennysvirhe: Väriliukutiedosto '%s' on viallinen." #: app/core/gimpgradient-load.c:172 #, c-format msgid "Corrupt segment %d in gradient file '%s'." -msgstr "Segmentti %d on korruptoitunut väriliukutiedostossa %s." +msgstr "Rikkonainen segmentti %d väriliukutiedostossa '%s'." #: app/core/gimpgradient-load.c:183 app/core/gimpgradient-load.c:197 #, c-format @@ -5413,10 +4864,10 @@ #: app/core/gimpgradient-load.c:281 #, c-format msgid "No linear gradients found in '%s'" -msgstr "" +msgstr "Ei sisällä väliliukuja: '%s'" #: app/core/gimpgradient-load.c:291 -#, fuzzy, c-format +#, c-format msgid "Failed to import gradients from '%s': %s" msgstr "Polun luku tiedostosta %s epäonnistui: %s" @@ -5426,12 +4877,12 @@ #: app/core/gimpgrid.c:134 msgid "The foreground color of the grid." -msgstr "Apuviivojen edustaväri" +msgstr "Apuviivojen edustaväri." #: app/core/gimpgrid.c:139 msgid "" "The background color of the grid; only used in double dashed line style." -msgstr "Apuviivojen taustaväri" +msgstr "Apuviivojen taustaväri, käytetään vain tuplakatkoviiva tyylissä." #: app/core/gimpgrid.c:145 msgid "Horizontal spacing of grid lines." @@ -5451,19 +4902,16 @@ msgstr "Ensimmäisen sarakkeen siirtymä, voi olla negatiivinen." #: app/core/gimpimage-colormap.c:63 -#, fuzzy msgid "Set Colormap" -msgstr "Värikartta" +msgstr "Aseta värikartta" #: app/core/gimpimage-colormap.c:115 -#, fuzzy msgid "Change Colormap entry" -msgstr "Vaihda kuvan yksiköt" +msgstr "Vaihda värikartan kohdat" #: app/core/gimpimage-colormap.c:135 -#, fuzzy msgid "Add Color to Colormap" -msgstr "/Lisää väri _edustasta" +msgstr "Lisää väri" #: app/core/gimpimage-convert.c:788 msgid "Convert Image to RGB" @@ -5478,14 +4926,12 @@ msgstr "Muunna kuva rajoitettuun värimäärään" #: app/core/gimpimage-convert.c:875 -#, fuzzy msgid "Converting to indexed (stage 2)..." -msgstr "Muunna kuva rajoitettuun värimäärään" +msgstr "Muunna kuva rajoitettuun värimäärään (vaihe 2)..." #: app/core/gimpimage-convert.c:919 -#, fuzzy msgid "Converting to indexed (stage 3)..." -msgstr "Muunna kuva rajoitettuun värimäärään" +msgstr "Muunna kuva rajoitettuun värimäärään (vaihe 3)..." #: app/core/gimpimage-crop.c:123 msgid "Crop Image" @@ -5540,14 +4986,12 @@ msgstr "Ei tarpeeksi polkuja yhdistämiseen." #: app/core/gimpimage-qmask.c:67 -#, fuzzy msgid "Enable Quick Mask" -msgstr "Aseta maski" +msgstr "QMask päälle" #: app/core/gimpimage-qmask.c:117 -#, fuzzy msgid "Disable Quick Mask" -msgstr "Poista tasomaski" +msgstr "QMask pois" #: app/core/gimpimage-undo-push.c:3055 #, c-format @@ -5636,9 +5080,8 @@ msgstr "Nosta kanava" #: app/core/gimpimage.c:3104 -#, fuzzy msgid "Channel is already on top." -msgstr "Taso on jo päällimmäisenä." +msgstr "Kanava on jo päällimmäisenä." #: app/core/gimpimage.c:3109 msgid "Raise Channel to Top" @@ -5653,9 +5096,8 @@ msgstr "Laske kanava" #: app/core/gimpimage.c:3151 -#, fuzzy msgid "Channel is already on the bottom." -msgstr "Taso on jo pohjimmaisena." +msgstr "Kanava on jo pohjimmaisena." #: app/core/gimpimage.c:3156 msgid "Lower Channel to Bottom" @@ -5678,9 +5120,8 @@ msgstr "Nosta polku" #: app/core/gimpimage.c:3342 -#, fuzzy msgid "Path is already on top." -msgstr "Taso on jo päällimmäisenä." +msgstr "Polku on jo päällimmäisenä." #: app/core/gimpimage.c:3347 msgid "Raise Path to Top" @@ -5695,9 +5136,8 @@ msgstr "Laske polku" #: app/core/gimpimage.c:3389 -#, fuzzy msgid "Path is already on the bottom." -msgstr "Taso on jo pohjimmaisena." +msgstr "Polku on jo pohjimmaisena." #: app/core/gimpimage.c:3394 msgid "Lower Path to Bottom" @@ -5716,9 +5156,8 @@ msgstr "Erikoistiedosto" #: app/core/gimpimagefile.c:605 -#, fuzzy msgid "Click to create preview" -msgstr "Esikatselun luonti epäonnistui" +msgstr "Napsauta luodaksesi esikatselun" #: app/core/gimpimagefile.c:609 msgid "Loading preview ..." @@ -5734,7 +5173,7 @@ #. pixel size #: app/core/gimpimagefile.c:624 app/dialogs/info-window.c:552 -#: app/widgets/gimpsizebox.c:552 app/widgets/gimptemplateeditor.c:637 +#: app/widgets/gimpsizebox.c:429 app/widgets/gimptemplateeditor.c:637 #: app/widgets/gimptemplateeditor.c:673 #, c-format msgid "%d x %d pixels" @@ -5754,22 +5193,21 @@ msgid "Could not open thumbnail '%s': %s" msgstr "Tiedoston '%s' avaaminen epäonnistui: %s" -#: app/core/gimpitem.c:1096 +#: app/core/gimpitem.c:1103 msgid "Attach Parasite" msgstr "Lisää kenttä" -#: app/core/gimpitem.c:1106 +#: app/core/gimpitem.c:1113 msgid "Attach Parasite to Item" msgstr "Liitä kenttä" -#: app/core/gimpitem.c:1145 app/core/gimpitem.c:1152 +#: app/core/gimpitem.c:1152 app/core/gimpitem.c:1159 msgid "Remove Parasite from Item" msgstr "Poista kenttä" #: app/core/gimplayer-floating-sel.c:98 -#, fuzzy msgid "Remove Floating Selection" -msgstr "Kelluva valinta" +msgstr "Poista kelluva valinta" #: app/core/gimplayer-floating-sel.c:129 msgid "Cannot anchor this layer because it is not a floating selection." @@ -5777,7 +5215,7 @@ #: app/core/gimplayer-floating-sel.c:136 msgid "Anchor Floating Selection" -msgstr "Kelluva valinta" +msgstr "Ankkuroi kelluva valinta" #: app/core/gimplayer-floating-sel.c:209 msgid "" @@ -5791,76 +5229,78 @@ msgid "Floating Selection to Layer" msgstr "Kelluva valinta" -#: app/core/gimplayer.c:252 app/pdb/internal_procs.c:152 +#: app/core/gimplayer.c:250 app/pdb/internal_procs.c:152 msgid "Layer" msgstr "Taso" -#: app/core/gimplayer.c:253 +#: app/core/gimplayer.c:251 msgid "Rename Layer" msgstr "Uudelleennimeä taso" -#: app/core/gimplayer.c:254 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 +#: app/core/gimplayer.c:252 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 msgid "Move Layer" msgstr "Siirrä taso" -#: app/core/gimplayer.c:256 +#: app/core/gimplayer.c:254 msgid "Resize Layer" msgstr "Muuta tason kokoa" -#: app/core/gimplayer.c:257 +#: app/core/gimplayer.c:255 msgid "Flip Layer" msgstr "Peilaa taso" -#: app/core/gimplayer.c:258 +#: app/core/gimplayer.c:256 msgid "Rotate Layer" msgstr "Kierrä tasoa" -#: app/core/gimplayer.c:341 app/core/gimplayer.c:1129 +#: app/core/gimplayer.c:339 app/core/gimplayer.c:1110 #: app/core/gimplayermask.c:236 #, c-format msgid "%s mask" msgstr "%s-maski" -#: app/core/gimplayer.c:387 -#, fuzzy, c-format +#: app/core/gimplayer.c:385 +#, c-format msgid "" "Floating Selection\n" "(%s)" -msgstr "Kelluva valinta" +msgstr "" +"Kelluva valinta\n" +"(%s)" -#: app/core/gimplayer.c:1055 +#: app/core/gimplayer.c:1036 msgid "Cannot add layer mask to layer which is not part of an image." msgstr "Maskin lisäys tasoon joka ei ole osa kuvaa ei onnistu." -#: app/core/gimplayer.c:1062 +#: app/core/gimplayer.c:1043 msgid "Unable to add a layer mask since the layer already has one." msgstr "Maskin lisäys ei onnistu koska tasolla on jo maski." -#: app/core/gimplayer.c:1069 +#: app/core/gimplayer.c:1050 msgid "Cannot add layer mask to a layer with no alpha channel." msgstr "Maskin lisäys tasoon jolla ei ole alfakanavaa ei onnistu." -#: app/core/gimplayer.c:1079 +#: app/core/gimplayer.c:1060 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "Maskin lisäys tasoon joko on eri kokoinen ei onnistu." -#: app/core/gimplayer.c:1183 +#: app/core/gimplayer.c:1164 msgid "Transfer Alpha to Mask" msgstr "Siirrä läpinäkyvyys maskiksi" -#: app/core/gimplayer.c:1343 +#: app/core/gimplayer.c:1324 msgid "Apply Layer Mask" msgstr "Sovella tason maskia" -#: app/core/gimplayer.c:1344 +#: app/core/gimplayer.c:1325 msgid "Delete Layer Mask" msgstr "Poista tasomaski" -#: app/core/gimplayer.c:1445 +#: app/core/gimplayer.c:1426 msgid "Add Alpha Channel" msgstr "Lisää alfakanava" -#: app/core/gimplayer.c:1467 +#: app/core/gimplayer.c:1448 msgid "Layer to Image Size" msgstr "Taso kuvan kokoiseksi" @@ -5869,11 +5309,13 @@ msgstr "Siirrä tason maski" #: app/core/gimppalette-import.c:490 -#, fuzzy, c-format +#, c-format msgid "" "Unknown type of palette file:\n" "%s" -msgstr "En voi tallettaa palettia \"%s\"\n" +msgstr "" +"Tuntematon palettitiedosto:\n" +"%s" #: app/core/gimppalette.c:375 #, c-format @@ -5882,7 +5324,7 @@ "Does this file need converting from DOS?" msgstr "" "Ladataan palettia '%s': Otsikkotieto puuttuu.\n" -"Pitäisikö tämä tiedosto muuntaa DOS muodosta?" +"Tiedosto pitää muunnettaa DOS muodosta?" #: app/core/gimppalette.c:381 #, c-format @@ -5911,30 +5353,23 @@ #: app/core/gimppalette.c:484 #, c-format msgid "Reading palette file '%s': Missing RED component in line %d." -msgstr "" -"Ladataan palettia %s (rivi %d):\n" -"Puuttuva PUNAINEN komponentti" +msgstr "Ladataan palettia %s (rivi %d): Puuttuva PUNAINEN komponentti." #: app/core/gimppalette.c:492 #, c-format msgid "Reading palette '%s': Missing GREEN component in line %d." -msgstr "" -"Ladataan palettia %s (rivi %d):\n" -"Puuttuva VIHREÄ komponentti" +msgstr "Ladataan palettia %s (rivi %d): Puuttuva VIHREÄ komponentti." #: app/core/gimppalette.c:500 #, c-format msgid "Reading palette file '%s': Missing BLUE component in line %d." -msgstr "" -"Ladataan palettia %s (rivi %d):\n" -"Puuttuva SININEN komponentti" +msgstr "Ladataan palettia %s (rivi %d): Puuttuva SININEN komponentti." #: app/core/gimppalette.c:510 #, c-format msgid "Reading palette file '%s': RGB value out of range in line %d." msgstr "" -"Ladataan palettia %s (rivi %d):\n" -"RGB arvot säädetyn alueen ulkopuolella" +"Ladataan palettia %s (rivi %d): RGB arvot sallitun alueen ulkopuolella." #: app/core/gimppattern.c:337 app/core/gimppattern.c:384 #: app/core/gimppattern.c:415 @@ -5963,9 +5398,9 @@ msgstr "Epäkelpo unicode-merkkijono kuviotiedostossa '%s'." #: app/core/gimppdbprogress.c:260 app/widgets/gimppdbdialog.c:320 -#, fuzzy, c-format +#, c-format msgid "Unable to run %s callback. The corresponding plug-in may have crashed." -msgstr "Ei voinut suorittaa kutsua: Liitännäinen on voinut kaatua." +msgstr "Ei voinut suorittaa kutsua: %s. Liitännäinen on voinut kaatua." #: app/core/gimpprogress.c:107 app/core/gimpprogress.c:154 msgid "Please wait..." @@ -5993,35 +5428,31 @@ #: app/core/gimpselection.c:307 msgid "No selection to stroke." -msgstr "" +msgstr "Ei valintaa piirrettäväksi." #: app/core/gimpselection.c:815 msgid "Cannot float selection because the selected region is empty." -msgstr "" -"Kopiointi epäonnistui\n" -"koska valittu alue on tyhjä." +msgstr "Kopiointi epäonnistui, koska valittu alue on tyhjä." #: app/core/gimpselection.c:822 msgid "Float Selection" msgstr "Kelluva valinta" #: app/core/gimpselection.c:839 -#, fuzzy msgid "Floated Layer" -msgstr "Kierrä tasoa" +msgstr "Kelluva taso" #: app/core/gimptemplate.c:158 msgid "The unit used for coordinate display when not in dot-for-dot mode." msgstr "Mittayksikkö jota käytetään, kun ei olla piste-pisteeltä -tilassa." #: app/core/gimptemplate.c:165 -#, fuzzy msgid "The horizontal image resolution." -msgstr "Vaakatarkkuus" +msgstr "Kuvan vaakatarkkuus." #: app/core/gimptemplate.c:170 msgid "The vertical image resolution." -msgstr "Pystytarkkuus" +msgstr "Kuvan pystytarkkuus." #: app/core/gimptemplate.c:450 app/widgets/widgets-enums.c:24 msgid "Background" @@ -6121,34 +5552,29 @@ msgstr "Värikartta" #: app/dialogs/convert-dialog.c:179 -#, fuzzy msgid "_Maximum number of colors:" msgstr "Värien maksimimäärä:" #: app/dialogs/convert-dialog.c:206 -#, fuzzy msgid "_Remove unused colors from final palette" msgstr "Poista käyttämättömät värit lopullisesta paletista" #. dithering #: app/dialogs/convert-dialog.c:221 app/tools/gimpblendoptions.c:269 msgid "Dithering" -msgstr "Pehmennys" +msgstr "Värisekoitus" #: app/dialogs/convert-dialog.c:233 -#, fuzzy msgid "Color _dithering:" -msgstr "Ei pehmennystä" +msgstr "Värisekoitus:" #: app/dialogs/convert-dialog.c:248 -#, fuzzy msgid "Enable dithering of _transparency" -msgstr "Pehmennä myös läpinäkyvyyttä" +msgstr "Käytä sekoitusta myös läpinäkyvyydelle" #: app/dialogs/convert-dialog.c:274 -#, fuzzy msgid "Converting to indexed..." -msgstr "Muunna kuva rajoitettuun värimäärään" +msgstr "Muunna kuva rajoitettuun värimäärään..." #: app/dialogs/convert-dialog.c:382 msgid "Cannot convert to a palette with more than 256 colors." @@ -6215,33 +5641,29 @@ msgstr "Sivellinmuokkain" #: app/dialogs/file-open-location-dialog.c:71 -#, fuzzy msgid "Open Location" -msgstr "Sijainti:" +msgstr "Avaa sijainti" #: app/dialogs/file-open-location-dialog.c:104 -#, fuzzy msgid "Enter location (URI):" -msgstr "Interpolaatio:" +msgstr "Syötä sijainti (URI):" #: app/dialogs/file-save-dialog.c:160 -#, fuzzy msgid "File exists" msgstr "Tiedosto on jo olemassa!" #: app/dialogs/file-save-dialog.c:165 -#, fuzzy msgid "_Replace" -msgstr "Kahdenna" +msgstr "Korvaa" #: app/dialogs/file-save-dialog.c:175 #, c-format msgid "A file named '%s' already exists." -msgstr "" +msgstr "Tiedosto '%s' on jo olemassa." #: app/dialogs/file-save-dialog.c:180 msgid "Do you want to replace it with the image you are saving?" -msgstr "" +msgstr "Haluatko korvata sen tallennettavalla kuvalla?" #: app/dialogs/grid-dialog.c:81 msgid "Configure Grid" @@ -6280,9 +5702,8 @@ msgstr "Luo uusi kuva" #: app/dialogs/image-new-dialog.c:130 app/dialogs/preferences-dialog.c:1313 -#, fuzzy msgid "_Template:" -msgstr "Mallit" +msgstr "Mallit:" #: app/dialogs/image-new-dialog.c:265 msgid "Confirm Image Size" @@ -6291,7 +5712,7 @@ #: app/dialogs/image-new-dialog.c:282 app/dialogs/image-scale-dialog.c:193 #, c-format msgid "You are trying to create an image with a size of %s." -msgstr "" +msgstr "Yrität luoda kuvaa jonka koko on %s." #: app/dialogs/image-new-dialog.c:289 #, c-format @@ -6299,11 +5720,12 @@ "An image of the choosen size will use more memory than what is configured as " "\"Maximum Image Size\" in the Preferences dialog (currently %s)." msgstr "" +"Valitun koon kuva käyttäisi enemmän muistia kuin asetuksissa on sallittu (%" +"s)." #: app/dialogs/image-scale-dialog.c:164 -#, fuzzy msgid "Confirm Scaling" -msgstr "Kierrätä palettia" +msgstr "Vahvista skaalaus" #: app/dialogs/image-scale-dialog.c:199 #, c-format @@ -6312,19 +5734,18 @@ "is configured as \"Maximum Image Size\" in the Preferences dialog (currently " "%s)." msgstr "" +"Kuva skaalaus valittuun kokoon käyttäisi enemmän muistia kuin asetuksissa on " +"sallittu (%s)." #: app/dialogs/image-scale-dialog.c:214 -#, fuzzy msgid "" "Scaling the image to the choosen size will shrink some layers completely " "away." -msgstr "" -"Valittu kuvakoko tulee poistamaan jotkut tasot kokonaan.\n" -"Jatketaanko?" +msgstr "Valittu kuvakoko tulee poistamaan jotkin tasot kokonaan. Jatketaanko?" #: app/dialogs/image-scale-dialog.c:218 msgid "Is this what you want to do?" -msgstr "" +msgstr "Haluatko tehdä tämän?" #. General #: app/dialogs/info-dialog.c:363 app/dialogs/preferences-dialog.c:1543 @@ -6358,9 +5779,8 @@ msgstr "Suoraväritila" #: app/dialogs/info-window.c:131 -#, fuzzy msgid "Cursor" -msgstr "Värintoistokäyrät" +msgstr "Kohdistin" #: app/dialogs/info-window.c:141 app/dialogs/preferences-dialog.c:1932 #: app/widgets/gimpgrideditor.c:267 app/widgets/gimpgrideditor.c:299 @@ -6376,12 +5796,10 @@ msgstr "-" #: app/dialogs/info-window.c:154 app/dialogs/info-window.c:176 -#, fuzzy msgid "X" -msgstr "X:" +msgstr "X" #: app/dialogs/info-window.c:160 app/dialogs/info-window.c:182 -#, fuzzy msgid "Y" msgstr "Y" @@ -6390,9 +5808,8 @@ msgstr "Yksiköt" #: app/dialogs/info-window.c:228 -#, fuzzy msgid "Comment" -msgstr "Lukumäärä:" +msgstr "Kommentti" #: app/dialogs/info-window.c:248 app/dialogs/info-window.c:634 #: app/display/gimpdisplayshell-title.c:337 @@ -6410,12 +5827,10 @@ #. add the information fields #: app/dialogs/info-window.c:294 -#, fuzzy msgid "Pixel dimensions:" -msgstr "Koko pikseleissä" +msgstr "Koko pikseleissä:" #: app/dialogs/info-window.c:296 -#, fuzzy msgid "Print size:" msgstr "Tulostuskoko:" @@ -6424,32 +5839,26 @@ msgstr "Tarkkuus:" #: app/dialogs/info-window.c:300 -#, fuzzy msgid "Scale ratio:" msgstr "Mittasuhde:" #: app/dialogs/info-window.c:302 -#, fuzzy msgid "Number of layers:" msgstr "Tasojen määrä:" #: app/dialogs/info-window.c:304 -#, fuzzy msgid "Size in memory:" msgstr "Koko muistissa:" #: app/dialogs/info-window.c:306 -#, fuzzy msgid "Display type:" msgstr "Näytön tyyppi:" #: app/dialogs/info-window.c:308 -#, fuzzy msgid "Visual class:" msgstr "Näyttöluokka:" #: app/dialogs/info-window.c:310 -#, fuzzy msgid "Visual depth:" msgstr "Värisyvyys:" @@ -6527,7 +5936,6 @@ msgstr "Automaattinen lataus" #: app/dialogs/module-dialog.c:175 -#, fuzzy msgid "Module path" msgstr "Modulien hakupolku" @@ -6622,30 +6030,25 @@ msgstr "_Y:" #: app/dialogs/offset-dialog.c:197 -#, fuzzy msgid "Offset by x/_2, y/2" msgstr "Siirrä (x/_2),(y/2)" #. The edge behaviour frame #: app/dialogs/offset-dialog.c:206 -#, fuzzy msgid "Edge Behaviour" -msgstr "Ikkunoiden käyttäytyminen" +msgstr "Reunan käyttäytyminen" #: app/dialogs/offset-dialog.c:210 -#, fuzzy msgid "_Wrap around" -msgstr "Taustaväri" +msgstr "Kiedo ympäri" #: app/dialogs/offset-dialog.c:213 -#, fuzzy msgid "Fill with _background color" -msgstr "Muokkaa edustaväriä" +msgstr "Täytä taustavärillä" #: app/dialogs/offset-dialog.c:216 -#, fuzzy msgid "Make _transparent" -msgstr "Läpinäkyvä" +msgstr "Tee läpinäkyväksi" #: app/dialogs/palette-import-dialog.c:171 msgid "Import Palette" @@ -6669,14 +6072,12 @@ msgstr "Kuva" #: app/dialogs/palette-import-dialog.c:246 -#, fuzzy msgid "Palette _file" -msgstr "Palettikansiot" +msgstr "Palettitiedosto" #: app/dialogs/palette-import-dialog.c:273 -#, fuzzy msgid "Select palette file" -msgstr "Valitse kansio paleteille" +msgstr "Valitse palettitiedosto" #. The "Import" frame #: app/dialogs/palette-import-dialog.c:304 @@ -6684,16 +6085,14 @@ msgstr "Työkalujen asetukset" #: app/dialogs/palette-import-dialog.c:317 -#, fuzzy msgid "New import" -msgstr "Lataa" +msgstr "Lataa uusi" #: app/dialogs/palette-import-dialog.c:319 msgid "Palette _Name:" msgstr "Paletti:" #: app/dialogs/palette-import-dialog.c:325 -#, fuzzy msgid "N_umber of colors:" msgstr "Värien määrä:" @@ -6712,89 +6111,85 @@ #: app/dialogs/preferences-dialog.c:294 msgid "You will have to restart GIMP for the following changes to take effect:" -msgstr "GIMP täytyy käynnistää uudestaan jotta muutokset tulisivat voimaan." +msgstr "" +"GIMP täytyy käynnistää uudestaan jotta seuraavat muutokset tulisivat voimaan:" #: app/dialogs/preferences-dialog.c:501 -#, fuzzy msgid "Configure Keyboard Shortcuts" msgstr "Näppäimistöoikopolut" #: app/dialogs/preferences-dialog.c:551 +#, fuzzy msgid "" "To edit a shortcut key, click on the corresponding row and type a new " "accelerator, or press backspace to clear." -msgstr "" +msgstr "Syötä uusi oikopolku, tai paina Peruuta-näppäintä tyhjentääksesi" #: app/dialogs/preferences-dialog.c:595 msgid "" "Your keyboard shortcuts will be reset to default values the next time you " "start GIMP." msgstr "" +"Näppäimistöoikopolut nollataan oletusasetuksiin seuraavan kerran kun Gimp " +"käynnistyy." #: app/dialogs/preferences-dialog.c:629 msgid "" "Your window setup will be reset to default values the next time you start " "GIMP." msgstr "" +"Ikkunoiden paikat palautuvat perusasetuksiin seuraavan kerran kun Gimp " +"käynnistyy." #: app/dialogs/preferences-dialog.c:663 msgid "" "Your input device settings will be reset to default values the next time you " "start GIMP." msgstr "" +"Syöttölaitteiden asetukset palautuvat perusasetuksiin seuraavan kerran kun " +"Gimp käynnistyy." #: app/dialogs/preferences-dialog.c:1082 -#, fuzzy msgid "Show _menubar" -msgstr "Näytä menupalkki" +msgstr "Näytä _menupalkki" #: app/dialogs/preferences-dialog.c:1085 -#, fuzzy msgid "Show _rulers" -msgstr "Näytä viivottimet" +msgstr "Näytä _viivottimet" #: app/dialogs/preferences-dialog.c:1088 -#, fuzzy msgid "Show scroll_bars" -msgstr "Näytä vierityspalkit" +msgstr "Näytä v_ierityspalkit" #: app/dialogs/preferences-dialog.c:1091 -#, fuzzy msgid "Show s_tatusbar" -msgstr "Näytä tilapalkki" +msgstr "Näytä _tilapalkki" #: app/dialogs/preferences-dialog.c:1099 -#, fuzzy msgid "Show s_election" -msgstr "Näytä valinta" +msgstr "Näytä v_alinta" #: app/dialogs/preferences-dialog.c:1102 -#, fuzzy msgid "Show _layer boundary" msgstr "Näytä tason rajat" #: app/dialogs/preferences-dialog.c:1105 -#, fuzzy msgid "Show _guides" -msgstr "Näytä apulinjat" +msgstr "Näytä apu_linjat" #: app/dialogs/preferences-dialog.c:1108 -#, fuzzy msgid "Show gri_d" -msgstr "Näytä apuviivat" +msgstr "Näytä apuviiva_t" #: app/dialogs/preferences-dialog.c:1114 -#, fuzzy msgid "Canvas _padding mode:" -msgstr "Kankaan laajennusväri:" +msgstr "Kankaan laajennus:" #: app/dialogs/preferences-dialog.c:1119 -#, fuzzy msgid "Custom p_adding color:" msgstr "Oma laajennosväri:" #: app/dialogs/preferences-dialog.c:1120 -#, fuzzy msgid "Select custom canvas padding color" msgstr "Valitse väri joka lisätään kankaan reunoihin" @@ -6828,17 +6223,14 @@ msgstr "Esikatselut" #: app/dialogs/preferences-dialog.c:1371 -#, fuzzy msgid "_Enable layer & channel previews" msgstr "Tasojen ja kanavien esikatselut" #: app/dialogs/preferences-dialog.c:1377 -#, fuzzy msgid "Default _layer & channel preview size:" msgstr "Tasojen ja kanavien esikatselun koko:" #: app/dialogs/preferences-dialog.c:1380 -#, fuzzy msgid "Na_vigation preview size:" msgstr "Navigointi-ikkunan koko:" @@ -6849,32 +6241,27 @@ #: app/dialogs/preferences-dialog.c:1388 msgid "Show menu _mnemonics (access keys)" -msgstr "" +msgstr "Näytä valikoiden pikanäppäimet" #: app/dialogs/preferences-dialog.c:1391 -#, fuzzy msgid "Use _dynamic keyboard shortcuts" msgstr "Dynaamiset oikopolut" #: app/dialogs/preferences-dialog.c:1395 -#, fuzzy msgid "Configure _Keyboard Shortcuts..." -msgstr "Näppäimistöoikopolut" +msgstr "_Aseta näppäimistöoikopolut..." #: app/dialogs/preferences-dialog.c:1402 -#, fuzzy msgid "_Save keyboard shortcuts on exit" -msgstr "Tallenna näppäimistöoikotiet poistuttaessa" +msgstr "_Tallenna näppäimistöoikopolut poistuttaessa" #: app/dialogs/preferences-dialog.c:1406 -#, fuzzy msgid "Save Keyboard Shortcuts _Now" -msgstr "Tallenna näppäimistöoikotiet nyt" +msgstr "Tallenna näppäimistöoikopolut _nyt" #: app/dialogs/preferences-dialog.c:1413 -#, fuzzy msgid "_Reset Saved Keyboard Shortcuts to Default Values" -msgstr "Palauta näppäimistöoikotiet käynnistyksessä" +msgstr "_Palauta näppäimistöoikotiet käynnistyksessä" #: app/dialogs/preferences-dialog.c:1428 app/dialogs/preferences-dialog.c:1431 #: app/dialogs/preferences-dialog.c:1467 @@ -6894,17 +6281,14 @@ msgstr "Avustukset" #: app/dialogs/preferences-dialog.c:1546 -#, fuzzy msgid "Show tool _tips" msgstr "Näytä työkaluvihjeet" #: app/dialogs/preferences-dialog.c:1549 -#, fuzzy msgid "Show help _buttons" -msgstr "Näytä valinta" +msgstr "Näytä Apu-painikkeet" #: app/dialogs/preferences-dialog.c:1552 -#, fuzzy msgid "Show tips on _startup" msgstr "Näytä vihjeet alussa" @@ -6914,21 +6298,18 @@ msgstr "Selain avustuksille" #: app/dialogs/preferences-dialog.c:1560 -#, fuzzy msgid "H_elp browser to use:" -msgstr "Käytettävä selain avustuksille" +msgstr "Käytettävä _selain avustuksille:" #: app/dialogs/preferences-dialog.c:1565 msgid "Web Browser" msgstr "Web-selain" #: app/dialogs/preferences-dialog.c:1569 -#, fuzzy msgid "Select web browser" msgstr "Valitse Web-selain" #: app/dialogs/preferences-dialog.c:1572 -#, fuzzy msgid "_Web browser to use:" msgstr "Käytettävä Web-selain:" @@ -6938,9 +6319,8 @@ msgstr "Apuviivoihin tarttuminen" #: app/dialogs/preferences-dialog.c:1602 -#, fuzzy msgid "_Snap distance:" -msgstr "Etäisyys" +msgstr "_Tarttumisetäisyys:" #. Contiguous Regions #: app/dialogs/preferences-dialog.c:1606 @@ -6948,9 +6328,8 @@ msgstr "Väriltään yhtenäisten alueiden löytäminen" #: app/dialogs/preferences-dialog.c:1611 -#, fuzzy msgid "Default _threshold:" -msgstr "Raja-arvo:" +msgstr "_Raja-arvo:" #. Scaling #: app/dialogs/preferences-dialog.c:1615 @@ -6958,9 +6337,8 @@ msgstr "Skaalaus" #: app/dialogs/preferences-dialog.c:1619 -#, fuzzy msgid "Default _interpolation:" -msgstr "Interpolaatiomenetelmä:" +msgstr "_Interpolaatiomenetelmä:" #. Global Brush, Pattern, ... #: app/dialogs/preferences-dialog.c:1623 @@ -6972,12 +6350,10 @@ msgstr "Siirtotyökalu" #: app/dialogs/preferences-dialog.c:1640 -#, fuzzy msgid "Change current layer or path" -msgstr "Vain nykyinen taso" +msgstr "Vaihda nykyistä tasoa tai polkua" #: app/dialogs/preferences-dialog.c:1653 app/dialogs/preferences-dialog.c:1656 -#, fuzzy msgid "Toolbox" msgstr "Työkaluvalikko" @@ -6988,33 +6364,28 @@ msgstr "Ulkoasu" #: app/dialogs/preferences-dialog.c:1667 -#, fuzzy msgid "Show _foreground & background color" -msgstr "Aseta taustaväri" +msgstr "Näytä edusta- ja taustaväri" #: app/dialogs/preferences-dialog.c:1671 -#, fuzzy msgid "Show active _brush, pattern & gradient" -msgstr "/Ikkunat/Uusi telakka/Siveltimet, kuviot ja väriliut" +msgstr "Näytä aktiiviset siveltimet, kuviot ja väriliu'ut" #: app/dialogs/preferences-dialog.c:1675 -#, fuzzy msgid "Show active _image" -msgstr "/Seuraa automaattisesti käsiteltävää kuvaa" +msgstr "Näytä käsiteltävä kuva" #: app/dialogs/preferences-dialog.c:1685 app/dialogs/preferences-dialog.c:1688 msgid "Image Windows" msgstr "Kuvaikkunat" #: app/dialogs/preferences-dialog.c:1700 -#, fuzzy msgid "Use \"_Dot for dot\" by default" msgstr "Käytä \"Piste pisteeltä\" alkuasetuksina" #: app/dialogs/preferences-dialog.c:1706 -#, fuzzy msgid "Marching _ants speed:" -msgstr "Valinta-animaation nopeus" +msgstr "Valinta-animaation nopeus:" #. Zoom & Resize Behavior #: app/dialogs/preferences-dialog.c:1710 @@ -7022,49 +6393,41 @@ msgstr "Suurennus- ja pienennyskäyttäytyminen" #: app/dialogs/preferences-dialog.c:1714 -#, fuzzy msgid "Resize window on _zoom" msgstr "Muuta ikkunan kokoa suurennoskertoimen mukaan" #: app/dialogs/preferences-dialog.c:1717 -#, fuzzy msgid "Resize window on image _size change" -msgstr "Muuta ikkunan kun kuvan koko muuttuu" +msgstr "Muuta ikkunan kokoa kun kuvan koko muuttuu" #: app/dialogs/preferences-dialog.c:1723 -#, fuzzy msgid "Fit to window" msgstr "Laajenna ikkunaan" #: app/dialogs/preferences-dialog.c:1725 -#, fuzzy msgid "Initial zoom _ratio:" -msgstr "Mittasuhde alussa:" +msgstr "Suurennos alussa:" #. Mouse Cursors #: app/dialogs/preferences-dialog.c:1729 msgid "Mouse Cursors" -msgstr "" +msgstr "Hiiren osoitin" #: app/dialogs/preferences-dialog.c:1733 -#, fuzzy msgid "Show _brush outline" msgstr "Näytä siveltimen ulkoraja" #: app/dialogs/preferences-dialog.c:1736 -#, fuzzy msgid "Show paint _tool cursor" -msgstr "Näytä työkaluvihjeet" +msgstr "Näytä maalaustyökalun osoitin" #: app/dialogs/preferences-dialog.c:1742 -#, fuzzy msgid "Cursor _mode:" -msgstr "Osoittimen tila:" +msgstr "_Osoittimen tila:" #: app/dialogs/preferences-dialog.c:1745 -#, fuzzy msgid "Cursor re_ndering:" -msgstr "Osoittimen tila:" +msgstr "Osoittime_n piirto:" #: app/dialogs/preferences-dialog.c:1757 msgid "Image Window Appearance" @@ -7099,9 +6462,8 @@ msgstr "Näytä suurennossuhde" #: app/dialogs/preferences-dialog.c:1808 -#, fuzzy msgid "Show image size" -msgstr "kuvan mittojen muutos" +msgstr "Näytä kuvan koko" #: app/dialogs/preferences-dialog.c:1809 msgid "Show memory usage" @@ -7120,12 +6482,10 @@ msgstr "Näytön asetukset" #: app/dialogs/preferences-dialog.c:1922 -#, fuzzy msgid "Transparency _type:" -msgstr "Läpinäkyyden _tyyppi" +msgstr "Läpinäkyyden _tyyppi:" #: app/dialogs/preferences-dialog.c:1925 -#, fuzzy msgid "Check _size:" msgstr "Ruudutuksen koko:" @@ -7134,7 +6494,7 @@ msgstr "Hae näytön resoluutio" #: app/dialogs/preferences-dialog.c:1970 -#, fuzzy, c-format +#, c-format msgid "From _windowing system (currently %d x %d dpi)" msgstr "Ikkunointijärjestelmän tieto (%d×%d dpi)" @@ -7143,9 +6503,8 @@ msgstr "Manuaalisesti:" #: app/dialogs/preferences-dialog.c:2008 -#, fuzzy msgid "C_alibrate..." -msgstr "Kalibroi" +msgstr "Kalibroi..." #: app/dialogs/preferences-dialog.c:2028 app/dialogs/preferences-dialog.c:2031 msgid "Input Devices" @@ -7157,49 +6516,42 @@ msgstr "Kehittyneet syöttölaitteet:" #: app/dialogs/preferences-dialog.c:2042 -#, fuzzy msgid "Configure E_xtended Input Devices..." -msgstr "Aseta syöttölaitteet" +msgstr "Aseta kehittyneet syöttölaitteet..." #: app/dialogs/preferences-dialog.c:2049 -#, fuzzy msgid "_Save input device settings on exit" -msgstr "Tallenna syöttölaitteiden tila poistuessa" +msgstr "_Tallenna syöttölaitteiden tila poistuessa" #: app/dialogs/preferences-dialog.c:2053 -#, fuzzy msgid "Save Input Device Settings _Now" -msgstr "Tallenna syöttölaitteiden tila nyt" +msgstr "Tallenna syöttölaitteiden tila _nyt" #: app/dialogs/preferences-dialog.c:2060 -#, fuzzy msgid "_Reset Saved Input Device Settings to Default Values" -msgstr "Unohda syöttölaitteiden tila nyt" +msgstr "_Nollaa syöttölaitteiden" #: app/dialogs/preferences-dialog.c:2075 msgid "Additional Input Controllers" -msgstr "" +msgstr "Lisäohjaimet" #: app/dialogs/preferences-dialog.c:2078 msgid "Input Controllers" -msgstr "" +msgstr "Ohjaimet" #: app/dialogs/preferences-dialog.c:2119 app/dialogs/preferences-dialog.c:2122 msgid "Window Management" msgstr "Istunnon hallinta" #: app/dialogs/preferences-dialog.c:2128 -#, fuzzy msgid "Window Manager Hints" -msgstr "Istunnon hallinta" +msgstr "Ikkunointiohjelman asetukset" #: app/dialogs/preferences-dialog.c:2134 -#, fuzzy msgid "Hint for the _toolbox:" msgstr "Ikkunan reunustus Työkalulaatikolle:" #: app/dialogs/preferences-dialog.c:2138 -#, fuzzy msgid "Hint for the _docks:" msgstr "Ikkunan reunustus Telakalle:" @@ -7208,7 +6560,6 @@ msgstr "Kohdistus" #: app/dialogs/preferences-dialog.c:2145 -#, fuzzy msgid "Activate the _focused image" msgstr "Aktivoi kohdistettu kuva" @@ -7218,19 +6569,16 @@ msgstr "Ikkunoiden sijainnit" #: app/dialogs/preferences-dialog.c:2152 -#, fuzzy msgid "_Save window positions on exit" msgstr "Tallenna ikkunoiden sijainnit poistuttaessa" #: app/dialogs/preferences-dialog.c:2156 -#, fuzzy msgid "Save Window Positions _Now" -msgstr "Tallenna ikkunoiden sijainnit nyt" +msgstr "Tallenna ikkunoiden sijainnit _nyt" #: app/dialogs/preferences-dialog.c:2163 -#, fuzzy msgid "_Reset Saved Window Positions to Default Values" -msgstr "Palauta ikkunoiden sijainnit poistuttaessa" +msgstr "_Palauta ikkunoiden sijainnit poistuttaessa" #: app/dialogs/preferences-dialog.c:2178 app/dialogs/preferences-dialog.c:2181 #: app/dialogs/preferences-dialog.c:2329 @@ -7242,53 +6590,44 @@ msgstr "Resurssikulutus" #: app/dialogs/preferences-dialog.c:2199 -#, fuzzy msgid "Minimal number of _undo levels:" msgstr "Kumoamistoiminnolle varatut tasot:" #: app/dialogs/preferences-dialog.c:2202 -#, fuzzy msgid "Maximum undo _memory:" msgstr "Muistin käyttö kumoamistoiminnolle:" #: app/dialogs/preferences-dialog.c:2205 -#, fuzzy msgid "Tile cache _size:" msgstr "Kuvavälimuistin koko:" #: app/dialogs/preferences-dialog.c:2208 -#, fuzzy msgid "Maximum _new image size:" -msgstr "Kuvan enimmäiskoko:" +msgstr "Uuden kuvan enimmäiskoko:" #: app/dialogs/preferences-dialog.c:2213 -#, fuzzy msgid "Number of _processors to use:" msgstr "Käytettävien suorittimien lukumäärä:" #. Image Thumbnails #: app/dialogs/preferences-dialog.c:2218 -#, fuzzy msgid "Image Thumbnails" -msgstr "Kuvamaski" +msgstr "Kuvien esikatselut" #: app/dialogs/preferences-dialog.c:2223 -#, fuzzy msgid "Size of _thumbnails:" msgstr "Esikatselukuvan koko:" #: app/dialogs/preferences-dialog.c:2227 msgid "Maximum _filesize for thumbnailing:" -msgstr "" +msgstr "Suurin tiedostokoko, josta tehdään esikatselu." #. File Saving #: app/dialogs/preferences-dialog.c:2231 -#, fuzzy msgid "Saving Images" -msgstr "Tallenna kuva" +msgstr "Kuvien tallennus" #: app/dialogs/preferences-dialog.c:2234 -#, fuzzy msgid "Confirm closing of unsa_ved images" msgstr "Vahvista tallentamattomien kuvien sulkeminen" @@ -7297,23 +6636,19 @@ msgstr "Kansiot" #: app/dialogs/preferences-dialog.c:2263 -#, fuzzy msgid "Temp folder:" msgstr "Tilapäistiedostot:" #: app/dialogs/preferences-dialog.c:2263 -#, fuzzy msgid "Select Temp Folder" -msgstr "Valitse teemakansiot" +msgstr "Valitse tilapäiskansio" #: app/dialogs/preferences-dialog.c:2264 #: app/dialogs/user-install-dialog.c:1403 -#, fuzzy msgid "Swap folder:" msgstr "Sivutuskansio:" #: app/dialogs/preferences-dialog.c:2264 -#, fuzzy msgid "Select Swap Folder" msgstr "Valitse sivutuskansio" @@ -7406,61 +6741,53 @@ msgstr "Valitse teemakansiot" #: app/dialogs/print-size-dialog.c:128 -#, fuzzy msgid "Print Size" -msgstr "Tulostuskoko:" +msgstr "Tulostuskoko" #. the image size labels -#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:241 +#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:222 #: app/widgets/gimptemplateeditor.c:236 -#, fuzzy msgid "_Width:" -msgstr "Leveys:" +msgstr "_Leveys:" -#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:248 +#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:225 #: app/widgets/gimptemplateeditor.c:243 -#, fuzzy msgid "H_eight:" -msgstr "Korkeus:" +msgstr "_Korkeus:" #. the resolution labels -#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:338 +#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:273 #: app/widgets/gimptemplateeditor.c:363 -#, fuzzy msgid "_X resolution:" -msgstr "Tarkkuus:" +msgstr "X-tarkkuus:" -#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:345 +#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:276 #: app/widgets/gimptemplateeditor.c:370 -#, fuzzy msgid "_Y resolution:" -msgstr "Tarkkuus:" +msgstr "Y-tarkkuus:" -#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:357 +#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:269 #: app/widgets/gimptemplateeditor.c:383 #, c-format msgid "pixels/%a" msgstr "pikseleitä/%a" #: app/dialogs/quit-dialog.c:84 -#, fuzzy msgid "Quit The GIMP" msgstr "Poistutaanko GIMPistä?" #: app/dialogs/quit-dialog.c:126 -#, fuzzy msgid "If you quit GIMP now, these changes will be lost." msgstr "Tallentamattomat muutokset menetetään." #: app/dialogs/quit-dialog.c:164 -#, fuzzy msgid "There is one image with unsaved changes:" -msgstr "Muuta ikkunan kun kuvan koko muuttuu" +msgstr "Kuvalla on tallentamattomia muutoksia:" #: app/dialogs/quit-dialog.c:167 #, c-format msgid "There are %d images with unsaved changes:" -msgstr "" +msgstr "%d kuvaa joissa on tallentamattomia muutoksia:" #: app/dialogs/quit-dialog.c:183 #, fuzzy @@ -7472,26 +6799,24 @@ msgstr "Kankaan koko" #: app/dialogs/resize-dialog.c:126 app/dialogs/scale-dialog.c:107 -#, fuzzy msgid "Layer Size" -msgstr "Tason valinta" +msgstr "Tason koko" #: app/dialogs/resolution-calibrate-dialog.c:67 msgid "Calibrate Monitor Resolution" msgstr "Näytön resoluution kalibrointi" #: app/dialogs/resolution-calibrate-dialog.c:120 -#, fuzzy msgid "Measure the rulers and enter their lengths:" -msgstr "Mittaa viivaimet ja syötä niiden pituudet allaoleviin syöttökenttiin." +msgstr "Mittaa viivaimet ja syötä niiden pituudet:" #: app/dialogs/resolution-calibrate-dialog.c:145 msgid "_Horizontal:" -msgstr "Vaakasuuntaan:" +msgstr "_Vaakasuuntaan:" #: app/dialogs/resolution-calibrate-dialog.c:150 msgid "_Vertical:" -msgstr "Pystysuuntaan:" +msgstr "_Pystysuuntaan:" #. Image size frame #: app/dialogs/scale-dialog.c:96 app/widgets/gimptemplateeditor.c:214 @@ -7499,27 +6824,24 @@ msgstr "Kuvan koko" #: app/dialogs/scale-dialog.c:166 -#, fuzzy msgid "Quality" -msgstr "/Tiedosto/_Poistu" +msgstr "Laatu" #: app/dialogs/scale-dialog.c:178 -#, fuzzy msgid "I_nterpolation:" msgstr "Interpolaatio:" #: app/dialogs/scale-dialog.c:192 -#, fuzzy msgid "" "Indexed color layers are always scaled without interpolation. The chosen " "interpolation type will affect channels and masks only." msgstr "" -"Kuvat indeksoidulla paletilla skaalataan aina ilman interpolaatiota.\n" -"Asetus vaikuttaa vain skaalaaviin kanaviin ja maskeihin." +"Kuvat indeksoidulla paletilla skaalataan aina ilman interpolaatiota. Asetus " +"vaikuttaa vain skaalaaviin kanaviin ja maskeihin." #: app/dialogs/stroke-dialog.c:104 msgid "Choose Stroke Style" -msgstr "" +msgstr "Valitse piirtotyyli" #: app/dialogs/stroke-dialog.c:209 msgid "Paint Tool:" @@ -7547,14 +6869,12 @@ msgstr "Näytä vihjeet seuraavalla kerralla" #: app/dialogs/tips-dialog.c:219 -#, fuzzy msgid "_Previous tip" -msgstr "Edellinen vihje" +msgstr "_Edellinen vihje" #: app/dialogs/tips-dialog.c:228 -#, fuzzy msgid "_Next tip" -msgstr "Seuraava vihje" +msgstr "_Seuraava vihje" #. This is a special string to specify the language identifier to #. look for in the gimp-tips.xml file. Please translate the C in it @@ -7563,7 +6883,7 @@ #. #: app/dialogs/tips-parser.c:165 msgid "tips-locale:C" -msgstr "" +msgstr "tips-locale:fi" #: app/dialogs/user-install-dialog.c:134 msgid "" @@ -7591,10 +6911,9 @@ "This file is intended to be GIMP-readable only, and should not be edited." msgstr "" "Liitännäiset ja laajennokset ovat GIMPin suorittamia erillisiä ohjelmia " -"jotka laajentavat sen toiminnallisuutta.\n" -"Näitä ohjelmia etsitään ajonaikaisesti ja tietoa niiden toiminnoista sekä " -"niiden aikaleimat säilötään tässä tiedostossa. Tätä tiedostoa ei pidä " -"muokata käsin." +"jotka laajentavat sen toiminnallisuutta. Näitä ohjelmia etsitään " +"ajonaikaisesti ja tietoa niiden toiminnoista sekä niiden aikaleimat " +"säilötään tässä tiedostossa. Tätä tiedostoa ei pidä muokata käsin." #: app/dialogs/user-install-dialog.c:159 msgid "" @@ -7623,7 +6942,7 @@ msgid "" "This file holds a collection of standard media sizes that serve as image " "templates." -msgstr "Tässä tiedostossa on kokoelma eri kokoisia malleja" +msgstr "Tässä tiedostossa on kokoelma eri kokoisia malleja." #: app/dialogs/user-install-dialog.c:182 msgid "" @@ -7675,9 +6994,9 @@ "folder in addition to the system-wide GIMP palettes installation when " "searching for palettes." msgstr "" -"Tämä on kansio jonne voit tallentaa luomiasi paletteja.\n" -"Oletusarvoisesti gimprc-tiedosto ohjaa GIMPiä etsimään paletteja tästä " -"kansiosta järjestelmälaajuisen kuviokansion lisäksi." +"Tämä on kansio jonne voit tallentaa luomiasi paletteja. Oletusarvoisesti " +"gimprc-tiedosto ohjaa GIMPiä etsimään paletteja tästä kansiosta " +"järjestelmälaajuisen kuviokansion lisäksi." #: app/dialogs/user-install-dialog.c:223 msgid "" @@ -7685,9 +7004,9 @@ "folder in addition to the system-wide GIMP patterns installation when " "searching for patterns." msgstr "" -"Tämä on kansio jonne voit tallentaa luomiasi kuvioita.\n" -"Oletusarvoisesti gimprc-tiedosto ohjaa GIMPiä etsimään paletteja tästä " -"kansiosta järjestelmälaajuisen kuviokansion lisäksi." +"Tämä on kansio jonne voit tallentaa luomiasi kuvioita. Oletusarvoisesti " +"gimprc-tiedosto ohjaa GIMPiä etsimään paletteja tästä kansiosta " +"järjestelmälaajuisen kuviokansion lisäksi." #: app/dialogs/user-install-dialog.c:230 msgid "" @@ -7695,9 +7014,9 @@ "system-supported plug-ins. The GIMP checks this folder in addition to the " "system-wide GIMP plug-in folder when searching for plug-ins." msgstr "" -"Tämä on kansio jonne voit tallentaa liitännäisohjelmia.\n" -"Oletusarvoisesti gimprc-tiedosto ohjaa GIMPiä etsimään liitännäisiä tästä " -"kansiosta järjestelmälaajuisen liitännäiskansion lisäksi." +"Tämä on kansio jonne voit tallentaa liitännäisohjelmia. Oletusarvoisesti " +"gimprc-tiedosto ohjaa GIMPiä etsimään liitännäisiä tästä kansiosta " +"järjestelmälaajuisen liitännäiskansion lisäksi." #: app/dialogs/user-install-dialog.c:238 msgid "" @@ -7706,9 +7025,9 @@ "the system-wide GIMP module folder when searching for modules to load during " "initialization." msgstr "" -"Tämä on kansio jonne voit tallentaa GIMPin lisämoduleja.\n" -"Oletusarvoisesti gimprc-tiedosto ohjaa GIMPiä etsimään moduleja tästä " -"kansiosta järjestelmälaajuisen modulikansion lisäksi." +"Tämä on kansio jonne voit tallentaa GIMPin lisämoduleja. Oletusarvoisesti " +"gimprc-tiedosto ohjaa GIMPiä etsimään moduleja tästä kansiosta " +"järjestelmälaajuisen modulikansion lisäksi." #: app/dialogs/user-install-dialog.c:247 msgid "" @@ -7717,9 +7036,9 @@ "folder in addition to the system-wide GIMP environment folder when searching " "for plug-in environment modification files." msgstr "" -"Tämä on kansio jonne voit tallentaa liitännäisohjelmia.\n" -"Oletusarvoisesti gimprc-tiedosto ohjaa GIMPiä etsimään liitännäisiä tästä " -"kansiosta järjestelmälaajuisen liitännäiskansion lisäksi." +"Tämä on kansio jonne voit tallentaa liitännäisohjelmia. Oletusarvoisesti " +"gimprc-tiedosto ohjaa GIMPiä etsimään liitännäisiä tästä kansiosta " +"järjestelmälaajuisen liitännäiskansion lisäksi." #: app/dialogs/user-install-dialog.c:257 msgid "" @@ -7727,9 +7046,9 @@ "checks this folder in addition to the systemwide GIMP scripts folder when " "searching for scripts." msgstr "" -"Tämä on kansio jonne voit tallentaa Script-Fu skriptejä.\n" -"Oletusarvoisesti gimprc-tiedosto ohjaa GIMPiä etsimään skriptejä tästä " -"kansiosta järjestelmälaajuisen skriptikansion lisäksi." +"Tämä on kansio jonne voit tallentaa Script-Fu skriptejä. Oletusarvoisesti " +"gimprc-tiedosto ohjaa GIMPiä etsimään skriptejä tästä kansiosta " +"järjestelmälaajuisen skriptikansion lisäksi." #: app/dialogs/user-install-dialog.c:265 msgid "This folder is searched for image templates." @@ -7746,11 +7065,10 @@ "<#> may persist in this folder. These files are useless across GIMP " "sessions and can be destroyed with impunity." msgstr "" -"Tämä on kansio jonne GIMP tallentaa tilapäisiä puskureita\n" -"muistikäytön säästämiseksi. Jos GIMPin suoritus pysähtyy virheeseen tähän " -"kansioon voi jäädä tiedostoja joiden nimet ovat muotoa: gimp#.#. Näitä " -"tiedostoja ei tarvitse säilyttää käyttökertojen välillä, ja ne voi poistaa " -"ilman haittaa." +"Tämä on kansio jonne GIMP tallentaa tilapäisiä puskureita muistikäytön " +"säästämiseksi. Jos GIMPin suoritus pysähtyy virheeseen tähän kansioon voi " +"jäädä tiedostoja joiden nimet ovat muotoa: gimp#.#. Näitä tiedostoja ei " +"tarvitse säilyttää käyttökertojen välillä, ja ne voi poistaa ilman haittaa." #: app/dialogs/user-install-dialog.c:284 msgid "This folder is used to store tool options." @@ -7786,13 +7104,13 @@ #. GPL_PAGE #. version number #: app/dialogs/user-install-dialog.c:765 -#, fuzzy, c-format +#, c-format msgid "" "Welcome to\n" "The GIMP %d.%d User Installation" msgstr "" -"Tervetuloa\n" -"Henkilökohtainen GIMP-asennus" +"Tervetuloa!\n" +"Gimp %d.%d. Henkilökohtainen GIMP-asennus" #: app/dialogs/user-install-dialog.c:771 msgid "Click \"Continue\" to enter the GIMP user installation." @@ -7845,25 +7163,23 @@ #: app/dialogs/user-install-dialog.c:810 msgid "Migrate User Settings" -msgstr "" +msgstr "Siirrä käyttäjän asetukset" #: app/dialogs/user-install-dialog.c:811 -#, fuzzy msgid "Click \"Continue\" to proceed with the user installation." msgstr "Napsauta \"Jatka\" aloittaaksesi henkilökohtaisen GIMP-asennuksen." #: app/dialogs/user-install-dialog.c:816 msgid "It seems you have used GIMP 2.0 before." -msgstr "" +msgstr "Olet käyttänyt GIMP 2.0:aa ennen." #: app/dialogs/user-install-dialog.c:820 msgid "_Migrate GIMP 2.0 user settings" -msgstr "" +msgstr "_Siirrä käyttäjän GIMP 2.0 -asetukset." #: app/dialogs/user-install-dialog.c:823 -#, fuzzy msgid "Do a _fresh user installation" -msgstr "Henkilökohtainen GIMP-asennus" +msgstr "Tee uusi GIMP-asennus" #: app/dialogs/user-install-dialog.c:851 msgid "Personal GIMP Folder" @@ -7886,7 +7202,7 @@ "files or folders in the tree to get more information about the selected item." msgstr "" "Tähän kansioon tulee joukko tärkeitä tiedostoja ja alikansioita. Napsauta " -"yhtä tiedostoa tai kansiota vasemmalla niin saat lisää tietoa siitä." +"yhtä tiedostoa tai kansiota vasemmalla niin saat lisätietoja siitä." #: app/dialogs/user-install-dialog.c:991 msgid "User Installation Log" @@ -7898,7 +7214,7 @@ #: app/dialogs/user-install-dialog.c:999 msgid "GIMP Performance Tuning" -msgstr "GIMP'n virittely" +msgstr "GIMPin suorituskyvyn virittely" #: app/dialogs/user-install-dialog.c:1000 msgid "Click \"Continue\" to accept the settings above." @@ -7914,17 +7230,17 @@ #: app/dialogs/user-install-dialog.c:1065 #, c-format msgid "Copying file '%s' from '%s'..." -msgstr "Kopioidaan tiedosto '%s' -> '%s'..." +msgstr "Kopioidaan tiedosto \"%s\" -> \"%s\"..." #: app/dialogs/user-install-dialog.c:1084 #, c-format msgid "Creating folder '%s'..." -msgstr "Luodaan kansio '%s'..." +msgstr "Luodaan kansio \"%s\"..." #: app/dialogs/user-install-dialog.c:1098 #, c-format msgid "Cannot create folder '%s': %s" -msgstr "Kansion '%s' luonti epäonnistui: %s" +msgstr "Kansion \"%s\" luonti epäonnistui: %s" #: app/dialogs/user-install-dialog.c:1362 msgid "" @@ -7937,7 +7253,6 @@ "olevien ohjelmien vaatima muistitila." #: app/dialogs/user-install-dialog.c:1375 -#, fuzzy msgid "Tile cache size:" msgstr "Kuvavälimuistin koko:" @@ -7954,7 +7269,6 @@ "Unix-järjestelmässä sopivin paikka on /var/tmp tai /tmp -hakemisto." #: app/dialogs/user-install-dialog.c:1398 -#, fuzzy msgid "Select swap dir" msgstr "Valitse sivutuskansio" @@ -7963,49 +7277,42 @@ msgstr "Tallenna polku SVG -tiedostoon" #: app/dialogs/vectors-export-dialog.c:78 -#, fuzzy msgid "Export the active path" -msgstr "Siirrä valittua polkua" +msgstr "Vie valittu polku" #: app/dialogs/vectors-export-dialog.c:79 -#, fuzzy msgid "Export all paths from this image" -msgstr "Luo kuvalle uusi näkymä" +msgstr "Vie kaikki polut" #: app/dialogs/vectors-import-dialog.c:57 msgid "Import Paths from SVG" msgstr "Tuo polut SVG -tiedostosta" #: app/dialogs/vectors-import-dialog.c:83 -#, fuzzy msgid "All Files (*.*)" -msgstr "Suodattimet" +msgstr "Kaikki tiedostot" #: app/dialogs/vectors-import-dialog.c:88 msgid "Scalable SVG image (*.svg)" -msgstr "" +msgstr "Skaalattava SVG-kuva (*.svg)" #: app/dialogs/vectors-import-dialog.c:99 -#, fuzzy msgid "_Merge imported paths" -msgstr "Tuo polku" +msgstr "Yhdistä tuodut polut" #: app/dialogs/vectors-import-dialog.c:109 msgid "_Scale imported paths to fit image" -msgstr "" +msgstr "_Skaalaa tuodut polkut sopimaan kuvaan" #: app/dialogs/vectors-options-dialog.c:113 -#, fuzzy msgid "Path Name:" msgstr "Polun nimi:" #: app/display/display-enums.c:24 -#, fuzzy msgid "Tool icon" -msgstr "Työkalujen asetukset" +msgstr "Työkalukuvake" #: app/display/display-enums.c:25 -#, fuzzy msgid "Tool icon with crosshair" msgstr "Työkalu ikoni ristinä" @@ -8014,80 +7321,74 @@ msgstr "Vain risti" #: app/display/display-enums.c:55 -#, fuzzy msgid "From theme" msgstr "Teemasta" #: app/display/display-enums.c:56 -#, fuzzy msgid "Light check color" msgstr "Vaalea ruudutus" #: app/display/display-enums.c:57 -#, fuzzy msgid "Dark check color" msgstr "Tumma ruudutus" #: app/display/display-enums.c:58 -#, fuzzy msgid "Custom color" msgstr "Mukautettu väri" #: app/display/gimpdisplayshell.c:943 msgid "Zoom image when window size changes" -msgstr "" +msgstr "Suurenna kuvaa kun ikkunan koko muuttuu" #: app/display/gimpdisplayshell.c:963 -#, fuzzy msgid "Toggle Quick Mask" -msgstr "Aseta maski" +msgstr "Aseta Qmaski" #: app/display/gimpdisplayshell-close.c:122 #: app/display/gimpdisplayshell-close.c:185 -#, fuzzy, c-format +#, c-format msgid "Close %s" -msgstr "Sulje %s ?" +msgstr "Sulje %s" #: app/display/gimpdisplayshell-close.c:131 msgid "Do_n't save" -msgstr "" +msgstr "Älä tallenna" #: app/display/gimpdisplayshell-close.c:192 #, c-format msgid "Save the changes to image '%s' before closing?" -msgstr "" +msgstr "Tallenna muutokset kuvaan '%s' ennen sulkemista?" #: app/display/gimpdisplayshell-close.c:209 -#, fuzzy, c-format +#, c-format msgid "If you don't save the image, changes from the last %s will be lost." -msgstr "Tallentamattomat muutokset menetetään." +msgstr "" +"Jos et tallenna kuvaa, viimeisimmät muutokset menetetään (tallentamatta: %s)." #. one second, the time period #: app/display/gimpdisplayshell-close.c:266 -#, fuzzy msgid "second" -msgstr "Kuvake" +msgstr "sekunnin" #: app/display/gimpdisplayshell-close.c:269 #, c-format msgid "%d seconds" -msgstr "" +msgstr "%d sekuntia" #: app/display/gimpdisplayshell-close.c:275 -#, fuzzy msgid "minute" -msgstr "Viiva" +msgstr "minuutin" #: app/display/gimpdisplayshell-close.c:277 -#, fuzzy, c-format +#, c-format msgid "%d minutes" -msgstr "%d tavua" +msgstr "%d minuuttia" -#: app/display/gimpdisplayshell-dnd.c:96 +#: app/display/gimpdisplayshell-dnd.c:98 msgid "Drop New Layer" msgstr "Pudota uusi taso" -#: app/display/gimpdisplayshell-dnd.c:140 +#: app/display/gimpdisplayshell-dnd.c:142 msgid "Drop New Path" msgstr "Pudota uusi polku" @@ -8117,7 +7418,7 @@ #: app/display/gimpdisplayshell-scale.c:601 msgid "Zoom:" -msgstr "Suurenna" +msgstr "Suurenna:" #: app/display/gimpdisplayshell-title.c:234 msgid "RGB-empty" @@ -8140,13 +7441,12 @@ msgstr "indeksoitu" #: app/display/gimpdisplayshell-title.c:292 -#, fuzzy msgid "(modified)" -msgstr "Ainoastaan jos muokattu" +msgstr "(muutettu)" #: app/display/gimpdisplayshell-title.c:298 msgid "(clean)" -msgstr "" +msgstr "(muokkaamaton)" #: app/display/gimpdisplayshell-title.c:325 msgid "1 layer" @@ -8158,13 +7458,12 @@ msgstr "%d tasoa" #: app/display/gimpstatusbar.c:142 -#, fuzzy msgid "Shadow type" -msgstr "Varjot" +msgstr "Varjon tyyppi" #: app/display/gimpstatusbar.c:143 msgid "Style of bevel around the statusbar text" -msgstr "" +msgstr "Tilapalkin reunustus" #: app/display/gimpstatusbar.c:218 msgid "Cancel" @@ -8187,9 +7486,8 @@ msgstr "Liitännäinen: tiedoston avaaminen epäonnistui" #: app/file/file-open.c:417 -#, fuzzy msgid "Image doesn't contain any visible layers" -msgstr "Valinta kaikille näkyville tasoille" +msgstr "Kuvassa ei ole näkyviä tasoja" #: app/file/file-save.c:220 msgid "Plug-In could not save image" @@ -8200,9 +7498,9 @@ msgstr "Osoitteessa on virheellinen merkkijono" #: app/gui/session.c:247 app/menus/menus.c:351 app/widgets/gimpdevices.c:218 -#, fuzzy, c-format +#, c-format msgid "Deleting \"%s\" failed: %s" -msgstr "Tiedoston \"%s\" avaaminen epäonnistui: %s" +msgstr "Tiedoston \"%s\" tuhoaminen epäonnistui: %s" #: app/gui/splash.c:118 msgid "GIMP Startup" @@ -8259,17 +7557,14 @@ msgstr "Sormi" #: app/paint/paint-enums.c:23 -#, fuzzy msgid "Image source" msgstr "Kuva lähteenä" #: app/paint/paint-enums.c:24 -#, fuzzy msgid "Pattern source" msgstr "Kuvio lähteenä" #: app/paint/paint-enums.c:52 -#, fuzzy msgid "Non-aligned" msgstr "Ei linjassa" @@ -8337,7 +7632,6 @@ msgstr "Raja-arvo" #: app/pdb/drawable_transform_cmds.c:249 app/pdb/drawable_transform_cmds.c:404 -#, fuzzy msgid "Flip..." msgstr "Käännetään..." @@ -8356,7 +7650,6 @@ #: app/pdb/drawable_transform_cmds.c:2124 #: app/pdb/drawable_transform_cmds.c:2311 #: app/pdb/drawable_transform_cmds.c:2512 app/pdb/transform_tools_cmds.c:719 -#, fuzzy msgid "2D Transform..." msgstr "Muunnetaan..." @@ -8366,7 +7659,7 @@ #: app/pdb/image_cmds.c:3756 app/text/gimptext-parasite.c:168 msgid "(invalid UTF-8 string)" -msgstr "(epäkelpo unicode-merkkijono)" +msgstr "(epäkelpo Unicode-merkkijono)" #: app/pdb/image_cmds.c:3898 msgid "" @@ -8379,9 +7672,8 @@ msgstr "Sisäiset proseduurit" #: app/pdb/internal_procs.c:86 -#, fuzzy msgid "Brush" -msgstr "Sivellin:" +msgstr "Sivellin" #: app/pdb/internal_procs.c:89 msgid "Brush UI" @@ -8406,9 +7698,8 @@ msgstr "Kuvaproseduurit" #: app/pdb/internal_procs.c:113 -#, fuzzy msgid "Transformation procedures" -msgstr "Työkaluproseduurit" +msgstr "Muunnosproseduurit" #: app/pdb/internal_procs.c:116 msgid "Edit procedures" @@ -8431,9 +7722,8 @@ msgstr "Gimprc-proseduurit" #: app/pdb/internal_procs.c:134 -#, fuzzy msgid "Gradient" -msgstr "Väriliukuma:" +msgstr "Väriliukuma" #: app/pdb/internal_procs.c:137 msgid "Gradient UI" @@ -8540,9 +7830,9 @@ msgstr "Vapaa valinta" #: app/plug-in/plug-in.c:544 app/plug-in/plug-in.c:574 -#, fuzzy, c-format +#, c-format msgid "Terminating plug-in: '%s'\n" -msgstr "Haetaan liitännäistä: \"%s\"\n" +msgstr "Suljetaan liitännäinen \"%s\"\n" #: app/plug-in/plug-in.c:730 #, c-format @@ -8564,14 +7854,14 @@ msgstr "Ohitetaan \"%s\": väärä GIMP-protokollan versio." #: app/plug-in/plug-in-rc.c:432 -#, fuzzy, c-format +#, c-format msgid "invalid value '%s' for icon type" -msgstr "kelvoton arvo \"%s\" symbolille %s" +msgstr "väärä arvo \"%s\" ikonityypille" #: app/plug-in/plug-in-rc.c:447 -#, fuzzy, c-format +#, c-format msgid "invalid value '%ld' for icon type" -msgstr "kelvoton arvo \"%ld\" symbolille %s" +msgstr "väärä arvo \"%ld\" ikonityypille" #: app/plug-in/plug-ins.c:139 msgid "Resource configuration" @@ -8609,12 +7899,10 @@ msgstr "Käynnistetään laajennus %s.\n" #: app/text/text-enums.c:81 -#, fuzzy msgid "Left justified" msgstr "Vasemman reunan tasaus" #: app/text/text-enums.c:82 -#, fuzzy msgid "Right justified" msgstr "Oikean reunan tasaus" @@ -8633,7 +7921,7 @@ "Pack my box with\n" "five dozen liquor jugs." msgstr "" -"Isoviisaria Aira siivosi.\n" +"Iske siat lekalla keltaiseksi!\n" "ABCabc XYZxyz åäöÅÄÖàášü€" #: app/text/gimptext-compat.c:106 app/tools/gimptexttool.c:697 @@ -8645,24 +7933,20 @@ msgstr "Tekstitaso" #: app/text/gimptextlayer.c:171 -#, fuzzy msgid "Rename Text Layer" -msgstr "Uudelleennimeä taso" +msgstr "Uudelleennimeä tekstitaso" #: app/text/gimptextlayer.c:172 -#, fuzzy msgid "Move Text Layer" -msgstr "Pyöritä tekstitasoa" +msgstr "Siirrä tekstitasoa" #: app/text/gimptextlayer.c:173 -#, fuzzy msgid "Scale Text Layer" -msgstr "Skaalaa tasoa" +msgstr "Skaalaa tekstitasoa" #: app/text/gimptextlayer.c:174 -#, fuzzy msgid "Resize Text Layer" -msgstr "Muuta tason kokoa" +msgstr "Muuta tekstitason kokoa" #: app/text/gimptextlayer.c:175 msgid "Flip Text Layer" @@ -8673,9 +7957,8 @@ msgstr "Pyöritä tekstitasoa" #: app/text/gimptextlayer.c:177 -#, fuzzy msgid "Transform Text Layer" -msgstr "Muunna taso" +msgstr "Muunna tekstitaso" #: app/text/gimptextlayer.c:531 msgid "Discard Text Information" @@ -8705,17 +7988,14 @@ "tarvitse välittää." #: app/tools/tools-enums.c:25 -#, fuzzy msgid "Pick only" msgstr "Pelkkä valinta" #: app/tools/tools-enums.c:26 -#, fuzzy msgid "Set foreground color" msgstr "Edustaväri" #: app/tools/tools-enums.c:27 -#, fuzzy msgid "Set background color" msgstr "Aseta taustaväri" @@ -8728,32 +8008,26 @@ msgstr "Muuta kokoa" #: app/tools/tools-enums.c:83 -#, fuzzy msgid "Free select" msgstr "Vapaa valinta" #: app/tools/tools-enums.c:84 -#, fuzzy msgid "Fixed size" msgstr "Kiinteä koko" #: app/tools/tools-enums.c:85 -#, fuzzy msgid "Fixed aspect ratio" msgstr "Kiinteä kuvasuhde" #: app/tools/tools-enums.c:113 -#, fuzzy msgid "Transform layer" msgstr "Muunna taso" #: app/tools/tools-enums.c:114 -#, fuzzy msgid "Transform selection" msgstr "Muunna valinta" #: app/tools/tools-enums.c:115 -#, fuzzy msgid "Transform path" msgstr "Muunna polku" @@ -8767,20 +8041,17 @@ #: app/tools/tools-enums.c:174 msgid "Outline" -msgstr "" +msgstr "Ulkoreuna" #: app/tools/tools-enums.c:177 -#, fuzzy msgid "Image + Grid" -msgstr "kuvan muokkaus" +msgstr "Kuva ja apuviivat" #: app/tools/tools-enums.c:204 -#, fuzzy msgid "Number of grid lines" msgstr "Apuviivojen määrä" #: app/tools/tools-enums.c:205 -#, fuzzy msgid "Grid line spacing" msgstr "Apuviivojen väli" @@ -8793,7 +8064,6 @@ msgstr "Ruiskuta väriä vaihtelevalla paineella" #: app/tools/gimpairbrushtool.c:57 -#, fuzzy msgid "_Airbrush" msgstr "Ruisku" @@ -8812,14 +8082,13 @@ #: app/tools/gimpblendoptions.c:255 app/widgets/gimpbrusheditor.c:145 msgid "Shape:" -msgstr "Muoto" +msgstr "Muoto:" #: app/tools/gimpblendoptions.c:261 app/tools/gimppaintoptions-gui.c:418 msgid "Repeat:" msgstr "Toista:" #: app/tools/gimpblendoptions.c:279 -#, fuzzy msgid "Adaptive supersampling" msgstr "Ylinäytteistys" @@ -8837,7 +8106,6 @@ msgstr "Täytä väriliukumalla" #: app/tools/gimpblendtool.c:103 -#, fuzzy msgid "Blen_d" msgstr "Sekoita" @@ -8855,9 +8123,8 @@ msgstr "Kirkkauden ja kontrastin säätö" #: app/tools/gimpbrightnesscontrasttool.c:87 -#, fuzzy msgid "B_rightness-Contrast..." -msgstr "Kirkkaus- ja kontrastisäätö" +msgstr "Kirkkaus- ja kontrastisäätö..." #: app/tools/gimpbrightnesscontrasttool.c:138 msgid "Adjust Brightness and Contrast" @@ -8900,12 +8167,10 @@ msgstr "Vaikutusalue %s" #: app/tools/gimpbucketfilloptions.c:254 -#, fuzzy msgid "Fill whole selection" msgstr "Täytä koko valinta" #: app/tools/gimpbucketfilloptions.c:255 -#, fuzzy msgid "Fill similar colors" msgstr "Täytä samanväriset alueet" @@ -8914,14 +8179,12 @@ msgstr "Etsi samanväriset alueet" #: app/tools/gimpbucketfilloptions.c:277 -#, fuzzy msgid "Fill transparent areas" msgstr "Täytä läpinäkyvät alueet" #: app/tools/gimpbucketfilloptions.c:283 #: app/tools/gimpcolorpickeroptions.c:179 app/tools/gimpselectionoptions.c:454 #: app/tools/gimpselectionoptions.c:502 -#, fuzzy msgid "Sample merged" msgstr "Yhdistetty valinta" @@ -8930,7 +8193,6 @@ msgstr "Täytä värillä tai kuviolla" #: app/tools/gimpbucketfilltool.c:93 -#, fuzzy msgid "_Bucket Fill" msgstr "Täyttö" @@ -8943,7 +8205,6 @@ msgstr "Valitse osia kuvasta värien mukaan" #: app/tools/gimpbycolorselecttool.c:84 -#, fuzzy msgid "_By Color Select" msgstr "Valinta värin mukaan" @@ -8952,7 +8213,6 @@ msgstr "Maalaa käyttäen kuviota tai kuvan osia" #: app/tools/gimpclonetool.c:91 -#, fuzzy msgid "_Clone" msgstr "Kloonaus" @@ -8969,9 +8229,8 @@ msgstr "Väritasapainon säätö" #: app/tools/gimpcolorbalancetool.c:98 -#, fuzzy msgid "Color _Balance..." -msgstr "Väritasapainon säätö" +msgstr "Väritasapainon säätö..." #: app/tools/gimpcolorbalancetool.c:149 msgid "Adjust Color Balance" @@ -9002,12 +8261,10 @@ msgstr "Keltainen" #: app/tools/gimpcolorbalancetool.c:325 -#, fuzzy msgid "R_eset range" msgstr "Palauta alkuperäinen" #: app/tools/gimpcolorbalancetool.c:334 -#, fuzzy msgid "Preserve _luminosity" msgstr "Säilytä valoisuus" @@ -9016,9 +8273,8 @@ msgstr "Väritä kuvaa" #: app/tools/gimpcolorizetool.c:98 -#, fuzzy msgid "Colori_ze..." -msgstr "Väritä" +msgstr "Väritä..." #: app/tools/gimpcolorizetool.c:152 msgid "Colorize the Image" @@ -9045,7 +8301,6 @@ msgstr "Valoisuus (L):" #: app/tools/gimpcoloroptions.c:184 -#, fuzzy msgid "Sample average" msgstr "Näytteistä keskiarvo" @@ -9062,9 +8317,9 @@ #. the add to palette toggle #: app/tools/gimpcolorpickeroptions.c:193 -#, fuzzy, c-format +#, c-format msgid "Add to palette %s" -msgstr "/Muokkaa palettia..." +msgstr "Lisää palettiin %s" #: app/tools/gimpcolorpickertool.c:99 msgid "Color Picker" @@ -9075,7 +8330,6 @@ msgstr "Poimi värejä kuvasta" #: app/tools/gimpcolorpickertool.c:101 -#, fuzzy msgid "C_olor Picker" msgstr "Väripoiminta" @@ -9089,7 +8343,6 @@ msgstr "Epäterävöi tai terävöi" #: app/tools/gimpconvolvetool.c:72 -#, fuzzy msgid "Con_volve" msgstr "Konvoluutio" @@ -9107,21 +8360,20 @@ msgstr "Työkalu päälle/pois %s" #: app/tools/gimpcropoptions.c:200 -#, fuzzy msgid "Current layer only" msgstr "Vain nykyinen taso" #. enlarge toggle #: app/tools/gimpcropoptions.c:205 -#, fuzzy, c-format +#, c-format msgid "Allow enlarging %s" msgstr "Salli suurennos %s" #. layer toggle #: app/tools/gimpcropoptions.c:215 -#, fuzzy, c-format +#, c-format msgid "Keep aspect ratio %s" -msgstr "Kiinteä kuvasuhde" +msgstr "Säilytä kuvasude %s" #: app/tools/gimpcroptool.c:164 msgid "Crop & Resize" @@ -9132,7 +8384,6 @@ msgstr "Rajaa tai muokkaa kuvan kokoa" #: app/tools/gimpcroptool.c:166 -#, fuzzy msgid "_Crop & Resize" msgstr "Rajaa & muokkaa kokoa" @@ -9147,25 +8398,21 @@ #: app/tools/gimpcroptool.c:1029 msgid "Origin X:" -msgstr "Origo X:" +msgstr "Alkukohta X:" #: app/tools/gimpcroptool.c:1033 -#, fuzzy msgid "Origin Y:" -msgstr "Origo X:" +msgstr "Alkukohta Y:" #: app/tools/gimpcroptool.c:1071 app/widgets/gimpbrusheditor.c:194 -#, fuzzy msgid "Aspect ratio:" msgstr "Suhde:" #: app/tools/gimpcroptool.c:1082 -#, fuzzy msgid "From selection" msgstr "Valinnasta" #: app/tools/gimpcroptool.c:1090 -#, fuzzy msgid "Auto shrink" msgstr "Automaattinen pienennys" @@ -9174,9 +8421,8 @@ msgstr "Värikäyrien säätö" #: app/tools/gimpcurvestool.c:143 -#, fuzzy msgid "_Curves..." -msgstr "Värintoistokäyrät" +msgstr "Värintoistokäyrät..." #: app/tools/gimpcurvestool.c:202 msgid "Adjust Color Curves" @@ -9187,7 +8433,6 @@ msgstr "Lataa väritasoasetukset" #: app/tools/gimpcurvestool.c:205 -#, fuzzy msgid "Load curves settings from file" msgstr "Lataa käyrät tiedostosta" @@ -9201,7 +8446,7 @@ #: app/tools/gimpcurvestool.c:283 msgid "Curves for indexed layers cannot be adjusted." -msgstr "Indeksoitujen kuvien käyriä ei voi muokata" +msgstr "Indeksoitujen kuvien käyriä ei voi muokata." #: app/tools/gimpcurvestool.c:479 app/tools/gimplevelstool.c:415 #: app/widgets/gimphistogrameditor.c:161 @@ -9209,7 +8454,6 @@ msgstr "Kanava:" #: app/tools/gimpcurvestool.c:494 app/tools/gimplevelstool.c:430 -#, fuzzy msgid "R_eset channel" msgstr "Nollaa kanava" @@ -9228,7 +8472,6 @@ msgstr "Varjosta/lisävalota" #: app/tools/gimpdodgeburntool.c:72 -#, fuzzy msgid "Dod_geBurn" msgstr "Varjostus/lisävalotus" @@ -9248,9 +8491,8 @@ #: app/tools/gimpeditselectiontool.c:262 #: app/tools/gimpeditselectiontool.c:1203 -#, fuzzy msgid "Move Floating Selection" -msgstr "Kelluva valinta" +msgstr "Siirrä kelluva valinta" #: app/tools/gimpeditselectiontool.c:464 app/tools/gimpeditselectiontool.c:732 msgid "Move: " @@ -9261,7 +8503,6 @@ msgstr "Valitse ellipsejä" #: app/tools/gimpellipseselecttool.c:73 -#, fuzzy msgid "_Ellipse Select" msgstr "Ellipsivalinta" @@ -9270,13 +8511,12 @@ msgstr "Pyyhi taustaväriin tai läpinäkyväksi" #: app/tools/gimperasertool.c:72 -#, fuzzy msgid "_Eraser" msgstr "Pyyhekumi" #. the anti_erase toggle #: app/tools/gimperasertool.c:185 -#, fuzzy, c-format +#, c-format msgid "Anti erase %s" msgstr "Käänteinen pyyhkiminen %s" @@ -9296,7 +8536,6 @@ msgstr "Tee tasosta tai valinnasta peilikuva" #: app/tools/gimpfliptool.c:84 -#, fuzzy msgid "_Flip" msgstr "Peilikuvatyökalu" @@ -9305,7 +8544,6 @@ msgstr "Valitse vapaamuotoisia alueita" #: app/tools/gimpfreeselecttool.c:98 -#, fuzzy msgid "_Free Select" msgstr "Vapaa valinta" @@ -9314,7 +8552,6 @@ msgstr "Valitse väriltään yhtenäisiä alueita" #: app/tools/gimpfuzzyselecttool.c:99 -#, fuzzy msgid "Fu_zzy Select" msgstr "Epäterävä valinta" @@ -9327,47 +8564,44 @@ msgstr "Värisävyn ja kylläisyyden säätö" #: app/tools/gimphuesaturationtool.c:112 -#, fuzzy msgid "Hue-_Saturation..." -msgstr "Sävy-värikylläisyys" +msgstr "Sävy-värikylläisyys..." #: app/tools/gimphuesaturationtool.c:166 -#, fuzzy msgid "Adjust hue / lightness / saturation" msgstr "Sävyn / valoisuuden / värikylläisyyden (HLS) säätö" #: app/tools/gimphuesaturationtool.c:210 msgid "Hue-Saturation operates only on RGB color layers." -msgstr "Sävy-värikylläisyys toimii vain täysvärikuvilla" +msgstr "Sävy-värikylläisyys toimii vain täysvärikuvilla." #: app/tools/gimphuesaturationtool.c:263 -#, fuzzy msgid "M_aster" msgstr "Pää" #: app/tools/gimphuesaturationtool.c:264 msgid "_R" -msgstr "R" +msgstr "_R" #: app/tools/gimphuesaturationtool.c:265 msgid "_Y" -msgstr "Y" +msgstr "_Y" #: app/tools/gimphuesaturationtool.c:266 msgid "_G" -msgstr "G" +msgstr "_G" #: app/tools/gimphuesaturationtool.c:267 msgid "_C" -msgstr "C" +msgstr "_C" #: app/tools/gimphuesaturationtool.c:268 msgid "_B" -msgstr "B" +msgstr "_B" #: app/tools/gimphuesaturationtool.c:269 msgid "_M" -msgstr "M" +msgstr "_M" #: app/tools/gimphuesaturationtool.c:272 msgid "Select Primary Color to Modify" @@ -9382,7 +8616,6 @@ msgstr "Muokkaa valittua väriä" #: app/tools/gimphuesaturationtool.c:405 -#, fuzzy msgid "R_eset color" msgstr "Palauta väri" @@ -9391,14 +8624,12 @@ msgstr "Esikatselu" #: app/tools/gimpimagemaptool.c:292 -#, fuzzy msgid "Quick Load" -msgstr "Nopea maski" +msgstr "Pikalataus" #: app/tools/gimpimagemaptool.c:322 -#, fuzzy msgid "Quick Save" -msgstr "Nopea maski" +msgstr "Pikatallennus" #. adjust sliders #: app/tools/gimpinkoptions-gui.c:59 @@ -9442,7 +8673,6 @@ msgstr "Piirrä mustekynällä" #: app/tools/gimpinktool.c:64 -#, fuzzy msgid "In_k" msgstr "Mustekynä" @@ -9455,7 +8685,6 @@ msgstr "Valitse muotoja kuvasta" #: app/tools/gimpiscissorstool.c:279 -#, fuzzy msgid "Intelligent _Scissors" msgstr "Älysakset" @@ -9464,9 +8693,8 @@ msgstr "Väritasojen säätö" #: app/tools/gimplevelstool.c:162 -#, fuzzy msgid "_Levels..." -msgstr "Väritasot" +msgstr "Väritasot..." #: app/tools/gimplevelstool.c:220 msgid "Adjust Color Levels" @@ -9477,7 +8705,6 @@ msgstr "Lataa väritasoasetukset" #: app/tools/gimplevelstool.c:223 -#, fuzzy msgid "Load levels settings from file" msgstr "Lataa tasot tiedostosta" @@ -9491,20 +8718,17 @@ #: app/tools/gimplevelstool.c:285 msgid "Levels for indexed layers cannot be adjusted." -msgstr "Indeksoitujen kuvien väritasoja ei voi säätää" +msgstr "Indeksoitujen kuvien väritasoja ei voi säätää." #: app/tools/gimplevelstool.c:355 -#, fuzzy msgid "Pick black point" msgstr "Valitse mustapiste" #: app/tools/gimplevelstool.c:359 -#, fuzzy msgid "Pick gray point" msgstr "Valitse harmaapiste" #: app/tools/gimplevelstool.c:363 -#, fuzzy msgid "Pick white point" msgstr "Valitse valkopiste" @@ -9527,7 +8751,6 @@ msgstr "Säädä tasoja automaattisesti" #: app/tools/gimpmagnifyoptions.c:203 -#, fuzzy msgid "Auto-resize window" msgstr "Muuta ikkunan kokoa suurennoskertoimen mukaan" @@ -9540,12 +8763,10 @@ msgstr "Suurennoskerroin" #: app/tools/gimpmagnifytool.c:97 -#, fuzzy msgid "M_agnify" msgstr "Suurenna" #: app/tools/gimpmeasureoptions.c:157 -#, fuzzy msgid "Use info window" msgstr "Käytä infoikkunaa" @@ -9558,7 +8779,6 @@ msgstr "Mittaa etäisyyksiä ja kulmia" #: app/tools/gimpmeasuretool.c:120 -#, fuzzy msgid "_Measure" msgstr "Mitta" @@ -9573,30 +8793,25 @@ #: app/tools/gimpmeasuretool.c:865 msgid "Distance:" -msgstr "Etäisyys" +msgstr "Etäisyys:" #: app/tools/gimpmoveoptions.c:171 -#, fuzzy msgid "Pick a layer or guide" -msgstr "Valitse siirrettävä taso tai apulinja" +msgstr "Valitse taso tai apulinja" #: app/tools/gimpmoveoptions.c:172 -#, fuzzy msgid "Move the current layer" -msgstr "Vain nykyinen taso" +msgstr "Siirrä nykyinen taso" #: app/tools/gimpmoveoptions.c:176 -#, fuzzy msgid "Move selection" msgstr "Siirrä valintaa" #: app/tools/gimpmoveoptions.c:180 -#, fuzzy msgid "Pick a path" -msgstr "Valitse nostettava polku" +msgstr "Valitse polku" #: app/tools/gimpmoveoptions.c:181 -#, fuzzy msgid "Move the current path" msgstr "Siirrä valittua polkua" @@ -9605,41 +8820,36 @@ msgstr "Siirrä tasoja ja valintoja" #: app/tools/gimpmovetool.c:118 -#, fuzzy msgid "_Move" msgstr "Siirrä" #: app/tools/gimpmovetool.c:298 app/tools/gimpmovetool.c:576 -#, fuzzy msgid "Move Guide: " -msgstr "Siirrä apulinja" +msgstr "Siirrä apulinja:" #: app/tools/gimpmovetool.c:570 -#, fuzzy msgid "Cancel Guide" msgstr "Peruuta" #: app/tools/gimpmovetool.c:576 -#, fuzzy msgid "Add Guide: " -msgstr "apu" +msgstr "Lisää apulinja:" #: app/tools/gimppaintbrushtool.c:52 msgid "Paint fuzzy brush strokes" msgstr "Piirrä pehmeitä sivellinvetoja" #: app/tools/gimppaintbrushtool.c:53 -#, fuzzy msgid "_Paintbrush" msgstr "Sivellin" #: app/tools/gimppaintoptions-gui.c:103 app/widgets/gimpbrushselect.c:201 -#: app/widgets/gimplayertreeview.c:330 +#: app/widgets/gimplayertreeview.c:332 msgid "Opacity:" msgstr "Peitto:" #: app/tools/gimppaintoptions-gui.c:108 app/tools/gimpselectionoptions.c:374 -#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:323 +#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:325 msgid "Mode:" msgstr "Toiminta:" @@ -9652,12 +8862,10 @@ msgstr "Väriliukuma:" #: app/tools/gimppaintoptions-gui.c:177 -#, fuzzy msgid "Hard edge" msgstr "Kova reuna" #: app/tools/gimppaintoptions-gui.c:216 -#, fuzzy msgid "Pressure sensitivity" msgstr "Paineherkkyys" @@ -9678,16 +8886,14 @@ msgstr "Koko" #: app/tools/gimppaintoptions-gui.c:314 -#, fuzzy msgid "Fade out" msgstr "Häivytä" #: app/tools/gimppaintoptions-gui.c:334 app/tools/gimppaintoptions-gui.c:404 msgid "Length:" -msgstr "Pituus" +msgstr "Pituus:" #: app/tools/gimppaintoptions-gui.c:368 -#, fuzzy msgid "Use color from gradient" msgstr "Väri liukumasta" @@ -9696,7 +8902,6 @@ msgstr "Piirrä kovareunaisella työkalulla" #: app/tools/gimppenciltool.c:53 -#, fuzzy msgid "Pe_ncil" msgstr "Kynä" @@ -9709,7 +8914,6 @@ msgstr "Muuta tason tai valinnan perspektiivi" #: app/tools/gimpperspectivetool.c:83 -#, fuzzy msgid "_Perspective" msgstr "Perspektiivi" @@ -9726,9 +8930,8 @@ msgstr "Vähennä värien lukumäärä" #: app/tools/gimpposterizetool.c:80 -#, fuzzy msgid "_Posterize..." -msgstr "Posterisaatio" +msgstr "Posterisaatio..." #: app/tools/gimpposterizetool.c:131 msgid "Posterize (Reduce Number of Colors)" @@ -9739,7 +8942,6 @@ msgstr "Posterisaatio ei toimi indeksoiduilla kuvilla." #: app/tools/gimpposterizetool.c:223 -#, fuzzy msgid "Posterize _levels:" msgstr "Posterisaatiotasoja:" @@ -9748,7 +8950,6 @@ msgstr "Valitse suorakulmioita" #: app/tools/gimprectselecttool.c:98 -#, fuzzy msgid "_Rect Select" msgstr "Suorakulmiovalinta" @@ -9777,9 +8978,8 @@ msgstr "Kierrä tasoa tai valintaa" #: app/tools/gimprotatetool.c:99 -#, fuzzy msgid "_Rotate" -msgstr "Käännös" +msgstr "Kierto" #: app/tools/gimprotatetool.c:158 msgid "Rotation Information" @@ -9803,43 +9003,36 @@ msgstr "Skaalaa tasoa tai valintaa" #: app/tools/gimpscaletool.c:93 -#, fuzzy msgid "_Scale" msgstr "Skaalaus" #: app/tools/gimpscaletool.c:152 -#, fuzzy msgid "Scaling information" -msgstr "Skaalaus" +msgstr "Skaalauksen tiedot" #: app/tools/gimpscaletool.c:163 msgid "Original Width:" msgstr "Alkuperäinen leveys:" #: app/tools/gimpscaletool.c:170 -#, fuzzy msgid "Current width:" -msgstr "Nykyleveys:" +msgstr "Nykyinen leveys:" #: app/tools/gimpscaletool.c:174 -#, fuzzy msgid "Current height:" -msgstr "Nykyleveys:" +msgstr "Nykyinen korkeus:" #: app/tools/gimpscaletool.c:189 -#, fuzzy msgid "Scale ratio X:" -msgstr "X-suhde:" +msgstr "Skaalaus X-suhde:" #: app/tools/gimpscaletool.c:192 -#, fuzzy msgid "Scale ratio Y:" -msgstr "X-suhde:" +msgstr "Skaalaus Y-suhde:" #: app/tools/gimpscaletool.c:196 -#, fuzzy msgid "Aspect Ratio:" -msgstr "Suhde:" +msgstr "Sivusuhde:" #: app/tools/gimpselectionoptions.c:136 msgid "Smooth edges" @@ -9862,24 +9055,20 @@ msgstr "Antialiasointi" #: app/tools/gimpselectionoptions.c:399 -#, fuzzy msgid "Feather edges" msgstr "Pyöristä reunat" #: app/tools/gimpselectionoptions.c:425 -#, fuzzy msgid "Show interactive boundary" msgstr "Näytä aktiivinen reuna" #: app/tools/gimpselectionoptions.c:448 -#, fuzzy msgid "Select transparent areas" msgstr "Läpinäkyvien alueiden valinta" #: app/tools/gimpselectionoptions.c:488 -#, fuzzy msgid "Auto shrink selection" -msgstr "Pienennä valintaa automaattisesti" +msgstr "Pienennä valinta automaattisesti" #: app/tools/gimpsheartool.c:98 msgid "Shear" @@ -9890,30 +9079,26 @@ msgstr "Tason tai valinnan vääntö" #: app/tools/gimpsheartool.c:100 -#, fuzzy msgid "S_hear" msgstr "Vääntö" #: app/tools/gimpsheartool.c:157 msgid "Shearing Information" -msgstr "Vääntö" +msgstr "Väännön tiedot" #: app/tools/gimpsheartool.c:167 -#, fuzzy msgid "Shear magnitude X:" msgstr "Väännön suuruus X-suunnassa:" #: app/tools/gimpsheartool.c:174 -#, fuzzy msgid "Shear magnitude Y:" -msgstr "Väännön suuruus X-suunnassa:" +msgstr "Väännön suuruus Y-suunnassa:" #: app/tools/gimpsmudgetool.c:55 msgid "Smudge image" msgstr "Tuhri" #: app/tools/gimpsmudgetool.c:56 -#, fuzzy msgid "_Smudge" msgstr "Sormi" @@ -9939,17 +9124,14 @@ msgstr "Muuta riviväliä" #: app/tools/gimptextoptions.c:419 -#, fuzzy msgid "Font:" -msgstr "Lukumäärä:" +msgstr "Kirjasin:" #: app/tools/gimptextoptions.c:431 -#, fuzzy msgid "Hinting" msgstr "Vihjeistys" #: app/tools/gimptextoptions.c:438 -#, fuzzy msgid "Force auto-hinter" msgstr "Pakota automaattinen vihjeistys" @@ -9970,14 +9152,12 @@ msgstr "Sisennys:" #: app/tools/gimptextoptions.c:475 -#, fuzzy msgid "" "Line\n" "spacing:" msgstr "Riviväli:" #: app/tools/gimptextoptions.c:478 -#, fuzzy msgid "Create path from text" msgstr "Luo polku tekstistä" @@ -9986,7 +9166,6 @@ msgstr "Lisää kuvaan tekstiä" #: app/tools/gimptexttool.c:144 -#, fuzzy msgid "Te_xt" msgstr "Teksti" @@ -10012,12 +9191,11 @@ #: app/tools/gimpthresholdtool.c:93 msgid "Reduce image to two colors using a threshold" -msgstr "Vähennä värien lukumäärä kahteen rajasta" +msgstr "Vähennä värien lukumäärä kahteen" #: app/tools/gimpthresholdtool.c:94 -#, fuzzy msgid "_Threshold..." -msgstr "Raja-arvo" +msgstr "Raja-arvo..." #: app/tools/gimpthresholdtool.c:148 msgid "Apply Threshold" @@ -10025,7 +9203,7 @@ #: app/tools/gimpthresholdtool.c:199 msgid "Threshold does not operate on indexed layers." -msgstr "Raja-muunnosta ei voi käyttää indeksoiduilla kuvilla" +msgstr "Raja-muunnosta ei voi käyttää indeksoiduilla kuvilla." #: app/tools/gimptransformoptions.c:329 msgid "Transform Direction" @@ -10041,12 +9219,10 @@ #. the clip resulting image toggle button #: app/tools/gimptransformoptions.c:353 -#, fuzzy msgid "Clip result" msgstr "Leikkaa tulos" #: app/tools/gimptransformoptions.c:367 -#, fuzzy msgid "Preview:" msgstr "Esikatselu" @@ -10056,33 +9232,32 @@ msgstr "Rajoitukset" #: app/tools/gimptransformoptions.c:425 -#, fuzzy, c-format +#, c-format msgid "15 degrees %s" msgstr "15° %s" #: app/tools/gimptransformoptions.c:445 -#, fuzzy, c-format +#, c-format msgid "Keep height %s" msgstr "Säilytä korkeys %s" #: app/tools/gimptransformoptions.c:447 -#, fuzzy, c-format +#, c-format msgid "Keep width %s" msgstr "Säilytä leveys %s" #: app/tools/gimptransformoptions.c:449 -#, fuzzy, c-format +#, c-format msgid "Keep aspect %s" -msgstr "Kiinteä kuvasuhde" +msgstr "Säilytä kuvasuhde %s" #: app/tools/gimptransformtool.c:253 msgid "Transforming..." msgstr "Muunnetaan..." #: app/tools/gimpvectoroptions.c:113 -#, fuzzy msgid "Restrict editing to polygons" -msgstr "Muokkaus luo uusia kulmia" +msgstr "Rajoita muokkaus polygoneihin" #: app/tools/gimpvectoroptions.c:177 msgid "Edit Mode" @@ -10093,27 +9268,25 @@ msgstr "Lisää kulmia" #: app/tools/gimpvectoroptions.c:186 -#, fuzzy, c-format +#, c-format msgid "" "Path to Selection\n" "%s Add\n" "%s Subtract\n" "%s Intersect" msgstr "" -"Kanava valinnaksi \n" +"Polku valinnaksi \n" "%s Lisää\n" "%s Vähennä\n" -"%s%s%s Leikkaus" +"%s Leikkaus" #: app/tools/gimpvectoroptions.c:196 -#, fuzzy msgid "Create selection from path" msgstr "Luo valinta polusta" #: app/tools/gimpvectoroptions.c:207 -#, fuzzy msgid "Stroke path" -msgstr "/Piirrä polkua pitkin" +msgstr "Piirrä polku" #: app/tools/gimpvectortool.c:161 msgid "Create and edit paths" @@ -10121,7 +9294,7 @@ #: app/tools/gimpvectortool.c:363 msgid "Add Stroke" -msgstr "" +msgstr "Lisää piirto" #: app/tools/gimpvectortool.c:381 msgid "Add Anchor" @@ -10129,116 +9302,115 @@ #: app/tools/gimpvectortool.c:404 msgid "Insert Anchor" -msgstr "" +msgstr "Lisää ankkuri väliin" #: app/tools/gimpvectortool.c:433 msgid "Drag Handle" -msgstr "" +msgstr "Siirrä kahva" #: app/tools/gimpvectortool.c:462 msgid "Drag Anchor" -msgstr "" +msgstr "Siirrä ankkuri" #: app/tools/gimpvectortool.c:479 msgid "Drag Anchors" -msgstr "" +msgstr "Siirrä ankkurit" #: app/tools/gimpvectortool.c:499 msgid "Drag Curve" -msgstr "" +msgstr "Siirrä käyrä" #: app/tools/gimpvectortool.c:527 msgid "Connect Strokes" -msgstr "" +msgstr "Yhdistä piirrot" #: app/tools/gimpvectortool.c:557 msgid "Drag Path" -msgstr "" +msgstr "Siirrä polku" #: app/tools/gimpvectortool.c:567 msgid "Convert Edge" -msgstr "" +msgstr "Muunna reuna" #: app/tools/gimpvectortool.c:597 msgid "Delete Anchor" -msgstr "" +msgstr "Poista ankkuri" #: app/tools/gimpvectortool.c:619 msgid "Delete Segment" -msgstr "" +msgstr "Poista segmentti" #: app/tools/gimpvectortool.c:831 msgid "Move Anchors" -msgstr "" +msgstr "Siirrä ankkurit" #: app/tools/gimpvectortool.c:1196 msgid "Click to pick path to edit." -msgstr "" +msgstr "Napsauta valitaksesi muokattavan polun." #: app/tools/gimpvectortool.c:1199 msgid "Click to create a new path." -msgstr "" +msgstr "Napsauta luodaksesi uuden polun." #: app/tools/gimpvectortool.c:1202 msgid "Click to create a new component of the path." -msgstr "" +msgstr "Napsauta luodaksesi uuden komponentin polkuun." #: app/tools/gimpvectortool.c:1205 msgid "Click to create a new anchor. (try SHIFT)" -msgstr "" +msgstr "Napsauta lisätäksesi ankkurin (Koita Shiftiä)" #: app/tools/gimpvectortool.c:1208 msgid "Click-Drag to move the anchor around." -msgstr "" +msgstr "Napsauta ja vedä siirtääksesi ankkuria." #: app/tools/gimpvectortool.c:1211 msgid "Click-Drag to move the anchors around." -msgstr "" +msgstr "Napsauta ja vedä siirtääksesi ankkureita." #: app/tools/gimpvectortool.c:1214 msgid "Click-Drag to move the handle around. (try SHIFT)" -msgstr "" +msgstr "Napsauta ja vedä siirtääksesi kahvaa (Koita Shiftiä)" #: app/tools/gimpvectortool.c:1217 msgid "Click-Drag to change the shape of the curve. (SHIFT: symmetrical)" -msgstr "" +msgstr "Napsauta ja vedä muuttaaksesi käyrän muotoa (Shift: epäsymmetrinen)" #: app/tools/gimpvectortool.c:1221 msgid "Click-Drag to move the component around. (try SHIFT)" -msgstr "" +msgstr "Napsauta ja vedä siirtääksi komponentti (Koita Shiftiä)" #: app/tools/gimpvectortool.c:1225 msgid "Click-Drag to move the path around." -msgstr "" +msgstr "Napsauta ja vedä siirtääksesi polkua." #: app/tools/gimpvectortool.c:1228 msgid "Click to insert an anchor on the path. (try SHIFT)" -msgstr "" +msgstr "Napsauta lisätäksi ankkurin polkuun (Koita Shiftiä)" #: app/tools/gimpvectortool.c:1231 msgid "Click to delete this anchor." -msgstr "" +msgstr "Napsauta poistaaksesi tämän ankkurin." #: app/tools/gimpvectortool.c:1234 msgid "Click to connect this anchor with the selected endpoint." -msgstr "" +msgstr "Napsauta liittääksesi tämän ankkurin valittuun päätepisteeseen." #: app/tools/gimpvectortool.c:1238 msgid "Click to open up the path." -msgstr "" +msgstr "Napsauta avataksesi polun." #: app/tools/gimpvectortool.c:1241 msgid "Click to make this node angular." -msgstr "" +msgstr "Napsauta tehdäksesi solmusta kulman." #: app/tools/gimpvectortool.c:1751 -#, fuzzy msgid "Delete Anchors" -msgstr "Poista vektorit" +msgstr "Poista ankkuri" #: app/tools/gimpvectortool.c:1918 msgid "There is no active layer or channel to stroke to" -msgstr "" +msgstr "Ei aktiivista tasoa tai kanavaa jolle piirtää" #: app/vectors/gimpvectors.c:231 msgid "Path" @@ -10246,7 +9418,7 @@ #: app/vectors/gimpvectors.c:232 msgid "Rename Path" -msgstr "" +msgstr "Nimeä polku" #: app/vectors/gimpvectors.c:233 app/vectors/gimpvectors.c:373 msgid "Move Path" @@ -10254,19 +9426,19 @@ #: app/vectors/gimpvectors.c:234 msgid "Scale Path" -msgstr "" +msgstr "Skaalaa polku" #: app/vectors/gimpvectors.c:235 msgid "Resize Path" -msgstr "" +msgstr "Muunna polun kokoa" #: app/vectors/gimpvectors.c:236 app/vectors/gimpvectors.c:464 msgid "Flip Path" -msgstr "" +msgstr "Peilaa polku" #: app/vectors/gimpvectors.c:237 app/vectors/gimpvectors.c:508 msgid "Rotate Path" -msgstr "" +msgstr "Kierrä polkua" #: app/vectors/gimpvectors.c:238 app/vectors/gimpvectors.c:539 msgid "Transform Path" @@ -10274,7 +9446,7 @@ #: app/vectors/gimpvectors.c:568 msgid "Cannot stroke empty path." -msgstr "" +msgstr "Ei voi piirtää tyhjää polkua." #: app/vectors/gimpvectors-import.c:287 msgid "Import Paths" @@ -10282,16 +9454,16 @@ #: app/vectors/gimpvectors-import.c:298 msgid "Imported Path" -msgstr "" +msgstr "Tuotu polku" #: app/vectors/gimpvectors-import.c:324 #, c-format msgid "No paths found in '%s'" -msgstr "" +msgstr "'%s' ei sisällä polkuja." #: app/vectors/gimpvectors-import.c:327 msgid "No paths found in the buffer" -msgstr "" +msgstr "Puskurissa ei ole polkuja" #: app/vectors/gimpvectors-import.c:337 #, c-format @@ -10304,63 +9476,50 @@ msgstr "RGBA (%0.3f, %0.3f, %0.3f, %0.3f)" #: app/widgets/gimpactionview.c:292 app/widgets/gimpcontrollereditor.c:374 -#, fuzzy msgid "Action" -msgstr "Summa" +msgstr "Toiminto" #: app/widgets/gimpactionview.c:317 -#, fuzzy msgid "Shortcut" -msgstr "Näppäimistöoikopolut" +msgstr "Oikopolku" #: app/widgets/gimpactionview.c:339 -#, fuzzy msgid "Name" -msgstr "_Nimi:" +msgstr "Nimi" #: app/widgets/gimpactionview.c:479 app/widgets/gimpactionview.c:672 -#, fuzzy msgid "Changing shortcut failed." -msgstr "" -"Tallennus epäonnistui.\n" -"%s" +msgstr "Oikopolun muuttaminen epäonnistui." #: app/widgets/gimpactionview.c:519 msgid "Conflicting Shortcuts" -msgstr "" +msgstr "Päällekkäiset oikopolut" #: app/widgets/gimpactionview.c:525 -#, fuzzy msgid "_Reassign shortcut" -msgstr "" -"Tallennus epäonnistui.\n" -"%s" +msgstr "_Määrää uusi oikopolku" #: app/widgets/gimpactionview.c:536 #, c-format msgid "Shortcut \"%s\" is already taken by \"%s\" from the \"%s\" group." -msgstr "" +msgstr "Oikotie \"%s\" on käytössä toiminnolle: \"%s\" ryhmässä: \"%s\"" #: app/widgets/gimpactionview.c:540 #, c-format msgid "Reassigning the shortcut will cause it to be removed from \"%s\"." -msgstr "" +msgstr "Oikotien uudelleenasettaminen poistaa sen \"%s\":stä." #: app/widgets/gimpactionview.c:607 -#, fuzzy msgid "Removing shortcut failed." -msgstr "" -"Tallennus epäonnistui.\n" -"%s" +msgstr "Oikopolun poisto epäonnistui." #: app/widgets/gimpactionview.c:612 msgid "Invalid shortcut." -msgstr "" +msgstr "Virheellinen oikopolku." #: app/widgets/gimpbrusheditor.c:168 -#, fuzzy msgid "Spikes:" -msgstr "Koko:" +msgstr "Piikit:" #: app/widgets/gimpbrusheditor.c:181 msgid "Hardness:" @@ -10384,11 +9543,11 @@ #: app/widgets/gimpcellrendereraccel.c:234 #: app/widgets/gimpcellrendereraccel.c:459 msgid "Type a new accelerator, or press Backspace to clear" -msgstr "" +msgstr "Syötä uusi oikopolku, tai paina Peruuta-näppäintä tyhjentääksesi" #: app/widgets/gimpcellrendereraccel.c:462 msgid "Type a new accelerator" -msgstr "" +msgstr "Syötä uusi oikopolku" #: app/widgets/gimpchanneltreeview.c:151 msgid "Reorder Channel" @@ -10400,7 +9559,7 @@ #: app/widgets/gimpclipboard.c:283 msgid "Clipboard" -msgstr "" +msgstr "Leikepöytä" #: app/widgets/gimpcolordialog.c:169 msgid "Add the current color to the color history" @@ -10412,11 +9571,11 @@ #: app/widgets/gimpcolordisplayeditor.c:204 msgid "Add the selected filter to the list of active filters." -msgstr "Lisää valittu suodatin" +msgstr "Lisää valittu suodatin." #: app/widgets/gimpcolordisplayeditor.c:221 msgid "Remove the selected filter from the list of active filters." -msgstr "Poista valittu suodatin" +msgstr "Poista valittu suodatin." #: app/widgets/gimpcolordisplayeditor.c:235 msgid "Move the selected filter up" @@ -10435,17 +9594,15 @@ msgstr "Nollaa valittujen suodattimien arvot" #: app/widgets/gimpcolordisplayeditor.c:543 -#, fuzzy, c-format +#, c-format msgid "Configure selected filter: %s" msgstr "Aseta valittu suodatin: %s" #: app/widgets/gimpcolordisplayeditor.c:550 -#, fuzzy msgid "No filter selected" msgstr "Ei valittua suodatinta" #: app/widgets/gimpcolordisplayeditor.c:554 -#, fuzzy msgid "Configure selected filter" msgstr "Aseta valittu suodatin" @@ -10483,33 +9640,31 @@ #: app/widgets/gimpcolorframe.c:303 msgid "Cyan:" -msgstr "Syaani" +msgstr "Syaani:" #: app/widgets/gimpcolorframe.c:304 msgid "Magenta:" -msgstr "Magenta" +msgstr "Magenta:" #: app/widgets/gimpcolorframe.c:305 msgid "Yellow:" -msgstr "Keltainen" +msgstr "Keltainen:" #: app/widgets/gimpcolorframe.c:306 msgid "Black:" -msgstr "Musta" +msgstr "Musta:" #: app/widgets/gimpcolorframe.c:320 msgid "Alpha:" msgstr "Peitto:" #: app/widgets/gimpcolormapeditor.c:247 -#, fuzzy msgid "Color index:" msgstr "Väri-indeksi:" #: app/widgets/gimpcolormapeditor.c:258 -#, fuzzy msgid "HTML notation:" -msgstr "Sijainti:" +msgstr "HTML-merkintä:" #: app/widgets/gimpcontainerpopup.c:502 msgid "Smaller Previews" @@ -10521,312 +9676,300 @@ #: app/widgets/gimpcontrollereditor.c:210 msgid "Dump events from this controller" -msgstr "" +msgstr "Näytä tämän ohjaimen tapahtumat" #: app/widgets/gimpcontrollereditor.c:215 msgid "Enable this controller" -msgstr "" +msgstr "Tämä ohjain päälle" #: app/widgets/gimpcontrollereditor.c:236 -#, fuzzy msgid "Name:" -msgstr "_Nimi:" +msgstr "Nimi:" #: app/widgets/gimpcontrollereditor.c:369 -#, fuzzy msgid "Event" -msgstr "Ympäristö" +msgstr "Tapahtuma" #: app/widgets/gimpcontrollereditor.c:550 msgid "Select Controller Event Action" -msgstr "" +msgstr "Valitse ohjaimen toiminto" #: app/widgets/gimpcontrollerkeyboard.c:69 msgid "Key Up (Shift + Control + Alt)" -msgstr "" +msgstr "Näppäin ylös (Shift + Control + Alt)" #: app/widgets/gimpcontrollerkeyboard.c:72 msgid "Key Up (Control + Alt)" -msgstr "" +msgstr "Näppäin ylös (Control + Alt)" #: app/widgets/gimpcontrollerkeyboard.c:75 msgid "Key Up (Shift + Alt)" -msgstr "" +msgstr "Näppäin ylös (Shift + Alt)" #: app/widgets/gimpcontrollerkeyboard.c:78 msgid "Key Up (Shift + Control)" -msgstr "" +msgstr "Näppäin ylös (Shift + Control)" #: app/widgets/gimpcontrollerkeyboard.c:81 msgid "Key Up (Alt)" -msgstr "" +msgstr "Näppäin ylös (Alt)" #: app/widgets/gimpcontrollerkeyboard.c:84 msgid "Key Up (Control)" -msgstr "" +msgstr "Näppäin ylös (Control)" #: app/widgets/gimpcontrollerkeyboard.c:87 msgid "Key Up (Shift)" -msgstr "" +msgstr "Näppäin ylös (Shift)" #: app/widgets/gimpcontrollerkeyboard.c:90 msgid "Key Up" -msgstr "" +msgstr "Näppäin ylös" #: app/widgets/gimpcontrollerkeyboard.c:94 msgid "Key Down (Shift + Control + Alt)" -msgstr "" +msgstr "Näppäin alas (Shift + Control + Alt)" #: app/widgets/gimpcontrollerkeyboard.c:97 msgid "Key Down (Control + Alt)" -msgstr "" +msgstr "Näppäin alas (Control + Alt)" #: app/widgets/gimpcontrollerkeyboard.c:100 msgid "Key Down (Shift + Alt)" -msgstr "" +msgstr "Näppäin alas (Shift + Alt)" #: app/widgets/gimpcontrollerkeyboard.c:103 msgid "Key Down (Shift + Control)" -msgstr "" +msgstr "Näppäin alas (Shift + Control)" #: app/widgets/gimpcontrollerkeyboard.c:106 msgid "Key Down (Alt)" -msgstr "" +msgstr "Näppäin alas (Alt)" #: app/widgets/gimpcontrollerkeyboard.c:109 msgid "Key Down (Control)" -msgstr "" +msgstr "Näppäin alas (Control)" #: app/widgets/gimpcontrollerkeyboard.c:112 msgid "Key Down (Shift)" -msgstr "" +msgstr "Näppäin alas (Shift)" #: app/widgets/gimpcontrollerkeyboard.c:115 -#, fuzzy msgid "Key Down" -msgstr "Yhdistä alas" +msgstr "Näppäin alas" #: app/widgets/gimpcontrollerkeyboard.c:119 msgid "Key Left (Shift + Control + Alt)" -msgstr "" +msgstr "Näppäin vasemmalle (Shift + Control + Alt)" #: app/widgets/gimpcontrollerkeyboard.c:122 msgid "Key Left (Control + Alt)" -msgstr "" +msgstr "Näppäin vasemmalle (Control + Alt)" #: app/widgets/gimpcontrollerkeyboard.c:125 msgid "Key Left (Shift + Alt)" -msgstr "" +msgstr "Näppäin vasemmalle (Shift + Alt)" #: app/widgets/gimpcontrollerkeyboard.c:128 msgid "Key Left (Shift + Control)" -msgstr "" +msgstr "Näppäin vasemmalle (Shift + Control)" #: app/widgets/gimpcontrollerkeyboard.c:131 msgid "Key Left (Alt)" -msgstr "" +msgstr "Näppäin vasemmalle (Alt)" #: app/widgets/gimpcontrollerkeyboard.c:134 msgid "Key Left (Control)" -msgstr "" +msgstr "Näppäin vasemmalle (Control)" #: app/widgets/gimpcontrollerkeyboard.c:137 msgid "Key Left (Shift)" -msgstr "" +msgstr "Näppäin vasemmalle (Shift)" #: app/widgets/gimpcontrollerkeyboard.c:140 msgid "Key Left" -msgstr "" +msgstr "Näppäin vasemmalle" #: app/widgets/gimpcontrollerkeyboard.c:144 msgid "Key Right (Shift + Control + Alt)" -msgstr "" +msgstr "Näppäin oikealle (Shift + Control + Alt)" #: app/widgets/gimpcontrollerkeyboard.c:147 msgid "Key Right (Control + Alt)" -msgstr "" +msgstr "Näppäin oikealle (Control + Alt)" #: app/widgets/gimpcontrollerkeyboard.c:150 msgid "Key Right (Shift + Alt)" -msgstr "" +msgstr "Näppäin oikealle (Shift + Alt)" #: app/widgets/gimpcontrollerkeyboard.c:153 msgid "Key Right (Shift + Control)" -msgstr "" +msgstr "Näppäin oikealle (Shift + Control)" #: app/widgets/gimpcontrollerkeyboard.c:156 msgid "Key Right (Alt)" -msgstr "" +msgstr "Näppäin oikealle (Alt)" #: app/widgets/gimpcontrollerkeyboard.c:159 -#, fuzzy msgid "Key Right (Control)" -msgstr "/Tallenna vasemmanpuoleinen väri" +msgstr "Näppäin oikealle (Control)" #: app/widgets/gimpcontrollerkeyboard.c:162 msgid "Key Right (Shift)" -msgstr "" +msgstr "Näppäin oikealle (Shift)" #: app/widgets/gimpcontrollerkeyboard.c:165 -#, fuzzy msgid "Key Right" -msgstr "Korkeus" +msgstr "Näppäin oikealle" #: app/widgets/gimpcontrollerkeyboard.c:207 -#, fuzzy msgid "Keyboard" -msgstr "Näppäimistöoikopolut" +msgstr "Näppäimistö" #: app/widgets/gimpcontrollerkeyboard.c:230 -#, fuzzy msgid "Keyboard Events" -msgstr "Näppäimistöoikopolut" +msgstr "Näppäinpainallukset" #: app/widgets/gimpcontrollerkeyboard.c:231 #: app/widgets/gimpcontrollerwheel.c:230 -#, fuzzy msgid "Ready" -msgstr "Punainen" +msgstr "Valmis" #: app/widgets/gimpcontrollerwheel.c:68 msgid "Scroll Up (Shift + Control + Alt)" -msgstr "" +msgstr "Vieritys ylös (Shift + Control + Alt)" #: app/widgets/gimpcontrollerwheel.c:71 msgid "Scroll Up (Control + Alt)" -msgstr "" +msgstr "Vieritys ylös (Control + Alt)" #: app/widgets/gimpcontrollerwheel.c:74 msgid "Scroll Up (Shift + Alt)" -msgstr "" +msgstr "Vieritys ylös (Shift + Alt)" #: app/widgets/gimpcontrollerwheel.c:77 msgid "Scroll Up (Shift + Control)" -msgstr "" +msgstr "Vieritys ylös (Shift + Control)" #: app/widgets/gimpcontrollerwheel.c:80 msgid "Scroll Up (Alt)" -msgstr "" +msgstr "Vieritys ylös (Alt)" #: app/widgets/gimpcontrollerwheel.c:83 msgid "Scroll Up (Control)" -msgstr "" +msgstr "Vieritys ylös (Control)" #: app/widgets/gimpcontrollerwheel.c:86 msgid "Scroll Up (Shift)" -msgstr "" +msgstr "Vieritys ylös (Shift)" #: app/widgets/gimpcontrollerwheel.c:89 -#, fuzzy msgid "Scroll Up" -msgstr "rajaus" +msgstr "Vieritys ylös" #: app/widgets/gimpcontrollerwheel.c:93 msgid "Scroll Down (Shift + Control + Alt)" -msgstr "" +msgstr "Vieritys alas (Shift + Control + Alt)" #: app/widgets/gimpcontrollerwheel.c:96 msgid "Scroll Down (Control + Alt)" -msgstr "" +msgstr "Vieritys alas (Control + Alt)" #: app/widgets/gimpcontrollerwheel.c:99 msgid "Scroll Down (Shift + Alt)" -msgstr "" +msgstr "Vieritys alas (Shift + Alt)" #: app/widgets/gimpcontrollerwheel.c:102 msgid "Scroll Down (Shift + Control)" -msgstr "" +msgstr "Vieritys alas (Shift + Control)" #: app/widgets/gimpcontrollerwheel.c:105 msgid "Scroll Down (Alt)" -msgstr "" +msgstr "Vieritys alas (Alt)" #: app/widgets/gimpcontrollerwheel.c:108 msgid "Scroll Down (Control)" -msgstr "" +msgstr "Vieritys alas (Control)" #: app/widgets/gimpcontrollerwheel.c:111 msgid "Scroll Down (Shift)" -msgstr "" +msgstr "Vieritys alas (Shift)" #: app/widgets/gimpcontrollerwheel.c:114 msgid "Scroll Down" -msgstr "" +msgstr "Vieritys alas" #: app/widgets/gimpcontrollerwheel.c:118 msgid "Scroll Left (Shift + Control + Alt)" -msgstr "" +msgstr "Vieritys vasemmalle (Shift + Control + Alt)" #: app/widgets/gimpcontrollerwheel.c:121 msgid "Scroll Left (Control + Alt)" -msgstr "" +msgstr "Vieritys vasemmalle (Control + Alt)" #: app/widgets/gimpcontrollerwheel.c:124 msgid "Scroll Left (Shift + Alt)" -msgstr "" +msgstr "Vieritys vasemmalle (Shift + Alt)" #: app/widgets/gimpcontrollerwheel.c:127 msgid "Scroll Left (Shift + Control)" -msgstr "" +msgstr "Vieritys vasemmalle (Shift + Control)" #: app/widgets/gimpcontrollerwheel.c:130 msgid "Scroll Left (Alt)" -msgstr "" +msgstr "Vieritys vasemmalle (Alt)" #: app/widgets/gimpcontrollerwheel.c:133 msgid "Scroll Left (Control)" -msgstr "" +msgstr "Vieritys vasemmalle (Control)" #: app/widgets/gimpcontrollerwheel.c:136 msgid "Scroll Left (Shift)" -msgstr "" +msgstr "Vieritys vasemmalle (Shift)" #: app/widgets/gimpcontrollerwheel.c:139 msgid "Scroll Left" -msgstr "" +msgstr "Vieritys vasemmalle" #: app/widgets/gimpcontrollerwheel.c:143 msgid "Scroll Right (Shift + Control + Alt)" -msgstr "" +msgstr "Vieritys oikealle (Shift + Control + Alt)" #: app/widgets/gimpcontrollerwheel.c:146 msgid "Scroll Right (Control + Alt)" -msgstr "" +msgstr "Vieritys oikealle (Control + Alt)" #: app/widgets/gimpcontrollerwheel.c:149 msgid "Scroll Right (Shift + Alt)" -msgstr "" +msgstr "Vieritys oikealle (Shift + Alt)" #: app/widgets/gimpcontrollerwheel.c:152 msgid "Scroll Right (Shift + Control)" -msgstr "" +msgstr "Vieritys oikealle (Shift + Control)" #: app/widgets/gimpcontrollerwheel.c:155 msgid "Scroll Right (Alt)" -msgstr "" +msgstr "Vieritys oikealle (Alt)" #: app/widgets/gimpcontrollerwheel.c:158 msgid "Scroll Right (Control)" -msgstr "" +msgstr "Vieritys oikealle (Control)" #: app/widgets/gimpcontrollerwheel.c:161 msgid "Scroll Right (Shift)" -msgstr "" +msgstr "Vieritys oikealle (Shift)" #: app/widgets/gimpcontrollerwheel.c:164 -#, fuzzy msgid "Scroll Right" -msgstr "Pehmeä valo" +msgstr "Vieritys oikealle" #: app/widgets/gimpcontrollerwheel.c:206 -#, fuzzy msgid "Mouse Wheel" -msgstr "Siirrä kanavaa" +msgstr "Hiiren rulla" #: app/widgets/gimpcontrollerwheel.c:229 -#, fuzzy msgid "Mouse Wheel Events" -msgstr "Siirrä kanavaa" +msgstr "Hiiren rullan liike" #: app/widgets/gimpdataeditor.c:205 msgid "Save" @@ -10851,14 +9994,12 @@ msgstr "Taustaväri: %d, %d, %d" #: app/widgets/gimpdock.c:348 app/widgets/gimpdock.c:359 -#, fuzzy msgid "Close all tabs?" -msgstr "/_Sulje välilehti" +msgstr "Sulje kaikki välilehdet?" #: app/widgets/gimpdock.c:354 -#, fuzzy msgid "Close all Tabs" -msgstr "/_Sulje välilehti" +msgstr "Sulje kaikki välilehdet" #: app/widgets/gimpdock.c:361 #, c-format @@ -10866,6 +10007,7 @@ "This window has %d tabs open. Closing the window will also close all its " "tabs." msgstr "" +"Ikkunassa on %d aukinaista välilehteä. Ikkunan sulkeminen sulkee myös ne." #: app/widgets/gimpdock.c:474 msgid "You can drop dockable dialogs here." @@ -10882,36 +10024,32 @@ #: app/widgets/gimperrordialog.c:229 msgid "Too many error messages!" -msgstr "" +msgstr "Toistuva virheilmoitus!" #: app/widgets/gimperrordialog.c:230 -#, fuzzy msgid "Messages are redirected to stderr." -msgstr "Ilmoitus toistui." +msgstr "Ilmoitukset ohjataan virhesyötteeseen." #: app/widgets/gimpfiledialog.c:304 msgid "Automatically Detected" -msgstr "" +msgstr "Automaattisesti tunnistettu" #: app/widgets/gimpfiledialog.c:310 -#, fuzzy msgid "By Extension" -msgstr "/Nimen loppuliitteen mukaan" +msgstr "Nimen loppuliitteen mukaan" #: app/widgets/gimpfiledialog.c:496 -#, fuzzy msgid "All Files" -msgstr "Suodattimet" +msgstr "Kaikki tiedostot" #: app/widgets/gimpfiledialog.c:635 -#, fuzzy, c-format +#, c-format msgid "Select File _Type (%s)" -msgstr "Täyttötyppi %s" +msgstr "Tiedoston _tyyppi (%s)" #: app/widgets/gimpfileprocview.c:234 -#, fuzzy msgid "File Type" -msgstr "Täyttötyppi" +msgstr "Tiedoston tyyppi" #: app/widgets/gimpfileprocview.c:253 msgid "Extensions" @@ -10937,9 +10075,9 @@ msgstr "Sijainti: %.06f" #: app/widgets/gimpgradienteditor.c:816 -#, fuzzy, c-format +#, c-format msgid "RGB (%0.3f, %0.3f, %0.3f)" -msgstr "(%0.3f, %0.3f, %0.3f)" +msgstr "RGB (%0.3f, %0.3f, %0.3f)" #: app/widgets/gimpgradienteditor.c:819 #, c-format @@ -10947,9 +10085,9 @@ msgstr "HSV (%0.3f, %0.3f, %0.3f)" #: app/widgets/gimpgradienteditor.c:821 -#, fuzzy, c-format +#, c-format msgid "Intensity: %0.3f Opacity: %0.3f" -msgstr "RGB (%0.3f, %0.3f, %0.3f) Peitto: %0.3f" +msgstr "Intensiteetti: %0.3f Peitto: %0.3f" #: app/widgets/gimpgradienteditor.c:854 app/widgets/gimpgradienteditor.c:889 #, c-format @@ -11007,24 +10145,20 @@ msgstr "Viivatyyli:" #: app/widgets/gimpgrideditor.c:223 -#, fuzzy msgid "Change grid foreground color" msgstr "Vaihda apuviivojen edustaväri" #: app/widgets/gimpgrideditor.c:228 -#, fuzzy msgid "_Foreground color:" -msgstr "Edustaväri" +msgstr "_Edustaväri:" #: app/widgets/gimpgrideditor.c:232 -#, fuzzy msgid "Change grid background color" msgstr "Vaihda apuviivojen taustaväri" #: app/widgets/gimpgrideditor.c:237 -#, fuzzy msgid "_Background color:" -msgstr "Taustaväri" +msgstr "_Taustaväri:" #: app/widgets/gimpgrideditor.c:242 msgid "Spacing" @@ -11039,32 +10173,27 @@ msgstr "Korkeus" #: app/widgets/gimphelp.c:187 -#, fuzzy msgid "Help browser not found" -msgstr "Käytettävä selain avustuksille" +msgstr "Apu-selainta ei löytynyt" #: app/widgets/gimphelp.c:188 -#, fuzzy msgid "Could not find GIMP help browser." -msgstr "GIMP-avustusselain ei löytynyt" +msgstr "GIMP-avustusselainta ei löytynyt" #: app/widgets/gimphelp.c:189 msgid "" "The GIMP help browser plug-in appears to be missing from your installation." -msgstr "" +msgstr "GIMP-avustusselaimen liitännäinen näyttää puuttuvat asennuksestasi." #: app/widgets/gimphelp.c:213 -#, fuzzy msgid "Help browser doesn't start" -msgstr "Käytettävä selain avustuksille" +msgstr "Apuselain ei käynnistynyt" #: app/widgets/gimphelp.c:214 -#, fuzzy msgid "Could not start the GIMP help browser plug-in." -msgstr "GIMP-avustusselain ei käynnistynyt" +msgstr "GIMP-avustusselainta ei voitu käynnistää." #: app/widgets/gimphelp.c:240 -#, fuzzy msgid "Use _web browser instead" msgstr "Käytä web-selainta" @@ -11104,31 +10233,30 @@ #: app/widgets/gimpitemtreeview.c:996 msgid "Set Item Exclusive Visible" -msgstr "" +msgstr "Aseta näkyväksi" #: app/widgets/gimpitemtreeview.c:1004 msgid "Set Item Exclusive Linked" -msgstr "" +msgstr "Aseta linkatuksi" -#: app/widgets/gimplayertreeview.c:250 +#: app/widgets/gimplayertreeview.c:252 msgid "Reorder Layer" msgstr "Uudelleenjärjestä tasot" -#: app/widgets/gimplayertreeview.c:311 -#, fuzzy +#: app/widgets/gimplayertreeview.c:313 msgid "Keep transparency" msgstr "Pidä läpinäkyys" -#: app/widgets/gimplayertreeview.c:846 +#: app/widgets/gimplayertreeview.c:848 msgid "Empty Layer" msgstr "Tyhjä taso" -#: app/widgets/gimpmessagebox.c:458 +#: app/widgets/gimpmessagebox.c:460 #, c-format msgid "Message repeated %d times." -msgstr "Ilmoitus toistunut %d kertaa" +msgstr "Ilmoitus toistunut %d kertaa." -#: app/widgets/gimpmessagebox.c:460 +#: app/widgets/gimpmessagebox.c:462 msgid "Message repeated once." msgstr "Ilmoitus toistui." @@ -11158,86 +10286,70 @@ #: app/widgets/gimpselectiondata.c:321 msgid "Invalid UTF-8" -msgstr "Epäkelpo unicode-merkkijono" - -#: app/widgets/gimpsizebox.c:290 -#, fuzzy -msgid "Keep aspect ratio" -msgstr "Kiinteä kuvasuhde" +msgstr "Epäkelpo Unicode-merkkijono" -#: app/widgets/gimpsizebox.c:574 -#, fuzzy, c-format +#: app/widgets/gimpsizebox.c:451 +#, c-format msgid "%d x %d dpi" -msgstr "%d×%d pikseliä" +msgstr "%d×%d dpi" -#: app/widgets/gimpsizebox.c:578 -#, fuzzy, c-format +#: app/widgets/gimpsizebox.c:455 +#, c-format msgid "%d dpi" -msgstr "dpi" +msgstr "%d dpi" #: app/widgets/gimpstrokeeditor.c:198 -#, fuzzy msgid "Line Width:" -msgstr "Tason leveys:" +msgstr "Viivan leveys:" #: app/widgets/gimpstrokeeditor.c:209 -#, fuzzy msgid "_Line Style" -msgstr "Viivatyyli:" +msgstr "_Viivan tyyli" #: app/widgets/gimpstrokeeditor.c:228 -#, fuzzy msgid "_Cap style:" -msgstr "Lopun tyyli:" +msgstr "_Lopun tyyli:" #: app/widgets/gimpstrokeeditor.c:234 -#, fuzzy msgid "_Join style:" -msgstr "Kulman tyyli:" +msgstr "L_iitoksen tyyli:" #: app/widgets/gimpstrokeeditor.c:239 -#, fuzzy msgid "_Miter limit:" -msgstr "Viistous" +msgstr "_Särmän raja:" #: app/widgets/gimpstrokeeditor.c:246 -#, fuzzy msgid "Dash pattern:" msgstr "Katkoviivakuvio:" #: app/widgets/gimpstrokeeditor.c:288 -#, fuzzy msgid "Dash preset:" msgstr "Esivalinta:" #: app/widgets/gimpstrokeeditor.c:300 msgid "_Antialiasing" -msgstr "Antialiasointi" +msgstr "_Antialiasointi" #: app/widgets/gimptemplateeditor.c:255 #, c-format msgid "%p" -msgstr "" +msgstr "%p" #: app/widgets/gimptemplateeditor.c:330 -#, fuzzy msgid "_Advanced Options" -msgstr "Tallennetut asetukset" +msgstr "Kehittyneet asetukset" #: app/widgets/gimptemplateeditor.c:437 -#, fuzzy msgid "Color_space:" -msgstr "Väri:" +msgstr "Värimalli:" #: app/widgets/gimptemplateeditor.c:445 -#, fuzzy msgid "_Fill with:" -msgstr "Täytä valkoisella" +msgstr "Täyttö:" #: app/widgets/gimptemplateeditor.c:455 -#, fuzzy msgid "Comme_nt:" -msgstr "Lukumäärä:" +msgstr "Kuvan komme_ntti:" #: app/widgets/gimptemplateeditor.c:565 msgid "_Name:" @@ -11248,14 +10360,14 @@ msgstr "_Kuvake:" #: app/widgets/gimptemplateeditor.c:694 -#, fuzzy, c-format +#, c-format msgid "%d x %d dpi, %s" -msgstr "%d×%d pikseliä" +msgstr "%dx%d dpi, %s" #: app/widgets/gimptemplateeditor.c:698 #, c-format msgid "%d dpi, %s" -msgstr "" +msgstr "%d dpi, %s" #: app/widgets/gimpthumbbox.c:337 #, c-format @@ -11267,7 +10379,6 @@ "%s napsauta pakottaaksesi päivityksen" #: app/widgets/gimpthumbbox.c:407 app/widgets/gimpthumbbox.c:477 -#, fuzzy msgid "No selection" msgstr "Ei valintaa" @@ -11277,9 +10388,8 @@ msgstr "Esikatselu %d / %d" #: app/widgets/gimpthumbbox.c:730 app/widgets/gimpthumbbox.c:740 -#, fuzzy msgid "Creating Preview ..." -msgstr "Ladataan esikatselua ..." +msgstr "Luodaan esikatselua..." #: app/widgets/gimptoolbox-color-area.c:135 msgid "Change Foreground Color" @@ -11290,7 +10400,6 @@ msgstr "Vaihda taustaväriä" #: app/widgets/gimptoolbox-image-area.c:90 -#, fuzzy msgid "" "The active image.\n" "Click to open the Image Dialog." @@ -11344,18 +10453,17 @@ #: app/widgets/gimpuimanager.c:495 msgid "Your GIMP installation is incomplete:" -msgstr "" +msgstr "GIMP-asennuksesi on keskeneräinen:" #: app/widgets/gimpuimanager.c:497 msgid "Plase make sure the menu XML files are correctly installed." -msgstr "" +msgstr "Varmista että valikoiden XML-tiedostot on asennettu oikein." #: app/widgets/gimpundoeditor.c:255 msgid "[ Base Image ]" msgstr "[ peruskuva ]" #: app/widgets/gimpvectorstreeview.c:151 -#, fuzzy msgid "Reorder path" msgstr "Uudelleenjärjestä polku" @@ -11380,9 +10488,8 @@ msgstr "Käännä" #: app/widgets/gimpviewablebox.c:210 -#, fuzzy msgid "Open the palette selection dialog" -msgstr "Napsauta avataksesi kuviovalitsijan." +msgstr "Avaa paletin valinta" #: app/widgets/gimpviewablebox.c:250 msgid "Open the font selection dialog" @@ -11403,7 +10510,6 @@ msgstr "Tason taa" #: app/widgets/gimpwidgets-constructors.c:53 -#, fuzzy msgid "Color erase" msgstr "Värin poisto" @@ -11429,25 +10535,21 @@ #: app/widgets/gimpwidgets-constructors.c:62 #: app/widgets/gimpwidgets-constructors.c:95 -#, fuzzy msgid "Hard light" msgstr "Kova valo" #: app/widgets/gimpwidgets-constructors.c:63 #: app/widgets/gimpwidgets-constructors.c:96 -#, fuzzy msgid "Soft light" msgstr "Pehmeä valo" #: app/widgets/gimpwidgets-constructors.c:64 #: app/widgets/gimpwidgets-constructors.c:97 -#, fuzzy msgid "Grain extract" msgstr "Värin poisto" #: app/widgets/gimpwidgets-constructors.c:65 #: app/widgets/gimpwidgets-constructors.c:98 -#, fuzzy msgid "Grain merge" msgstr "Värin lisäys" @@ -11463,13 +10565,11 @@ #: app/widgets/gimpwidgets-constructors.c:70 #: app/widgets/gimpwidgets-constructors.c:103 -#, fuzzy msgid "Darken only" msgstr "Tummenna" #: app/widgets/gimpwidgets-constructors.c:71 #: app/widgets/gimpwidgets-constructors.c:104 -#, fuzzy msgid "Lighten only" msgstr "Vaalenna" @@ -11509,7 +10609,6 @@ msgstr "Vaakataso" #: app/widgets/widgets-enums.c:113 -#, fuzzy msgid "Pixel values" msgstr "Pikseliarvot" @@ -11523,19 +10622,17 @@ #: app/widgets/widgets-enums.c:171 msgid "Black & white" -msgstr "" +msgstr "Mustavalkoinen" #: app/widgets/widgets-enums.c:172 msgid "Fancy" -msgstr "" +msgstr "Koristeellinen" #: app/widgets/widgets-enums.c:199 -#, fuzzy msgid "GIMP help browser" msgstr "Selain avustuksille" #: app/widgets/widgets-enums.c:200 -#, fuzzy msgid "Web browser" msgstr "Web-selain" @@ -11548,57 +10645,48 @@ msgstr "Kuvake" #: app/widgets/widgets-enums.c:262 -#, fuzzy msgid "Current status" -msgstr "Nykyinen asetus" +msgstr "Nykyinen tila" #: app/widgets/widgets-enums.c:264 msgid "Description" msgstr "Kuvaus" #: app/widgets/widgets-enums.c:265 -#, fuzzy msgid "Icon & text" msgstr "Kuvake ja teksti" #: app/widgets/widgets-enums.c:266 -#, fuzzy msgid "Icon & desc" msgstr "Kuvake ja kuvaus" #: app/widgets/widgets-enums.c:267 -#, fuzzy msgid "Status & text" msgstr "Tila ja teksti" #: app/widgets/widgets-enums.c:268 -#, fuzzy msgid "Status & desc" msgstr "Tila ja kuvaus" #: app/widgets/widgets-enums.c:295 -#, fuzzy msgid "View as list" msgstr "Näytä listana" #: app/widgets/widgets-enums.c:296 -#, fuzzy msgid "View as grid" msgstr "Näytä ruudukkona" #: app/widgets/widgets-enums.c:324 -#, fuzzy msgid "Normal window" msgstr "Normaali-ikkuna" #: app/widgets/widgets-enums.c:325 -#, fuzzy msgid "Utility window" msgstr "Dialogi-ikkuna" #: app/widgets/widgets-enums.c:326 msgid "Keep above" -msgstr "" +msgstr "Pidä päällä" #: app/xcf/xcf-load.c:297 msgid "" @@ -11631,9 +10719,8 @@ msgstr "Tiedoston '%s' haku epäonnistui." #: app/xcf/xcf.c:86 app/xcf/xcf.c:143 -#, fuzzy msgid "GIMP XCF image" -msgstr "GIMP-ilmoitus" +msgstr "GIMP XCF kuva" #: app/xcf/xcf.c:282 #, c-format @@ -11645,16 +10732,24 @@ msgstr "Luo ja muokkaa kuvia." #: data/misc/gimp.desktop.in.in.h:2 -#, fuzzy msgid "Image Editor" -msgstr "Kuvamaski" +msgstr "Kuvaeditori" #~ msgid "Y:" #~ msgstr "Y:" +#~ msgid "Keep aspect ratio" +#~ msgstr "Säilytä kuvasuhde" + #~ msgid "Transformations do not work on layers that contain layer masks." #~ msgstr "Muunnokset eivät toimi kaikilla tasoilla, joilla on tasomaski." +#~ msgid "Main Keyboard" +#~ msgstr "Ensisijainen näppäimistö" + +#~ msgid "Main Mouse Wheel" +#~ msgstr "Ensisijainen hiiren rulla" + #~ msgid "Resize Error: Both width and height must be greater than zero." #~ msgstr "Virhe: Sekä leveyden että korkeuden tulee olla nollaa suurempia." @@ -11667,29 +10762,71 @@ #~ msgid "Indexed Palette Menu" #~ msgstr "Paletinmuokkausvalikko" -#, fuzzy #~ msgid "Inde_xed Palette" #~ msgstr "Indeksoitu paletti" -#, fuzzy #~ msgid "_Undo History" #~ msgstr "Toimintohistoria" -#, fuzzy #~ msgid "Brus_hes" -#~ msgstr "Siveltimet" +#~ msgstr "_Siveltimet" -#, fuzzy #~ msgid "Show Image _Menu" -#~ msgstr "/Näytä kuvavalikko" +#~ msgstr "Näytä kuvavalikko" -#, fuzzy #~ msgid "Buffer" -#~ msgstr "Leikkeet" +#~ msgstr "Leike" + +#~ msgid "" +#~ "You are trying to create an image with a size of %s.\n" +#~ "\n" +#~ "Choose OK to create this image anyway.\n" +#~ "Choose Cancel if you did not intend to create such a large image.\n" +#~ "\n" +#~ "To prevent this dialog from appearing, increase the \"Maximum Image Size" +#~ "\" setting (currently %s) in the Preferences dialog." +#~ msgstr "" +#~ "Yrität luoda kuvaa jonka\n" +#~ "koko alunperin olisi %s.\n" +#~ "\n" +#~ "Valitse OK luodaksesi kuva silti.\n" +#~ "Valitse Peruuta jos et tarkoittanut\n" +#~ "luoda näin isoa kuvaa.\n" +#~ "\n" +#~ "Estääksesi tätä ikkunaa esiintymästä,\n" +#~ "kasvata \"Kuvan enimmäiskoko\" -asetusta\n" +#~ "(tällä hetkellä %s) Asetukset-ikkunassa." + +#~ msgid "Image exceeds maximum image size" +#~ msgstr "Kuva ylittää suurimman sallitun koon" + +#~ msgid "Layer Too Small" +#~ msgstr "Taso liian pieni" #~ msgid "Layer _Name" #~ msgstr "Tason _nimi" +#~ msgid "Light Checks" +#~ msgstr "Vaalea ruudutus" + +#~ msgid "Mid-Tone Checks" +#~ msgstr "Keskitumma ruudutus" + +#~ msgid "Dark Checks" +#~ msgstr "Tumma ruudutus" + +#~ msgid "White Only" +#~ msgstr "Pelkkää valkoista" + +#~ msgid "Gray Only" +#~ msgstr "Pelkkää harmaata" + +#~ msgid "Black Only" +#~ msgstr "Pelkkää mustaa" + +#~ msgid "Positioned color dithering" +#~ msgstr "Sijoitettu sekoitus" + #~ msgid "Set Indexed Palette" #~ msgstr "Indeksoitu paletti" @@ -11702,9 +10839,66 @@ #~ msgid "No preview available" #~ msgstr "Esikatselukuvaa ei saatavana" +#~ msgid "Black" +#~ msgstr "Musta" + +#~ msgid "Changes were made to '%s'." +#~ msgstr "Kuvaan %s on tehty muutoksia." + +#~ msgid "Unsaved changes will be lost." +#~ msgstr "Tallentamattomat muutokset menetetään." + +#~ msgid "General Palette Options" +#~ msgstr "Yleiset palettiasetukset" + +#~ msgid "Dithering Options" +#~ msgstr "Värisekoituksen asetukset" + +#~ msgid "[ Warning ]" +#~ msgstr "[ Varoitus ]" + +#~ msgid "" +#~ "You are attempting to convert an image with an alpha channel to indexed " +#~ "colors.\n" +#~ "Do not generate a palette of more than 255 colors if you intend to create " +#~ "a transparent or animated GIF file." +#~ msgstr "" +#~ "Yrität muuntaa kuvaa jolla on alfakanava indeksoiduksi.\n" +#~ "Älä tee yli 255 värin palettia jos aiot tallettaa kuvan läpinäkyvänä tai " +#~ "animoituna GIF-tiedostona." + +#~ msgid "Select Custom Palette" +#~ msgstr "Valitse oma paletti" + #~ msgid "Indexed Palette" #~ msgstr "Indeksoitu paletti" +#~ msgid "" +#~ "You are trying to create an image with an initial size of %s.\n" +#~ "\n" +#~ "Choose OK to create this image anyway.\n" +#~ "Choose Cancel if you did not intend to create such a large image.\n" +#~ "\n" +#~ "To prevent this dialog from appearing, increase the \"Maximum Image Size" +#~ "\" setting (currently %s) in the Preferences dialog." +#~ msgstr "" +#~ "Yrität luoda kuvaa jonka\n" +#~ "koko alunperin olisi %s.\n" +#~ "\n" +#~ "Valitse OK luodaksesi kuva silti.\n" +#~ "Valitse Peruuta jos et tarkoittanut\n" +#~ "luoda näin isoa kuvaa.\n" +#~ "\n" +#~ "Estääksesi tätä ikkunaa esiintymästä,\n" +#~ "kasvata \"Kuvan enimmäiskoko\" -asetusta\n" +#~ "(tällä hetkellä %s) Asetukset-ikkunassa." + +#~ msgid "Extended" +#~ msgstr "Laajennettu" + +#~ msgid "File Saving" +#~ msgstr "Tiedoston tallennus" + #~ msgid "Scale Layer Options" #~ msgstr "Tason skaalaus" @@ -11717,21 +10911,17 @@ #~ msgid "Layer Boundary Size" #~ msgstr "Tason rajat" -#, fuzzy #~ msgid "New width:" #~ msgstr "Uusi leveys:" -#, fuzzy #~ msgid "New height:" -#~ msgstr "Korkeus:" +#~ msgstr "Uusi korkeus:" -#, fuzzy #~ msgid "X ratio:" #~ msgstr "X-suhde:" -#, fuzzy #~ msgid "Y ratio:" -#~ msgstr "X-suhde:" +#~ msgstr "Y-suhde:" #~ msgid "Constrain aspect ratio" #~ msgstr "Säilytä muoto" @@ -11739,19 +10929,23 @@ #~ msgid "Print Size & Display Unit" #~ msgstr "Tulostuskoko ja näyttöyksikkö" -#, fuzzy -#~ msgid "X resolution:" -#~ msgstr "Tarkkuus:" +#~ msgid "Stroke Options" +#~ msgstr "Piirtoasetukset" -#, fuzzy -#~ msgid "Y resolution:" -#~ msgstr "Tarkkuus:" +#~ msgid "Move Floating Layer" +#~ msgstr "Siirrä kelluva valinta" + +#~ msgid "Pattern:" +#~ msgstr "Kuviot:" #~ msgid "_Font:" -#~ msgstr "Kirjasin:" +#~ msgstr "_Kirjasin:" #~ msgid "_Size:" -#~ msgstr "Koko:" +#~ msgstr "K_oko:" + +#~ msgid "Density:" +#~ msgstr "Tiheys:" #~ msgid "" #~ "New Channel\n" @@ -11763,7 +10957,6 @@ #~ msgid "Delete Channel" #~ msgstr "Poista kanava" -#, fuzzy #~ msgid "" #~ "Channel to selection\n" #~ "%s Add\n" @@ -11773,13 +10966,8 @@ #~ "Kanava valinnaksi \n" #~ "%s Lisää\n" #~ "%s Vähennä\n" -#~ "%s%s%s Leikkaus" +#~ "%s Leikkaus" -#, fuzzy -#~ msgid "He_x triplet:" -#~ msgstr "Heksana:" - -#, fuzzy #~ msgid "" #~ "Add color from FG\n" #~ "%s from BG" @@ -11787,12 +10975,17 @@ #~ "Lisää väri edustasta\n" #~ "%s taustasta" +#~ msgid "He_x triplet:" +#~ msgstr "Heksana:" + #~ msgid "Edit Indexed Color" #~ msgstr "Muokkaa väri-indeksiä" -#, fuzzy #~ msgid "Edit indexed image palette color" -#~ msgstr "Muokka indeksoidun paletin väriä" +#~ msgstr "Muokkaa indeksoidun paletin väriä" + +#~ msgid "Configure input devices" +#~ msgstr "Aseta syöttölaitteet" #~ msgid "" #~ "Open the selected entry\n" @@ -11812,7 +11005,6 @@ #~ "%s lataa uudelleen kaikki esikatselut\n" #~ "%s poista hävinneet" -#, fuzzy #~ msgid "" #~ "Save all errors\n" #~ "%s Save selection" @@ -11821,191 +11013,69 @@ #~ "%s tallenna valinta" #~ msgid "" -#~ "%s\n" -#~ "%s To Top" -#~ msgstr "" -#~ "%s\n" -#~ "%s päällimmäiseksi" - -#~ msgid "" -#~ "%s\n" -#~ "%s To Bottom" -#~ msgstr "" -#~ "%s\n" -#~ "%s pohjimmaiseksi" - -#~ msgid "Delete Layer" -#~ msgstr "Poista taso" - -#, fuzzy -#~ msgid "" -#~ "New color from FG\n" -#~ "%s from BG" -#~ msgstr "" -#~ "Uusi väri edustasta\n" -#~ "%s taustasta." - -#, fuzzy -#~ msgid "" -#~ "Selection to path\n" -#~ "%s Advanced options" -#~ msgstr "" -#~ "Valinta poluksi\n" -#~ "%s lisäasetukset" - -#~ msgid "" -#~ "Reset to default values\n" -#~ "%s Reset all Tool Options" -#~ msgstr "" -#~ "Palauta oletusarvoihin\n" -#~ "%s palauta kaikki asetukset." - -#~ msgid "" -#~ "Selection to Path\n" -#~ "%s Advanced Options" -#~ msgstr "" -#~ "Valinta poluksi\n" -#~ "%s lisäasetukset" - -#~ msgid "" -#~ "You are trying to create an image with a size of %s.\n" -#~ "\n" -#~ "Choose OK to create this image anyway.\n" -#~ "Choose Cancel if you did not intend to create such a large image.\n" -#~ "\n" -#~ "To prevent this dialog from appearing, increase the \"Maximum Image Size" -#~ "\" setting (currently %s) in the Preferences dialog." -#~ msgstr "" -#~ "Yrität luoda kuvaa jonka\n" -#~ "koko alunperin olisi %s.\n" -#~ "\n" -#~ "Valitse OK luodaksesi kuva silti.\n" -#~ "Valitse Peruuta jos et tarkoittanut\n" -#~ "luoda näin isoa kuvaa.\n" -#~ "\n" -#~ "Estääksesi tätä ikkunaa esiintymästä,\n" -#~ "kasvata \"Kuvan enimmäiskoko\" -asetusta\n" -#~ "(tällä hetkellä %s) Asetukset-ikkunassa." - -#~ msgid "Image exceeds maximum image size" -#~ msgstr "Kuva ylittää suurimman sallitun koon" - -#~ msgid "Layer Too Small" -#~ msgstr "Taso liian pieni" - -#, fuzzy -#~ msgid "Positioned color dithering" -#~ msgstr "Sijoitettu pehmennys" - -#~ msgid "General Palette Options" -#~ msgstr "Yleiset palettiasetukset" - -#~ msgid "Dithering Options" -#~ msgstr "Pehmennysasetukset" - -#~ msgid "[ Warning ]" -#~ msgstr "[ Varoitus ]" - -#~ msgid "" -#~ "You are attempting to convert an image with an alpha channel to indexed " -#~ "colors.\n" -#~ "Do not generate a palette of more than 255 colors if you intend to create " -#~ "a transparent or animated GIF file." -#~ msgstr "" -#~ "Yrität muuntaa kuvaa jolla on alfakanava indeksoiduksi.\n" -#~ "Älä tee yli 255 värin palettia jos aiot tallettaa kuvan läpinäkyvänä tai " -#~ "animoituna GIF-tiedostona." - -#~ msgid "" -#~ "You are trying to create an image with an initial size of %s.\n" -#~ "\n" -#~ "Choose OK to create this image anyway.\n" -#~ "Choose Cancel if you did not intend to create such a large image.\n" -#~ "\n" -#~ "To prevent this dialog from appearing, increase the \"Maximum Image Size" -#~ "\" setting (currently %s) in the Preferences dialog." -#~ msgstr "" -#~ "Yrität luoda kuvaa jonka\n" -#~ "koko alunperin olisi %s.\n" -#~ "\n" -#~ "Valitse OK luodaksesi kuva silti.\n" -#~ "Valitse Peruuta jos et tarkoittanut\n" -#~ "luoda näin isoa kuvaa.\n" -#~ "\n" -#~ "Estääksesi tätä ikkunaa esiintymästä,\n" -#~ "kasvata \"Kuvan enimmäiskoko\" -asetusta\n" -#~ "(tällä hetkellä %s) Asetukset-ikkunassa." - -#~ msgid "Extended" -#~ msgstr "Laajennettu" - -#~ msgid "File Saving" -#~ msgstr "Tiedoston tallennus" - -#~ msgid "Pattern:" -#~ msgstr "Kuviot:" - -#~ msgid "Density:" -#~ msgstr "Tiheys:" - -#~ msgid "" #~ "Could not find the GIMP Help Browser procedure. It probably was not " -#~ "compiled because you don't have GtkHtml2 installed." -#~ msgstr "" -#~ "Ei voitu löytää GIMP Help Browser proseduuria.\n" -#~ "Sitä ei todennäköisesti ole käännetty mukaan\n" -#~ "koska sinulla ei ollut GtkHtml2-kirjastoa asennettuna." - -#~ msgid "Could not start GIMP Help Browser" -#~ msgstr "GIMP-avustusselain ei käynnistynyt" - -#~ msgid "Internal" -#~ msgstr "Sisäinen" - -#~ msgid "Black" -#~ msgstr "Musta" - -#~ msgid "Move Floating Layer" -#~ msgstr "Siirrä kelluva valinta" - -#~ msgid "Changes were made to '%s'." -#~ msgstr "Kuvaan %s on tehty muutoksia." - -#~ msgid "Unsaved changes will be lost." -#~ msgstr "Tallentamattomat muutokset menetetään." +#~ "compiled because you don't have GtkHtml2 installed." +#~ msgstr "" +#~ "Ei voitu löytää GIMP apuselainta. Sitä ei todennäköisesti ole käännetty " +#~ "mukaan koska sinulla ei ollut GtkHtml2-kirjastoa asennettuna." -#~ msgid "Select Custom Palette" -#~ msgstr "Valitse räätälöity paletti" +#~ msgid "Could not start GIMP Help Browser" +#~ msgstr "GIMP-avustusselain ei käynnistynyt" -#~ msgid "Light Checks" -#~ msgstr "Vaalea ruudutus" +#~ msgid "" +#~ "%s\n" +#~ "%s To Top" +#~ msgstr "" +#~ "%s\n" +#~ "%s päällimmäiseksi" -#~ msgid "Mid-Tone Checks" -#~ msgstr "Keskitumma ruudutus" +#~ msgid "" +#~ "%s\n" +#~ "%s To Bottom" +#~ msgstr "" +#~ "%s\n" +#~ "%s pohjimmaiseksi" -#~ msgid "Dark Checks" -#~ msgstr "Tumma ruudutus" +#~ msgid "" +#~ "New Layer\n" +#~ "%s New Layer Dialog" +#~ msgstr "" +#~ "Uusi taso\n" +#~ "%s Uusi taso -dialogi" -#~ msgid "White Only" -#~ msgstr "Pelkkää valkoista" +#~ msgid "Delete Layer" +#~ msgstr "Poista taso" -#~ msgid "Gray Only" -#~ msgstr "Pelkkää harmaata" +#~ msgid "" +#~ "New color from FG\n" +#~ "%s from BG" +#~ msgstr "" +#~ "Uusi väri edustasta\n" +#~ "%s taustasta." -#~ msgid "Black Only" -#~ msgstr "Pelkkää mustaa" +#~ msgid "" +#~ "Selection to path\n" +#~ "%s Advanced options" +#~ msgstr "" +#~ "Valinta poluksi\n" +#~ "%s lisäasetukset" -#~ msgid "Configure input devices" -#~ msgstr "Aseta syöttölaitteet" +#~ msgid "" +#~ "Reset to default values\n" +#~ "%s Reset all Tool Options" +#~ msgstr "" +#~ "Palauta oletusarvoihin\n" +#~ "%s palauta kaikki asetukset." #~ msgid "" -#~ "WARNING:\n" -#~ "Too many open message dialogs.\n" -#~ "Messages are redirected to stderr." +#~ "Selection to Path\n" +#~ "%s Advanced Options" #~ msgstr "" -#~ "VAROITUS:\n" -#~ "Liian monta avointa virheilmoitusikkunaa.\n" -#~ "Ilmoitukset tulostetaan virhevuohon." +#~ "Valinta poluksi\n" +#~ "%s lisäasetukset" + +#~ msgid "Internal" +#~ msgstr "Sisäinen" #, fuzzy #~ msgid "RGB color" @@ -12029,24 +11099,29 @@ #, fuzzy #~ msgid "Clear Saved Keyboard Shortcuts Now" -#~ msgstr "Poista tallennetut näppäimistöoikotiet nyt" +#~ msgstr "Poista tallennetut näppäimistöoikopolut nyt" #~ msgid "Clear Saved Window Positions Now" #~ msgstr "Unohda tallennetut ikkunoiden sijainnit" -#, fuzzy #~ msgid "Automatic" -#~ msgstr "/Automaattinen" +#~ msgstr "Automaattinen" + +#~ msgid "" +#~ "WARNING:\n" +#~ "Too many open message dialogs.\n" +#~ "Messages are redirected to stderr." +#~ msgstr "" +#~ "VAROITUS:\n" +#~ "Liian monta avointa virheilmoitusikkunaa.\n" +#~ "Ilmoitukset tulostetaan virhevuohon." -#, fuzzy #~ msgid "File Open Menu" #~ msgstr "Avaa-valikko" -#, fuzzy #~ msgid "File Save Menu" #~ msgstr "Tallenna-valikko" -#, fuzzy #~ msgid "Foreground Color" #~ msgstr "Edustaväri" @@ -12064,7 +11139,6 @@ #~ "crashed." #~ msgstr "Ei voinut suorittaa kutsua: Liitännäinen on saattanut kaatua." -#, fuzzy #~ msgid "" #~ "Some images have unsaved changes.\n" #~ "\n" @@ -12087,35 +11161,30 @@ #~ msgid "Pointer Movement Feedback" #~ msgstr "Osoittimen liikkeen palaute" -#, fuzzy +#~ msgid "Additional Controllers" +#~ msgstr "Lisäohjaimet" + #~ msgid "Controller Class:" -#~ msgstr "Kontrasti:" +#~ msgstr "Ohjainluokka:" #~ msgid "Select Temp Dir" #~ msgstr "Valitse tilapäistiedostojen kansio" -#, fuzzy #~ msgid "Swap dir:" #~ msgstr "Sivutuskansio:" #~ msgid "Select Swap Dir" #~ msgstr "Valitse sivutuskansio" -#, fuzzy #~ msgid "Don't show grid" #~ msgstr "Älä näytä apuviivoja" #~ msgid "Determine File _Type:" #~ msgstr "Päättele tiedoston tyyppi:" -#, fuzzy #~ msgid "Zoom to _Fit Window" #~ msgstr "Suurenna ikkunaan" -#~ msgid "Trying legacy loader on file '%s' with unknown extension." -#~ msgstr "" -#~ "Yritetään vanhaa lataajaa tiedostolle \"%s\" jossa on tuntematon pääte." - #~ msgid "Set canvas padding color" #~ msgstr "Aseta kankaan täyttöväri" @@ -12125,6 +11194,42 @@ #~ msgid "Show S_election" #~ msgstr "Näytä valinta" +#~ msgid "Session Management" +#~ msgstr "Istunnon hallinta" + +#~ msgid "Session" +#~ msgstr "Istunto" + +#~ msgid "/Tools/Selection Tools/Fu_zzy Select" +#~ msgstr "/Työkalut/Valintatyökalut/Epäterävä valinta" + +#~ msgid "Threshold Range:" +#~ msgstr "Raja:" + +#~ msgid "" +#~ "Activate both the \"Keep Height\" and\n" +#~ "\"Keep Width\" toggles to constrain\n" +#~ "the aspect ratio" +#~ msgstr "" +#~ "Valitse \"Säilytä korkeus\" ja \"Säilytä leveys\" rajoittaaksesi\n" +#~ "kuvasuhdetta" + +#~ msgid "Intensity Range:" +#~ msgstr "Voimakkuusväli:" + +#~ msgid "RGBA" +#~ msgstr "RGBA" + +#~ msgid "Final, Anchored Layer should be:" +#~ msgstr "Lopullista, ankkuroitua tasoa:" + +#~ msgid "Spiral (anticlockwise)" +#~ msgstr "Spiraali (vastapäivään)" + +#~ msgid "Trying legacy loader on file '%s' with unknown extension." +#~ msgstr "" +#~ "Yritetään vanhaa lataajaa tiedostolle \"%s\" jossa on tuntematon pääte." + #~ msgid "_Undo History Preview Size:" #~ msgstr "Kumoamistoiminnon esikatselun koko:" @@ -12185,12 +11290,6 @@ #~ msgid "\"File -> Save\" Saves the Image:" #~ msgstr "\"Tiedosto -> Tallenna\" tallentaa kuvan:" -#~ msgid "Session Management" -#~ msgstr "Istunnon hallinta" - -#~ msgid "Session" -#~ msgstr "Istunto" - #~ msgid "Click \"Continue\" to start The GIMP." #~ msgstr "Napsauta \"Jatka\" käynnistääksesi GIMPin." @@ -12205,7 +11304,7 @@ #~ "GIMP can obtain this information from the windowing system. However, " #~ "usually this does not give useful values." #~ msgstr "" -#~ "GIMP voi hakea tätä tietoa ikkunointijärjestelmästä. Tämä arvo ei " +#~ "GIMP voi hakea tämän tiedon ikkunointijärjestelmästä. Tällöin arvo ei " #~ "välttämättä ole oikea." #~ msgid "Alternatively, you can set the monitor resolution manually." @@ -12221,28 +11320,77 @@ #~ msgid "Calibrate" #~ msgstr "Kalibroi" -#~ msgid "/Tools/Selection Tools/Fu_zzy Select" -#~ msgstr "/Työkalut/Valintatyökalut/Epäterävä valinta" +#~ msgid "FG" +#~ msgstr "Edusta" -#~ msgid "Threshold Range:" -#~ msgstr "Raja:" +#~ msgid "BG" +#~ msgstr "Tausta" -#~ msgid "" -#~ "Activate both the \"Keep Height\" and\n" -#~ "\"Keep Width\" toggles to constrain\n" -#~ "the aspect ratio" -#~ msgstr "" -#~ "Valitse \"Säilytä korkeus\" ja \"Säilytä leveys\" rajoittaaksesi\n" -#~ "kuvasuhdetta" +#~ msgid "Edit Foreground Color" +#~ msgstr "Muokkaa taustaväriä" -#~ msgid "Intensity Range:" -#~ msgstr "Voimakkuusväli:" +#~ msgid "Edit Background Color" +#~ msgstr "Muokkaa edustaväriä" + +#~ msgid "%s Options" +#~ msgstr "Asetukset: %s" + +#~ msgid "Layer Width:" +#~ msgstr "Tason leveys:" + +#~ msgid "From _Template:" +#~ msgstr "_Mallista:" + +#~ msgid "Show reversed zoom ratio" +#~ msgstr "Näytä käänteinen suurennossuhde" + +#~ msgid "Resolution X:" +#~ msgstr "Tarkkuus X:" + +#~ msgid "Aborting Installation..." +#~ msgstr "Keskeytän asennuksen..." + +#~ msgid "Allow Window Resizing" +#~ msgstr "Salli ikkunan koon muutos" + +#~ msgid "Paste Into" +#~ msgstr "Liitä johonkin" + +#~ msgid "Paste as New" +#~ msgstr "Liitä uutena" + +#~ msgid "Delete" +#~ msgstr "Poista" + +#~ msgid "New" +#~ msgstr "Uusi" + +#~ msgid "Duplicate" +#~ msgstr "Kahdenna" + +#~ msgid "Refresh" +#~ msgstr "Virkistä" + +#~ msgid "Resolution Y:" +#~ msgstr "Tarkkuus X:" + +#~ msgid "Qmask Attributes" +#~ msgstr "Muuta QMask-ominaisuuksia" #~ msgid "Transparent" #~ msgstr "Läpinäkyvä" -#~ msgid "Spiral (anticlockwise)" -#~ msgstr "Spiraali (vastapäivään)" +#~ msgid "Window Type Hints" +#~ msgstr "Ikkunoiden reunukset" + +#~ msgid "Stroke" +#~ msgstr "Piirto" + +#~ msgid "Stroke _Width:" +#~ msgstr "Leveys:" + +#~ msgid "Style" +#~ msgstr "Tyyli" #~ msgid "/Add Tab/Tool _Options" #~ msgstr "/Lisää välilehti/_Asetukset" @@ -12352,9 +11500,6 @@ #~ msgid "/Tab Style/St_atus & Text" #~ msgstr "/Välilehden tyyli/T_ila ja teksti" -#~ msgid "From _Template:" -#~ msgstr "_Mallista:" - #~ msgid "/Load Left Color From/_Right Endpoint" #~ msgstr "/Lataa vasemmanpuoleinen väri/Oikea päätypiste" @@ -12394,9 +11539,6 @@ #~ msgid "/coloringtype/(Varies)" #~ msgstr "/coloringtype/(Vaihteleva)" -#~ msgid "Final, Anchored Layer should be:" -#~ msgstr "Lopullista, ankkuroitua tasoa:" - #~ msgid "/File/_New..." #~ msgstr "/Tiedosto/_Uusi..." @@ -12460,6 +11602,12 @@ #~ msgid "/Edit/Fill with P_attern" #~ msgstr "/Muokkaa/Täytä kuviolla" +#~ msgid "/Edit/_Stroke Selection..." +#~ msgstr "/Edit/Piirrä _valinta..." + +#~ msgid "/Edit/St_roke Path..." +#~ msgstr "/Edit/Piirrä _polku..." + #~ msgid "/Select/_All" #~ msgstr "/Valitse/Kaikki" @@ -12601,6 +11749,9 @@ #~ msgid "/Layer/Discard _Text Information" #~ msgstr "/Taso/Hylkää tekstitieto" +#~ msgid "/Layer/Stack/Select _Next Layer" +#~ msgstr "/Taso/Pino/Valitse seuraava taso" + #~ msgid "/Layer/Stack/_Raise Layer" #~ msgstr "/Taso/Pino/Nosta taso" @@ -12853,18 +12004,6 @@ #~ msgid "_Wrap" #~ msgstr "Rivitys" -#~ msgid "Show reversed zoom ratio" -#~ msgstr "Näytä käänteinen suurennossuhde" - -#~ msgid "Window Type Hints" -#~ msgstr "Ikkunoiden reunukset" - -#~ msgid "Qmask Attributes" -#~ msgstr "Muuta QMask-ominaisuuksia" - -#~ msgid "Resolution X:" -#~ msgstr "Tarkkuus X:" - #~ msgid "/Save Options to/_New Entry..." #~ msgstr "/Tallenna asetukset/_Uusi" @@ -12973,9 +12112,6 @@ #~ msgid "/Help/_About" #~ msgstr "/Ohje/Tietoja Gimpistä..." -#~ msgid "Aborting Installation..." -#~ msgstr "Keskeytän asennuksen..." - #~ msgid "/Tools/Paint Tools/_Airbrush" #~ msgstr "/Työkalut/Piirtotyökalut/Ruisku" @@ -13039,9 +12175,6 @@ #~ msgid "/Tools/Color Tools/_Levels..." #~ msgstr "/Kuva/Värit/Tasot..." -#~ msgid "Allow Window Resizing" -#~ msgstr "Salli ikkunan koon muutos" - #~ msgid "/Tools/M_agnify" #~ msgstr "/Työkalut/Suurenna" @@ -13087,36 +12220,6 @@ #~ msgid "/Tools/_Paths" #~ msgstr "/Työkalut/_Polut" -#~ msgid "Delete" -#~ msgstr "Poista" - -#~ msgid "FG" -#~ msgstr "Edusta" - -#~ msgid "BG" -#~ msgstr "Tausta" - -#~ msgid "Edit Foreground Color" -#~ msgstr "Muokkaa taustaväriä" - -#~ msgid "New" -#~ msgstr "Uusi" - -#~ msgid "Refresh" -#~ msgstr "Virkistä" - -#~ msgid "Stroke _Width:" -#~ msgstr "Leveys:" - -#~ msgid "Style" -#~ msgstr "Tyyli" - -#~ msgid "Image Comment" -#~ msgstr "Kuvan kommentti" - -#~ msgid "%s Options" -#~ msgstr "Asetukset: %s" - #~ msgid "Paste Transform" #~ msgstr "Liitä muunnos" @@ -13387,6 +12490,10 @@ #~ msgstr "astetta" #, fuzzy +#~ msgid "Image List" +#~ msgstr "Kuvamaski" + +#, fuzzy #~ msgid "Brush List" #~ msgstr "Sivellinmuokkain" @@ -13964,10 +13071,6 @@ #~ msgid "Info Window Follows Mouse" #~ msgstr "Infoikkuna seuraa osoitinta" -#, fuzzy -#~ msgid "Auto Save" -#~ msgstr "Tallenna" - #~ msgid "" #~ "Did you notice any error messages in the console window?\n" #~ "If not, installation was successful!\n" diff -uraN gimp-2.2.0/po/fr.gmo gimp-2.2.1/po/fr.gmo --- gimp-2.2.0/po/fr.gmo 2004-12-19 03:11:54.000000000 +0100 +++ gimp-2.2.1/po/fr.gmo 2004-12-28 16:58:42.000000000 +0100 @@ -1,229 +1,233 @@ - - lH &k>G9G,AtNi<ok@2Y;PO2i9-9;>7z  - - -  - -$'7 -OZbj0# -:ELT\ k y - -   KT.1 !;]ov -  - - +@ S]l -u*6.ex/Ncw# - $DX ` j w13  &9@ -!( 7 -DO`rAJ <3 p ~  (?Q bp -&$?F L Vdk"  - -A7U    m y ~  C73=k@6d!3<#?!c   !9Kh,  , M![}   &9 HU.k558)?,i2 #>OZA%&491n#  -3< -KV^ dr 0   # - :Gb+  - #$Ch{ (8"Mp  R[l t "">W` -r} -),!2#T#x!%.2 9EVj}#-%4J`{  - - -$ ) 7DTdw  -- !8 <FKQbu   .;BH%N!t & &9 KYh x   -J\k - --    - &9Lem   :!?\8   -&17 -M X f r - -   > =^n # 2?D\o   - -*5 M[ q~  -*;D!Vx.#"*G&f ,#$ 3AT'n'*FDT  #- -D O] z   #(,$Uz=6<?2Ar79c&9B=fE>CJ/gz  38J Z dp %8Jaq#:Nb v -   -   -$ @L\ lz( &- 5BJP -VOa -ct -   .!4G -V a o {   u&{cA z-3r;  ! 6 &G 'n             -  - -. -@ -F -^ -o -s - - - - - - + dH &k.G9GAdNi<_k@2I;|PO 2Y9-9;.7j  + + +  + ' +?JRZv0  +*5<DL [ i u + +   KD.1!+M_fu| +  +0 CM\ +ep*6Uh >Sg#{ + 4H P Z gq13)0 + ' +4?PbrAJ<# ` n| /A R`x +&$ +/6 < FT[t{"  + 17E}    mi n |  C7#=[@6dv3<#/!Su  );Xu,   =!Km  ) 8E.[558)/,Y2 .OJA%&4)1^#   #, +;FN Tb x0    *7Ro+x  + $3Xkz ("=`v  BK\ dq "" .GP +bm +),!"#D#h!%." )5FZm#-%$:Pk  + + +  '4DTgv  +- ( ,6;ARey    +28%>!d & ) ;IX hu   :L[ +t +-    + )<U]p   :?L8   +!' += H V b +o z +   > -N^p  "/4L_x   + +% =K an  +*+4!Fh.#"7&V} ,#  #1D'^'F4T{   +4 ?M j  ($Ej=p6<?"Ab79c9zB=f5>CJgj  #(: J T` r  (:Qau*>R ft +   +   +  0<L \j( %2:@ +FOQ +Sd} +   .$7 +F Q _ kx}   ukc1 z#r+  & &7 '^               + + +0 +6 +N +_ +c +} + + + + +  - - -    $ ,  1  > J e |   -    H  -  $ . >  -F HQ ! B   1 D W \  a n u   -    ` C1b0   - - $4Edw ( - -H -% 0 -=H O[j y     '. 6D ]i~    K3c6"  -"6$Ej   (+)?*i!/*J[x -'0?Xk  *Kf w!' .;Rcx-  #-3C S_3e  -  9Xx  ,;@C-    " )5 : FRi}      -+6K -al &= -E#Pt+ 0 8  ?  M  -Y  d  q         !!,!G!"^!!! !!!!!$!""*"9" H"T" \" j"v" {" "" -" -"" """ "##.#E#[#y##### ###$$ -$ $%$7$K$^$ q$ {$$$ $ $ $$$$ $ -% % % $%0% J% V% b%,n%%!%%%%)& B&O& g& u&&&&& & &&B&A'_'}'' '''' '''(((((((( -(( ()) *)7)W)"v)!)!)))* &* 0* :*D*T*c* k*y*V*+* +(+7+"=+`+ v+ +++%+ -+ ++,,&, -6,A, P,^, g,u, , ,,,, , , ,,&-,6- c-p-u- -- ------ . .42.g.y. -... -. ... .... // -/!9/[/ j/x/// /// ///?/=0L0T0h0x0004T111-1 222 -2 2#3$3-73 e3q33 33333 33444 444444 - 55,5 <5 F5T5X5r5 5 5!5 555 5 566&6 .6<6Q6 g6s6 -666 6 -66667 7!757!S7#u77 7 -797U8=W8<8=8"9?39s99 9999(9,9::(:9: -J:U:k::J: :::; .; ;;H;c; }; ;;;;;;;/<I< X< e<q<< < << < < <<< ==9=V=h=|=======>>+0>\>|>> > > >> > >>#> ?*? /tnt`XCÒɒϒ֒ 6oUœǓΓ4֓# /GX@U  -) 4 @J S]f#x Жז! 3= B P^ u ȗ  "+ J War u   -Ƙ Θۘ  /N ]i -q|  ˙ٙ    &9O_q   ̚ ֚ -.@Zk  ؛   %4 :HX_el    - -œۜ   ")19 L Xe ĝӝ - ,4<R a nz }ɞў  +18 -@ KX h v -     Ο ߟ  - (1 @ MYb iw    Ƞ ֠   ' 3@U hu{(̡4F4`1/Ǣ = ERXl#} £ -->EN _krz -ʤ -դ -  -<GX^ -grx ƥե٥ߥ - 5L ^hx} ! Ѧ  -3 >JQU]bhn u  .W -b)oj=TĪL[fj«?-tmE?(BhlT4m</߮=AM/ -ʯ -ѯ -ܯ -   - -)47I -b m y"%̰9$6I R)\ -   -Ʊ ѱ ޱ   -  - -)49H\WFI0* &BQo,=Ok}õߵ:6V?Ͷ! )#2%V|%׷:,X!# -˸ָ -  5L -T_oz@HUлٻ -ͼ 8WlKVֽ-bKҾ#+ @JO'f׿ !; DR&jF/ - : D N Zg(o  ) =!6;C$H myL!5J is {   T Yf { #N?;O{HDY0<1nU03#E$i" """@/]/3* 8>Q$a%!*3 :F[y"FGVF633P& ;'02OlR(B/k:9):+My)  $,A]%qA  -0;D _"l%/ *6 F R `*n2!%<"b(!4  Bcz    $''6O#a#* 0  =<J%@(3/K1{04/@C * %(?<h1 &1X"r+ #2Vey   -3BIJ )4H`u /CI Q*[$5-CUh1Eav&!" "-7 e -s=~   $4Tq   %7?0GTxa</l -  -0) >K[l}"X=/-A"Tw  +*Vv$ &#3FX/k  - 5V -l w 7%*YA1(.- M7n  E2<ou-B,">O-6.f?+ 3 ?Lk " -!"&7H\p v'"  <<Y c`leig<`\bknh\4e`$j !-=Ogx" &Dby($$) NX*a   -D Xd t~#%Ibw  0(Y_gp!  ^% ERK&c T"w !" DQcz Vm;n9 I     -" - - - - - - / 7G 7 !   -    % * : ? G "N q    &     A  ] !i      -   -    $*3^q y(!h L Ye - -\-H ip7  /6EU]TWA --8%Gm~1!+>Nf]   +@\z   !%8Kk%(  '>Xjf}CE(n& ()?VCg;LP4M4.7@UD $=Yt -5@Qi{ + Ef  #? S_q!!#!!!!!!"P"g"{"" """"#.!#-P#!~## ##!#$)$@$ H$U$s$$ $X$ %I%^%w%%%%%'% %&&&.&&B&"i&&& & &"&&"'"*'M'a''#''''(((.(5( -=(H(N(b(*((%()( -))1/)(a))') -))")"*,** W*c* i*w******" +"0+S+s++++++(, .,*;,f, m,w,|,",=,, -#-8-P-c-k-~- ---!---.-.A.Y.v."....-..*/Y/n/ -// //%/// -/ 00(0A0_0~000000 001!1?1Q1f1u11*11 11=1321N22$2#2-23363 F3R3X3m3t333*3Q3Q"4%t444 -4 4445585 O5 \5j5 66:6 C6O6V6 g666 6667!97+[77 7+7*7 8 )8 68C8X8g8o8 -8h828(9.09_9/g9 999+9 :-%:S: [:e:m:::#:::; ;; 5;?;V;];%t;; ;;;7;1,< ^<l<s<< <%<&<!<"=8=P=Bg=== ====> )>6> =>I>Q> X>y>> >)>>>>$?3?I?[?r??? ?A??@@'@$=@)b@@QJAAAA TC^CgC yC C,CC?C D*DED aDmDuD DDDDEE -EEEEF#F'2F ZF&hFF FFFFF FF!G)G&AGhGGG#GGGG%G%HEHXHwH$HHHHH3IDIIIQI1hI&I+I.I#J@J VJQbJxJQ-KQKUK:'LDbLLLLLLL.M53MiMMMM MMMNb-NNN#N!NN O)O"IOlOO"O!OO O?P.OP~PPP-PPQQQ2QHQ^QsQQ Q!Q$QQ R!R8RPRkR%R0RR"S,$S8QS3SSSSST!.TPTgT*TBTTU(U7UTUqUEU$UUV$ V2VCHV+VVVV&V!W>WPWcWuWWW!WWW X X!X 5XBXKX"cXX$XX -X X(XY( YIY3]Y&YY"Y1Y2%Z-XZZZ ZZZE['U[%}[*[4[\'#\CK\W\\]]06]g] ~]]]]]]^%7^]^{^^^^!^^*_9_S_>`T`i`p```````"a(aEa[anaaaa%ab&b?bQbibbb$bbcc,cCcacyc#ccc -cc# d1dHd(bd&d&d&d#e$e$:e"_e$e-e e%ef*4f#_ff#f ff,g -g$Ng sggg$g@g4$h(Yhh$h(h%h$ i.1iN`iCi\iUPj'jjj -kk (kIk"^kk"kkkkkl'l @l.Ml!|l!l-ll' m(3m\m xmm m mmn!n,?nln6OoGoohpOVqq)lrrPs8toAtJtrt>ouuDkv=xLyM;zz [{h{o{u{|{ {{{{& | 4|A|^|#{||| ||N|;}X}n}#}}}}}!~25~h~}~~~2~~,IgC+.#I%m#Ӏ&=$]+ȁρ 7@F[c wƂՂ݂ - 3!U - -5@\s,|.؄#'!D%f#ƅ̅Յ(! 2 @ M -[ fr{Æ؆ (%3N $ȇ  $2HN_o~MHM,EzElSsNJLi(ߋ%ЌYmHFS-#e.;6Cr>>:,:g@N2^FEY>^%^D((Ơdy*Sf6ȧJ!lu Ψب ;Wj ݩh9 # ԫ-!C&eҬ   %7LQYAx?FAh"T  &.6 -NY -b.m+'ȱ>(/X#w#+(*> EOa -|Y+  " .8Oe}=@?N7]dYqTƶ=XTmlYƹsJ_{j Z[?W\K4 - $*OjA|~63Ayr,1: -V ao / - -:E [iq -    )/AR jv~ !$ - (1 O \i  ' -EPck+|  2GYm$)= S_s -!  - "&=#Vz#'  -)4;JS!c - -  ( -5 @L#]  - -  ! : [e|$ # -3>&Fm  -,LTkq -#5EXg {    -'/AW` gt ':$X} 9M -T_u)JF#>j'   ")L4j03! : [ gs"   6Ol |   -#   ' -5@INm  -U[{ (322R1    %f4M.v"c6yF| UOhlk(jQ]!$0{[} #)2z$E"u~OsM9h~{;*xlcaTP)i!NJ[uqL#F Lf'5f -;^k@ ;5@+07RcdoCdJzSmD_tZ< -^>t@ F yfoGPx fLEqrD`p#dD 0 - |m"DTO=tP=Hj5P],IN)Q_7b(0EY<*#Lg>zMsgj @viBqHgOsyP^X 4ta|Ihr77E~'8g9H}U{!0.mbr(?MlI")6t_~( -VZsvmr{Z A<rV6%C:!r#A^2u2$Qx^}rX/b,_P{ g>.F.Q$@<eP-0"m9QfO*V$|{N6w?:VeK/\o$L N)%l,CaAkFi3$)cU(S{2H|ZH/Z!IJQWa; m  w[`:SnDI(2SU ko -U51g_=Anqd]*D;dRA@x,j nlSR;w`6qL%<BX%VBv,.1!bP5R-%_i!BAR<0MIWI]`~2,e\nFXQ+M QSK:\u J*G<n<Z[%4}.r>c\(E+pt v)7+p19M4o~{)HU21WmCW}g1\Y-qhK ;0N=_Kh]lou!^.LT?R& >o }mw5OZ'cG6K15= b,^'pY k/bk9 HMk -c&u/ _#Q8?1[x RyH]x#  -W=kBnD1m6+8f'ZX-bW!ZTXr8qB|N&5*,7"Fo =n'CzGfK-M?+:[WJ]:so$CtlL9& y tqUG[.4OY fsw-p&B> 2=d7`}Es%AEuH=?`)3T'_R9Kjppepud|jM4j@RG>jY|3"?x~JD&V%]azii : -XfXG[ 63 E;;hsaYNyte\N:CTsyi"*YJGaz35h bIc/Uz ~(BWhVe^i 'ja9`O8\#w3/9nNL-DUB*P8 >4F% T.:V88$ ]{+<gkvc& 2vA3+E3zg^l1d`y?y @&Ve 7SF4G A[xqKIpa. ,(Kw`>OT43 -\\~iSSu@|}Tv/xC J&b6/4-+"wCJ z7 -'8X}0dYw* enhl -Y?vW#e  + + +      !  . : U l |  +    H  +    .  +6 HA ! B   1 4 G L  Q ^ e u  +    ` C1R0   + +$5Tg ( + +H +  +-8 ?KZ iv     &4 MYn    K3S6" &$5Zu   (+)/*Y!/*:Khx +6I ` )D U_o! 0AVu-  ! 1=3Cw  +  6Vo   +@!b-i       $0G[ o y    + ) +?J_hp  +##.Rk+     +  +7  B  O ] r         +!%!"+ T+ `+l++%+ ++ ++++, +,, .,<, E,S, g, q,,,, , , ,,&,,- A-N-S- +c- +n-y------4.E.W. +].h.p. +. ... .... .. /!/9/ H/V/g// /// ///?/0*020F0V0s00421g1p1-x1 222 +2 2#23-3 C3O3d3 y33333 33f4z44 444444 +44 +5 5 $52565P5 a5 k5!u5 555 5 5556 66/6 E6Q6 +d6o66 6 +66666 6!67!17#S7w7 7 +797U7=58<s8=8"8?9Q9c9 t9999(9,999:: +(:3:I:^:Jr: :::: ; ;&;A; [; g;u;;;;;; <'< 6< C<O<i< {< << < < <<< <<=4=F=Z=m=~=======+>:>Z>a> p> }> >> > >>#> >? ?&?;?R?6j????? ?7?'@E@Z@j@q@@@ @ @@@ @@ A#A8A>A +EA +PA[A cApAA AA +AAA AA +AAB 8BDBVBqBB BBBBB4C;CXCkCCCC.CECCD TD bDoD D DDD D D D +DD E +EE,E ;EHEeEmEENF +mFxFFFF FFFFF# G0GNG bGnGGGG#GGH "H/HBH_HvH$HHH HHII2I!JIlIII +III IIIJ$Jbzͅ܅ !*F3z + +  Æ ц ކ  !!) K W+cK0ۇQ ^$5PGF-Oj owejM~p7ow<?͏> tLt`6!ƒے 6o34# G֔XUw͕ +  ( 1;D#Vz і   .< S]ek nx ŗ   ( 5?P S _ iw +   , ;G +OZl |  ˙ ٙ -=O ` lx   +̚Қ 8Ibs   ʛ қܛ  &6=CJ ]jm v  + +œ ʜԜ ڜ * 6C] ery +ѝܝ  +0 ? LX [ejpž ؞   + )6 F T +b m {    ǟ ϟٟ +   +7@ GUel u    Ӡ٠ܠ   3 FSYbs(ӡۡ$4>1s/բ #06J#[ ƣ֣ + #, =IPXhz + + +ɤ Ϥݤ +%6< +EPV_dy ϥӥ +٥5* <FV[b jx!  Ц + (/3;@FL S ]gmt {.˧W@)_oj=dTL[Dj? tKE?BFlT4K</=A+/m + + + +ů Я ܯ +' +@ K W"a%9Ȱ' 0): +dow   +   Ʊ б +ܱ + +&\5F'0n*ʳ /Me|,̴ߴ-I[lܵ64?k!Ķ #%4Zy%۷,6!c# + +ƸѸ  * +2=M_zw@H3| +bmʼӼ 5JKhV b)ž#  (-'Dlɿ ޿ "0&HoF/  " , 8E(M v ) =!$& KWh}L( GQ Y fr z 2 7D Y f#pN?OYHD70<LUh03##$Gl"~ """/;/k3*/$?%d! $9W^go"FG4F|633.&b ;'2-l`R( /I:y9)++Wk)z   +;%OuA +" ="J%m/  $ 0 >*L2w!%"@(c!4 AXn   hr $''-#?#c* 0 <(%e@(3/)1Y04/@! bl*(<F1 &6"Ps+#4CW_p   I( r)&>Si~ !' /*9$d5 !3Fc#?Th&~!"- C +Q=\   2O oy  0%TVa< J +^i  +0 )9J[n~X/t "2Us +4Tp$ &#$6/Iy  4 +J U am7%Y1y(.  +7L  E2MSfx-B,>--l6.f   *I e"s +!"&:N T'b"  <<7 tc~`lCig`\@knF\e`jc kw! -EVq""@Wm($$ ,6*? j   " 6B R\o#'@Ujz  07=EN!c  ^ #0)&Ah TUi} ! "/AX m4K;L '    _ +"~ + + + + + + + 7% 7] !   +        % ", O g ~  &       ; !G i     +   +    $ *<O W(a!h * 7C +] +h\s-HGN7`  #3]T5A + %%K\1n!+,f;    :Xl   !)Ia%(  6Hf[CEL&f (4CE;LPMc4.@3t}D7Rcz + +3E\z  0L `n   );TgR!Z!#m!!!!!!!P!1"E"d" """""."-#!H#j# ##!### +$ $$=$]$ q$X}$$I$(%A%V%\%p%%'% %%%%%& &"3&V&q& & &"&&"&"&'+'I'#]''''''''' +(((,(*K(v(%()( +((1((+)T)'t) +))")"),) !*-* 3*A*X*n****"*"*+=+S+j++++(+ +*,0, 7,A,F,"N,=q,, ,,----5-H- ^-h-}-!----- .#.@."W.z...-...#/8/ +I/T/ k/w/%/// +/ /// 0)0H0W0f0u000 0000 1101?1Q1*b11 11=1112J2$Z2#2-2223 33"373>3O3^3*o3Q3Q3%>4d44 +4 444445 5 &545556 66 6 16R6o6 6666!7+%7Q7 o7+7*7 7 7 8 8"81898 +K8hV8288.8)9/19 a999+99-9: %:/:7:K:e:#{:::: :: : ; ;';%>;d; v;;;7;1; (<6<=<Q< b<%p<&<!<"<==B1=t== ===== => >>> ">C>R> i>)u>>>>$>>?%?9uxuD5v=zxLyMzSz %{2{9{?{F{ c{{{{&{ { |(|#E|i|| ||N|}"}8}#S}w}}}}!}2}2~G~e~~2~~~~1PCp+#%7#]܀$'L+f ȁ7ҁ +%- AMay + ǂڂ3 +̃ + +&=,F.s#„'!%0#Vz(  +  +% 0<EWl|Æ׆(3 L$Y~ ˇ )9HZM_HMEDElЉS=L3(%Yݍ7FSK#_/ܔ;C<>x>::1@lN^FYV>^^ND(Ɵb.ynS0|6ɧJ6?Rn  ƨ!4L`t ʩh l#z «ޫ! &/Vl  ɬ֬#AB?Fĭ hTU װ +# +,.7+f'>("#A#e+(޲ + +FQYZ+   /G^r=@ȴ 7'd_YĵqR="T`ml#s)ϼ{Rν4Z[ Wef\r +$4MAOFHN6W3Ayr[, +  +9Oe / + %3; +M Xe    4@HN Q_q!$  &3KNbj  ' +-5+Fr  #7Rez$ )= +V!a  + "# D#[' +!-O +`k +   + +#' KX`io + +   %/FNV_z$  +&7K`u x5; +T_go"1 E S_pw   + !* 1>N]f {$"Ga jv9 +)?X)xJF>4s'  "440i3!  % 1=Ukr"  6 F R\ c +mx#    + +7 S_q +U%EUiov (3221O    fMe.v!b5xF| UOgkj(iP\!# 0zZ} #(1y#D"t}NsL9h~{:*wkbaSO(h MJZtqL"F Le'4f +:^k? ;4@*06QccoBdJyRmD_sZ< +]>t@ E xenFOw eKDqqC`p"dC 0 {l!DSO<sP<Gj5O]+IM)Q^7a'/~EX<*~"Kg>zLsfj? uiBpHgNryP]W 4s`{Igr~66E~&7f8H|Tz!0.laq(?LkH"(5s_}' +VZrulqzY A;qV6$B9!r"A]1u1$Qx]}rW.a+_O{ +f=-E-P$?;dP,/"m8QfO)U#|zM6w>9VdJ.\o$L M($l,Ba@jEi2#)cT(Rz2G|ZH/Y HIQV`; l v[_:RnDH'1STkn +U51g^=Amqd\)C:cRA?x,j nkSQ:v`5qK%<B~W$UAu+.0 aO5R,%^h B@R;/LIWH]_}2,e[mEWP *M PSJ:\t J*F;m;Y[$4}.r=b[(D+ot u)6+o18L3n~{)HU20VmCW|f1\X,phJ ;/N=^Kh\lnu ].LT?Q% >o }mw4NY&bF5K04=b+^&oXj.bk9GMj +-c%u. ^"P7>0Zw QxG]x#  V<jAnC0l6*8f&ZX-aW!YSWq8pA{N&5),7!Fn<m'BzGfJ-M>*9ZVJ\:ro$BslK9% y tpUGZ-4NY esv,p&A> 1<c7_|Dr%@DtG=>`(2T'_Q8Kiopdpuc{iM3j@RF=iY|2!?w}IC&U$]`zih : XeXG[63 +E;:graXNxte\M9CSsyh"*YIG`y34g bHc/Tz +}'BVgUe^h 'i`8`N7[#v2/9n~NK-DTA)P7 =4E% T-9V88# +\{+<gkub &2v@2+E3yf^k1d_y?x @%Ue6SF3F @[xpJIoa- +'Kw_=OT33 [[~iRRt?{|Sv.wC I%b5/3,*!wCI y7  &7X|/cXv) dmhl Y>vW#d Invalid option "%s" Usage: %s [option ... ] [file ... ] @@ -267,7 +271,7 @@ Make sure a proper setup for your display environment exists.GIMP help browserGIMP is not properly installed for the current user. User installation was skipped because the '--no-interface' flag was used. To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Generate optimum paletteGet Monitor ResolutionGiganticGimprc proceduresGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient:GradientsGradients MenuGrain extractGrain mergeGrayGrayscaleGreenGreen:GridGrid line spacingGrow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_counter-clockwise hue)HSV (clockwise _hue)H_eight:H_elp browser to use:Handle position: %0.6fHard edgeHard lightHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHelp proceduresHex:HighlightsHint for the _docks:Hint for the _toolbox:HintingHinting alters the font outline to produce a crisp bitmap at small sizesHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB color layers.Hue-_Saturation...Hue:HugeI_con & TextI_mageI_mport Path...I_nterpolation:I_nterval:IconIcon & descIcon & textIf available, hints from the font are used but you may prefer to always use the automatic hinterIf you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.Illegal variable name in environment file %s: %sImageImage + GridImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage ThumbnailsImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage maskImage resolution is out of bounds, using the default resolution instead.Image sizeImage sourceImage typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport paletteImport pathsImported PathIn_kIn_vertIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorIndexed Color ConversionInfo WindowInitial zoom _ratio:Initialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' -InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:Intersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratioKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard ShortcutsL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine +InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:Intersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard ShortcutsL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine spacing:Line Width:Line _Style:Line style used for the grid.LinearLinked itemLoadLoad CurvesLoad LevelsLoad Right Color Fr_omLoad text from fileLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower Path to _BottomLower pathLower path to bottomM_agnifyM_asterM_ove to Screen...Ma_pMagentaMagenta:MagnifyMake _transparentManage Loadable ModulesMarching _ants speed:Mask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:Max Depth:Maximum _filesize for thumbnailing:Maximum _new image size:Maximum color differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMeasure the rulers and enter their lengths:Median:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMerge vectorsMessage proceduresMessage repeated %d times.Message repeated once.Messages are redirected to stderr.MidtonesMinimal number of _undo levels:MiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMouse WheelMoveMove AnchorsMove ChannelMove Floating SelectionMove GuideMove LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove itemMove layers & selectionsMove selectionMove the current layerMove the current pathMove the selected filter downMove the selected filter upMove to Screen...Move: MultiplyN_umber of colors:Na_vigationNa_vigation WindowNa_vigation preview size:NameName:NavigationNew ChannelNew Channel ColorNew Channel OptionsNew Color from _BGNew Color from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channelNew channel...New color from BGNew color from FGNew gradientNew importNew layerNew layer...New paletteNew path with last valuesNew path...New patternNew vectorsNo brushes available for use with this tool.No filter selectedNo linear gradients found in '%s'No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of _processors to use:Number of grid linesNumber of layers:O_ther...OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset by x/_2, y/2Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the palette selection dialogOpen the pattern selection dialogOpen the selected entryOpening '%s' failed: %sOpening '%s' failed: %sOptions: @@ -317,7 +321,7 @@ did not save indexed colormaps correctly. Substituting grayscale map.YYellowYellow:You are trying to create an image with a size of %s.You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your input device settings will be reset to default values the next time you start GIMP.Your keyboard shortcuts will be reset to default values the next time you start GIMP.Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_All_Anchor Layer_Antialiasing_Arbitrary Rotation..._Artistic_Aspect_Auto_B_BG Color_Background color:_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Bucket Fill_By Color_By Color Select_C_Cap style:_Channels_Clear Errors_Clear Undo History_Clone_Close_Close Tab_Clouds_Color Tools_Colors_Configure Color and Opacity..._Context_Context Help_Copy_Copy Named..._Create Image from Template..._Crop & Resize_Crop Image_Curved_Curves..._Dark Check Color_Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Desaturate_Detach Tab_Device Status_Dialogs_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Ellipse Select_Enable layer & channel previews_Enormous_Equalize_Eraser_FG Color_File_Fill with:_Fit Image in Window_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground color:_Free Select_G_Generic_Gigantic_Gradient_Gradients_Grayscale_Grayscale copy of layer_Grow..._Guides_Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Info Window_Intersect with Selection_Invert_Join style:_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Left Neighbor's Right Endpoint_Levels..._Light Check Color_Light Effects_Lightness:_Linear_Linked_Load Left Color From_Lower Channel_Lower Layer_Lower Path_M_Manually_Map_Mask_Mask to Selection_Maximum number of colors:_Measure_Medium_Merge Palettes..._Merge imported paths_Misc. Stuff_Miter limit:_Mode_Module Manager_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._Padding Color_Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preferences_Preview_Previous tip_Properties_Quick Mask Active_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Reassign shortcut_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Remove unused colors from final palette_Render_Replace_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Order & Visibility_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Right Endpoint_Right Neighbor's Left Endpoint_Rotate_Saturation:_Save_Save Left Color To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Show in Toolbox_Sinusoidal_Small_Smudge_Snap distance:_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tools_Transfer layer's alpha channel_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Visible_Web_Web browser to use:_White (full opacity)_Width:_Wrap around_X resolution:_X:_Xtns_Y_Y resolution:_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for icon typeinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetermillimetersminuten/apercentpicapicaspixelpixelspixels/%apixels/%spointpointssecondtips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: gimp 2.2.0pre1 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-19 03:11+0100 +POT-Creation-Date: 2004-12-28 16:58+0100 PO-Revision-Date: 2004-11-13 17:19+0100 Last-Translator: Raymond Ostertag Language-Team: GNOME French Team @@ -374,7 +378,7 @@ Assurez-vous que des réglages corrects pour votre environnement d'affichage existent.Navigateur d'aide GimpGimp n'est pas correctement installé pour l'utilisateur courant. L'installation utilisateur a été sautée car l'option « --no-interface » a été utilisée. Pour réaliser l'installation utilisateur, lancez GIMP sans l'option « --no-interface ».GIMP utilise une quantité de mémoire limitée pour stocker les données d'une image ; cette zone est nommée « Cache d'images ». Vous devriez ajuster cette taille pour correspondre avec votre quantité de mémoire libre. Prenez en compte la quantité de mémoire utilisée par les autres processus en cours.GIMP utilise un fichier supplémentaire gtkrc de manière à ce que vous puissiez modifier son apparence vis à vis d'autres applications GTK.Version de GIMPGimp préviendra l'utilisateur si ce dernier tente de créer une image dont la taille mémoire dépasserait la taille spécifiée ici.GammaGénéralCette option permet de spécifier le nombre minimum de couleurs allouées à Gimp par le système ; ce n'est en général utile que pour les affichages 8 bits.Générer une palette optimaleObtenir la résolution du moniteurGigantesqueProcédures GimprcEffets de _verreDégradéÉditeur de dégradéMenu Éditeur de dégradésDossiers des dégradésCouleur de l'extrémité gauche du segment de dégradéCouleur de l'extrémité droite du segment de dégradéDégradé (interface utilisateur)Dégradé :DégradésMenu DégradésExtraction de grainFusion de grainGrisNiveaux de grisVertVert :GrilleEspacement des lignes de la grilleAgrandissement du canalAgrandir la sélectionAgrandir la sélection deGuideAlignement sur les guides et la grilleProcédures sur les guidesTSVTSV (%0.3f, %0.3f, %0.3f)TSV (teintes sens _anti-horaire)TSV (teintes sens _horaire)_Hauteur :_Navigateur d'aide à utiliser :Position du taquet : %0.6fContour durLumière dureDuretéDureté :HauteurHauteur :AideNavigateur d'aideSystème d'aideLe navigateur d'aide ne démarre pasLe navigateur d'aide n'a pas été trouvéProcédures d'aideHexa :Tons vifsEnvoi pour les fenêtres _attachables :Envoi pour la _boîte d'outils :Indices d'ajustementLes indices d'ajustement altèrent les polices pour produire des lettres nettes dans les petites taillesHisto_grammeHistogrammeÉchelle de l'histogrammeHistoriqueHorizontalDécalage horizontal de la première ligne de la grille ; ça peut être un nombre négatif.Espacement horizontal des lignes de la grilleNombre de fichiers récemment ouverts à conserver dans le menu Fichier.TeinteTeinte-SaturationTeinte-Saturation opère seulement sur des calques RVB._Teinte-SaturationTeinte :Immense_Icône et texteI_mageI_mporter un chemin..._Interpolation :I_ntervalle :IcôneIcône et descIcône et texteSi ils sont disponibles, les indices d'ajustement contenus dans une police seront utilisés. Mais vous pouvez choisir de toujours utiliser l'ajustement automatiqueSi vous n'enregistrez pas l'image, les modifications depuis les dernières %s seront perdues.Si vous quittez Gimp maintenant, les modifications non enregistrées seront perdues.Nom de variable illégal dans le fichier d'environnement %s : %sImageImage + grilleÉditeur d'imageInformations sur l'imageMenu ImageTaille d'imageFormat de la barre d'état de l'imageModèles d'imageVignettes d'imageFormat du titre et de la barre d'état de l'imageFormat du titre de l'imageApparence de la fenêtre d'imagesFenêtres d'imagesL'image ne contient pas de calques visiblesFichier d'imageMasque d'imageLe résolution de l'image est hors des limites, utilisation de la résolution par défaut à la place.Taille d'imageImage sourceType d'imageImagesMenu ImagesOptions d'importationImporter une paletteImporter des cheminsImporter des Chemins en SVGImporter une nouvelle paletteImporter la paletteImporter des cheminsChemin importé_Stylo-plumeIn_verserIn_verser le masqueIncrémentalIndentation :Indentation de la première ligneIndex :Couleurs indexéesCouleurs indexéesConvertir en couleurs indexéesFenêtre d'informations_Facteur d'échelle initial :Initialiser le masque de calque à :Initialisation des greffonsInitialisation du greffon : « %s » -Stylo-plumeInline pixbufContrôleurs d'entréePériphériques d'entréeNiveaux d'entréeInsérer une ancreInstaller une palette de couleurs privée ; utile pour les modes d'affichage en 8 bits (256 couleurs).L'installation a échoué. Contactez votre administrateur système.Installation réussie. Cliquez sur « Continuer » pour poursuivre.Mise à jour instantanéeIntensité : %0.3f Opacité : %0.3fInterfaceProcédures GIMP internesProcédures InternesType d'interpolation :Intersection avec la sélection couranteIntersections (croix)Intersections (points)UTF-8 non valideChaîne de caractères UTF-8 non valide dans le fichier « %s ».Chaîne de caractères UTF-8 non valide dans le fichier XCFChaîne de caractères UTF-8 non valide dans le fichier de brosse « %s »Chaîne de caractères UTF-8 non valide dans le fichier de dégradé « %s ».Chaîne de caractères UTF-8 non valide dans le fichier de palette « %s »Erreur dans le fichier de motifs de GIMP « %s ».Séquence de caractères non valide dans l'URIRaccourci clavier non valide.Hauteur ou largeur non valide. Les deux doivent être positives.InverserInverser le canalInverser la sélectionL'inversion ne fonctionne pas sur des calques en couleurs indexées.Inverser la sélectionEst-ce que vous voulez ?Propriétés de l'élémentVisibilité de l'élémentJustification :Garder la transparenceGarder au-dessusConserver l'aspect %sRatio d'aspect fixeRatio d'aspect fixe %sConserver la hauteur %sGarder la transparenceConserver la largeur %sTouche basTouche bas (Alt)Touche bas (Ctrl + Alt)Touche bas (Ctrl)Touche bas (Maj + Alt)Touche bas (Maj + Ctrl + Alt)Touche bas (Maj + Ctrl)Touche bas (Maj)Touche gaucheTouche gauche (Alt)Touche gauche (Ctrl + Alt)Touche gauche (Ctrl)Touche gauche (Maj + Alt)Touche gauche (Maj + Ctrl + Alt)Touche gauche (Maj + Ctrl )Touche gauche (Maj)Touche droiteTouche droite (Alt)Touche droite (Ctrl + Alt)Touche droite (Ctrl)Touche droite (Maj + Alt)Touche droite (Maj + Ctrl + Alt)Touche droite (Maj + Ctrl )Touche droite (Maj)Touche hautTouche haut (Alt)Touche haut (Ctrl + Alt)Touche haut (Ctrl)Touche haut (Maj + Alt)Touche haut (Maj + Ctrl + Alt)Touche haut (Maj + Ctrl)Touche haut (Maj)Les raccourcis clavier peuvent être redéfinis dynamiquement dans GIMP. Le fichier menurc est un enregistrement de votre configuration, afin que celle-ci puisse être reprise de session en session. Vous pouvez éditer ce fichier à la main si vous le désirez, mais il est bien plus facile de définir les touches depuis GIMP. Effacer ce fichier restaure les raccourcis clavier par défaut.ClavierRaccourcis clavierCouleur de l'_extrémité Gauche...PaysageGrandeGrand (256x256)Aperçus plus grandsDernière erreur :CalqueLe calque « %s » n'a pas de canal alpha. Le calque a été placé au-dessus.Attributs du calqueTaille des b_ords du calque...Type de remplissage de calqueMasque de calque vers SélectionSélection de calqueTaille de calque_Mode de calque_Nom du calque :Le calque ne peut pas être descendu plus bas.Le calque ne peut pas être monté plus haut.Le calque est déjà tout en bas.Le calque est déjà en hautMettre aux dimensions de l'imageCalque tout en _basCalque aux dimensions de l'_imageCalque tout en hau_tCanal _alpha du calqueCalquesMenu CalquesOptions de fusion des calquesCouleur de l'extrémité gaucheJustifié à gaucheLongueur :Laisser Gimp tenter de restaurer, à chaque démarrage, votre dernière session sauvée.NiveauxLes niveaux ne sont pas ajustables sur des calques en couleurs indexées.Couleur claire du damierÉclaircir seulementLigneLigne +Stylo-plumeInline pixbufContrôleurs d'entréePériphériques d'entréeNiveaux d'entréeInsérer une ancreInstaller une palette de couleurs privée ; utile pour les modes d'affichage en 8 bits (256 couleurs).L'installation a échoué. Contactez votre administrateur système.Installation réussie. Cliquez sur « Continuer » pour poursuivre.Mise à jour instantanéeIntensité : %0.3f Opacité : %0.3fInterfaceProcédures GIMP internesProcédures InternesType d'interpolation :Intersection avec la sélection couranteIntersections (croix)Intersections (points)UTF-8 non valideChaîne de caractères UTF-8 non valide dans le fichier « %s ».Chaîne de caractères UTF-8 non valide dans le fichier XCFChaîne de caractères UTF-8 non valide dans le fichier de brosse « %s »Chaîne de caractères UTF-8 non valide dans le fichier de dégradé « %s ».Chaîne de caractères UTF-8 non valide dans le fichier de palette « %s »Erreur dans le fichier de motifs de GIMP « %s ».Séquence de caractères non valide dans l'URIRaccourci clavier non valide.Hauteur ou largeur non valide. Les deux doivent être positives.InverserInverser le canalInverser la sélectionL'inversion ne fonctionne pas sur des calques en couleurs indexées.Inverser la sélectionEst-ce que vous voulez ?Propriétés de l'élémentVisibilité de l'élémentJustification :Garder la transparenceGarder au-dessusConserver l'aspect %sRatio d'aspect fixe %sConserver la hauteur %sGarder la transparenceConserver la largeur %sTouche basTouche bas (Alt)Touche bas (Ctrl + Alt)Touche bas (Ctrl)Touche bas (Maj + Alt)Touche bas (Maj + Ctrl + Alt)Touche bas (Maj + Ctrl)Touche bas (Maj)Touche gaucheTouche gauche (Alt)Touche gauche (Ctrl + Alt)Touche gauche (Ctrl)Touche gauche (Maj + Alt)Touche gauche (Maj + Ctrl + Alt)Touche gauche (Maj + Ctrl )Touche gauche (Maj)Touche droiteTouche droite (Alt)Touche droite (Ctrl + Alt)Touche droite (Ctrl)Touche droite (Maj + Alt)Touche droite (Maj + Ctrl + Alt)Touche droite (Maj + Ctrl )Touche droite (Maj)Touche hautTouche haut (Alt)Touche haut (Ctrl + Alt)Touche haut (Ctrl)Touche haut (Maj + Alt)Touche haut (Maj + Ctrl + Alt)Touche haut (Maj + Ctrl)Touche haut (Maj)Les raccourcis clavier peuvent être redéfinis dynamiquement dans GIMP. Le fichier menurc est un enregistrement de votre configuration, afin que celle-ci puisse être reprise de session en session. Vous pouvez éditer ce fichier à la main si vous le désirez, mais il est bien plus facile de définir les touches depuis GIMP. Effacer ce fichier restaure les raccourcis clavier par défaut.ClavierRaccourcis clavierCouleur de l'_extrémité Gauche...PaysageGrandeGrand (256x256)Aperçus plus grandsDernière erreur :CalqueLe calque « %s » n'a pas de canal alpha. Le calque a été placé au-dessus.Attributs du calqueTaille des b_ords du calque...Type de remplissage de calqueMasque de calque vers SélectionSélection de calqueTaille de calque_Mode de calque_Nom du calque :Le calque ne peut pas être descendu plus bas.Le calque ne peut pas être monté plus haut.Le calque est déjà tout en bas.Le calque est déjà en hautMettre aux dimensions de l'imageCalque tout en _basCalque aux dimensions de l'_imageCalque tout en hau_tCanal _alpha du calqueCalquesMenu CalquesOptions de fusion des calquesCouleur de l'extrémité gaucheJustifié à gaucheLongueur :Laisser Gimp tenter de restaurer, à chaque démarrage, votre dernière session sauvée.NiveauxLes niveaux ne sont pas ajustables sur des calques en couleurs indexées.Couleur claire du damierÉclaircir seulementLigneLigne espacement :Épaisseur de ligne :_Style de ligne :Style de ligne utilisé pour la grille.LinéaireÉlément liéChargerCharger des courbesCharger les niveauxDétermine la couleur _droite d'aprèsCharger le texte depuis le fichierChargement de l'aperçu...Emplacement :LogarithmiqueTirets longsRecherche des fichiers de donnéesDescendre le canalEnvoyer le canal au bas de la pileDescendre le canal au tout en _basDescendre le calqueEnvoyer le Calque tout en basDescendre le cheminEnvoyer le chemin en bas de la pileEnvoyer le chemin tout en _basDescendre le cheminEnvoyer le chemin tout en bas_Loupe_Maître_Aller à l'écran..._CarteMagentaMagenta :LoupeRendre _transparentGérer les modules chargeablesVitesse de défilement des _pointillés :Opacité du masque :Masquer les régions _sélectionnéesMasquer les régions _non sélectionnéesMatrice :Profondeur max :Taille _maximale pour les fichiers de vignettes :Taille _maximale de la nouvelle image :Différence maximale de couleur_Mémoire maximale pour l'annulation :Moyenne :MesureMesure les distances et les anglesMesure les distances et les anglesMesurez la règle et saisissez sa longueur :Médiane :MoyenTirets moyens_Fusionner vers le basFusionner vers le basFusionner les calquesFusionner la paletteFusionner les calques visiblesFusionner les chemins visiblesFusionner les calques _visibles...Fusionner les calques _visibles...Fusionner les chemins _visiblesFusionner les calquesFusionner les palettesFusionner des vecteursProcédures de messageMessage répété %d fois.Message répété une fois.Les message sont redirigés vers stderr.Demi-teintesNombre minimal de niveaux d'_annulation :DiversEn ongletModeMode :Modifier la couleur sélectionnéeModifier les niveaux de couleur de l'intervalle sélectionnéModifier toutes les couleursModifier l'espacement des lignesDossiers des modulesGestionnaire de modulesChemin des modulesModulesCurseurs de sourisRoulette de la sourisDéplacerDéplacer des ancresDéplacer le canalDéplacer la sélection flottanteDéplacer le guideDéplacer le calqueDéplacer le masque de calqueDéplacer le cheminDéplacer la sélectionDéplacer le calque de texteDéplacer l'élémentDéplace les calques & sélectionsDéplacer la sélectionDéplacer le calque actifDéplacer le chemin actifDéplacer vers le bas le filtre sélectionnéDéplacer vers le haut le filtre sélectionnéAller à l'écran...Déplacement : Multiplier_Nombre de couleurs :Na_vigationFenêtre de na_vigationTaille de l'aperçu de _navigation :NomNom :NavigationNouveau canalNouveau canal de couleurOptions de nouveau canalNouvelle couleur depuis l'_APNouvelle couleur depuis le _PPNouvelle imageNouveau calqueNouveau cheminOptions du nouveau cheminNouveau modèleNouvelle brosseNouveau canalNouveau canal...Nouvelle couleur depuis l'APNouvelle couleur depuis le PPNouveau dégradéNouvelle importationNouveau calqueNouveau calque...Nouvelle paletteNouveau chemin avec les dernières valeursNouveau chemin...Nouveau motifNouveaux vecteursAucune brosse disponible pour être utilisée avec cet outil.Aucun filtre sélectionnéAucun dégradé linéaire trouvé dans « %s »Plus disponibleAucun chemin trouvé dans « %s »Aucun chemin trouvé dans le tamponAucun motif disponible pour cette opération.Aucune sélectionAucune sélection à tracer.Aucune vignetteNon alignéAucunAucune (plus rapide)NormalNormal (128x128)Points normauxFenêtre normaleLe fichier n'est pas un fichier ordinaire.Il n'y a pas assez de calques visibles pour une fusion. Il en faut au moins deux.Il n'y a pas assez de chemins visibles pour une fusion. Il en faut au moins deux.Nombre de _processeurs à utiliser :Nombre de lignes de grilleNombre de calques :_Autres...DécalageDécalage du canalDécalage du tracéDécalage du calqueDécalage du masque de calqueDécalage de x/_2, y/2Décalage :Sur le disqueSur les machines multiprocesseurs si Gimp a été compilé avec --enable-map, ce paramètre détermine combien de processeurs seront utilisés simultanément.Seulement en mémoire_Ouvrir comme un calque...OpacitéOpacité :OuvrirOuvrir une imageOuvrir une image comme un calqueOuvrir suivant l'emplacementOuvrir un fichier texte (UTF-8)Ouvrir suivant l'_emplacement :_Récemment ouvertsOuvrir le sélecteur de brosseOuvrir le sélecteur de policesOuvrir le sélecteur de dégradéOuvrir le dialogue du sélecteur de paletteOuvrir le sélecteur de motifEnlever l'entrée sélectionnéeL'ouverture de « %s » a échoué : %sL'ouverture de « %s » a échoué : %sOptions : diff -uraN gimp-2.2.0/po/fr.po gimp-2.2.1/po/fr.po --- gimp-2.2.0/po/fr.po 2004-12-19 03:11:26.000000000 +0100 +++ gimp-2.2.1/po/fr.po 2004-12-28 16:58:29.000000000 +0100 @@ -14,7 +14,7 @@ msgstr "" "Project-Id-Version: gimp 2.2.0pre1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-19 03:11+0100\n" +"POT-Creation-Date: 2004-12-28 16:58+0100\n" "PO-Revision-Date: 2004-11-13 17:19+0100\n" "Last-Translator: Raymond Ostertag \n" "Language-Team: GNOME French Team \n" @@ -1058,11 +1058,11 @@ msgid "Remove dangling entries" msgstr "Supprimer les entrées incorrectes" -#: app/actions/documents-commands.c:252 app/actions/file-commands.c:163 +#: app/actions/documents-commands.c:251 app/actions/file-commands.c:163 #: app/dialogs/file-open-dialog.c:198 app/dialogs/file-open-dialog.c:249 #: app/dialogs/file-open-location-dialog.c:193 -#: app/display/gimpdisplayshell-dnd.c:332 app/widgets/gimplayertreeview.c:802 -#: app/widgets/gimptoolbox-dnd.c:123 +#: app/display/gimpdisplayshell-dnd.c:334 app/widgets/gimplayertreeview.c:804 +#: app/widgets/gimptoolbox-dnd.c:125 #, c-format msgid "" "Opening '%s' failed:\n" @@ -1575,115 +1575,115 @@ msgid "Zoom all" msgstr "Zoom ajusté à la fenêtre" -#: app/actions/gradient-editor-actions.c:582 +#: app/actions/gradient-editor-actions.c:589 msgid "_Blending Function for Segment" msgstr "Type de _mélange pour le segment" -#: app/actions/gradient-editor-actions.c:584 +#: app/actions/gradient-editor-actions.c:591 msgid "Coloring _Type for Segment" msgstr "_Type de coloriage pour le segment" -#: app/actions/gradient-editor-actions.c:587 +#: app/actions/gradient-editor-actions.c:594 msgid "_Flip Segment" msgstr "_Retourner le segment" -#: app/actions/gradient-editor-actions.c:589 +#: app/actions/gradient-editor-actions.c:596 msgid "_Replicate Segment..." msgstr "_Dupliquer le segment" -#: app/actions/gradient-editor-actions.c:591 +#: app/actions/gradient-editor-actions.c:598 msgid "Split Segment at _Midpoint" msgstr "Couper le segment en son point _médian" -#: app/actions/gradient-editor-actions.c:593 +#: app/actions/gradient-editor-actions.c:600 msgid "Split Segment _Uniformly..." msgstr "Couper le segment _uniformément..." -#: app/actions/gradient-editor-actions.c:595 +#: app/actions/gradient-editor-actions.c:602 msgid "_Delete Segment" msgstr "_Effacer le segment" -#: app/actions/gradient-editor-actions.c:597 +#: app/actions/gradient-editor-actions.c:604 msgid "Re-_center Segment's Midpoint" msgstr "Re_centrer le point médian du segment" -#: app/actions/gradient-editor-actions.c:599 +#: app/actions/gradient-editor-actions.c:606 msgid "Re-distribute _Handles in Segment" msgstr "Redistribuer les _poignées dans le segment" -#: app/actions/gradient-editor-actions.c:604 +#: app/actions/gradient-editor-actions.c:611 msgid "_Blending Function for Selection" msgstr "Type de _mélange pour la sélection" -#: app/actions/gradient-editor-actions.c:606 +#: app/actions/gradient-editor-actions.c:613 msgid "Coloring _Type for Selection" msgstr "_Type de coloriage pour la sélection" -#: app/actions/gradient-editor-actions.c:609 +#: app/actions/gradient-editor-actions.c:616 msgid "_Flip Selection" msgstr "_Retourner la sélection" -#: app/actions/gradient-editor-actions.c:611 +#: app/actions/gradient-editor-actions.c:618 msgid "_Replicate Selection..." msgstr "_Dupliquer la sélection" -#: app/actions/gradient-editor-actions.c:613 +#: app/actions/gradient-editor-actions.c:620 msgid "Split Segments at _Midpoints" msgstr "Couper les segments en leur _milieu" -#: app/actions/gradient-editor-actions.c:615 +#: app/actions/gradient-editor-actions.c:622 msgid "Split Segments _Uniformly..." msgstr "Couper les segments _uniformément..." -#: app/actions/gradient-editor-actions.c:617 +#: app/actions/gradient-editor-actions.c:624 msgid "_Delete Selection" msgstr "_Effacer sélection" -#: app/actions/gradient-editor-actions.c:619 +#: app/actions/gradient-editor-actions.c:626 msgid "Re-_center Midpoints in Selection" msgstr "Re_centrer les points médians dans la sélection" -#: app/actions/gradient-editor-actions.c:621 +#: app/actions/gradient-editor-actions.c:628 msgid "Re-distribute _Handles in Selection" msgstr "Redistribuer les _poignées dans la sélection" -#: app/actions/gradient-editor-commands.c:84 +#: app/actions/gradient-editor-commands.c:85 msgid "Left Endpoint Color" msgstr "Couleur de l'extrémité gauche" -#: app/actions/gradient-editor-commands.c:86 +#: app/actions/gradient-editor-commands.c:87 msgid "Gradient Segment's Left Endpoint Color" msgstr "Couleur de l'extrémité gauche du segment de dégradé" -#: app/actions/gradient-editor-commands.c:186 +#: app/actions/gradient-editor-commands.c:189 msgid "Right Endpoint Color" msgstr "Couleur de l'extrémité droite" -#: app/actions/gradient-editor-commands.c:188 +#: app/actions/gradient-editor-commands.c:191 msgid "Gradient Segment's Right Endpoint Color" msgstr "Couleur de l'extrémité droite du segment de dégradé" -#: app/actions/gradient-editor-commands.c:353 +#: app/actions/gradient-editor-commands.c:358 msgid "Replicate Segment" msgstr "Dupliquer le segment" -#: app/actions/gradient-editor-commands.c:354 +#: app/actions/gradient-editor-commands.c:359 msgid "Replicate Gradient Segment" msgstr "Dupliquer le segment de dégradé" -#: app/actions/gradient-editor-commands.c:358 +#: app/actions/gradient-editor-commands.c:363 msgid "Replicate Selection" msgstr "Dupliquer la sélection" -#: app/actions/gradient-editor-commands.c:359 +#: app/actions/gradient-editor-commands.c:364 msgid "Replicate Gradient Selection" msgstr "Dupliquer la sélection du dégradé" -#: app/actions/gradient-editor-commands.c:371 +#: app/actions/gradient-editor-commands.c:376 msgid "Replicate" msgstr "Dupliquer" -#: app/actions/gradient-editor-commands.c:386 +#: app/actions/gradient-editor-commands.c:391 msgid "" "Select the number of times\n" "to replicate the selected segment." @@ -1691,7 +1691,7 @@ "Sélectionnez le nombre de fois\n" "qu'il faut dupliquer le segment sélectionné." -#: app/actions/gradient-editor-commands.c:389 +#: app/actions/gradient-editor-commands.c:394 msgid "" "Select the number of times\n" "to replicate the selection." @@ -1699,27 +1699,27 @@ "Sélectionnez le nombre de fois\n" "qu'il faut dupliquer la sélection." -#: app/actions/gradient-editor-commands.c:444 +#: app/actions/gradient-editor-commands.c:452 msgid "Split Segment Uniformly" msgstr "Couper le segment uniformément" -#: app/actions/gradient-editor-commands.c:445 +#: app/actions/gradient-editor-commands.c:453 msgid "Split Gradient Segment Uniformly" msgstr "Couper le segment de dégradé uniformément" -#: app/actions/gradient-editor-commands.c:449 +#: app/actions/gradient-editor-commands.c:457 msgid "Split Segments Uniformly" msgstr "Couper les segments uniformément" -#: app/actions/gradient-editor-commands.c:450 +#: app/actions/gradient-editor-commands.c:458 msgid "Split Gradient Segments Uniformly" msgstr "Couper les segments de dégradé uniformément" -#: app/actions/gradient-editor-commands.c:462 +#: app/actions/gradient-editor-commands.c:470 msgid "Split" msgstr "Éclater" -#: app/actions/gradient-editor-commands.c:478 +#: app/actions/gradient-editor-commands.c:486 msgid "" "Select the number of uniform parts\n" "in which to split the selected segment." @@ -1727,7 +1727,7 @@ "Sélectionnez le nombre de parties uniformes\n" "en quoi couper le segment sélectionné." -#: app/actions/gradient-editor-commands.c:481 +#: app/actions/gradient-editor-commands.c:489 msgid "" "Select the number of uniform parts\n" "in which to split the segments in the selection." @@ -2170,7 +2170,7 @@ #: app/actions/layers-commands.c:232 app/actions/layers-commands.c:234 #: app/actions/layers-commands.c:291 app/actions/layers-commands.c:295 -#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:840 +#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:842 msgid "New Layer" msgstr "Nouveau calque" @@ -2182,7 +2182,7 @@ msgid "Set Layer Boundary Size" msgstr "Changer la taille du calque" -#: app/actions/layers-commands.c:512 app/core/gimplayer.c:255 +#: app/actions/layers-commands.c:512 app/core/gimplayer.c:253 msgid "Scale Layer" msgstr "Échelle et taille du calque" @@ -2194,7 +2194,7 @@ msgid "Layer Mask to Selection" msgstr "Masque de calque vers Sélection" -#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1085 +#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1066 #: app/dialogs/layer-add-mask-dialog.c:62 msgid "Add Layer Mask" msgstr "Ajouter un masque de calque" @@ -2743,7 +2743,7 @@ msgstr "Ouvrir un fichier texte (UTF-8)" #: app/actions/text-editor-commands.c:132 app/config/gimpconfig-utils.c:552 -#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:393 +#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:396 #: app/core/gimpbrushgenerated.c:601 app/core/gimpbrushpipe.c:338 #: app/core/gimpgradient-load.c:63 app/core/gimppalette.c:360 #: app/core/gimppattern.c:328 app/tools/gimpimagemaptool.c:608 @@ -4626,7 +4626,7 @@ msgid "FG to Transparent" msgstr "PP vers Transparent" -#: app/core/gimp-gui.c:148 +#: app/core/gimp-gui.c:153 msgid "GIMP" msgstr "GIMP" @@ -4658,45 +4658,66 @@ msgid "Modules" msgstr "Modules" -#: app/core/gimpbrush.c:531 +#: app/core/gimpbrush.c:534 #, c-format msgid "Could not read %d bytes from '%s': %s" msgstr "Impossible de lire %d octets depuis « %s » : %s" -#: app/core/gimpbrush.c:566 +#: app/core/gimpbrush.c:554 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Width = 0." +msgstr "" +"Erreur fatale d'interprétation dans le fichier de brosse « %s » : profondeur " +"inconnue %d." + +#: app/core/gimpbrush.c:563 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Height = 0." +msgstr "" +"Erreur fatale d'interprétation dans le fichier de brosse « %s » : le fichier " +"est corrompu." + +#: app/core/gimpbrush.c:572 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Bytes = 0." +msgstr "" +"Erreur fatale d'interprétation dans le fichier de brosse « %s » : le fichier " +"est corrompu." + +#: app/core/gimpbrush.c:596 #, c-format msgid "Fatal parse error in brush file '%s': Unknown depth %d." msgstr "" "Erreur fatale d'interprétation dans le fichier de brosse « %s » : profondeur " "inconnue %d." -#: app/core/gimpbrush.c:579 +#: app/core/gimpbrush.c:609 #, c-format msgid "Fatal parse error in brush file '%s': Unknown version %d." msgstr "" "Erreur fatale d'interprétation dans le fichier de brosse « %s » : version " "inconnue %d." -#: app/core/gimpbrush.c:595 app/core/gimpbrush.c:715 +#: app/core/gimpbrush.c:625 app/core/gimpbrush.c:745 #, c-format msgid "Fatal parse error in brush file '%s': File appears truncated." msgstr "" "Erreur fatale d'interprétation dans le fichier de brosse « %s » : le fichier " "semble tronqué." -#: app/core/gimpbrush.c:603 app/core/gimpbrushgenerated.c:648 +#: app/core/gimpbrush.c:633 app/core/gimpbrushgenerated.c:648 #: app/core/gimpbrushpipe.c:354 #, c-format msgid "Invalid UTF-8 string in brush file '%s'." msgstr "Chaîne de caractères UTF-8 non valide dans le fichier de brosse « %s »" -#: app/core/gimpbrush.c:610 app/core/gimpcontext.c:1299 -#: app/core/gimpitem.c:479 app/core/gimppattern.c:400 +#: app/core/gimpbrush.c:640 app/core/gimpcontext.c:1299 +#: app/core/gimpitem.c:480 app/core/gimppattern.c:400 #: app/dialogs/template-options-dialog.c:80 app/tools/gimpvectortool.c:339 msgid "Unnamed" msgstr "Sans nom" -#: app/core/gimpbrush.c:704 +#: app/core/gimpbrush.c:734 #, c-format msgid "" "Fatal parse error in brush file '%s': Unsupported brush depth %d\n" @@ -4870,11 +4891,11 @@ "%s" #: app/core/gimpdatafactory.c:411 app/core/gimpdatafactory.c:414 -#: app/core/gimpitem.c:274 app/core/gimpitem.c:277 +#: app/core/gimpitem.c:275 app/core/gimpitem.c:278 msgid "copy" msgstr "copier" -#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:286 +#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:287 #, c-format msgid "%s copy" msgstr "Copie de %s" @@ -4937,7 +4958,7 @@ msgid "Rotate" msgstr "Rotation" -#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:259 +#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:257 msgid "Transform Layer" msgstr "Transformation du calque" @@ -5311,7 +5332,7 @@ #. pixel size #: app/core/gimpimagefile.c:624 app/dialogs/info-window.c:552 -#: app/widgets/gimpsizebox.c:552 app/widgets/gimptemplateeditor.c:637 +#: app/widgets/gimpsizebox.c:429 app/widgets/gimptemplateeditor.c:637 #: app/widgets/gimptemplateeditor.c:673 #, c-format msgid "%d x %d pixels" @@ -5331,15 +5352,15 @@ msgid "Could not open thumbnail '%s': %s" msgstr "Impossible d'ouvrir la vignette « %s » : %s" -#: app/core/gimpitem.c:1096 +#: app/core/gimpitem.c:1103 msgid "Attach Parasite" msgstr "Attacher un parasite" -#: app/core/gimpitem.c:1106 +#: app/core/gimpitem.c:1113 msgid "Attach Parasite to Item" msgstr "Attacher un parasite à l'élément" -#: app/core/gimpitem.c:1145 app/core/gimpitem.c:1152 +#: app/core/gimpitem.c:1152 app/core/gimpitem.c:1159 msgid "Remove Parasite from Item" msgstr "Enlever un parasite de l'élément" @@ -5368,37 +5389,37 @@ msgid "Floating Selection to Layer" msgstr "Sélection flottante vers calque" -#: app/core/gimplayer.c:252 app/pdb/internal_procs.c:152 +#: app/core/gimplayer.c:250 app/pdb/internal_procs.c:152 msgid "Layer" msgstr "Calque" -#: app/core/gimplayer.c:253 +#: app/core/gimplayer.c:251 msgid "Rename Layer" msgstr "Renommer le calque" -#: app/core/gimplayer.c:254 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 +#: app/core/gimplayer.c:252 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 msgid "Move Layer" msgstr "Déplacer le calque" -#: app/core/gimplayer.c:256 +#: app/core/gimplayer.c:254 msgid "Resize Layer" msgstr "Redimensionner le calque" -#: app/core/gimplayer.c:257 +#: app/core/gimplayer.c:255 msgid "Flip Layer" msgstr "Retourner le calque" -#: app/core/gimplayer.c:258 +#: app/core/gimplayer.c:256 msgid "Rotate Layer" msgstr "Rotation du calque" -#: app/core/gimplayer.c:341 app/core/gimplayer.c:1129 +#: app/core/gimplayer.c:339 app/core/gimplayer.c:1110 #: app/core/gimplayermask.c:236 #, c-format msgid "%s mask" msgstr "masque %s" -#: app/core/gimplayer.c:387 +#: app/core/gimplayer.c:385 #, c-format msgid "" "Floating Selection\n" @@ -5407,47 +5428,47 @@ "Sélection flottante\n" "(%s)" -#: app/core/gimplayer.c:1055 +#: app/core/gimplayer.c:1036 msgid "Cannot add layer mask to layer which is not part of an image." msgstr "" "Impossible d'ajouter un masque à un\n" "calque qui ne fait pas partie d'une image." -#: app/core/gimplayer.c:1062 +#: app/core/gimplayer.c:1043 msgid "Unable to add a layer mask since the layer already has one." msgstr "" "Impossible d'ajouter un masque au\n" "calque car il en a déjà un." -#: app/core/gimplayer.c:1069 +#: app/core/gimplayer.c:1050 msgid "Cannot add layer mask to a layer with no alpha channel." msgstr "" "Impossible d'ajouter un masque\n" "dans un calque sans canal alpha." -#: app/core/gimplayer.c:1079 +#: app/core/gimplayer.c:1060 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "" "Impossible d'ajouter un masque de\n" "dimensions différentes de celles du calque." -#: app/core/gimplayer.c:1183 +#: app/core/gimplayer.c:1164 msgid "Transfer Alpha to Mask" msgstr "Transfert de l'alpha vers le masque" -#: app/core/gimplayer.c:1343 +#: app/core/gimplayer.c:1324 msgid "Apply Layer Mask" msgstr "Appliquer le masque de calque" -#: app/core/gimplayer.c:1344 +#: app/core/gimplayer.c:1325 msgid "Delete Layer Mask" msgstr "Effacer le masque de calque" -#: app/core/gimplayer.c:1445 +#: app/core/gimplayer.c:1426 msgid "Add Alpha Channel" msgstr "Ajouter un canal alpha" -#: app/core/gimplayer.c:1467 +#: app/core/gimplayer.c:1448 msgid "Layer to Image Size" msgstr "Mettre aux dimensions de l'image" @@ -6924,28 +6945,28 @@ msgstr "Taille de l'impression :" #. the image size labels -#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:241 +#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:222 #: app/widgets/gimptemplateeditor.c:236 msgid "_Width:" msgstr "_Largeur :" -#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:248 +#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:225 #: app/widgets/gimptemplateeditor.c:243 msgid "H_eight:" msgstr "_Hauteur :" #. the resolution labels -#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:338 +#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:273 #: app/widgets/gimptemplateeditor.c:363 msgid "_X resolution:" msgstr "Résolution _X :" -#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:345 +#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:276 #: app/widgets/gimptemplateeditor.c:370 msgid "_Y resolution:" msgstr "Résolution _Y :" -#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:357 +#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:269 #: app/widgets/gimptemplateeditor.c:383 #, c-format msgid "pixels/%a" @@ -7597,11 +7618,11 @@ msgid "%d minutes" msgstr "%d minutes" -#: app/display/gimpdisplayshell-dnd.c:96 +#: app/display/gimpdisplayshell-dnd.c:98 msgid "Drop New Layer" msgstr "Déposer un nouveau calque" -#: app/display/gimpdisplayshell-dnd.c:140 +#: app/display/gimpdisplayshell-dnd.c:142 msgid "Drop New Path" msgstr "Déposer un nouveau chemin" @@ -9078,12 +9099,12 @@ msgstr "_Pinceau" #: app/tools/gimppaintoptions-gui.c:103 app/widgets/gimpbrushselect.c:201 -#: app/widgets/gimplayertreeview.c:330 +#: app/widgets/gimplayertreeview.c:332 msgid "Opacity:" msgstr "Opacité :" #: app/tools/gimppaintoptions-gui.c:108 app/tools/gimpselectionoptions.c:374 -#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:323 +#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:325 msgid "Mode:" msgstr "Mode :" @@ -10491,24 +10512,24 @@ msgid "Set Item Exclusive Linked" msgstr "Rendre l'élément exclusivement relié" -#: app/widgets/gimplayertreeview.c:250 +#: app/widgets/gimplayertreeview.c:252 msgid "Reorder Layer" msgstr "Réordonner le calque" -#: app/widgets/gimplayertreeview.c:311 +#: app/widgets/gimplayertreeview.c:313 msgid "Keep transparency" msgstr "Garder la transparence" -#: app/widgets/gimplayertreeview.c:846 +#: app/widgets/gimplayertreeview.c:848 msgid "Empty Layer" msgstr "Calque vide" -#: app/widgets/gimpmessagebox.c:458 +#: app/widgets/gimpmessagebox.c:460 #, c-format msgid "Message repeated %d times." msgstr "Message répété %d fois." -#: app/widgets/gimpmessagebox.c:460 +#: app/widgets/gimpmessagebox.c:462 msgid "Message repeated once." msgstr "Message répété une fois." @@ -10540,16 +10561,12 @@ msgid "Invalid UTF-8" msgstr "UTF-8 non valide" -#: app/widgets/gimpsizebox.c:290 -msgid "Keep aspect ratio" -msgstr "Ratio d'aspect fixe" - -#: app/widgets/gimpsizebox.c:574 +#: app/widgets/gimpsizebox.c:451 #, c-format msgid "%d x %d dpi" msgstr "%d x %d ppp" -#: app/widgets/gimpsizebox.c:578 +#: app/widgets/gimpsizebox.c:455 #, c-format msgid "%d dpi" msgstr "%d ppp" @@ -10995,6 +11012,9 @@ msgid "Image Editor" msgstr "Éditeur d'image" +#~ msgid "Keep aspect ratio" +#~ msgstr "Ratio d'aspect fixe" + #~ msgid "Y:" #~ msgstr "Y :" diff -uraN gimp-2.2.0/po/ga.gmo gimp-2.2.1/po/ga.gmo --- gimp-2.2.0/po/ga.gmo 2004-12-19 03:11:54.000000000 +0100 +++ gimp-2.2.1/po/ga.gmo 2004-12-28 16:58:42.000000000 +0100 @@ -39,7 +39,7 @@ %sSelect AllSelect ColorSelect Font FoldersSelect NoneShadowsSharpenShow _MenubarSize:SmallSmudgeSourceSpeed:SquareTextText ColorTinyTool OptionsToolbox MenuToolsTransformationTranslation byTypeType %sUndoUnknownUnknown file typeUnnamedUntitledValueValue:Version:VerticalWhiteWidthWidth:Writing '%s' YellowYellow:Zoom 1:1Zoom InZoom OutZoom inZoom outZoom:_Auto_B_Brush_C_G_Gradient_Horizontal:_Icon:_M_Name:_Preview_R_Redo_Redo %s_Undo_Undo %s_Vertical:_X:_Y_Y:_Zoom (%s)colorscopydpipixels/%stips-locale:CProject-Id-Version: gimp HEAD Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-19 03:11+0100 +POT-Creation-Date: 2004-12-28 16:58+0100 PO-Revision-Date: 2004-03-21 18:59+0100 Last-Translator: Alastair McKinstry Language-Team: Irish diff -uraN gimp-2.2.0/po/ga.po gimp-2.2.1/po/ga.po --- gimp-2.2.0/po/ga.po 2004-12-19 03:11:27.000000000 +0100 +++ gimp-2.2.1/po/ga.po 2004-12-28 16:58:30.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: gimp HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-19 03:11+0100\n" +"POT-Creation-Date: 2004-12-28 16:58+0100\n" "PO-Revision-Date: 2004-03-21 18:59+0100\n" "Last-Translator: Alastair McKinstry \n" "Language-Team: Irish \n" @@ -1095,11 +1095,11 @@ msgid "Remove dangling entries" msgstr "Roghnaigh Tada" -#: app/actions/documents-commands.c:252 app/actions/file-commands.c:163 +#: app/actions/documents-commands.c:251 app/actions/file-commands.c:163 #: app/dialogs/file-open-dialog.c:198 app/dialogs/file-open-dialog.c:249 #: app/dialogs/file-open-location-dialog.c:193 -#: app/display/gimpdisplayshell-dnd.c:332 app/widgets/gimplayertreeview.c:802 -#: app/widgets/gimptoolbox-dnd.c:123 +#: app/display/gimpdisplayshell-dnd.c:334 app/widgets/gimplayertreeview.c:804 +#: app/widgets/gimptoolbox-dnd.c:125 #, c-format msgid "" "Opening '%s' failed:\n" @@ -1643,153 +1643,153 @@ msgid "Zoom all" msgstr "Formhéadaigh Isteach" -#: app/actions/gradient-editor-actions.c:582 +#: app/actions/gradient-editor-actions.c:589 msgid "_Blending Function for Segment" msgstr "" -#: app/actions/gradient-editor-actions.c:584 +#: app/actions/gradient-editor-actions.c:591 msgid "Coloring _Type for Segment" msgstr "" -#: app/actions/gradient-editor-actions.c:587 +#: app/actions/gradient-editor-actions.c:594 msgid "_Flip Segment" msgstr "" -#: app/actions/gradient-editor-actions.c:589 +#: app/actions/gradient-editor-actions.c:596 msgid "_Replicate Segment..." msgstr "" -#: app/actions/gradient-editor-actions.c:591 +#: app/actions/gradient-editor-actions.c:598 msgid "Split Segment at _Midpoint" msgstr "" -#: app/actions/gradient-editor-actions.c:593 +#: app/actions/gradient-editor-actions.c:600 msgid "Split Segment _Uniformly..." msgstr "" -#: app/actions/gradient-editor-actions.c:595 +#: app/actions/gradient-editor-actions.c:602 msgid "_Delete Segment" msgstr "" -#: app/actions/gradient-editor-actions.c:597 +#: app/actions/gradient-editor-actions.c:604 msgid "Re-_center Segment's Midpoint" msgstr "" -#: app/actions/gradient-editor-actions.c:599 +#: app/actions/gradient-editor-actions.c:606 msgid "Re-distribute _Handles in Segment" msgstr "" -#: app/actions/gradient-editor-actions.c:604 +#: app/actions/gradient-editor-actions.c:611 msgid "_Blending Function for Selection" msgstr "" -#: app/actions/gradient-editor-actions.c:606 +#: app/actions/gradient-editor-actions.c:613 msgid "Coloring _Type for Selection" msgstr "" -#: app/actions/gradient-editor-actions.c:609 +#: app/actions/gradient-editor-actions.c:616 msgid "_Flip Selection" msgstr "" -#: app/actions/gradient-editor-actions.c:611 +#: app/actions/gradient-editor-actions.c:618 msgid "_Replicate Selection..." msgstr "" -#: app/actions/gradient-editor-actions.c:613 +#: app/actions/gradient-editor-actions.c:620 msgid "Split Segments at _Midpoints" msgstr "" -#: app/actions/gradient-editor-actions.c:615 +#: app/actions/gradient-editor-actions.c:622 msgid "Split Segments _Uniformly..." msgstr "" -#: app/actions/gradient-editor-actions.c:617 +#: app/actions/gradient-editor-actions.c:624 msgid "_Delete Selection" msgstr "" -#: app/actions/gradient-editor-actions.c:619 +#: app/actions/gradient-editor-actions.c:626 msgid "Re-_center Midpoints in Selection" msgstr "" -#: app/actions/gradient-editor-actions.c:621 +#: app/actions/gradient-editor-actions.c:628 msgid "Re-distribute _Handles in Selection" msgstr "" -#: app/actions/gradient-editor-commands.c:84 +#: app/actions/gradient-editor-commands.c:85 msgid "Left Endpoint Color" msgstr "" -#: app/actions/gradient-editor-commands.c:86 +#: app/actions/gradient-editor-commands.c:87 msgid "Gradient Segment's Left Endpoint Color" msgstr "" -#: app/actions/gradient-editor-commands.c:186 +#: app/actions/gradient-editor-commands.c:189 msgid "Right Endpoint Color" msgstr "" -#: app/actions/gradient-editor-commands.c:188 +#: app/actions/gradient-editor-commands.c:191 msgid "Gradient Segment's Right Endpoint Color" msgstr "" -#: app/actions/gradient-editor-commands.c:353 +#: app/actions/gradient-editor-commands.c:358 msgid "Replicate Segment" msgstr "" -#: app/actions/gradient-editor-commands.c:354 +#: app/actions/gradient-editor-commands.c:359 msgid "Replicate Gradient Segment" msgstr "" -#: app/actions/gradient-editor-commands.c:358 +#: app/actions/gradient-editor-commands.c:363 msgid "Replicate Selection" msgstr "" -#: app/actions/gradient-editor-commands.c:359 +#: app/actions/gradient-editor-commands.c:364 msgid "Replicate Gradient Selection" msgstr "" -#: app/actions/gradient-editor-commands.c:371 +#: app/actions/gradient-editor-commands.c:376 msgid "Replicate" msgstr "" -#: app/actions/gradient-editor-commands.c:386 +#: app/actions/gradient-editor-commands.c:391 msgid "" "Select the number of times\n" "to replicate the selected segment." msgstr "" -#: app/actions/gradient-editor-commands.c:389 +#: app/actions/gradient-editor-commands.c:394 msgid "" "Select the number of times\n" "to replicate the selection." msgstr "" -#: app/actions/gradient-editor-commands.c:444 +#: app/actions/gradient-editor-commands.c:452 msgid "Split Segment Uniformly" msgstr "" -#: app/actions/gradient-editor-commands.c:445 +#: app/actions/gradient-editor-commands.c:453 msgid "Split Gradient Segment Uniformly" msgstr "" -#: app/actions/gradient-editor-commands.c:449 +#: app/actions/gradient-editor-commands.c:457 msgid "Split Segments Uniformly" msgstr "" -#: app/actions/gradient-editor-commands.c:450 +#: app/actions/gradient-editor-commands.c:458 msgid "Split Gradient Segments Uniformly" msgstr "" -#: app/actions/gradient-editor-commands.c:462 +#: app/actions/gradient-editor-commands.c:470 msgid "Split" msgstr "" -#: app/actions/gradient-editor-commands.c:478 +#: app/actions/gradient-editor-commands.c:486 msgid "" "Select the number of uniform parts\n" "in which to split the selected segment." msgstr "" -#: app/actions/gradient-editor-commands.c:481 +#: app/actions/gradient-editor-commands.c:489 msgid "" "Select the number of uniform parts\n" "in which to split the segments in the selection." @@ -2283,7 +2283,7 @@ #: app/actions/layers-commands.c:232 app/actions/layers-commands.c:234 #: app/actions/layers-commands.c:291 app/actions/layers-commands.c:295 -#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:840 +#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:842 msgid "New Layer" msgstr "Sraith Nua" @@ -2295,7 +2295,7 @@ msgid "Set Layer Boundary Size" msgstr "" -#: app/actions/layers-commands.c:512 app/core/gimplayer.c:255 +#: app/actions/layers-commands.c:512 app/core/gimplayer.c:253 msgid "Scale Layer" msgstr "" @@ -2307,7 +2307,7 @@ msgid "Layer Mask to Selection" msgstr "" -#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1085 +#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1066 #: app/dialogs/layer-add-mask-dialog.c:62 msgid "Add Layer Mask" msgstr "" @@ -2912,7 +2912,7 @@ msgstr "" #: app/actions/text-editor-commands.c:132 app/config/gimpconfig-utils.c:552 -#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:393 +#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:396 #: app/core/gimpbrushgenerated.c:601 app/core/gimpbrushpipe.c:338 #: app/core/gimpgradient-load.c:63 app/core/gimppalette.c:360 #: app/core/gimppattern.c:328 app/tools/gimpimagemaptool.c:608 @@ -4738,7 +4738,7 @@ msgid "FG to Transparent" msgstr "" -#: app/core/gimp-gui.c:148 +#: app/core/gimp-gui.c:153 msgid "GIMP" msgstr "GIMP" @@ -4770,39 +4770,54 @@ msgid "Modules" msgstr "" -#: app/core/gimpbrush.c:531 +#: app/core/gimpbrush.c:534 #, c-format msgid "Could not read %d bytes from '%s': %s" msgstr "" -#: app/core/gimpbrush.c:566 +#: app/core/gimpbrush.c:554 +#, c-format +msgid "Fatal parse error in brush file '%s': Width = 0." +msgstr "" + +#: app/core/gimpbrush.c:563 +#, c-format +msgid "Fatal parse error in brush file '%s': Height = 0." +msgstr "" + +#: app/core/gimpbrush.c:572 +#, c-format +msgid "Fatal parse error in brush file '%s': Bytes = 0." +msgstr "" + +#: app/core/gimpbrush.c:596 #, c-format msgid "Fatal parse error in brush file '%s': Unknown depth %d." msgstr "" -#: app/core/gimpbrush.c:579 +#: app/core/gimpbrush.c:609 #, c-format msgid "Fatal parse error in brush file '%s': Unknown version %d." msgstr "" -#: app/core/gimpbrush.c:595 app/core/gimpbrush.c:715 +#: app/core/gimpbrush.c:625 app/core/gimpbrush.c:745 #, c-format msgid "Fatal parse error in brush file '%s': File appears truncated." msgstr "" -#: app/core/gimpbrush.c:603 app/core/gimpbrushgenerated.c:648 +#: app/core/gimpbrush.c:633 app/core/gimpbrushgenerated.c:648 #: app/core/gimpbrushpipe.c:354 #, c-format msgid "Invalid UTF-8 string in brush file '%s'." msgstr "" -#: app/core/gimpbrush.c:610 app/core/gimpcontext.c:1299 -#: app/core/gimpitem.c:479 app/core/gimppattern.c:400 +#: app/core/gimpbrush.c:640 app/core/gimpcontext.c:1299 +#: app/core/gimpitem.c:480 app/core/gimppattern.c:400 #: app/dialogs/template-options-dialog.c:80 app/tools/gimpvectortool.c:339 msgid "Unnamed" msgstr "Gan Ainm" -#: app/core/gimpbrush.c:704 +#: app/core/gimpbrush.c:734 #, c-format msgid "" "Fatal parse error in brush file '%s': Unsupported brush depth %d\n" @@ -4963,11 +4978,11 @@ msgstr "" #: app/core/gimpdatafactory.c:411 app/core/gimpdatafactory.c:414 -#: app/core/gimpitem.c:274 app/core/gimpitem.c:277 +#: app/core/gimpitem.c:275 app/core/gimpitem.c:278 msgid "copy" msgstr "cóip" -#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:286 +#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:287 #, c-format msgid "%s copy" msgstr "%s cóip" @@ -5027,7 +5042,7 @@ msgid "Rotate" msgstr "Cuir Thart" -#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:259 +#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:257 msgid "Transform Layer" msgstr "" @@ -5386,7 +5401,7 @@ #. pixel size #: app/core/gimpimagefile.c:624 app/dialogs/info-window.c:552 -#: app/widgets/gimpsizebox.c:552 app/widgets/gimptemplateeditor.c:637 +#: app/widgets/gimpsizebox.c:429 app/widgets/gimptemplateeditor.c:637 #: app/widgets/gimptemplateeditor.c:673 #, c-format msgid "%d x %d pixels" @@ -5406,15 +5421,15 @@ msgid "Could not open thumbnail '%s': %s" msgstr "" -#: app/core/gimpitem.c:1096 +#: app/core/gimpitem.c:1103 msgid "Attach Parasite" msgstr "" -#: app/core/gimpitem.c:1106 +#: app/core/gimpitem.c:1113 msgid "Attach Parasite to Item" msgstr "" -#: app/core/gimpitem.c:1145 app/core/gimpitem.c:1152 +#: app/core/gimpitem.c:1152 app/core/gimpitem.c:1159 msgid "Remove Parasite from Item" msgstr "" @@ -5440,76 +5455,76 @@ msgid "Floating Selection to Layer" msgstr "" -#: app/core/gimplayer.c:252 app/pdb/internal_procs.c:152 +#: app/core/gimplayer.c:250 app/pdb/internal_procs.c:152 msgid "Layer" msgstr "Sraith" -#: app/core/gimplayer.c:253 +#: app/core/gimplayer.c:251 msgid "Rename Layer" msgstr "" -#: app/core/gimplayer.c:254 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 +#: app/core/gimplayer.c:252 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 msgid "Move Layer" msgstr "" -#: app/core/gimplayer.c:256 +#: app/core/gimplayer.c:254 msgid "Resize Layer" msgstr "" -#: app/core/gimplayer.c:257 +#: app/core/gimplayer.c:255 msgid "Flip Layer" msgstr "" -#: app/core/gimplayer.c:258 +#: app/core/gimplayer.c:256 msgid "Rotate Layer" msgstr "" -#: app/core/gimplayer.c:341 app/core/gimplayer.c:1129 +#: app/core/gimplayer.c:339 app/core/gimplayer.c:1110 #: app/core/gimplayermask.c:236 #, c-format msgid "%s mask" msgstr "" -#: app/core/gimplayer.c:387 +#: app/core/gimplayer.c:385 #, fuzzy, c-format msgid "" "Floating Selection\n" "(%s)" msgstr "Roghnaigh Tada" -#: app/core/gimplayer.c:1055 +#: app/core/gimplayer.c:1036 msgid "Cannot add layer mask to layer which is not part of an image." msgstr "" -#: app/core/gimplayer.c:1062 +#: app/core/gimplayer.c:1043 msgid "Unable to add a layer mask since the layer already has one." msgstr "" -#: app/core/gimplayer.c:1069 +#: app/core/gimplayer.c:1050 msgid "Cannot add layer mask to a layer with no alpha channel." msgstr "" -#: app/core/gimplayer.c:1079 +#: app/core/gimplayer.c:1060 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "" -#: app/core/gimplayer.c:1183 +#: app/core/gimplayer.c:1164 msgid "Transfer Alpha to Mask" msgstr "" -#: app/core/gimplayer.c:1343 +#: app/core/gimplayer.c:1324 msgid "Apply Layer Mask" msgstr "" -#: app/core/gimplayer.c:1344 +#: app/core/gimplayer.c:1325 msgid "Delete Layer Mask" msgstr "" -#: app/core/gimplayer.c:1445 +#: app/core/gimplayer.c:1426 msgid "Add Alpha Channel" msgstr "" -#: app/core/gimplayer.c:1467 +#: app/core/gimplayer.c:1448 msgid "Layer to Image Size" msgstr "" @@ -6982,30 +6997,30 @@ msgstr "_Reámhtaispeántas" #. the image size labels -#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:241 +#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:222 #: app/widgets/gimptemplateeditor.c:236 #, fuzzy msgid "_Width:" msgstr "Leitheid:" -#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:248 +#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:225 #: app/widgets/gimptemplateeditor.c:243 #, fuzzy msgid "H_eight:" msgstr "Airde:" #. the resolution labels -#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:338 +#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:273 #: app/widgets/gimptemplateeditor.c:363 msgid "_X resolution:" msgstr "" -#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:345 +#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:276 #: app/widgets/gimptemplateeditor.c:370 msgid "_Y resolution:" msgstr "" -#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:357 +#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:269 #: app/widgets/gimptemplateeditor.c:383 #, c-format msgid "pixels/%a" @@ -7548,11 +7563,11 @@ msgid "%d minutes" msgstr "" -#: app/display/gimpdisplayshell-dnd.c:96 +#: app/display/gimpdisplayshell-dnd.c:98 msgid "Drop New Layer" msgstr "" -#: app/display/gimpdisplayshell-dnd.c:140 +#: app/display/gimpdisplayshell-dnd.c:142 msgid "Drop New Path" msgstr "" @@ -9045,12 +9060,12 @@ msgstr "Péint" #: app/tools/gimppaintoptions-gui.c:103 app/widgets/gimpbrushselect.c:201 -#: app/widgets/gimplayertreeview.c:330 +#: app/widgets/gimplayertreeview.c:332 msgid "Opacity:" msgstr "" #: app/tools/gimppaintoptions-gui.c:108 app/tools/gimpselectionoptions.c:374 -#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:323 +#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:325 msgid "Mode:" msgstr "Modh:" @@ -10466,24 +10481,24 @@ msgid "Set Item Exclusive Linked" msgstr "" -#: app/widgets/gimplayertreeview.c:250 +#: app/widgets/gimplayertreeview.c:252 msgid "Reorder Layer" msgstr "" -#: app/widgets/gimplayertreeview.c:311 +#: app/widgets/gimplayertreeview.c:313 msgid "Keep transparency" msgstr "" -#: app/widgets/gimplayertreeview.c:846 +#: app/widgets/gimplayertreeview.c:848 msgid "Empty Layer" msgstr "Sraith Folamh" -#: app/widgets/gimpmessagebox.c:458 +#: app/widgets/gimpmessagebox.c:460 #, c-format msgid "Message repeated %d times." msgstr "" -#: app/widgets/gimpmessagebox.c:460 +#: app/widgets/gimpmessagebox.c:462 msgid "Message repeated once." msgstr "" @@ -10512,16 +10527,12 @@ msgid "Invalid UTF-8" msgstr "UTF-8 neabhbhailí" -#: app/widgets/gimpsizebox.c:290 -msgid "Keep aspect ratio" -msgstr "" - -#: app/widgets/gimpsizebox.c:574 +#: app/widgets/gimpsizebox.c:451 #, fuzzy, c-format msgid "%d x %d dpi" msgstr "%g x %g %s" -#: app/widgets/gimpsizebox.c:578 +#: app/widgets/gimpsizebox.c:455 #, fuzzy, c-format msgid "%d dpi" msgstr "dpi" diff -uraN gimp-2.2.0/po/gimp20.pot gimp-2.2.1/po/gimp20.pot --- gimp-2.2.0/po/gimp20.pot 2004-12-19 03:11:17.000000000 +0100 +++ gimp-2.2.1/po/gimp20.pot 2004-12-28 16:58:25.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-19 03:11+0100\n" +"POT-Creation-Date: 2004-12-28 16:58+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -991,11 +991,11 @@ msgid "Remove dangling entries" msgstr "" -#: app/actions/documents-commands.c:252 app/actions/file-commands.c:163 +#: app/actions/documents-commands.c:251 app/actions/file-commands.c:163 #: app/dialogs/file-open-dialog.c:198 app/dialogs/file-open-dialog.c:249 #: app/dialogs/file-open-location-dialog.c:193 -#: app/display/gimpdisplayshell-dnd.c:332 app/widgets/gimplayertreeview.c:802 -#: app/widgets/gimptoolbox-dnd.c:123 +#: app/display/gimpdisplayshell-dnd.c:334 app/widgets/gimplayertreeview.c:804 +#: app/widgets/gimptoolbox-dnd.c:125 #, c-format msgid "" "Opening '%s' failed:\n" @@ -1490,153 +1490,153 @@ msgid "Zoom all" msgstr "" -#: app/actions/gradient-editor-actions.c:582 +#: app/actions/gradient-editor-actions.c:589 msgid "_Blending Function for Segment" msgstr "" -#: app/actions/gradient-editor-actions.c:584 +#: app/actions/gradient-editor-actions.c:591 msgid "Coloring _Type for Segment" msgstr "" -#: app/actions/gradient-editor-actions.c:587 +#: app/actions/gradient-editor-actions.c:594 msgid "_Flip Segment" msgstr "" -#: app/actions/gradient-editor-actions.c:589 +#: app/actions/gradient-editor-actions.c:596 msgid "_Replicate Segment..." msgstr "" -#: app/actions/gradient-editor-actions.c:591 +#: app/actions/gradient-editor-actions.c:598 msgid "Split Segment at _Midpoint" msgstr "" -#: app/actions/gradient-editor-actions.c:593 +#: app/actions/gradient-editor-actions.c:600 msgid "Split Segment _Uniformly..." msgstr "" -#: app/actions/gradient-editor-actions.c:595 +#: app/actions/gradient-editor-actions.c:602 msgid "_Delete Segment" msgstr "" -#: app/actions/gradient-editor-actions.c:597 +#: app/actions/gradient-editor-actions.c:604 msgid "Re-_center Segment's Midpoint" msgstr "" -#: app/actions/gradient-editor-actions.c:599 +#: app/actions/gradient-editor-actions.c:606 msgid "Re-distribute _Handles in Segment" msgstr "" -#: app/actions/gradient-editor-actions.c:604 +#: app/actions/gradient-editor-actions.c:611 msgid "_Blending Function for Selection" msgstr "" -#: app/actions/gradient-editor-actions.c:606 +#: app/actions/gradient-editor-actions.c:613 msgid "Coloring _Type for Selection" msgstr "" -#: app/actions/gradient-editor-actions.c:609 +#: app/actions/gradient-editor-actions.c:616 msgid "_Flip Selection" msgstr "" -#: app/actions/gradient-editor-actions.c:611 +#: app/actions/gradient-editor-actions.c:618 msgid "_Replicate Selection..." msgstr "" -#: app/actions/gradient-editor-actions.c:613 +#: app/actions/gradient-editor-actions.c:620 msgid "Split Segments at _Midpoints" msgstr "" -#: app/actions/gradient-editor-actions.c:615 +#: app/actions/gradient-editor-actions.c:622 msgid "Split Segments _Uniformly..." msgstr "" -#: app/actions/gradient-editor-actions.c:617 +#: app/actions/gradient-editor-actions.c:624 msgid "_Delete Selection" msgstr "" -#: app/actions/gradient-editor-actions.c:619 +#: app/actions/gradient-editor-actions.c:626 msgid "Re-_center Midpoints in Selection" msgstr "" -#: app/actions/gradient-editor-actions.c:621 +#: app/actions/gradient-editor-actions.c:628 msgid "Re-distribute _Handles in Selection" msgstr "" -#: app/actions/gradient-editor-commands.c:84 +#: app/actions/gradient-editor-commands.c:85 msgid "Left Endpoint Color" msgstr "" -#: app/actions/gradient-editor-commands.c:86 +#: app/actions/gradient-editor-commands.c:87 msgid "Gradient Segment's Left Endpoint Color" msgstr "" -#: app/actions/gradient-editor-commands.c:186 +#: app/actions/gradient-editor-commands.c:189 msgid "Right Endpoint Color" msgstr "" -#: app/actions/gradient-editor-commands.c:188 +#: app/actions/gradient-editor-commands.c:191 msgid "Gradient Segment's Right Endpoint Color" msgstr "" -#: app/actions/gradient-editor-commands.c:353 +#: app/actions/gradient-editor-commands.c:358 msgid "Replicate Segment" msgstr "" -#: app/actions/gradient-editor-commands.c:354 +#: app/actions/gradient-editor-commands.c:359 msgid "Replicate Gradient Segment" msgstr "" -#: app/actions/gradient-editor-commands.c:358 +#: app/actions/gradient-editor-commands.c:363 msgid "Replicate Selection" msgstr "" -#: app/actions/gradient-editor-commands.c:359 +#: app/actions/gradient-editor-commands.c:364 msgid "Replicate Gradient Selection" msgstr "" -#: app/actions/gradient-editor-commands.c:371 +#: app/actions/gradient-editor-commands.c:376 msgid "Replicate" msgstr "" -#: app/actions/gradient-editor-commands.c:386 +#: app/actions/gradient-editor-commands.c:391 msgid "" "Select the number of times\n" "to replicate the selected segment." msgstr "" -#: app/actions/gradient-editor-commands.c:389 +#: app/actions/gradient-editor-commands.c:394 msgid "" "Select the number of times\n" "to replicate the selection." msgstr "" -#: app/actions/gradient-editor-commands.c:444 +#: app/actions/gradient-editor-commands.c:452 msgid "Split Segment Uniformly" msgstr "" -#: app/actions/gradient-editor-commands.c:445 +#: app/actions/gradient-editor-commands.c:453 msgid "Split Gradient Segment Uniformly" msgstr "" -#: app/actions/gradient-editor-commands.c:449 +#: app/actions/gradient-editor-commands.c:457 msgid "Split Segments Uniformly" msgstr "" -#: app/actions/gradient-editor-commands.c:450 +#: app/actions/gradient-editor-commands.c:458 msgid "Split Gradient Segments Uniformly" msgstr "" -#: app/actions/gradient-editor-commands.c:462 +#: app/actions/gradient-editor-commands.c:470 msgid "Split" msgstr "" -#: app/actions/gradient-editor-commands.c:478 +#: app/actions/gradient-editor-commands.c:486 msgid "" "Select the number of uniform parts\n" "in which to split the selected segment." msgstr "" -#: app/actions/gradient-editor-commands.c:481 +#: app/actions/gradient-editor-commands.c:489 msgid "" "Select the number of uniform parts\n" "in which to split the segments in the selection." @@ -2071,7 +2071,7 @@ #: app/actions/layers-commands.c:232 app/actions/layers-commands.c:234 #: app/actions/layers-commands.c:291 app/actions/layers-commands.c:295 -#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:840 +#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:842 msgid "New Layer" msgstr "" @@ -2083,7 +2083,7 @@ msgid "Set Layer Boundary Size" msgstr "" -#: app/actions/layers-commands.c:512 app/core/gimplayer.c:255 +#: app/actions/layers-commands.c:512 app/core/gimplayer.c:253 msgid "Scale Layer" msgstr "" @@ -2095,7 +2095,7 @@ msgid "Layer Mask to Selection" msgstr "" -#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1085 +#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1066 #: app/dialogs/layer-add-mask-dialog.c:62 msgid "Add Layer Mask" msgstr "" @@ -2639,7 +2639,7 @@ msgstr "" #: app/actions/text-editor-commands.c:132 app/config/gimpconfig-utils.c:552 -#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:393 +#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:396 #: app/core/gimpbrushgenerated.c:601 app/core/gimpbrushpipe.c:338 #: app/core/gimpgradient-load.c:63 app/core/gimppalette.c:360 #: app/core/gimppattern.c:328 app/tools/gimpimagemaptool.c:608 @@ -4345,7 +4345,7 @@ msgid "FG to Transparent" msgstr "" -#: app/core/gimp-gui.c:148 +#: app/core/gimp-gui.c:153 msgid "GIMP" msgstr "" @@ -4377,39 +4377,54 @@ msgid "Modules" msgstr "" -#: app/core/gimpbrush.c:531 +#: app/core/gimpbrush.c:534 #, c-format msgid "Could not read %d bytes from '%s': %s" msgstr "" -#: app/core/gimpbrush.c:566 +#: app/core/gimpbrush.c:554 +#, c-format +msgid "Fatal parse error in brush file '%s': Width = 0." +msgstr "" + +#: app/core/gimpbrush.c:563 +#, c-format +msgid "Fatal parse error in brush file '%s': Height = 0." +msgstr "" + +#: app/core/gimpbrush.c:572 +#, c-format +msgid "Fatal parse error in brush file '%s': Bytes = 0." +msgstr "" + +#: app/core/gimpbrush.c:596 #, c-format msgid "Fatal parse error in brush file '%s': Unknown depth %d." msgstr "" -#: app/core/gimpbrush.c:579 +#: app/core/gimpbrush.c:609 #, c-format msgid "Fatal parse error in brush file '%s': Unknown version %d." msgstr "" -#: app/core/gimpbrush.c:595 app/core/gimpbrush.c:715 +#: app/core/gimpbrush.c:625 app/core/gimpbrush.c:745 #, c-format msgid "Fatal parse error in brush file '%s': File appears truncated." msgstr "" -#: app/core/gimpbrush.c:603 app/core/gimpbrushgenerated.c:648 +#: app/core/gimpbrush.c:633 app/core/gimpbrushgenerated.c:648 #: app/core/gimpbrushpipe.c:354 #, c-format msgid "Invalid UTF-8 string in brush file '%s'." msgstr "" -#: app/core/gimpbrush.c:610 app/core/gimpcontext.c:1299 -#: app/core/gimpitem.c:479 app/core/gimppattern.c:400 +#: app/core/gimpbrush.c:640 app/core/gimpcontext.c:1299 +#: app/core/gimpitem.c:480 app/core/gimppattern.c:400 #: app/dialogs/template-options-dialog.c:80 app/tools/gimpvectortool.c:339 msgid "Unnamed" msgstr "" -#: app/core/gimpbrush.c:704 +#: app/core/gimpbrush.c:734 #, c-format msgid "" "Fatal parse error in brush file '%s': Unsupported brush depth %d\n" @@ -4569,11 +4584,11 @@ msgstr "" #: app/core/gimpdatafactory.c:411 app/core/gimpdatafactory.c:414 -#: app/core/gimpitem.c:274 app/core/gimpitem.c:277 +#: app/core/gimpitem.c:275 app/core/gimpitem.c:278 msgid "copy" msgstr "" -#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:286 +#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:287 #, c-format msgid "%s copy" msgstr "" @@ -4633,7 +4648,7 @@ msgid "Rotate" msgstr "" -#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:259 +#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:257 msgid "Transform Layer" msgstr "" @@ -4988,7 +5003,7 @@ #. pixel size #: app/core/gimpimagefile.c:624 app/dialogs/info-window.c:552 -#: app/widgets/gimpsizebox.c:552 app/widgets/gimptemplateeditor.c:637 +#: app/widgets/gimpsizebox.c:429 app/widgets/gimptemplateeditor.c:637 #: app/widgets/gimptemplateeditor.c:673 #, c-format msgid "%d x %d pixels" @@ -5008,15 +5023,15 @@ msgid "Could not open thumbnail '%s': %s" msgstr "" -#: app/core/gimpitem.c:1096 +#: app/core/gimpitem.c:1103 msgid "Attach Parasite" msgstr "" -#: app/core/gimpitem.c:1106 +#: app/core/gimpitem.c:1113 msgid "Attach Parasite to Item" msgstr "" -#: app/core/gimpitem.c:1145 app/core/gimpitem.c:1152 +#: app/core/gimpitem.c:1152 app/core/gimpitem.c:1159 msgid "Remove Parasite from Item" msgstr "" @@ -5042,76 +5057,76 @@ msgid "Floating Selection to Layer" msgstr "" -#: app/core/gimplayer.c:252 app/pdb/internal_procs.c:152 +#: app/core/gimplayer.c:250 app/pdb/internal_procs.c:152 msgid "Layer" msgstr "" -#: app/core/gimplayer.c:253 +#: app/core/gimplayer.c:251 msgid "Rename Layer" msgstr "" -#: app/core/gimplayer.c:254 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 +#: app/core/gimplayer.c:252 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 msgid "Move Layer" msgstr "" -#: app/core/gimplayer.c:256 +#: app/core/gimplayer.c:254 msgid "Resize Layer" msgstr "" -#: app/core/gimplayer.c:257 +#: app/core/gimplayer.c:255 msgid "Flip Layer" msgstr "" -#: app/core/gimplayer.c:258 +#: app/core/gimplayer.c:256 msgid "Rotate Layer" msgstr "" -#: app/core/gimplayer.c:341 app/core/gimplayer.c:1129 +#: app/core/gimplayer.c:339 app/core/gimplayer.c:1110 #: app/core/gimplayermask.c:236 #, c-format msgid "%s mask" msgstr "" -#: app/core/gimplayer.c:387 +#: app/core/gimplayer.c:385 #, c-format msgid "" "Floating Selection\n" "(%s)" msgstr "" -#: app/core/gimplayer.c:1055 +#: app/core/gimplayer.c:1036 msgid "Cannot add layer mask to layer which is not part of an image." msgstr "" -#: app/core/gimplayer.c:1062 +#: app/core/gimplayer.c:1043 msgid "Unable to add a layer mask since the layer already has one." msgstr "" -#: app/core/gimplayer.c:1069 +#: app/core/gimplayer.c:1050 msgid "Cannot add layer mask to a layer with no alpha channel." msgstr "" -#: app/core/gimplayer.c:1079 +#: app/core/gimplayer.c:1060 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "" -#: app/core/gimplayer.c:1183 +#: app/core/gimplayer.c:1164 msgid "Transfer Alpha to Mask" msgstr "" -#: app/core/gimplayer.c:1343 +#: app/core/gimplayer.c:1324 msgid "Apply Layer Mask" msgstr "" -#: app/core/gimplayer.c:1344 +#: app/core/gimplayer.c:1325 msgid "Delete Layer Mask" msgstr "" -#: app/core/gimplayer.c:1445 +#: app/core/gimplayer.c:1426 msgid "Add Alpha Channel" msgstr "" -#: app/core/gimplayer.c:1467 +#: app/core/gimplayer.c:1448 msgid "Layer to Image Size" msgstr "" @@ -6531,28 +6546,28 @@ msgstr "" #. the image size labels -#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:241 +#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:222 #: app/widgets/gimptemplateeditor.c:236 msgid "_Width:" msgstr "" -#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:248 +#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:225 #: app/widgets/gimptemplateeditor.c:243 msgid "H_eight:" msgstr "" #. the resolution labels -#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:338 +#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:273 #: app/widgets/gimptemplateeditor.c:363 msgid "_X resolution:" msgstr "" -#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:345 +#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:276 #: app/widgets/gimptemplateeditor.c:370 msgid "_Y resolution:" msgstr "" -#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:357 +#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:269 #: app/widgets/gimptemplateeditor.c:383 #, c-format msgid "pixels/%a" @@ -7082,11 +7097,11 @@ msgid "%d minutes" msgstr "" -#: app/display/gimpdisplayshell-dnd.c:96 +#: app/display/gimpdisplayshell-dnd.c:98 msgid "Drop New Layer" msgstr "" -#: app/display/gimpdisplayshell-dnd.c:140 +#: app/display/gimpdisplayshell-dnd.c:142 msgid "Drop New Path" msgstr "" @@ -8528,12 +8543,12 @@ msgstr "" #: app/tools/gimppaintoptions-gui.c:103 app/widgets/gimpbrushselect.c:201 -#: app/widgets/gimplayertreeview.c:330 +#: app/widgets/gimplayertreeview.c:332 msgid "Opacity:" msgstr "" #: app/tools/gimppaintoptions-gui.c:108 app/tools/gimpselectionoptions.c:374 -#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:323 +#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:325 msgid "Mode:" msgstr "" @@ -9911,24 +9926,24 @@ msgid "Set Item Exclusive Linked" msgstr "" -#: app/widgets/gimplayertreeview.c:250 +#: app/widgets/gimplayertreeview.c:252 msgid "Reorder Layer" msgstr "" -#: app/widgets/gimplayertreeview.c:311 +#: app/widgets/gimplayertreeview.c:313 msgid "Keep transparency" msgstr "" -#: app/widgets/gimplayertreeview.c:846 +#: app/widgets/gimplayertreeview.c:848 msgid "Empty Layer" msgstr "" -#: app/widgets/gimpmessagebox.c:458 +#: app/widgets/gimpmessagebox.c:460 #, c-format msgid "Message repeated %d times." msgstr "" -#: app/widgets/gimpmessagebox.c:460 +#: app/widgets/gimpmessagebox.c:462 msgid "Message repeated once." msgstr "" @@ -9957,16 +9972,12 @@ msgid "Invalid UTF-8" msgstr "" -#: app/widgets/gimpsizebox.c:290 -msgid "Keep aspect ratio" -msgstr "" - -#: app/widgets/gimpsizebox.c:574 +#: app/widgets/gimpsizebox.c:451 #, c-format msgid "%d x %d dpi" msgstr "" -#: app/widgets/gimpsizebox.c:578 +#: app/widgets/gimpsizebox.c:455 #, c-format msgid "%d dpi" msgstr "" diff -uraN gimp-2.2.0/po/gl.gmo gimp-2.2.1/po/gl.gmo --- gimp-2.2.0/po/gl.gmo 2004-12-19 03:11:54.000000000 +0100 +++ gimp-2.2.1/po/gl.gmo 2004-12-28 16:58:42.000000000 +0100 @@ -77,7 +77,7 @@ did not save indexed colormaps correctly. Substituting grayscale map.YellowZoom inZoom in & outZoom outcolorscopydpigrayscalegrayscale-emptyinchinchesindexedindexed-emptymillimetermillimeterspercentpicapicaspixelpixelspixels/%apointpointsProject-Id-Version: Gimp CVS Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-19 03:11+0100 +POT-Creation-Date: 2004-12-28 16:58+0100 PO-Revision-Date: 2000-10-15 19:35+0200 Last-Translator: Francisco Xosé Vázquez Grandal Language-Team: Galician diff -uraN gimp-2.2.0/po/gl.po gimp-2.2.1/po/gl.po --- gimp-2.2.0/po/gl.po 2004-12-19 03:11:28.000000000 +0100 +++ gimp-2.2.1/po/gl.po 2004-12-28 16:58:30.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Gimp CVS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-19 03:11+0100\n" +"POT-Creation-Date: 2004-12-28 16:58+0100\n" "PO-Revision-Date: 2000-10-15 19:35+0200\n" "Last-Translator: Francisco Xosé Vázquez Grandal \n" "Language-Team: Galician \n" @@ -1182,11 +1182,11 @@ msgid "Remove dangling entries" msgstr "Eliminar" -#: app/actions/documents-commands.c:252 app/actions/file-commands.c:163 +#: app/actions/documents-commands.c:251 app/actions/file-commands.c:163 #: app/dialogs/file-open-dialog.c:198 app/dialogs/file-open-dialog.c:249 #: app/dialogs/file-open-location-dialog.c:193 -#: app/display/gimpdisplayshell-dnd.c:332 app/widgets/gimplayertreeview.c:802 -#: app/widgets/gimptoolbox-dnd.c:123 +#: app/display/gimpdisplayshell-dnd.c:334 app/widgets/gimplayertreeview.c:804 +#: app/widgets/gimptoolbox-dnd.c:125 #, fuzzy, c-format msgid "" "Opening '%s' failed:\n" @@ -1788,186 +1788,186 @@ msgid "Zoom all" msgstr "Zoom a todo" -#: app/actions/gradient-editor-actions.c:582 +#: app/actions/gradient-editor-actions.c:589 #, fuzzy msgid "_Blending Function for Segment" msgstr "Coloreando tipo para segmento" -#: app/actions/gradient-editor-actions.c:584 +#: app/actions/gradient-editor-actions.c:591 #, fuzzy msgid "Coloring _Type for Segment" msgstr "Coloreando tipo para segmento" -#: app/actions/gradient-editor-actions.c:587 +#: app/actions/gradient-editor-actions.c:594 #, fuzzy msgid "_Flip Segment" msgstr "Reflexar segmento" -#: app/actions/gradient-editor-actions.c:589 +#: app/actions/gradient-editor-actions.c:596 #, fuzzy msgid "_Replicate Segment..." msgstr "Replicar segmento" -#: app/actions/gradient-editor-actions.c:591 +#: app/actions/gradient-editor-actions.c:598 #, fuzzy msgid "Split Segment at _Midpoint" msgstr "Partir segmento no punto medio" -#: app/actions/gradient-editor-actions.c:593 +#: app/actions/gradient-editor-actions.c:600 #, fuzzy msgid "Split Segment _Uniformly..." msgstr "Partir segmento uniformemente" -#: app/actions/gradient-editor-actions.c:595 +#: app/actions/gradient-editor-actions.c:602 #, fuzzy msgid "_Delete Segment" msgstr "Borrar segmento" -#: app/actions/gradient-editor-actions.c:597 +#: app/actions/gradient-editor-actions.c:604 #, fuzzy msgid "Re-_center Segment's Midpoint" msgstr "Re-centrar o punto medio do segmento" -#: app/actions/gradient-editor-actions.c:599 +#: app/actions/gradient-editor-actions.c:606 #, fuzzy msgid "Re-distribute _Handles in Segment" msgstr "Redistribuir manexadores no segmento" -#: app/actions/gradient-editor-actions.c:604 +#: app/actions/gradient-editor-actions.c:611 #, fuzzy msgid "_Blending Function for Selection" msgstr "Coloreando tipo para selección" -#: app/actions/gradient-editor-actions.c:606 +#: app/actions/gradient-editor-actions.c:613 #, fuzzy msgid "Coloring _Type for Selection" msgstr "Coloreando tipo para selección" -#: app/actions/gradient-editor-actions.c:609 +#: app/actions/gradient-editor-actions.c:616 #, fuzzy msgid "_Flip Selection" msgstr "Reflexar selección" -#: app/actions/gradient-editor-actions.c:611 +#: app/actions/gradient-editor-actions.c:618 #, fuzzy msgid "_Replicate Selection..." msgstr "Replicar selección" -#: app/actions/gradient-editor-actions.c:613 +#: app/actions/gradient-editor-actions.c:620 #, fuzzy msgid "Split Segments at _Midpoints" msgstr "Partir segmentos nos puntos medios" -#: app/actions/gradient-editor-actions.c:615 +#: app/actions/gradient-editor-actions.c:622 #, fuzzy msgid "Split Segments _Uniformly..." msgstr "Partir segmentos uniformemente" -#: app/actions/gradient-editor-actions.c:617 +#: app/actions/gradient-editor-actions.c:624 #, fuzzy msgid "_Delete Selection" msgstr "Borrar selección" -#: app/actions/gradient-editor-actions.c:619 +#: app/actions/gradient-editor-actions.c:626 #, fuzzy msgid "Re-_center Midpoints in Selection" msgstr "Re-centrar puntos medios na selección" -#: app/actions/gradient-editor-actions.c:621 +#: app/actions/gradient-editor-actions.c:628 #, fuzzy msgid "Re-distribute _Handles in Selection" msgstr "Redistribuir manexadores na selección" -#: app/actions/gradient-editor-commands.c:84 +#: app/actions/gradient-editor-commands.c:85 #, fuzzy msgid "Left Endpoint Color" msgstr "Cor do punto final esquerdo" -#: app/actions/gradient-editor-commands.c:86 +#: app/actions/gradient-editor-commands.c:87 #, fuzzy msgid "Gradient Segment's Left Endpoint Color" msgstr "Cor do punto final esquerdo" -#: app/actions/gradient-editor-commands.c:186 +#: app/actions/gradient-editor-commands.c:189 #, fuzzy msgid "Right Endpoint Color" msgstr "Cor do punto final esquerdo" -#: app/actions/gradient-editor-commands.c:188 +#: app/actions/gradient-editor-commands.c:191 #, fuzzy msgid "Gradient Segment's Right Endpoint Color" msgstr "Cor do punto final esquerdo" -#: app/actions/gradient-editor-commands.c:353 +#: app/actions/gradient-editor-commands.c:358 #, fuzzy msgid "Replicate Segment" msgstr "Replicar segmento" -#: app/actions/gradient-editor-commands.c:354 +#: app/actions/gradient-editor-commands.c:359 #, fuzzy msgid "Replicate Gradient Segment" msgstr "Replicar segmento" -#: app/actions/gradient-editor-commands.c:358 +#: app/actions/gradient-editor-commands.c:363 #, fuzzy msgid "Replicate Selection" msgstr "Replicar selección" -#: app/actions/gradient-editor-commands.c:359 +#: app/actions/gradient-editor-commands.c:364 #, fuzzy msgid "Replicate Gradient Selection" msgstr "Replicar selección" -#: app/actions/gradient-editor-commands.c:371 +#: app/actions/gradient-editor-commands.c:376 msgid "Replicate" msgstr "Replicar" -#: app/actions/gradient-editor-commands.c:386 +#: app/actions/gradient-editor-commands.c:391 #, fuzzy msgid "" "Select the number of times\n" "to replicate the selected segment." msgstr "que quere replicar o segmento seleccionado" -#: app/actions/gradient-editor-commands.c:389 +#: app/actions/gradient-editor-commands.c:394 #, fuzzy msgid "" "Select the number of times\n" "to replicate the selection." msgstr "Por favor, seleccione o número de veces" -#: app/actions/gradient-editor-commands.c:444 +#: app/actions/gradient-editor-commands.c:452 #, fuzzy msgid "Split Segment Uniformly" msgstr "Partir segmento uniformemente" -#: app/actions/gradient-editor-commands.c:445 +#: app/actions/gradient-editor-commands.c:453 #, fuzzy msgid "Split Gradient Segment Uniformly" msgstr "Partir segmento uniformemente" -#: app/actions/gradient-editor-commands.c:449 +#: app/actions/gradient-editor-commands.c:457 #, fuzzy msgid "Split Segments Uniformly" msgstr "Partir segmentos uniformemente" -#: app/actions/gradient-editor-commands.c:450 +#: app/actions/gradient-editor-commands.c:458 #, fuzzy msgid "Split Gradient Segments Uniformly" msgstr "Partir segmentos uniformemente" -#: app/actions/gradient-editor-commands.c:462 +#: app/actions/gradient-editor-commands.c:470 msgid "Split" msgstr "Partir" -#: app/actions/gradient-editor-commands.c:478 +#: app/actions/gradient-editor-commands.c:486 #, fuzzy msgid "" "Select the number of uniform parts\n" "in which to split the selected segment." msgstr "en que quere partir o segmento seleccionado" -#: app/actions/gradient-editor-commands.c:481 +#: app/actions/gradient-editor-commands.c:489 #, fuzzy msgid "" "Select the number of uniform parts\n" @@ -2499,7 +2499,7 @@ #: app/actions/layers-commands.c:232 app/actions/layers-commands.c:234 #: app/actions/layers-commands.c:291 app/actions/layers-commands.c:295 -#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:840 +#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:842 msgid "New Layer" msgstr "Nova Capa" @@ -2512,7 +2512,7 @@ msgid "Set Layer Boundary Size" msgstr "Dispor tamaño límite de capa" -#: app/actions/layers-commands.c:512 app/core/gimplayer.c:255 +#: app/actions/layers-commands.c:512 app/core/gimplayer.c:253 msgid "Scale Layer" msgstr "Escalar Capa" @@ -2526,7 +2526,7 @@ msgid "Layer Mask to Selection" msgstr "/Capas/Mascara a selección" -#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1085 +#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1066 #: app/dialogs/layer-add-mask-dialog.c:62 #, fuzzy msgid "Add Layer Mask" @@ -3188,7 +3188,7 @@ msgstr "" #: app/actions/text-editor-commands.c:132 app/config/gimpconfig-utils.c:552 -#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:393 +#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:396 #: app/core/gimpbrushgenerated.c:601 app/core/gimpbrushpipe.c:338 #: app/core/gimpgradient-load.c:63 app/core/gimppalette.c:360 #: app/core/gimppattern.c:328 app/tools/gimpimagemaptool.c:608 @@ -5125,7 +5125,7 @@ msgid "FG to Transparent" msgstr "Primeiro plano a Transparente" -#: app/core/gimp-gui.c:148 +#: app/core/gimp-gui.c:153 #, fuzzy msgid "GIMP" msgstr "O GIMP" @@ -5160,39 +5160,54 @@ msgid "Modules" msgstr "Módulos" -#: app/core/gimpbrush.c:531 +#: app/core/gimpbrush.c:534 #, fuzzy, c-format msgid "Could not read %d bytes from '%s': %s" msgstr "Incapaz de abrir ficheiro %s" -#: app/core/gimpbrush.c:566 +#: app/core/gimpbrush.c:554 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Width = 0." +msgstr "O ficheiro de patrón \"%s\" do GIMP parece estar mutilado." + +#: app/core/gimpbrush.c:563 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Height = 0." +msgstr "O ficheiro de patrón \"%s\" do GIMP parece estar mutilado." + +#: app/core/gimpbrush.c:572 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Bytes = 0." +msgstr "O ficheiro de patrón \"%s\" do GIMP parece estar mutilado." + +#: app/core/gimpbrush.c:596 #, fuzzy, c-format msgid "Fatal parse error in brush file '%s': Unknown depth %d." msgstr "O ficheiro de patrón \"%s\" do GIMP parece estar mutilado." -#: app/core/gimpbrush.c:579 +#: app/core/gimpbrush.c:609 #, fuzzy, c-format msgid "Fatal parse error in brush file '%s': Unknown version %d." msgstr "O ficheiro de patrón \"%s\" do GIMP parece estar mutilado." -#: app/core/gimpbrush.c:595 app/core/gimpbrush.c:715 +#: app/core/gimpbrush.c:625 app/core/gimpbrush.c:745 #, fuzzy, c-format msgid "Fatal parse error in brush file '%s': File appears truncated." msgstr "O ficheiro de patrón \"%s\" do GIMP parece estar mutilado." -#: app/core/gimpbrush.c:603 app/core/gimpbrushgenerated.c:648 +#: app/core/gimpbrush.c:633 app/core/gimpbrushgenerated.c:648 #: app/core/gimpbrushpipe.c:354 #, fuzzy, c-format msgid "Invalid UTF-8 string in brush file '%s'." msgstr "Erro en ficheiro de patrón \"%s\" do GIMP" -#: app/core/gimpbrush.c:610 app/core/gimpcontext.c:1299 -#: app/core/gimpitem.c:479 app/core/gimppattern.c:400 +#: app/core/gimpbrush.c:640 app/core/gimpcontext.c:1299 +#: app/core/gimpitem.c:480 app/core/gimppattern.c:400 #: app/dialogs/template-options-dialog.c:80 app/tools/gimpvectortool.c:339 msgid "Unnamed" msgstr "Sen nome" -#: app/core/gimpbrush.c:704 +#: app/core/gimpbrush.c:734 #, c-format msgid "" "Fatal parse error in brush file '%s': Unsupported brush depth %d\n" @@ -5374,11 +5389,11 @@ "\"%s\"" #: app/core/gimpdatafactory.c:411 app/core/gimpdatafactory.c:414 -#: app/core/gimpitem.c:274 app/core/gimpitem.c:277 +#: app/core/gimpitem.c:275 app/core/gimpitem.c:278 msgid "copy" msgstr "copiar" -#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:286 +#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:287 #, c-format msgid "%s copy" msgstr "copiar %s" @@ -5442,7 +5457,7 @@ msgid "Rotate" msgstr "Rotar" -#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:259 +#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:257 #, fuzzy msgid "Transform Layer" msgstr "Transformar" @@ -5873,7 +5888,7 @@ #. pixel size #: app/core/gimpimagefile.c:624 app/dialogs/info-window.c:552 -#: app/widgets/gimpsizebox.c:552 app/widgets/gimptemplateeditor.c:637 +#: app/widgets/gimpsizebox.c:429 app/widgets/gimptemplateeditor.c:637 #: app/widgets/gimptemplateeditor.c:673 #, c-format msgid "%d x %d pixels" @@ -5894,17 +5909,17 @@ msgid "Could not open thumbnail '%s': %s" msgstr "Imposible reabrir %s\n" -#: app/core/gimpitem.c:1096 +#: app/core/gimpitem.c:1103 #, fuzzy msgid "Attach Parasite" msgstr "adxuntar parasito" -#: app/core/gimpitem.c:1106 +#: app/core/gimpitem.c:1113 #, fuzzy msgid "Attach Parasite to Item" msgstr "adxuntar parasito" -#: app/core/gimpitem.c:1145 app/core/gimpitem.c:1152 +#: app/core/gimpitem.c:1152 app/core/gimpitem.c:1159 #, fuzzy msgid "Remove Parasite from Item" msgstr "borrar parásito" @@ -5941,96 +5956,96 @@ msgid "Floating Selection to Layer" msgstr "Selección flotante" -#: app/core/gimplayer.c:252 app/pdb/internal_procs.c:152 +#: app/core/gimplayer.c:250 app/pdb/internal_procs.c:152 msgid "Layer" msgstr "Capa" -#: app/core/gimplayer.c:253 +#: app/core/gimplayer.c:251 #, fuzzy msgid "Rename Layer" msgstr "renomear capa" -#: app/core/gimplayer.c:254 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 +#: app/core/gimplayer.c:252 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 #, fuzzy msgid "Move Layer" msgstr "Nova Capa" -#: app/core/gimplayer.c:256 +#: app/core/gimplayer.c:254 #, fuzzy msgid "Resize Layer" msgstr "/Pila/Elevar capa" -#: app/core/gimplayer.c:257 +#: app/core/gimplayer.c:255 #, fuzzy msgid "Flip Layer" msgstr "Capa" -#: app/core/gimplayer.c:258 +#: app/core/gimplayer.c:256 #, fuzzy msgid "Rotate Layer" msgstr "Capa flotada" -#: app/core/gimplayer.c:341 app/core/gimplayer.c:1129 +#: app/core/gimplayer.c:339 app/core/gimplayer.c:1110 #: app/core/gimplayermask.c:236 #, c-format msgid "%s mask" msgstr "mascara %s" -#: app/core/gimplayer.c:387 +#: app/core/gimplayer.c:385 #, fuzzy, c-format msgid "" "Floating Selection\n" "(%s)" msgstr "Selección flotante" -#: app/core/gimplayer.c:1055 +#: app/core/gimplayer.c:1036 #, fuzzy msgid "Cannot add layer mask to layer which is not part of an image." msgstr "" "Non se pode engadir mascara de capa a unha capa\n" "sen canle alfa." -#: app/core/gimplayer.c:1062 +#: app/core/gimplayer.c:1043 #, fuzzy msgid "Unable to add a layer mask since the layer already has one." msgstr "" "Incapaz de engadir unha mascara de capa porque\n" "a capa xa ten unha." -#: app/core/gimplayer.c:1069 +#: app/core/gimplayer.c:1050 #, fuzzy msgid "Cannot add layer mask to a layer with no alpha channel." msgstr "" "Non se pode engadir mascara de capa a unha capa\n" "sen canle alfa." -#: app/core/gimplayer.c:1079 +#: app/core/gimplayer.c:1060 #, fuzzy msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "" "Non se pode engadir mascara de capa de diferentes dimensións que a capa " "especificada." -#: app/core/gimplayer.c:1183 +#: app/core/gimplayer.c:1164 msgid "Transfer Alpha to Mask" msgstr "" -#: app/core/gimplayer.c:1343 +#: app/core/gimplayer.c:1324 #, fuzzy msgid "Apply Layer Mask" msgstr "/Aplicar capa de máscara" -#: app/core/gimplayer.c:1344 +#: app/core/gimplayer.c:1325 #, fuzzy msgid "Delete Layer Mask" msgstr "/Borrar capa de máscara" -#: app/core/gimplayer.c:1445 +#: app/core/gimplayer.c:1426 #, fuzzy msgid "Add Alpha Channel" msgstr "/Engadir canle alfa" -#: app/core/gimplayer.c:1467 +#: app/core/gimplayer.c:1448 #, fuzzy msgid "Layer to Image Size" msgstr "/Capa a tamaño de imaxe" @@ -7673,32 +7688,32 @@ msgstr "Tamaño de previsualización:" #. the image size labels -#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:241 +#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:222 #: app/widgets/gimptemplateeditor.c:236 #, fuzzy msgid "_Width:" msgstr "Ancho:" -#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:248 +#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:225 #: app/widgets/gimptemplateeditor.c:243 #, fuzzy msgid "H_eight:" msgstr "Alto:" #. the resolution labels -#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:338 +#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:273 #: app/widgets/gimptemplateeditor.c:363 #, fuzzy msgid "_X resolution:" msgstr "Resolución:" -#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:345 +#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:276 #: app/widgets/gimptemplateeditor.c:370 #, fuzzy msgid "_Y resolution:" msgstr "Resolución:" -#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:357 +#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:269 #: app/widgets/gimptemplateeditor.c:383 #, c-format msgid "pixels/%a" @@ -8423,12 +8438,12 @@ msgid "%d minutes" msgstr "%d Bytes" -#: app/display/gimpdisplayshell-dnd.c:96 +#: app/display/gimpdisplayshell-dnd.c:98 #, fuzzy msgid "Drop New Layer" msgstr "Nova Capa" -#: app/display/gimpdisplayshell-dnd.c:140 +#: app/display/gimpdisplayshell-dnd.c:142 #, fuzzy msgid "Drop New Path" msgstr "Nova curva" @@ -10054,12 +10069,12 @@ msgstr "Pincel" #: app/tools/gimppaintoptions-gui.c:103 app/widgets/gimpbrushselect.c:201 -#: app/widgets/gimplayertreeview.c:330 +#: app/widgets/gimplayertreeview.c:332 msgid "Opacity:" msgstr "Opacidade:" #: app/tools/gimppaintoptions-gui.c:108 app/tools/gimpselectionoptions.c:374 -#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:323 +#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:325 msgid "Mode:" msgstr "Modo:" @@ -11596,27 +11611,27 @@ msgid "Set Item Exclusive Linked" msgstr "Opcións de capa nova" -#: app/widgets/gimplayertreeview.c:250 +#: app/widgets/gimplayertreeview.c:252 #, fuzzy msgid "Reorder Layer" msgstr "/Pila/Baixar capa" -#: app/widgets/gimplayertreeview.c:311 +#: app/widgets/gimplayertreeview.c:313 #, fuzzy msgid "Keep transparency" msgstr "Conservar transparencia" -#: app/widgets/gimplayertreeview.c:846 +#: app/widgets/gimplayertreeview.c:848 #, fuzzy msgid "Empty Layer" msgstr "Capa de Texto" -#: app/widgets/gimpmessagebox.c:458 +#: app/widgets/gimpmessagebox.c:460 #, fuzzy, c-format msgid "Message repeated %d times." msgstr "Mensaxe repetida %d veces" -#: app/widgets/gimpmessagebox.c:460 +#: app/widgets/gimpmessagebox.c:462 #, fuzzy msgid "Message repeated once." msgstr "Mensaxe repetida unha vez" @@ -11648,17 +11663,12 @@ msgid "Invalid UTF-8" msgstr "Erro en ficheiro de patrón \"%s\" do GIMP" -#: app/widgets/gimpsizebox.c:290 -#, fuzzy -msgid "Keep aspect ratio" -msgstr "Tamaño fixo / Relación de aspecto" - -#: app/widgets/gimpsizebox.c:574 +#: app/widgets/gimpsizebox.c:451 #, fuzzy, c-format msgid "%d x %d dpi" msgstr "%d x %d pixels" -#: app/widgets/gimpsizebox.c:578 +#: app/widgets/gimpsizebox.c:455 #, fuzzy, c-format msgid "%d dpi" msgstr "ppp" @@ -12169,6 +12179,10 @@ msgid "Image Editor" msgstr "Máscara de Imaxe" +#, fuzzy +#~ msgid "Keep aspect ratio" +#~ msgstr "Tamaño fixo / Relación de aspecto" + #~ msgid "Y:" #~ msgstr "Y:" diff -uraN gimp-2.2.0/po/he.gmo gimp-2.2.1/po/he.gmo --- gimp-2.2.0/po/he.gmo 2004-12-19 03:11:54.000000000 +0100 +++ gimp-2.2.1/po/he.gmo 2004-12-28 16:58:42.000000000 +0100 @@ -112,7 +112,7 @@ PastePasted LayerPathPath AttributesPath cannot be lowered more.Path cannot be raised higher.PathsPattern FoldersPatternsPencilPercentile:Personal GIMP FolderPerspectivePerspective...Pick colors from the imagePixelsPixels:Please wait...Plug-InPlug-In EnvironmentPlug-In FoldersPlug-In could not open imagePlug-In could not save imagePlug-In returned SUCCESS but did not return an imagePlug-InsPlug-inPortraitPreferencesPressure:PreviewPreview is out of datePreviewsProgressPseudo ColorPurpose:QueryQuerying new Plug-insQuickMaskRGBRGB ColorRadialRadius:Raise ChannelRaise Channel to TopRaise LayerRaise Layer to TopRaise PathRateRate:Re_peat "%s"Rect SelectRedRed:RedoReduce image to a fixed number of colorsReduce image to two colors using a thresholdRegisteredRemote imageRemove ChannelRemove GuideRemove LayerRemove Parasite from ImageRemove Parasite from ItemRemove PathRename ChannelRename LayerRename PathReorder ChannelReorder LayerRepeat:Replace the current selectionReplicateReplicate Gradient SegmentReplicate SegmentReplicate SelectionReset the selected filter to default valuesResizeResize ChannelResize ImageResize LayerResize PathResizing...Resolution:Resource ConsumptionReverseRevertRevert ImageRotateRotate ChannelRotate LayerRotate PathRotate the layer or selectionRotating...Rotation InformationSaturationSaveSave CurvesSave ImageSave LevelsSave curves settings to fileSave device statusSaving '%s' ScaleScale ChannelScale ImageScale LayerScale PathScale the layer or selectionScaling...ScissorsScreenSelect AllSelect Brush FoldersSelect By ColorSelect ColorSelect Environment FoldersSelect Gradient FoldersSelect Module FoldersSelect NoneSelect Palette FoldersSelect Pattern FoldersSelect Plug-In FoldersSelect Range to ModifySelect SourceSelect Theme FoldersSelect Zoom RatioSelect by ColorSelect contiguous regionsSelect elliptical regionsSelect hand-drawn regionsSelect rectangular regionsSelect regions by colorSelect shapes from imageSelectionSelection EditorSelection MaskSelection: Selection: ADDSelection: INTERSECTSelection: REPLACESelection: SUBTRACTSensitivitySet Channel ColorSet Channel OpacitySets the browser used by the help system.Sets the level of interpolation used for scaling and other transformations.Sets the text to appear in image window status bars.Sets the text to appear in image window titles.ShadowsShapeShape:SharpenSharpen ChannelSharpen SelectionShearShear the layer or selectionShearing InformationShearing...Show memory usageShow tip next time GIMP startsShow zoom ratioShrink ChannelShrink SelectionShrink from image borderSizeSize:SmallSmaller PreviewsSmoothSmooth edgesSmudgeSmudge imageSolidSourceSpacingSpacing:Speed:SplitSplit Segment UniformlySplit Segments UniformlySquareStandardStarting ExtensionsState:Static ColorStatic GrayStroke PathStroke SelectionSubtractSubtract from the current selectionTemplatesTemporary ProcedureTextText ColorText LayerText proceduresThe GIMPTheme FoldersThemesThis tool has no options.ThresholdThreshold:Tilt:TinyTool OptionsToolsTransformTransform ChannelTransform DirectionTransform LayerTransform PathTransformationTransforming...TransparencyTrue ColorTypeUndefinedUndoUndo HistoryUnitsUnknownUnknown file typeUnloadUnnamedUntitledUser Installation LogValueVersion:VerticalWhen enabled, the GIMP will use a different info window per image view.When enabled, this will ensure that the full image is visible after a file is opened, otherwise it will be displayed with a scale of 1:1.WhiteWidthWidth:Window PositionsYellowZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom inZoom in & outZoom out_Auto_B_C_G_Gradient_Hue:_Import_Lightness:_M_Preview_R_Redo_Redo %s_Saturation:_Selection_Undo_Undo %s_Y_Y:colorscopydpifatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringmillimetermillimeterspercentpicapicaspixelpixelspointpointsProject-Id-Version: gimp.HEAD Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-19 03:11+0100 +POT-Creation-Date: 2004-12-28 16:58+0100 PO-Revision-Date: 2003-09-24 13:40+0200 Last-Translator: Gil 'Dolfin' Osher Language-Team: Hebrew diff -uraN gimp-2.2.0/po/he.po gimp-2.2.1/po/he.po --- gimp-2.2.0/po/he.po 2004-12-19 03:11:28.000000000 +0100 +++ gimp-2.2.1/po/he.po 2004-12-28 16:58:30.000000000 +0100 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: gimp.HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-19 03:11+0100\n" +"POT-Creation-Date: 2004-12-28 16:58+0100\n" "PO-Revision-Date: 2003-09-24 13:40+0200\n" "Last-Translator: Gil 'Dolfin' Osher \n" "Language-Team: Hebrew \n" @@ -1147,11 +1147,11 @@ msgid "Remove dangling entries" msgstr "/הסרת רישומים מתנדנדים" -#: app/actions/documents-commands.c:252 app/actions/file-commands.c:163 +#: app/actions/documents-commands.c:251 app/actions/file-commands.c:163 #: app/dialogs/file-open-dialog.c:198 app/dialogs/file-open-dialog.c:249 #: app/dialogs/file-open-location-dialog.c:193 -#: app/display/gimpdisplayshell-dnd.c:332 app/widgets/gimplayertreeview.c:802 -#: app/widgets/gimptoolbox-dnd.c:123 +#: app/display/gimpdisplayshell-dnd.c:334 app/widgets/gimplayertreeview.c:804 +#: app/widgets/gimptoolbox-dnd.c:125 #, c-format msgid "" "Opening '%s' failed:\n" @@ -1722,166 +1722,166 @@ msgid "Zoom all" msgstr "מיקוד בהכל" -#: app/actions/gradient-editor-actions.c:582 +#: app/actions/gradient-editor-actions.c:589 msgid "_Blending Function for Segment" msgstr "" -#: app/actions/gradient-editor-actions.c:584 +#: app/actions/gradient-editor-actions.c:591 msgid "Coloring _Type for Segment" msgstr "" -#: app/actions/gradient-editor-actions.c:587 +#: app/actions/gradient-editor-actions.c:594 #, fuzzy msgid "_Flip Segment" msgstr "היפוך מקטע" -#: app/actions/gradient-editor-actions.c:589 +#: app/actions/gradient-editor-actions.c:596 #, fuzzy msgid "_Replicate Segment..." msgstr "שכפול מקטע..." -#: app/actions/gradient-editor-actions.c:591 +#: app/actions/gradient-editor-actions.c:598 #, fuzzy msgid "Split Segment at _Midpoint" msgstr "פיצול המקטע בנקודת האמצע" -#: app/actions/gradient-editor-actions.c:593 +#: app/actions/gradient-editor-actions.c:600 #, fuzzy msgid "Split Segment _Uniformly..." msgstr "פיצול מקטע באופן אחיד..." -#: app/actions/gradient-editor-actions.c:595 +#: app/actions/gradient-editor-actions.c:602 #, fuzzy msgid "_Delete Segment" msgstr "מחיקת מקטע" -#: app/actions/gradient-editor-actions.c:597 +#: app/actions/gradient-editor-actions.c:604 #, fuzzy msgid "Re-_center Segment's Midpoint" msgstr "מרכוז נקודת האמצע של המקטע" -#: app/actions/gradient-editor-actions.c:599 +#: app/actions/gradient-editor-actions.c:606 #, fuzzy msgid "Re-distribute _Handles in Segment" msgstr "שכפול מקטע של מדרג הצבעים" -#: app/actions/gradient-editor-actions.c:604 +#: app/actions/gradient-editor-actions.c:611 msgid "_Blending Function for Selection" msgstr "" -#: app/actions/gradient-editor-actions.c:606 +#: app/actions/gradient-editor-actions.c:613 #, fuzzy msgid "Coloring _Type for Selection" msgstr "מיסגור אזור נבחר" -#: app/actions/gradient-editor-actions.c:609 +#: app/actions/gradient-editor-actions.c:616 #, fuzzy msgid "_Flip Selection" msgstr "היפוך אזור נבחר" -#: app/actions/gradient-editor-actions.c:611 +#: app/actions/gradient-editor-actions.c:618 #, fuzzy msgid "_Replicate Selection..." msgstr "שיכפול אזור נבחר" -#: app/actions/gradient-editor-actions.c:613 +#: app/actions/gradient-editor-actions.c:620 #, fuzzy msgid "Split Segments at _Midpoints" msgstr "פיצול המקטע בנקודת האמצע" -#: app/actions/gradient-editor-actions.c:615 +#: app/actions/gradient-editor-actions.c:622 #, fuzzy msgid "Split Segments _Uniformly..." msgstr "פיצול מקטעים באופן אחיד..." -#: app/actions/gradient-editor-actions.c:617 +#: app/actions/gradient-editor-actions.c:624 #, fuzzy msgid "_Delete Selection" msgstr "מחיקת אזור נבחר" -#: app/actions/gradient-editor-actions.c:619 +#: app/actions/gradient-editor-actions.c:626 msgid "Re-_center Midpoints in Selection" msgstr "" -#: app/actions/gradient-editor-actions.c:621 +#: app/actions/gradient-editor-actions.c:628 msgid "Re-distribute _Handles in Selection" msgstr "" -#: app/actions/gradient-editor-commands.c:84 +#: app/actions/gradient-editor-commands.c:85 msgid "Left Endpoint Color" msgstr "" -#: app/actions/gradient-editor-commands.c:86 +#: app/actions/gradient-editor-commands.c:87 msgid "Gradient Segment's Left Endpoint Color" msgstr "" -#: app/actions/gradient-editor-commands.c:186 +#: app/actions/gradient-editor-commands.c:189 msgid "Right Endpoint Color" msgstr "" -#: app/actions/gradient-editor-commands.c:188 +#: app/actions/gradient-editor-commands.c:191 msgid "Gradient Segment's Right Endpoint Color" msgstr "" -#: app/actions/gradient-editor-commands.c:353 +#: app/actions/gradient-editor-commands.c:358 msgid "Replicate Segment" msgstr "שכפול מקטע" -#: app/actions/gradient-editor-commands.c:354 +#: app/actions/gradient-editor-commands.c:359 msgid "Replicate Gradient Segment" msgstr "שכפול מקטע של מדרג הצבעים" -#: app/actions/gradient-editor-commands.c:358 +#: app/actions/gradient-editor-commands.c:363 msgid "Replicate Selection" msgstr "שכפול אזור נבחר" -#: app/actions/gradient-editor-commands.c:359 +#: app/actions/gradient-editor-commands.c:364 msgid "Replicate Gradient Selection" msgstr "" -#: app/actions/gradient-editor-commands.c:371 +#: app/actions/gradient-editor-commands.c:376 msgid "Replicate" msgstr "שכפול" -#: app/actions/gradient-editor-commands.c:386 +#: app/actions/gradient-editor-commands.c:391 msgid "" "Select the number of times\n" "to replicate the selected segment." msgstr "" -#: app/actions/gradient-editor-commands.c:389 +#: app/actions/gradient-editor-commands.c:394 msgid "" "Select the number of times\n" "to replicate the selection." msgstr "" -#: app/actions/gradient-editor-commands.c:444 +#: app/actions/gradient-editor-commands.c:452 msgid "Split Segment Uniformly" msgstr "פיצול המקטע באופן אחיד" -#: app/actions/gradient-editor-commands.c:445 +#: app/actions/gradient-editor-commands.c:453 msgid "Split Gradient Segment Uniformly" msgstr "" -#: app/actions/gradient-editor-commands.c:449 +#: app/actions/gradient-editor-commands.c:457 msgid "Split Segments Uniformly" msgstr "פיצול מקטעים באופן אחיד" -#: app/actions/gradient-editor-commands.c:450 +#: app/actions/gradient-editor-commands.c:458 msgid "Split Gradient Segments Uniformly" msgstr "" -#: app/actions/gradient-editor-commands.c:462 +#: app/actions/gradient-editor-commands.c:470 msgid "Split" msgstr "פיצול" -#: app/actions/gradient-editor-commands.c:478 +#: app/actions/gradient-editor-commands.c:486 msgid "" "Select the number of uniform parts\n" "in which to split the selected segment." msgstr "" -#: app/actions/gradient-editor-commands.c:481 +#: app/actions/gradient-editor-commands.c:489 msgid "" "Select the number of uniform parts\n" "in which to split the segments in the selection." @@ -2403,7 +2403,7 @@ #: app/actions/layers-commands.c:232 app/actions/layers-commands.c:234 #: app/actions/layers-commands.c:291 app/actions/layers-commands.c:295 -#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:840 +#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:842 msgid "New Layer" msgstr "שכבה חדשה" @@ -2415,7 +2415,7 @@ msgid "Set Layer Boundary Size" msgstr "" -#: app/actions/layers-commands.c:512 app/core/gimplayer.c:255 +#: app/actions/layers-commands.c:512 app/core/gimplayer.c:253 msgid "Scale Layer" msgstr "שינוי קנה-מידת שכבה" @@ -2428,7 +2428,7 @@ msgid "Layer Mask to Selection" msgstr "מסיכה לאזור נבחר" -#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1085 +#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1066 #: app/dialogs/layer-add-mask-dialog.c:62 msgid "Add Layer Mask" msgstr "" @@ -3066,7 +3066,7 @@ msgstr "פתיחת קובץ טקסט (יוניקוד)" #: app/actions/text-editor-commands.c:132 app/config/gimpconfig-utils.c:552 -#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:393 +#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:396 #: app/core/gimpbrushgenerated.c:601 app/core/gimpbrushpipe.c:338 #: app/core/gimpgradient-load.c:63 app/core/gimppalette.c:360 #: app/core/gimppattern.c:328 app/tools/gimpimagemaptool.c:608 @@ -4965,7 +4965,7 @@ msgid "FG to Transparent" msgstr "הפיכת צבע רקע לשקוף" -#: app/core/gimp-gui.c:148 +#: app/core/gimp-gui.c:153 msgid "GIMP" msgstr "GIMP" @@ -4997,39 +4997,54 @@ msgid "Modules" msgstr "רכיבים" -#: app/core/gimpbrush.c:531 +#: app/core/gimpbrush.c:534 #, c-format msgid "Could not read %d bytes from '%s': %s" msgstr "" -#: app/core/gimpbrush.c:566 +#: app/core/gimpbrush.c:554 +#, c-format +msgid "Fatal parse error in brush file '%s': Width = 0." +msgstr "" + +#: app/core/gimpbrush.c:563 +#, c-format +msgid "Fatal parse error in brush file '%s': Height = 0." +msgstr "" + +#: app/core/gimpbrush.c:572 +#, c-format +msgid "Fatal parse error in brush file '%s': Bytes = 0." +msgstr "" + +#: app/core/gimpbrush.c:596 #, c-format msgid "Fatal parse error in brush file '%s': Unknown depth %d." msgstr "" -#: app/core/gimpbrush.c:579 +#: app/core/gimpbrush.c:609 #, c-format msgid "Fatal parse error in brush file '%s': Unknown version %d." msgstr "" -#: app/core/gimpbrush.c:595 app/core/gimpbrush.c:715 +#: app/core/gimpbrush.c:625 app/core/gimpbrush.c:745 #, c-format msgid "Fatal parse error in brush file '%s': File appears truncated." msgstr "" -#: app/core/gimpbrush.c:603 app/core/gimpbrushgenerated.c:648 +#: app/core/gimpbrush.c:633 app/core/gimpbrushgenerated.c:648 #: app/core/gimpbrushpipe.c:354 #, c-format msgid "Invalid UTF-8 string in brush file '%s'." msgstr "" -#: app/core/gimpbrush.c:610 app/core/gimpcontext.c:1299 -#: app/core/gimpitem.c:479 app/core/gimppattern.c:400 +#: app/core/gimpbrush.c:640 app/core/gimpcontext.c:1299 +#: app/core/gimpitem.c:480 app/core/gimppattern.c:400 #: app/dialogs/template-options-dialog.c:80 app/tools/gimpvectortool.c:339 msgid "Unnamed" msgstr "חסר שם" -#: app/core/gimpbrush.c:704 +#: app/core/gimpbrush.c:734 #, c-format msgid "" "Fatal parse error in brush file '%s': Unsupported brush depth %d\n" @@ -5191,11 +5206,11 @@ msgstr "" #: app/core/gimpdatafactory.c:411 app/core/gimpdatafactory.c:414 -#: app/core/gimpitem.c:274 app/core/gimpitem.c:277 +#: app/core/gimpitem.c:275 app/core/gimpitem.c:278 msgid "copy" msgstr "העתקה" -#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:286 +#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:287 #, c-format msgid "%s copy" msgstr "העתקה %s" @@ -5255,7 +5270,7 @@ msgid "Rotate" msgstr "סיבוב" -#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:259 +#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:257 msgid "Transform Layer" msgstr "הסבת שכבה" @@ -5624,7 +5639,7 @@ #. pixel size #: app/core/gimpimagefile.c:624 app/dialogs/info-window.c:552 -#: app/widgets/gimpsizebox.c:552 app/widgets/gimptemplateeditor.c:637 +#: app/widgets/gimpsizebox.c:429 app/widgets/gimptemplateeditor.c:637 #: app/widgets/gimptemplateeditor.c:673 #, c-format msgid "%d x %d pixels" @@ -5644,15 +5659,15 @@ msgid "Could not open thumbnail '%s': %s" msgstr "" -#: app/core/gimpitem.c:1096 +#: app/core/gimpitem.c:1103 msgid "Attach Parasite" msgstr "הוספת טפיל" -#: app/core/gimpitem.c:1106 +#: app/core/gimpitem.c:1113 msgid "Attach Parasite to Item" msgstr "חיבור טפיל לפריט" -#: app/core/gimpitem.c:1145 app/core/gimpitem.c:1152 +#: app/core/gimpitem.c:1152 app/core/gimpitem.c:1159 msgid "Remove Parasite from Item" msgstr "הסרת טפיל מהפריט" @@ -5679,76 +5694,76 @@ msgid "Floating Selection to Layer" msgstr "" -#: app/core/gimplayer.c:252 app/pdb/internal_procs.c:152 +#: app/core/gimplayer.c:250 app/pdb/internal_procs.c:152 msgid "Layer" msgstr "שכבה" -#: app/core/gimplayer.c:253 +#: app/core/gimplayer.c:251 msgid "Rename Layer" msgstr "שינוי שם שכבה" -#: app/core/gimplayer.c:254 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 +#: app/core/gimplayer.c:252 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 msgid "Move Layer" msgstr "הזזת שכבה" -#: app/core/gimplayer.c:256 +#: app/core/gimplayer.c:254 msgid "Resize Layer" msgstr "שינוי גודל שכבה" -#: app/core/gimplayer.c:257 +#: app/core/gimplayer.c:255 msgid "Flip Layer" msgstr "היפוך שכבה" -#: app/core/gimplayer.c:258 +#: app/core/gimplayer.c:256 msgid "Rotate Layer" msgstr "סיבוב שכבה" -#: app/core/gimplayer.c:341 app/core/gimplayer.c:1129 +#: app/core/gimplayer.c:339 app/core/gimplayer.c:1110 #: app/core/gimplayermask.c:236 #, c-format msgid "%s mask" msgstr "%s מסכה" -#: app/core/gimplayer.c:387 +#: app/core/gimplayer.c:385 #, fuzzy, c-format msgid "" "Floating Selection\n" "(%s)" msgstr "בחירות צפות" -#: app/core/gimplayer.c:1055 +#: app/core/gimplayer.c:1036 msgid "Cannot add layer mask to layer which is not part of an image." msgstr "" -#: app/core/gimplayer.c:1062 +#: app/core/gimplayer.c:1043 msgid "Unable to add a layer mask since the layer already has one." msgstr "" -#: app/core/gimplayer.c:1069 +#: app/core/gimplayer.c:1050 msgid "Cannot add layer mask to a layer with no alpha channel." msgstr "" -#: app/core/gimplayer.c:1079 +#: app/core/gimplayer.c:1060 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "" -#: app/core/gimplayer.c:1183 +#: app/core/gimplayer.c:1164 msgid "Transfer Alpha to Mask" msgstr "" -#: app/core/gimplayer.c:1343 +#: app/core/gimplayer.c:1324 msgid "Apply Layer Mask" msgstr "החל מסיכת שכבה" -#: app/core/gimplayer.c:1344 +#: app/core/gimplayer.c:1325 msgid "Delete Layer Mask" msgstr "" -#: app/core/gimplayer.c:1445 +#: app/core/gimplayer.c:1426 msgid "Add Alpha Channel" msgstr "הוספת ערוץ אלפא" -#: app/core/gimplayer.c:1467 +#: app/core/gimplayer.c:1448 msgid "Layer to Image Size" msgstr "" @@ -7273,32 +7288,32 @@ msgstr "/תצוגה מוקדמת/ענק" #. the image size labels -#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:241 +#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:222 #: app/widgets/gimptemplateeditor.c:236 #, fuzzy msgid "_Width:" msgstr "רוחב:" -#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:248 +#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:225 #: app/widgets/gimptemplateeditor.c:243 #, fuzzy msgid "H_eight:" msgstr "גובה:" #. the resolution labels -#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:338 +#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:273 #: app/widgets/gimptemplateeditor.c:363 #, fuzzy msgid "_X resolution:" msgstr "הפרדה:" -#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:345 +#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:276 #: app/widgets/gimptemplateeditor.c:370 #, fuzzy msgid "_Y resolution:" msgstr "הפרדה:" -#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:357 +#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:269 #: app/widgets/gimptemplateeditor.c:383 #, c-format msgid "pixels/%a" @@ -7851,11 +7866,11 @@ msgid "%d minutes" msgstr "" -#: app/display/gimpdisplayshell-dnd.c:96 +#: app/display/gimpdisplayshell-dnd.c:98 msgid "Drop New Layer" msgstr "ביטול שכבה חדשה" -#: app/display/gimpdisplayshell-dnd.c:140 +#: app/display/gimpdisplayshell-dnd.c:142 msgid "Drop New Path" msgstr "ביטול נתיב חדש" @@ -9397,12 +9412,12 @@ msgstr "מברשת" #: app/tools/gimppaintoptions-gui.c:103 app/widgets/gimpbrushselect.c:201 -#: app/widgets/gimplayertreeview.c:330 +#: app/widgets/gimplayertreeview.c:332 msgid "Opacity:" msgstr "אטימות:" #: app/tools/gimppaintoptions-gui.c:108 app/tools/gimpselectionoptions.c:374 -#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:323 +#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:325 msgid "Mode:" msgstr "מצב:" @@ -10866,26 +10881,26 @@ msgid "Set Item Exclusive Linked" msgstr "" -#: app/widgets/gimplayertreeview.c:250 +#: app/widgets/gimplayertreeview.c:252 msgid "Reorder Layer" msgstr "סידור שכבה מחדש" -#: app/widgets/gimplayertreeview.c:311 +#: app/widgets/gimplayertreeview.c:313 #, fuzzy msgid "Keep transparency" msgstr "שמירת שקיפות" -#: app/widgets/gimplayertreeview.c:846 +#: app/widgets/gimplayertreeview.c:848 #, fuzzy msgid "Empty Layer" msgstr "ריקון שכבת טקסט" -#: app/widgets/gimpmessagebox.c:458 +#: app/widgets/gimpmessagebox.c:460 #, c-format msgid "Message repeated %d times." msgstr "" -#: app/widgets/gimpmessagebox.c:460 +#: app/widgets/gimpmessagebox.c:462 msgid "Message repeated once." msgstr "" @@ -10915,17 +10930,12 @@ msgid "Invalid UTF-8" msgstr "מחרוזת יוניקוד לא תקינה" -#: app/widgets/gimpsizebox.c:290 -#, fuzzy -msgid "Keep aspect ratio" -msgstr "יחס הצגה:" - -#: app/widgets/gimpsizebox.c:574 +#: app/widgets/gimpsizebox.c:451 #, c-format msgid "%d x %d dpi" msgstr "" -#: app/widgets/gimpsizebox.c:578 +#: app/widgets/gimpsizebox.c:455 #, fuzzy, c-format msgid "%d dpi" msgstr "נקודת לאינץ'" @@ -11392,6 +11402,10 @@ msgid "Image Editor" msgstr "רשימת תמונות" +#, fuzzy +#~ msgid "Keep aspect ratio" +#~ msgstr "יחס הצגה:" + #~ msgid "Y:" #~ msgstr "Y:" diff -uraN gimp-2.2.0/po/hr.gmo gimp-2.2.1/po/hr.gmo --- gimp-2.2.0/po/hr.gmo 2004-12-19 03:11:54.000000000 +0100 +++ gimp-2.2.1/po/hr.gmo 2004-12-28 16:58:42.000000000 +0100 @@ -200,7 +200,7 @@ did not save indexed colormaps correctly. Substituting grayscale map.YellowYellow:You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom factor: %d:1Zoom inZoom in & outZoom outZoom:[ Base Image ]_Antialiasing_Auto_B_Blending Function for Segment_Blending Function for Selection_Brightness:_Brush_C_Delete Segment_Delete Selection_Flip Segment_Flip Selection_G_Gradient_Horizontal:_Hue:_Icon:_Import_Lightness:_M_Manually_Name:_Pattern_Preview_R_Redo_Redo %s_Replicate Segment..._Replicate Selection..._Saturation:_Selection_Undo_Undo %s_Vertical:_X:_Y_Y:_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for token %sinvalid value '%s' for token %smillimetermillimetersn/apercentpicapicaspixelpixelspixels/%apixels/%spointpointstips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: gimp 0 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-19 03:11+0100 +POT-Creation-Date: 2004-12-28 16:58+0100 PO-Revision-Date: 2004-03-20 23:13+CET Last-Translator: auto Language-Team: Croatian diff -uraN gimp-2.2.0/po/hr.po gimp-2.2.1/po/hr.po --- gimp-2.2.0/po/hr.po 2004-12-19 03:11:30.000000000 +0100 +++ gimp-2.2.1/po/hr.po 2004-12-28 16:58:31.000000000 +0100 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: gimp 0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-19 03:11+0100\n" +"POT-Creation-Date: 2004-12-28 16:58+0100\n" "PO-Revision-Date: 2004-03-20 23:13+CET\n" "Last-Translator: auto\n" "Language-Team: Croatian \n" @@ -1156,11 +1156,11 @@ msgid "Remove dangling entries" msgstr "/Ukloni viseće stavke" -#: app/actions/documents-commands.c:252 app/actions/file-commands.c:163 +#: app/actions/documents-commands.c:251 app/actions/file-commands.c:163 #: app/dialogs/file-open-dialog.c:198 app/dialogs/file-open-dialog.c:249 #: app/dialogs/file-open-location-dialog.c:193 -#: app/display/gimpdisplayshell-dnd.c:332 app/widgets/gimplayertreeview.c:802 -#: app/widgets/gimptoolbox-dnd.c:123 +#: app/display/gimpdisplayshell-dnd.c:334 app/widgets/gimplayertreeview.c:804 +#: app/widgets/gimptoolbox-dnd.c:125 #, c-format msgid "" "Opening '%s' failed:\n" @@ -1744,115 +1744,115 @@ msgid "Zoom all" msgstr "Uvećaj sve" -#: app/actions/gradient-editor-actions.c:582 +#: app/actions/gradient-editor-actions.c:589 msgid "_Blending Function for Segment" msgstr "_Funkcija stapanja za segment" -#: app/actions/gradient-editor-actions.c:584 +#: app/actions/gradient-editor-actions.c:591 msgid "Coloring _Type for Segment" msgstr "Vrsta obojanosti za segment" -#: app/actions/gradient-editor-actions.c:587 +#: app/actions/gradient-editor-actions.c:594 msgid "_Flip Segment" msgstr "Okreni segment" -#: app/actions/gradient-editor-actions.c:589 +#: app/actions/gradient-editor-actions.c:596 msgid "_Replicate Segment..." msgstr "_Repliciraj segment..." -#: app/actions/gradient-editor-actions.c:591 +#: app/actions/gradient-editor-actions.c:598 msgid "Split Segment at _Midpoint" msgstr "Spoji segment u središnjici" -#: app/actions/gradient-editor-actions.c:593 +#: app/actions/gradient-editor-actions.c:600 msgid "Split Segment _Uniformly..." msgstr "Spoji segment jednoobrazno" -#: app/actions/gradient-editor-actions.c:595 +#: app/actions/gradient-editor-actions.c:602 msgid "_Delete Segment" msgstr "_Izbriši segment" -#: app/actions/gradient-editor-actions.c:597 +#: app/actions/gradient-editor-actions.c:604 msgid "Re-_center Segment's Midpoint" msgstr "Ponovo centriraj središnjicu segmenta" -#: app/actions/gradient-editor-actions.c:599 +#: app/actions/gradient-editor-actions.c:606 msgid "Re-distribute _Handles in Segment" msgstr "Ponovno raspodjeli rukovatelje u segmentu" -#: app/actions/gradient-editor-actions.c:604 +#: app/actions/gradient-editor-actions.c:611 msgid "_Blending Function for Selection" msgstr "_Funkcije stapanja za odabir" -#: app/actions/gradient-editor-actions.c:606 +#: app/actions/gradient-editor-actions.c:613 msgid "Coloring _Type for Selection" msgstr "Vrsta obojanosti za odabir" -#: app/actions/gradient-editor-actions.c:609 +#: app/actions/gradient-editor-actions.c:616 msgid "_Flip Selection" msgstr "_Okreni odabir" -#: app/actions/gradient-editor-actions.c:611 +#: app/actions/gradient-editor-actions.c:618 msgid "_Replicate Selection..." msgstr "_Repliciraj odabir..." -#: app/actions/gradient-editor-actions.c:613 +#: app/actions/gradient-editor-actions.c:620 msgid "Split Segments at _Midpoints" msgstr "Podijeli segmente na središnjim točkama" -#: app/actions/gradient-editor-actions.c:615 +#: app/actions/gradient-editor-actions.c:622 msgid "Split Segments _Uniformly..." msgstr "Podijeli segmente _ravnomjerno..." -#: app/actions/gradient-editor-actions.c:617 +#: app/actions/gradient-editor-actions.c:624 msgid "_Delete Selection" msgstr "_Izbriši označeno" -#: app/actions/gradient-editor-actions.c:619 +#: app/actions/gradient-editor-actions.c:626 msgid "Re-_center Midpoints in Selection" msgstr "Ponovo centriraj središnjicu u odabiru" -#: app/actions/gradient-editor-actions.c:621 +#: app/actions/gradient-editor-actions.c:628 msgid "Re-distribute _Handles in Selection" msgstr "Ponovo raspodjeli rukovatelje u odabiru" -#: app/actions/gradient-editor-commands.c:84 +#: app/actions/gradient-editor-commands.c:85 msgid "Left Endpoint Color" msgstr "Lijeva krajnja točka boje" -#: app/actions/gradient-editor-commands.c:86 +#: app/actions/gradient-editor-commands.c:87 msgid "Gradient Segment's Left Endpoint Color" msgstr "Lijeva krajnja točka boje" -#: app/actions/gradient-editor-commands.c:186 +#: app/actions/gradient-editor-commands.c:189 msgid "Right Endpoint Color" msgstr "Boja desne krajnje točke" -#: app/actions/gradient-editor-commands.c:188 +#: app/actions/gradient-editor-commands.c:191 msgid "Gradient Segment's Right Endpoint Color" msgstr "Boja desne krajnje točke" -#: app/actions/gradient-editor-commands.c:353 +#: app/actions/gradient-editor-commands.c:358 msgid "Replicate Segment" msgstr "Repliciraj segment " -#: app/actions/gradient-editor-commands.c:354 +#: app/actions/gradient-editor-commands.c:359 msgid "Replicate Gradient Segment" msgstr "Repliciraj segment gradijenta" -#: app/actions/gradient-editor-commands.c:358 +#: app/actions/gradient-editor-commands.c:363 msgid "Replicate Selection" msgstr "Repliciraj odabir" -#: app/actions/gradient-editor-commands.c:359 +#: app/actions/gradient-editor-commands.c:364 msgid "Replicate Gradient Selection" msgstr "Repliciraj odabir gradijenta" -#: app/actions/gradient-editor-commands.c:371 +#: app/actions/gradient-editor-commands.c:376 msgid "Replicate" msgstr "Replikacija" -#: app/actions/gradient-editor-commands.c:386 +#: app/actions/gradient-editor-commands.c:391 msgid "" "Select the number of times\n" "to replicate the selected segment." @@ -1860,7 +1860,7 @@ "Izaberite koliko puta želite \n" "replicirati označeni segment" -#: app/actions/gradient-editor-commands.c:389 +#: app/actions/gradient-editor-commands.c:394 msgid "" "Select the number of times\n" "to replicate the selection." @@ -1868,27 +1868,27 @@ "Izaberite koliko puta želite \n" "replicirati označeni segment" -#: app/actions/gradient-editor-commands.c:444 +#: app/actions/gradient-editor-commands.c:452 msgid "Split Segment Uniformly" msgstr "Spoji segment jednoobrazno" -#: app/actions/gradient-editor-commands.c:445 +#: app/actions/gradient-editor-commands.c:453 msgid "Split Gradient Segment Uniformly" msgstr "Spoji segment jednoobrazno" -#: app/actions/gradient-editor-commands.c:449 +#: app/actions/gradient-editor-commands.c:457 msgid "Split Segments Uniformly" msgstr "Spoji segmente jednoobrazno" -#: app/actions/gradient-editor-commands.c:450 +#: app/actions/gradient-editor-commands.c:458 msgid "Split Gradient Segments Uniformly" msgstr "Spoji segmente jednoobrazno" -#: app/actions/gradient-editor-commands.c:462 +#: app/actions/gradient-editor-commands.c:470 msgid "Split" msgstr "Podijeli" -#: app/actions/gradient-editor-commands.c:478 +#: app/actions/gradient-editor-commands.c:486 msgid "" "Select the number of uniform parts\n" "in which to split the selected segment." @@ -1896,7 +1896,7 @@ "zaberite koliko puta želite \n" "u koji želite razdvojiti segmente iz odabranog" -#: app/actions/gradient-editor-commands.c:481 +#: app/actions/gradient-editor-commands.c:489 msgid "" "Select the number of uniform parts\n" "in which to split the segments in the selection." @@ -2417,7 +2417,7 @@ #: app/actions/layers-commands.c:232 app/actions/layers-commands.c:234 #: app/actions/layers-commands.c:291 app/actions/layers-commands.c:295 -#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:840 +#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:842 msgid "New Layer" msgstr "Novi Sloj" @@ -2429,7 +2429,7 @@ msgid "Set Layer Boundary Size" msgstr "Odredi Veličinu Ruba Sloja" -#: app/actions/layers-commands.c:512 app/core/gimplayer.c:255 +#: app/actions/layers-commands.c:512 app/core/gimplayer.c:253 msgid "Scale Layer" msgstr "Srazmjer Sloja" @@ -2441,7 +2441,7 @@ msgid "Layer Mask to Selection" msgstr "Maska slojeva u odabir" -#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1085 +#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1066 #: app/dialogs/layer-add-mask-dialog.c:62 msgid "Add Layer Mask" msgstr "Dodaj Masku Sloja..." @@ -3077,7 +3077,7 @@ msgstr "Otvori tekstualnu datoteku (UTF-8)" #: app/actions/text-editor-commands.c:132 app/config/gimpconfig-utils.c:552 -#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:393 +#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:396 #: app/core/gimpbrushgenerated.c:601 app/core/gimpbrushpipe.c:338 #: app/core/gimpgradient-load.c:63 app/core/gimppalette.c:360 #: app/core/gimppattern.c:328 app/tools/gimpimagemaptool.c:608 @@ -5095,7 +5095,7 @@ msgid "FG to Transparent" msgstr "FG u Prozirno" -#: app/core/gimp-gui.c:148 +#: app/core/gimp-gui.c:153 msgid "GIMP" msgstr "GIMP" @@ -5127,41 +5127,56 @@ msgid "Modules" msgstr "Moduli" -#: app/core/gimpbrush.c:531 +#: app/core/gimpbrush.c:534 #, c-format msgid "Could not read %d bytes from '%s': %s" msgstr "Ne mogu pročitati %d bajtova iz '%s': %s" -#: app/core/gimpbrush.c:566 +#: app/core/gimpbrush.c:554 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Width = 0." +msgstr "Kobna greška u obradi datoteke kista '%s'. Nepoznata dubina %d." + +#: app/core/gimpbrush.c:563 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Height = 0." +msgstr "Kobna greška u obradi datoteke kista '%s'. Datoteka je neispravna." + +#: app/core/gimpbrush.c:572 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Bytes = 0." +msgstr "Kobna greška u obradi datoteke kista '%s'. Datoteka je neispravna." + +#: app/core/gimpbrush.c:596 #, c-format msgid "Fatal parse error in brush file '%s': Unknown depth %d." msgstr "Kobna greška u obradi datoteke kista '%s'. Nepoznata dubina %d." -#: app/core/gimpbrush.c:579 +#: app/core/gimpbrush.c:609 #, c-format msgid "Fatal parse error in brush file '%s': Unknown version %d." msgstr "Kobna greška u obradi datoteke kista '%s'. Nepoznata inačica %d." -#: app/core/gimpbrush.c:595 app/core/gimpbrush.c:715 +#: app/core/gimpbrush.c:625 app/core/gimpbrush.c:745 #, c-format msgid "Fatal parse error in brush file '%s': File appears truncated." msgstr "" "Kobna greška u obradi datoteke kista '%s'. Čini se da je datoteka prerano " "odsječena." -#: app/core/gimpbrush.c:603 app/core/gimpbrushgenerated.c:648 +#: app/core/gimpbrush.c:633 app/core/gimpbrushgenerated.c:648 #: app/core/gimpbrushpipe.c:354 #, c-format msgid "Invalid UTF-8 string in brush file '%s'." msgstr "Greška u GIMP uzorku \"%s\"" -#: app/core/gimpbrush.c:610 app/core/gimpcontext.c:1299 -#: app/core/gimpitem.c:479 app/core/gimppattern.c:400 +#: app/core/gimpbrush.c:640 app/core/gimpcontext.c:1299 +#: app/core/gimpitem.c:480 app/core/gimppattern.c:400 #: app/dialogs/template-options-dialog.c:80 app/tools/gimpvectortool.c:339 msgid "Unnamed" msgstr "Neimenovano" -#: app/core/gimpbrush.c:704 +#: app/core/gimpbrush.c:734 #, c-format msgid "" "Fatal parse error in brush file '%s': Unsupported brush depth %d\n" @@ -5328,11 +5343,11 @@ "%s" #: app/core/gimpdatafactory.c:411 app/core/gimpdatafactory.c:414 -#: app/core/gimpitem.c:274 app/core/gimpitem.c:277 +#: app/core/gimpitem.c:275 app/core/gimpitem.c:278 msgid "copy" msgstr "kopija" -#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:286 +#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:287 #, c-format msgid "%s copy" msgstr "%s kopiraj" @@ -5394,7 +5409,7 @@ msgid "Rotate" msgstr "Rotiraj" -#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:259 +#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:257 msgid "Transform Layer" msgstr "Transformiraj sloj" @@ -5766,7 +5781,7 @@ #. pixel size #: app/core/gimpimagefile.c:624 app/dialogs/info-window.c:552 -#: app/widgets/gimpsizebox.c:552 app/widgets/gimptemplateeditor.c:637 +#: app/widgets/gimpsizebox.c:429 app/widgets/gimptemplateeditor.c:637 #: app/widgets/gimptemplateeditor.c:673 #, c-format msgid "%d x %d pixels" @@ -5786,15 +5801,15 @@ msgid "Could not open thumbnail '%s': %s" msgstr "Ne mogu otvoriti umanjenu sličicu '%s': %s" -#: app/core/gimpitem.c:1096 +#: app/core/gimpitem.c:1103 msgid "Attach Parasite" msgstr "Umetno paraite" -#: app/core/gimpitem.c:1106 +#: app/core/gimpitem.c:1113 msgid "Attach Parasite to Item" msgstr "Umetno paraite u zapis" -#: app/core/gimpitem.c:1145 app/core/gimpitem.c:1152 +#: app/core/gimpitem.c:1152 app/core/gimpitem.c:1159 msgid "Remove Parasite from Item" msgstr "Ukloni parazita iz jedinke" @@ -5823,76 +5838,76 @@ msgid "Floating Selection to Layer" msgstr "Odabir Plutajućeg za sloj" -#: app/core/gimplayer.c:252 app/pdb/internal_procs.c:152 +#: app/core/gimplayer.c:250 app/pdb/internal_procs.c:152 msgid "Layer" msgstr "Sloj" -#: app/core/gimplayer.c:253 +#: app/core/gimplayer.c:251 msgid "Rename Layer" msgstr "Preimenuj sloj" -#: app/core/gimplayer.c:254 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 +#: app/core/gimplayer.c:252 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 msgid "Move Layer" msgstr "Pomakni Sloj" -#: app/core/gimplayer.c:256 +#: app/core/gimplayer.c:254 msgid "Resize Layer" msgstr "Promjeni veličinu sloja" -#: app/core/gimplayer.c:257 +#: app/core/gimplayer.c:255 msgid "Flip Layer" msgstr "Okreni Sloj" -#: app/core/gimplayer.c:258 +#: app/core/gimplayer.c:256 msgid "Rotate Layer" msgstr "Rotiraj sloj" -#: app/core/gimplayer.c:341 app/core/gimplayer.c:1129 +#: app/core/gimplayer.c:339 app/core/gimplayer.c:1110 #: app/core/gimplayermask.c:236 #, c-format msgid "%s mask" msgstr "%s maska" -#: app/core/gimplayer.c:387 +#: app/core/gimplayer.c:385 #, fuzzy, c-format msgid "" "Floating Selection\n" "(%s)" msgstr "Odabir Plutajućeg" -#: app/core/gimplayer.c:1055 +#: app/core/gimplayer.c:1036 msgid "Cannot add layer mask to layer which is not part of an image." msgstr "Ne mogu dodati masku sloja u sloj koji nije dio slike." -#: app/core/gimplayer.c:1062 +#: app/core/gimplayer.c:1043 msgid "Unable to add a layer mask since the layer already has one." msgstr "Ne mogu dodati masku jer sloj već ima jednu." -#: app/core/gimplayer.c:1069 +#: app/core/gimplayer.c:1050 msgid "Cannot add layer mask to a layer with no alpha channel." msgstr "Ne mogu dodati masku sloja u sloj bez alfa kanala." -#: app/core/gimplayer.c:1079 +#: app/core/gimplayer.c:1060 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "Nemogu dodati masku sloja različite veličine od specificiranog sloja." -#: app/core/gimplayer.c:1183 +#: app/core/gimplayer.c:1164 msgid "Transfer Alpha to Mask" msgstr "Prenesi prozirnost u masku" -#: app/core/gimplayer.c:1343 +#: app/core/gimplayer.c:1324 msgid "Apply Layer Mask" msgstr "Prihvati Masku Sloja" -#: app/core/gimplayer.c:1344 +#: app/core/gimplayer.c:1325 msgid "Delete Layer Mask" msgstr "Izbriši Masku Sloja" -#: app/core/gimplayer.c:1445 +#: app/core/gimplayer.c:1426 msgid "Add Alpha Channel" msgstr "Dodaj Alfa Kanal" -#: app/core/gimplayer.c:1467 +#: app/core/gimplayer.c:1448 msgid "Layer to Image Size" msgstr "Sloj u Veličinu Slike" @@ -7436,32 +7451,32 @@ msgstr "Veličina ispisa:" #. the image size labels -#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:241 +#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:222 #: app/widgets/gimptemplateeditor.c:236 #, fuzzy msgid "_Width:" msgstr "Širina:" -#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:248 +#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:225 #: app/widgets/gimptemplateeditor.c:243 #, fuzzy msgid "H_eight:" msgstr "Visina:" #. the resolution labels -#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:338 +#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:273 #: app/widgets/gimptemplateeditor.c:363 #, fuzzy msgid "_X resolution:" msgstr "Razlučivost:" -#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:345 +#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:276 #: app/widgets/gimptemplateeditor.c:370 #, fuzzy msgid "_Y resolution:" msgstr "Razlučivost:" -#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:357 +#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:269 #: app/widgets/gimptemplateeditor.c:383 #, c-format msgid "pixels/%a" @@ -8097,11 +8112,11 @@ msgid "%d minutes" msgstr "" -#: app/display/gimpdisplayshell-dnd.c:96 +#: app/display/gimpdisplayshell-dnd.c:98 msgid "Drop New Layer" msgstr "Izbaci Novi Sloj" -#: app/display/gimpdisplayshell-dnd.c:140 +#: app/display/gimpdisplayshell-dnd.c:142 msgid "Drop New Path" msgstr "Izbaci Novu putanju" @@ -9651,12 +9666,12 @@ msgstr "Slikarski Kist" #: app/tools/gimppaintoptions-gui.c:103 app/widgets/gimpbrushselect.c:201 -#: app/widgets/gimplayertreeview.c:330 +#: app/widgets/gimplayertreeview.c:332 msgid "Opacity:" msgstr "Neprozirnost:" #: app/tools/gimppaintoptions-gui.c:108 app/tools/gimpselectionoptions.c:374 -#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:323 +#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:325 msgid "Mode:" msgstr "Način:" @@ -11125,25 +11140,25 @@ msgid "Set Item Exclusive Linked" msgstr "Namjesti stavku isključivo povezanu" -#: app/widgets/gimplayertreeview.c:250 +#: app/widgets/gimplayertreeview.c:252 msgid "Reorder Layer" msgstr "Ponovno poredaj sloj" -#: app/widgets/gimplayertreeview.c:311 +#: app/widgets/gimplayertreeview.c:313 #, fuzzy msgid "Keep transparency" msgstr "Zadrži Prozirnost" -#: app/widgets/gimplayertreeview.c:846 +#: app/widgets/gimplayertreeview.c:848 msgid "Empty Layer" msgstr "Isprazni sloj" -#: app/widgets/gimpmessagebox.c:458 +#: app/widgets/gimpmessagebox.c:460 #, c-format msgid "Message repeated %d times." msgstr "Poruka ponovljena %d puta" -#: app/widgets/gimpmessagebox.c:460 +#: app/widgets/gimpmessagebox.c:462 msgid "Message repeated once." msgstr "Poruka opet ponovljena" @@ -11175,17 +11190,12 @@ msgid "Invalid UTF-8" msgstr "Neispravan UTF-8" -#: app/widgets/gimpsizebox.c:290 -#, fuzzy -msgid "Keep aspect ratio" -msgstr "Fiksirana Veličina / Omjer" - -#: app/widgets/gimpsizebox.c:574 +#: app/widgets/gimpsizebox.c:451 #, fuzzy, c-format msgid "%d x %d dpi" msgstr "%d x %d piksela" -#: app/widgets/gimpsizebox.c:578 +#: app/widgets/gimpsizebox.c:455 #, fuzzy, c-format msgid "%d dpi" msgstr "dpi" @@ -11664,6 +11674,10 @@ msgid "Image Editor" msgstr "Urednik palete boja" +#, fuzzy +#~ msgid "Keep aspect ratio" +#~ msgstr "Fiksirana Veličina / Omjer" + #~ msgid "Y:" #~ msgstr "Y:" diff -uraN gimp-2.2.0/po/hu.gmo gimp-2.2.1/po/hu.gmo --- gimp-2.2.0/po/hu.gmo 2004-12-19 03:11:54.000000000 +0100 +++ gimp-2.2.1/po/hu.gmo 2004-12-28 16:58:42.000000000 +0100 @@ -1,240 +1,235 @@ -S Js L&/kVG9 -GDANi<k@02q;PO129-9;V7  - - - " -1<?O -grz0*3; -R]dlt - -    K l.1!!Su - & < -HSh { -*+6V/CWv# - )1CLl 134HNah -/IP _ -lwAJH<[   ,8Naj  -&5$\ " $)/4 -DO^o7   ! )6; @mM  * 1C>7=@69dp3 =<Q#!  -7@Xn,0]w  !,BWlu ~   .5C5y78) ,Jw2 7OSA%& 421g#  &,5 -DOW ]k 0   & 3@[x+   - *$Jo /?"Tw  Ybs { """E^g -y -),!9#[#!%. -9 @L]q#-%;Qg  - - -+ 0 >K[k~  -- (? CMRXi|   ' 5BIO%U!{ & -@ R`o    4Qcr - --    - -@Slt    -:(?c8   --8> -T _ m y - -   > Deu * 9FKcv  , -:E -]h     -'2*Cnw!. #":]z& ,#,PW ft''+A]FwT -C Vw  -  $6H NZc lx($=6)<`?A79Wc9B/=rf>CVJg MYi {     *AVi} 'DKTs  -   -- 8B R`s -   ! = Q (j         - O $ +R Jm <&k.G9GAdNi<_k@2I;|PO 2Y9-9;.7j  + + +  + ' +?JRZv0  +*5<DL [ i u + +   KD.1!+M_fu| +   + +@ S]l +u*6.ex/Ncw# + $DX ` j w13  &9@ +!( 7 +DO`rAJ <3 p ~ &9BYk | +& $4Y` f p~"  +'6G[7o    m%   C7Z=@6dH3<)#f!  0F^v,5OW jx !/DM V dq  .55Q78),"Ok2 O+A{%&4 +1?#q   +'/ 5C Yf0  3P+Y   + $"GZi~ ",Oe t 1:K S`{ ""6? +Q\ +{),!#3#W!{%. $5I\o#-%)?Zo  + + +  #3CVet { +-  %*0AThy  !'%-!S u&  *8G Wd s   );J +c +n-y    + +DL_s   :?;8{   + +, 7 E Q +^ i u +   > =M_r  #;Ng{   + +5@ Xf |  + +*FO!a.#"5R&q ,#(/ >L_'y'5FOT  .O fp +    &2; DPf(o$=6<8?uA79/ci9B=Jf>C.Jrg %1A Sav{     .AUh{#,Kf}  +   +  *8K +\g   ) (B k q x      + O   + + + + + +  -6 -A - - -   --  8  D P  Y .e     -          4  A N _ s  u  !  c z%r!:QZl{&'   ) 8 FR Wagns 2AJ` w -    -3JHR -  -H!B>1  -" ' 3`?C:1~0   - -)@Pa ( - -H -A L -Yd kw     %CJ R`y 5Kg ky   K364kz"  $'B W e (+)*&!Qs/*'5]m} - $=P g  0 K  \ f v   !    ! ! !7!H!]!|!!-!""""# #&#,#<# L#X#3^##### # -# # $$2$Q$q$$$$ $$$ $$%%%4%@<%}%-%% %% % % %%& "&.& 3& ?&K&b&&&& & & && '''' @'L' -b'm'' '' '' -''( (($()(1(:(B(T(l( (((( -(#(( )%);)A)I)f)+))) ) ) -) ) ))*'*@*Y* n*{* ****"*+ ++ ?+M+S+X+^+$t+++++ ++ + + ,, #, 0,=, -U, `, -m,x, ,,, , ,,,,--8-T-f-m-v- ----- -- --- -.. 0. :.D.M. ^. k. u..... . -. .. / /'/ A/ M/ Y/,e//!////)0 90F0 ^0 l0x0}000 0 00B0A1V1t11 1111 11112222222 -22 223 !3.3@3`3"3!3!3334 /4 94 C4M4]4l4 t44V4+4 5(5@5"F5i5 5 555%5 -5 56 66/6 -?6J6 Y6g6 p6~6 6 6666 6 6 66&7,?7 l7y7~7 -7 -777778)84;8p88 -888 -8 888 8888 9!9 69!B9d9 s99 9999 999 :: :;(:?d:::::::;4;;;-< /=9=B= -R= ]=#g==-= === > >>+>4> -=> H>T>>?"? +?8?A?I?O?e? -}? -??? -? ? ???? @ @!@A@ E@S@g@ v@ @@@@ @@@ @@ -AA/A BAPA eAqA -AAAAAA A!AB!2B#TBxB B -B9BUB=6C<tC=CC"C?DXDjD {DDDD(D,DDD EE -/E:EPEeEJyE EEEE F F-FHF bF nF|FFFF;FG.G =G JGVGpG G GG G G GGG GHH;HMHaHtHHHHHHHH+IAIYIyII I I II I II#I J'J 9JEJZJqJ6JJJJJ K7KFKdKyKKKKK K KKK LL 6LBLWL]L -dL -oLzL LLL LL -LLL LL -MM:M WMcMuMMM MMMM N N45NjNNNNNNN. OE;OO O OO O OOO P P P -(P3P DP -PP[PjP yPPPPPN\Q -QQQQQ QQQR0R#JRnRR RRRRR# -S.SLS `SmSSSS$SST (T2TBT\TpT!TTTT -TTT UU;UVUmUUU UUUUVV6V OV]VpV VVVVVVVW - W+W;W"UWxWW WWWWWX=(X6fXSXJX<?>3trt`\GǞ0͞ 2 CQ6So4 #@dG-%uXUOJâˢ -Ԣ ߢ  ##G O]fl{̣ ޣ    *28 ;EXs  Ƥ֤ͤ  -% ( 4 >L`g -ny  ͥӥ  -$/A Q_n ~   ̦٦$ 5 AM\e   -ҧ 7HZ j    èب   2?B K U -_ -ju  ©ȩΩթܩ  2 :GNU]w -Ī Ӫ ߪ  -9 <FKQd ٫  - - *7 G U -c n |    Ȭ Ьڬ -   ,8A HVfm v    í ҭޭ  # /<Q dqw(Ȯ0B4\1/ï 9 ANTh#y ݰ"' -/:L]dm ѱ - - - -  &4:JPW -w -ֲ #),;? -EPW\5` ³dzγ ֳ!  <] -}   ɴӴٴ .78T0}ݶW[@fH[Sw>pvJ&@qC]kT>:=:HxH5 - @J -Q \f n | -&ͽ -  *+@l2Ҿ # ,4= -F Q _ k -y -   ȿ Կg s/6%\| + (D_y"$ (<Uk%  93RA *%Gm!39)m! - -+): -d -ozXA BM(     % 2>WqEI5SO  #$"< EQl$%,H -`k t=>7 @ J Vd$l 11"38>G ak(E!2 Bcj r -  ty  - %* O7TQC.Drp&((O4xK4*E.p&  -&?f"' ,((Hq=.'-!U w$## - . -8CT'i $' I5KHNEcJ5/*1Z)\/*CAnlA,_/FK1O0  $2AV_eu 8  %18 GTc -3 , @ J X d -p+{3">a##03Ne{  -x -/: KY-p#&,,I v $ -7%6>\#))'/;6k+01Jaz(22*;f |!  /6FX2h  -3F] dq >  $. E -OZp6I^ nz - 7,4!O:q (;M^n#)"HkzR% .8 -HSf   6R%f  YeC:  6CV t'~'9O Wd~M(:Og! 6D [ h(u!%&& 4Na(|'(>*R}&( -Nd s2 -3.JM6 )/6&Q3x -8/+[ b -ny&9*/(Fo#(X\5 *" 7!CeuEB8Vq  %<7E}_GJ-QxSPNocJhQ|iWY> \   -! -$ - -' - " 6  F R h {    "  ( F e   "    & "B  -e  p !z !    0DZj 4$Fkz-.Gv~X)Is| JXg|  5#2A -Q\w *0C cq(y=k q}" .BK^ p~/0&1Xgw - N&Z5. ,!8Z k y  -  -!+1'A i' O -[f w C%@ ;EA] -   ! & 8 I ![!B=">"" """ -" -" # )# 6##D#h#%##'# # #v# -t$ $ -$$ $$$$!$%2%H%a%u% z%% % -%%%%% % &&&& -'$*'O' S'a'u'''h'@(F\(((/(()))<)L)"T)w))),)1):*CX*;*<*(+>+P]+ +++9+(,C,*X,,, ,,,,,-5-O-k-- ------.'. -.9.O._.s.. .. ..../'/@/O/X/g/// ///i/ a1o11111111 11K2P2f22&222 2 2+2&(3O3j3#33$33 4%4.4-=4k444T4484-5E5Y5_5h5z5"5 5 5 -555%5*6)G6q666 666667/7I7e7#7$7778888#T8 x888 8 88 -888929#M9'q999399:#!:E: M:[:w:2:::::;;9;$S;&x;(;(;';<4<P<k<%~<"<0<<1="9=\=d=k=p=v=5==== >>,> 4> B>O> g>t>>!>>>>?.?E?_?{??(?? ?"@&+@&R@y@@@@ @@!@@A -A A#A5AQAkAA -A AA -A A A&A BB5BOBaB -rB$}B B B&BB B B+ -C6C3OCC$C"C+CD$ DED]DlDrDDDD DD[D_1E#EEE -EEEFF)F?F VF`FhFGG1GDG -XGcGtGG#GGG G,H7AH4yH.H,H -I %IFI fI -sI -~III II IjI1AJsJ?|JJ;JKK)K:K!WK&yKK -KKKKKKL L $L.L>L WLeL yLL LLLL" M0/M2`MMMMMM.M)NAN_N$N#NBN# O -/O:OKOQO aOO OO OOO"O OO P*PFPVP$fPPPPPPQQ0QBQ KQFUQNQQ Q R!R+8R)dRRBISS SQST UU #U0U*8UcU,vUUUUU -UU V V'V:VNVBWWWlW {WW W W W!WW -WXX -X -:XEX[X_XyX X X!XXX(XY/YHYfYYYYY YYYZ9Z YZzZZZZZ[&#[4J[[ [%[0[,[&\*?\$j\\\L\]K]N]k^^@^]^0_I_a_w___6_E_ ` `=`T` i`v`"`!`Z` 4aAa%Za#aaa'a(a(bAb$Wb#|bb$bEb0(cYcocc*cccc d d5dLd ld xd d d$ddde/eIeee'e1e!e$f-&fETf0fAf g""gEg ^g"g'ggg:h2=hphh hhh#hNi1Ri -ii%iiBi* jKj`j rj|jjjjjjkk",k Ok\k vk kkk kk k k ll #l1l!9l[lkl l4llll#m!@m bmmm!mmm -nL"n%onn*n$nno .oDOofoop'p6pTpdptp ppppppq0qEq_qyq'qqqqr.s@s FsRsdssss"ss s*t$+tPtkt|t ttt(t"u:uSueu!}uuu)u#v)vCvWv#qvv!v+v%w'w CwOw!`www9w$w x)1x)[x!xx#x!x( y'2y(Zy#yy(y$y z!!z%Cziz z zzz{{$0{4U{{0{{{ -|%!|G|(f|A|;|e }Rs}#}}$~ -~9~Q~o~~~1~#~ 0EXn0})8%I.o-.̀,!( Jk,Ձ-0<7c̓_1K݅.>҈PRZLK FLHKz -Ϗ  -#,K!j NА;V!s#ؑ%,5b#6ڒ.Ec'~"8ɓ*-J!g*$ٔ5&/Vl+$"֕*$+BZ1b ȖԖ"  $ -1< -D O[m9~ -P[u 0&ɘ -13-#a'(%֙),&S\r y! ɚٚ  /FaЛߛ3-6J 2œ. EQZj͝ ՝ *C1GuUCEWGU;?Π&2Db!٥e<Q` -:"8]<a:;٫I7_I_8TpFEM<а\"ֶej;:Z7cʼ -2=N`vӽ   -+6G - 4BZs  '5P an~ -"JB;B~Se[ n{ -$   $C.'r"G+$1Vr'# -/B KDX&      -)390m2XOHt 6VDf+g<{WyMwQYQM0Yd9k    2 <(, :Y\|mqj/   -) 4BUi x @ -  )5 JT e! )7 -R ] kx{"  %! G S]l  %  - .# R ^ -lw!! ->Rfw!%<Ney  ,<T*t,4. cq  %.=N^w z &  -   * 6@FMS [i    $  6B[ j v - $ *!1So ~(7 ) / =K R -^ iw    - #5: JWk}    &2 BL ft -,53b  ="` p~ ,S@RD( -/:JSs<'+"2K8f    ! -?J Q^w    " +&7^m  -! !/@OS\_n r~ U+DMV_!n..-- J Vbg -kv{   -X7'%_"n c~s h]/ IccL ^Q [cP& ,2 kQdmm|M}R>^h\ f7 p$bb*sHJ}9J 2 d=#w{Zd0* )5r[O~$ T%;qw@PvI9qT: u# 624/ WiOa:h!)5Q>Z *N5TNK~8 R Ezp(aNV1 z|7IsMv% K:^{2hbs-+Y{}\%+3-8UR$T-u n#O O1LB }D8" I?zl4vNo> F;LCL eut E*QYr!qC# nC_O-8  d \ [AA\CR L_]?KyqEJ1"P1o*w052Dzu  -$L ;mDL'! |\ a -xO(]Ws4`(}9!""pW&nf:0K>!=YNe/v4iz6 nVT@[)U}PMXKfmmtN :!e`.U C -y@ZkJ#w#_9jfL{v\TJq e6=i/<,@B.  N ?^b#FY~9u;bb e P%@ XI -?;D [Axm .+ @  r+QtuP^YAg:i9 > 8l 2D/KIn >IB' <rE{ ( j9UY foBW  -x|@IZ}!ZB(?t" XdE`< i5[=:5d uB%~HH{ Dy_omF 7,.= 6@ HvZCB|)"q&H,3z7tG.Mw-Vsz%- < aKst~4{1/l_xx?FflN -yF!c-tM H , -G#8O&OvJ+scr[F]1o eg*aQ#4k )/VMkgM+~S6|vHI B & Shtn0.eT%50!"<' ( -gpFy:K j=4 ji[%&;+o hC?V -STNK)vV5AFJxXjx .}6qWO214<u 37> 2j7,$7|UM4A,U:Z8)x lNQGC Bp7R30oc;" {Xgwga^]30t7z9 j~:-s\ JGrSM.Z.Ga  o|? ( k_;)<fk83 1lPR@wi`HY+E8'E&HCA0 Up{Y2>A'y| yR5 Ph 9w`k3<5'`W!6 9M ]S]kS = P WV -L\2.c=0[rg' lI%dredCjw*^Up]PXJ^S},i+W yGnT? 'hogQ)r`DF>$b\0u;l; 3 - 3aRa=$3y# _EFKAGRg@f<X(pq"SWZj4/ &*b+J7iG  )   bXf&UG$B] &6lH=(`p 8`%6 -, E6 DmA (/*_G^kQ,$E 1 YS RXD?1QSLx Vd'n_zq<Dehc>$*m/O~'V +     (  1 .= l    +           & 7 K b uq    c zx~r)2DS\l&'     * /9?FK ]jy +"8 O +Yd mw~   + "H* +s ~ +H!BY]1l  +  `xC1V0   + +(9Xk ( + +H + $ +1< CO^ mz    " *8Q  #? CQ c q ~K36 CR"h  $ / = ^(+)*!)K/]*' 5EU^ +p{ -Niz   " , < V j !       !#!B![!-j!""""" """# ##3$#X#i### # +# # ###$7$P$d$u$ $$$ $$$$$@%C%-J%x% %% % % %%% %% % &&(&G&f&z& & & && &&& '' +('3'H' ^'l' '' +''''''''(((2( H(V(k(( +(#(((())),)+I)u)}) ) ) +) ) ))))** 4*A* P*^*q**"**** ++++$+$:+_+q+++ ++ + +++ + +, +, &, +3,>, N,X,g, w, ,,,,,,,-,-3-<- O-[-n--- +- ----- - . +.. $. 1. ;.G.d.s.. . +. .. . .. / / /,+/X/!k////)/ / 0 $0 20>0C0R0Y0 j0 v00B0A01:1O1 a1k1r11 111111Z2i2{222 +22 222 223&3"E3!h3!3333 3 3 44#424 :4H4VP4+4 4(45" 5/5 E5 Q5]5w5%5 +5 55555 +66 6-6 66D6 X6 b6p6v66 6 6 66&6,7 27?7D7 +T7 +_7j7777774868H8 +N8Y8a8 +q8 |888 8888 88 8!9*9 99G9 ]9i9z99 999 999;9?*:j:y::::::4;;;-; <<= += #=#-=Q=-d= === ===== +> >>>>> >>???+? +C? +N?Y?o? +? ? ???? ? ?!?@ @@-@ <@ I@V@q@x@ @@@ @@ +@@@ AA +A7A +JAUAgAAAA A!AA!A#B>B TB +aB9lBUB=B<:C=wCC"C?CD0D ADMDQDVD([D,DDDDD +DEE+EJ?E EEEE E EEF (F 4FBFZFtFF;FFF G GG6G HG TGbG rG G GGG GGGHH'H:HKH^HoHHHHH+HII?IFI UI bI oI{I I II#I II I J J7J6OJJJJJ J7J K*K?KOKVKmKK K KKK KK KLL#L +*L +5L@L HLULjL yLL +LLL LL +LLM M)M;MVMrM MMMMMM4M0NMN`NyNNNN.NEOGO XO fOsO O OOO O O O +OO +P +P!P0P ?PLPiPqPPN"Q +qQ|QQQQ QQQQQ#R4RRR fRrRRRR#RRS &S3SFScSzS$SSS SST"T6T!NTpTTT +TTT TTUU3UGU_U uUUUUUUU V#V6V IVVVkV}VVVVV +VVW"W>WXW rW~WWWWW=W6,XScXJXYY.Y AYKY\YrYYYYY YYY +ZZ 1Z=ZVZhZ |ZZZZZZ['[ ;[G[\[q[[[[[)j\N\\K]=C^^*_0__3x`T`?a`Aa2aaWbd4 +e/?eoe *f6f>fDfKf\fmfffffffff g g!g;*gfg vggg gg ggg#g h)h >h Lh&Yhh +hhhhh"hi(i8iHiYixiiiiii ii j j)j.j>jSj+Yjjjj jj jj j +jjjjk k k8$kv]kkkk l l l,l 2l!Slullllllmm-m4m=mQmkm rm m m mmmm mmm mm n n#n@n!Onqnn(nn#n n ooo +o 'o 4o>oMoao|o +o o +o oooKo1p7Hp1p5pHpA1qsq;q!:r\r s?s &t3u}u*ZvBwwxxPyy yy)y5zNz1z00{0a{1{({C{1|S|,}23} f}A~A~* 6 Ѐ݁PKNG/2; U-_ +Ήԉى  5BT d r|  +<Ċ  &0BVfuÌ׌ ,@ +P[`i3;;,ΎFՏ & + 8FLT fݐ3#*Nfyȑבݑ  Ff + +    ʒ ג !! 7 C+OK{0ǓQJ$5PG2-zOjoceӘj9~p#ow<|?>t8t`" 0Ğʞў 6oPŸɟ4џ#*G%;XaUO`w +   Ģ΢ע#  #,2AHQdw   ϣ   9 Xy  Ȥ Фڤ   &- +4? GT\| ǥ ֥ + %4 DR f t Ȧئ  "+ E O +\gm|ӧ  0 Q [e mw } Ѩبި    +% +0;T] eo u ũ ѩީ  #=L +lw  ת    *ENVi  Ы֫ݫ +    +) 4 B O Y fs   + ͬ֬   ,3 < I Wd m { ŭͭ ܭ   *7=FWj|(Ȯޮ4"1W/ϯ߯ .#? c"ʰ +#*3I Zfmu +ű +б +۱  +=HY_ +hsy ɲֲ + "5&\ nx !  # +C NZaemrx~   .δ8S0r}W!@yfH!Sjw>6vuJ@7Cx]k>:Ż=H>H5м  + ", 4 BN^ +oz}& + Žҽ*۽+2H2P #  +   % 1 +? +J U bn  gѿ9/6"B `n+  +%?"Ux$1E%` 3AL % 3Qm!3)3!] + ++) +* +5@PaXxABVu(z b n    7REkIS i w#$ 2$K%p +&1 :HWl=>   *$2W f1t1  '1F(^E )0 8 +F Q[ ky:? P +^ i%v*OTMQCD8p}&(4>sK4* .6&e &,"L'o ,((7=V.'! =Kh$##  + '/W \fo$'IKEHNE)Jo5/1 )R\|/* A4lvA,%/RFK1G0_  %+; Yf8   )E +e3p     * +6+A3m"'#Gk#0+A Xb +qx| + -6#d&,, < ]g}$ +7%>"#a))'/61+h0'@(Y22*, B!c  / 2. am +~ # *7 MZ>c    + 6Om$ 4@ +]h p7~,!:7 r$4GWo#"1@SqR  +, E O \i%,R [g yYe :o    :'Dl *D]rM(-J`w!  + ! .(;!d%&&'(B'k(*C&_( * 9FU2i +3J6^ )/&3>r +8/! ( +4?&P9w*/( 5#U(yX\X_ hu*" ! +;EWB7Ra u %<7 C_KGJQ>SPN5chtQ|/WY \^  F +!V +$x + +' + +" + +  . A V v  "    + J ` "u     "  ++  6 !@ !b       + 0 HTj~$ 1@Ocw. <DJRjX)9B -BXk  5 +"=Pjo *  )7y}1 7C"$ 6D^~/0&-=Sf  & G_c5}. !  1 ? K +W b +lw~!' /'Px  +!, = JCV%@  A#e +   [!B">F"" """ +" +" " " "# +#.#%H#n#'# # #v# +:$ E$ +Q$\$ c$p$$$!$$$%'%;% @%N% c% +q%|%%%% %%&&&&$&' ''';'O'`'hx'@'F"(i(~(/(((())")=)X)p),)1):)C*;b*<*(*+P#+ t+++9++ ,*,I,], q,},,,,,,-4- <-J-b-t----- --- . .>. V.d. k.x.......//-/@/ W/x//i/ 1141E1T1l1s1x11 11K11222&E2l22 2 2+2&223#43X3$u33333-34,4=4TD4484445 55'5"65 Y5 c5 +q5|55%5*5)56<6\6 b6o66666667#.7$R7w77777#8 %81868 T8 a8o8 +~88888#8'9F9O93_999#99 9:$:2@:s:|::::::$;&%;(L;(u;';;;;<%+<"Q<0t<<1<"< ====#=5A=w=== === = == >!>=>!T>v>>>>>> ?(?>?(Q?z? ?"?&?&?&@C@R@[@ l@y@!@@@ @ @@@@A3A +EbEvE +EEEEEEE F FFFFFF +GG!G>G#OGsGG G,G7G4&H.[H,HH HH I + I ++I6IKI [IeI vIjI1I J?)JiJ;qJJJJJ!K&&KMK +SK^KfKyKKKK K KKK LL &L3L SLtLLL"L0L2 M@MTM]MuMM.M)MM N$,N#QNBuN#N +NNNN O/O DOQO YOgOoO"vO OO O*OOP$P8PNPgPPPPPPP PFQNIQQ QQQ+Q)R;RBR9S HSQUSTTT TT*TU,#UPU_UxUU +UU U UUUUVWW (W4W :W DW QW!rWW +WWW W +WWX X&X 7X AX!KXmX|X(XXXXY,Y4Y^]^^^_$_,_5_6;_Er____` `#`"A`!d`Z` ``%a#-aQama'a(aaa$b#)bMb$jbEb0bcc0c*Fcqccccccc d %d Fd Pd$qdddddde'2e1Ze!e$e-eEf0GfAxff"ff g",g'Ogwgg:g2gh5h NhZhqh#hNh1h +1iqfquqqYrrr rrs s3s"Lsos s*s$sst)t @tat|t(t"ttuu!*uLuhu)u#uuuv#vBv!`v+v%vv vv! w/wIw9^w$w w)w)x!2xTx#px!x(x'x(y#0yTy(ky$yy!y%yz 4z Uzvzzzz$z4{7{0N{{{{%{{(|A<|;~|e|R }#s}}$} }}}~/~M~1`~#~ ~~~~0*[)w8%.-K.y,!Հ 4Pi,-݁<cz_ބK>.0_O>@PZPLFdLHA' +6AGNf| Џُ!9 P\mN}̐! B#a%,#.Rl6ے'+"S8v*ړ!*6$a5&ܔ+2$^"*ѕؕ1AG[` u" і +ޖ + 9+e +" ;0E&v +13ژ#'2(Z%),ә  &0!J lv Ú͚ܚ,F`}3ڛ6. N2oƜۜ .7F[z  ĝםCޝG"UjCEGJU?{ӠߡΤe<;Z ǩ:ϩ8 +C<:K;I«7 ID_/8TȭFE<@}NJZZ ϵe1jCº;:̻7HWwǼ +߼ #9Ui  ƽ +ؽȿ  6Nk  +EXh +o"zJBB+nSNe (C_ +q|$  C'"GGj+$'?#g D&J q }    30KZ2iXOtE6cVfqgn{y$QNYQLYoU9 R ^ ky 2(,Y )mq/  +  %1 @N@_ +    !3Ug  + + %(7Gf"  %   +5 8 DP%b  +.   +$!?!a $@Pbu!&7K jv ,*!L,f4 .6EL_|  $ ' 4>M^&r  +     0 =I cqy $    # +1 <$Fk ! +5(U7~    +  $5H [g v  +  *9L^e n|     !8H +[finv,3CZ am=  +B ],~S@D@( + <>'{+8 L Yf  ! +  $ Bc   &  2@Tc +kv{!    +< DNUR !.=.l--   +#(-6 ? KW\ +alX{7% vk <}swq~b],  56DSMH & LQ: =c$>j~]C7X? ! BDPL39']Nu,$li =9|c*j\VkO*y+.k#!" h81 cdi}eWQbrG"Z7 ui#&Z5E_%;R4uq$f]9+#dDu 61y)(7 0Me |`hW@&} 01- )z +/KDKzBJ[,NkcjFf G oD wU:wAJ! E2sSs8K ?<l<sZA4p1 LM-Yrgf5puE |qy: d g&.@ DBMg"Eqv} eu  yP O e{  *g< "W+/( )D7/ nb!QV_X`+d #VU,?  /"[ bm1 V.JL =viT>3 v1@ = ^i$Ap~!Uan~  4[IH:JQ]4d '4@F_,0  P;* gh; ,X_m~L *) , ( ;S:E8fo'B0(8 }g -6 on4@cCTVA  n{ j9 A6:FQN7Azz4w sVg</R).Y y)+(Pc>*@* NC TG4XH0sGCGh% s`zz52K$3fENC?Iqu7>"+ 3L(0Gw=Y +/j!,q8}P f'r=/%Q+U {7?JOf<xEo-& +Mt3 Uu>a|bthw-LDlSBda$fj20^{2R?<q& _1n2Gd`{J|8..I$LMw\x6 '@6Zc=6jIKq4t>S 9P TR`5:.XK9%R35Hm. #70 m?5 yPb;xHl[Rjov\#"\Tk8^#|heE`>hvUt +aNQb~JP BnDY\2H ( r -8G' hHyVL^T-k] +Q _O!*z\gBlZa_lU5X7B<> =TySk -9C3mCa C Q'av. ==Kw@i'Z + +% d2 C6 nF@~N<[.Ot%M{3W;~$ UN *wxB 1$FQ4 pIKn1!CJ -J )%/h32cFo&T?pK]{9 ?r P(q%[{)"S+Z xIF  ;YK^`ittzR8]_ u>Uk @E+rO)xIbA,aXrOAYjGo#i +\;y8sZ(!\VWgA_5OI Wx  p[&, +lGM`Nt`H W# W7 D 6mm r|}I}vNLW b;c"r#PF&^-MR RM |spX}e;IdYR n&[/V: 0Yo93mlF|JZepH(>^x'F5peS~9a  +O {[)226/:! XA^':kBSlzY"0^ft TE% io]v e* +\O1m?x$<H% Invalid option "%s" Usage: %s [option ... ] [file ... ] @@ -278,7 +273,7 @@ Make sure a proper setup for your display environment exists.GIMP help browserGIMP is not properly installed for the current user. User installation was skipped because the '--no-interface' flag was used. To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Generate optimum paletteGet Monitor ResolutionGiganticGimprc proceduresGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient:GradientsGradients MenuGrain extractGrain mergeGrayGrayscaleGreenGreen:GridGrid line spacingGrow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_counter-clockwise hue)HSV (clockwise _hue)HTML notation:H_eight:H_elp browser to use:Handle position: %0.6fHard edgeHard lightHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHelp proceduresHex:HighlightsHint for the _docks:Hint for the _toolbox:HintingHinting alters the font outline to produce a crisp bitmap at small sizesHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB color layers.Hue-_Saturation...Hue:HugeI_con & TextI_mageI_mport Path...I_nterpolation:I_nterval:IconIcon & descIcon & textIf available, hints from the font are used but you may prefer to always use the automatic hinterIf enabled, the move tool changes the active layer or path when a layer or path is being picked. This used to be the default behaviour in older versions.If you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.Illegal variable name in environment file %s: %sImageImage + GridImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage ThumbnailsImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage maskImage resolution is out of bounds, using the default resolution instead.Image sizeImage sourceImage typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport paletteImport pathsImported PathIn_kIn_vertIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorIndexed Color ConversionIndexed color layers are always scaled without interpolation. The chosen interpolation type will affect channels and masks only.Info WindowInitial zoom _ratio:Initialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' -InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratioKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard EventsKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine +InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard EventsKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine spacing:Line Width:Line _Style:Line style used for the grid.LinearLinked itemLoadLoad CurvesLoad LevelsLoad Right Color Fr_omLoad curves settings from fileLoad levels settings from fileLoad text from fileLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower Path to _BottomLower channelLower channel to bottomLower layerLower layer to bottomLower pathLower path to bottomM_agnifyM_asterM_ove to Screen...Ma_pMagentaMagenta:MagnifyMake _transparentManage Loadable ModulesMarching _ants speed:Mask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:Max Depth:Maximum _filesize for thumbnailing:Maximum _new image size:Maximum color differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMeasure the rulers and enter their lengths:Median:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMerge vectorsMessage proceduresMessage repeated %d times.Message repeated once.Messages are redirected to stderr.MidtonesMigrate User SettingsMinimal number of _undo levels:MiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMouse WheelMouse Wheel EventsMoveMove AnchorsMove ChannelMove Floating SelectionMove GuideMove Guide: Move LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove ToolMove itemMove layers & selectionsMove selectionMove the current layerMove the current pathMove the selected filter downMove the selected filter upMove to Screen...Move: MultiplyN_umber of colors:Na_vigationNa_vigation WindowNa_vigation preview size:NameName:NavigationNew ChannelNew Channel ColorNew Channel OptionsNew Color from _BGNew Color from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channelNew channel with last valuesNew channel...New color from BGNew color from FGNew gradientNew importNew layerNew layer with last valuesNew layer...New paletteNew path with last valuesNew path...New patternNew vectorsNo brushes available for use with this tool.No filter selectedNo linear gradients found in '%s'No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of _processors to use:Number of grid linesNumber of layers:O_ther...OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset by x/_2, y/2Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the palette selection dialogOpen the pattern selection dialogOpen the selected entryOpening '%s' failed: %sOpening '%s' failed: %sOptions: @@ -330,7 +325,7 @@ did not save indexed colormaps correctly. Substituting grayscale map.YYellowYellow:You are trying to create an image with a size of %s.You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your GIMP installation is incomplete:Your input device settings will be reset to default values the next time you start GIMP.Your keyboard shortcuts will be reset to default values the next time you start GIMP.Your window setup will be reset to default values the next time you start GIMP.Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_All_Anchor Layer_Antialiasing_Arbitrary Rotation..._Artistic_Aspect_Auto_B_BG Color_Background color:_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Bucket Fill_Buffer_By Color_By Color Select_C_Cap style:_Channels_Clear Errors_Clear Undo History_Clone_Close_Close Tab_Clouds_Color Tools_Colors_Configure Color and Opacity..._Context_Context Help_Copy_Copy Named..._Create Image from Template..._Crop & Resize_Crop Image_Curved_Curves..._Dark Check Color_Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Desaturate_Detach Tab_Device Status_Dialogs_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Ellipse Select_Enable layer & channel previews_Enormous_Equalize_Eraser_FG Color_File_Fill with:_Fit Image in Window_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground color:_Free Select_G_Generic_Gigantic_Gradient_Gradients_Grayscale_Grayscale copy of layer_Grow..._Guides_Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Info Window_Intersect with Selection_Invert_Join style:_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Left Neighbor's Right Endpoint_Levels..._Light Check Color_Light Effects_Lightness:_Line Style_Linear_Linked_Load Left Color From_Lower Channel_Lower Layer_Lower Path_M_Manually_Map_Mask_Mask to Selection_Maximum number of colors:_Measure_Medium_Merge Palettes..._Merge imported paths_Migrate GIMP 2.0 user settings_Misc. Stuff_Miter limit:_Mode_Module Manager_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._Padding Color_Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preferences_Preview_Preview Size_Previous tip_Print Size..._Properties_Quick Mask Active_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Reassign shortcut_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Remove unused colors from final palette_Render_Replace_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Order & Visibility_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Right Endpoint_Right Neighbor's Left Endpoint_Rotate_Saturation:_Save_Save Left Color To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Scale imported paths to fit image_Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Show Image Selection_Show in Toolbox_Sinusoidal_Small_Smudge_Snap distance:_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tool_Tools_Transfer layer's alpha channel_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Visible_Web_Web browser to use:_White (full opacity)_White Balance_Width:_Wrap around_X resolution:_X:_Xtns_Y_Y resolution:_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for icon typeinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetermillimetersminuten/apercentpicapicaspixelpixelspixels/%apixels/%spointpointssecondtips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: gimp Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-19 03:11+0100 +POT-Creation-Date: 2004-12-28 16:58+0100 PO-Revision-Date: 2004-12-06 11:59+0100 Last-Translator: Arpad Biro Language-Team: Hungarian @@ -382,7 +377,7 @@ A felhasználói telepítés ki lett hagyva, mivel a "--no-interface" kapcsoló meg volt adva. Ha szeretne felhasználói telepítést végezni, indítsa el a programot a "--no-interface" kapcsoló nélkül.A GIMP egy bizonyos mennyiségű memóriát lefoglal a kép adatainak tárolására, ez az úgynevezett "Képgyorstár". Úgy kell beállítania ennek a méretét, hogy beleférjen fizikai memóriába. Gondoljon arra, hogy más folyamatoknak is szükségük lehet memóriára.A GIMP egy másik gtkrc fájlt használ, tehát beállíthatja, hogy másképp nézzen ki, mint a többi GTK alkalmazás.GIMP-verzió: A program figyelmeztetni fogja a felhasználót, ha olyan képet kísérel meg létrehozni, amely több memóriát igényel, mint amekkora érték itt meg van adva.GammaÁltalánosA GIMP számára kiosztott rendszerszínek minimális számát adja meg. Általában csak 8 bites megjelenítők esetében van rá szükség.Optimális paletta előállításaMonitor felbontásaGigásziGimprc eljárásokÜve_g-effektusokSzínátmenetSzínátmenet-szerkesztőSzínátmenet-szerkesztő menüSzínátmenetek mappáiSzínátmenet-szakasz bal végpontjának színeSzínátmenet-szakasz jobb végpontjának színeSzínátmenet felhasználói felületeSzínátmenet:SzínátmenetekSzínátmenetek menüSzemcsés kivonásSzemcsés összefésülésSzürkeSzürkeárnyalatosZöldZöld:RácsRácsvonalak távolságaCsatorna növeléseKijelölés növeléseKijelölés növelése ennyivel:SegédvonalSegédvonalhoz és rácshoz illesztésSegédvonal eljárásokHSVHSV (%0.3f, %0.3f, %0.3f)HSV (óramutató járásával _ellentétes színezet)HSV (óramutató járása _szerinti színezet)HTML-jelölés:Ma_gasság:Használandó súgóböngés_ző:Pozíció: %0.6fÉles szélűErős fényKeménységÉlesség:MagasságMagasság:SúgóSúgóböngészőSúgórendszerA Súgóböngésző nem indulSúgóböngésző nem találhatóSúgóeljárásokHexa:Fényes színekInformáció a _dokkolható ablakokhoz:Információ az _eszköztárhoz:Megjelenítési információk (hinting)Kis betűméretek esetében a megjelenítési információk (hinting) alapján módosulnak a betűk körvonalai az olvashatóság javításának érdekében_HisztogramHisztogramHisztogramskálaElőzményekVízszintesAz első rácsvonal vízszintes eltolása; lehet negatív szám is.Rácsvonalak vízszintes távolsága.A Fájl menüben megjelenő legutóbb megnyitott fájlok száma.ÁrnyalatÁrnyalat-telítettségAz árnyalat-telítettség csak RGB színű rétegeken működik.Árny_alat-telítettség...Árnyalat:ÓriásiIk_on és szöveg_KépÚtvonal im_portálása..._Interpoláció:In_tervallum:IkonIkon és leírásIkon és szövegFelhasználhatók a betűkészletben levő megjelenítési információk is (ha vannak olyanok), ha viszont úgy kívánja, beállíthatja, hogy mindig az automatikus értékek legyenek használvaHa be van kapcsolva, akkor az áthelyezési eszköz módosítja az aktív réteget illetve útvonalat egy réteg illetve útvonal kijelölésekor. A korábbi verziókban ez volt az alapértelmezett viselkedés.Ha nem menti a képet, akkor a legutóbbi %s során bekövetkezett módosulások elvesznek.Ha kilép a GIMP-ből, akkor ezek a változások el fognak veszni.Érvénytelen változónév a(z) "%s" környezeti fájlban: %sKépKép + rácsKépszerkesztőKépinformációKép menüKépméretKép állapotsorának formátumaKépsablonokBélyegképekKépcím és állapotsor formátumaKép címének formátumaKépet tartalmazó ablak megjelenéseKépet tartalmazó ablakA kép nem tartalmaz látható rétegetKépfájlKépmaszkA kép felbontása az engedélyezett tartományon kívül esik, ezért az alapértelmezett felbontás lesz használva.KépméretKépforrásKéptípusKépekKépek menüImportálási beállításokPaletta importálásaÚtvonalak importálásaÚtvonalak importálása SVG-bőlÚj paletta importálásaPaletta importálásaÚtvonalak importálásaImportált útvonal_Tus_InvertálásMaszk in_vertálásaÖsszeadódóBehúzás:Első sor behúzásaIndex:IndexeltIndexelt színÁtalakítás indexelt színekreAz indexelt színű rétegek mindig interpoláció nélkül kerülnek átméretezésre. A kiválasztott interpoláció-típus csak a csatornákra és a maszkokra fog vonatkozni.Információs ablakKez_deti nagyítási arány:Rétegmaszk-beállítások:Bővítmények inicializálásaBővítmény inicializálása: "%s" -TusInline pixbufBemeneti vezérlőkBemeneti eszközökBemeneti szintekRögzítés beszúrásaSaját színtérkép telepítése. A 8 bites (256 színű) megjelenítők esetében lehet rá szükség.Sikertelen telepítés. Lépjen kapcsolatba a rendszergazdával.Sikeres telepítés. A folytatáshoz kattintson a "Folytatás" gombra.Azonnali frissítés_Intelligens ollóIntenzitás: %0.3f Átlátszatlanság: %0.3fFelhasználói felületBelső GIMP-eljárásBelső eljárásokInterpoláció:MetszetMetszet a jelenlegi kijelölésselMetszéspontok (keresztek)Metszéspontok (pontok)Érvénytelen UTF-8Érvénytelen UTF-8 adat a(z) "%s" fájlban.Érvénytelen UTF-8 karakterlánc az XCF-fájlbanÉrvénytelen UTF-8 karakterlánc a(z) "%s" ecsetfájlban.Érvénytelen UTF-8 karakterlánc a(z) "%s" színátmenet-fájlban.Érvénytelen UTF-8 karakterlánc a(z) "%s" palettafájlbanÉrvénytelen UTF-8 karakterlánc a(z) "%s" palettafájlban.Érvénytelen karaktersorozat az URI-benÉrvénytelen gyorsbillentyű.Érvénytelen szélesség vagy magasság. Mindkettőnek pozitívnak kell lennie.InvertálásCsatorna megfordításaKijelölés megfordításaAz invertálás nem hajtható végre indexelt rétegeken.Kijelölés megfordításaEzt szeretné tenni?Úgy tűnik, már használta a GIMP 2.0-t.Elem tulajdonságaiElem láthatóságaIgazítás:Átlátszóság megőrzéseFelül tartásMéretarány megtartása %sMéretarány megtartásaMéretarány megtartása %sMagasság megtartása %sÁtlátszóság megőrzéseSzélesség megtartása %sLefeléLefelé (Alt)Lefelé (Control + Alt)Lefelé (Control)Lefelé (Shift + Alt)Lefelé (Shift + Control + Alt)Lefelé (Shift + Control)Lefelé (Shift)BalraBalra (Alt)Balra (Control + Alt)Balra (Control)Balra (Shift + Alt)Balra (Shift + Control + Alt)Balra (Shift + Control)Balra (Shift)JobbraJobbra (Alt)Jobbra (Control + Alt)Jobbra (Control)Jobbra (Shift + Alt)Jobbra (Shift + Control + Alt)Jobbra (Shift + Control)Jobbra (Shift)FelfeléFelfelé (Alt)Felfelé (Control + Alt)Felfelé (Control)Felfelé (Shift + Alt)Felfelé (Shift + Control + Alt)Felfelé (Shift + Control)Felfelé (Shift)A GIMP gyorsbillentyűi dinamikusan módosíthatók. A program ezeket a beállításokat eltárolja a menurc fájlban, így a következő futtatáskor is érvényben maradnak. A fájlt át lehet szerkeszteni, de egyszerűbb a GIMP felületéről átállítani a billentyűket. Az említett fájl törlése esetén az eredeti gyorsbillentyűk lépnek érvénybe.BillentyűzetBillentyűzeteseményekGyorsbillentyűkBalról jobbra_Bal végpont színe...FekvőNagyNagy (256x256)Nagyobb előnézetekUtolsó hiba:RétegA(z) "%s" rétegnek nincs alfa-csatornája. A réteg feljebb lett helyezve.Réteg tulajdonságaiRéteg-határv_onal mérete...Kitöltés típusaRétegmaszk kijelöléssé alakításaRéteg kijelöléseRéteg méreteRétegmó_dRéteg _neve:A réteget nem lehet még lejjebb helyezni.A réteget nem lehet feljebb helyezni.A réteg már legalul van.A réteg már legfelül van.Réteg kép-méretűvé alakításaRéteg legal_ulra helyezéseRéteg ké_p-méretűvé alakításaRéteg legfelülre hel_yezéseRéteg _alfa-csatornájaRétegekRétegek menüRétegek összefésülésének beállításaiBal végpont színeBalra igazítottHossz:A legutóbbi mentett munkafolyamat visszaállítása a program minden indításakor.SzintekAz indexelt rétegeknél nem lehet szinteket állítani.Világos négyzethálóCsak világosításVonalSorköz:Vonalszélesség:Vonals_tílus:A rácshoz használt vonalstílus.LineárisLáncolt elemBetöltésGörbe betöltéseSzintek betöltéseJobb oldali szín betöltése _innen:Görbebeállítások beolvasása fájlbólSzintbeállítások beolvasása fájlbólSzöveg betöltése fájlbólElőnézeti kép betöltése...Hely:LogaritmikusHosszú szakaszokAdatfájlok kereséseLejjebbCsatorna legalulra helyezéseCsatorna leg_alulra helyezéseRéteg lejjebb helyezéseRéteg legalulra helyezéseÚtvonal lejjebb helyezéseÚtvonal lesüllyesztése legalulraÚtvonal lesüll_yesztése legalulraCsatorna lesüllyesztéseCsatorna legalulra helyezéseRéteg lejjebb helyezéseRéteg legalulra helyezéseÚtvonal lejjebb helyezéseÚtvonal lesüllyesztése legalulra_Nagyítás_FőÁt_helyezés képernyőre...L_eképezésBíborvörösBíborvörös:NagyításÁ_tlátszóvá tételBetölthető modulok kezeléseMenetelő _hangyák sebessége:Maszk átlátszatlansága:A ki_jelölt területek maszkolásaA kijelöle_tlen területek maszkolásaMátrix:Max. mélység:Maximális _fájlméret bélyegkép-készítéshez:Ú_j kép maximális mérete:Maximális színkülönbségMa_ximális visszavonási memória:Átlag:MérőeszközTávolság- és szögmérőTávolság- és szögmérőMérje meg a vonalzókat és írja be a hosszukat:Medián:KözepesKözepes szakaszokÖssze_fésülés lefeléÖsszefésülés lefeléRétegek összefésülésePaletta összefésüléseLátható rétegek összefésüléseLátható útvonalak összefésülése_Látható rétegek összefésülése..._Látható rétegek összefésülése...Látható útvonalak összefé_süléseRétegek összefésülésePaletták összefésüléseVektorok összefésüléseÜzeneteljárásokAz üzenet %d esetben ismétlődött.Az üzenet egyszer ismétlődött.Az üzenetek a hibakimenetre (stderr) kerülnek.KözépszínekMeglevő felhasználói beállítások átvétele_Visszavonások minimális száma:EgyebekHegyesMódMód:Kijelölt szín módosításaA kijelölt tartomány színszintjeinek módosításaAz összes szín módosításaSorköz módosításaModulok mappáiModulkezelőModul útvonalaModulokEgérkurzorokEgérgörgőEgérgörgő-eseményekÁthelyezésRögzítések áthelyezéseCsatorna áthelyezéseLebegő kijelölés áthelyezéseSegédvonal áthelyezéseSegédvonal áthelyezése: Réteg áthelyezéseRétegmaszk áthelyezéseÚtvonal áthelyezéseKijelölés áthelyezéseSzövegréteg áthelyezéseÁthelyezési eszközElem áthelyezéseKijelölések és rétegek áthelyezéseKijelölés áthelyezéseA jelenlegi réteg áthelyezéseA jelenlegi útvonal áthelyezéseA kijelölt szűrő lejjebb helyezéseA kijelölt szűrő feljebb helyezéseÁthelyezés képernyőre...Áthelyezés: SzorzásSzínek s_záma:Navi_gációN_avigátorablak_Navigációs előnézet mérete:NévNév:NavigációÚj csatornaÚj csatornaszínÚj csatorna beállításaiÚj szín a _háttérbőlÚj szín az _előtérbőlÚj képÚj rétegÚj útvonalÚj útvonal beállításaiÚj sablonÚj ecsetÚj csatornaÚj csatorna a legutóbbi értékekkelÚj csatorna...Új szín a háttérbőlÚj szín az előtérbőlÚj színátmenetÚj importálásÚj rétegÚj réteg a legutóbbi értékekkelÚj réteg...Új palettaÚj útvonal a legutóbbi értékekkelÚj útvonal...Új mintaÚj vektorokNincs felhasználható ecset a művelethez.Nincs kijelölve szűrőNem található lineáris színátmenet ebben: "%s"Többé nem elérhetőNem található útvonal ebben: "%s"A tárolóban nincsenek útvonalakNincs felhasználható minta a művelethez.Nincs kijelölésNincs körberajzolható kijelölés.Nincsenek bélyegképekNem igazítottNincsNincs (leggyorsabb)NormálNormál (128x128)Normál pontozásNormál ablakNem szabályos fájlNincs elég látható réteg az összefésüléshez. Legalább két rétegre van szükség.Nincs elég látható útvonal az összefésüléshez. Legalább két útvonalra van szükség.Használandó pro_cesszorok száma:Rácsvonalak számaRétegek száma:_Egyéb...EltolásCsatorna eltolásaRajzfelület eltolásaRéteg eltolásaRétegmaszk eltolásaEltolás x/_2, y/2-velEltolás:LemezenTöbbprocesszoros rendszer esetén - ha a GIMP --enable-mp módon lett lefordítva - beállítja, hogy hány processzort használjon egyidejűleg a GIMP.Csak a memóriábanMegnyitás _rétegként...ÁtlátszatlanságÁtlátszatlanság:MegnyitásKép megnyitásaKép megnyitása rétegkéntHely megnyitásaSzöveges fájl megnyitása (UTF-8)_Hely megnyitása...Leg_utóbbi megnyitásaKépmegnyitási párbeszédablakEcsetválasztó párbeszédablak megnyitásaBetűkészlet-választási párbeszédablak megnyitásaSzínátmenetválasztó párbeszédablak megnyitásaPalettaválasztó párbeszédablak megnyitásaMintaválasztó párbeszédablak megnyitásaKijelölt elem megnyitása"%s" megnyitása sikertelen: +TusInline pixbufBemeneti vezérlőkBemeneti eszközökBemeneti szintekRögzítés beszúrásaSaját színtérkép telepítése. A 8 bites (256 színű) megjelenítők esetében lehet rá szükség.Sikertelen telepítés. Lépjen kapcsolatba a rendszergazdával.Sikeres telepítés. A folytatáshoz kattintson a "Folytatás" gombra.Azonnali frissítés_Intelligens ollóIntenzitás: %0.3f Átlátszatlanság: %0.3fFelhasználói felületBelső GIMP-eljárásBelső eljárásokInterpoláció:MetszetMetszet a jelenlegi kijelölésselMetszéspontok (keresztek)Metszéspontok (pontok)Érvénytelen UTF-8Érvénytelen UTF-8 adat a(z) "%s" fájlban.Érvénytelen UTF-8 karakterlánc az XCF-fájlbanÉrvénytelen UTF-8 karakterlánc a(z) "%s" ecsetfájlban.Érvénytelen UTF-8 karakterlánc a(z) "%s" színátmenet-fájlban.Érvénytelen UTF-8 karakterlánc a(z) "%s" palettafájlbanÉrvénytelen UTF-8 karakterlánc a(z) "%s" palettafájlban.Érvénytelen karaktersorozat az URI-benÉrvénytelen gyorsbillentyű.Érvénytelen szélesség vagy magasság. Mindkettőnek pozitívnak kell lennie.InvertálásCsatorna megfordításaKijelölés megfordításaAz invertálás nem hajtható végre indexelt rétegeken.Kijelölés megfordításaEzt szeretné tenni?Úgy tűnik, már használta a GIMP 2.0-t.Elem tulajdonságaiElem láthatóságaIgazítás:Átlátszóság megőrzéseFelül tartásMéretarány megtartása %sMéretarány megtartása %sMagasság megtartása %sÁtlátszóság megőrzéseSzélesség megtartása %sLefeléLefelé (Alt)Lefelé (Control + Alt)Lefelé (Control)Lefelé (Shift + Alt)Lefelé (Shift + Control + Alt)Lefelé (Shift + Control)Lefelé (Shift)BalraBalra (Alt)Balra (Control + Alt)Balra (Control)Balra (Shift + Alt)Balra (Shift + Control + Alt)Balra (Shift + Control)Balra (Shift)JobbraJobbra (Alt)Jobbra (Control + Alt)Jobbra (Control)Jobbra (Shift + Alt)Jobbra (Shift + Control + Alt)Jobbra (Shift + Control)Jobbra (Shift)FelfeléFelfelé (Alt)Felfelé (Control + Alt)Felfelé (Control)Felfelé (Shift + Alt)Felfelé (Shift + Control + Alt)Felfelé (Shift + Control)Felfelé (Shift)A GIMP gyorsbillentyűi dinamikusan módosíthatók. A program ezeket a beállításokat eltárolja a menurc fájlban, így a következő futtatáskor is érvényben maradnak. A fájlt át lehet szerkeszteni, de egyszerűbb a GIMP felületéről átállítani a billentyűket. Az említett fájl törlése esetén az eredeti gyorsbillentyűk lépnek érvénybe.BillentyűzetBillentyűzeteseményekGyorsbillentyűkBalról jobbra_Bal végpont színe...FekvőNagyNagy (256x256)Nagyobb előnézetekUtolsó hiba:RétegA(z) "%s" rétegnek nincs alfa-csatornája. A réteg feljebb lett helyezve.Réteg tulajdonságaiRéteg-határv_onal mérete...Kitöltés típusaRétegmaszk kijelöléssé alakításaRéteg kijelöléseRéteg méreteRétegmó_dRéteg _neve:A réteget nem lehet még lejjebb helyezni.A réteget nem lehet feljebb helyezni.A réteg már legalul van.A réteg már legfelül van.Réteg kép-méretűvé alakításaRéteg legal_ulra helyezéseRéteg ké_p-méretűvé alakításaRéteg legfelülre hel_yezéseRéteg _alfa-csatornájaRétegekRétegek menüRétegek összefésülésének beállításaiBal végpont színeBalra igazítottHossz:A legutóbbi mentett munkafolyamat visszaállítása a program minden indításakor.SzintekAz indexelt rétegeknél nem lehet szinteket állítani.Világos négyzethálóCsak világosításVonalSorköz:Vonalszélesség:Vonals_tílus:A rácshoz használt vonalstílus.LineárisLáncolt elemBetöltésGörbe betöltéseSzintek betöltéseJobb oldali szín betöltése _innen:Görbebeállítások beolvasása fájlbólSzintbeállítások beolvasása fájlbólSzöveg betöltése fájlbólElőnézeti kép betöltése...Hely:LogaritmikusHosszú szakaszokAdatfájlok kereséseLejjebbCsatorna legalulra helyezéseCsatorna leg_alulra helyezéseRéteg lejjebb helyezéseRéteg legalulra helyezéseÚtvonal lejjebb helyezéseÚtvonal lesüllyesztése legalulraÚtvonal lesüll_yesztése legalulraCsatorna lesüllyesztéseCsatorna legalulra helyezéseRéteg lejjebb helyezéseRéteg legalulra helyezéseÚtvonal lejjebb helyezéseÚtvonal lesüllyesztése legalulra_Nagyítás_FőÁt_helyezés képernyőre...L_eképezésBíborvörösBíborvörös:NagyításÁ_tlátszóvá tételBetölthető modulok kezeléseMenetelő _hangyák sebessége:Maszk átlátszatlansága:A ki_jelölt területek maszkolásaA kijelöle_tlen területek maszkolásaMátrix:Max. mélység:Maximális _fájlméret bélyegkép-készítéshez:Ú_j kép maximális mérete:Maximális színkülönbségMa_ximális visszavonási memória:Átlag:MérőeszközTávolság- és szögmérőTávolság- és szögmérőMérje meg a vonalzókat és írja be a hosszukat:Medián:KözepesKözepes szakaszokÖssze_fésülés lefeléÖsszefésülés lefeléRétegek összefésülésePaletta összefésüléseLátható rétegek összefésüléseLátható útvonalak összefésülése_Látható rétegek összefésülése..._Látható rétegek összefésülése...Látható útvonalak összefé_süléseRétegek összefésülésePaletták összefésüléseVektorok összefésüléseÜzeneteljárásokAz üzenet %d esetben ismétlődött.Az üzenet egyszer ismétlődött.Az üzenetek a hibakimenetre (stderr) kerülnek.KözépszínekMeglevő felhasználói beállítások átvétele_Visszavonások minimális száma:EgyebekHegyesMódMód:Kijelölt szín módosításaA kijelölt tartomány színszintjeinek módosításaAz összes szín módosításaSorköz módosításaModulok mappáiModulkezelőModul útvonalaModulokEgérkurzorokEgérgörgőEgérgörgő-eseményekÁthelyezésRögzítések áthelyezéseCsatorna áthelyezéseLebegő kijelölés áthelyezéseSegédvonal áthelyezéseSegédvonal áthelyezése: Réteg áthelyezéseRétegmaszk áthelyezéseÚtvonal áthelyezéseKijelölés áthelyezéseSzövegréteg áthelyezéseÁthelyezési eszközElem áthelyezéseKijelölések és rétegek áthelyezéseKijelölés áthelyezéseA jelenlegi réteg áthelyezéseA jelenlegi útvonal áthelyezéseA kijelölt szűrő lejjebb helyezéseA kijelölt szűrő feljebb helyezéseÁthelyezés képernyőre...Áthelyezés: SzorzásSzínek s_záma:Navi_gációN_avigátorablak_Navigációs előnézet mérete:NévNév:NavigációÚj csatornaÚj csatornaszínÚj csatorna beállításaiÚj szín a _háttérbőlÚj szín az _előtérbőlÚj képÚj rétegÚj útvonalÚj útvonal beállításaiÚj sablonÚj ecsetÚj csatornaÚj csatorna a legutóbbi értékekkelÚj csatorna...Új szín a háttérbőlÚj szín az előtérbőlÚj színátmenetÚj importálásÚj rétegÚj réteg a legutóbbi értékekkelÚj réteg...Új palettaÚj útvonal a legutóbbi értékekkelÚj útvonal...Új mintaÚj vektorokNincs felhasználható ecset a művelethez.Nincs kijelölve szűrőNem található lineáris színátmenet ebben: "%s"Többé nem elérhetőNem található útvonal ebben: "%s"A tárolóban nincsenek útvonalakNincs felhasználható minta a művelethez.Nincs kijelölésNincs körberajzolható kijelölés.Nincsenek bélyegképekNem igazítottNincsNincs (leggyorsabb)NormálNormál (128x128)Normál pontozásNormál ablakNem szabályos fájlNincs elég látható réteg az összefésüléshez. Legalább két rétegre van szükség.Nincs elég látható útvonal az összefésüléshez. Legalább két útvonalra van szükség.Használandó pro_cesszorok száma:Rácsvonalak számaRétegek száma:_Egyéb...EltolásCsatorna eltolásaRajzfelület eltolásaRéteg eltolásaRétegmaszk eltolásaEltolás x/_2, y/2-velEltolás:LemezenTöbbprocesszoros rendszer esetén - ha a GIMP --enable-mp módon lett lefordítva - beállítja, hogy hány processzort használjon egyidejűleg a GIMP.Csak a memóriábanMegnyitás _rétegként...ÁtlátszatlanságÁtlátszatlanság:MegnyitásKép megnyitásaKép megnyitása rétegkéntHely megnyitásaSzöveges fájl megnyitása (UTF-8)_Hely megnyitása...Leg_utóbbi megnyitásaKépmegnyitási párbeszédablakEcsetválasztó párbeszédablak megnyitásaBetűkészlet-választási párbeszédablak megnyitásaSzínátmenetválasztó párbeszédablak megnyitásaPalettaválasztó párbeszédablak megnyitásaMintaválasztó párbeszédablak megnyitásaKijelölt elem megnyitása"%s" megnyitása sikertelen: %s"%s" megnyitása sikertelen: %sKapcsolók: Kezdet, X:Kezdet, Y:Eredeti szélesség:Egyéb (%s) ...KörvonalKimeneti szintekRávetítésPDB hívási hiba; eljárás: "%s". diff -uraN gimp-2.2.0/po/hu.po gimp-2.2.1/po/hu.po --- gimp-2.2.0/po/hu.po 2004-12-19 03:11:29.000000000 +0100 +++ gimp-2.2.1/po/hu.po 2004-12-28 16:58:31.000000000 +0100 @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: gimp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-19 03:11+0100\n" +"POT-Creation-Date: 2004-12-28 16:58+0100\n" "PO-Revision-Date: 2004-12-06 11:59+0100\n" "Last-Translator: Arpad Biro \n" "Language-Team: Hungarian \n" @@ -1044,11 +1044,11 @@ msgid "Remove dangling entries" msgstr "Elavult bejegyzések eltávolítása" -#: app/actions/documents-commands.c:252 app/actions/file-commands.c:163 +#: app/actions/documents-commands.c:251 app/actions/file-commands.c:163 #: app/dialogs/file-open-dialog.c:198 app/dialogs/file-open-dialog.c:249 #: app/dialogs/file-open-location-dialog.c:193 -#: app/display/gimpdisplayshell-dnd.c:332 app/widgets/gimplayertreeview.c:802 -#: app/widgets/gimptoolbox-dnd.c:123 +#: app/display/gimpdisplayshell-dnd.c:334 app/widgets/gimplayertreeview.c:804 +#: app/widgets/gimptoolbox-dnd.c:125 #, c-format msgid "" "Opening '%s' failed:\n" @@ -1558,115 +1558,115 @@ msgid "Zoom all" msgstr "Teljes méret" -#: app/actions/gradient-editor-actions.c:582 +#: app/actions/gradient-editor-actions.c:589 msgid "_Blending Function for Segment" msgstr "Szakasz színátmenet-típ_usa" -#: app/actions/gradient-editor-actions.c:584 +#: app/actions/gradient-editor-actions.c:591 msgid "Coloring _Type for Segment" msgstr "Szakasz szí_nezési módja" -#: app/actions/gradient-editor-actions.c:587 +#: app/actions/gradient-editor-actions.c:594 msgid "_Flip Segment" msgstr "Szakasz tük_rözése" -#: app/actions/gradient-editor-actions.c:589 +#: app/actions/gradient-editor-actions.c:596 msgid "_Replicate Segment..." msgstr "Szakasz _másolása..." -#: app/actions/gradient-editor-actions.c:591 +#: app/actions/gradient-editor-actions.c:598 msgid "Split Segment at _Midpoint" msgstr "Szakasz ketté_vágása a középpontban" -#: app/actions/gradient-editor-actions.c:593 +#: app/actions/gradient-editor-actions.c:600 msgid "Split Segment _Uniformly..." msgstr "Szakasz egyenlő részekre _osztása..." -#: app/actions/gradient-editor-actions.c:595 +#: app/actions/gradient-editor-actions.c:602 msgid "_Delete Segment" msgstr "Szakasz _törlése" -#: app/actions/gradient-editor-actions.c:597 +#: app/actions/gradient-editor-actions.c:604 msgid "Re-_center Segment's Midpoint" msgstr "Szakasz _középpontjának visszaállítása" -#: app/actions/gradient-editor-actions.c:599 +#: app/actions/gradient-editor-actions.c:606 msgid "Re-distribute _Handles in Segment" msgstr "Szakaszon belüli _pontok elrendezése" -#: app/actions/gradient-editor-actions.c:604 +#: app/actions/gradient-editor-actions.c:611 msgid "_Blending Function for Selection" msgstr "Kijelölés színátmenet-típ_usa" -#: app/actions/gradient-editor-actions.c:606 +#: app/actions/gradient-editor-actions.c:613 msgid "Coloring _Type for Selection" msgstr "Kijelölés szí_nezési módja" -#: app/actions/gradient-editor-actions.c:609 +#: app/actions/gradient-editor-actions.c:616 msgid "_Flip Selection" msgstr "Kijelölés tük_rözése" -#: app/actions/gradient-editor-actions.c:611 +#: app/actions/gradient-editor-actions.c:618 msgid "_Replicate Selection..." msgstr "Kijelölés _másolása..." -#: app/actions/gradient-editor-actions.c:613 +#: app/actions/gradient-editor-actions.c:620 msgid "Split Segments at _Midpoints" msgstr "Szakaszok ketté_vágása a középpontokban" -#: app/actions/gradient-editor-actions.c:615 +#: app/actions/gradient-editor-actions.c:622 msgid "Split Segments _Uniformly..." msgstr "Szakaszok egyenlő részekre _osztása..." -#: app/actions/gradient-editor-actions.c:617 +#: app/actions/gradient-editor-actions.c:624 msgid "_Delete Selection" msgstr "Kijelölés _törlése" -#: app/actions/gradient-editor-actions.c:619 +#: app/actions/gradient-editor-actions.c:626 msgid "Re-_center Midpoints in Selection" msgstr "Kijelölés _középpontjainak visszaállítása" -#: app/actions/gradient-editor-actions.c:621 +#: app/actions/gradient-editor-actions.c:628 msgid "Re-distribute _Handles in Selection" msgstr "Kijelölésen belüli _pontok elrendezése" -#: app/actions/gradient-editor-commands.c:84 +#: app/actions/gradient-editor-commands.c:85 msgid "Left Endpoint Color" msgstr "Bal végpont színe" -#: app/actions/gradient-editor-commands.c:86 +#: app/actions/gradient-editor-commands.c:87 msgid "Gradient Segment's Left Endpoint Color" msgstr "Színátmenet-szakasz bal végpontjának színe" -#: app/actions/gradient-editor-commands.c:186 +#: app/actions/gradient-editor-commands.c:189 msgid "Right Endpoint Color" msgstr "Jobb végpont színe" -#: app/actions/gradient-editor-commands.c:188 +#: app/actions/gradient-editor-commands.c:191 msgid "Gradient Segment's Right Endpoint Color" msgstr "Színátmenet-szakasz jobb végpontjának színe" -#: app/actions/gradient-editor-commands.c:353 +#: app/actions/gradient-editor-commands.c:358 msgid "Replicate Segment" msgstr "Szakasz másolása" -#: app/actions/gradient-editor-commands.c:354 +#: app/actions/gradient-editor-commands.c:359 msgid "Replicate Gradient Segment" msgstr "Színátmenet-szakasz másolása" -#: app/actions/gradient-editor-commands.c:358 +#: app/actions/gradient-editor-commands.c:363 msgid "Replicate Selection" msgstr "Kijelölés másolása" -#: app/actions/gradient-editor-commands.c:359 +#: app/actions/gradient-editor-commands.c:364 msgid "Replicate Gradient Selection" msgstr "Színátmenet-kijelölés másolása" -#: app/actions/gradient-editor-commands.c:371 +#: app/actions/gradient-editor-commands.c:376 msgid "Replicate" msgstr "Másolás" -#: app/actions/gradient-editor-commands.c:386 +#: app/actions/gradient-editor-commands.c:391 msgid "" "Select the number of times\n" "to replicate the selected segment." @@ -1674,7 +1674,7 @@ "Adja meg, hogy hány példányt\n" "szeretne a kijelölt szakaszból." -#: app/actions/gradient-editor-commands.c:389 +#: app/actions/gradient-editor-commands.c:394 msgid "" "Select the number of times\n" "to replicate the selection." @@ -1682,27 +1682,27 @@ "Adja meg, hogy hány példányt\n" "szeretne a kijelölésből." -#: app/actions/gradient-editor-commands.c:444 +#: app/actions/gradient-editor-commands.c:452 msgid "Split Segment Uniformly" msgstr "Szakasz egyenlő részekre osztása" -#: app/actions/gradient-editor-commands.c:445 +#: app/actions/gradient-editor-commands.c:453 msgid "Split Gradient Segment Uniformly" msgstr "Színátmenet-szakasz egyenlő részekre osztása" -#: app/actions/gradient-editor-commands.c:449 +#: app/actions/gradient-editor-commands.c:457 msgid "Split Segments Uniformly" msgstr "Szakaszok egyenlő részekre osztása" -#: app/actions/gradient-editor-commands.c:450 +#: app/actions/gradient-editor-commands.c:458 msgid "Split Gradient Segments Uniformly" msgstr "Színátmenet-szakaszok egyenlő részekre osztása" -#: app/actions/gradient-editor-commands.c:462 +#: app/actions/gradient-editor-commands.c:470 msgid "Split" msgstr "Felosztás" -#: app/actions/gradient-editor-commands.c:478 +#: app/actions/gradient-editor-commands.c:486 msgid "" "Select the number of uniform parts\n" "in which to split the selected segment." @@ -1710,7 +1710,7 @@ "Adja meg, hogy hány azonos méretű részre\n" "legyen felosztva a kijelölt szakasz." -#: app/actions/gradient-editor-commands.c:481 +#: app/actions/gradient-editor-commands.c:489 msgid "" "Select the number of uniform parts\n" "in which to split the segments in the selection." @@ -2147,7 +2147,7 @@ #: app/actions/layers-commands.c:232 app/actions/layers-commands.c:234 #: app/actions/layers-commands.c:291 app/actions/layers-commands.c:295 -#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:840 +#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:842 msgid "New Layer" msgstr "Új réteg" @@ -2159,7 +2159,7 @@ msgid "Set Layer Boundary Size" msgstr "Réteg-határvonal méretének beállítása" -#: app/actions/layers-commands.c:512 app/core/gimplayer.c:255 +#: app/actions/layers-commands.c:512 app/core/gimplayer.c:253 msgid "Scale Layer" msgstr "Réteg átméretezése" @@ -2171,7 +2171,7 @@ msgid "Layer Mask to Selection" msgstr "Rétegmaszk kijelöléssé alakítása" -#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1085 +#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1066 #: app/dialogs/layer-add-mask-dialog.c:62 msgid "Add Layer Mask" msgstr "Rétegmaszk hozzáadása" @@ -2718,7 +2718,7 @@ msgstr "Szöveges fájl megnyitása (UTF-8)" #: app/actions/text-editor-commands.c:132 app/config/gimpconfig-utils.c:552 -#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:393 +#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:396 #: app/core/gimpbrushgenerated.c:601 app/core/gimpbrushpipe.c:338 #: app/core/gimpgradient-load.c:63 app/core/gimppalette.c:360 #: app/core/gimppattern.c:328 app/tools/gimpimagemaptool.c:608 @@ -4592,7 +4592,7 @@ msgid "FG to Transparent" msgstr "Előtérből átlátszóba" -#: app/core/gimp-gui.c:148 +#: app/core/gimp-gui.c:153 msgid "GIMP" msgstr "GIMP" @@ -4624,45 +4624,62 @@ msgid "Modules" msgstr "Modulok" -#: app/core/gimpbrush.c:531 +#: app/core/gimpbrush.c:534 #, c-format msgid "Could not read %d bytes from '%s': %s" msgstr "Nem lehet %d bájtot beolvasni a(z) \"%s\" fájlból: %s" -#: app/core/gimpbrush.c:566 +#: app/core/gimpbrush.c:554 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Width = 0." +msgstr "" +"Végzetes feldolgozási hiba a(z) \"%s\" ecsetfájlban: ismeretlen \"%d\" " +"mélység." + +#: app/core/gimpbrush.c:563 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Height = 0." +msgstr "Végzetes feldolgozási hiba a(z) \"%s\" ecsetfájlban: a fájl sérült." + +#: app/core/gimpbrush.c:572 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Bytes = 0." +msgstr "Végzetes feldolgozási hiba a(z) \"%s\" ecsetfájlban: a fájl sérült." + +#: app/core/gimpbrush.c:596 #, c-format msgid "Fatal parse error in brush file '%s': Unknown depth %d." msgstr "" "Végzetes feldolgozási hiba a(z) \"%s\" ecsetfájlban: ismeretlen \"%d\" " "mélység." -#: app/core/gimpbrush.c:579 +#: app/core/gimpbrush.c:609 #, c-format msgid "Fatal parse error in brush file '%s': Unknown version %d." msgstr "" "Végzetes feldolgozási hiba a(z) \"%s\" ecsetfájlban: ismeretlen \"%d\" " "verzió." -#: app/core/gimpbrush.c:595 app/core/gimpbrush.c:715 +#: app/core/gimpbrush.c:625 app/core/gimpbrush.c:745 #, c-format msgid "Fatal parse error in brush file '%s': File appears truncated." msgstr "" "Végzetes feldolgozási hiba a(z) \"%s\" ecsetfájlban: úgy tűnik, a fájl félbe " "van szakadva." -#: app/core/gimpbrush.c:603 app/core/gimpbrushgenerated.c:648 +#: app/core/gimpbrush.c:633 app/core/gimpbrushgenerated.c:648 #: app/core/gimpbrushpipe.c:354 #, c-format msgid "Invalid UTF-8 string in brush file '%s'." msgstr "Érvénytelen UTF-8 karakterlánc a(z) \"%s\" ecsetfájlban." -#: app/core/gimpbrush.c:610 app/core/gimpcontext.c:1299 -#: app/core/gimpitem.c:479 app/core/gimppattern.c:400 +#: app/core/gimpbrush.c:640 app/core/gimpcontext.c:1299 +#: app/core/gimpitem.c:480 app/core/gimppattern.c:400 #: app/dialogs/template-options-dialog.c:80 app/tools/gimpvectortool.c:339 msgid "Unnamed" msgstr "Névtelen" -#: app/core/gimpbrush.c:704 +#: app/core/gimpbrush.c:734 #, c-format msgid "" "Fatal parse error in brush file '%s': Unsupported brush depth %d\n" @@ -4833,11 +4850,11 @@ "%s" #: app/core/gimpdatafactory.c:411 app/core/gimpdatafactory.c:414 -#: app/core/gimpitem.c:274 app/core/gimpitem.c:277 +#: app/core/gimpitem.c:275 app/core/gimpitem.c:278 msgid "copy" msgstr "másolás" -#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:286 +#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:287 #, c-format msgid "%s copy" msgstr "%s másolata" @@ -4900,7 +4917,7 @@ msgid "Rotate" msgstr "Forgatás" -#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:259 +#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:257 msgid "Transform Layer" msgstr "Réteg átalakítása" @@ -5264,7 +5281,7 @@ #. pixel size #: app/core/gimpimagefile.c:624 app/dialogs/info-window.c:552 -#: app/widgets/gimpsizebox.c:552 app/widgets/gimptemplateeditor.c:637 +#: app/widgets/gimpsizebox.c:429 app/widgets/gimptemplateeditor.c:637 #: app/widgets/gimptemplateeditor.c:673 #, c-format msgid "%d x %d pixels" @@ -5284,15 +5301,15 @@ msgid "Could not open thumbnail '%s': %s" msgstr "Nem lehet megnyitni a(z) \"%s\" bélyegképet: %s" -#: app/core/gimpitem.c:1096 +#: app/core/gimpitem.c:1103 msgid "Attach Parasite" msgstr "Élősködő hozzáadása" -#: app/core/gimpitem.c:1106 +#: app/core/gimpitem.c:1113 msgid "Attach Parasite to Item" msgstr "Élősködő hozzáadása az elemhez" -#: app/core/gimpitem.c:1145 app/core/gimpitem.c:1152 +#: app/core/gimpitem.c:1152 app/core/gimpitem.c:1159 msgid "Remove Parasite from Item" msgstr "Élősködő eltávolítása az elemből" @@ -5320,37 +5337,37 @@ msgid "Floating Selection to Layer" msgstr "Lebegő kijelölést réteggé" -#: app/core/gimplayer.c:252 app/pdb/internal_procs.c:152 +#: app/core/gimplayer.c:250 app/pdb/internal_procs.c:152 msgid "Layer" msgstr "Réteg" -#: app/core/gimplayer.c:253 +#: app/core/gimplayer.c:251 msgid "Rename Layer" msgstr "Réteg átnevezése" -#: app/core/gimplayer.c:254 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 +#: app/core/gimplayer.c:252 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 msgid "Move Layer" msgstr "Réteg áthelyezése" -#: app/core/gimplayer.c:256 +#: app/core/gimplayer.c:254 msgid "Resize Layer" msgstr "Réteg méretének módosítása" -#: app/core/gimplayer.c:257 +#: app/core/gimplayer.c:255 msgid "Flip Layer" msgstr "Réteg tükrözése" -#: app/core/gimplayer.c:258 +#: app/core/gimplayer.c:256 msgid "Rotate Layer" msgstr "Réteg forgatása" -#: app/core/gimplayer.c:341 app/core/gimplayer.c:1129 +#: app/core/gimplayer.c:339 app/core/gimplayer.c:1110 #: app/core/gimplayermask.c:236 #, c-format msgid "%s mask" msgstr "%s maszk" -#: app/core/gimplayer.c:387 +#: app/core/gimplayer.c:385 #, c-format msgid "" "Floating Selection\n" @@ -5359,43 +5376,43 @@ "Lebegő kijelölés\n" "(%s)" -#: app/core/gimplayer.c:1055 +#: app/core/gimplayer.c:1036 msgid "Cannot add layer mask to layer which is not part of an image." msgstr "" "Nem lehet rétegmaszkot hozzáadni olyan réteghez, amely nem része egy képnek." -#: app/core/gimplayer.c:1062 +#: app/core/gimplayer.c:1043 msgid "Unable to add a layer mask since the layer already has one." msgstr "Nem lehet rétegmaszkot hozzáadni, mert már van egy rétegmaszk." -#: app/core/gimplayer.c:1069 +#: app/core/gimplayer.c:1050 msgid "Cannot add layer mask to a layer with no alpha channel." msgstr "" "Nem lehet rétegmaszkot hozzáadni olyan réteghez, amelynek nincs alfa-" "csatornája." -#: app/core/gimplayer.c:1079 +#: app/core/gimplayer.c:1060 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "" "Nem lehet a megadott rétegtől eltérő dimenziójú rétegmaszkot hozzáadni." -#: app/core/gimplayer.c:1183 +#: app/core/gimplayer.c:1164 msgid "Transfer Alpha to Mask" msgstr "Alfa átvitele a maszkra" -#: app/core/gimplayer.c:1343 +#: app/core/gimplayer.c:1324 msgid "Apply Layer Mask" msgstr "Rétegmaszk alkalmazása" -#: app/core/gimplayer.c:1344 +#: app/core/gimplayer.c:1325 msgid "Delete Layer Mask" msgstr "Rétegmaszk törlése" -#: app/core/gimplayer.c:1445 +#: app/core/gimplayer.c:1426 msgid "Add Alpha Channel" msgstr "Alfa-csatorna hozzáadása" -#: app/core/gimplayer.c:1467 +#: app/core/gimplayer.c:1448 msgid "Layer to Image Size" msgstr "Réteg kép-méretűvé alakítása" @@ -6863,28 +6880,28 @@ msgstr "Nyomtatási méret" #. the image size labels -#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:241 +#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:222 #: app/widgets/gimptemplateeditor.c:236 msgid "_Width:" msgstr "Szé_lesség:" -#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:248 +#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:225 #: app/widgets/gimptemplateeditor.c:243 msgid "H_eight:" msgstr "Ma_gasság:" #. the resolution labels -#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:338 +#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:273 #: app/widgets/gimptemplateeditor.c:363 msgid "_X resolution:" msgstr "_X-felbontás:" -#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:345 +#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:276 #: app/widgets/gimptemplateeditor.c:370 msgid "_Y resolution:" msgstr "_Y-felbontás:" -#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:357 +#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:269 #: app/widgets/gimptemplateeditor.c:383 #, c-format msgid "pixels/%a" @@ -7516,11 +7533,11 @@ msgid "%d minutes" msgstr "%d perc" -#: app/display/gimpdisplayshell-dnd.c:96 +#: app/display/gimpdisplayshell-dnd.c:98 msgid "Drop New Layer" msgstr "Új réteg eldobása" -#: app/display/gimpdisplayshell-dnd.c:140 +#: app/display/gimpdisplayshell-dnd.c:142 msgid "Drop New Path" msgstr "Új útvonal eldobása" @@ -8982,12 +8999,12 @@ msgstr "_Ecset" #: app/tools/gimppaintoptions-gui.c:103 app/widgets/gimpbrushselect.c:201 -#: app/widgets/gimplayertreeview.c:330 +#: app/widgets/gimplayertreeview.c:332 msgid "Opacity:" msgstr "Átlátszatlanság:" #: app/tools/gimppaintoptions-gui.c:108 app/tools/gimpselectionoptions.c:374 -#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:323 +#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:325 msgid "Mode:" msgstr "Mód:" @@ -10391,24 +10408,24 @@ msgid "Set Item Exclusive Linked" msgstr "Elem láncolttá tétele kizárólagos módon" -#: app/widgets/gimplayertreeview.c:250 +#: app/widgets/gimplayertreeview.c:252 msgid "Reorder Layer" msgstr "Réteg átrendezése" -#: app/widgets/gimplayertreeview.c:311 +#: app/widgets/gimplayertreeview.c:313 msgid "Keep transparency" msgstr "Átlátszóság megőrzése" -#: app/widgets/gimplayertreeview.c:846 +#: app/widgets/gimplayertreeview.c:848 msgid "Empty Layer" msgstr "Üres réteg" -#: app/widgets/gimpmessagebox.c:458 +#: app/widgets/gimpmessagebox.c:460 #, c-format msgid "Message repeated %d times." msgstr "Az üzenet %d esetben ismétlődött." -#: app/widgets/gimpmessagebox.c:460 +#: app/widgets/gimpmessagebox.c:462 msgid "Message repeated once." msgstr "Az üzenet egyszer ismétlődött." @@ -10440,16 +10457,12 @@ msgid "Invalid UTF-8" msgstr "Érvénytelen UTF-8" -#: app/widgets/gimpsizebox.c:290 -msgid "Keep aspect ratio" -msgstr "Méretarány megtartása" - -#: app/widgets/gimpsizebox.c:574 +#: app/widgets/gimpsizebox.c:451 #, c-format msgid "%d x %d dpi" msgstr "%d x %d dpi" -#: app/widgets/gimpsizebox.c:578 +#: app/widgets/gimpsizebox.c:455 #, c-format msgid "%d dpi" msgstr "%d dpi" @@ -10892,6 +10905,9 @@ msgid "Image Editor" msgstr "Képszerkesztő" +#~ msgid "Keep aspect ratio" +#~ msgstr "Méretarány megtartása" + #~ msgid "Y:" #~ msgstr "Y:" diff -uraN gimp-2.2.0/po/id.gmo gimp-2.2.1/po/id.gmo --- gimp-2.2.0/po/id.gmo 2004-12-19 03:11:54.000000000 +0100 +++ gimp-2.2.1/po/id.gmo 2004-12-28 16:58:42.000000000 +0100 @@ -22,7 +22,7 @@ Click to open the Gradient Dialog.The active pattern. Click to open the Pattern Dialog.This text input field is limited to %d characters.This tool has no options.Transform DirectionTransform PathTransforming...UndefinedValueXCF error: unsupported XCF file version %d encounteredYou can drop dockable dialogs here.Zoom AllZoom InZoom OutZoom factor: %d:1[ Base Image ]_Icon:_Name:expected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorinchpointProject-Id-Version: gimp HEAD Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-19 03:11+0100 +POT-Creation-Date: 2004-12-28 16:58+0100 PO-Revision-Date: 2003-06-24 22:15+0700 Last-Translator: Mohammad DAMT Language-Team: Indonesian diff -uraN gimp-2.2.0/po/id.po gimp-2.2.1/po/id.po --- gimp-2.2.0/po/id.po 2004-12-19 03:11:31.000000000 +0100 +++ gimp-2.2.1/po/id.po 2004-12-28 16:58:31.000000000 +0100 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: gimp HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-19 03:11+0100\n" +"POT-Creation-Date: 2004-12-28 16:58+0100\n" "PO-Revision-Date: 2003-06-24 22:15+0700\n" "Last-Translator: Mohammad DAMT \n" "Language-Team: Indonesian \n" @@ -1111,11 +1111,11 @@ msgid "Remove dangling entries" msgstr "Kotak Pemilih Font GIMP" -#: app/actions/documents-commands.c:252 app/actions/file-commands.c:163 +#: app/actions/documents-commands.c:251 app/actions/file-commands.c:163 #: app/dialogs/file-open-dialog.c:198 app/dialogs/file-open-dialog.c:249 #: app/dialogs/file-open-location-dialog.c:193 -#: app/display/gimpdisplayshell-dnd.c:332 app/widgets/gimplayertreeview.c:802 -#: app/widgets/gimptoolbox-dnd.c:123 +#: app/display/gimpdisplayshell-dnd.c:334 app/widgets/gimplayertreeview.c:804 +#: app/widgets/gimptoolbox-dnd.c:125 #, c-format msgid "" "Opening '%s' failed:\n" @@ -1653,156 +1653,156 @@ msgid "Zoom all" msgstr "Zoom semua" -#: app/actions/gradient-editor-actions.c:582 +#: app/actions/gradient-editor-actions.c:589 msgid "_Blending Function for Segment" msgstr "" -#: app/actions/gradient-editor-actions.c:584 +#: app/actions/gradient-editor-actions.c:591 msgid "Coloring _Type for Segment" msgstr "" -#: app/actions/gradient-editor-actions.c:587 +#: app/actions/gradient-editor-actions.c:594 msgid "_Flip Segment" msgstr "" -#: app/actions/gradient-editor-actions.c:589 +#: app/actions/gradient-editor-actions.c:596 msgid "_Replicate Segment..." msgstr "" -#: app/actions/gradient-editor-actions.c:591 +#: app/actions/gradient-editor-actions.c:598 msgid "Split Segment at _Midpoint" msgstr "" -#: app/actions/gradient-editor-actions.c:593 +#: app/actions/gradient-editor-actions.c:600 msgid "Split Segment _Uniformly..." msgstr "" -#: app/actions/gradient-editor-actions.c:595 +#: app/actions/gradient-editor-actions.c:602 #, fuzzy msgid "_Delete Segment" msgstr "Hapus template" -#: app/actions/gradient-editor-actions.c:597 +#: app/actions/gradient-editor-actions.c:604 msgid "Re-_center Segment's Midpoint" msgstr "" -#: app/actions/gradient-editor-actions.c:599 +#: app/actions/gradient-editor-actions.c:606 msgid "Re-distribute _Handles in Segment" msgstr "" -#: app/actions/gradient-editor-actions.c:604 +#: app/actions/gradient-editor-actions.c:611 msgid "_Blending Function for Selection" msgstr "" -#: app/actions/gradient-editor-actions.c:606 +#: app/actions/gradient-editor-actions.c:613 msgid "Coloring _Type for Selection" msgstr "" -#: app/actions/gradient-editor-actions.c:609 +#: app/actions/gradient-editor-actions.c:616 #, fuzzy msgid "_Flip Selection" msgstr "Kotak Pemilih Font GIMP" -#: app/actions/gradient-editor-actions.c:611 +#: app/actions/gradient-editor-actions.c:618 msgid "_Replicate Selection..." msgstr "" -#: app/actions/gradient-editor-actions.c:613 +#: app/actions/gradient-editor-actions.c:620 msgid "Split Segments at _Midpoints" msgstr "" -#: app/actions/gradient-editor-actions.c:615 +#: app/actions/gradient-editor-actions.c:622 msgid "Split Segments _Uniformly..." msgstr "" -#: app/actions/gradient-editor-actions.c:617 +#: app/actions/gradient-editor-actions.c:624 #, fuzzy msgid "_Delete Selection" msgstr "/Lihat/Tampilkan Grid" -#: app/actions/gradient-editor-actions.c:619 +#: app/actions/gradient-editor-actions.c:626 msgid "Re-_center Midpoints in Selection" msgstr "" -#: app/actions/gradient-editor-actions.c:621 +#: app/actions/gradient-editor-actions.c:628 msgid "Re-distribute _Handles in Selection" msgstr "" -#: app/actions/gradient-editor-commands.c:84 +#: app/actions/gradient-editor-commands.c:85 msgid "Left Endpoint Color" msgstr "" -#: app/actions/gradient-editor-commands.c:86 +#: app/actions/gradient-editor-commands.c:87 msgid "Gradient Segment's Left Endpoint Color" msgstr "" -#: app/actions/gradient-editor-commands.c:186 +#: app/actions/gradient-editor-commands.c:189 msgid "Right Endpoint Color" msgstr "" -#: app/actions/gradient-editor-commands.c:188 +#: app/actions/gradient-editor-commands.c:191 msgid "Gradient Segment's Right Endpoint Color" msgstr "" -#: app/actions/gradient-editor-commands.c:353 +#: app/actions/gradient-editor-commands.c:358 msgid "Replicate Segment" msgstr "" -#: app/actions/gradient-editor-commands.c:354 +#: app/actions/gradient-editor-commands.c:359 msgid "Replicate Gradient Segment" msgstr "" -#: app/actions/gradient-editor-commands.c:358 +#: app/actions/gradient-editor-commands.c:363 msgid "Replicate Selection" msgstr "" -#: app/actions/gradient-editor-commands.c:359 +#: app/actions/gradient-editor-commands.c:364 msgid "Replicate Gradient Selection" msgstr "" -#: app/actions/gradient-editor-commands.c:371 +#: app/actions/gradient-editor-commands.c:376 msgid "Replicate" msgstr "" -#: app/actions/gradient-editor-commands.c:386 +#: app/actions/gradient-editor-commands.c:391 msgid "" "Select the number of times\n" "to replicate the selected segment." msgstr "" -#: app/actions/gradient-editor-commands.c:389 +#: app/actions/gradient-editor-commands.c:394 msgid "" "Select the number of times\n" "to replicate the selection." msgstr "" -#: app/actions/gradient-editor-commands.c:444 +#: app/actions/gradient-editor-commands.c:452 msgid "Split Segment Uniformly" msgstr "" -#: app/actions/gradient-editor-commands.c:445 +#: app/actions/gradient-editor-commands.c:453 msgid "Split Gradient Segment Uniformly" msgstr "" -#: app/actions/gradient-editor-commands.c:449 +#: app/actions/gradient-editor-commands.c:457 msgid "Split Segments Uniformly" msgstr "" -#: app/actions/gradient-editor-commands.c:450 +#: app/actions/gradient-editor-commands.c:458 msgid "Split Gradient Segments Uniformly" msgstr "" -#: app/actions/gradient-editor-commands.c:462 +#: app/actions/gradient-editor-commands.c:470 msgid "Split" msgstr "" -#: app/actions/gradient-editor-commands.c:478 +#: app/actions/gradient-editor-commands.c:486 msgid "" "Select the number of uniform parts\n" "in which to split the selected segment." msgstr "" -#: app/actions/gradient-editor-commands.c:481 +#: app/actions/gradient-editor-commands.c:489 msgid "" "Select the number of uniform parts\n" "in which to split the segments in the selection." @@ -2306,7 +2306,7 @@ #: app/actions/layers-commands.c:232 app/actions/layers-commands.c:234 #: app/actions/layers-commands.c:291 app/actions/layers-commands.c:295 -#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:840 +#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:842 msgid "New Layer" msgstr "" @@ -2318,7 +2318,7 @@ msgid "Set Layer Boundary Size" msgstr "" -#: app/actions/layers-commands.c:512 app/core/gimplayer.c:255 +#: app/actions/layers-commands.c:512 app/core/gimplayer.c:253 msgid "Scale Layer" msgstr "" @@ -2331,7 +2331,7 @@ msgid "Layer Mask to Selection" msgstr "Kotak Pemilih Font GIMP" -#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1085 +#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1066 #: app/dialogs/layer-add-mask-dialog.c:62 msgid "Add Layer Mask" msgstr "" @@ -2950,7 +2950,7 @@ msgstr "Buka file teks (UTF-8)" #: app/actions/text-editor-commands.c:132 app/config/gimpconfig-utils.c:552 -#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:393 +#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:396 #: app/core/gimpbrushgenerated.c:601 app/core/gimpbrushpipe.c:338 #: app/core/gimpgradient-load.c:63 app/core/gimppalette.c:360 #: app/core/gimppattern.c:328 app/tools/gimpimagemaptool.c:608 @@ -4795,7 +4795,7 @@ msgid "FG to Transparent" msgstr "" -#: app/core/gimp-gui.c:148 +#: app/core/gimp-gui.c:153 msgid "GIMP" msgstr "GIMP" @@ -4827,39 +4827,54 @@ msgid "Modules" msgstr "" -#: app/core/gimpbrush.c:531 +#: app/core/gimpbrush.c:534 #, c-format msgid "Could not read %d bytes from '%s': %s" msgstr "" -#: app/core/gimpbrush.c:566 +#: app/core/gimpbrush.c:554 +#, c-format +msgid "Fatal parse error in brush file '%s': Width = 0." +msgstr "" + +#: app/core/gimpbrush.c:563 +#, c-format +msgid "Fatal parse error in brush file '%s': Height = 0." +msgstr "" + +#: app/core/gimpbrush.c:572 +#, c-format +msgid "Fatal parse error in brush file '%s': Bytes = 0." +msgstr "" + +#: app/core/gimpbrush.c:596 #, c-format msgid "Fatal parse error in brush file '%s': Unknown depth %d." msgstr "" -#: app/core/gimpbrush.c:579 +#: app/core/gimpbrush.c:609 #, c-format msgid "Fatal parse error in brush file '%s': Unknown version %d." msgstr "" -#: app/core/gimpbrush.c:595 app/core/gimpbrush.c:715 +#: app/core/gimpbrush.c:625 app/core/gimpbrush.c:745 #, c-format msgid "Fatal parse error in brush file '%s': File appears truncated." msgstr "" -#: app/core/gimpbrush.c:603 app/core/gimpbrushgenerated.c:648 +#: app/core/gimpbrush.c:633 app/core/gimpbrushgenerated.c:648 #: app/core/gimpbrushpipe.c:354 #, c-format msgid "Invalid UTF-8 string in brush file '%s'." msgstr "" -#: app/core/gimpbrush.c:610 app/core/gimpcontext.c:1299 -#: app/core/gimpitem.c:479 app/core/gimppattern.c:400 +#: app/core/gimpbrush.c:640 app/core/gimpcontext.c:1299 +#: app/core/gimpitem.c:480 app/core/gimppattern.c:400 #: app/dialogs/template-options-dialog.c:80 app/tools/gimpvectortool.c:339 msgid "Unnamed" msgstr "" -#: app/core/gimpbrush.c:704 +#: app/core/gimpbrush.c:734 #, c-format msgid "" "Fatal parse error in brush file '%s': Unsupported brush depth %d\n" @@ -5023,11 +5038,11 @@ msgstr "" #: app/core/gimpdatafactory.c:411 app/core/gimpdatafactory.c:414 -#: app/core/gimpitem.c:274 app/core/gimpitem.c:277 +#: app/core/gimpitem.c:275 app/core/gimpitem.c:278 msgid "copy" msgstr "" -#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:286 +#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:287 #, c-format msgid "%s copy" msgstr "" @@ -5087,7 +5102,7 @@ msgid "Rotate" msgstr "" -#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:259 +#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:257 msgid "Transform Layer" msgstr "" @@ -5448,7 +5463,7 @@ #. pixel size #: app/core/gimpimagefile.c:624 app/dialogs/info-window.c:552 -#: app/widgets/gimpsizebox.c:552 app/widgets/gimptemplateeditor.c:637 +#: app/widgets/gimpsizebox.c:429 app/widgets/gimptemplateeditor.c:637 #: app/widgets/gimptemplateeditor.c:673 #, c-format msgid "%d x %d pixels" @@ -5468,15 +5483,15 @@ msgid "Could not open thumbnail '%s': %s" msgstr "Tidak dapat lakukan seek dalam file XCF: %s" -#: app/core/gimpitem.c:1096 +#: app/core/gimpitem.c:1103 msgid "Attach Parasite" msgstr "" -#: app/core/gimpitem.c:1106 +#: app/core/gimpitem.c:1113 msgid "Attach Parasite to Item" msgstr "" -#: app/core/gimpitem.c:1145 app/core/gimpitem.c:1152 +#: app/core/gimpitem.c:1152 app/core/gimpitem.c:1159 msgid "Remove Parasite from Item" msgstr "" @@ -5503,76 +5518,76 @@ msgid "Floating Selection to Layer" msgstr "" -#: app/core/gimplayer.c:252 app/pdb/internal_procs.c:152 +#: app/core/gimplayer.c:250 app/pdb/internal_procs.c:152 msgid "Layer" msgstr "" -#: app/core/gimplayer.c:253 +#: app/core/gimplayer.c:251 msgid "Rename Layer" msgstr "" -#: app/core/gimplayer.c:254 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 +#: app/core/gimplayer.c:252 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 msgid "Move Layer" msgstr "" -#: app/core/gimplayer.c:256 +#: app/core/gimplayer.c:254 msgid "Resize Layer" msgstr "" -#: app/core/gimplayer.c:257 +#: app/core/gimplayer.c:255 msgid "Flip Layer" msgstr "" -#: app/core/gimplayer.c:258 +#: app/core/gimplayer.c:256 msgid "Rotate Layer" msgstr "" -#: app/core/gimplayer.c:341 app/core/gimplayer.c:1129 +#: app/core/gimplayer.c:339 app/core/gimplayer.c:1110 #: app/core/gimplayermask.c:236 #, c-format msgid "%s mask" msgstr "" -#: app/core/gimplayer.c:387 +#: app/core/gimplayer.c:385 #, fuzzy, c-format msgid "" "Floating Selection\n" "(%s)" msgstr "Kotak Pemilih Font GIMP" -#: app/core/gimplayer.c:1055 +#: app/core/gimplayer.c:1036 msgid "Cannot add layer mask to layer which is not part of an image." msgstr "" -#: app/core/gimplayer.c:1062 +#: app/core/gimplayer.c:1043 msgid "Unable to add a layer mask since the layer already has one." msgstr "" -#: app/core/gimplayer.c:1069 +#: app/core/gimplayer.c:1050 msgid "Cannot add layer mask to a layer with no alpha channel." msgstr "" -#: app/core/gimplayer.c:1079 +#: app/core/gimplayer.c:1060 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "" -#: app/core/gimplayer.c:1183 +#: app/core/gimplayer.c:1164 msgid "Transfer Alpha to Mask" msgstr "" -#: app/core/gimplayer.c:1343 +#: app/core/gimplayer.c:1324 msgid "Apply Layer Mask" msgstr "" -#: app/core/gimplayer.c:1344 +#: app/core/gimplayer.c:1325 msgid "Delete Layer Mask" msgstr "" -#: app/core/gimplayer.c:1445 +#: app/core/gimplayer.c:1426 msgid "Add Alpha Channel" msgstr "" -#: app/core/gimplayer.c:1467 +#: app/core/gimplayer.c:1448 msgid "Layer to Image Size" msgstr "" @@ -7069,31 +7084,31 @@ msgstr "Hasil jadi yang lebih besar" #. the image size labels -#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:241 +#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:222 #: app/widgets/gimptemplateeditor.c:236 #, fuzzy msgid "_Width:" msgstr "Path stroke" -#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:248 +#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:225 #: app/widgets/gimptemplateeditor.c:243 msgid "H_eight:" msgstr "" #. the resolution labels -#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:338 +#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:273 #: app/widgets/gimptemplateeditor.c:363 #, fuzzy msgid "_X resolution:" msgstr "Rasio aspek:" -#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:345 +#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:276 #: app/widgets/gimptemplateeditor.c:370 #, fuzzy msgid "_Y resolution:" msgstr "Rasio aspek:" -#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:357 +#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:269 #: app/widgets/gimptemplateeditor.c:383 #, c-format msgid "pixels/%a" @@ -7654,11 +7669,11 @@ msgid "%d minutes" msgstr "" -#: app/display/gimpdisplayshell-dnd.c:96 +#: app/display/gimpdisplayshell-dnd.c:98 msgid "Drop New Layer" msgstr "" -#: app/display/gimpdisplayshell-dnd.c:140 +#: app/display/gimpdisplayshell-dnd.c:142 msgid "Drop New Path" msgstr "" @@ -9161,12 +9176,12 @@ msgstr "" #: app/tools/gimppaintoptions-gui.c:103 app/widgets/gimpbrushselect.c:201 -#: app/widgets/gimplayertreeview.c:330 +#: app/widgets/gimplayertreeview.c:332 msgid "Opacity:" msgstr "" #: app/tools/gimppaintoptions-gui.c:108 app/tools/gimpselectionoptions.c:374 -#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:323 +#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:325 msgid "Mode:" msgstr "" @@ -10615,26 +10630,26 @@ msgid "Set Item Exclusive Linked" msgstr "" -#: app/widgets/gimplayertreeview.c:250 +#: app/widgets/gimplayertreeview.c:252 msgid "Reorder Layer" msgstr "" -#: app/widgets/gimplayertreeview.c:311 +#: app/widgets/gimplayertreeview.c:313 #, fuzzy msgid "Keep transparency" msgstr "Tetapkan sifat transparansi" -#: app/widgets/gimplayertreeview.c:846 +#: app/widgets/gimplayertreeview.c:848 #, fuzzy msgid "Empty Layer" msgstr "Hapus path" -#: app/widgets/gimpmessagebox.c:458 +#: app/widgets/gimpmessagebox.c:460 #, c-format msgid "Message repeated %d times." msgstr "Pesan diulang %d kali." -#: app/widgets/gimpmessagebox.c:460 +#: app/widgets/gimpmessagebox.c:462 msgid "Message repeated once." msgstr "Pesan diulang sekali." @@ -10664,17 +10679,12 @@ msgid "Invalid UTF-8" msgstr "(string UTF-8 salah)" -#: app/widgets/gimpsizebox.c:290 -#, fuzzy -msgid "Keep aspect ratio" -msgstr "Rasio aspek:" - -#: app/widgets/gimpsizebox.c:574 +#: app/widgets/gimpsizebox.c:451 #, c-format msgid "%d x %d dpi" msgstr "" -#: app/widgets/gimpsizebox.c:578 +#: app/widgets/gimpsizebox.c:455 #, c-format msgid "%d dpi" msgstr "" @@ -11150,6 +11160,10 @@ msgstr "/Lihat/Tampilkan Grid" #, fuzzy +#~ msgid "Keep aspect ratio" +#~ msgstr "Rasio aspek:" + +#, fuzzy #~ msgid "Inde_xed Palette" #~ msgstr "/Tools/Text" diff -uraN gimp-2.2.0/po/it.gmo gimp-2.2.1/po/it.gmo --- gimp-2.2.0/po/it.gmo 2004-12-19 03:11:55.000000000 +0100 +++ gimp-2.2.1/po/it.gmo 2004-12-28 16:58:43.000000000 +0100 @@ -1,243 +1,241 @@ -X Jw xy&kG"9jGAN.i}<k$@2;P@O29-N9|;7 *4 -; F -P -[ fr - -.05fw - - - ! .: J Vb g sK.R1! /FJ] -o z -  -*BTfu*65>[z#7Q -mx  1.3` -T_y - -AJ]< $=Uemr  * -3>Oh&$  &-3M"U x -7/ 5 BPY` h u  m . <FO lz C7=@X6d5S3i<#!4Q kw "?\y,  A!Oq   !/B Q^.t5578G), 2( [|OA%E&k41# + G S]u -   &80J {  +,?R[ ky  - $% Bc}" )9 BNV ";[ p"~" -  -0);e,!## !0%Rx. $#:-^%$< AO -i -t -  ) 0> -Q\-c   .AQd{  %! *7J&b    (5 ERd s - -#-. \h o}  - ( ;Ic lv :?80 iu~  - -  -  * -4 ?K Tau > '7IXj  0F V`s - -  1> S`p -*!8.O~#"&&M co,# '.V'sFTK   % -< GU r  ($$Mr=x6<?*Aj79c9B=f=>CJ'gr  +0B R \h z   -0BYi}2FZ n| -   -    -  8  @ L \  l z     (  -& -- - 5 -B -J -P +Z J &kGr9GA<N~i<7kt@2!;TPO219d-9;7B z + + +  + +"*2Nh~0 + $ 3 A M +[ +f q ~  K.1!%7>MTp +  + +5D +MXgz*6=Pm&;O#c +0 8 B OYi1~3 +  +'8JZAkJ< H Vdt 1C Tbz +&$ 18 > HV]v}"  +37G    mk p ~   C72=j@6d 3<#>!b  (@Xj|,19 LZ z !&/ 8 FSgnu { .5537i8),1Me2 O A]%&41!#S w  +(0 6D Zg0  4Q+Z   + $#H[j "-Pf u 2;L Ta| ""7@ +R ]k +),! #B#f!%. '3DXk~#-%"8Ni~  + + +  %2BRet  +- & *49?Pcw    )06%<!b & ' 9GV fs   8JY +r +}-    + ':S[n   :?J8   +% +; F T ` +m x +   > +L\n  -2J]v   +!, +DO gu    +**U^!p.#"!Da& ,#7> M[n''(DF^T * =^ u +   / 5AJ S_u(~$=6<G?A79>cx9B=Yf>C=Jg 4@P bp     (=Pdw+2;Zu  +     +   )  9 G Z  +k v         +$ +8 +(Q +z + + + + + +  -V -Oa - - - - -c t    -     . ! 4 G  -V  a  o  {           u&   {cA z-3r;!6&G'n       .@F^os  - ",3; @ MYt -H -( 3=M -UH`!B1!Sfk p} -  `-C1 0=n t  - -   8(F -o -zH -  -  "/EZ i v       & 3KA36" @Jbv $   (4+])*!/BIX*i' - -%0@Rhx  0 A J Y r       !!1!!I!k!!! !!!!! """-1"_#h#x### #### ##3#$0$H$X$ p$ -}$ $ $$$$$%+%<% Q%_%v% }%%%%%@% -&-&?& Q&^& c& q& }&&& && & &&&'-'A' U' _' k'w' ''' '' -''( %(3( K(W( -m(x((((((((((( ))2)I) -Q)#\))))))))+*<*D* K* Y* -e* p* }****** *+ +%+8+S+"j++++ +++++$,&,8,L,[, j,v, ~, ,,, , ,, -, , -,- --.- >- H-R-k-z-------. .".5.O.T. -Z. e.q.... . ... . . //+/:/L/ ^/ -k/ v// / // / / /,/0!20T0h00)0 00 0 01 -11 1 11 =1K1B^1A1122 (22292H2 X2e2w2222!303B3J3S3 -X3c3 w333 3333" 4!/4!Q4s444 4 4 4444 55V5+n5 5(55"55 6 6$6>6%V6 -|6 66666 -66 66 6 7 7 )777=7P7 e7 q7 }77&7,7 78 8 -8 -&818N8l88884889 -9 9(9 -89 C9P9_9 h9v9~99 99 9!99 :: $:0:A:\: l:v:: :::;:?:1;@;H;\;l;;;4H<}<<-< === -= =#=>-+> Y>e>z> >>>>> -> >>??? ?????? - -@ -@ @6@ -F@ Q@ [@i@m@@ @ @!@@ @@@ A AA8A?A GAUAjA AA -AAA AA AA -BB.BJBgBlB rB!BB!B#BC C -(C93CUmC=C<D=>D|D"D?DDD EEEE("E,KExEEEE -EEEEJF QF^FmFF F FFF F F G!G;GKG;eGGG G GGG H H)H 9H GH TH`HhH HHHHHHII%I6IIIdIvII+IIIJ J J )J 6JBJ TJ aJmJ#J JJ JJJJ6KMKjKrKyK K7KKKLLL4LJL YL fLrLL LL LLLL -L -LM MM1M @MNM -TM_MdM yMM -MMM MMNN9N TN`NpNNNN4NNO'O@O]OpOO.OEOP P -P:P RP `PnPP P P P -PP P -PPP QQ0Q8QLQNQ -8RCRLRSReR mRyRRRR#RRS -S9SKSgS}S#SSS SS T*TAT$\TTT TTTTT!U7USUeU -lUwUU UUUUUV&V tt3` 0JPWi~ 6o֠FHO4W#Gy%XU@O -  + 7A JT]#o ǤΤפ *4 9 GU lv~  ޥ " AN V`q t   -Ŧ ͦڦ .M \h -p{  ʧا   %8N^p   ˨ ը --?Yj  ש   $3 9GW^dk ~   - -ڪ  !(08 K Wd~ ëҫ -  +7?G] l y ˬԬܬ % 2@FV\c -k v   -  ȭ խ ߭  - &- -3> GS\ k x  ® Ϯ ݮ   *=CFKS b o { ï̯ݯ(=ENd|41ݰ/?Ue #ű  -)0@"Ps -{ϲ  2 -K -V -al r -óγ߳ - "8G O\koux -5  "0!E g  -ɵ Ե  %, 3A.T4շ(nE>͸I IV\l>jt@5_>jԻP?:=˼< <F>=½ -  - - ( -2 =I Y -gru  ܾ 8Ui~    ˿ տ    + +O +  + (      +    + 7  @ .L {    +           ( 5 F Z q u  c z r!8ASbk{&' B ? IS b p|   *G\kt  +   (8 +=H]tH| +  +H!FBh1 !1 +AL Q ]`iCd10   + += +HSjz ( +  +H" +k v +    !& . ;GOmt | $0E_u    K3*6^"  "$,Ql   (+)&*P!{/*1B'_ +  $ - < U h         ! '!H!c! t!~!!!!!!!"$" +"8"O"`"u"""-"##$$$ 4$>$D$T$ d$p$3v$$$$$ $ +% % %,%J%i%%%%% %%& &&)&=&L&@T&&-&& && & & ''3' :'F' K' W'c'z'''' ' ' '( ('(?( X(d( +z((( (( (( +())!)))<)A)I)R)Z)l)) )))) +)#) *$*=*S*Y*a*~*+*** * * +* * ++++?+X+q+ ++ ++++"+,!,7, W,e,k,p,v,$,,,,, ,- - -#-6- ;- H-U- +m- x- +-- --- - ---..2.P.l.~... ..... +. ../"/5/ H/ R/\/e/ v/ / ///// / +/ 0 0 &0 30?0 Y0 e0 q0,}00!000 +1)'1 Q1^1 v1 11111 1 11B1A,2n222 2222 22333'333333 +33 44'4 94F4X4x4"4!4!445/5 G5 Q5 [5e5u55 55V5+5 %6(/6X6"^66 6 666%6 +7 77$737G7 +W7b7 q77 77 7 7777 7 7 88&08,W8 888 +8 +88889.9A94S999 +999 +9 999 9: :: -:9: N:!Z:|: :: :::: :;; $;1;8;;@;?|;;;;;;<1<4<==-= G>Q>Z> +j> u>#>>-> >>? ?$?,?C?L? +U? `?l?@&@:@ C@P@Y@a@g@}@ +@ +@@@ +@ @ @@@A #A -A!7AYA ]AkAA A AAAA AAA BB +*B5BGB ZBhB }BB +BBBBBB B! +C,C!JC#lCC C +C9CUC=ND<D=DE" E?0EpEE EEEE(E,EFF%F6F +GFRFhF}FJF FFFG +G 8GEG`G zG GGGGG;G,HFH UH bHnHH H HH H H HHH II6ISIeIyIIIIIIIJJ+-JYJqJJJ J J JJ J JJ#K 3K?K QK]KrKK6KKKKL L7&L^L|LLLLLL L LLM #M0M NMZMoMuM +|M +MM MMM MM +MMM NN +'N2NRN oN{NNNN NNNO$O8O4MOOOOOOO +P.$PESPP P PP P PPQ Q (Q 4Q +@QKQ \Q +hQsQQ QQQQQNtR +RRRRR RSS2SHS#bSSS SSSST#"TFTdT xTTTTT$T U+U @UJUZUtUU!UUUU +UVV 'V4VSVnVVVV VVVWW7WNW gWuWW WWWWWWX&X +8XCXSX"mXXX XXXXY0Y=@Y6~YSYJ ZTZmZZ ZZZZZZZ[ ,[8[G[\[o[ [[[[ [[[\,\F\a\y\ \\\\\\\])]N]5^KI_=__*W``'a3aTa?Sb`b2b'ccYe4\f/ff |ggggggggggghh(hEh Zh fhsh;|hh hhh hi i&i6i#Ji ni{i i i&ii +iijj-j"?jbjzjjjjjjjkk$k 5kBk[k ok{kkkk+kkkk kl ll &l +4l?lElLlTl ]l il8vlvl&m-mEm]m em rm~m m!mmmmn/nLninpnnnnnn n n n nno o o!o1o @oLo ]o iouoo!ooo(op#"p Fp Tpaphp +np yp ppppp +p p +p pqqKq1hq7q1q5rH:rArr;Ps!ss ptt xuv}.w*wBxyz zz%{ +{9{)@{5j{{1P|0|0|1|(}C?}}S~,X~2~ ~AA*]4 "/MG9j2ZN - +.9L^ouzo- FSe u  Č +ʌ<Ռ   7ASgwŎԎ! 0=Q +alqz3;ŏ;=ߐF -7 < IW]e wΒ3#;_wʓٓ 'F0w + +   Δ ۔  !!& H T+`K0ؕQ [$5PGC-Oj otejJ~p4ow<?ʝ> +tIt`30ՠ۠  (6*oaѡӡڡ4#;G%LXrUˣO!q +  ¤̤ դߤ# &4=CRYbu  ĥ ҥ   /J i  ̦٦    #7> +EP Xem ا  + (6E Uc w  è٨  $3<M g q +~ɩ۩0B R s }  Ϫ ժ '* 3 = +G +R]v  ī̫ԫ   "/6=E_n +  ǬӬ۬  ! $.39Lgpx  έܭ +  / = +K V d q {   ®ɮ +Ϯڮ    ) 0>NU ^ k y   Ưٯ߯   $9 LY_hy(ٰ*4D1y/۱! )6<P#a Ų̲ܲ" +"4ELUk |γ + + + "28? +_j{ +Դ  #' +-8?D5H~  ̵!  $E +e p|  ȶ ϶ݶ.4<q(nE#>iII\<l>tE@5>1jpPۼ:,=g<<>=^ + + + ľ +ξ پ  +! 7D MYx 8"+ F S ] g q ~   + +     U$z>.?!n 1FW!g (8O h2<%b}!"5Ml,  (4 +EP c!m   [BC7  + !.6Ro~>I#=7 u*Iiy/B.X- +  +  +./9i  ;.7G Y eo x  +NSc t~ WLE]J?;w{'D:P)4&K,r"  )Fby#(-3-)a 2/ $@[r   .F&Z6E;A:G|<7(9 b'A*!(:qcS.)/X==16"Fi| '.C\ lB' /= M$W%|+  2 +;F O[$j1"B#b./CR[bk "3Nf&& ";J] +|+29"&\-)')B- +p{+/(X%n + +"+-Yk|#/>RZn C&?FV\cu )8L +hsy50:7r#2BTe''7 _ k.y    + +8 St    "),AVM8  ,9O dn}#4 FRb w\0#4FXhz )F!d"#Ffw6I_  ,  $%JHd,'( #2$V){,)DJ]o.7%4'H,p-'_fS ,1 OY +x!71*E_y    !++@IICQO)QyLIbDS-NxTINO=  , @M\ p~ 0Qg|!"!.7(?h " 1@ Uaq" / > M b w      - +@ +F +O +X + o + +| + + +h +   )  "   2 A R  c  q 2{        # ( 9  H  i  v     } !ftNrGM`V ,F.], K + '6 GU\kqx$" Gh x)  +#%%Io + (k M +Yd +u W1I `j7   !. 4 AOD93:CVf |*2 <R/d Q,= FTl~  ,5S [gz(>%Z]#?A  $2  W c }       #!%%!0K!0|!0!6!$":"@R" """*""&"4"#W#p# #### ##$$ +9$D$U$m$$ +$$$$$$%)%$G%l%% %%%%%" &0&M&c&l&{&&&&&&L'P(Y(i({((((((((H(>)"S)v))))))3)0**[*x*"*!***+/+ 7+D+_+u+ ++N++C+3,B,S,Y,k, |,#,,,, +, ,,"-&$-K-a- {- ----- - . .=.R.#r.... ../1/ 8/D/]/d/l/u/{// ////0 0*50#`00000000141<1 B1P1`1o111111122 /2=2P2m2$2 2$2233 3 +3#3'?3g3333333344!4 04>4 Z4 g4u444444445(5@5%Z5$55555 55"6+606 66 B6O6g6666 666 66 7"7=7M7c7w77 7#777%78 &8 38:A8|8588 8#90&9W9i99 99999 999U:Uk:::: ; ;(;9;R;d;; ; ;;3<C<Y< b<l< q<<<<< <<&<*$='O='w=%===!= > +(> +3>>>S>b>j> |>i>2>%?%-?S?,[??????% +@0@ +9@ D@N@_@u@ @@@ @@@ @@ AA+AFAYAiA}A1A-AA BB+B;B5PB2BBBB C<#C`C vCCCC CCCC CCC%C D)D DD'PDxDDDDD D E E,E@E VEcEiECpE?E EF FF%/F&UF|F@/GpGxG'G +HHH H +H,HI5=P@|P@PP&QB,QoQQQQQQ.Q3Q#R5RHR[R +kRvRRRGRS"S1SIS fStSSSS SSST'T:CT&~TTTTTTU!U 6UDUUU fUtU{UUU!UUUVV5VNVgV(VVV$V6 W@W3`W WWWWWWX+X#AX1eXXX XXXX=Y!LY nYxYYYAYY ZZ 4Z&>Z"eZ Z ZZZZZ'Z [[<[B[K[ ^[l[t[[[[[ [[[ [#\(\/7\g\ \\&\%\!\]1]E]c]z]]6]&]^!^>^Y^p^^<^X^7_I_Y_ n_____ __ _``/`>`M`a`u`#````V}a aaaa b bb.bGbZb!ubbbbbbc *c'Kc!scccccc +d%)dOdod ddddddee 0e:eJejee$eee e f3fQf"afff'ff"g(g;gYgwgg!gg#gh#hAh_hohh.hhhhi i?i\iyi9i.iHjIIjjjj jjkk&1kXk!nkk kkkkk l3lGldl|l1l(l&l m4mTmsmmmmmmn/nGn:6onqo,oN qK\qq1WrrJs9 tZCtHtwtD_uuJvBxH=y>yy zzzzzzzz zz{{.{!A{c{{{{F{{|&|=|Z|k|||%|(|}}4}K}-\}}}}}}~)~,H~u~~~%~~~2 IWhz + /4<S\lt  +Ā π ۀ C: +Á΁! 8-B,p $#@[dsy Ѓ ݃  )?N` r#'˄="`h +ʅ *0A Q_pJ4׆6 6C0zPIFF݈$$I)Iszk`U`#p03P5:7p38ܓ-DCe @AǕ [[AFC/!ϛ|0b>=y kآD,Kx ʣ أ  ɤ&;N^ +|  P + 6@Qew(ϧ 7 I Uaw +NRNa@e[ /H O[#t +/%:*!e$ܭ-?F NZ t ~U/ޮ   +)4I]q16+-:Sh4i[-BٲUWr=ʳajcxsܶPnKLL.{^B b +lw!ѽ;ӽ=8-N0Mr~ZeL0   ' - :G Vb;x    !9Jc +u  +"<W ` n x $ 18@PXmu  '?Sfv +'9O `jy !  8L!c +' +/:AU [!h   + +" %/ +8 +CN$^      6 +R]lt}#    ' +0;Yl    .*Y` +r} ): N\ n {    - -  -9 N Zf kxU>d.! *1 M[v! *K\y :2V<!="\ ,!Nm  - !   +8[KB7"<ARX -3Qnv >I==  (EU]by ;U]du.-  -( 3AG -a lv -/  -@;V     -"1  : CWQL]JT?w'WDP)P4z&," <FOj#(-<j3) 2 /@ p~  $< DNW g&6E;XAG<7[( 'A*G!r(qS/./== 1^" "9Shy BYn  $%+/A S`z - $11C^|#.,[tS\ p|&&)P n| -+ 2)\9|&-) '5)]B -*@+V/%!>V -q -|+# #+?Qas C4CY&r,< P^n -50@Tt::J[k}-Kj'  .  -9 BP -Yds - L Xb r |)AM8@ y  '8IXj}  \0L}+APjz!3F`"}/B`s   ,. [g$H,4';(c#$)#8,G)t.7%G4m',-'%_Mf "0F,^  -!717i    ! .+B+nICQ1OQL%IrDBSNx*TNOG  %2DTin   -!9Qm !"'!Jl( " 5Vn "<T"f > R -l       -   h c - w - -" "8 [ s      2   2 B K \ m }         0 }B !  tr.`+?GX gq.,  -  +5D Ucjy$0 Uv )  - -#3%W} - (k [ -gr - W1I$ nx7   /< B O]D93HQdt *2.J`/r Q(:K Tbz  -:Ca iu6L%h ]1?A*$@ eq # %3 0Y 0 0 6 $#!H!@`! !!!*!!& "40"e"~" """"" "#5#M# -g#r#### -###$$%$A$W$$u$$$ $$$ %%";%^%{%%%%%%%&&L1&~''''''''' ((H#(l("((((())3$)0X)))")!)*&*D*]* e*r*** -*N*+C+a+p++++ +#++++ -+ ,,"/,&R,y,, , ,,,,, -7- J-k--#---- .*.?._. f.r....... .. /&/E/N/*c/#//////0010b0j0 p0~00000001#1=1M1 ]1k1~11$1 1$12/252 <2 -F2Q2'm222222333.3I3O3 ^3l3 3 33333344'4B4V4n4%4$44444 55"65Y5^5 d5 p5}55555 556 6,6 ;6"H6k6{6666 6#66 7%7A7 T7 a7:o77577 8#080T8888 88888 99+9UC9U99:-: @: J:V:g:::: : ::a;q;; ;; ;;;;; <<&+<*R<'}<'<%<< =!*= L= -V= -a=l==== =i=2 >S>%[>>,>>>>>?%8?^? -g? r?|??? ??? ?? @ @)@:@B@Y@t@@@@1@-@)A ;AEAYAiA5~A2AAB$B;B<QBB BBBB BBBC -CCC%%C KCWC rC'~CCCCCD D7D NDZDnD DDDCD?D "E/E7EHE%]E&EE@]FFF'F -GGG H -H, HMH5jH -HHH -H HH - I I I5IKIJ.JEJ YJgJnJwJJJJJJJK&K6KEKIKcK -tK K!KKKKKKLL*L2L:LILeLLLLLLMM+M;MXMjM'MM M -MM#M N$kO@O@O,P&3PBZPPPPPPP.P3QQQcQvQQ -QQQQGQ@RPR_RwR RRRRR SS'SDSUS:qS&SSSST#T=TOT dTrTT TTTTT!T -UU3UFUcU|UU(UUU$V67VnV3V VVVVW%WCWYW#oW1WWW WW X"X=aJa\auaa!aaaab b?b Xb'yb!bbbbc!c8c%Wc}cc cccccd1dKd ^dhdxddd$dde e @eaee"eee'ef"3fVfiffff!ff#g5gQgogggg.gghh/hNhmhhh9h.hH.iIwiiii jj1jIj&_jj!jj jjj -k!k 4k3Akukkk1k(k&l Albllllll -m*mDm]mum:dnnn,oN;pKpp1qqxr97sZqsHswtDttxupwHkx>xx yyyyyyyz z(zAzIz\z!ozzzzzFz({C{T{k{{{{{%{(|1|B|b|y|-|||||}1})L},v}}}}%}~-~B~`~ w~~~~~~ -~~  &/2bj  -   C$h -,4O f-p, ˁ$*#Jnق   -;DWm| #'!6=P -ք '<X^o J46:6q0PنI*tF $Rw)wË`-U#Ǐ16H0M3~5h73֒8 --CDqeN@A7[[Atq]O^۞blϟ= kr,yݢ   - ӣߣ+=Ti| -  ΤؤP 8E dn(Ԧ#:Ie w  -ƧϧNR<Nި@[Ԫ 0=E]v }#ƫ -Ϋ٫/%2:X!ά$ -/H[mt |  U/  < I -Wbwͮ16JY-hS4i-ٱBUJW=a6 cs -~%KøLL\2^ź$FBM  -!ټ;=ӽսܽ=8"[N,0{rZez0  & 2@U [ hu ;    '5Ogx -  - -,"Gj     '$:_fn~ /B KUm%8Ug}  !  1Oc!z +> -FQXl r!   - -'9 <F -O -Ze$u      &6M -it#   # 1> -GRp    $.Apw - /@Q es      -!,5E -Ze mz  -   %6IXn -74 -<G\rM=D8} # - 6%O-u* - -": AKf ~   - - -%0 -I -T&_ -     # =IYimsv -F 2: BNb){'(& - -(3:>GLQW]fou{V9#) o7* )3Sn" X*]xuR(j87Tnf% c}CmW^D Z+krh%M Y{{l7>>LuL0@P )? <Q}; uVPP3 Zb 4 tTsizz@ 4Bs%TL%K m5N|72$2J 6iYOL|wX I h^8' 85Jlr0#)~< JM>,m0k-/ A H,jP aq! -"d31I;e635utlc+o(T ,`{RD'  CP0 , e{|%ZEMF+^c82gv} X}>FZv=N-> ,*$Q5/;AD\y?)5 qzt"so ,:D"sA!k*B- 0 - O H_C r; \Z?#6f:L8W -?H+bvVBU^/mvW;<jQOk<<E7U4 z-K[tIsL%'\awbxT}\b U*^<1G0uRwF a`@FJG oTp5]TN -s# V ; Jye9j\yb 3[a3(hPV`XD&EIJj. BBmV'xlf`,aHINwnF#Gw~Yr &:9zD  :(B[6 O Y_#moEFK%haj[L _#FE y sJA l)B/iC  d&hR: 4`bGp+'oQCOj`%SL-cG w `U xXIN7SPU|C.1!:Iu\KZO}@y=fcprh  g&*IE:=M QVeV?s2 \4v6;Qr]Y3  |pp3TJxF]5!WGZU)\!,Ec2 Wu #4" Y^jC7 f#7 t]0% qI"5 - ~ubH /LHA/>S.g+ . -#Ep$$ 1N%>W@`/X"'x& BdzROM^|DWAa8 |w Nn.Q#/J&Xrv2D+ Q` e:3KEU O:39 wH 6fq?9W1.g0i{A!?d<e?4j!(VR9dnK@f91@F(vUw($ y1YGf]HADx=9dWa~YlG -y q=KByn:_RN.k-M_"ny{A29DX \ ,dKR h=Rg_tC  ]Mq&^ V=} -*.C5|~u9t4 P=2@PTr_s/$l=< S |tmNqin }  -teT_4}o'&88{qg8Hh*kU> $GH8E)! p0 ;~-9c q&O_KCFSpZi +vi k gcSLO .z@o*5<$^"YicRUB @dV76Q S{;M "m)-/7X.!  MkK)x[oS(zSfQ[ - -dZ[Jgi -e 1mln6 X$' a+;1 6 I Az41[le> P< GvNM>!rg60, 2b hW k]{*&?~''(~  $]?bx= 2~+[ p( +. +CN Vc r +~  2AWn +7 +%0E[uM=D!f ~# + 6%8-^* + + # *4O gt}   + + +2 +=&H +oz      &2BRV\_os +yF# +7K)d'(& + +#'05:@FOX^dlV{9 [yo.79-{Q>4 T4WVn},er80K P(#`4tSol>dX-'G=bi,t72 \QY{B*IPsM. =|JEs 8/"% t$ }V\v!Ob\Dx' ?W T([+&hep_w/ 0i kLPHXd}\K725 ^L zz"+( n$ .+C+SC9EK9Kv1\>;l[(Y ? 3\|Dx{86 rSU$J Q, JUA 6 /oHa1oSe|??= #0~ :Lc!-544vy +ZL]B / +tXf'b"~("q;U6j: q\,nCMs #  +y (N01 @ kE/ fcIc:qIB'Z"z@ ]U  ]s7M-d }e U>uJLuAg^pjV Ag){Wll * (S- W=wk*VoAIRnC G7 ;:yQ cGY@-_ X! :rNEm,FgB-V#sT!i|Ye1T pD=z~'.CJNgEm!rkB [Pi AZJ VE<0W# {G1e,"k)thg`2lF7,?2?DrT qP> ;I  dE^8raCHbWBO +zbJYW&N? Z*hu.6vG`=p'1 Xp@H6sTC_t$['b$ D&K JO #Qm>f;6M &(m?2u*j.Xpmk_!N`vFg0|< 5Oq w#C%zL= J]2xFs<FP|l1l2m`%GO#; #O/ tu8 H |qh@!> ji+ (-iH= f*9 " )s`(P S9=&sj8H @EL$C^R"MVF |]c9 ~X 6K ; v>D/n:W ZQe) 8<Yi +lc aY FR6&p0]R}Mkr R A;0 [BPZ@aowuz kA3+X3 i)1k7{@<b +.2/%t: 8 Ty%'MTRv* %jaxaFyd`hx K 3 + <g h:1 ?@9~SUC}=7hJ{pH^G 7 f ~pAO Dj!Gqf} /%<KTq'P5;io 5B6U[$wvXGab fAIyq)>zc/uf5I7*w#BMS>5%-&+wN^c5%_;oN4QY:I HL,D "!}& +_x$-h3"5y % ~_) xZm^eU)Lw' ^IVEnR ?< +Y IZ eOFbT 3)BN [Y<xPAa\1hX$ ynS3uMR2+WV]E 3Mc +4m4O|o +{&3rV ZQ 9*~U{9L*jKn.D a  dx KS m):8g\z]W,^_`0 ]5R.d 3[QwODd@ 2G_Z`9rF<&8$NRHv4+ g  lj!dtn6 Nf}4. u~0,QU Invalid option "%s" Usage: %s [option ... ] [file ... ] @@ -269,7 +267,7 @@ (Unnamed Buffer)(Unnamed Template)(Varies)(clean)(invalid UTF-8 string)(modified)(none)1 Layer1 layer15 degrees %s16:1 (1600%)1:1 (100%)1:16 (6.25%)1:2 (50%)1:4 (25%)1:8 (12.5%)2:1 (200%)2D Transform...4:1 (400%)8:1 (800%)<%s><>For optimal GIMP performance, some settings may have to be adjusted.The GIMP - GNU Image Manipulation Program Copyright (C) 1995-2004 Spencer Kimball, Peter Mattis and the GIMP Development Team.The GIMP tips file could not be parsed!Your GIMP tips file appears to be missing!A file named '%s' already exists.A_dd to SelectionA_ngleAbout The GIMPActionActivate the _focused imageActive FiltersAdaptive supersamplingAddAdd Alpha C_hannelAdd Alpha ChannelAdd AnchorAdd ChannelAdd Color to ColormapAdd Guide: Add GuidesAdd Horizontal GuideAdd La_yer Mask...Add LayerAdd Layer MaskAdd PathAdd StrokeAdd Text LayerAdd Vertical GuideAdd a Mask to the LayerAdd color from BGAdd color from FGAdd layer maskAdd text to the imageAdd the current color to the color historyAdd the selected filter to the list of active filters.Add to palette %sAdd to the current selectionAdding theme '%s' (%s) -AdditionAdditional Input ControllersAdjust Brightness and ContrastAdjust Color BalanceAdjust Color CurvesAdjust Color LevelsAdjust brightness and contrastAdjust color balanceAdjust color curvesAdjust color levelsAdjust hue / lightness / saturationAdjust hue and saturationAdjust levels automaticallyAdjustmentAdvanced optionsAffect:Affected Area %sAirbrushAirbrush with variable pressureAl_pha to SelectionAlignedAlignmentAll ChannelsAll FilesAll Files (*.*)All image and undo data which doesn't fit into the Tile Cache will be written to a swap file. This file should be located on a local filesystem with enough free space (several hundred MB). On a UNIX system, you may want to use the system-wide temp-dir ("/tmp" or "/var/tmp").Allow completely transparent regions to be filledAllow completely transparent regions to be selectedAllow enlarging %sAlphaAlpha to SelectionAlpha:An image of the choosen size will use more memory than what is configured as "Maximum Image Size" in the Preferences dialog (currently %s).An_imationAnchor Floating SelectionAnchor floating layerAnchor floating selectionAngle:Anti erase %sAntialiasingAppearanceApply Layer MaskApply Layer _MaskApply ThresholdApply layer maskAre you sure you want to delete '%s' from the list and from disk?Are you sure you want to delete template '%s' from the list and from disk?As in _PreferencesAsk for confirmation before closing an image without saving.Aspect Ratio:Aspect ratio:Attach ParasiteAttach Parasite to ImageAttach Parasite to ItemAttach parasiteAuthor:AutoAuto _Follow Active ImageAuto shrinkAuto shrink selectionAuto-resize windowAutoloadAutomatically DetectedAvailable FiltersAvailable Types:BG color fillB_rightness-Contrast...B_uffersBackgroundBackground colorBackground color set to:Background: %d, %d, %dBackward (corrective)Base filled area on all visible layersBase selection on all visible layersBehindBevelBi-linearBlack & whiteBlack:Ble_nd Endpoints' ColorsBlen_dBlendBlend Endpoints' Opacit_yBlend: Blend: Invalid for indexed images.Blending...BlueBlue:BlurBlur or SharpenBo_rder...Border ChannelBorder SelectionBorder selection byBrightness-ContrastBrightness-Contrast does not operate on indexed layers.BrushBrush EditorBrush FoldersBrush UIBrush:BrushesBrushes MenuBucket FillBuffersBuffers MenuBurnButtBy ExtensionBy reverting the image to the state saved on disk, you will lose all changes, including all undo information.CMYKC_alibrate...C_olor PickerC_olumns:C_ombineCalibrate Monitor ResolutionCan't undo %sCan_vas Size...CancelCancel GuideCannot add layer mask of different dimensions than specified layer.Cannot add layer mask to a layer with no alpha channel.Cannot add layer mask to layer which is not part of an image.Cannot anchor this layer because it is not a floating selection.Cannot convert to a palette with more than 256 colors.Cannot create a new layer from the floating selection because it belongs to a layer mask or channel.Cannot create folder '%s': %sCannot create previewCannot crop because the current selection is empty.Cannot expand ${%s}Cannot float selection because the selected region is empty.Cannot raise a layer without alpha.Cannot save. Nothing is selected.Cannot stroke empty channel.Cannot stroke empty path.Canvas SizeCanvas _padding mode:Center X:CenteredChange Background ColorChange Colormap entryChange Foreground ColorChange Image ResolutionChange Image UnitChange Print SizeChange current layer or pathChange grid background colorChange grid foreground colorChange indexed paletteChange perspective of the layer or selectionChanging shortcut failed.ChannelChannel AttributesChannel Name:Channel cannot be lowered more.Channel cannot be raised higher.Channel colorChannel is already on the bottom.Channel is already on top.Channel to Sele_ctionChannel to SelectionChannel to selectionChannel:ChannelsChannels MenuCheck _size:Choose Stroke StyleCircleCl_earClearClear ChannelClear Undo HistoryClear all textClear errorsClear undo history...Click "Continue" to accept the settings above.Click "Continue" to create your personal GIMP folder.Click "Continue" to enter the GIMP user installation.Click "Continue" to proceed with the user installation.Click to connect this anchor with the selected endpoint.Click to create a new anchor. (try SHIFT)Click to create a new component of the path.Click to create a new path.Click to create previewClick to delete this anchor.Click to insert an anchor on the path. (try SHIFT)Click to make this node angular.Click to open up the path.Click to pick path to edit.Click to update preview +AdditionAdditional Input ControllersAdjust Brightness and ContrastAdjust Color BalanceAdjust Color CurvesAdjust Color LevelsAdjust brightness and contrastAdjust color balanceAdjust color curvesAdjust color levelsAdjust hue / lightness / saturationAdjust hue and saturationAdjust levels automaticallyAdjustmentAdvanced optionsAffect:Affected Area %sAirbrushAirbrush with variable pressureAl_pha to SelectionAlignedAlignmentAll ChannelsAll FilesAll Files (*.*)All image and undo data which doesn't fit into the Tile Cache will be written to a swap file. This file should be located on a local filesystem with enough free space (several hundred MB). On a UNIX system, you may want to use the system-wide temp-dir ("/tmp" or "/var/tmp").Allow completely transparent regions to be filledAllow completely transparent regions to be selectedAllow enlarging %sAlphaAlpha to SelectionAlpha:An image of the choosen size will use more memory than what is configured as "Maximum Image Size" in the Preferences dialog (currently %s).An_imationAnchor Floating SelectionAnchor floating layerAnchor floating selectionAngle:Anti erase %sAntialiasingAppearanceApply Layer MaskApply Layer _MaskApply ThresholdApply layer maskAre you sure you want to delete '%s' from the list and from disk?Are you sure you want to delete template '%s' from the list and from disk?As in _PreferencesAsk for confirmation before closing an image without saving.Aspect Ratio:Aspect ratio:Attach ParasiteAttach Parasite to ImageAttach Parasite to ItemAttach parasiteAuthor:AutoAuto _Follow Active ImageAuto shrinkAuto shrink selectionAuto-resize windowAutoloadAutomatically DetectedAvailable FiltersAvailable Types:BG color fillB_rightness-Contrast...B_uffersBackgroundBackground colorBackground color set to:Background: %d, %d, %dBackward (corrective)Base filled area on all visible layersBase selection on all visible layersBehindBevelBi-linearBlack & whiteBlack:Ble_nd Endpoints' ColorsBlen_dBlendBlend Endpoints' Opacit_yBlend: Blend: Invalid for indexed images.Blending...BlueBlue:BlurBlur or SharpenBo_rder...Border ChannelBorder SelectionBorder selection byBrightness-ContrastBrightness-Contrast does not operate on indexed layers.BrushBrush EditorBrush FoldersBrush UIBrush:BrushesBrushes MenuBucket FillBuffersBuffers MenuBurnButtBy ExtensionBy reverting the image to the state saved on disk, you will lose all changes, including all undo information.CMYKC_alibrate...C_olor PickerC_olumns:C_ombineCalibrate Monitor ResolutionCan't undo %sCan_vas Size...CancelCancel GuideCannot add layer mask of different dimensions than specified layer.Cannot add layer mask to a layer with no alpha channel.Cannot add layer mask to layer which is not part of an image.Cannot anchor this layer because it is not a floating selection.Cannot convert to a palette with more than 256 colors.Cannot create a new layer from the floating selection because it belongs to a layer mask or channel.Cannot create folder '%s': %sCannot create previewCannot crop because the current selection is empty.Cannot expand ${%s}Cannot float selection because the selected region is empty.Cannot raise a layer without alpha.Cannot save. Nothing is selected.Cannot stroke empty channel.Cannot stroke empty path.Canvas SizeCanvas _padding mode:Center X:Center Y:CenteredChange Background ColorChange Colormap entryChange Foreground ColorChange Image ResolutionChange Image UnitChange Print SizeChange current layer or pathChange grid background colorChange grid foreground colorChange indexed paletteChange perspective of the layer or selectionChanging shortcut failed.ChannelChannel AttributesChannel Name:Channel cannot be lowered more.Channel cannot be raised higher.Channel colorChannel is already on the bottom.Channel is already on top.Channel to Sele_ctionChannel to SelectionChannel to selectionChannel:ChannelsChannels MenuCheck _size:Choose Stroke StyleCircleCl_earClearClear ChannelClear Undo HistoryClear all textClear errorsClear undo history...Click "Continue" to accept the settings above.Click "Continue" to create your personal GIMP folder.Click "Continue" to enter the GIMP user installation.Click "Continue" to proceed with the user installation.Click to connect this anchor with the selected endpoint.Click to create a new anchor. (try SHIFT)Click to create a new component of the path.Click to create a new path.Click to create previewClick to delete this anchor.Click to insert an anchor on the path. (try SHIFT)Click to make this node angular.Click to open up the path.Click to pick path to edit.Click to update preview %s Click to force update even if preview is up-to-dateClick-Drag to change the shape of the curve. (SHIFT: symmetrical)Click-Drag to move the anchor around.Click-Drag to move the anchors around.Click-Drag to move the component around. (try SHIFT)Click-Drag to move the handle around. (try SHIFT)Click-Drag to move the path around.Click: selectClick: select Drag: moveClip resultClipboardClipped to bottom layerClipped to imageCloneClose %sClose all TabsClose all tabs?Close this TabCo_py PathColo_rsColorColor BalanceColor Display FiltersColor PickerColor Picker InformationColor _Balance...Color _dithering:Color balance operates only on RGB color layers.Color eraseColor index:Color:Color_mapColor_space:Colori_ze...Coloring _Type for SegmentColoring _Type for SelectionColorizeColorize operates only on RGB color layers.Colorize the ImageColorize the imageColormapColormap EditorColormap MenuColumns:Comme_nt:CommentCon_trast:Con_volveConfigure Color Display FiltersConfigure E_xtended Input Devices...Configure G_rid...Configure GridConfigure Image GridConfigure Keyboard ShortcutsConfigure _Keyboard Shortcuts...Configure selected filterConfigure selected filter: %sConfirm Image SizeConfirm ScalingConfirm Text EditingConfirm closing of unsa_ved imagesConflicting ShortcutsConical (asym)Conical (sym)Connect StrokesConstantConstraintsContextContext-dependent cursors are cool. They are enabled by default. However, they require overhead that you may want to do without.ContinueContributions byConvertConvert EdgeConvert Image to GrayscaleConvert Image to IndexedConvert Image to Indexed ColorsConvert Image to RGBConvert imageConverting to indexed (stage 2)...Converting to indexed (stage 3)...Converting to indexed...ConvolveConvolve Type %sCopy NamedCopy _VisibleCopying file '%s' from '%s'...Copyright:Corrupt segment %d in gradient file '%s'.Could not create '%s': %sCould not create temporary file for '%s': %sCould not delete '%s': %sCould not find GIMP help browser.Could not open '%s' for reading: %sCould not open '%s' for writing: %sCould not open thumbnail '%s': %sCould not read %d bytes from '%s': %sCould not seek in XCF file: %sCould not start the GIMP help browser plug-in.Count:Cr_op LayerCreate New Doc_kCreate New TemplateCreate a New ImageCreate a New LayerCreate a New TemplateCreate a new display for this imageCreate a new image from the selected templateCreate a new templateCreate and edit images or photographsCreate and edit pathsCreate path from textCreate selection from pathCreating Preview ...Creating folder '%s'...CropCrop & ResizeCrop & Resize InformationCrop ImageCrop LayerCrop imageCrop or Resize an imageCrop: Crosshair onlyCu_tCu_t Named...Cubic (Best)Current _StatusCurrent height:Current layer onlyCurrent statusCurrent width:CursorCursor _mode:Cursor re_ndering:Curve TypeCurvesCurves for indexed layers cannot be adjusted.CustomCustom colorCustom gradientCustom p_adding color:CutCut NamedCyanCyan:D_uplicate BrushD_uplicate ChannelD_uplicate GradientD_uplicate LayerD_uplicate PaletteD_uplicate PathD_uplicate PatternD_uplicate Template...Dark check colorDarken onlyDash dot dot...Dash dot...Dash pattern:Dash preset:DashedDate:DebugDefault Appearance in Fullscreen ModeDefault Appearance in Normal ModeDefault GridDefault Image GridDefault _interpolation:Default _layer & channel preview size:Default _threshold:Delete AnchorDelete AnchorsDelete Layer Mas_kDelete Layer MaskDelete ObjectDelete SegmentDelete TemplateDelete brushDelete channelDelete colorDelete gradientDelete layerDelete layer maskDelete paletteDelete pathDelete patternDelete saved options...Delete the selected bufferDelete the selected templateDelete this imageDelete vectorsDeleting "%s" failed: %sDense dotsDesaturateDesaturate operates only on RGB color layers.DescriptionDesignDevice StatusDevicesDialogsDialogs MenuDiamondDifferenceDirect ColorDisable Layer MaskDisable Quick MaskDiscard Text InformationDisplayDisplay NavigationDisplay _Filters...Display proceduresDisplay type:Displaying [%0.6f, %0.6f]DissolveDistance:Distance: %0.6fDitheringDivideDo a _fresh user installationDo you really want to reset all filters to default values?Do you really want to reset all tool options to default values?Do you want to replace it with the image you are saving?Do_n't saveDockableDocument Histor_yDocument HistoryDocumentsDocuments MenuDod_geBurnDodgeDodge or Burn strokesDodge/BurnDouble dashedDrag AnchorDrag AnchorsDrag CurveDrag HandleDrag PathDrag: moveDraw in inkDrawableDrawable modDrawable proceduresDrop New LayerDrop New PathDue to lack of any fonts, text functionality is not available.Dump events from this controllerDuplicate brushDuplicate channelDuplicate gradientDuplicate layerDuplicate paletteDuplicate pathDuplicate patternDuplicate the selected templateEEK: can't undoE_xport Path...E_xtra SmallEdge BehaviourEdge-De_tectEditEdit Channel AttributesEdit Channel ColorEdit Color Palette EntryEdit Colormap EntryEdit Layer AttributesEdit Layer MaskEdit ModeEdit Palette ColorEdit Path AttributesEdit Quick Mask AttributesEdit Quick Mask ColorEdit TemplateEdit brushEdit channel attributesEdit colorEdit colormap entry #%dEdit gradientEdit layer attributesEdit paletteEdit path attributesEdit patternEdit proceduresEdit the selected templateEllipse SelectEmpty ChannelEmpty LayerEmpty PathEmpty Text LayerEmpty variable name in environment file %sEn_hanceEnable Quick MaskEnable dithering of _transparencyEnable this controllerEnable to display a handy GIMP tip on startup.Enable to display tooltips.EnormousEnter a name for the merged paletteEnter a name for the saved optionsEnter a name for this bufferEnter a name for this templateEnter a new name for the saved optionsEnter location (URI):EnvironmentEnvironment FoldersEqualizeEqualize does not operate on indexed layers.Erase to background or transparencyEraserError Co_nsoleError ConsoleError Console MenuError saving XCF file: %sError while parsing '%s' in line %d: %sError while reading '%s': %sError while reading brush file '%s': %sError while writing '%s': %sError writing XCF: %sError writing file '%s': %sError writing to '%s': %sError writing to temporary file for '%s': %s No file has been created.Error writing to temporary file for '%s': %s @@ -280,8 +278,8 @@ (%s)Floating Selection to LayerFloating selection to layerFloating selectionsFloyd-Steinberg (normal)Floyd-Steinberg (reduced color bleeding)FocusFolderFoldersFont FoldersFont UIFont:FontsFonts MenuFor a proper GIMP installation, a folder named '%s' needs to be created.Force auto-hinterForegroundForeground & background colors. The black and white squares reset colors. The arrows swap colors. Double click to open the color selection dialog.Foreground colorForeground color set to:Foreground: %d, %d, %dForward (traditional)Fr_om PathFree SelectFree selectFreehandFrom _ThemeFrom _windowing system (currently %d x %d dpi)From left to rightFrom right to leftFrom selectionFrom themeFu_zzy SelectFullscr_eenFuzzy SelectGIMPGIMP ExtensionGIMP MessageGIMP Performance TuningGIMP Plug-InGIMP StartupGIMP Text EditorGIMP Tip of the DayGIMP User InstallationGIMP XCF imageGIMP could not initialize the graphical user interface. Make sure a proper setup for your display environment exists.GIMP help browserGIMP is not properly installed for the current user. User installation was skipped because the '--no-interface' flag was used. -To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Generate optimum paletteGet Monitor ResolutionGiganticGimprc proceduresGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient:GradientsGradients MenuGrain extractGrain mergeGrayGrayscaleGreenGreen:GridGrid line spacingGrow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_counter-clockwise hue)HSV (clockwise _hue)HTML notation:H_eight:H_elp browser to use:Handle position: %0.6fHard edgeHard lightHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHelp proceduresHex:HighlightsHint for the _docks:Hint for the _toolbox:HintingHinting alters the font outline to produce a crisp bitmap at small sizesHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB color layers.Hue-_Saturation...Hue:HugeI_con & TextI_mageI_mport Path...I_nterpolation:I_nterval:IconIcon & descIcon & textIf available, hints from the font are used but you may prefer to always use the automatic hinterIf enabled, the move tool changes the active layer or path when a layer or path is being picked. This used to be the default behaviour in older versions.If you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.Illegal variable name in environment file %s: %sImageImage + GridImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage ThumbnailsImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage maskImage resolution is out of bounds, using the default resolution instead.Image sizeImage sourceImage typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport paletteImport pathsImported PathIn_kIn_vertIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorIndexed Color ConversionIndexed color layers are always scaled without interpolation. The chosen interpolation type will affect channels and masks only.Info WindowInitial zoom _ratio:Initialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' -InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratioKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard EventsKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine +To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Generate optimum paletteGet Monitor ResolutionGiganticGimprc proceduresGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient file '%s' is corrupt: Segments do not span the range 0-1.Gradient:GradientsGradients MenuGrain extractGrain mergeGrayGrayscaleGreenGreen:GridGrid line spacingGrow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_counter-clockwise hue)HSV (clockwise _hue)HTML notation:H_eight:H_elp browser to use:Handle position: %0.6fHard edgeHard lightHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHelp proceduresHex:HighlightsHint for the _docks:Hint for the _toolbox:HintingHinting alters the font outline to produce a crisp bitmap at small sizesHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB color layers.Hue-_Saturation...Hue:HugeI_con & TextI_mageI_mport Path...I_nterpolation:I_nterval:IconIcon & descIcon & textIf available, hints from the font are used but you may prefer to always use the automatic hinterIf enabled, the move tool changes the active layer or path when a layer or path is being picked. This used to be the default behaviour in older versions.If you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.Illegal variable name in environment file %s: %sImageImage + GridImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage ThumbnailsImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage maskImage resolution is out of bounds, using the default resolution instead.Image sizeImage sourceImage typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport paletteImport pathsImported PathIn_kIn_vertIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorIndexed Color ConversionIndexed color layers are always scaled without interpolation. The chosen interpolation type will affect channels and masks only.Info WindowInitial zoom _ratio:Initialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' +InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard EventsKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine spacing:Line Width:Line _Style:Line style used for the grid.LinearLinked itemLoadLoad CurvesLoad LevelsLoad Right Color Fr_omLoad curves settings from fileLoad levels settings from fileLoad text from fileLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower Path to _BottomLower channelLower channel to bottomLower layerLower layer to bottomLower pathLower path to bottomM_agnifyM_asterM_ove to Screen...Ma_pMagentaMagenta:MagnifyMake _transparentManage Loadable ModulesMarching _ants speed:Mask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:Max Depth:Maximum _filesize for thumbnailing:Maximum _new image size:Maximum color differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMeasure the rulers and enter their lengths:Median:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMerge vectorsMessage proceduresMessage repeated %d times.Message repeated once.Messages are redirected to stderr.MidtonesMigrate User SettingsMinimal number of _undo levels:MiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMouse WheelMouse Wheel EventsMoveMove AnchorsMove ChannelMove Floating SelectionMove GuideMove Guide: Move LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove ToolMove itemMove layers & selectionsMove selectionMove the current layerMove the current pathMove the selected filter downMove the selected filter upMove to Screen...Move: MultiplyN_umber of colors:Na_vigationNa_vigation WindowNa_vigation preview size:NameName:NavigationNew ChannelNew Channel ColorNew Channel OptionsNew Color from _BGNew Color from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channelNew channel with last valuesNew channel...New color from BGNew color from FGNew gradientNew importNew layerNew layer with last valuesNew layer...New paletteNew path with last valuesNew path...New patternNew vectorsNo brushes available for use with this tool.No filter selectedNo linear gradients found in '%s'No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of _processors to use:Number of grid linesNumber of layers:O_ther...OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset by x/_2, y/2Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the palette selection dialogOpen the pattern selection dialogOpen the selected entryOpening '%s' failed: %sOpening '%s' failed: %sOptions: @@ -331,10 +329,10 @@ The GIMP %d.%d User InstallationWhen enabled the dialog automatically follows the image you are working on.When enabled, GIMP will show mnemonics in menus.When enabled, all paint tools will show a preview of the current brush's outline.When enabled, an image will become the active image when its image window receives the focus. This is useful for window managers using "click to focus".When enabled, dialogs will show a help button that gives access to the related help page. Without this button, the help page can still be reached by pressing F1.When enabled, menus can be torn off.When enabled, pressing F1 will open the help browser.When enabled, the GIMP will not save if the image is unchanged since opening it.When enabled, the GIMP will use a different info window per image view.When enabled, the X server is queried for the mouse's current position on each motion event, rather than relying on the position hint. This means painting with large brushes should be more accurate, but it may be slower. Perversely, on some X servers enabling this option results in faster painting.When enabled, the cursor will be shown over the image while using a paint tool.When enabled, the grid is visible by default. This can also be toggled with the "View->Show Grid" command.When enabled, the guides are visible by default. This can also be toggled with the "View->Show Guides" command.When enabled, the image window will automatically resize itself, when zooming into and out of images.When enabled, the image window will automatically resize itself, whenever the physical image size changes.When enabled, the layer boundary is visible by default. This can also be toggled with the "View->Show Layer Boundary" command.When enabled, the menubar is visible by default. This can also be toggled with the "View->Show Menubar" command.When enabled, the rulers are visible by default. This can also be toggled with the "View->Show Rulers" command.When enabled, the scrollbars are visible by default. This can also be toggled with the "View->Show Scrollbars" command.When enabled, the selected brush will be used for all tools.When enabled, the selected gradient will be used for all tools.When enabled, the selected pattern will be used for all tools.When enabled, the selection is visible by default. This can also be toggled with the "View->Show Selection" command.When enabled, the statusbar is visible by default. This can also be toggled with the "View->Show Statusbar" command.When enabled, this will ensure that each pixel of an image gets mapped to a pixel on the screen.When enabled, this will ensure that the full image is visible after a file is opened, otherwise it will be displayed with a scale of 1:1.When enabled, you can change keyboard shortcuts for menu items by hitting a key combination while the menu item is highlighted.WhiteWhite Balance operates only on RGB color layers.WidthWidth:Window ManagementWindow Manager HintsWindow PositionsWriting '%s' XXCF error: unsupported XCF file version %d encounteredXCF warning: version 0 of XCF file format did not save indexed colormaps correctly. -Substituting grayscale map.YYellowYellow:You are trying to create an image with a size of %s.You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your GIMP installation is incomplete:Your input device settings will be reset to default values the next time you start GIMP.Your keyboard shortcuts will be reset to default values the next time you start GIMP.Your window setup will be reset to default values the next time you start GIMP.Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_All_Anchor Layer_Antialiasing_Arbitrary Rotation..._Artistic_Aspect_Auto_B_BG Color_Background color:_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Bucket Fill_Buffer_By Color_By Color Select_C_Cap style:_Channels_Clear Errors_Clear Undo History_Clone_Close_Close Tab_Clouds_Color Tools_Colors_Configure Color and Opacity..._Context_Context Help_Copy_Copy Named..._Create Image from Template..._Crop & Resize_Crop Image_Curved_Curves..._Dark Check Color_Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Desaturate_Detach Tab_Device Status_Dialogs_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Ellipse Select_Enable layer & channel previews_Enormous_Equalize_Eraser_FG Color_File_Fill with:_Fit Image in Window_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground color:_Free Select_G_Generic_Gigantic_Gradient_Gradients_Grayscale_Grayscale copy of layer_Grow..._Guides_Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Info Window_Intersect with Selection_Invert_Join style:_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Left Neighbor's Right Endpoint_Levels..._Light Check Color_Light Effects_Lightness:_Line Style_Linear_Linked_Load Left Color From_Lower Channel_Lower Layer_Lower Path_M_Manually_Map_Mask_Mask to Selection_Maximum number of colors:_Measure_Medium_Merge Palettes..._Merge imported paths_Migrate GIMP 2.0 user settings_Misc. Stuff_Miter limit:_Mode_Module Manager_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._Padding Color_Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preferences_Preview_Preview Size_Previous tip_Print Size..._Properties_Quick Mask Active_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Reassign shortcut_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Remove unused colors from final palette_Render_Replace_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Order & Visibility_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Right Endpoint_Right Neighbor's Left Endpoint_Rotate_Saturation:_Save_Save Left Color To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Scale imported paths to fit image_Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Show Image Selection_Show in Toolbox_Sinusoidal_Small_Smudge_Snap distance:_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tool_Tools_Transfer layer's alpha channel_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Visible_Web_Web browser to use:_White (full opacity)_White Balance_Width:_Wrap around_X resolution:_X:_Xtns_Y_Y resolution:_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for icon typeinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetermillimetersminuten/apercentpicapicaspixelpixelspixels/%apixels/%spointpointssecondtips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: gimp 2.0 +Substituting grayscale map.YYellowYellow:You are trying to create an image with a size of %s.You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your GIMP installation is incomplete:Your input device settings will be reset to default values the next time you start GIMP.Your keyboard shortcuts will be reset to default values the next time you start GIMP.Your window setup will be reset to default values the next time you start GIMP.Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_All_Anchor Layer_Antialiasing_Arbitrary Rotation..._Artistic_Aspect_Auto_B_BG Color_Background color:_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Bucket Fill_Buffer_By Color_By Color Select_C_Cap style:_Channels_Clear Errors_Clear Undo History_Clone_Close_Close Tab_Clouds_Color Tools_Colors_Configure Color and Opacity..._Context_Context Help_Copy_Copy Named..._Create Image from Template..._Crop & Resize_Crop Image_Curved_Curves..._Dark Check Color_Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Desaturate_Detach Tab_Device Status_Dialogs_Discard Changes_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Ellipse Select_Enable layer & channel previews_Enormous_Equalize_Eraser_FG Color_File_Fill with:_Fit Image in Window_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground color:_Free Select_G_Generic_Gigantic_Gradient_Gradients_Grayscale_Grayscale copy of layer_Grow..._Guides_Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Info Window_Intersect with Selection_Invert_Join style:_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Left Neighbor's Right Endpoint_Levels..._Light Check Color_Light Effects_Lightness:_Line Style_Linear_Linked_Load Left Color From_Lower Channel_Lower Layer_Lower Path_M_Manually_Map_Mask_Mask to Selection_Maximum number of colors:_Measure_Medium_Merge Palettes..._Merge imported paths_Migrate GIMP 2.0 user settings_Misc. Stuff_Miter limit:_Mode_Module Manager_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._Padding Color_Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preferences_Preview_Preview Size_Previous tip_Print Size..._Properties_Quick Mask Active_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Reassign shortcut_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Remove unused colors from final palette_Render_Replace_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Order & Visibility_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Right Endpoint_Right Neighbor's Left Endpoint_Rotate_Saturation:_Save_Save Left Color To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Scale imported paths to fit image_Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Show Image Selection_Show in Toolbox_Sinusoidal_Small_Smudge_Snap distance:_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tool_Tools_Transfer layer's alpha channel_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Visible_Web_Web browser to use:_White (full opacity)_White Balance_Width:_Wrap around_X resolution:_X:_Xtns_Y_Y resolution:_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for icon typeinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetermillimetersminuten/apercentpicapicaspixelpixelspixels/%apixels/%spointpointssecondtips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: gimp 2.0 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-19 03:11+0100 -PO-Revision-Date: 2004-12-16 17:36+0100 +POT-Creation-Date: 2004-12-28 16:58+0100 +PO-Revision-Date: 2004-12-20 08:24+0100 Last-Translator: Marco Ciampa Language-Team: gimp@erlug.linux.it MIME-Version: 1.0 @@ -372,7 +370,7 @@ (buffer senza nome)(modello senza nome)(Varie)(pulito)(stringa UTF-8 non valida)(modificato)(nessuno)Livello 11 livello15 gradi %s16:1 (1600%)1:1 (100%)1:16 (6.25%)1:2 (50%)1:4 (25%)1:8 (12.5%)2:1 (200%)Trasformazione 2D...4:1 (400%)8:1 (800%)<%s><>Per una prestazione ottimale di GIMP, è necessario regolare alcuni parametri.The GIMP - GNU Image Manipulation Program Copyright (C) 1995-2004 Spencer Kimball, Peter Mattis e il team di sviluppo di GIMP.

Impossibile elaborare il file dei suggerimenti di GIMP!

Manca il file dei suggerimenti di GIMP!

Un file di nome '%s' esiste già.A_ggiungi alla selezioneA_ngoloInformazioni su GIMPAzioneAttiva l'immagine in _focusFiltri attiviAdattivo con supersamplingAggiungiAggiungi _canale alfaAggiunta canale alfaAggiungi àncoraAggiungi canaleAggiungi colore alla mappa coloreAggiungi guida:Aggiungi righelliAggiungi guida orizzontaleAggi_ungi maschera di livello...Aggiungi livelloAggiungi maschera di livelloAggiungi tracciatiAggiungi trattoAggiungi livello testoAggiungi guida verticaleAggiungi una maschera al livelloAggiungi colore dallo SFAggiungi colore dal PPAggiungi maschera di livelloAggiungi testo all'immagineAggiungi il colore corrente allo cronologia coloriAggiungi il filtro selezionato all'elenco dei filtri attivi.Aggiungi alla tavolozza %sAggiungi alla selezioneAggiunta tema '%s' (%s) -AggiuntaController di ingresso aggiuntiviRegola luminosità e contrastoRegola il bilanciamento del coloreRegola le curve di coloreRegola i livelli coloreRegola luminosità e contrastoRegola il bilanciamento coloreRegola le curve di coloreRegola i livelli coloreRegola tonalità / luminosità / saturazioneRegola tonalità e saturazioneRegola livelli automaticamenteRegolazioneOpzioni avanzateInfluenza:Area coinvolta %sAerografoAerografo con pressione variabileAl_fa a selezioneAllineatoAllineamentoTutti i canaliTutti i fileTutti i file (*.*)Tutte le immagini e le informazioni di annullamento che non rientrano nella Cache Immagine verranno scritte in un file temporaneo. Questo file dovrebbe essere disposto in un filesystem con abbastanza spazio libero (diverse centinaia di Mbyte). Su un sistema UNIX, potete utilizzare la cartella dei file temporanei di sistema ("/tmp" o "/var/tmp").Permetti che le regioni completamente trasparenti vengano riempitePermetti la selezione di aree completamente trasparentiPermetti ingrandimento %sAlfaAlfa a selezioneAlfa:Un'immagine dell'ampiezza scelta utilizzerà più memoria di quella che è stata configurata come "Dimensione massima immagine" nella finestra delle preferenze (attualmente %s).An_imazioneÀncora selezione fluttuanteÀncora il livello fluttuanteÀncora selezione fluttuanteAngolo:Anti gomma %sAntialiasingAspettoApplica maschera di livelloApplica _maschera di livelloApplica sogliaApplica maschera di livelloSiete sicuri di volere eliminare '%s' dall'elenco e dal disco?Siete sicuri di volere eliminare il modello '%s' dall'elenco e dal disco?Come in _preferenzeChiedi conferma prima di chiudere un'immagine senza salvarla.Proporzioni:Rapporto di aspetto:Allega parasiteAllega parasite all'immagineAllega parasite all'elementoAllega parasiteAutore:Auto_Segui immagine attivaRiduzione automaticaAuto riduzione della selezioneAuto-ridimensionamento finestraAutocaricamentoRilevato automaticamenteFiltri disponibiliTipi disponibili:Riempimento colore dello sfondoLuminosità-Cont_rasto..._BufferSfondoColore di sfondoColore di sfondo impostato a:Sfondo: %d, %d, %dIndietro (correttivo)Area base riempita su tutti i livelli visibiliSelezione di base su tutti i livelli visibiliDietroSpigoloBi-lineareBianco e neroNero:Sfumatura _colori estremiS_fumaturaSfumaturaSfumatura _opacità estremiSfumatura:Sfumatura: non valida per immagini indicizzate.Sfumatura in corso...BluBlu:SfumataSfoca o contrasta_Bordo...Bordo canaleSelezione bordoSelezione bordo diLiminosità-ContrastoLuminosità e contrasto non operano su livelli indicizzati.PennelloEditor pennelliCartelle pennelliPennello UIPennello:PennelliMenu pennelliRiempimento coloreBufferMenu bufferBruciaEstremitàPer estensioneRicaricando l'immagine allo stato salvato su disco, perderai tutti i cambiamenti, incluse tutte le informazioni di annullamento.CMYKC_alibratura...Prelievo c_oloreC_olonne:C_ombinaCalibra risoluzione monitorImpossibile annullare %sDimensione s_uperficie...CancellaElimina guidaImpossibile aggiungere maschera livello con dimensioni diverse dal livello specificato.Impossibile aggiungere una maschera livello ad un livello senza canale alfa.Impossibile aggiungere una maschera di livello ad un livello che non è parte di un'immagine.Non posso ancorare questo livello perchè non è una selezione fluttuante.Impossibile convertire in una tavolozza con più di 256 colori.Impossibile creare un nuovo livello da una selezione fluttuante perché appartiene ad una maschera di livello o canale.Impossibile creare la cartella '%s': %sImpossibile creare l'anteprimaNon è possibile ritagliare perché la regione selezionata è vuota.Impossibile espandere $(%s)Non è possibile la selezione fluttuante perché la regione selezionata è vuotaImpossibile alzare un livello senza alfa.Impossibile salvare, non è stato selezionato nulla.Impossibile delineare un canale vuoto.Impossibile tratteggiare un tracciato vuoto.Dimensione superficieModalità riempimento su_perficie:Centro X:CentratoCambia colore dello sfondoCambia voce mappa coloreCambia colore di primo pianoCambia risoluzione immagineCambia unità immagineCambia dimensione di stampaCambia livello corrente o tracciatoCambia il colore di sfondo della grigliaCambia il colore di primo piano della grigliaCambia tavolozza indicizzataCambia la prospettiva del livello o della selezioneFallito il cambiamento della scorciatoia.CanaleAttributi di canaleNome canale:Il canale non può essere abbassato ulteriormente.Il canale non può essere alzato ulteriormente.Colore canaleIl canale è già in fondo.Il canale è già in cima._Canale alla selezioneCanale a selezioneCanale a selezioneCanale:CanaliMenu canaliControllo _dimensione:Scegli stile di disegnoCerchioCanc_ellaCancellaCancella canaleCancella cronologia annullamentiCancella tutto il testoCancella gli erroriCancella la cronologia annullamenti...Fare clic su "Continua" per accettare le impostazioni.Fare clic su "Continua" per creare la tua cartella personale di GIMP.Fare clic su "Continua" per avviare l'installazione utente.Fare clic su "Continua" per procedere con l'installazione utente.Fare clic per connettere quest'àncora con il punto finale selezionato.Fare clic per creare una nuova àncora. (provare con MAIUSC)Fare clic per creare un nuovo componente del tracciato.Fare clic per creare un nuovo tracciato.Fare clic per creare l'anteprimaFare clic per cancellare quest'àncora.Fare clic per inserire un'àncora nel tracciato. (provare MAIUSC)Fare clic per render angolare questo nodo.Fare clic per aprire il percorso.Fare clic sul tracciato per modificarlo.Fare clic per aggiornare l'anteprima +AggiuntaController di ingresso aggiuntiviRegola luminosità e contrastoRegola il bilanciamento del coloreRegola le curve di coloreRegola i livelli coloreRegola luminosità e contrastoRegola il bilanciamento coloreRegola le curve di coloreRegola i livelli coloreRegola tonalità / luminosità / saturazioneRegola tonalità e saturazioneRegola livelli automaticamenteRegolazioneOpzioni avanzateInfluenza:Area coinvolta %sAerografoAerografo con pressione variabileAl_fa a selezioneAllineatoAllineamentoTutti i canaliTutti i fileTutti i file (*.*)Tutte le immagini e le informazioni di annullamento che non rientrano nella Cache Immagine verranno scritte in un file temporaneo. Questo file dovrebbe essere disposto in un filesystem con abbastanza spazio libero (diverse centinaia di Mbyte). Su un sistema UNIX, potete utilizzare la cartella dei file temporanei di sistema ("/tmp" o "/var/tmp").Permetti che le regioni completamente trasparenti vengano riempitePermetti la selezione di aree completamente trasparentiPermetti ingrandimento %sAlfaAlfa a selezioneAlfa:Un'immagine dell'ampiezza scelta utilizzerà più memoria di quella che è stata configurata come "Dimensione massima immagine" nella finestra delle preferenze (attualmente %s).An_imazioneÀncora selezione fluttuanteÀncora il livello fluttuanteÀncora selezione fluttuanteAngolo:Anti gomma %sAntialiasingAspettoApplica maschera di livelloApplica _maschera di livelloApplica sogliaApplica maschera di livelloSiete sicuri di volere eliminare '%s' dall'elenco e dal disco?Siete sicuri di volere eliminare il modello '%s' dall'elenco e dal disco?Come in _preferenzeChiedi conferma prima di chiudere un'immagine senza salvarla.Proporzioni:Rapporto di aspetto:Allega parasiteAllega parasite all'immagineAllega parasite all'elementoAllega parasiteAutore:Auto_Segui immagine attivaRiduzione automaticaAuto riduzione della selezioneAuto-ridimensionamento finestraAutocaricamentoRilevato automaticamenteFiltri disponibiliTipi disponibili:Riempimento colore dello sfondoLuminosità-Cont_rasto..._BufferSfondoColore di sfondoColore di sfondo impostato a:Sfondo: %d, %d, %dIndietro (correttivo)Area base riempita su tutti i livelli visibiliSelezione di base su tutti i livelli visibiliDietroSpigoloBi-lineareBianco e neroNero:Sfumatura _colori estremiS_fumaturaSfumaturaSfumatura _opacità estremiSfumatura:Sfumatura: non valida per immagini indicizzate.Sfumatura in corso...BluBlu:SfumataSfoca o contrasta_Bordo...Bordo canaleSelezione bordoSelezione bordo diLiminosità-ContrastoLuminosità e contrasto non operano su livelli indicizzati.PennelloEditor pennelliCartelle pennelliPennello UIPennello:PennelliMenu pennelliRiempimento coloreBufferMenu bufferBruciaEstremitàPer estensioneRicaricando l'immagine allo stato salvato su disco, perderai tutti i cambiamenti, incluse tutte le informazioni di annullamento.CMYKC_alibratura...Prelievo c_oloreC_olonne:C_ombinaCalibra risoluzione monitorImpossibile annullare %sDimensione s_uperficie...CancellaElimina guidaImpossibile aggiungere maschera livello con dimensioni diverse dal livello specificato.Impossibile aggiungere una maschera livello ad un livello senza canale alfa.Impossibile aggiungere una maschera di livello ad un livello che non è parte di un'immagine.Non posso ancorare questo livello perchè non è una selezione fluttuante.Impossibile convertire in una tavolozza con più di 256 colori.Impossibile creare un nuovo livello da una selezione fluttuante perché appartiene ad una maschera di livello o canale.Impossibile creare la cartella '%s': %sImpossibile creare l'anteprimaNon è possibile ritagliare perché la regione selezionata è vuota.Impossibile espandere $(%s)Non è possibile la selezione fluttuante perché la regione selezionata è vuotaImpossibile alzare un livello senza alfa.Impossibile salvare, non è stato selezionato nulla.Impossibile delineare un canale vuoto.Impossibile tratteggiare un tracciato vuoto.Dimensione superficieModalità riempimento su_perficie:Centro X:Centro Y:CentratoCambia colore dello sfondoCambia voce mappa coloreCambia colore di primo pianoCambia risoluzione immagineCambia unità immagineCambia dimensione di stampaCambia livello corrente o tracciatoCambia il colore di sfondo della grigliaCambia il colore di primo piano della grigliaCambia tavolozza indicizzataCambia la prospettiva del livello o della selezioneFallito il cambiamento della scorciatoia.CanaleAttributi di canaleNome canale:Il canale non può essere abbassato ulteriormente.Il canale non può essere alzato ulteriormente.Colore canaleIl canale è già in fondo.Il canale è già in cima._Canale alla selezioneCanale a selezioneCanale a selezioneCanale:CanaliMenu canaliControllo _dimensione:Scegli stile di disegnoCerchioCanc_ellaCancellaCancella canaleCancella cronologia annullamentiCancella tutto il testoCancella gli erroriCancella la cronologia annullamenti...Fare clic su "Continua" per accettare le impostazioni.Fare clic su "Continua" per creare la tua cartella personale di GIMP.Fare clic su "Continua" per avviare l'installazione utente.Fare clic su "Continua" per procedere con l'installazione utente.Fare clic per connettere quest'àncora con il punto finale selezionato.Fare clic per creare una nuova àncora. (provare con MAIUSC)Fare clic per creare un nuovo componente del tracciato.Fare clic per creare un nuovo tracciato.Fare clic per creare l'anteprimaFare clic per cancellare quest'àncora.Fare clic per inserire un'àncora nel tracciato. (provare MAIUSC)Fare clic per render angolare questo nodo.Fare clic per aprire il percorso.Fare clic sul tracciato per modificarlo.Fare clic per aggiornare l'anteprima %s fare clic per forzare l'aggiornamento anche se l'anteprima è aggiornataFare clic e trascinare per cambiare la forma della curva. (MAIUSC: simmetricamente)Fare clic e trascinare per spostare l'àncora.Fare clic e trascinare per spostare le àncore.Fare clic e trascinare per spostare l'àncora. (prova MAIUSC)Fare clic e trascinare per spostare l'àncora. (prova MAIUSC)Fare clic e trascinare per spostare il tracciato.Clic: selezioneClic: selezione Trascina: spostaAggancia risultatoAppuntiLegato al livello inferioreLegato all'immagineDuplicaChiudere %sChiudi tutte le schedeChiudere tutte le schede?Chiudi questa schedaCo_pia tracciatoColo_riColoreBilanciamento coloreFiltri di colore a videoPrelievo coloreInformazioni sul prelievo colore_Bilanciamento colore..._Dithering di colore:Il bilanciamento del colore agisce solo su livelli con colore RGB.Cancellazione coloreIndice dei colori:Colore:_Mappa colore_Spazio colore:_Colora.._Tipo di colorazione per il segmento_Tipo di colorazione per la selezioneColoraColora agisce solo su livelli a colori RGB.Colora l'immagineColora l'immagineMappa coloreEditor della mappa coloreMenu mappa coloreColonne:Comme_nto:CommentoCon_trasto:_ArrotolamentoConfigura i filtri di colore a videoConfigurazione dispositivi di ingresso _estesi...Configura g_riglia...Configura grigliaConfigura griglia immagineConfigura i tasti scorciatoiaConfigura _tasti scorciatoia...Configura il filtro selezionatoConfigura il filtro selezionato: %sConferma dimensione immagineConferma scalaturaConferma modifica del testoConferma chiusura per le immagini non sal_vateScorciatoie in conflittoConico (asimmetrico)Conico (simmetrico)Collega trattiCostanteLimitiContestoI cursori dipendenti dal contesto sono simpatici e normalmente sono abilitati. Essi sono però un carico in più che potresti non desiderare.ContinuaCon i contributi diConversioneConverti margineConverti in scala di grigiConverti in indicizzataConverti immagine a indicizzataConverti in RGBConverti immagineConversione in indicizzata (fase 2)...Conversione in indicizzata (fase 3)...Conversione in indicizzata...ArrotolamentoTipo di arrotolamento %sCopia con nomeCopia il _VisibileCopia del file '%s' da '%s'...Copyright:Segmento errato %d nel file gradiente '%s'.Impossibile creare '%s': %sImpossibile creare il file temporaneo per '%s': %sImpossibile cancellare '%s': %sImpossibile trovare il visualizzatore dell'aiuto di GIMP.Impossibile aprire '%s' in lettura: %sNon è possibile aprire '%s' in scrittura: %sImpossibile aprire la miniatura '%s': %s.Impossibile leggere %d byte da '%s': %sImpossibile posizionarsi sul file XCF: %sImpossibile eseguire il plug-in visualizzatore dell'aiuto di GIMP.Conteggio:_Ritaglia livelloCrea n_uovo pannelloCrea un nuovo modelloCrea una nuova immagineCrea un nuovo livelloCrea un nuovo modelloCrea una nuova finestra per questa immagineCrea una nuova immagine dal modello selezionatoCrea un nuovo modelloCrea e modifica immagini o fotografieCrea e modifica tracciatiCrea tracciato dal testoCrea selezione dal tracciatoCreazione anteprima ...Creazione cartella '%s'...TaglierinaTaglierinaInformazioni taglierino e ridimensionamentoRitaglia immagineRitaglia livelloRitaglia immagineRitaglia o ridimensiona un'immagineTaglio:Solo crosshair_Taglia_Taglia con nome...Cubica (migliore)_Stato correnteAltezza corrente:Solo livello correnteStato correnteLarghezza corrente:Cursore_Modalità cursore:Re_ndering cursore:Tipo di curvaCurveLe curve per il livelli a colori indicizzati non sono modificabili.PersonalizzataColore personalizzatoGradiente personalizzatoColore person_alizzato di riempimento:TagliaTaglia con nomeCianoCiano:D_uplica pennello_Duplica il canaleD_uplica gradienteD_uplica livelloD_uplica tavolozza_Duplica tracciatoD_uplica motivoD_uplica modello...Scacchi scuriSolo toni scuriLinea punto punto...Linea punto...Modello tratteggio:Preimpostazione tratteggio:TratteggioData:DebugVisualizzazione predefinita in modalità pienoschermoVisualizzazione predefinita in modalità normaleGriglia predefinitaImmagine di griglia predefinita_Interpolazione predefinita:Dimensione predefinita anteprime di _livello e del canale:Soglia predefini_ta:Elimina àncoraElimina àncoraElimina masc_hera di livelloElimina maschera di livelloElimina oggettoElimina segmentoElimina modelloCancella pennelloElimina canaleCancella coloreElimina gradienteCancella livelloElimina maschera di livelloElimina tavolozzaCancella tracciatoElimina motivoElimina le opzioni salvate...Elimina il buffer selezionatoRimuovi il modello selezionatoElimina quest'immagineElimina vettoriLa cancellazione di "%s" è fallita: %sPunti fittiDesaturazioneDesatura agisce solo su livelli di colore RGB.DescrizioneProgettaStato dei dispositiviDispositiviFinestreMenu finestreDiamanteDifferenzaColore direttoDisabilita maschera di livelloDisabilita maschera veloceAbbandona informazioni sul testoVisualizzazioneMostra navigazioneMostra _filtri...Mostra procedureTipo di visualizzazione:Visualizzazione [%0.6f, %0.6f]DissolvenzaDistanza:Distanza: %0.6fDitheringDivisioneCrea una _nuova installazione utente GIMPSicuri di voler reimpostare tutti i filtri ai valori predefiniti?Sicuri di voler reimpostare tutte le opzioni strumenti ai valori predefiniti?Volete rimpiazzarlo con l'immagine che stavate salvando?_Non salvareAgganciabileCronologia _documentiCronologia documentiDocumentiMenu documentiSc_hermaBruciaSchermaScherma o Brucia trattiScherma/BruciaDoppio tratteggioTrascina àncoraTrascina àncoreTrascina curveTrascina manigliaTrascina tracciatoTrascina: spostaDisegna con stiloDisegnabileMod disegnabileProcedure di disegnoNuovo livelloNuovo tracciatoA causa della mancanza di qualsiasi carattere, la funzionalità di testo non è disponibile.Esegui un dump degli eventi da questo controllerDuplica pennelloDuplica il canaleDuplica gradienteDuplica livelloDuplica tavolozzaDuplica tracciatoDuplica motivoDuplica il modello selezionatoImpossibile annullare!_Esporta tracciato...E_xtra piccoloComportamento dei marginiRileva mar_giniModificaModifica attributi di canaleModifica il colore del canaleModifica voce di colore tavolozzaModifica voce mappa coloreModifica attributi livelloModifica maschera di livelloModifica modalitàModifica colore tavolozzaModifica attributi tracciatoModifica attributi maschera veloceModifica colore maschera veloceModifica modelloModifica pennelloModifica attributi di canaleModifica coloreModifica voce mappa colore #%dModifica gradienteModifica attributi di livelloModifica tavolozzaModifica attributi tracciatoModifica motivo...Procedure di modificaModifica il modello selezionatoSelezione ellitticaSvuota canaleLivello vuotoSvuota tracciatoLivello testo vuotoNome variabile vuoto nel file di ambiente %s_IncrementoAbilita maschera veloceAbilita dithering della _trasparenzaAbilita questo controllerAbilita la visualizzazione di un suggerimento pratico su GIMP all'avvio.Abilita la visualizzazione dei suggerimenti.EnormeInserisci un nome per la tavolozza fusaInserisci un nome per le opzioni salvateInserisci un nome per questo bufferInserisci un nome per questo modelloCrea un nuovo nome per le opzioni salvateInserisci indirizzo (URI):AmbienteCartelle di ambienteEqualizzazioneEqualizza non agisce su livelli indicizzati.Cancella sullo sfondo o sulla trasparenzaGommaCo_nsole di erroreConsole di erroreMenu console di erroreErrore durante il salvataggio del file XCF: %sErrore durante l'elaborazione di '%s' alla riga %d: %sErrore durante la lettura di '%s': %sErrore durante la lettura del file pennello '%s': %sErrore durante la scrittura di '%s': %sErrore durante la scrittura del file XCF: %sErrore durante la scrittura del file '%s': %sErrore durante la scrittura su '%s': %sErrore durante la scrittura di un file temporaneo per '%s': %s Non è stato creato nessun file.Errore durante la scrittura di un file temporaneo per '%s': %s @@ -384,8 +382,8 @@ Controllare la corretta esistenza dell'impostazione dell'ambiente grafico.Visualizzatore dell'aiuto di GIMPGIMP non è installato correttamente per l'utente corrente. L'installazione utente non è stata effettuata dato che è stata utilizzata l'opzione '--no-interface'. Per effettuare l'installazione utente, eseguire -GIMP senza l'opzione '--no-interface'.GIMP utilizza un ammontare di memoria limitata per gestire le immagini, chiamata "cache immagine". Dovreste modificarne la dimensione considerando l'ammontare di memoria per gli altri processi attivi.GIMP utilizza un file gtkrc aggiuntivo. Perciò è possibile dargli un aspetto diverso dalle altre applicazioni GTK.Versione di GIMPGimp avvertirà l'utente se si è tentato di creare un immagine che occupa più memoria di quella specificata qui.GammaGeneraleRiguarda solitamente solo schermi a 8 bit; imposta il numero minimo di colori allocati per GIMP.Genera tavolozza ottimaleRisoluzione monitorGiganteProcedure gimprcEffetti _vetroGradienteEditor dei gradientiMenu editor dei gradientiCartelle dei gradientiColore capo sinistro del segmento di gradienteColore capo destro del segmento di gradienteGradiente UIGradiente:GradientiMenu gradientiEstrazione graniFusione graniGrigioScala di grigiVerdeVerde:GrigliaSpaziatura della grigliaIngrandisci canaleEspandi selezioneEspandi selezione diGuidaMagnetismo guide e grigliaProcedure GuidaHSVHSV (%0.3f, %0.3f, %0.3f)HSV (tonalità in senso _antiorario)HSV (tonalità in senso _orario)Notazione HTML:Alt_ezza:Visualizzatore dell'aiuto da utilizzar_e:Posizione attiva: %0.6fMargine nettoLuce forteDurezzaDurezza:AltezzaAltezza:AiutoVisualizzatore dell'aiutoAiutoVisualizzatore dell'aiuto non parteVisualizzatore dell'aiuto non trovatoProcedure testoEsa:IlluminataSuggerimento finestra _pannelli:Suggerimento per la finestra s_trumenti:HintingIl suggerimento altera la rappresentazione del carattere per produrre un bitmap chiaro a piccole dimensioniIstogram_maIstogrammaScala istogrammaCronologiaOrizzontaleSpostamento orizzontale della prima linea della griglia; dev'essere un numero negativo.Spaziatura orizzontale delle linee della griglia.Quanti nomi di file immagine aperti recentemente mantenere nel menu file.TonalitàTonalità-saturazioneTonalità-saturazione operano solamente su livelli RGB.Tonalità-_saturazioneTon.:GrandissimoI_cone e testoI_mmagineI_mporta tracciato...I_nterpolazione:I_ntervallo:IconaIcone e descIcone e testoSe disponibili vengono usati i suggerimenti per i caratteri ma si potrebbe preferire l'uso esclusivo del suggeritore automaticoSe abilitata lo strumento di spostamento cambia il livello attivo o il tracciato quando un livello o un tracciato viene preso. Era il comportamento predefinito nelle vecchie versioni.Se non si salva l'immagine, gli ultimi %s cambiamenti saranno persi.Se si esce da GIMP ora, questi cambiamenti saranno persi.Nome variabile illegale nel file di ambiente %s: %sImmagineImmagine + grigliaEditor immagineInformazioni immagineMenu immagineDimensione immagineFormato della barra di stato dell'immagineModelli immagineMiniature immaginiFormato del titolo immagine e della barra di statoFormato del titolo immagineImpostazioni finestreFinestre immagineL'immagine non contiene nessun livello visibileFile immagineMaschera immagineLa risoluzione immagine è fuori margini, utilizzo della risoluzione predefinita.Dimensione immagineSorgente immagineTipo di immagineImmaginiMenu immaginiOpzioni di importazioneImporta tavolozzaImporta tracciatiImporta tracciato da SVGImporta una nuova tavolozzaImporta tavolozzaImporta tracciatiTracciato importato_StiloIn_vertiIn_verti mascheraIncrementaleIndenta:Indentazione della prima rigaIndice:IndicizzataColore indicizzatoConversione a indicizzatoI livelli di colore indicizzati sono sempre scalati senza interpolazione. Il tipo di interpolazione scelto riguarderà solamente canali e maschere.Finestra informazioni_Rapporto di zoom iniziale:Inizializza la maschera di livello a:Inizializzazione plug-inInizializzazione plug-in: '%s' -StiloPixbuf inlineaController di ingressoDispositivi di ingressoLivelli di ingressoInserisci àncoraInstalla una mappa colori privata; è utile per visualizzare su schermi a 8 bit (256 colori).Installazione fallita. Contattare l'amministratore di sistema.Installazione completata. Fare clic su "Continua" per procedere.Aggiornamento istantaneoForbici _intelligentiIntensità: %0.3f Opacità: %0.3fInterfacciaProcedure Interne di GIMPProcedure interneInterpolazione:IntersecaInterseca con la selezioneIntersezioni (crocino)Intersezioni (punti)UTF-8 non validoDato UTF-8 non valido nel file '%s'Stringa UTF-8 non valida nel file XCFStringa UTF-8 non valida nel file pennello '%s'.Stringa UTF-8 non valida in file gradiente '%s'.Stringa UTF-8 non valida nel file tavolozza '%s'Stringa UTF-8 non valida nel file motivo di GIMP '%s'.Carattere non valido in sequenza URIScorciatoia non valida.Larghezza o altezza non valide. Devono essere entrambe positive.InvertitaInverti canaleInverti selezioneInverti non agisce su livelli indicizzati.Inverti selezioneSei sicuro di quello che sta per fare?Sembra che sia stato utilizzato GIMP 2.0 in passato.Proprietà dell'elementoVisibilità elementoGiustifica:Mantieni la trasparenzaMantieni sopraRapporto l'aspetto %sMantieni il rapporto dimensioniRapporto di dimensioni fisso %sMantieni l'altezza %sMantieni la trasparenzaMantieni la larghezza %sTasto giùTasto giù (Alt)Tasto giù (Ctrl + Alt)Tasto giù (Ctrl)Tasto giù (Maiusc + Alt)Tasto giùTasto giù (Maiusc + Ctrl)Tasto giù (Maiusc)Tasto sinistraTasto sinistra (Alt)Tasto sinistra (Ctrl + Alt)Tasto sinistra (Ctrl)Tasto sinistra (Maiusc + Alt)Tasto sinistra (Maiusc + Ctrl + Alt)Tasto sinistra (Maiusc + Ctrl)Tasto sinistra (Maiusc)Tasto destraTasto destra (Alt)Tasto destra (Ctrl + Alt)Tasto destra (Ctrl)Tasto destra (Maiusc + Alt)Tasto destra (Maiusc + Ctrl + Alt)Tasto destra (Maiusc + Ctrl)Tasto destra (Maiusc)Tasto suTasto su (Alt)Tasto su (Ctrl + Alt)Tasto su (Ctrl)Tasto su (Maiusc + Alt)Tasto su (Maiusc + Ctrl + Alt)Tasto su (Maiusc + Ctrl)Tasto su (Maiusc)In Gimp i tasti scorciatoia possono essere ridefiniti dinamicamente. Il file menurc è una copia delle vostre configurazioni perciò può essere utilizzato la volta successiva. Potete modificare questo file con un editor ma è molto più semplice usare GIMP. Cancellando questo file verranno ripristinate le scorciatoie predefinite.TastieraEventi tastieraTasti scorciatoiaDSDColor_e capo sinistro...Orientamento orizzontaleGrandeLarga (256x256)Anteprima più grandeUltimo errore:LivelloIl livello '%s' non ha alfa. Il livello è stato disposto sopra di esso.Attributi di livelloDimensione margine del livell_o...Tipo di riempimento livelloMaschera livello a selezioneSelezione livelloDimensione livello_Modalità livelli_Nome livello:Il livello non può essere abbassato ulteriormente.Il livello non può essere alzato ulteriormente.Il livello è già in fondo.Il livello è già in cima.Livello a dimensione dell'immagineAbbassa il livello fino in _fondoLivello a dimensione _immagineAlza il livello fino in _cimaCanale _alfa del livelloLivelliMenu livelliOpzioni di fusione livelliColor_e capo sinistroAllineamento a sinistraLunghezza:Lascia che GIMP tenti di ripristinare l'ultima sessione salvata ad ogni avvio.LivelliPer i livelli a colori indicizzati i livelli non sono modificabili.Scacchi chiariSolo toni chiariLineaSpaziatura +GIMP senza l'opzione '--no-interface'.GIMP utilizza un ammontare di memoria limitata per gestire le immagini, chiamata "cache immagine". Dovreste modificarne la dimensione considerando l'ammontare di memoria per gli altri processi attivi.GIMP utilizza un file gtkrc aggiuntivo. Perciò è possibile dargli un aspetto diverso dalle altre applicazioni GTK.Versione di GIMPGimp avvertirà l'utente se si è tentato di creare un immagine che occupa più memoria di quella specificata qui.GammaGeneraleRiguarda solitamente solo schermi a 8 bit; imposta il numero minimo di colori allocati per GIMP.Genera tavolozza ottimaleRisoluzione monitorGiganteProcedure gimprcEffetti _vetroGradienteEditor dei gradientiMenu editor dei gradientiCartelle dei gradientiColore capo sinistro del segmento di gradienteColore capo destro del segmento di gradienteGradiente UIIl file gradiente '%s' è danneggiato: i segmenti non coprono il campo 0-1.Gradiente:GradientiMenu gradientiEstrazione graniFusione graniGrigioScala di grigiVerdeVerde:GrigliaSpaziatura della grigliaIngrandisci canaleEspandi selezioneEspandi selezione diGuidaMagnetismo guide e grigliaProcedure GuidaHSVHSV (%0.3f, %0.3f, %0.3f)HSV (tonalità in senso _antiorario)HSV (tonalità in senso _orario)Notazione HTML:Alt_ezza:Visualizzatore dell'aiuto da utilizzar_e:Posizione attiva: %0.6fMargine nettoLuce forteDurezzaDurezza:AltezzaAltezza:AiutoVisualizzatore dell'aiutoAiutoVisualizzatore dell'aiuto non parteVisualizzatore dell'aiuto non trovatoProcedure testoEsa:IlluminataSuggerimento finestra _pannelli:Suggerimento per la finestra s_trumenti:HintingIl suggerimento altera la rappresentazione del carattere per produrre un bitmap chiaro a piccole dimensioniIstogram_maIstogrammaScala istogrammaCronologiaOrizzontaleSpostamento orizzontale della prima linea della griglia; dev'essere un numero negativo.Spaziatura orizzontale delle linee della griglia.Quanti nomi di file immagine aperti recentemente mantenere nel menu file.TonalitàTonalità-saturazioneTonalità-saturazione operano solamente su livelli RGB.Tonalità-_saturazioneTon.:GrandissimoI_cone e testoI_mmagineI_mporta tracciato...I_nterpolazione:I_ntervallo:IconaIcone e descIcone e testoSe disponibili vengono usati i suggerimenti per i caratteri ma si potrebbe preferire l'uso esclusivo del suggeritore automaticoSe abilitata lo strumento di spostamento cambia il livello attivo o il tracciato quando un livello o un tracciato viene preso. Era il comportamento predefinito nelle vecchie versioni.Se non si salva l'immagine, gli ultimi %s cambiamenti saranno persi.Se si esce da GIMP ora, questi cambiamenti saranno persi.Nome variabile illegale nel file di ambiente %s: %sImmagineImmagine + grigliaEditor immagineInformazioni immagineMenu immagineDimensione immagineFormato della barra di stato dell'immagineModelli immagineMiniature immaginiFormato del titolo immagine e della barra di statoFormato del titolo immagineImpostazioni finestreFinestre immagineL'immagine non contiene nessun livello visibileFile immagineMaschera immagineLa risoluzione immagine è fuori margini, utilizzo della risoluzione predefinita.Dimensione immagineSorgente immagineTipo di immagineImmaginiMenu immaginiOpzioni di importazioneImporta tavolozzaImporta tracciatiImporta tracciato da SVGImporta una nuova tavolozzaImporta tavolozzaImporta tracciatiTracciato importato_StiloIn_vertiIn_verti mascheraIncrementaleIndenta:Indentazione della prima rigaIndice:IndicizzataColore indicizzatoConversione a indicizzatoI livelli di colore indicizzati sono sempre scalati senza interpolazione. Il tipo di interpolazione scelto riguarderà solamente canali e maschere.Finestra informazioni_Rapporto di zoom iniziale:Inizializza la maschera di livello a:Inizializzazione plug-inInizializzazione plug-in: '%s' +StiloPixbuf inlineaController di ingressoDispositivi di ingressoLivelli di ingressoInserisci àncoraInstalla una mappa colori privata; è utile per visualizzare su schermi a 8 bit (256 colori).Installazione fallita. Contattare l'amministratore di sistema.Installazione completata. Fare clic su "Continua" per procedere.Aggiornamento istantaneoForbici _intelligentiIntensità: %0.3f Opacità: %0.3fInterfacciaProcedure Interne di GIMPProcedure interneInterpolazione:IntersecaInterseca con la selezioneIntersezioni (crocino)Intersezioni (punti)UTF-8 non validoDato UTF-8 non valido nel file '%s'Stringa UTF-8 non valida nel file XCFStringa UTF-8 non valida nel file pennello '%s'.Stringa UTF-8 non valida in file gradiente '%s'.Stringa UTF-8 non valida nel file tavolozza '%s'Stringa UTF-8 non valida nel file motivo di GIMP '%s'.Carattere non valido in sequenza URIScorciatoia non valida.Larghezza o altezza non valide. Devono essere entrambe positive.InvertitaInverti canaleInverti selezioneInverti non agisce su livelli indicizzati.Inverti selezioneSei sicuro di quello che sta per fare?Sembra che sia stato utilizzato GIMP 2.0 in passato.Proprietà dell'elementoVisibilità elementoGiustifica:Mantieni la trasparenzaMantieni sopraRapporto l'aspetto %sRapporto di dimensioni fisso %sMantieni l'altezza %sMantieni la trasparenzaMantieni la larghezza %sTasto giùTasto giù (Alt)Tasto giù (Ctrl + Alt)Tasto giù (Ctrl)Tasto giù (Maiusc + Alt)Tasto giùTasto giù (Maiusc + Ctrl)Tasto giù (Maiusc)Tasto sinistraTasto sinistra (Alt)Tasto sinistra (Ctrl + Alt)Tasto sinistra (Ctrl)Tasto sinistra (Maiusc + Alt)Tasto sinistra (Maiusc + Ctrl + Alt)Tasto sinistra (Maiusc + Ctrl)Tasto sinistra (Maiusc)Tasto destraTasto destra (Alt)Tasto destra (Ctrl + Alt)Tasto destra (Ctrl)Tasto destra (Maiusc + Alt)Tasto destra (Maiusc + Ctrl + Alt)Tasto destra (Maiusc + Ctrl)Tasto destra (Maiusc)Tasto suTasto su (Alt)Tasto su (Ctrl + Alt)Tasto su (Ctrl)Tasto su (Maiusc + Alt)Tasto su (Maiusc + Ctrl + Alt)Tasto su (Maiusc + Ctrl)Tasto su (Maiusc)In Gimp i tasti scorciatoia possono essere ridefiniti dinamicamente. Il file menurc è una copia delle vostre configurazioni perciò può essere utilizzato la volta successiva. Potete modificare questo file con un editor ma è molto più semplice usare GIMP. Cancellando questo file verranno ripristinate le scorciatoie predefinite.TastieraEventi tastieraTasti scorciatoiaDSDColor_e capo sinistro...Orientamento orizzontaleGrandeLarga (256x256)Anteprima più grandeUltimo errore:LivelloIl livello '%s' non ha alfa. Il livello è stato disposto sopra di esso.Attributi di livelloDimensione margine del livell_o...Tipo di riempimento livelloMaschera livello a selezioneSelezione livelloDimensione livello_Modalità livelli_Nome livello:Il livello non può essere abbassato ulteriormente.Il livello non può essere alzato ulteriormente.Il livello è già in fondo.Il livello è già in cima.Livello a dimensione dell'immagineAbbassa il livello fino in _fondoLivello a dimensione _immagineAlza il livello fino in _cimaCanale _alfa del livelloLivelliMenu livelliOpzioni di fusione livelliColor_e capo sinistroAllineamento a sinistraLunghezza:Lascia che GIMP tenti di ripristinare l'ultima sessione salvata ad ogni avvio.LivelliPer i livelli a colori indicizzati i livelli non sono modificabili.Scacchi chiariSolo toni chiariLineaSpaziatura righe:Larghezza linea:_Stile linea:Stile di linea usata per la grigliaLineareElemento collegatoCaricaApri curveApri livelliCarica colore destr_o daLettura impostazioni curve da fileCarica le impostazione livelli da fileCarica testo dal fileCaricamento anteprima ...Disposizione:LogaritmicoTrattini lunghiInizializzazioneAbbassa il canaleAbbassa il canale fino in fondoAbbassa il canale fino in _fondoAbbassa il livelloAbbassa il livello fino in fondoAbbassa il tracciatoAbbassa tracciato fino in fondoAbbassa il tracciato fino in _fondoAbbassa il canaleAbbassa il canale fino in fondoAbbassa il livelloAbbassa il livello fino in fondoAbbassa il tracciatoAbbassa tracciato fino in fondo_LentePrincip_aleSposta sullo scherm_o...Ma_ppaMagentaMagenta:LenteRendi _trasparenteGestione moduli caricabiliVelocità _animazione selezione:Opacità maschera:Maschera aree _selezionateMaschera aree _non selezionateMatrice:Massima definizione:Massima dimensione _file per le miniature:Dimensione massima _nuova immagine:Massima differenza di colore_Memoria massima annullamenti:Media:MisurinoMisura distanze e angoliMisura distanze ed angoliMisura i righelli e inserisci la loro lunghezza:MedianaMediaTrattini medi_Fondi in bassoFondi in bassoFondi i livelliFondi tavolozzaFondi livelli visibiliFondi tracciati visibiliFondi _livelli visibili...Fondi livelli _visibili...Fondi tracciati _visibiliFondi i livelliFondi tavolozzeFondi vettoriMessaggi procedureMessaggio ripetuto %d volte.Messaggio ripetuto una volta.I messaggi sono rediretti su stderr.Mezze TinteMigrazione delle impostazioni utenteNumero minimo di ann_ullamenti:VarieAngoloModalitàModalità:Modifica colore selezionatoModifica il campo di colori selezionatoModifica tutti i coloriModifica la spaziatura righeCartelle dei moduliManager dei moduliPercorso moduliModuliCursori del mouseRotellina del mouseEventi rotellina del mouseMuoviSposta àncoreSposta canaleSposta selezione fluttuanteSposta guidaSposta guida:Sposta livelloSposta maschera di livelloSposta tracciatoMuovi selezioneSposta livello di testoStrumento spostaSposta elementoSposta livelli e selezioniSposta la selezioneSposta livello correnteSposta tracciato correnteSposta il filtro selezionato in bassoSposta il filtro selezionato in altoSposta sullo schermo...Sposta: MultiplaN_umero di colori:Na_vigazioneFinestra di na_vigazioneDimensione anteprima na_vigazione:NomeNome:NavigazioneNuovo canaleNuovo colore del canaleNuove opzioni di canaleNuovo colore dallo _SFNuovo colore dal _PPNuova immagineNuovo livelloNuovo tracciatoNuove opzioni tracciatoNuovo modelloNuovo pennelloNuovo canaleNuovo canale con gli ultimi valoriNuovo canale...Nuovo colore dallo SFNuovo colore dal PPNuovo gradienteNuova importazioneNuovo livelloNuova livello con gli ultimi valoriNuovo livello...Nuova tavolozzaNuova tracciato con gli ultimi valoriNuovo tracciato...Nuovo motivoNuovi vettoriNessun pennello disponibile da usare con questo strumento.Nessun filtro selezionatoNon è stato trovato nessun gradiente lineare in '%s'Non più disponibileNessun tracciato trovato in '%s'Nessun tracciato trovato nel bufferNessun motivo disponibile per questa operazione.Nessuna selezioneNessuna selezione da disegnareSenza miniatureNon allineatoNessunoNessuno (più veloce)NormaleNormale (128x128)Punti normaliFinestra normaleNon è un file regolareNon ci sono sufficienti livelli visibili da fondere. Ce ne devono essere almeno due.Non ci sono abbastanza tracciati visibili da fondere. Ce ne devono essere almeno due.Numero di _processori da usare:Numero di righe della grigliaNumero di livelli:Al_tro...SpostamentoPosizione canaleImpostazione disegnabilePosizione livelloPosizione maschera di livelloSposta di x/_2,y/2Compensato:Sul discoSe GIMP è stato compilato con --enable-mp, su macchine multiprocessore, imposta quanti processori GIMP può usare contemporaneamente.Solo in memoriaApri com_e livello...OpacitàOpacità:ApriApri immagineApri immagine come livelloApri indirizzoApri file di testo (UTF-8)Apri _posizione... Apri _recentiApri finestra immagineApri la finestra di selezione pennelloApri la finestra della selezione caratteriApri la finestra di selezione gradienteApri la finestra di selezione tavolozzaApri la finestra di selezione patternApri la voce selezionataApertura di '%s' fallita: %sL'apertura di '%s' è fallita: %sOpzioni: @@ -441,7 +439,7 @@ GIMP %d.%d: installazione utenteSe abilitata, la finestra segue automaticamente l'immagine su cui si sta lavorando.Se abilitata, GIMP mostrerà gli mnemonici nei menu.Se abilitata, tutti gli strumenti di disegno mostreranno un'anteprima del contorno del pennello corrente.Se abilitata, un'immagine diventa attiva se la sua finestra riceve il focus. Utile per i gestori di finestre che usano il "focus con clic".Se abilitata, le finestre mostreranno un pulsante di aiuto che darà accesso alla pagina di aiuto relativa. Senza questo tasto, la pagina di aiuto sarà ancora disponibile ma tramite il tasto F1.Se abilitata, i menu possono essere staccati.Se abilitata, premendo F1 si aprirà il visualizzatore dell'aiuto.Se abilitata, GIMP non salva l'immagine se questa non è cambiata dalla sua apertura.Se abilitata, GIMP userà una finestra informazioni diversa per ogni finestra immagine.Se abilitata, il server X verrà interrogato per la posizione corrente del mouse ad ogni evento di moto invece che affidarsi ai suggerimenti di posizione. Ciò significa che il disegno con pennelli grandi sarà più accurato ma più lento. Per assurdo, su alcuni server X è possibile che il disegno venga accelerato.Se abilitata, il cursore verrà mostrato sopra l'immagine mentre si usa uno strumento di disegno.Se abilitata, la griglia è visibile. Questo comportamento può essere modificato anche con il comando "Visualizza->Mostra la griglia".Se abilitata, le guide sono visibili. Questo comportamento può essere modificato anche con il comando "Visualizza->Mostra le guide".Se abilitata, la finestra immagine verrà automaticamente ridimensionata se si zuma su un'immagine.Se abilitata, la finestra immagine verrà automaticamente ridimensionata se l'ampiezza fisica dell'immagine cambia.Se abilitata, il contorno del livello è visibile. Questo comportamento può essere modificato anche con il comando "Visualizza->Mostra barra dei menu".Se abilitata, la barra dei menu è visibile. Questo può essere modificato anche con il comando "Visualizza->Mostra barra dei menu".Se abilitata, i righelli sono visibili. Questo comportamento può essere modificato anche con il comando "Visualizza->Mostra i righelli"Se abilitata, le barre di scorrimento sono visibili. Questo comportamento può essere modificato con il comando "Visualizza->Mostra le barre di scorrimento".Se abilitata, il pennello selezionato verrà usato per tutti gli strumenti.Se abilitata, il gradiente selezionato verrà usato per tutti gli strumenti.Se abilitata, il gradiente selezionato verrà usato per tutti gli strumenti.Se abilitata, la selezione è visibile. Questo comportamento può essere modificato anche con il comando "Visualizza->Mostra selezione".Se abilitata, la barra di stato è visibile. Questo comportamento può essere modificato anche con il comando "Visualizza->Mostra barra di stato".Se abilitata, assicura che ogni punto di un'immagine sia mappato su di un punto sullo schermo.Se abilitata, garantirà che l'intera immagine sia visibile dopo che il file è stato aperto, altrimenti sarà visualizzato con scala 1:1.Se abilitata, è possibile cambiare i tasti scorciatoia per le voci di menu premendo una combinazione di tasti mentre la voce del menu è selezionata.BiancoIl bilanciamento del colore agisce solo su livelli con colore RGB.LarghezzaLarghezza:Gestione finestreSuggerimenti del gestore finestrePosizione finestraScrittura di '%s' XErrore XCF: riscontrata versione file XCF %d non supportataAvviso XCF: la versione 0 del formato file XCF non salva correttamente le mappe colore di immagini indicizzate. -Sostituzione mappa in scala di grigi.YGialloGiallo:Stai cercando di creare un'immagine con una dimensione di %s.Puoi rilasciare qui le finestre di dialogo agganciabili.Dovreste aver ricevuto una copia della GNU General Public License con questo programma; in caso contrario scrivere alla Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.È necessario riavviare GIMP affinché i seguenti cambiamenti abbiano effetto:L'installazione di GIMP non è stata completata:Le impostazioni dei dispositivi di ingresso saranno reimpostate ai valori predefiniti al prossimo riavvio di GIMP.I tasti scorciatoia saranno reimpostati ai valori predefiniti al prossimo riavvio di GIMP.Le impostazioni della finestra saranno reimpostate ai valori predefiniti al prossimo riavvio di GIMP.Comportamento dello zoom e del ridimensionamentoZoom 1:1Zoom totaleZoom avantiZoom indietroCoefficiente di zoomZoom:Zoom _totaleZoom _avantiZoom _indietroZoom totaleFattore di zoom: %d:1Zooma l'immagine quando cambia la dimensione della finestraZoom avantiZoomZoom indietroZoom:[ immagine base ]_InformazioniAc_quisizione_Aggiungi colore dallo SF_Aggiungi colore dal PP_Aggiungi scheda_Aggiungi alla selezioneOpzioni _avanzate_Aerografo_TuttoÀncor_a livello_AntialiasingRotazione _arbitraria..._Artistici_Aspetto_Auto_BColore _sfondoColore di _sfondo:_Nero (Trasparenza Totale)Tipo di _sfumatura per il segmento_Sfumatura della selezioneSf_umata_Luminosità:_Pennello_Pennelli_Pennelli, motivi e gradienti_Riempimento colore_Bufferper _coloreSelezione per _colore_CStile _pennino:_Canali_Azzera gli errori_Cancella la cronologia annullamenti_Clona_Chiudi_Rimuovi schedaN_uvoleStrumenti di _colore_Colori_Configura colore e opacità..._ContestoAiuto _contestuale_Copia_Copia con nome..._Crea immagine dal modello..._Taglio e ridimensione_Ritaglia immagine_Curvato_Curve...Colore a scacchi _scuroColori pre_definiti_Cancella pennello_Elimina buffer_Elimina canale_Cancella colore_Elimina gradiente..._Elimina immagine_Elimina livello_Elimina tavolozza_Cancella tracciato_Elimina motivo..._Cancella le opzioni salvate_Elimina segmento_Elimina la selezione_Elimina modello_Desatura_Stacca schedaStato dei _dispositivi_Finestre_Abbandona informazioni sul testo_Distorsioni_Punto per punto_Duplica_ModificaModifica p_ennello..._Modifica attributi canale..._Modifica colore..._Modifica gradiente..._Modifica attributi di livello..._Modifica tavolozza..._Modifica attributi tracciato..._Modifica motivo..._Modifica modello...Selezione _ellittica_Abilita anteprime del livello e del canale_Enorme_Equalizza_GommaColore _primo piano_File_Riempi con:Aggiusta immagine nella _finestraImmagine a_ppiattitaRi_flessioneRi_fletti segmentoRi_flessione selezione_Fluttuante_Caratteri_CaratteriColore di _primo piano:Selezione _libera_G_Generico_Gigante_Gradiente_GradientiScala di _grigiCopia in scala di _grigi del livelloAllar_ga..._Guide_Durezza_Aiuto_Orizzontale:_Tonalità:Grandis_simo_Icona_Icona:_Immagine_Immagini_Importa_Importa tavolozza..._Indicizzata...Finestra _informazioni_Interseca con la selezione_InvertitaStile _unione:_Grande_Livello_Livelli_Livelli, canali e tracciatiCapo _sinistro...Capo destro più vicino a _sinistra_Livelli...Colore a scacchi c_hiaroEffetti _luce_Luminosità:Stile _linea_LineareCo_llegatoCarica il co_lore sinistro daA_bbassa il canaleAbbassa il _livelloAb_bassa il tracciato_M_Manualmente_Mappa_Maschera_Maschera a selezioneNumero _massimo di colori:_Misurino_Medio_Fondi tavolozze...Fondi i tracciati i_mportati_Migrazione delle impostazioni utente GIMP 2.0_VarieRapporto u_nione:_Modalità_Manager dei moduli_Sposta_Nome:_Natura_Nuovo pennello_Nuovo canale_Nuovo canale..._Nuova voce..._Nuovo gradiente_Nuovo livello_Nuovo livello..._Nuova tavolozza_Nuovo tracciato_Nuovo tracciato..._Nuovo motivo_Nuovo modello..._Nuova vista_Nuovo..._Successivo_Rumore_NienteSp_ostamento..._Opacità_Apri immagine_Apri...Colore di riem_pimentoStrumento di _disegno_Pennello_Tavolozza_Incolla_Incolla buffer_Incolla con nome..._Tracciati_Motivo_Prospettiva_Posterizza..._PreferenzeAnte_primaDimen_sione anteprima_PrecedenteDimensione di stam_pa..._ProprietàMaschera _veloce attiva_Esci_R_RGB_RaggioAl_za il canale_Alza il livello_Alza il tracciato_Alza le visteAl_za o apri immagine_Riassegna scorciatoieSelezione _rettangolare_Ripeti_Ripeti %sAggio_rna pennelliAggio_rna gradientiAggio_rna tavolozzeAggio_rna motivi_Rimuovere i colori inutilizzati dalla tavolozza finale_Render_RimpiazzaD_uplica segmento...D_uplica selezione..._Rileggi elenco caratteri_Reimposta ordine e visibilità_Reimposta lo stato dei dispositivi di ingresso salvato ai valori predefiniti_Ripristina i tasti scorciatoia salvati ai valori predefiniti_Reimposta la posizione delle finestre salvata ai valori predefiniti_Recupera le opzioni daCapo _destroCapo sinistro più vicino a _destra_Rotazione_Saturazione:_Salva_Salva il colore sinistro su_Salva le opzioni suAll'uscita _salva lo stato dei dispositivi di ingresso_Salva i tasti scorciatoia all'uscita_Salva le posizioni delle finestre all'uscita_Scala_Scala immagine..._Scala livello..._Scala i tracciati importati sull'immagine_Seleziona_SelezioneEditor _selezioneStrumenti di _selezione_Forma_DefinitaMostra _selezione immagineMostra negli _strumenti_Sinusoidale_Piccolo_SfuminoDistanza magneti_smo:Delinea _selezione_Delinea selezione_Sottrai dalla selezioneS_tile scheda_Modelli:Model_li_Testo_Soglia...Min_uscoloSuggerimenti del _giornoS_trumentoS_trumenti_Trasferimento canale alfa del livello_TrasformaStrumenti di _trasformazioneAnn_ullaAnn_ulla %s_Verticale:_Visualizza_Visibile_WebNavigatore _web da utilizzare:_Bianco (totale opacità)_Bilanciamento del bianco_Larghezza:_Bordi connessiRisoluzione _X:_X:_Xtns_YRisoluzione _Y:_Y:_Zoom_Zoom (%s)coloricopiadpiper un token booleano %s era previsto 'sì' o 'no' ma è arrivato '%s'errore di analisi fatalescala di grigiscala di grigi - vuotopollicepolliciindicizzatoindicizzato - vuotostringa UTF-8 non validavalore non valido '%ld' per il tipo iconavalore non valido '%ld' per il token %svalore non valido '%s' per il tipo iconavalore '%s' non valido per il token %smillimetromillimetriminuton/apercentopicapicapixelpixelpixel/%apunti/%spuntopuntisecondotips-locale:itMarco Ciampa +Sostituzione mappa in scala di grigi.YGialloGiallo:Stai cercando di creare un'immagine con una dimensione di %s.Puoi rilasciare qui le finestre di dialogo agganciabili.Dovreste aver ricevuto una copia della GNU General Public License con questo programma; in caso contrario scrivere alla Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.È necessario riavviare GIMP affinché i seguenti cambiamenti abbiano effetto:L'installazione di GIMP non è stata completata:Le impostazioni dei dispositivi di ingresso saranno reimpostate ai valori predefiniti al prossimo riavvio di GIMP.I tasti scorciatoia saranno reimpostati ai valori predefiniti al prossimo riavvio di GIMP.Le impostazioni della finestra saranno reimpostate ai valori predefiniti al prossimo riavvio di GIMP.Comportamento dello zoom e del ridimensionamentoZoom 1:1Zoom totaleZoom avantiZoom indietroCoefficiente di zoomZoom:Zoom _totaleZoom _avantiZoom _indietroZoom totaleFattore di zoom: %d:1Zooma l'immagine quando cambia la dimensione della finestraZoom avantiZoomZoom indietroZoom:[ immagine base ]_InformazioniAc_quisizione_Aggiungi colore dallo SF_Aggiungi colore dal PP_Aggiungi scheda_Aggiungi alla selezioneOpzioni _avanzate_Aerografo_TuttoÀncor_a livello_AntialiasingRotazione _arbitraria..._Artistici_Aspetto_Auto_BColore _sfondoColore di _sfondo:_Nero (Trasparenza Totale)Tipo di _sfumatura per il segmento_Sfumatura della selezioneSf_umata_Luminosità:_Pennello_Pennelli_Pennelli, motivi e gradienti_Riempimento colore_Bufferper _coloreSelezione per _colore_CStile _pennino:_Canali_Azzera gli errori_Cancella la cronologia annullamenti_Clona_Chiudi_Rimuovi schedaN_uvoleStrumenti di _colore_Colori_Configura colore e opacità..._ContestoAiuto _contestuale_Copia_Copia con nome..._Crea immagine dal modello..._Taglio e ridimensione_Ritaglia immagine_Curvato_Curve...Colore a scacchi _scuroColori pre_definiti_Cancella pennello_Elimina buffer_Elimina canale_Cancella colore_Elimina gradiente..._Elimina immagine_Elimina livello_Elimina tavolozza_Cancella tracciato_Elimina motivo..._Cancella le opzioni salvate_Elimina segmento_Elimina la selezione_Elimina modello_Desatura_Stacca schedaStato dei _dispositivi_FinestreAnn_ulla i cambiamenti_Abbandona informazioni sul testo_Distorsioni_Punto per punto_Duplica_ModificaModifica p_ennello..._Modifica attributi canale..._Modifica colore..._Modifica gradiente..._Modifica attributi di livello..._Modifica tavolozza..._Modifica attributi tracciato..._Modifica motivo..._Modifica modello...Selezione _ellittica_Abilita anteprime del livello e del canale_Enorme_Equalizza_GommaColore _primo piano_File_Riempi con:Aggiusta immagine nella _finestraImmagine a_ppiattitaRi_flessioneRi_fletti segmentoRi_flessione selezione_Fluttuante_Caratteri_CaratteriColore di _primo piano:Selezione _libera_G_Generico_Gigante_Gradiente_GradientiScala di _grigiCopia in scala di _grigi del livelloAllar_ga..._Guide_Durezza_Aiuto_Orizzontale:_Tonalità:Grandis_simo_Icona_Icona:_Immagine_Immagini_Importa_Importa tavolozza..._Indicizzata...Finestra _informazioni_Interseca con la selezione_InvertitaStile _unione:_Grande_Livello_Livelli_Livelli, canali e tracciatiCapo _sinistro...Capo destro più vicino a _sinistra_Livelli...Colore a scacchi c_hiaroEffetti _luce_Luminosità:Stile _linea_LineareCo_llegatoCarica il co_lore sinistro daA_bbassa il canaleAbbassa il _livelloAb_bassa il tracciato_M_Manualmente_Mappa_Maschera_Maschera a selezioneNumero _massimo di colori:_Misurino_Medio_Fondi tavolozze...Fondi i tracciati i_mportati_Migrazione delle impostazioni utente GIMP 2.0_VarieRapporto u_nione:_Modalità_Manager dei moduli_Sposta_Nome:_Natura_Nuovo pennello_Nuovo canale_Nuovo canale..._Nuova voce..._Nuovo gradiente_Nuovo livello_Nuovo livello..._Nuova tavolozza_Nuovo tracciato_Nuovo tracciato..._Nuovo motivo_Nuovo modello..._Nuova vista_Nuovo..._Successivo_Rumore_NienteSp_ostamento..._Opacità_Apri immagine_Apri...Colore di riem_pimentoStrumento di _disegno_Pennello_Tavolozza_Incolla_Incolla buffer_Incolla con nome..._Tracciati_Motivo_Prospettiva_Posterizza..._PreferenzeAnte_primaDimen_sione anteprima_PrecedenteDimensione di stam_pa..._ProprietàMaschera _veloce attiva_Esci_R_RGB_RaggioAl_za il canale_Alza il livello_Alza il tracciato_Alza le visteAl_za o apri immagine_Riassegna scorciatoieSelezione _rettangolare_Ripeti_Ripeti %sAggio_rna pennelliAggio_rna gradientiAggio_rna tavolozzeAggio_rna motivi_Rimuovere i colori inutilizzati dalla tavolozza finale_Render_RimpiazzaD_uplica segmento...D_uplica selezione..._Rileggi elenco caratteri_Reimposta ordine e visibilità_Reimposta lo stato dei dispositivi di ingresso salvato ai valori predefiniti_Ripristina i tasti scorciatoia salvati ai valori predefiniti_Reimposta la posizione delle finestre salvata ai valori predefiniti_Recupera le opzioni daCapo _destroCapo sinistro più vicino a _destra_Rotazione_Saturazione:_Salva_Salva il colore sinistro su_Salva le opzioni suAll'uscita _salva lo stato dei dispositivi di ingresso_Salva i tasti scorciatoia all'uscita_Salva le posizioni delle finestre all'uscita_Scala_Scala immagine..._Scala livello..._Scala i tracciati importati sull'immagine_Seleziona_SelezioneEditor _selezioneStrumenti di _selezione_Forma_DefinitaMostra _selezione immagineMostra negli _strumenti_Sinusoidale_Piccolo_SfuminoDistanza magneti_smo:Delinea _selezione_Delinea selezione_Sottrai dalla selezioneS_tile scheda_Modelli:Model_li_Testo_Soglia...Min_uscoloSuggerimenti del _giornoS_trumentoS_trumenti_Trasferimento canale alfa del livello_TrasformaStrumenti di _trasformazioneAnn_ullaAnn_ulla %s_Verticale:_Visualizza_Visibile_WebNavigatore _web da utilizzare:_Bianco (totale opacità)_Bilanciamento del bianco_Larghezza:_Bordi connessiRisoluzione _X:_X:_Xtns_YRisoluzione _Y:_Y:_Zoom_Zoom (%s)coloricopiadpiper un token booleano %s era previsto 'sì' o 'no' ma è arrivato '%s'errore di analisi fatalescala di grigiscala di grigi - vuotopollicepolliciindicizzatoindicizzato - vuotostringa UTF-8 non validavalore non valido '%ld' per il tipo iconavalore non valido '%ld' per il token %svalore non valido '%s' per il tipo iconavalore '%s' non valido per il token %smillimetromillimetriminuton/apercentopicapicapixelpixelpixel/%apunti/%spuntopuntisecondotips-locale:itMarco Ciampa Daniele Medri Marco Marega Mike Vargas diff -uraN gimp-2.2.0/po/it.po gimp-2.2.1/po/it.po --- gimp-2.2.0/po/it.po 2004-12-19 03:11:31.000000000 +0100 +++ gimp-2.2.1/po/it.po 2004-12-28 16:58:32.000000000 +0100 @@ -26,8 +26,8 @@ msgstr "" "Project-Id-Version: gimp 2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-19 03:11+0100\n" -"PO-Revision-Date: 2004-12-16 17:36+0100\n" +"POT-Creation-Date: 2004-12-28 16:58+0100\n" +"PO-Revision-Date: 2004-12-20 08:24+0100\n" "Last-Translator: Marco Ciampa \n" "Language-Team: gimp@erlug.linux.it\n" "MIME-Version: 1.0\n" @@ -1049,11 +1049,11 @@ msgid "Remove dangling entries" msgstr "Rimuovi voci sconnesse" -#: app/actions/documents-commands.c:252 app/actions/file-commands.c:163 +#: app/actions/documents-commands.c:251 app/actions/file-commands.c:163 #: app/dialogs/file-open-dialog.c:198 app/dialogs/file-open-dialog.c:249 #: app/dialogs/file-open-location-dialog.c:193 -#: app/display/gimpdisplayshell-dnd.c:332 app/widgets/gimplayertreeview.c:802 -#: app/widgets/gimptoolbox-dnd.c:123 +#: app/display/gimpdisplayshell-dnd.c:334 app/widgets/gimplayertreeview.c:804 +#: app/widgets/gimptoolbox-dnd.c:125 #, c-format msgid "" "Opening '%s' failed:\n" @@ -1561,115 +1561,115 @@ msgid "Zoom all" msgstr "Zoom totale" -#: app/actions/gradient-editor-actions.c:582 +#: app/actions/gradient-editor-actions.c:589 msgid "_Blending Function for Segment" msgstr "Tipo di _sfumatura per il segmento" -#: app/actions/gradient-editor-actions.c:584 +#: app/actions/gradient-editor-actions.c:591 msgid "Coloring _Type for Segment" msgstr "_Tipo di colorazione per il segmento" -#: app/actions/gradient-editor-actions.c:587 +#: app/actions/gradient-editor-actions.c:594 msgid "_Flip Segment" msgstr "Ri_fletti segmento" -#: app/actions/gradient-editor-actions.c:589 +#: app/actions/gradient-editor-actions.c:596 msgid "_Replicate Segment..." msgstr "D_uplica segmento..." -#: app/actions/gradient-editor-actions.c:591 +#: app/actions/gradient-editor-actions.c:598 msgid "Split Segment at _Midpoint" msgstr "Dividi segmento a _metà" -#: app/actions/gradient-editor-actions.c:593 +#: app/actions/gradient-editor-actions.c:600 msgid "Split Segment _Uniformly..." msgstr "Dividi il segmento _uniformemente..." -#: app/actions/gradient-editor-actions.c:595 +#: app/actions/gradient-editor-actions.c:602 msgid "_Delete Segment" msgstr "_Elimina segmento" -#: app/actions/gradient-editor-actions.c:597 +#: app/actions/gradient-editor-actions.c:604 msgid "Re-_center Segment's Midpoint" msgstr "Ri-_centra la metà del segmento" -#: app/actions/gradient-editor-actions.c:599 +#: app/actions/gradient-editor-actions.c:606 msgid "Re-distribute _Handles in Segment" msgstr "Ri-distribuzione _punti nel segmento" -#: app/actions/gradient-editor-actions.c:604 +#: app/actions/gradient-editor-actions.c:611 msgid "_Blending Function for Selection" msgstr "_Sfumatura della selezione" -#: app/actions/gradient-editor-actions.c:606 +#: app/actions/gradient-editor-actions.c:613 msgid "Coloring _Type for Selection" msgstr "_Tipo di colorazione per la selezione" -#: app/actions/gradient-editor-actions.c:609 +#: app/actions/gradient-editor-actions.c:616 msgid "_Flip Selection" msgstr "Ri_flessione selezione" -#: app/actions/gradient-editor-actions.c:611 +#: app/actions/gradient-editor-actions.c:618 msgid "_Replicate Selection..." msgstr "D_uplica selezione..." -#: app/actions/gradient-editor-actions.c:613 +#: app/actions/gradient-editor-actions.c:620 msgid "Split Segments at _Midpoints" msgstr "Dividi i seg_menti a metà" -#: app/actions/gradient-editor-actions.c:615 +#: app/actions/gradient-editor-actions.c:622 msgid "Split Segments _Uniformly..." msgstr "Dividi i segmenti _uniformemente..." -#: app/actions/gradient-editor-actions.c:617 +#: app/actions/gradient-editor-actions.c:624 msgid "_Delete Selection" msgstr "_Elimina la selezione" -#: app/actions/gradient-editor-actions.c:619 +#: app/actions/gradient-editor-actions.c:626 msgid "Re-_center Midpoints in Selection" msgstr "Ri-_centra le metà nella selezione" -#: app/actions/gradient-editor-actions.c:621 +#: app/actions/gradient-editor-actions.c:628 msgid "Re-distribute _Handles in Selection" msgstr "Ri-distribuizione dei _punti nella selezione" -#: app/actions/gradient-editor-commands.c:84 +#: app/actions/gradient-editor-commands.c:85 msgid "Left Endpoint Color" msgstr "Color_e capo sinistro" -#: app/actions/gradient-editor-commands.c:86 +#: app/actions/gradient-editor-commands.c:87 msgid "Gradient Segment's Left Endpoint Color" msgstr "Colore capo sinistro del segmento di gradiente" -#: app/actions/gradient-editor-commands.c:186 +#: app/actions/gradient-editor-commands.c:189 msgid "Right Endpoint Color" msgstr "Colore capo destro" -#: app/actions/gradient-editor-commands.c:188 +#: app/actions/gradient-editor-commands.c:191 msgid "Gradient Segment's Right Endpoint Color" msgstr "Colore capo destro del segmento di gradiente" -#: app/actions/gradient-editor-commands.c:353 +#: app/actions/gradient-editor-commands.c:358 msgid "Replicate Segment" msgstr "Duplica il segmento" -#: app/actions/gradient-editor-commands.c:354 +#: app/actions/gradient-editor-commands.c:359 msgid "Replicate Gradient Segment" msgstr "Duplica il segmento gradiente" -#: app/actions/gradient-editor-commands.c:358 +#: app/actions/gradient-editor-commands.c:363 msgid "Replicate Selection" msgstr "Duplica la selezione" -#: app/actions/gradient-editor-commands.c:359 +#: app/actions/gradient-editor-commands.c:364 msgid "Replicate Gradient Selection" msgstr "Duplica gradiente della selezione" -#: app/actions/gradient-editor-commands.c:371 +#: app/actions/gradient-editor-commands.c:376 msgid "Replicate" msgstr "Duplica" -#: app/actions/gradient-editor-commands.c:386 +#: app/actions/gradient-editor-commands.c:391 msgid "" "Select the number of times\n" "to replicate the selected segment." @@ -1677,7 +1677,7 @@ "Seleziona quante volta\n" "duplicare il segmento selezionato." -#: app/actions/gradient-editor-commands.c:389 +#: app/actions/gradient-editor-commands.c:394 msgid "" "Select the number of times\n" "to replicate the selection." @@ -1685,27 +1685,27 @@ "Seleziona quante volte\n" "duplicare la selezione." -#: app/actions/gradient-editor-commands.c:444 +#: app/actions/gradient-editor-commands.c:452 msgid "Split Segment Uniformly" msgstr "Dividi il segmento uniformemente" -#: app/actions/gradient-editor-commands.c:445 +#: app/actions/gradient-editor-commands.c:453 msgid "Split Gradient Segment Uniformly" msgstr "Dividi il segmento di gradiente uniformemente" -#: app/actions/gradient-editor-commands.c:449 +#: app/actions/gradient-editor-commands.c:457 msgid "Split Segments Uniformly" msgstr "Dividi i segmenti uniformemente" -#: app/actions/gradient-editor-commands.c:450 +#: app/actions/gradient-editor-commands.c:458 msgid "Split Gradient Segments Uniformly" msgstr "Dividi i segmenti di gradiente uniformemente" -#: app/actions/gradient-editor-commands.c:462 +#: app/actions/gradient-editor-commands.c:470 msgid "Split" msgstr "Divisione" -#: app/actions/gradient-editor-commands.c:478 +#: app/actions/gradient-editor-commands.c:486 msgid "" "Select the number of uniform parts\n" "in which to split the selected segment." @@ -1713,7 +1713,7 @@ "Seleziona in quante parti uniformi\n" "vuoi dividere il segmento selezionato." -#: app/actions/gradient-editor-commands.c:481 +#: app/actions/gradient-editor-commands.c:489 msgid "" "Select the number of uniform parts\n" "in which to split the segments in the selection." @@ -2150,7 +2150,7 @@ #: app/actions/layers-commands.c:232 app/actions/layers-commands.c:234 #: app/actions/layers-commands.c:291 app/actions/layers-commands.c:295 -#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:840 +#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:842 msgid "New Layer" msgstr "Nuovo livello" @@ -2162,7 +2162,7 @@ msgid "Set Layer Boundary Size" msgstr "Configura contorno del livello" -#: app/actions/layers-commands.c:512 app/core/gimplayer.c:255 +#: app/actions/layers-commands.c:512 app/core/gimplayer.c:253 msgid "Scale Layer" msgstr "Scala livello" @@ -2174,7 +2174,7 @@ msgid "Layer Mask to Selection" msgstr "Maschera livello a selezione" -#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1085 +#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1066 #: app/dialogs/layer-add-mask-dialog.c:62 msgid "Add Layer Mask" msgstr "Aggiungi maschera di livello" @@ -2719,7 +2719,7 @@ msgstr "Apri file di testo (UTF-8)" #: app/actions/text-editor-commands.c:132 app/config/gimpconfig-utils.c:552 -#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:393 +#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:396 #: app/core/gimpbrushgenerated.c:601 app/core/gimpbrushpipe.c:338 #: app/core/gimpgradient-load.c:63 app/core/gimppalette.c:360 #: app/core/gimppattern.c:328 app/tools/gimpimagemaptool.c:608 @@ -4577,7 +4577,7 @@ msgid "FG to Transparent" msgstr "Primo Piano a Trasparente" -#: app/core/gimp-gui.c:148 +#: app/core/gimp-gui.c:153 msgid "GIMP" msgstr "GIMP" @@ -4609,42 +4609,58 @@ msgid "Modules" msgstr "Moduli" -#: app/core/gimpbrush.c:531 +#: app/core/gimpbrush.c:534 #, c-format msgid "Could not read %d bytes from '%s': %s" msgstr "Impossibile leggere %d byte da '%s': %s" -#: app/core/gimpbrush.c:566 +#: app/core/gimpbrush.c:554 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Width = 0." +msgstr "" +"Errore fatale di analisi nel file pennello '%s': profondità sconosciuta %d." + +#: app/core/gimpbrush.c:563 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Height = 0." +msgstr "Errore fatale di analisi nel file pennello '%s': il file è errato." + +#: app/core/gimpbrush.c:572 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Bytes = 0." +msgstr "Errore fatale di analisi nel file pennello '%s': il file è errato." + +#: app/core/gimpbrush.c:596 #, c-format msgid "Fatal parse error in brush file '%s': Unknown depth %d." msgstr "" "Errore fatale di analisi nel file pennello '%s': profondità sconosciuta %d." -#: app/core/gimpbrush.c:579 +#: app/core/gimpbrush.c:609 #, c-format msgid "Fatal parse error in brush file '%s': Unknown version %d." msgstr "" "Errore fatale di analisi nel file pennello '%s': versione sconosciuta %d." -#: app/core/gimpbrush.c:595 app/core/gimpbrush.c:715 +#: app/core/gimpbrush.c:625 app/core/gimpbrush.c:745 #, c-format msgid "Fatal parse error in brush file '%s': File appears truncated." msgstr "" "Errore di analisi fatale nel file pennello '%s': il file sembra troncato." -#: app/core/gimpbrush.c:603 app/core/gimpbrushgenerated.c:648 +#: app/core/gimpbrush.c:633 app/core/gimpbrushgenerated.c:648 #: app/core/gimpbrushpipe.c:354 #, c-format msgid "Invalid UTF-8 string in brush file '%s'." msgstr "Stringa UTF-8 non valida nel file pennello '%s'." -#: app/core/gimpbrush.c:610 app/core/gimpcontext.c:1299 -#: app/core/gimpitem.c:479 app/core/gimppattern.c:400 +#: app/core/gimpbrush.c:640 app/core/gimpcontext.c:1299 +#: app/core/gimpitem.c:480 app/core/gimppattern.c:400 #: app/dialogs/template-options-dialog.c:80 app/tools/gimpvectortool.c:339 msgid "Unnamed" msgstr "Senza nome" -#: app/core/gimpbrush.c:704 +#: app/core/gimpbrush.c:734 #, c-format msgid "" "Fatal parse error in brush file '%s': Unsupported brush depth %d\n" @@ -4816,11 +4832,11 @@ "%s" #: app/core/gimpdatafactory.c:411 app/core/gimpdatafactory.c:414 -#: app/core/gimpitem.c:274 app/core/gimpitem.c:277 +#: app/core/gimpitem.c:275 app/core/gimpitem.c:278 msgid "copy" msgstr "copia" -#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:286 +#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:287 #, c-format msgid "%s copy" msgstr "%s copia" @@ -4883,7 +4899,7 @@ msgid "Rotate" msgstr "Rotazione" -#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:259 +#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:257 msgid "Transform Layer" msgstr "Trasforma livello" @@ -4927,6 +4943,7 @@ #, c-format msgid "Gradient file '%s' is corrupt: Segments do not span the range 0-1." msgstr "" +"Il file gradiente '%s' è danneggiato: i segmenti non coprono il campo 0-1." #: app/core/gimpgradient-load.c:281 #, c-format @@ -5251,7 +5268,7 @@ #. pixel size #: app/core/gimpimagefile.c:624 app/dialogs/info-window.c:552 -#: app/widgets/gimpsizebox.c:552 app/widgets/gimptemplateeditor.c:637 +#: app/widgets/gimpsizebox.c:429 app/widgets/gimptemplateeditor.c:637 #: app/widgets/gimptemplateeditor.c:673 #, c-format msgid "%d x %d pixels" @@ -5271,15 +5288,15 @@ msgid "Could not open thumbnail '%s': %s" msgstr "Impossibile aprire la miniatura '%s': %s." -#: app/core/gimpitem.c:1096 +#: app/core/gimpitem.c:1103 msgid "Attach Parasite" msgstr "Allega parasite" -#: app/core/gimpitem.c:1106 +#: app/core/gimpitem.c:1113 msgid "Attach Parasite to Item" msgstr "Allega parasite all'elemento" -#: app/core/gimpitem.c:1145 app/core/gimpitem.c:1152 +#: app/core/gimpitem.c:1152 app/core/gimpitem.c:1159 msgid "Remove Parasite from Item" msgstr "Rimuovi parasite dall'elemento" @@ -5308,37 +5325,37 @@ msgid "Floating Selection to Layer" msgstr "Selezione fluttuante al livello" -#: app/core/gimplayer.c:252 app/pdb/internal_procs.c:152 +#: app/core/gimplayer.c:250 app/pdb/internal_procs.c:152 msgid "Layer" msgstr "Livello" -#: app/core/gimplayer.c:253 +#: app/core/gimplayer.c:251 msgid "Rename Layer" msgstr "Rinomina livello" -#: app/core/gimplayer.c:254 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 +#: app/core/gimplayer.c:252 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 msgid "Move Layer" msgstr "Sposta livello" -#: app/core/gimplayer.c:256 +#: app/core/gimplayer.c:254 msgid "Resize Layer" msgstr "Ridimensiona Livello" -#: app/core/gimplayer.c:257 +#: app/core/gimplayer.c:255 msgid "Flip Layer" msgstr "Rifletti livello" -#: app/core/gimplayer.c:258 +#: app/core/gimplayer.c:256 msgid "Rotate Layer" msgstr "Ruota livello" -#: app/core/gimplayer.c:341 app/core/gimplayer.c:1129 +#: app/core/gimplayer.c:339 app/core/gimplayer.c:1110 #: app/core/gimplayermask.c:236 #, c-format msgid "%s mask" msgstr "%s maschera" -#: app/core/gimplayer.c:387 +#: app/core/gimplayer.c:385 #, c-format msgid "" "Floating Selection\n" @@ -5347,46 +5364,46 @@ "Selezione fluttuante\n" "(%s)" -#: app/core/gimplayer.c:1055 +#: app/core/gimplayer.c:1036 msgid "Cannot add layer mask to layer which is not part of an image." msgstr "" "Impossibile aggiungere una maschera di livello ad un livello che non è parte " "di un'immagine." -#: app/core/gimplayer.c:1062 +#: app/core/gimplayer.c:1043 msgid "Unable to add a layer mask since the layer already has one." msgstr "" "Impossibile aggiungere una maschera di livello dato che il livello ne ha già " "una." -#: app/core/gimplayer.c:1069 +#: app/core/gimplayer.c:1050 msgid "Cannot add layer mask to a layer with no alpha channel." msgstr "" "Impossibile aggiungere una maschera livello ad un livello senza canale alfa." -#: app/core/gimplayer.c:1079 +#: app/core/gimplayer.c:1060 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "" "Impossibile aggiungere maschera livello con dimensioni diverse dal livello " "specificato." -#: app/core/gimplayer.c:1183 +#: app/core/gimplayer.c:1164 msgid "Transfer Alpha to Mask" msgstr "Trasferimento alfa su maschera" -#: app/core/gimplayer.c:1343 +#: app/core/gimplayer.c:1324 msgid "Apply Layer Mask" msgstr "Applica maschera di livello" -#: app/core/gimplayer.c:1344 +#: app/core/gimplayer.c:1325 msgid "Delete Layer Mask" msgstr "Elimina maschera di livello" -#: app/core/gimplayer.c:1445 +#: app/core/gimplayer.c:1426 msgid "Add Alpha Channel" msgstr "Aggiunta canale alfa" -#: app/core/gimplayer.c:1467 +#: app/core/gimplayer.c:1448 msgid "Layer to Image Size" msgstr "Livello a dimensione dell'immagine" @@ -6852,28 +6869,28 @@ msgstr "Dimensione di stampa" #. the image size labels -#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:241 +#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:222 #: app/widgets/gimptemplateeditor.c:236 msgid "_Width:" msgstr "_Larghezza:" -#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:248 +#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:225 #: app/widgets/gimptemplateeditor.c:243 msgid "H_eight:" msgstr "Alt_ezza:" #. the resolution labels -#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:338 +#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:273 #: app/widgets/gimptemplateeditor.c:363 msgid "_X resolution:" msgstr "Risoluzione _X:" -#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:345 +#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:276 #: app/widgets/gimptemplateeditor.c:370 msgid "_Y resolution:" msgstr "Risoluzione _Y:" -#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:357 +#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:269 #: app/widgets/gimptemplateeditor.c:383 #, c-format msgid "pixels/%a" @@ -6897,9 +6914,8 @@ msgstr "Ci sono %d immagini con cambiamenti non salvati:" #: app/dialogs/quit-dialog.c:183 -#, fuzzy msgid "_Discard Changes" -msgstr "Al_za il canale" +msgstr "Ann_ulla i cambiamenti" #: app/dialogs/resize-dialog.c:115 msgid "Canvas Size" @@ -7505,11 +7521,11 @@ msgid "%d minutes" msgstr "%d minuti" -#: app/display/gimpdisplayshell-dnd.c:96 +#: app/display/gimpdisplayshell-dnd.c:98 msgid "Drop New Layer" msgstr "Nuovo livello" -#: app/display/gimpdisplayshell-dnd.c:140 +#: app/display/gimpdisplayshell-dnd.c:142 msgid "Drop New Path" msgstr "Nuovo tracciato" @@ -8973,12 +8989,12 @@ msgstr "_Pennello" #: app/tools/gimppaintoptions-gui.c:103 app/widgets/gimpbrushselect.c:201 -#: app/widgets/gimplayertreeview.c:330 +#: app/widgets/gimplayertreeview.c:332 msgid "Opacity:" msgstr "Opacità:" #: app/tools/gimppaintoptions-gui.c:108 app/tools/gimpselectionoptions.c:374 -#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:323 +#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:325 msgid "Mode:" msgstr "Modalità:" @@ -9119,9 +9135,8 @@ msgstr "Centro X:" #: app/tools/gimprotatetool.c:190 -#, fuzzy msgid "Center Y:" -msgstr "Centro X:" +msgstr "Centro Y:" #: app/tools/gimpscaletool.c:91 msgid "Scale" @@ -10383,24 +10398,24 @@ msgid "Set Item Exclusive Linked" msgstr "Imposta voce esclusiva collegata" -#: app/widgets/gimplayertreeview.c:250 +#: app/widgets/gimplayertreeview.c:252 msgid "Reorder Layer" msgstr "Riordina livello" -#: app/widgets/gimplayertreeview.c:311 +#: app/widgets/gimplayertreeview.c:313 msgid "Keep transparency" msgstr "Mantieni la trasparenza" -#: app/widgets/gimplayertreeview.c:846 +#: app/widgets/gimplayertreeview.c:848 msgid "Empty Layer" msgstr "Livello vuoto" -#: app/widgets/gimpmessagebox.c:458 +#: app/widgets/gimpmessagebox.c:460 #, c-format msgid "Message repeated %d times." msgstr "Messaggio ripetuto %d volte." -#: app/widgets/gimpmessagebox.c:460 +#: app/widgets/gimpmessagebox.c:462 msgid "Message repeated once." msgstr "Messaggio ripetuto una volta." @@ -10432,16 +10447,12 @@ msgid "Invalid UTF-8" msgstr "UTF-8 non valido" -#: app/widgets/gimpsizebox.c:290 -msgid "Keep aspect ratio" -msgstr "Mantieni il rapporto dimensioni" - -#: app/widgets/gimpsizebox.c:574 +#: app/widgets/gimpsizebox.c:451 #, c-format msgid "%d x %d dpi" msgstr "%d x %d dpi" -#: app/widgets/gimpsizebox.c:578 +#: app/widgets/gimpsizebox.c:455 #, c-format msgid "%d dpi" msgstr "%d dpi" @@ -10884,5 +10895,5 @@ msgid "Image Editor" msgstr "Editor immagine" -#~ msgid "Y:" -#~ msgstr "Y:" +#~ msgid "Keep aspect ratio" +#~ msgstr "Mantieni il rapporto dimensioni" diff -uraN gimp-2.2.0/po/ja.gmo gimp-2.2.1/po/ja.gmo --- gimp-2.2.0/po/ja.gmo 2004-12-19 03:11:55.000000000 +0100 +++ gimp-2.2.1/po/ja.gmo 2004-12-28 16:58:43.000000000 +0100 @@ -168,7 +168,7 @@ did not save indexed colormaps correctly. Substituting grayscale map.YellowYellow:You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom factor: %d:1Zoom inZoom in & outZoom outZoom:[ Base Image ]_Antialiasing_Auto_B_Blending Function for Segment_Blending Function for Selection_Brightness:_Brush_C_Delete Segment_Delete Selection_Flip Segment_Flip Selection_G_Gradient_Horizontal:_Hue:_Icon:_Import_Lightness:_M_Manually_Name:_Pattern_Preview_R_Redo_Redo %s_Replicate Segment..._Replicate Selection..._Saturation:_Selection_Undo_Undo %s_Vertical:_X:_Y_Y:_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for token %sinvalid value '%s' for token %smillimetermillimetersn/apercentpicapicaspixelpixelspixels/%apixels/%spointpointstips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: HEAD Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-19 03:11+0100 +POT-Creation-Date: 2004-12-28 16:58+0100 PO-Revision-Date: 2004-03-28 05:20+0900 Last-Translator: SHIRASAKI Yasuhiro Language-Team: Japanese diff -uraN gimp-2.2.0/po/ja.po gimp-2.2.1/po/ja.po --- gimp-2.2.0/po/ja.po 2004-12-19 03:11:32.000000000 +0100 +++ gimp-2.2.1/po/ja.po 2004-12-28 16:58:32.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-19 03:11+0100\n" +"POT-Creation-Date: 2004-12-28 16:58+0100\n" "PO-Revision-Date: 2004-03-28 05:20+0900\n" "Last-Translator: SHIRASAKI Yasuhiro \n" "Language-Team: Japanese \n" @@ -1158,11 +1158,11 @@ msgid "Remove dangling entries" msgstr "/不要なエントリの削除(_n)" -#: app/actions/documents-commands.c:252 app/actions/file-commands.c:163 +#: app/actions/documents-commands.c:251 app/actions/file-commands.c:163 #: app/dialogs/file-open-dialog.c:198 app/dialogs/file-open-dialog.c:249 #: app/dialogs/file-open-location-dialog.c:193 -#: app/display/gimpdisplayshell-dnd.c:332 app/widgets/gimplayertreeview.c:802 -#: app/widgets/gimptoolbox-dnd.c:123 +#: app/display/gimpdisplayshell-dnd.c:334 app/widgets/gimplayertreeview.c:804 +#: app/widgets/gimptoolbox-dnd.c:125 #, c-format msgid "" "Opening '%s' failed:\n" @@ -1746,115 +1746,115 @@ msgid "Zoom all" msgstr "全表示" -#: app/actions/gradient-editor-actions.c:582 +#: app/actions/gradient-editor-actions.c:589 msgid "_Blending Function for Segment" msgstr "セグメントに対する混色関数(_B)" -#: app/actions/gradient-editor-actions.c:584 +#: app/actions/gradient-editor-actions.c:591 msgid "Coloring _Type for Segment" msgstr "セグメントに対する色モデル(_T)" -#: app/actions/gradient-editor-actions.c:587 +#: app/actions/gradient-editor-actions.c:594 msgid "_Flip Segment" msgstr "セグメントの左右反転(_F)" -#: app/actions/gradient-editor-actions.c:589 +#: app/actions/gradient-editor-actions.c:596 msgid "_Replicate Segment..." msgstr "セグメントの複製(_R)..." -#: app/actions/gradient-editor-actions.c:591 +#: app/actions/gradient-editor-actions.c:598 msgid "Split Segment at _Midpoint" msgstr "セグメントを中間点で分割(_M)" -#: app/actions/gradient-editor-actions.c:593 +#: app/actions/gradient-editor-actions.c:600 msgid "Split Segment _Uniformly..." msgstr "セグメントを均等に分割(_U)..." -#: app/actions/gradient-editor-actions.c:595 +#: app/actions/gradient-editor-actions.c:602 msgid "_Delete Segment" msgstr "セグメントを削除(_D)" -#: app/actions/gradient-editor-actions.c:597 +#: app/actions/gradient-editor-actions.c:604 msgid "Re-_center Segment's Midpoint" msgstr "セグメントの中間点を中央に移動(_C)" -#: app/actions/gradient-editor-actions.c:599 +#: app/actions/gradient-editor-actions.c:606 msgid "Re-distribute _Handles in Segment" msgstr "セグメント中の制御点を再分配(_H)" -#: app/actions/gradient-editor-actions.c:604 +#: app/actions/gradient-editor-actions.c:611 msgid "_Blending Function for Selection" msgstr "選択領域に対する混色関数(_B)" -#: app/actions/gradient-editor-actions.c:606 +#: app/actions/gradient-editor-actions.c:613 msgid "Coloring _Type for Selection" msgstr "選択領域に対する色モデル(_T)" -#: app/actions/gradient-editor-actions.c:609 +#: app/actions/gradient-editor-actions.c:616 msgid "_Flip Selection" msgstr "選択領域を反転(_F)" -#: app/actions/gradient-editor-actions.c:611 +#: app/actions/gradient-editor-actions.c:618 msgid "_Replicate Selection..." msgstr "選択領域を複製(_R)..." -#: app/actions/gradient-editor-actions.c:613 +#: app/actions/gradient-editor-actions.c:620 msgid "Split Segments at _Midpoints" msgstr "セグメント群を中間点で分割(_M)" -#: app/actions/gradient-editor-actions.c:615 +#: app/actions/gradient-editor-actions.c:622 msgid "Split Segments _Uniformly..." msgstr "セグメント群を均等に分割(_U)..." -#: app/actions/gradient-editor-actions.c:617 +#: app/actions/gradient-editor-actions.c:624 msgid "_Delete Selection" msgstr "選択領域を削除(_D)" -#: app/actions/gradient-editor-actions.c:619 +#: app/actions/gradient-editor-actions.c:626 msgid "Re-_center Midpoints in Selection" msgstr "選択領域の中間点を中央に移動(_C)" -#: app/actions/gradient-editor-actions.c:621 +#: app/actions/gradient-editor-actions.c:628 msgid "Re-distribute _Handles in Selection" msgstr "選択領域の制御点を再分配(_H)" -#: app/actions/gradient-editor-commands.c:84 +#: app/actions/gradient-editor-commands.c:85 msgid "Left Endpoint Color" msgstr "左終端色" -#: app/actions/gradient-editor-commands.c:86 +#: app/actions/gradient-editor-commands.c:87 msgid "Gradient Segment's Left Endpoint Color" msgstr "グラデーションセグメントの左終端の色" -#: app/actions/gradient-editor-commands.c:186 +#: app/actions/gradient-editor-commands.c:189 msgid "Right Endpoint Color" msgstr "右終端色" -#: app/actions/gradient-editor-commands.c:188 +#: app/actions/gradient-editor-commands.c:191 msgid "Gradient Segment's Right Endpoint Color" msgstr "グラデーションセグメントの右終端の色" -#: app/actions/gradient-editor-commands.c:353 +#: app/actions/gradient-editor-commands.c:358 msgid "Replicate Segment" msgstr "セグメントの複製" -#: app/actions/gradient-editor-commands.c:354 +#: app/actions/gradient-editor-commands.c:359 msgid "Replicate Gradient Segment" msgstr "グラデーションセグメントを複製" -#: app/actions/gradient-editor-commands.c:358 +#: app/actions/gradient-editor-commands.c:363 msgid "Replicate Selection" msgstr "選択領域の複製" -#: app/actions/gradient-editor-commands.c:359 +#: app/actions/gradient-editor-commands.c:364 msgid "Replicate Gradient Selection" msgstr "グラデーション選択領域を複製" -#: app/actions/gradient-editor-commands.c:371 +#: app/actions/gradient-editor-commands.c:376 msgid "Replicate" msgstr "複製" -#: app/actions/gradient-editor-commands.c:386 +#: app/actions/gradient-editor-commands.c:391 msgid "" "Select the number of times\n" "to replicate the selected segment." @@ -1862,7 +1862,7 @@ "選択したセグメントを\n" "何回複製するか選択して下さい." -#: app/actions/gradient-editor-commands.c:389 +#: app/actions/gradient-editor-commands.c:394 msgid "" "Select the number of times\n" "to replicate the selection." @@ -1870,27 +1870,27 @@ "選択領域を\n" "何回複製するか選択して下さい." -#: app/actions/gradient-editor-commands.c:444 +#: app/actions/gradient-editor-commands.c:452 msgid "Split Segment Uniformly" msgstr "セグメントを均等に分割" -#: app/actions/gradient-editor-commands.c:445 +#: app/actions/gradient-editor-commands.c:453 msgid "Split Gradient Segment Uniformly" msgstr "グラデーションセグメントを均等に分割" -#: app/actions/gradient-editor-commands.c:449 +#: app/actions/gradient-editor-commands.c:457 msgid "Split Segments Uniformly" msgstr "セグメント群を均等に分割" -#: app/actions/gradient-editor-commands.c:450 +#: app/actions/gradient-editor-commands.c:458 msgid "Split Gradient Segments Uniformly" msgstr "グラデーションセグメント群を均等に分割" -#: app/actions/gradient-editor-commands.c:462 +#: app/actions/gradient-editor-commands.c:470 msgid "Split" msgstr "分割" -#: app/actions/gradient-editor-commands.c:478 +#: app/actions/gradient-editor-commands.c:486 msgid "" "Select the number of uniform parts\n" "in which to split the selected segment." @@ -1898,7 +1898,7 @@ "選択したセグメントをいくつに\n" "分割するか選択して下さい" -#: app/actions/gradient-editor-commands.c:481 +#: app/actions/gradient-editor-commands.c:489 msgid "" "Select the number of uniform parts\n" "in which to split the segments in the selection." @@ -2419,7 +2419,7 @@ #: app/actions/layers-commands.c:232 app/actions/layers-commands.c:234 #: app/actions/layers-commands.c:291 app/actions/layers-commands.c:295 -#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:840 +#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:842 msgid "New Layer" msgstr "新規レイヤー" @@ -2431,7 +2431,7 @@ msgid "Set Layer Boundary Size" msgstr "レイヤー境界の大きさ設定" -#: app/actions/layers-commands.c:512 app/core/gimplayer.c:255 +#: app/actions/layers-commands.c:512 app/core/gimplayer.c:253 msgid "Scale Layer" msgstr "レイヤーの拡大・縮小" @@ -2443,7 +2443,7 @@ msgid "Layer Mask to Selection" msgstr "レイヤーマスクを選択領域に" -#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1085 +#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1066 #: app/dialogs/layer-add-mask-dialog.c:62 msgid "Add Layer Mask" msgstr "レイヤーマスク追加" @@ -3077,7 +3077,7 @@ msgstr "テキストファイル (UTF-8) を開く" #: app/actions/text-editor-commands.c:132 app/config/gimpconfig-utils.c:552 -#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:393 +#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:396 #: app/core/gimpbrushgenerated.c:601 app/core/gimpbrushpipe.c:338 #: app/core/gimpgradient-load.c:63 app/core/gimppalette.c:360 #: app/core/gimppattern.c:328 app/tools/gimpimagemaptool.c:608 @@ -5071,7 +5071,7 @@ msgid "FG to Transparent" msgstr "前景から透明に" -#: app/core/gimp-gui.c:148 +#: app/core/gimp-gui.c:153 msgid "GIMP" msgstr "GIMP" @@ -5103,40 +5103,55 @@ msgid "Modules" msgstr "モジュール" -#: app/core/gimpbrush.c:531 +#: app/core/gimpbrush.c:534 #, c-format msgid "Could not read %d bytes from '%s': %s" msgstr "'%2$s' から %1$d バイト読み込めませんでした: %3$s" -#: app/core/gimpbrush.c:566 +#: app/core/gimpbrush.c:554 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Width = 0." +msgstr "ブラシ '%s' で致命的な解析エラー: %d は不明な深度です." + +#: app/core/gimpbrush.c:563 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Height = 0." +msgstr "ブラシ '%s' で致命的な解析エラー: ファイルが壊れています." + +#: app/core/gimpbrush.c:572 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Bytes = 0." +msgstr "ブラシ '%s' で致命的な解析エラー: ファイルが壊れています." + +#: app/core/gimpbrush.c:596 #, c-format msgid "Fatal parse error in brush file '%s': Unknown depth %d." msgstr "ブラシ '%s' で致命的な解析エラー: %d は不明な深度です." -#: app/core/gimpbrush.c:579 +#: app/core/gimpbrush.c:609 #, c-format msgid "Fatal parse error in brush file '%s': Unknown version %d." msgstr "ブラシ '%s' で致命的な解析エラー: %d は不明なバージョンです." -#: app/core/gimpbrush.c:595 app/core/gimpbrush.c:715 +#: app/core/gimpbrush.c:625 app/core/gimpbrush.c:745 #, c-format msgid "Fatal parse error in brush file '%s': File appears truncated." msgstr "" "ブラシ '%s' で致命的な解析エラー: ファイルは切り分けられているようです." -#: app/core/gimpbrush.c:603 app/core/gimpbrushgenerated.c:648 +#: app/core/gimpbrush.c:633 app/core/gimpbrushgenerated.c:648 #: app/core/gimpbrushpipe.c:354 #, c-format msgid "Invalid UTF-8 string in brush file '%s'." msgstr "ブラシファイル '%s' 中に不適切な UTF-8 文字列があります." -#: app/core/gimpbrush.c:610 app/core/gimpcontext.c:1299 -#: app/core/gimpitem.c:479 app/core/gimppattern.c:400 +#: app/core/gimpbrush.c:640 app/core/gimpcontext.c:1299 +#: app/core/gimpitem.c:480 app/core/gimppattern.c:400 #: app/dialogs/template-options-dialog.c:80 app/tools/gimpvectortool.c:339 msgid "Unnamed" msgstr "名前なし" -#: app/core/gimpbrush.c:704 +#: app/core/gimpbrush.c:734 #, c-format msgid "" "Fatal parse error in brush file '%s': Unsupported brush depth %d\n" @@ -5303,11 +5318,11 @@ "%s" #: app/core/gimpdatafactory.c:411 app/core/gimpdatafactory.c:414 -#: app/core/gimpitem.c:274 app/core/gimpitem.c:277 +#: app/core/gimpitem.c:275 app/core/gimpitem.c:278 msgid "copy" msgstr "コピー" -#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:286 +#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:287 #, c-format msgid "%s copy" msgstr "%s コピー" @@ -5369,7 +5384,7 @@ msgid "Rotate" msgstr "回転" -#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:259 +#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:257 msgid "Transform Layer" msgstr "変換レイヤー" @@ -5740,7 +5755,7 @@ #. pixel size #: app/core/gimpimagefile.c:624 app/dialogs/info-window.c:552 -#: app/widgets/gimpsizebox.c:552 app/widgets/gimptemplateeditor.c:637 +#: app/widgets/gimpsizebox.c:429 app/widgets/gimptemplateeditor.c:637 #: app/widgets/gimptemplateeditor.c:673 #, c-format msgid "%d x %d pixels" @@ -5760,15 +5775,15 @@ msgid "Could not open thumbnail '%s': %s" msgstr "サムネイルファイル '%s' が開けません: %s" -#: app/core/gimpitem.c:1096 +#: app/core/gimpitem.c:1103 msgid "Attach Parasite" msgstr "パラサイト付加" -#: app/core/gimpitem.c:1106 +#: app/core/gimpitem.c:1113 msgid "Attach Parasite to Item" msgstr "アイテムにパラサイト付加" -#: app/core/gimpitem.c:1145 app/core/gimpitem.c:1152 +#: app/core/gimpitem.c:1152 app/core/gimpitem.c:1159 msgid "Remove Parasite from Item" msgstr "アイテムからパラサイト削除" @@ -5797,79 +5812,79 @@ msgid "Floating Selection to Layer" msgstr "フローティング選択領域をレイヤーに" -#: app/core/gimplayer.c:252 app/pdb/internal_procs.c:152 +#: app/core/gimplayer.c:250 app/pdb/internal_procs.c:152 msgid "Layer" msgstr "レイヤー" -#: app/core/gimplayer.c:253 +#: app/core/gimplayer.c:251 msgid "Rename Layer" msgstr "レイヤー名変更" -#: app/core/gimplayer.c:254 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 +#: app/core/gimplayer.c:252 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 msgid "Move Layer" msgstr "レイヤーを移動" -#: app/core/gimplayer.c:256 +#: app/core/gimplayer.c:254 msgid "Resize Layer" msgstr "レイヤーサイズの変更" -#: app/core/gimplayer.c:257 +#: app/core/gimplayer.c:255 msgid "Flip Layer" msgstr "レイヤーを反転" -#: app/core/gimplayer.c:258 +#: app/core/gimplayer.c:256 msgid "Rotate Layer" msgstr "レイヤーを回転" -#: app/core/gimplayer.c:341 app/core/gimplayer.c:1129 +#: app/core/gimplayer.c:339 app/core/gimplayer.c:1110 #: app/core/gimplayermask.c:236 #, c-format msgid "%s mask" msgstr "%s マスク" -#: app/core/gimplayer.c:387 +#: app/core/gimplayer.c:385 #, fuzzy, c-format msgid "" "Floating Selection\n" "(%s)" msgstr "フローティング選択領域" -#: app/core/gimplayer.c:1055 +#: app/core/gimplayer.c:1036 msgid "Cannot add layer mask to layer which is not part of an image." msgstr "画像の一部分でないレイヤーにレイヤーマスクを付加する事はできません." -#: app/core/gimplayer.c:1062 +#: app/core/gimplayer.c:1043 msgid "Unable to add a layer mask since the layer already has one." msgstr "" "既にレイヤーマスクがあるのでこれ以上レイヤーマスクを付加する事はできません." -#: app/core/gimplayer.c:1069 +#: app/core/gimplayer.c:1050 msgid "Cannot add layer mask to a layer with no alpha channel." msgstr "" "アルファチャンネルを持たないレイヤーにレイヤーマスクを付加する事はできません." -#: app/core/gimplayer.c:1079 +#: app/core/gimplayer.c:1060 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "" "指定したレイヤーと異る大きさを持つレイヤーマスクを付加することはできません." -#: app/core/gimplayer.c:1183 +#: app/core/gimplayer.c:1164 msgid "Transfer Alpha to Mask" msgstr "アルファチャンネルをマスクに変換" -#: app/core/gimplayer.c:1343 +#: app/core/gimplayer.c:1324 msgid "Apply Layer Mask" msgstr "レイヤーマスクの適用" -#: app/core/gimplayer.c:1344 +#: app/core/gimplayer.c:1325 msgid "Delete Layer Mask" msgstr "レイヤーマスク削除" -#: app/core/gimplayer.c:1445 +#: app/core/gimplayer.c:1426 msgid "Add Alpha Channel" msgstr "アルファチャンネルを追加" -#: app/core/gimplayer.c:1467 +#: app/core/gimplayer.c:1448 msgid "Layer to Image Size" msgstr "レイヤーを画像サイズに合わせる" @@ -7410,32 +7425,32 @@ msgstr "印刷サイズ:" #. the image size labels -#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:241 +#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:222 #: app/widgets/gimptemplateeditor.c:236 #, fuzzy msgid "_Width:" msgstr "幅:" -#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:248 +#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:225 #: app/widgets/gimptemplateeditor.c:243 #, fuzzy msgid "H_eight:" msgstr "高さ:" #. the resolution labels -#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:338 +#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:273 #: app/widgets/gimptemplateeditor.c:363 #, fuzzy msgid "_X resolution:" msgstr "解像度:" -#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:345 +#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:276 #: app/widgets/gimptemplateeditor.c:370 #, fuzzy msgid "_Y resolution:" msgstr "解像度:" -#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:357 +#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:269 #: app/widgets/gimptemplateeditor.c:383 #, c-format msgid "pixels/%a" @@ -8081,11 +8096,11 @@ msgid "%d minutes" msgstr "" -#: app/display/gimpdisplayshell-dnd.c:96 +#: app/display/gimpdisplayshell-dnd.c:98 msgid "Drop New Layer" msgstr "新規レイヤーをドロップ" -#: app/display/gimpdisplayshell-dnd.c:140 +#: app/display/gimpdisplayshell-dnd.c:142 msgid "Drop New Path" msgstr "新規パスをドロップ" @@ -9634,12 +9649,12 @@ msgstr "絵筆" #: app/tools/gimppaintoptions-gui.c:103 app/widgets/gimpbrushselect.c:201 -#: app/widgets/gimplayertreeview.c:330 +#: app/widgets/gimplayertreeview.c:332 msgid "Opacity:" msgstr "不透明度:" #: app/tools/gimppaintoptions-gui.c:108 app/tools/gimpselectionoptions.c:374 -#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:323 +#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:325 msgid "Mode:" msgstr "モード:" @@ -11104,25 +11119,25 @@ msgid "Set Item Exclusive Linked" msgstr "アイテムを排他リンクにする" -#: app/widgets/gimplayertreeview.c:250 +#: app/widgets/gimplayertreeview.c:252 msgid "Reorder Layer" msgstr "レイヤーの並び替え" -#: app/widgets/gimplayertreeview.c:311 +#: app/widgets/gimplayertreeview.c:313 #, fuzzy msgid "Keep transparency" msgstr "透明保護" -#: app/widgets/gimplayertreeview.c:846 +#: app/widgets/gimplayertreeview.c:848 msgid "Empty Layer" msgstr "空のレイヤー" -#: app/widgets/gimpmessagebox.c:458 +#: app/widgets/gimpmessagebox.c:460 #, c-format msgid "Message repeated %d times." msgstr "%d 回同じメッセージが繰り返されました" -#: app/widgets/gimpmessagebox.c:460 +#: app/widgets/gimpmessagebox.c:462 msgid "Message repeated once." msgstr "同じメッセージが繰り返されました" @@ -11154,17 +11169,12 @@ msgid "Invalid UTF-8" msgstr "不適切な UTF-8 文字列" -#: app/widgets/gimpsizebox.c:290 -#, fuzzy -msgid "Keep aspect ratio" -msgstr "固定サイズ / 縦横比" - -#: app/widgets/gimpsizebox.c:574 +#: app/widgets/gimpsizebox.c:451 #, fuzzy, c-format msgid "%d x %d dpi" msgstr "%d x %d ピクセル" -#: app/widgets/gimpsizebox.c:578 +#: app/widgets/gimpsizebox.c:455 #, fuzzy, c-format msgid "%d dpi" msgstr "dpi" @@ -11643,6 +11653,10 @@ msgid "Image Editor" msgstr "パレット編集" +#, fuzzy +#~ msgid "Keep aspect ratio" +#~ msgstr "固定サイズ / 縦横比" + #~ msgid "Y:" #~ msgstr "Y:" diff -uraN gimp-2.2.0/po/ko.gmo gimp-2.2.1/po/ko.gmo --- gimp-2.2.0/po/ko.gmo 2004-12-19 03:11:55.000000000 +0100 +++ gimp-2.2.1/po/ko.gmo 2004-12-28 16:58:43.000000000 +0100 @@ -181,7 +181,7 @@ did not save indexed colormaps correctly. Substituting grayscale map.YellowYellow:You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom factor: %d:1Zoom inZoom in & outZoom outZoom:[ Base Image ]_Antialiasing_Auto_B_Blending Function for Segment_Blending Function for Selection_Brightness:_Brush_C_Delete Segment_Delete Selection_Flip Segment_Flip Selection_G_Gradient_Horizontal:_Hue:_Icon:_Import_Lightness:_M_Manually_Name:_Pattern_Preview_R_Redo_Redo %s_Replicate Segment..._Replicate Selection..._Saturation:_Selection_Undo_Undo %s_Vertical:_X:_Y_Y:_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for token %sinvalid value '%s' for token %smillimetermillimetersn/apercentpicapicaspixelpixelspixels/%apixels/%spointpointstips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: HEAD Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-19 03:11+0100 +POT-Creation-Date: 2004-12-28 16:58+0100 PO-Revision-Date: 2004-01-20 19:30+0900 Last-Translator: Dongsu Jang Language-Team: Korean diff -uraN gimp-2.2.0/po/ko.po gimp-2.2.1/po/ko.po --- gimp-2.2.0/po/ko.po 2004-12-19 03:11:33.000000000 +0100 +++ gimp-2.2.1/po/ko.po 2004-12-28 16:58:33.000000000 +0100 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-19 03:11+0100\n" +"POT-Creation-Date: 2004-12-28 16:58+0100\n" "PO-Revision-Date: 2004-01-20 19:30+0900\n" "Last-Translator: Dongsu Jang \n" "Language-Team: Korean \n" @@ -1150,11 +1150,11 @@ msgid "Remove dangling entries" msgstr "/원본이 없는 항목 지우기(_N)" -#: app/actions/documents-commands.c:252 app/actions/file-commands.c:163 +#: app/actions/documents-commands.c:251 app/actions/file-commands.c:163 #: app/dialogs/file-open-dialog.c:198 app/dialogs/file-open-dialog.c:249 #: app/dialogs/file-open-location-dialog.c:193 -#: app/display/gimpdisplayshell-dnd.c:332 app/widgets/gimplayertreeview.c:802 -#: app/widgets/gimptoolbox-dnd.c:123 +#: app/display/gimpdisplayshell-dnd.c:334 app/widgets/gimplayertreeview.c:804 +#: app/widgets/gimptoolbox-dnd.c:125 #, c-format msgid "" "Opening '%s' failed:\n" @@ -1737,115 +1737,115 @@ msgid "Zoom all" msgstr "전체 확대" -#: app/actions/gradient-editor-actions.c:582 +#: app/actions/gradient-editor-actions.c:589 msgid "_Blending Function for Segment" msgstr "구획의 혼합 함수(_B)" -#: app/actions/gradient-editor-actions.c:584 +#: app/actions/gradient-editor-actions.c:591 msgid "Coloring _Type for Segment" msgstr "구획의 배색 유형(_T)" -#: app/actions/gradient-editor-actions.c:587 +#: app/actions/gradient-editor-actions.c:594 msgid "_Flip Segment" msgstr "구획 뒤집기(_F)" -#: app/actions/gradient-editor-actions.c:589 +#: app/actions/gradient-editor-actions.c:596 msgid "_Replicate Segment..." msgstr "구획 복제(_R)..." -#: app/actions/gradient-editor-actions.c:591 +#: app/actions/gradient-editor-actions.c:598 msgid "Split Segment at _Midpoint" msgstr "중점에서 구획 분리(_M)" -#: app/actions/gradient-editor-actions.c:593 +#: app/actions/gradient-editor-actions.c:600 msgid "Split Segment _Uniformly..." msgstr "균등한 구획 분할(_U)..." -#: app/actions/gradient-editor-actions.c:595 +#: app/actions/gradient-editor-actions.c:602 msgid "_Delete Segment" msgstr "구획 지우기(_D)" -#: app/actions/gradient-editor-actions.c:597 +#: app/actions/gradient-editor-actions.c:604 msgid "Re-_center Segment's Midpoint" msgstr "구획의 중점을 다시 가운데로(_C)" -#: app/actions/gradient-editor-actions.c:599 +#: app/actions/gradient-editor-actions.c:606 msgid "Re-distribute _Handles in Segment" msgstr "구획의 조절점 재배치(_H)" -#: app/actions/gradient-editor-actions.c:604 +#: app/actions/gradient-editor-actions.c:611 msgid "_Blending Function for Selection" msgstr "선택의 혼합 함수(_B)" -#: app/actions/gradient-editor-actions.c:606 +#: app/actions/gradient-editor-actions.c:613 msgid "Coloring _Type for Selection" msgstr "선택의 배색 유형(_T)" -#: app/actions/gradient-editor-actions.c:609 +#: app/actions/gradient-editor-actions.c:616 msgid "_Flip Selection" msgstr "선택 뒤집기(_F)" -#: app/actions/gradient-editor-actions.c:611 +#: app/actions/gradient-editor-actions.c:618 msgid "_Replicate Selection..." msgstr "선택 복제(_R)..." -#: app/actions/gradient-editor-actions.c:613 +#: app/actions/gradient-editor-actions.c:620 msgid "Split Segments at _Midpoints" msgstr "중점에서 구획 분할(_M)" -#: app/actions/gradient-editor-actions.c:615 +#: app/actions/gradient-editor-actions.c:622 msgid "Split Segments _Uniformly..." msgstr "균등하게 구획 분할(_U)..." -#: app/actions/gradient-editor-actions.c:617 +#: app/actions/gradient-editor-actions.c:624 msgid "_Delete Selection" msgstr "선택 지우기(_D)" -#: app/actions/gradient-editor-actions.c:619 +#: app/actions/gradient-editor-actions.c:626 msgid "Re-_center Midpoints in Selection" msgstr "선택의 중점을 다시 가운데로(_C)" -#: app/actions/gradient-editor-actions.c:621 +#: app/actions/gradient-editor-actions.c:628 msgid "Re-distribute _Handles in Selection" msgstr "선택의 조절점 재배치(_H)" -#: app/actions/gradient-editor-commands.c:84 +#: app/actions/gradient-editor-commands.c:85 msgid "Left Endpoint Color" msgstr "왼쪽 끝점 색상" -#: app/actions/gradient-editor-commands.c:86 +#: app/actions/gradient-editor-commands.c:87 msgid "Gradient Segment's Left Endpoint Color" msgstr "그라디언트 구획의 왼쪽 끝점 색상" -#: app/actions/gradient-editor-commands.c:186 +#: app/actions/gradient-editor-commands.c:189 msgid "Right Endpoint Color" msgstr "오른쪽 끝점 색상" -#: app/actions/gradient-editor-commands.c:188 +#: app/actions/gradient-editor-commands.c:191 msgid "Gradient Segment's Right Endpoint Color" msgstr "그라디언트 구획의 오른쪽 끝점 색상" -#: app/actions/gradient-editor-commands.c:353 +#: app/actions/gradient-editor-commands.c:358 msgid "Replicate Segment" msgstr "구획 복제" -#: app/actions/gradient-editor-commands.c:354 +#: app/actions/gradient-editor-commands.c:359 msgid "Replicate Gradient Segment" msgstr "그라디언트 구획 복제" -#: app/actions/gradient-editor-commands.c:358 +#: app/actions/gradient-editor-commands.c:363 msgid "Replicate Selection" msgstr "선택 복제" -#: app/actions/gradient-editor-commands.c:359 +#: app/actions/gradient-editor-commands.c:364 msgid "Replicate Gradient Selection" msgstr "그라디언트 선택 복제" -#: app/actions/gradient-editor-commands.c:371 +#: app/actions/gradient-editor-commands.c:376 msgid "Replicate" msgstr "복제" -#: app/actions/gradient-editor-commands.c:386 +#: app/actions/gradient-editor-commands.c:391 msgid "" "Select the number of times\n" "to replicate the selected segment." @@ -1853,7 +1853,7 @@ "선택한 구획을 복제하려면\n" "복제할 횟수를 선택하십시오." -#: app/actions/gradient-editor-commands.c:389 +#: app/actions/gradient-editor-commands.c:394 msgid "" "Select the number of times\n" "to replicate the selection." @@ -1861,27 +1861,27 @@ "선택을 복제하려면\n" "복제할 횟수를 선택하십시오." -#: app/actions/gradient-editor-commands.c:444 +#: app/actions/gradient-editor-commands.c:452 msgid "Split Segment Uniformly" msgstr "균등한 구획 분할" -#: app/actions/gradient-editor-commands.c:445 +#: app/actions/gradient-editor-commands.c:453 msgid "Split Gradient Segment Uniformly" msgstr "균등한 그라디언트 구획 분할" -#: app/actions/gradient-editor-commands.c:449 +#: app/actions/gradient-editor-commands.c:457 msgid "Split Segments Uniformly" msgstr "균등한 구획 분할" -#: app/actions/gradient-editor-commands.c:450 +#: app/actions/gradient-editor-commands.c:458 msgid "Split Gradient Segments Uniformly" msgstr "균등한 그라디언트 구획 분할" -#: app/actions/gradient-editor-commands.c:462 +#: app/actions/gradient-editor-commands.c:470 msgid "Split" msgstr "분할" -#: app/actions/gradient-editor-commands.c:478 +#: app/actions/gradient-editor-commands.c:486 msgid "" "Select the number of uniform parts\n" "in which to split the selected segment." @@ -1889,7 +1889,7 @@ "선택한 구획을 분할해서 만들\n" "균등한 부분의 수를 선택하십시오." -#: app/actions/gradient-editor-commands.c:481 +#: app/actions/gradient-editor-commands.c:489 msgid "" "Select the number of uniform parts\n" "in which to split the segments in the selection." @@ -2410,7 +2410,7 @@ #: app/actions/layers-commands.c:232 app/actions/layers-commands.c:234 #: app/actions/layers-commands.c:291 app/actions/layers-commands.c:295 -#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:840 +#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:842 msgid "New Layer" msgstr "새 레이어" @@ -2422,7 +2422,7 @@ msgid "Set Layer Boundary Size" msgstr "레이어 경계 크기 지정" -#: app/actions/layers-commands.c:512 app/core/gimplayer.c:255 +#: app/actions/layers-commands.c:512 app/core/gimplayer.c:253 msgid "Scale Layer" msgstr "레이어 배율 바꾸기" @@ -2434,7 +2434,7 @@ msgid "Layer Mask to Selection" msgstr "/레이어 마스크를 선택으로" -#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1085 +#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1066 #: app/dialogs/layer-add-mask-dialog.c:62 msgid "Add Layer Mask" msgstr "레이어 마스크 더하기" @@ -3068,7 +3068,7 @@ msgstr "텍스트 파일 열기 (UTF-8)" #: app/actions/text-editor-commands.c:132 app/config/gimpconfig-utils.c:552 -#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:393 +#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:396 #: app/core/gimpbrushgenerated.c:601 app/core/gimpbrushpipe.c:338 #: app/core/gimpgradient-load.c:63 app/core/gimppalette.c:360 #: app/core/gimppattern.c:328 app/tools/gimpimagemaptool.c:608 @@ -5054,7 +5054,7 @@ msgid "FG to Transparent" msgstr "전경색을 투명하게" -#: app/core/gimp-gui.c:148 +#: app/core/gimp-gui.c:153 msgid "GIMP" msgstr "김프" @@ -5086,39 +5086,54 @@ msgid "Modules" msgstr "모듈" -#: app/core/gimpbrush.c:531 +#: app/core/gimpbrush.c:534 #, c-format msgid "Could not read %d bytes from '%s': %s" msgstr "%d바이트를 '%s'에서 읽을 수 없습니다: %s" -#: app/core/gimpbrush.c:566 +#: app/core/gimpbrush.c:554 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Width = 0." +msgstr "브러시 파일 '%s'에 치명적인 해석 오류: 알 수 없는 심도 %d." + +#: app/core/gimpbrush.c:563 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Height = 0." +msgstr " 브러시 파일 '%s'에 치명적인 해석 오류: 파일 손상된 것 같습니다." + +#: app/core/gimpbrush.c:572 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Bytes = 0." +msgstr " 브러시 파일 '%s'에 치명적인 해석 오류: 파일 손상된 것 같습니다." + +#: app/core/gimpbrush.c:596 #, c-format msgid "Fatal parse error in brush file '%s': Unknown depth %d." msgstr "브러시 파일 '%s'에 치명적인 해석 오류: 알 수 없는 심도 %d." -#: app/core/gimpbrush.c:579 +#: app/core/gimpbrush.c:609 #, c-format msgid "Fatal parse error in brush file '%s': Unknown version %d." msgstr "브러시 파일 '%s'에 쳐명적인 해석 오류: 알 수 없는 버전 %d." -#: app/core/gimpbrush.c:595 app/core/gimpbrush.c:715 +#: app/core/gimpbrush.c:625 app/core/gimpbrush.c:745 #, c-format msgid "Fatal parse error in brush file '%s': File appears truncated." msgstr "브러시 파일 '%s'에 치명적인 해석 오류: 파일이 잘린 것 같습니다." -#: app/core/gimpbrush.c:603 app/core/gimpbrushgenerated.c:648 +#: app/core/gimpbrush.c:633 app/core/gimpbrushgenerated.c:648 #: app/core/gimpbrushpipe.c:354 #, c-format msgid "Invalid UTF-8 string in brush file '%s'." msgstr "브러시 파일 '%s'에 잘못된 UTF-8 문자열이 있습니다." -#: app/core/gimpbrush.c:610 app/core/gimpcontext.c:1299 -#: app/core/gimpitem.c:479 app/core/gimppattern.c:400 +#: app/core/gimpbrush.c:640 app/core/gimpcontext.c:1299 +#: app/core/gimpitem.c:480 app/core/gimppattern.c:400 #: app/dialogs/template-options-dialog.c:80 app/tools/gimpvectortool.c:339 msgid "Unnamed" msgstr "이름없음" -#: app/core/gimpbrush.c:704 +#: app/core/gimpbrush.c:734 #, c-format msgid "" "Fatal parse error in brush file '%s': Unsupported brush depth %d\n" @@ -5283,11 +5298,11 @@ " %s" #: app/core/gimpdatafactory.c:411 app/core/gimpdatafactory.c:414 -#: app/core/gimpitem.c:274 app/core/gimpitem.c:277 +#: app/core/gimpitem.c:275 app/core/gimpitem.c:278 msgid "copy" msgstr "복사" -#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:286 +#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:287 #, c-format msgid "%s copy" msgstr "%s 복사" @@ -5349,7 +5364,7 @@ msgid "Rotate" msgstr "회전" -#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:259 +#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:257 msgid "Transform Layer" msgstr "레이어 변형" @@ -5717,7 +5732,7 @@ #. pixel size #: app/core/gimpimagefile.c:624 app/dialogs/info-window.c:552 -#: app/widgets/gimpsizebox.c:552 app/widgets/gimptemplateeditor.c:637 +#: app/widgets/gimpsizebox.c:429 app/widgets/gimptemplateeditor.c:637 #: app/widgets/gimptemplateeditor.c:673 #, c-format msgid "%d x %d pixels" @@ -5737,15 +5752,15 @@ msgid "Could not open thumbnail '%s': %s" msgstr "썸네일 '%s' 열기 실패: %s" -#: app/core/gimpitem.c:1096 +#: app/core/gimpitem.c:1103 msgid "Attach Parasite" msgstr "기생 덧붙이기" -#: app/core/gimpitem.c:1106 +#: app/core/gimpitem.c:1113 msgid "Attach Parasite to Item" msgstr "항목에 기생 덧붙이기" -#: app/core/gimpitem.c:1145 app/core/gimpitem.c:1152 +#: app/core/gimpitem.c:1152 app/core/gimpitem.c:1159 msgid "Remove Parasite from Item" msgstr "항목의 기생 지우기" @@ -5773,76 +5788,76 @@ msgid "Floating Selection to Layer" msgstr "떠있는 선택을 레이어으로" -#: app/core/gimplayer.c:252 app/pdb/internal_procs.c:152 +#: app/core/gimplayer.c:250 app/pdb/internal_procs.c:152 msgid "Layer" msgstr "레이어" -#: app/core/gimplayer.c:253 +#: app/core/gimplayer.c:251 msgid "Rename Layer" msgstr "레이어 이름 바꾸기" -#: app/core/gimplayer.c:254 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 +#: app/core/gimplayer.c:252 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 msgid "Move Layer" msgstr "레이어 이동" -#: app/core/gimplayer.c:256 +#: app/core/gimplayer.c:254 msgid "Resize Layer" msgstr "레이어 크기 바꾸기" -#: app/core/gimplayer.c:257 +#: app/core/gimplayer.c:255 msgid "Flip Layer" msgstr "레이어 뒤집기" -#: app/core/gimplayer.c:258 +#: app/core/gimplayer.c:256 msgid "Rotate Layer" msgstr "레이어 회전" -#: app/core/gimplayer.c:341 app/core/gimplayer.c:1129 +#: app/core/gimplayer.c:339 app/core/gimplayer.c:1110 #: app/core/gimplayermask.c:236 #, c-format msgid "%s mask" msgstr "%s 마스크" -#: app/core/gimplayer.c:387 +#: app/core/gimplayer.c:385 #, fuzzy, c-format msgid "" "Floating Selection\n" "(%s)" msgstr "떠있는 선택" -#: app/core/gimplayer.c:1055 +#: app/core/gimplayer.c:1036 msgid "Cannot add layer mask to layer which is not part of an image." msgstr "이미지의 일부가 아닌 레이어에는 레이어 마스크를 더할 수 없습니다." -#: app/core/gimplayer.c:1062 +#: app/core/gimplayer.c:1043 msgid "Unable to add a layer mask since the layer already has one." msgstr "레이어가 이미 마스크를 갖고 있으므로, 더할 수 없습니다." -#: app/core/gimplayer.c:1069 +#: app/core/gimplayer.c:1050 msgid "Cannot add layer mask to a layer with no alpha channel." msgstr "알파 채널이 없는 레이어에는 레이어 마스크를 더할 수 없습니다." -#: app/core/gimplayer.c:1079 +#: app/core/gimplayer.c:1060 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "지정한 레이어와 크기가 다른 레이어 마크스를 더할 수 없습니다." -#: app/core/gimplayer.c:1183 +#: app/core/gimplayer.c:1164 msgid "Transfer Alpha to Mask" msgstr "알파를 마스크로 전송" -#: app/core/gimplayer.c:1343 +#: app/core/gimplayer.c:1324 msgid "Apply Layer Mask" msgstr "레이어 마스크 적용" -#: app/core/gimplayer.c:1344 +#: app/core/gimplayer.c:1325 msgid "Delete Layer Mask" msgstr "레이어 마스크 지우기" -#: app/core/gimplayer.c:1445 +#: app/core/gimplayer.c:1426 msgid "Add Alpha Channel" msgstr "알파 채널 더하기" -#: app/core/gimplayer.c:1467 +#: app/core/gimplayer.c:1448 msgid "Layer to Image Size" msgstr "레이어를 이미지 크기에 맞추기" @@ -7382,32 +7397,32 @@ msgstr "인쇄 크기:" #. the image size labels -#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:241 +#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:222 #: app/widgets/gimptemplateeditor.c:236 #, fuzzy msgid "_Width:" msgstr "너비:" -#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:248 +#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:225 #: app/widgets/gimptemplateeditor.c:243 #, fuzzy msgid "H_eight:" msgstr "높이:" #. the resolution labels -#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:338 +#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:273 #: app/widgets/gimptemplateeditor.c:363 #, fuzzy msgid "_X resolution:" msgstr "해상도:" -#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:345 +#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:276 #: app/widgets/gimptemplateeditor.c:370 #, fuzzy msgid "_Y resolution:" msgstr "해상도:" -#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:357 +#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:269 #: app/widgets/gimptemplateeditor.c:383 #, c-format msgid "pixels/%a" @@ -8024,11 +8039,11 @@ msgid "%d minutes" msgstr "" -#: app/display/gimpdisplayshell-dnd.c:96 +#: app/display/gimpdisplayshell-dnd.c:98 msgid "Drop New Layer" msgstr "새 레이어 끌어서-놓기" -#: app/display/gimpdisplayshell-dnd.c:140 +#: app/display/gimpdisplayshell-dnd.c:142 msgid "Drop New Path" msgstr "새 경로 끌어서-놓기" @@ -9579,12 +9594,12 @@ msgstr "페인트브러시" #: app/tools/gimppaintoptions-gui.c:103 app/widgets/gimpbrushselect.c:201 -#: app/widgets/gimplayertreeview.c:330 +#: app/widgets/gimplayertreeview.c:332 msgid "Opacity:" msgstr "불투명:" #: app/tools/gimppaintoptions-gui.c:108 app/tools/gimpselectionoptions.c:374 -#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:323 +#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:325 msgid "Mode:" msgstr "모드:" @@ -11045,25 +11060,25 @@ msgid "Set Item Exclusive Linked" msgstr "배타적으로 연결된 항목 지정" -#: app/widgets/gimplayertreeview.c:250 +#: app/widgets/gimplayertreeview.c:252 msgid "Reorder Layer" msgstr "레이어 순서 조정" -#: app/widgets/gimplayertreeview.c:311 +#: app/widgets/gimplayertreeview.c:313 #, fuzzy msgid "Keep transparency" msgstr "투명도 유지" -#: app/widgets/gimplayertreeview.c:846 +#: app/widgets/gimplayertreeview.c:848 msgid "Empty Layer" msgstr "빈 레이어" -#: app/widgets/gimpmessagebox.c:458 +#: app/widgets/gimpmessagebox.c:460 #, c-format msgid "Message repeated %d times." msgstr "메시지를 %d번 반복합니다." -#: app/widgets/gimpmessagebox.c:460 +#: app/widgets/gimpmessagebox.c:462 msgid "Message repeated once." msgstr "메시지를 한 번 반복합니다." @@ -11095,17 +11110,12 @@ msgid "Invalid UTF-8" msgstr "잘못된 UTF-8" -#: app/widgets/gimpsizebox.c:290 -#, fuzzy -msgid "Keep aspect ratio" -msgstr "고정된 종횡비" - -#: app/widgets/gimpsizebox.c:574 +#: app/widgets/gimpsizebox.c:451 #, fuzzy, c-format msgid "%d x %d dpi" msgstr "%d x %d 픽셀" -#: app/widgets/gimpsizebox.c:578 +#: app/widgets/gimpsizebox.c:455 #, fuzzy, c-format msgid "%d dpi" msgstr "dpi" @@ -11585,6 +11595,10 @@ msgid "Image Editor" msgstr "색상표 편집기" +#, fuzzy +#~ msgid "Keep aspect ratio" +#~ msgstr "고정된 종횡비" + #~ msgid "Y:" #~ msgstr "Y:" diff -uraN gimp-2.2.0/po/lt.gmo gimp-2.2.1/po/lt.gmo --- gimp-2.2.0/po/lt.gmo 2004-12-19 03:11:55.000000000 +0100 +++ gimp-2.2.1/po/lt.gmo 2004-12-28 16:58:43.000000000 +0100 @@ -181,7 +181,7 @@ did not save indexed colormaps correctly. Substituting grayscale map.YellowYellow:You will have to restart GIMP for the following changes to take effect:Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom factor: %d:1Zoom inZoom in & outZoom out[ Base Image ]_Antialiasing_Auto_B_Blending Function for Segment_Blending Function for Selection_Brightness:_C_Delete Segment_Delete Selection_Flip Segment_Flip Selection_G_Gradient_Horizontal:_Hue:_Icon:_Import_Lightness:_M_Manually_Name:_Preview_R_Redo_Redo %s_Replicate Segment..._Replicate Selection..._Saturation:_Selection_Undo_Undo %s_Vertical:_X:_Y_Y:colorscopydpifatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for token %sinvalid value '%s' for token %smillimetermillimetersn/apercentpixelpixelspixels/%apixels/%spointpointstips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: GIMP 2.0 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-19 03:11+0100 +POT-Creation-Date: 2004-12-28 16:58+0100 PO-Revision-Date: 2004-03-16 19:49+0200 Last-Translator: Žygimantas Beručka Language-Team: Lithuanian diff -uraN gimp-2.2.0/po/lt.po gimp-2.2.1/po/lt.po --- gimp-2.2.0/po/lt.po 2004-12-19 03:11:34.000000000 +0100 +++ gimp-2.2.1/po/lt.po 2004-12-28 16:58:33.000000000 +0100 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: GIMP 2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-19 03:11+0100\n" +"POT-Creation-Date: 2004-12-28 16:58+0100\n" "PO-Revision-Date: 2004-03-16 19:49+0200\n" "Last-Translator: Žygimantas Beručka \n" "Language-Team: Lithuanian \n" @@ -1163,11 +1163,11 @@ msgid "Remove dangling entries" msgstr "Plaukiojantis pažymėjimas" -#: app/actions/documents-commands.c:252 app/actions/file-commands.c:163 +#: app/actions/documents-commands.c:251 app/actions/file-commands.c:163 #: app/dialogs/file-open-dialog.c:198 app/dialogs/file-open-dialog.c:249 #: app/dialogs/file-open-location-dialog.c:193 -#: app/display/gimpdisplayshell-dnd.c:332 app/widgets/gimplayertreeview.c:802 -#: app/widgets/gimptoolbox-dnd.c:123 +#: app/display/gimpdisplayshell-dnd.c:334 app/widgets/gimplayertreeview.c:804 +#: app/widgets/gimptoolbox-dnd.c:125 #, c-format msgid "" "Opening '%s' failed:\n" @@ -1760,164 +1760,164 @@ msgid "Zoom all" msgstr "Parodyti viską" -#: app/actions/gradient-editor-actions.c:582 +#: app/actions/gradient-editor-actions.c:589 msgid "_Blending Function for Segment" msgstr "Perėjimo funkcija segmentui" -#: app/actions/gradient-editor-actions.c:584 +#: app/actions/gradient-editor-actions.c:591 msgid "Coloring _Type for Segment" msgstr "Spalvinimo tipas segmentui" -#: app/actions/gradient-editor-actions.c:587 +#: app/actions/gradient-editor-actions.c:594 msgid "_Flip Segment" msgstr "Veidrodinis segmento vaizdas" -#: app/actions/gradient-editor-actions.c:589 +#: app/actions/gradient-editor-actions.c:596 msgid "_Replicate Segment..." msgstr "Padauginti segmentą..." -#: app/actions/gradient-editor-actions.c:591 +#: app/actions/gradient-editor-actions.c:598 msgid "Split Segment at _Midpoint" msgstr "Padalinti segmentą vidurio taške" -#: app/actions/gradient-editor-actions.c:593 +#: app/actions/gradient-editor-actions.c:600 msgid "Split Segment _Uniformly..." msgstr "Padalinti segmentą tolygiai..." -#: app/actions/gradient-editor-actions.c:595 +#: app/actions/gradient-editor-actions.c:602 msgid "_Delete Segment" msgstr "Ištrinti segmentą" # Nesu tikra. -#: app/actions/gradient-editor-actions.c:597 +#: app/actions/gradient-editor-actions.c:604 #, fuzzy msgid "Re-_center Segment's Midpoint" msgstr "Atnaujinti segmento vidurio taško vietą" # Nesu tikra. -#: app/actions/gradient-editor-actions.c:599 +#: app/actions/gradient-editor-actions.c:606 #, fuzzy msgid "Re-distribute _Handles in Segment" msgstr "Pakeisti veiksmo tipą segmente" -#: app/actions/gradient-editor-actions.c:604 +#: app/actions/gradient-editor-actions.c:611 msgid "_Blending Function for Selection" msgstr "Perėjimo funkcija pažymėjimui" -#: app/actions/gradient-editor-actions.c:606 +#: app/actions/gradient-editor-actions.c:613 msgid "Coloring _Type for Selection" msgstr "Spalvinimo tipas pažymėjimui" -#: app/actions/gradient-editor-actions.c:609 +#: app/actions/gradient-editor-actions.c:616 msgid "_Flip Selection" msgstr "Veidrodinis pažymėjimo vaizdas" -#: app/actions/gradient-editor-actions.c:611 +#: app/actions/gradient-editor-actions.c:618 msgid "_Replicate Selection..." msgstr "Padauginti pažymėjimą..." -#: app/actions/gradient-editor-actions.c:613 +#: app/actions/gradient-editor-actions.c:620 msgid "Split Segments at _Midpoints" msgstr "Padalinti segmentus vidurio taškuose" -#: app/actions/gradient-editor-actions.c:615 +#: app/actions/gradient-editor-actions.c:622 msgid "Split Segments _Uniformly..." msgstr "Padalinti segmentus netolygiai..." -#: app/actions/gradient-editor-actions.c:617 +#: app/actions/gradient-editor-actions.c:624 msgid "_Delete Selection" msgstr "Ištrinti pažymėjimą" # Nesu tikra. -#: app/actions/gradient-editor-actions.c:619 +#: app/actions/gradient-editor-actions.c:626 #, fuzzy msgid "Re-_center Midpoints in Selection" msgstr "Atnaujinti vidurio taškų vietas pažymėjime" # Nesu tikra. -#: app/actions/gradient-editor-actions.c:621 +#: app/actions/gradient-editor-actions.c:628 #, fuzzy msgid "Re-distribute _Handles in Selection" msgstr "Pakeisti veiksmo tipą pažymėjime" -#: app/actions/gradient-editor-commands.c:84 +#: app/actions/gradient-editor-commands.c:85 msgid "Left Endpoint Color" msgstr "Kariojo galinio taško spalva" -#: app/actions/gradient-editor-commands.c:86 +#: app/actions/gradient-editor-commands.c:87 msgid "Gradient Segment's Left Endpoint Color" msgstr "Perėjimo segmento kairiojo galinio taško spalva" -#: app/actions/gradient-editor-commands.c:186 +#: app/actions/gradient-editor-commands.c:189 msgid "Right Endpoint Color" msgstr "Dešiniojo galinio taško spalva" -#: app/actions/gradient-editor-commands.c:188 +#: app/actions/gradient-editor-commands.c:191 msgid "Gradient Segment's Right Endpoint Color" msgstr "Perėjimo segmento dešiniojo galinio taško spalva" -#: app/actions/gradient-editor-commands.c:353 +#: app/actions/gradient-editor-commands.c:358 msgid "Replicate Segment" msgstr "Padauginti segmentą" -#: app/actions/gradient-editor-commands.c:354 +#: app/actions/gradient-editor-commands.c:359 msgid "Replicate Gradient Segment" msgstr "Padauginti perėjimo segmentą" -#: app/actions/gradient-editor-commands.c:358 +#: app/actions/gradient-editor-commands.c:363 msgid "Replicate Selection" msgstr "Padauginti pažymėjimą" -#: app/actions/gradient-editor-commands.c:359 +#: app/actions/gradient-editor-commands.c:364 msgid "Replicate Gradient Selection" msgstr "Perėjimo perėjimo pažymėjimą" -#: app/actions/gradient-editor-commands.c:371 +#: app/actions/gradient-editor-commands.c:376 msgid "Replicate" msgstr "Padauginti" -#: app/actions/gradient-editor-commands.c:386 +#: app/actions/gradient-editor-commands.c:391 #, fuzzy msgid "" "Select the number of times\n" "to replicate the selected segment." msgstr "jūs norite atkartoti pasirinktą segmentą" -#: app/actions/gradient-editor-commands.c:389 +#: app/actions/gradient-editor-commands.c:394 #, fuzzy msgid "" "Select the number of times\n" "to replicate the selection." msgstr "jūs norite atkartoti pažymėjimą" -#: app/actions/gradient-editor-commands.c:444 +#: app/actions/gradient-editor-commands.c:452 msgid "Split Segment Uniformly" msgstr "Padalinti segmentą netolygiai" -#: app/actions/gradient-editor-commands.c:445 +#: app/actions/gradient-editor-commands.c:453 msgid "Split Gradient Segment Uniformly" msgstr "Padalinti perėjimo segmentą netolygiai" -#: app/actions/gradient-editor-commands.c:449 +#: app/actions/gradient-editor-commands.c:457 msgid "Split Segments Uniformly" msgstr "Padalinti segmentus netolygiai" -#: app/actions/gradient-editor-commands.c:450 +#: app/actions/gradient-editor-commands.c:458 msgid "Split Gradient Segments Uniformly" msgstr "Padalinti perėjimo segmentus netolygiai" -#: app/actions/gradient-editor-commands.c:462 +#: app/actions/gradient-editor-commands.c:470 msgid "Split" msgstr "Atskirti" -#: app/actions/gradient-editor-commands.c:478 +#: app/actions/gradient-editor-commands.c:486 #, fuzzy msgid "" "Select the number of uniform parts\n" "in which to split the selected segment." msgstr "į kurias jūs norite padalinti pasirinktą segmentą" -#: app/actions/gradient-editor-commands.c:481 +#: app/actions/gradient-editor-commands.c:489 #, fuzzy msgid "" "Select the number of uniform parts\n" @@ -2438,7 +2438,7 @@ #: app/actions/layers-commands.c:232 app/actions/layers-commands.c:234 #: app/actions/layers-commands.c:291 app/actions/layers-commands.c:295 -#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:840 +#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:842 msgid "New Layer" msgstr "Naujas sluoksnis" @@ -2450,7 +2450,7 @@ msgid "Set Layer Boundary Size" msgstr "Nustatyti sluoksnio ribų dydį" -#: app/actions/layers-commands.c:512 app/core/gimplayer.c:255 +#: app/actions/layers-commands.c:512 app/core/gimplayer.c:253 msgid "Scale Layer" msgstr "Keisti sluoksnio dydį" @@ -2463,7 +2463,7 @@ msgid "Layer Mask to Selection" msgstr "/Sluoksniai/Kaukę paversti pažymėjimu" -#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1085 +#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1066 #: app/dialogs/layer-add-mask-dialog.c:62 msgid "Add Layer Mask" msgstr "Pridėti sluoksnio kaukę" @@ -3104,7 +3104,7 @@ msgstr "Atidaryti UTF-8 teksto bylą" #: app/actions/text-editor-commands.c:132 app/config/gimpconfig-utils.c:552 -#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:393 +#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:396 #: app/core/gimpbrushgenerated.c:601 app/core/gimpbrushpipe.c:338 #: app/core/gimpgradient-load.c:63 app/core/gimppalette.c:360 #: app/core/gimppattern.c:328 app/tools/gimpimagemaptool.c:608 @@ -5042,7 +5042,7 @@ msgid "FG to Transparent" msgstr "Iš priekinio plano spalvos į skaidrią" -#: app/core/gimp-gui.c:148 +#: app/core/gimp-gui.c:153 msgid "GIMP" msgstr "GIMP" @@ -5074,39 +5074,54 @@ msgid "Modules" msgstr "Moduliai" -#: app/core/gimpbrush.c:531 +#: app/core/gimpbrush.c:534 #, c-format msgid "Could not read %d bytes from '%s': %s" msgstr "Negalima nuskaityti %d baitų iš %s: %s" -#: app/core/gimpbrush.c:566 +#: app/core/gimpbrush.c:554 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Width = 0." +msgstr "Kritinė klaida teptukų byloje %s: nežinomas gylis %d." + +#: app/core/gimpbrush.c:563 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Height = 0." +msgstr "Kritinė klaida teptuko byloje %s: byla sugadinta." + +#: app/core/gimpbrush.c:572 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Bytes = 0." +msgstr "Kritinė klaida teptuko byloje %s: byla sugadinta." + +#: app/core/gimpbrush.c:596 #, c-format msgid "Fatal parse error in brush file '%s': Unknown depth %d." msgstr "Kritinė klaida teptukų byloje %s: nežinomas gylis %d." -#: app/core/gimpbrush.c:579 +#: app/core/gimpbrush.c:609 #, c-format msgid "Fatal parse error in brush file '%s': Unknown version %d." msgstr "Kritinė klaida teptuko byloje %s: nežinoma versija %d." -#: app/core/gimpbrush.c:595 app/core/gimpbrush.c:715 +#: app/core/gimpbrush.c:625 app/core/gimpbrush.c:745 #, c-format msgid "Fatal parse error in brush file '%s': File appears truncated." msgstr "Kritinė klaida teptuko byloje %s: panašu, kad byla nepilna." -#: app/core/gimpbrush.c:603 app/core/gimpbrushgenerated.c:648 +#: app/core/gimpbrush.c:633 app/core/gimpbrushgenerated.c:648 #: app/core/gimpbrushpipe.c:354 #, c-format msgid "Invalid UTF-8 string in brush file '%s'." msgstr "Nekorektiška UTF-8 eilutė teptukų byloje %s." -#: app/core/gimpbrush.c:610 app/core/gimpcontext.c:1299 -#: app/core/gimpitem.c:479 app/core/gimppattern.c:400 +#: app/core/gimpbrush.c:640 app/core/gimpcontext.c:1299 +#: app/core/gimpitem.c:480 app/core/gimppattern.c:400 #: app/dialogs/template-options-dialog.c:80 app/tools/gimpvectortool.c:339 msgid "Unnamed" msgstr "Bevardis" -#: app/core/gimpbrush.c:704 +#: app/core/gimpbrush.c:734 #, c-format msgid "" "Fatal parse error in brush file '%s': Unsupported brush depth %d\n" @@ -5274,11 +5289,11 @@ "%s" #: app/core/gimpdatafactory.c:411 app/core/gimpdatafactory.c:414 -#: app/core/gimpitem.c:274 app/core/gimpitem.c:277 +#: app/core/gimpitem.c:275 app/core/gimpitem.c:278 msgid "copy" msgstr "kopija" -#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:286 +#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:287 #, c-format msgid "%s copy" msgstr "%s kopija" @@ -5340,7 +5355,7 @@ msgid "Rotate" msgstr "Pasukimas" -#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:259 +#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:257 msgid "Transform Layer" msgstr "Transformuoti sluoksnį" @@ -5715,7 +5730,7 @@ #. pixel size #: app/core/gimpimagefile.c:624 app/dialogs/info-window.c:552 -#: app/widgets/gimpsizebox.c:552 app/widgets/gimptemplateeditor.c:637 +#: app/widgets/gimpsizebox.c:429 app/widgets/gimptemplateeditor.c:637 #: app/widgets/gimptemplateeditor.c:673 #, c-format msgid "%d x %d pixels" @@ -5735,16 +5750,16 @@ msgid "Could not open thumbnail '%s': %s" msgstr "Negaliu atidaryti bylos %s" -#: app/core/gimpitem.c:1096 +#: app/core/gimpitem.c:1103 msgid "Attach Parasite" msgstr "Prisegti parazitą" -#: app/core/gimpitem.c:1106 +#: app/core/gimpitem.c:1113 #, fuzzy msgid "Attach Parasite to Item" msgstr "prisegti papildomos informacijos bylą" -#: app/core/gimpitem.c:1145 app/core/gimpitem.c:1152 +#: app/core/gimpitem.c:1152 app/core/gimpitem.c:1159 #, fuzzy msgid "Remove Parasite from Item" msgstr "pašalinti papildomos informacijos bylą" @@ -5779,83 +5794,83 @@ msgid "Floating Selection to Layer" msgstr "Plaukiojantis pažymėjimas" -#: app/core/gimplayer.c:252 app/pdb/internal_procs.c:152 +#: app/core/gimplayer.c:250 app/pdb/internal_procs.c:152 msgid "Layer" msgstr "Sluoksnis" -#: app/core/gimplayer.c:253 +#: app/core/gimplayer.c:251 msgid "Rename Layer" msgstr "Pervadinti sluoksnį" -#: app/core/gimplayer.c:254 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 +#: app/core/gimplayer.c:252 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 msgid "Move Layer" msgstr "Perkelti sluoksnį" -#: app/core/gimplayer.c:256 +#: app/core/gimplayer.c:254 msgid "Resize Layer" msgstr "Keisti sluoksnio dydį" -#: app/core/gimplayer.c:257 +#: app/core/gimplayer.c:255 msgid "Flip Layer" msgstr "Apsukti sluoksnį" -#: app/core/gimplayer.c:258 +#: app/core/gimplayer.c:256 msgid "Rotate Layer" msgstr "Pasukti sluoksnį" -#: app/core/gimplayer.c:341 app/core/gimplayer.c:1129 +#: app/core/gimplayer.c:339 app/core/gimplayer.c:1110 #: app/core/gimplayermask.c:236 #, c-format msgid "%s mask" msgstr "%s kaukė" -#: app/core/gimplayer.c:387 +#: app/core/gimplayer.c:385 #, fuzzy, c-format msgid "" "Floating Selection\n" "(%s)" msgstr "Plaukiojantis pažymėjimas" -#: app/core/gimplayer.c:1055 +#: app/core/gimplayer.c:1036 #, fuzzy msgid "Cannot add layer mask to layer which is not part of an image." msgstr "" "Neina pridėti sluoksnio kaukės prie sluoksnio,\n" "neturinčio alfa kanalo" -#: app/core/gimplayer.c:1062 +#: app/core/gimplayer.c:1043 msgid "Unable to add a layer mask since the layer already has one." msgstr "Negalima pridėti sluoksnio kaukės, kadangi sluoksnis jau turi vieną." -#: app/core/gimplayer.c:1069 +#: app/core/gimplayer.c:1050 msgid "Cannot add layer mask to a layer with no alpha channel." msgstr "" "Negalima pridėti sluoksnio kaukės prie sluoksnio,\n" "neturinčio alfa kanalo" -#: app/core/gimplayer.c:1079 +#: app/core/gimplayer.c:1060 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "" "Negaliu pridėti sluoksnio kaukės, turinčios kitokius,\n" "nei pasirinkto sluoksnio, matmenis." -#: app/core/gimplayer.c:1183 +#: app/core/gimplayer.c:1164 msgid "Transfer Alpha to Mask" msgstr "Transformuoti alfa į kaukę" -#: app/core/gimplayer.c:1343 +#: app/core/gimplayer.c:1324 msgid "Apply Layer Mask" msgstr "Pritaikyti sluoksnio kaukę" -#: app/core/gimplayer.c:1344 +#: app/core/gimplayer.c:1325 msgid "Delete Layer Mask" msgstr "Ištrinti sluoksnio kaukę" -#: app/core/gimplayer.c:1445 +#: app/core/gimplayer.c:1426 msgid "Add Alpha Channel" msgstr "Pridėti alfa kanalą" -#: app/core/gimplayer.c:1467 +#: app/core/gimplayer.c:1448 msgid "Layer to Image Size" msgstr "Sluoksnio dydį prilyginti paveikslėlio dydžiui" @@ -7409,32 +7424,32 @@ msgstr "Spausdinimo dydis:" #. the image size labels -#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:241 +#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:222 #: app/widgets/gimptemplateeditor.c:236 #, fuzzy msgid "_Width:" msgstr "Plotis:" -#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:248 +#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:225 #: app/widgets/gimptemplateeditor.c:243 #, fuzzy msgid "H_eight:" msgstr "Aukštis:" #. the resolution labels -#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:338 +#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:273 #: app/widgets/gimptemplateeditor.c:363 #, fuzzy msgid "_X resolution:" msgstr "Raiška:" -#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:345 +#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:276 #: app/widgets/gimptemplateeditor.c:370 #, fuzzy msgid "_Y resolution:" msgstr "Raiška:" -#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:357 +#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:269 #: app/widgets/gimptemplateeditor.c:383 #, c-format msgid "pixels/%a" @@ -8112,11 +8127,11 @@ msgid "%d minutes" msgstr "" -#: app/display/gimpdisplayshell-dnd.c:96 +#: app/display/gimpdisplayshell-dnd.c:98 msgid "Drop New Layer" msgstr "Pamesti naują sluoksnį" -#: app/display/gimpdisplayshell-dnd.c:140 +#: app/display/gimpdisplayshell-dnd.c:142 msgid "Drop New Path" msgstr "Pamesti naują kelią" @@ -9676,12 +9691,12 @@ msgstr "Teptukas" #: app/tools/gimppaintoptions-gui.c:103 app/widgets/gimpbrushselect.c:201 -#: app/widgets/gimplayertreeview.c:330 +#: app/widgets/gimplayertreeview.c:332 msgid "Opacity:" msgstr "Nepermatomumas:" #: app/tools/gimppaintoptions-gui.c:108 app/tools/gimpselectionoptions.c:374 -#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:323 +#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:325 msgid "Mode:" msgstr "Režimas:" @@ -11152,26 +11167,26 @@ msgid "Set Item Exclusive Linked" msgstr "" -#: app/widgets/gimplayertreeview.c:250 +#: app/widgets/gimplayertreeview.c:252 msgid "Reorder Layer" msgstr "Keisti sluoksnių eilės tvarką" -#: app/widgets/gimplayertreeview.c:311 +#: app/widgets/gimplayertreeview.c:313 #, fuzzy msgid "Keep transparency" msgstr "Išlaikyti permatomumą" -#: app/widgets/gimplayertreeview.c:846 +#: app/widgets/gimplayertreeview.c:848 #, fuzzy msgid "Empty Layer" msgstr "Tuščias teksto sluoksnis" -#: app/widgets/gimpmessagebox.c:458 +#: app/widgets/gimpmessagebox.c:460 #, c-format msgid "Message repeated %d times." msgstr "Pranešimas pakartotas %d kartų." -#: app/widgets/gimpmessagebox.c:460 +#: app/widgets/gimpmessagebox.c:462 msgid "Message repeated once." msgstr "Pranešimas pakartotas 1 kartą." @@ -11203,20 +11218,12 @@ msgid "Invalid UTF-8" msgstr "Nekorektiškas UTF-8" -# Nesu tikra dėl Aspect. -#: app/widgets/gimpsizebox.c:290 -#, fuzzy -msgid "Keep aspect ratio" -msgstr "" -"Nustatytas dydis /\n" -"Pakrypimas plokštumos atžvilgiu" - -#: app/widgets/gimpsizebox.c:574 +#: app/widgets/gimpsizebox.c:451 #, fuzzy, c-format msgid "%d x %d dpi" msgstr "%d x %d taškų" -#: app/widgets/gimpsizebox.c:578 +#: app/widgets/gimpsizebox.c:455 #, fuzzy, c-format msgid "%d dpi" msgstr "taškų colyje" @@ -11695,6 +11702,13 @@ msgid "Image Editor" msgstr "Paletės savybių nustatymas" +# Nesu tikra dėl Aspect. +#, fuzzy +#~ msgid "Keep aspect ratio" +#~ msgstr "" +#~ "Nustatytas dydis /\n" +#~ "Pakrypimas plokštumos atžvilgiu" + #~ msgid "Y:" #~ msgstr "Y:" diff -uraN gimp-2.2.0/po/ms.gmo gimp-2.2.1/po/ms.gmo --- gimp-2.2.0/po/ms.gmo 2004-12-19 03:11:55.000000000 +0100 +++ gimp-2.2.1/po/ms.gmo 2004-12-28 16:58:43.000000000 +0100 @@ -172,7 +172,7 @@ did not save indexed colormaps correctly. Substituting grayscale map.YellowYellow:You can drop dockable dialogs here.Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom factor: %d:1Zoom inZoom in & outZoom out[ Base Image ]_Antialiasing_Auto_B_Blending Function for Segment_Blending Function for Selection_Brightness:_C_Delete Segment_Delete Selection_Flip Segment_Flip Selection_G_Gradient_Horizontal:_Hue:_Icon:_Import_Lightness:_M_Manually_Name:_Preview_R_Redo_Redo %s_Replicate Segment..._Replicate Selection..._Saturation:_Selection_Undo_Undo %s_Vertical:_Y_Y:colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for token %sinvalid value '%s' for token %smillimetermillimetersn/apercentpicapicaspixelpixelspixels/%apixels/%spointpointstips-locale:Cvalue for token %s is not a valid UTF-8 stringProject-Id-Version: Gimp HEAD Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-19 03:11+0100 +POT-Creation-Date: 2004-12-28 16:58+0100 PO-Revision-Date: 2003-11-04 09:00+0800 Last-Translator: MIMOS Open Source Development Group Language-Team: Projek Gabai diff -uraN gimp-2.2.0/po/ms.po gimp-2.2.1/po/ms.po --- gimp-2.2.0/po/ms.po 2004-12-19 03:11:35.000000000 +0100 +++ gimp-2.2.1/po/ms.po 2004-12-28 16:58:33.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Gimp HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-19 03:11+0100\n" +"POT-Creation-Date: 2004-12-28 16:58+0100\n" "PO-Revision-Date: 2003-11-04 09:00+0800\n" "Last-Translator: MIMOS Open Source Development Group \n" "Language-Team: Projek Gabai \n" @@ -1160,11 +1160,11 @@ msgid "Remove dangling entries" msgstr "/Keluarkan E_ntri Tergantung" -#: app/actions/documents-commands.c:252 app/actions/file-commands.c:163 +#: app/actions/documents-commands.c:251 app/actions/file-commands.c:163 #: app/dialogs/file-open-dialog.c:198 app/dialogs/file-open-dialog.c:249 #: app/dialogs/file-open-location-dialog.c:193 -#: app/display/gimpdisplayshell-dnd.c:332 app/widgets/gimplayertreeview.c:802 -#: app/widgets/gimptoolbox-dnd.c:123 +#: app/display/gimpdisplayshell-dnd.c:334 app/widgets/gimplayertreeview.c:804 +#: app/widgets/gimptoolbox-dnd.c:125 #, c-format msgid "" "Opening '%s' failed:\n" @@ -1757,115 +1757,115 @@ msgid "Zoom all" msgstr "Zum Semua" -#: app/actions/gradient-editor-actions.c:582 +#: app/actions/gradient-editor-actions.c:589 msgid "_Blending Function for Segment" msgstr "Fungsi _Mencampur bagi Segmen" -#: app/actions/gradient-editor-actions.c:584 +#: app/actions/gradient-editor-actions.c:591 msgid "Coloring _Type for Segment" msgstr "_Jenis Mewarna bagi Segmen" -#: app/actions/gradient-editor-actions.c:587 +#: app/actions/gradient-editor-actions.c:594 msgid "_Flip Segment" msgstr "_Terbalikkan Segmen" -#: app/actions/gradient-editor-actions.c:589 +#: app/actions/gradient-editor-actions.c:596 msgid "_Replicate Segment..." msgstr "_Ulang sama Segmen..." -#: app/actions/gradient-editor-actions.c:591 +#: app/actions/gradient-editor-actions.c:598 msgid "Split Segment at _Midpoint" msgstr "Pisahkan Segmen di _Titik pertengahan" -#: app/actions/gradient-editor-actions.c:593 +#: app/actions/gradient-editor-actions.c:600 msgid "Split Segment _Uniformly..." msgstr "Pisahkan Segmen _Secara Seragam..." -#: app/actions/gradient-editor-actions.c:595 +#: app/actions/gradient-editor-actions.c:602 msgid "_Delete Segment" msgstr "_Hapuskan Segmen" -#: app/actions/gradient-editor-actions.c:597 +#: app/actions/gradient-editor-actions.c:604 msgid "Re-_center Segment's Midpoint" msgstr "_Letakkan Semula Di tengah-tengah Titik Pertengahan Segmen" -#: app/actions/gradient-editor-actions.c:599 +#: app/actions/gradient-editor-actions.c:606 msgid "Re-distribute _Handles in Segment" msgstr "Agihkan semula _Pengendali dalam Segmen" -#: app/actions/gradient-editor-actions.c:604 +#: app/actions/gradient-editor-actions.c:611 msgid "_Blending Function for Selection" msgstr "Fungsi _Mencampur bagi Pemilihan" -#: app/actions/gradient-editor-actions.c:606 +#: app/actions/gradient-editor-actions.c:613 msgid "Coloring _Type for Selection" msgstr "_Jenis Mewarna bagi Pemilihan" -#: app/actions/gradient-editor-actions.c:609 +#: app/actions/gradient-editor-actions.c:616 msgid "_Flip Selection" msgstr "_Terbalikkan Pemilihan" -#: app/actions/gradient-editor-actions.c:611 +#: app/actions/gradient-editor-actions.c:618 msgid "_Replicate Selection..." msgstr "_Ulang sama Pemilihan..." -#: app/actions/gradient-editor-actions.c:613 +#: app/actions/gradient-editor-actions.c:620 msgid "Split Segments at _Midpoints" msgstr "Pisahkan Segmen di _Titik Pertengahan" -#: app/actions/gradient-editor-actions.c:615 +#: app/actions/gradient-editor-actions.c:622 msgid "Split Segments _Uniformly..." msgstr "Pisahkan Segmen _Secara Seragam..." -#: app/actions/gradient-editor-actions.c:617 +#: app/actions/gradient-editor-actions.c:624 msgid "_Delete Selection" msgstr "_Hapuskan Pemilihan" -#: app/actions/gradient-editor-actions.c:619 +#: app/actions/gradient-editor-actions.c:626 msgid "Re-_center Midpoints in Selection" msgstr "_Letakkan semula Di tengah-tengah Titik Pertengahan dalam Pemilihan" -#: app/actions/gradient-editor-actions.c:621 +#: app/actions/gradient-editor-actions.c:628 msgid "Re-distribute _Handles in Selection" msgstr "Agihkan semula _Pengendali dalam Pemilihan" -#: app/actions/gradient-editor-commands.c:84 +#: app/actions/gradient-editor-commands.c:85 msgid "Left Endpoint Color" msgstr "Warna Titik akhir Kiri" -#: app/actions/gradient-editor-commands.c:86 +#: app/actions/gradient-editor-commands.c:87 msgid "Gradient Segment's Left Endpoint Color" msgstr "Warna Titik akhir Kiri Segmen Kecerunan" -#: app/actions/gradient-editor-commands.c:186 +#: app/actions/gradient-editor-commands.c:189 msgid "Right Endpoint Color" msgstr "Warna Titik akhir Kanan" -#: app/actions/gradient-editor-commands.c:188 +#: app/actions/gradient-editor-commands.c:191 msgid "Gradient Segment's Right Endpoint Color" msgstr "Warna Titik akhir Kanan Segmen Kecerunan" -#: app/actions/gradient-editor-commands.c:353 +#: app/actions/gradient-editor-commands.c:358 msgid "Replicate Segment" msgstr "Ulang sama Segmen" -#: app/actions/gradient-editor-commands.c:354 +#: app/actions/gradient-editor-commands.c:359 msgid "Replicate Gradient Segment" msgstr "Ulang sama Segmen Kecerunan" -#: app/actions/gradient-editor-commands.c:358 +#: app/actions/gradient-editor-commands.c:363 msgid "Replicate Selection" msgstr "Ulang sama Pemilihan" -#: app/actions/gradient-editor-commands.c:359 +#: app/actions/gradient-editor-commands.c:364 msgid "Replicate Gradient Selection" msgstr "Ulang sama Pemilihan Kecerunan" -#: app/actions/gradient-editor-commands.c:371 +#: app/actions/gradient-editor-commands.c:376 msgid "Replicate" msgstr "Ulang sama" -#: app/actions/gradient-editor-commands.c:386 +#: app/actions/gradient-editor-commands.c:391 msgid "" "Select the number of times\n" "to replicate the selected segment." @@ -1873,7 +1873,7 @@ "Pilih bilangan kali\n" "untuk mengulang sama segmen yang dipilih." -#: app/actions/gradient-editor-commands.c:389 +#: app/actions/gradient-editor-commands.c:394 msgid "" "Select the number of times\n" "to replicate the selection." @@ -1881,27 +1881,27 @@ "Pilih bilangan kali\n" "untuk mengulang sama pemilihan." -#: app/actions/gradient-editor-commands.c:444 +#: app/actions/gradient-editor-commands.c:452 msgid "Split Segment Uniformly" msgstr "Pisahkan Segmen Secara Seragam" -#: app/actions/gradient-editor-commands.c:445 +#: app/actions/gradient-editor-commands.c:453 msgid "Split Gradient Segment Uniformly" msgstr "Pisahkan Segmen Kecerunan Secara Seragam" -#: app/actions/gradient-editor-commands.c:449 +#: app/actions/gradient-editor-commands.c:457 msgid "Split Segments Uniformly" msgstr "Pisahkan Segmen Secara Seragam" -#: app/actions/gradient-editor-commands.c:450 +#: app/actions/gradient-editor-commands.c:458 msgid "Split Gradient Segments Uniformly" msgstr "Pisahkan Segmen Kecerunan Secara Seragam" -#: app/actions/gradient-editor-commands.c:462 +#: app/actions/gradient-editor-commands.c:470 msgid "Split" msgstr "Pisahkan" -#: app/actions/gradient-editor-commands.c:478 +#: app/actions/gradient-editor-commands.c:486 msgid "" "Select the number of uniform parts\n" "in which to split the selected segment." @@ -1909,7 +1909,7 @@ "Pilih bilangan bahagian secara seragam\n" "yang akan memisahkan segmen yang dipilih." -#: app/actions/gradient-editor-commands.c:481 +#: app/actions/gradient-editor-commands.c:489 msgid "" "Select the number of uniform parts\n" "in which to split the segments in the selection." @@ -2430,7 +2430,7 @@ #: app/actions/layers-commands.c:232 app/actions/layers-commands.c:234 #: app/actions/layers-commands.c:291 app/actions/layers-commands.c:295 -#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:840 +#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:842 msgid "New Layer" msgstr "Lapisan Baru" @@ -2442,7 +2442,7 @@ msgid "Set Layer Boundary Size" msgstr "Setkan Saiz Sempadan Lapisan" -#: app/actions/layers-commands.c:512 app/core/gimplayer.c:255 +#: app/actions/layers-commands.c:512 app/core/gimplayer.c:253 msgid "Scale Layer" msgstr "Skalakan Lapisan" @@ -2454,7 +2454,7 @@ msgid "Layer Mask to Selection" msgstr "Topeng Lapisan ke Pemilihan" -#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1085 +#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1066 #: app/dialogs/layer-add-mask-dialog.c:62 msgid "Add Layer Mask" msgstr "Tambahkan Topeng Lapisan" @@ -3102,7 +3102,7 @@ msgstr "Buka Fail Teks (UTF-8)" #: app/actions/text-editor-commands.c:132 app/config/gimpconfig-utils.c:552 -#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:393 +#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:396 #: app/core/gimpbrushgenerated.c:601 app/core/gimpbrushpipe.c:338 #: app/core/gimpgradient-load.c:63 app/core/gimppalette.c:360 #: app/core/gimppattern.c:328 app/tools/gimpimagemaptool.c:608 @@ -5120,7 +5120,7 @@ msgid "FG to Transparent" msgstr "FG ke Lut sinar" -#: app/core/gimp-gui.c:148 +#: app/core/gimp-gui.c:153 msgid "GIMP" msgstr "GIMP" @@ -5152,43 +5152,64 @@ msgid "Modules" msgstr "Modul" -#: app/core/gimpbrush.c:531 +#: app/core/gimpbrush.c:534 #, c-format msgid "Could not read %d bytes from '%s': %s" msgstr "Tidak dapat membaca %d bait dari '%s': %s" -#: app/core/gimpbrush.c:566 +#: app/core/gimpbrush.c:554 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Width = 0." +msgstr "" +"Ralat mati huraian:\n" +"Fail berus '%s' rosak." + +#: app/core/gimpbrush.c:563 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Height = 0." +msgstr "" +"Ralat mati huraian:\n" +"Fail berus '%s' rosak." + +#: app/core/gimpbrush.c:572 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Bytes = 0." +msgstr "" +"Ralat mati huraian:\n" +"Fail berus '%s' rosak." + +#: app/core/gimpbrush.c:596 #, fuzzy, c-format msgid "Fatal parse error in brush file '%s': Unknown depth %d." msgstr "" "Ralat mati huraian:\n" "Fail berus '%s' rosak." -#: app/core/gimpbrush.c:579 +#: app/core/gimpbrush.c:609 #, fuzzy, c-format msgid "Fatal parse error in brush file '%s': Unknown version %d." msgstr "Ralat Mati Huraian: '%s' versi Berus GIMP tak diketahui" -#: app/core/gimpbrush.c:595 app/core/gimpbrush.c:715 +#: app/core/gimpbrush.c:625 app/core/gimpbrush.c:745 #, fuzzy, c-format msgid "Fatal parse error in brush file '%s': File appears truncated." msgstr "" "Ralat mati huraian:\n" "Fail berus '%s' yang muncul dipangkas." -#: app/core/gimpbrush.c:603 app/core/gimpbrushgenerated.c:648 +#: app/core/gimpbrush.c:633 app/core/gimpbrushgenerated.c:648 #: app/core/gimpbrushpipe.c:354 #, c-format msgid "Invalid UTF-8 string in brush file '%s'." msgstr "Rentetan UTF-8 tak sah dalam fail berus '%s'." -#: app/core/gimpbrush.c:610 app/core/gimpcontext.c:1299 -#: app/core/gimpitem.c:479 app/core/gimppattern.c:400 +#: app/core/gimpbrush.c:640 app/core/gimpcontext.c:1299 +#: app/core/gimpitem.c:480 app/core/gimppattern.c:400 #: app/dialogs/template-options-dialog.c:80 app/tools/gimpvectortool.c:339 msgid "Unnamed" msgstr "Tanpa nama" -#: app/core/gimpbrush.c:704 +#: app/core/gimpbrush.c:734 #, fuzzy, c-format msgid "" "Fatal parse error in brush file '%s': Unsupported brush depth %d\n" @@ -5355,11 +5376,11 @@ "%s" #: app/core/gimpdatafactory.c:411 app/core/gimpdatafactory.c:414 -#: app/core/gimpitem.c:274 app/core/gimpitem.c:277 +#: app/core/gimpitem.c:275 app/core/gimpitem.c:278 msgid "copy" msgstr "salin" -#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:286 +#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:287 #, c-format msgid "%s copy" msgstr "salinan %s " @@ -5421,7 +5442,7 @@ msgid "Rotate" msgstr "Putar" -#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:259 +#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:257 msgid "Transform Layer" msgstr "Jelmakan Lapisan" @@ -5803,7 +5824,7 @@ #. pixel size #: app/core/gimpimagefile.c:624 app/dialogs/info-window.c:552 -#: app/widgets/gimpsizebox.c:552 app/widgets/gimptemplateeditor.c:637 +#: app/widgets/gimpsizebox.c:429 app/widgets/gimptemplateeditor.c:637 #: app/widgets/gimptemplateeditor.c:673 #, c-format msgid "%d x %d pixels" @@ -5823,15 +5844,15 @@ msgid "Could not open thumbnail '%s': %s" msgstr "Gagal membuka fail saiz kecil '%s': %s" -#: app/core/gimpitem.c:1096 +#: app/core/gimpitem.c:1103 msgid "Attach Parasite" msgstr "Lampirkan Parasit" -#: app/core/gimpitem.c:1106 +#: app/core/gimpitem.c:1113 msgid "Attach Parasite to Item" msgstr "Lampirkan Parasit ke Item" -#: app/core/gimpitem.c:1145 app/core/gimpitem.c:1152 +#: app/core/gimpitem.c:1152 app/core/gimpitem.c:1159 msgid "Remove Parasite from Item" msgstr "Alihkan Parasit ke Item" @@ -5865,81 +5886,81 @@ msgid "Floating Selection to Layer" msgstr "Pemilihan Apung ke Lapisan" -#: app/core/gimplayer.c:252 app/pdb/internal_procs.c:152 +#: app/core/gimplayer.c:250 app/pdb/internal_procs.c:152 msgid "Layer" msgstr "Lapisan" -#: app/core/gimplayer.c:253 +#: app/core/gimplayer.c:251 msgid "Rename Layer" msgstr "Namakan semula Lapisan" -#: app/core/gimplayer.c:254 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 +#: app/core/gimplayer.c:252 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 msgid "Move Layer" msgstr "Alihkan Lapisan" -#: app/core/gimplayer.c:256 +#: app/core/gimplayer.c:254 msgid "Resize Layer" msgstr "Ubah saiz Lapisan" -#: app/core/gimplayer.c:257 +#: app/core/gimplayer.c:255 msgid "Flip Layer" msgstr "Terbalikkan Lapisan" -#: app/core/gimplayer.c:258 +#: app/core/gimplayer.c:256 msgid "Rotate Layer" msgstr "Putarkan Lapisan" -#: app/core/gimplayer.c:341 app/core/gimplayer.c:1129 +#: app/core/gimplayer.c:339 app/core/gimplayer.c:1110 #: app/core/gimplayermask.c:236 #, c-format msgid "%s mask" msgstr "%s topeng" -#: app/core/gimplayer.c:387 +#: app/core/gimplayer.c:385 #, fuzzy, c-format msgid "" "Floating Selection\n" "(%s)" msgstr "Pemilihan Apung" -#: app/core/gimplayer.c:1055 +#: app/core/gimplayer.c:1036 msgid "Cannot add layer mask to layer which is not part of an image." msgstr "" "Tidak dapat menambahkan topeng lapisan ke lapisan yang bukan sebahagian " "daripada imej." -#: app/core/gimplayer.c:1062 +#: app/core/gimplayer.c:1043 msgid "Unable to add a layer mask since the layer already has one." msgstr "" "Tidak dapat menambahkan topeng lapisan kerana lapisan telah mempunyainya" -#: app/core/gimplayer.c:1069 +#: app/core/gimplayer.c:1050 msgid "Cannot add layer mask to a layer with no alpha channel." msgstr "Tidak dapat menambahkan topeng lapisan ke lapisan tanpa saluran alfa" -#: app/core/gimplayer.c:1079 +#: app/core/gimplayer.c:1060 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "" "Tidak dapat menambahkan topeng lapisan bagi dimensi yang berlainan daripada " "lapisan yang ditentukan. " -#: app/core/gimplayer.c:1183 +#: app/core/gimplayer.c:1164 msgid "Transfer Alpha to Mask" msgstr "" -#: app/core/gimplayer.c:1343 +#: app/core/gimplayer.c:1324 msgid "Apply Layer Mask" msgstr "gunakan Topeng Lapisan" -#: app/core/gimplayer.c:1344 +#: app/core/gimplayer.c:1325 msgid "Delete Layer Mask" msgstr "Hapuskan Topeng Lapisan" -#: app/core/gimplayer.c:1445 +#: app/core/gimplayer.c:1426 msgid "Add Alpha Channel" msgstr "Tambahkan Saluran Alfa" -#: app/core/gimplayer.c:1467 +#: app/core/gimplayer.c:1448 msgid "Layer to Image Size" msgstr "Lapisan ke Saiz Imej" @@ -7505,32 +7526,32 @@ msgstr "/Sa_iz Pralihat" #. the image size labels -#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:241 +#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:222 #: app/widgets/gimptemplateeditor.c:236 #, fuzzy msgid "_Width:" msgstr "Lebar:" -#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:248 +#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:225 #: app/widgets/gimptemplateeditor.c:243 #, fuzzy msgid "H_eight:" msgstr "Tinggi:" #. the resolution labels -#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:338 +#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:273 #: app/widgets/gimptemplateeditor.c:363 #, fuzzy msgid "_X resolution:" msgstr "Resolusi" -#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:345 +#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:276 #: app/widgets/gimptemplateeditor.c:370 #, fuzzy msgid "_Y resolution:" msgstr "Resolusi" -#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:357 +#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:269 #: app/widgets/gimptemplateeditor.c:383 #, c-format msgid "pixels/%a" @@ -8236,11 +8257,11 @@ msgid "%d minutes" msgstr "" -#: app/display/gimpdisplayshell-dnd.c:96 +#: app/display/gimpdisplayshell-dnd.c:98 msgid "Drop New Layer" msgstr "Gugurkan Lapisan Baru" -#: app/display/gimpdisplayshell-dnd.c:140 +#: app/display/gimpdisplayshell-dnd.c:142 msgid "Drop New Path" msgstr "Gugurkan Laluan Baru" @@ -9807,12 +9828,12 @@ msgstr "Berus cat" #: app/tools/gimppaintoptions-gui.c:103 app/widgets/gimpbrushselect.c:201 -#: app/widgets/gimplayertreeview.c:330 +#: app/widgets/gimplayertreeview.c:332 msgid "Opacity:" msgstr "Kelegapan" #: app/tools/gimppaintoptions-gui.c:108 app/tools/gimpselectionoptions.c:374 -#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:323 +#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:325 msgid "Mode:" msgstr "Mod:" @@ -11296,26 +11317,26 @@ msgid "Set Item Exclusive Linked" msgstr "Setkan Item Eksklusif Dapat Dilihat" -#: app/widgets/gimplayertreeview.c:250 +#: app/widgets/gimplayertreeview.c:252 msgid "Reorder Layer" msgstr "Susun semula Lapisan" -#: app/widgets/gimplayertreeview.c:311 +#: app/widgets/gimplayertreeview.c:313 #, fuzzy msgid "Keep transparency" msgstr "Kekalkan Kelutsinaran" -#: app/widgets/gimplayertreeview.c:846 +#: app/widgets/gimplayertreeview.c:848 #, fuzzy msgid "Empty Layer" msgstr "Kosongkan Lapisan Teks" -#: app/widgets/gimpmessagebox.c:458 +#: app/widgets/gimpmessagebox.c:460 #, c-format msgid "Message repeated %d times." msgstr "Mesej diulang %d kali." -#: app/widgets/gimpmessagebox.c:460 +#: app/widgets/gimpmessagebox.c:462 msgid "Message repeated once." msgstr "Mesej diulang sekali sahaja." @@ -11345,17 +11366,12 @@ msgid "Invalid UTF-8" msgstr "rentetan UTF-8 tak sah" -#: app/widgets/gimpsizebox.c:290 -#, fuzzy -msgid "Keep aspect ratio" -msgstr "Nisbah Aspek Tetap" - -#: app/widgets/gimpsizebox.c:574 +#: app/widgets/gimpsizebox.c:451 #, fuzzy, c-format msgid "%d x %d dpi" msgstr "%d x %d piksel" -#: app/widgets/gimpsizebox.c:578 +#: app/widgets/gimpsizebox.c:455 #, fuzzy, c-format msgid "%d dpi" msgstr "dpi" @@ -11836,6 +11852,10 @@ msgid "Image Editor" msgstr "Senarai Imej" +#, fuzzy +#~ msgid "Keep aspect ratio" +#~ msgstr "Nisbah Aspek Tetap" + #~ msgid "Y:" #~ msgstr "Y:" diff -uraN gimp-2.2.0/po/nb.gmo gimp-2.2.1/po/nb.gmo --- gimp-2.2.0/po/nb.gmo 2004-12-19 03:11:55.000000000 +0100 +++ gimp-2.2.1/po/nb.gmo 2004-12-28 16:58:43.000000000 +0100 @@ -1,266 +1,285 @@ -Q Jm ,&kG9G ATNi<Ok@29;lPO2I9|-9;7Z  - - -  - -/:BJf0 -%,4< K Y e -s -~   K4.1!=OVel -   -0 CM\ -ep*6Uh >Sg#{ - 4H P Z gq13)0 - ' -4?PbrAJ<# ` n| )2I[ lz -&$$IP V `nu"  - &7K7_    m   C7J=@6d83<#V!z   6Nfx,%?G Zh ! -4= F Tau|  .5 5A7w8),?[s2 OAk%&41/#a   -  %3 IVo0  #@+Iu   - $7JYn "?U dr !*; CPk "" &/ -AL -k)v,!###G!k%. %9L_#u-%/J_w | - - - #3FUd ky --   1DXi|   -%!C er&  (7 GT cp  +: -S -^-i    - 4<Oc v  :?+8k   - - ' 5 A -N Y e -o z  > -=Obr  +>Wk  - -%0 HV ly  -* 6?!Qs.#"%B&a ,# .<O'i' %F?T  ? V` -w   "+ 4@V(_$=6<(?eA79cY9B=:fx>CJbg !1 CQfk}      1EXk} ;Vm  -   -  - (; -LWs {   (2 [ a h  p }    - O   -  - - - - +U Js l89&OkvG9*GdANi=<k@P2;POQ29-9<;v7  +  + + &2B +Q\_o +0&7JS[ +r} + +  + " ' 3K@.1A!s + +/ :F \ +hs  +&5*K6v:Ocw# +-8IQcl 13 Thn +9Oip  +AJh<{ %-2 LXn  +(?&U$|  " 8DIOT +do~7  ( 5A IV[ `mm  ,:J QC^7=@6Yd3)]<q#! +7 M Waj &C,Z  !;Vl   (.>5m578)J,t2 %FaO}A%&54\1#   '?PV_n~ +  0 E Q^ e o |+ % 5C LV +^ is$ -Gex"    % :"H"k +  +)/,Iv!##!%B.a #-(V%l  +3 +> +ITls   +&--[ bo  .E Vb r ~ %! &,S gu    . =IXp + +- &2 9GO Wd +l w - 6@ PZa:?8 3?HZ ku + + + +  +? N>\ "4Td t  *=Rm + +   *:U d r +~*!.Hd#m"& -9M,V# ' '=eFTjq w   +  <]l{  ($<=B6<?A47v9c9LB=f>nCJg<     &2 D Q _m #3Gc~$ 8F +Y dr w +   +  +  &  6 D \ x   (      + +  - -    ! .- \ o   -           ' ; R ua    c| zhnrv"4CL\q&'      )/6; MZi{ ( ? -IT ]gnv {  -H -c nx -H!BIM1\  -  `hC1F0x   - -)H[ s( - -H -   -!, 3?N ]j      (A /3 E S `Kn36%4"J mw $   @(a+)*! -/?ov*''7@ -R]m - !B]nw     0 J ^ !v       !!6!O!-^!""""" """" ##3#L#]#u## # -# # ### $+$D$X$i$ ~$$$ $$$$$@$7%->%l% ~%% % % %%% %% % %&&;&Z&n& & & && &&& &' -'''<' R'`' x'' -''''''''''(&( <(J(_(v( -~(#(((((() )+=)i)q) x) ) -) ) )))))* (*5* D*R*e**"**** *+ +++$.+S+e+y++ ++ + +++ + ++ -, , -',2, B,L,[, k, u,,,,,,,- -'-0- C-O-b-|-- -- ----- - --. . %. /.;.X.g.y. . -. .. . .. . / /,/L/!_////)/ /0 0 &02070F0M0 ^0 j0x0B0A01.1C1 U1_1f1u1 111111N2]2o2w22 -22 222 2223"93!\3!~3333 3 3 344&4 .4<4VD4+4 4(44"5#5 95 E5Q5k5%5 -5 55555 -56 6!6 *686 L6 V6d6j6}6 6 6 66&6,6 &73787 -H7 -S7^7{7777747*8<8 -B8M8U8 -e8 p8}88 8888 88 8!89 -9;9 Q9]9n99 999 999;9?:^:m:u:::::4u;;;-; <<< - = =#!=E=-X= === ===== -= >>>>> >>>? ?? -7? -B?M?c? -s? ~? ???? ? ?!?? ? @!@ 0@ =@J@e@l@ t@@@ @@ -@@@ @ -A A+A ->AIAwAAA A!AA!A#B2B HB -UB9`BUB=B<.C=kCC"C?CD$D 5DADEDJD(OD,xDDDDD -DD -EEJ3E ~EEEE E EEF F (F6FNFhFxF;FFF F GG*G W n  +     .     +  +  9  E R W  f s       u f x Ec  oz|rx&'8 ` l v     +(9=Wt  +  + #>Ue +juH +  +H*!sB105 :GN^ +ny ~ `C108 > KX +j +u ( +9 +DHO +  +  $ 3 @NS [ ht|  Q]r   K3I6}" 2 A$Kp   (+)E*o!/*%Pa'~ +"4CL[t   /  F g       ! !1!C! J!W!n!!!!!-! ##"#5#9# S#]#c#s# ##3####$ $ +'$ 2$ >$K$i$$$$$$ $ % % '%3%H%\%k%@s%%-%% %& & & '&4&R& Y&e& j& v&&&&&& & ' '!' 8'F'^' w'' +''' '' '( +("(7(@(H([(`(h(q(y((( (((( +(#)*)C)\)r)x)))+))) ) * +* * '*5*J*^*w** ** ****"+7+@+V+ v+++++$++++, , , (, 6,B,U, Z, g,t, +, , +,, ,,, , ,,-$-;-Q-o----- ----- +. ..-.A.T. g. q.{.. . . ..... / +/ /*/ E/ R/^/ x/ / /,//!//0)0)F0 p0}0 0 00000 0 00B1AK1111 1111 22!262>2F222222 +3 3 !3/3F3 X3e3w33"3!3!3454N4 f4 p4 z4444 44V4+5 D5(N5w5"}55 5 555%6 +&6 16;6C6R6f6 +v66 66 66 6 6666 7 7 '757&O7,v7 777 +7 +777858M8`84r888 +888 +8 88 9 9 9(9/9 L9X9 m9!y99 99 999: : :1: C:P:W:;_:?::::;;3;P;4;'<0<-8< f=p=y= += =#==-= >>$> 9>C>K>b>k> +t> >>1?E?Y? b?o?x???? +? +??? +? ? @@@1@ B@ L@!V@x@ |@@@ @ @@@@ @@A *A6A +IATAfA yAA AA +AAAABB B!)BKB!iB#BB B +B9BUC=mC<C=C&D",D?ODDD DDDD(D,D"E2EDEUE +fEqEEEJE EFF0F JF WFdFF F FFFFF;GKGeG tG GGG G GG G G G +HH 0H:HUHrHHHHHHHHI I5I+LIxIIII I I II I JJ#.J RJ^J pJ|JJJ6JJKK#K 8K7EK}KKKKKKK L LL.L BLOL mLyLLL +L +LL LLL LL +L MM #M/M +FMQMqM MMMMM M +NN3NCNWN4lNNNNNOO)O.COErOO O OO O +PP3P 9P GP SP +_PjP {P +PPP PPPPPNQ +QQQQR R#R5RQRgR#RRR RRRS'S#ASeSS SSSSS$T+TJT _TiTyTTT!TTTU +U!U6U FUSUrUUUUU UU V V7VVVmV VVV VVVVWW.WEW +WWbWrW"WWW WWXX6XOX=_X6XSXJ(YsYYY YYYYY ZZ9Z KZWZfZ{ZZ ZZZZ ZZ[0[K[e[[[ [[[[[\\&\)\N]T]Kh^=^^*v__F`3`Ta?ra`a2bFbbxd4{e/ee fffffffff gg!g4gGgdg yg gg;gg ggh h"h 7hEhUh#ih hh h h&hh +ii"i2iLi"^iiiiiiiij$j4jCj Tjajzj jjjjj+jjj k k!k (k5k Ek +Sk^kdkkksk |k k8kvkElLldl|l l ll l!lllm5mNmkmmmmmmmm m m m +nn!n *n7nGn Vnbn sn nnn!nnn(o/o#8o \o jowo~o +o o ooooo +o o +p pp)pK2p1~p7p1p5qHPqAqq;fr!rr ss tu}Dv*vBw0xy6yy;z AzOz)Vz5zz1f{0{0{1{(,|CU||S},n}2} }A~A1*sJ 8Ec GO2p -lj +%6<APY_q  ̊ ڊ  +!<, iw Ό݌ +?Nhx  +Íȍэ3;;X6F=    ΐ%E3^#Α !0?E LXu~FΒ + +   % 2 ? M![!}  +K0/Q`K$5PIG-Oj`o˘e;j~ powl<?!>att`u0,29K` q6o(*149#nG[%XɡU"OxȢߢ +  # ,6?#Qu }̣ߣ   )7 NX`f is   #0 8BS V b lz + ĥ / >J +R]o   Φ ܦ 0@R c o{  ȧ +է 2L]v  ʨ Ԩި  & ,:JQW^ q~   + +ͩ֩ ީ  #+ > JWq yŪ +  *2:P _ lx {ǫϫ  %39IOV +^ iv   +   Ȭ Ҭ ߬    +&1 :FO ^ kw   ­ Эݭ   069>F U b n{ Ю(08AWo41Я/2HXx # ܰ#3"Cf +ny± ӱ߱% +> +I +T_ esy +Ҳز ++: BO^bhkz~ +5ճ   #!8 Z { + ǴӴڴ޴   &4.GvT#t#]2X)OIҸL8iqA9V=UκO$1t:386N9Ƽ +ͼؼ ߼   +%0 3@ +T _ir1Ľ  +$+BKSY _ m {  + +  ľ پ  Xzk).)?i|  )B^$y  "&?]{+20MUo$AY s}  +   +*,.W0 + '0A P ]BkH2 <V p~  + &+4F[p'!%GK +Q \ho&$ "6?T cp2    +  + +# +(e3   + +Q66CC5Ga}""2%X?n-#;Q c mw  ( Ij% +!  ++6Sp  + (8==v@??52u.!&" 8C(|"s@V));:''b  ( 9FN Tay)  +  +#,C[$`      +  + "%!G^"r 3#Ko xZ c mw%''9a! *21d!$&''?*^ &*J+\3.b q~, +  # +3>RZi z, "-28HW kx (0 6#@ d< +  )5E T a o y     + &6IX v,   + + -AZap  "E KQ)  + +  +&+ +C N \ +f q { +  D&Ip     *9HPn$-R jv -C U +cn w $ 'G4_!.$!32f +))    !0+R~)!$ !.OPT $&<c ~ +-'3Oj   +/*$OBU0C; =I/1d4NK5^5d<Ab |      -PP$P 3P@P]PePyPNQ -eQpQyQQQ QQQQQ#R(RFR ZRfRxRRR#RRS S'S:SWSnS$SSS SSST*T!BTdTTT -TTT TTTU'U;USU iUuUUUUUU VV*V =VJV_VqVVVVV -VVV"W2WLW fWrWWWWW=W6 XSWXJXXY"Y 5Y?YPYfYuYYYY YYYYZ %Z1ZJZ\Z pZ}ZZZZZ[[ /[;[P[e[u[[[[)^\N\\K]=7^u^*^$__3l`T`?``5a2aaKbc4d/3ece f*f2f8f?fPfaftf|fffffff f gg;gZg jgwgg gg ggg#g hh 2h @h&Mhth -hhhhh"hii,it#t` nx0~Ξ 6o;4#Gޠ%&XLUOKbkt| -   ¢#Ԣ ,3<Obk}    ѣۣ  $ Cd jw~  Ť֤ ٤   -* 2?Gg p~ ͥ -ե  /= Q _m }æզ    0 : -GRXgϧ   < FP Xb ht èɨШ    - -&?H PZ `msy  ɩ (7 -Wbu  ª Ѫ ު 09ATj  ȫ -Ы ۫   -  - : D Q^ oy  -  Ь ݬ  ' 4 BO X ft  ǭ ԭ  "(1BUg(yɮ4 1B/tʯ #* No"ذ -4 EQX`p - - -Ʊѱ ױ -(3DJ -S^dmr вԲڲݲ - 5G Ycsx ! ̳  -. 9ELPX]ci p z .TZ#qt] -2hXOIDL8۸qA9ȹ=U@O1:3S86918 -?J Q ^ kw -  -Ƽ Ѽۼ.16h{ -Ž˽ ѽ ߽   - -  *6 K Wc htXzݾ)X.)ۿ &4NWj}$ &3 ESc"u+2At&:Zn   -(3Rc k u -*.0)ARn - +DZs{  BH i2{  " -0;@ T^&v -F['o! - & 2$: _kpv" 2( / < IS[ -c n| - -e    -* -5@`rQ6C1Cu5a"Q"t2?- #Nr )CWq  %*0 -FQ!q -  %6FMS -Xcw 8=@?]?2.!?&a"8( "'sJ@)));S:'  ,:Nago  )0 @M -T -_js$      - $ -. 9"E%h".Igz# x(  % /G'X'! *J2i!$&'''Ow*  !&0*W+&@I3f , - , ;G[ -kv , "'JSejp  />M`h n#x <B U am}         - &D^n ,    -'2 -:ETey  " ECK)  - ) -; F -S^c -{   -   -  .D<&   +A Tbq):N$e  -<Se{  -  $ ' 3GO4!.$#!H3j -))  5 ? LX!h+)!"$A!fOT-2 ;H\&t  --''Ok   - #/,*\B0C;E=/1d!4K5^=5<AbQ      # 4 -BM iu(BQj!# +CYq     -  -(D LVf v( &->W_hMwz    %,C -Ze n |   ,{;lw v|g ",B Q[o1/! -! ,8G_sx  -& 26Pi    '@Xi -nyU -  ( -2[='B  - + D X  _ k z       i : -C -5, +b         -  - ) D [  p #}   - M   -   (  / 9 Q a p           $.>X%!>`fy -H30Pj-|  / De(,'*.H6Y ("-BZks ##);DSm! %=%X~ $Dcw!&#JSew{ @!0HYm v )9Rbtx L";*f{  "  -Mm    -  *4J -`k  -  4Um &) " 9FKe%    7 Q k       $ ! 2!>![! z!!!!!$!!! "" "(" 0">"G"Y" _" l"x""" "" -" """ ## /#<#N#`#w### ## ##/#$$ -$*$3$F$\$u$ -$$$$$ $$"$ % %%% >%K%Z%!c% % % % -% % %9%&)/&Y&r&&2& &&''!'''7'>'O' _'m'J'K'$(=( S( _( i( u(( (((((( ])j)|))) ))))) * *(*9*J*_*p*******++"+ -++ 6+a@+/+ +D+!,&%,L,i, x,,,-, , ,,-- ,-9-B- -T-_- -h-s- ------ - -----.&>. e.q.v.. ....////5?/u///// / / // //// -00 -40(?0 h0 v0/0 0000 011 )171?19H1:11111%2%<2b20"3S3b35q3 444 4 4"45-5 K5Y5l5|5 55555556666 666(67 <7 F7R7n7 -~7 7 7777 77!78 -8 8?8P8a8t888 888 88 -899 /9;9 R9\9 -q9|99*9999%9#:&A:$h:":: -:>:S ;<];<;F;<9#<L]<<<<<< =(=39=m=~=== -==&=%>F->t> >>>> >>> -?#?5?Q?g?v?1????@%@=@U@ l@z@@@ @@@@@@A A.A =AGAVApA(AAA$A,B;B/YBBBBBBC!CP[P -qP|P!P PPPPPQQ0QCQLQ]Q&zQQQ -QQQ R'R>R8TR*R@R8R2SOS^SoSvSS SS SSST TT-T=T -NTYTsTTT&TT!T!U!9U[UyUUUUU UUV/V3VB WPWH`X-XvXNYfYZZAZJ[qi[=[\\w^:_8__ -```````a a a.a6aVavaaa aa<a b b+bG V`fuy̟ߟ   $ -<GOUXhyР ߠ!- 6CV -Yd -mx -(ġ !;Yi -p{    ͢ڢ  -   3O ^ -lw  ȣأ+=SnĤ)Ӥ - ( --8O^ d r    -å -Υ ٥   ) 0= ERX_f nx  -ʦ٦ߦ 3? U -b my   -çƧϧէݧ 2+Q }  -Ũ Ш ڨ    -( 1= -L W c o{   -©ͩ ܩ - & 0<L [ i  Ϫت۪  -  7Rc -kv(ī %#@3dE6ެ3Ee mw~6'&5>P8`ʮЮ  $:L^ pz     ɯ    -',4:V r ðǰ -Ͱذ߰=(= FSY ` jx#""Ա! - -$ /9=EJPW -_ -ju{ 10βuj <}swq~b]+  56DSMH & LP: =c#>i~\C7X>  BDPL39']Mu,$li =8|c*j\VkO*x+.k#!! h80 cdi}eWQbrG"Z6 ti"&Z5E_$:R4uq$f\9+#dCt 61x )(70Me |`gW@%} 00, )z -/KDJzBJ[,NjcjFf F oD wU:vAI! E2sSs7J ?<l<sZA4p1 LM-Xrge5puD |py9 df%.? CBLg"Epv} eu  yP N d{  )f; "W+.' (D6. na!QV_W`*d #VU,?  /![ bm1 V.IK <viT>2 v1? < ^i$Ap~!Uan}  3ZIH:JQ]4c '4@F_,/  P;) gh: +X_m}L *( + ( :R:D8eo'B/(7 |g -6 om4@bCTU@  nz i9 A69FPM7@zz3w sVg</R).Y y(*(Oc>)@* NB TF4XH0sGBGg$ s`zz42J$3fEN C?Iqu7="* 3L(0Gw=Y /j!,q8}P f'r=/%Q+U -{7?JOf<xEo,% -Ms2 Tu=a{bthw-LDkSBc`#fj20]z2R?;q& _0n2Fd_{J|8.-H$KMw\x6'@6Zb=5jIKq4t>S 8O TR`5:.XK9$R35Hm- #70 m?4 yPb;wHl[Qjnu\""\Sk8^#|heE`>hvTt -aNQa~JP AmDY\1H ( r ,8G& hHyVK^T-k] -P ^N *y[gBkY`_lU4X7B<= =SySk -9C3mCa B Q'av.<=Kv@i&Z +% d1 C5 nE~@~N;Z-Ns%M{2W;~# UM *wxA 1$FQ3 pIKn1!CJ -I )%/h32cFo&T>pK]{8 >r P(q%[{)!S+Y xIE  ;YK^_httzQ7]_ u>Uk ?D+qO)xHbA,aWrOAXjGo#h -\;y8rZ'![UWgA^5OH Ww  p[&, -l~GM`Nt`G W" V6 C 5lmq|}I}vNLV b;c"r#OE&]-LR RL |roX|e;IdYQ n&[/V: /Yn93llF{JZdoG'>^x'F5peS~9a  -O - {[)216.: X@^&9kARlyY"0^ft TE% io]v e* -\O1m?x$<G% + 1=Ro +2!K#m  !9Ig w    + +  . >K`x('0M?BQj    %  +"- 6 D P]b q~ {hl? >DgM  + #7T1e/! + ';@IPXa { +& 1JYb     1 +6ATnUv +   +[ 'a B   +  + + ' +3 +B +I +[ + k +w + | + +i + C 5 +* V \ m |     +  )  #  8 #E i  +r M}   +    )8Oeu    !(.A +P[Hj302-D r~ -(M,v'*6!Xa q("- +"3; S#_#)!@b~ %&F [gy$ (7Qe!|& #@IN] x@  ,6Ec +  (IfuL};#4: L Y"e  ( C O [i +}  +)2 FP +epx  .K T&`)  %' M U ] m        !/!@!V!l!!!$! !!" ""."6"<"C"$U"z"" "" "" """# # # #6#M# f#p# +# ### ## ###$$6$J$ R$^$ n$z$/$$$ +$$$$%% +6%A%J%R%k% r%|%"% %%% %%&! & -& 9& C& +d& o& }&9&&)&''6'2T' ''''''''' ((J)(Kt($(( ( ) ) )+) ?)K)\)r){)) **$*6*I* O*[*o*~** *****++++B+`+}++++++ ++ +a+/J, z,D,,&,,- -,-B--`- - ---- --- +-. +.. +/.:.I.Q.c. z. +...-.&. ///2/ A/O/m/////5/0-030<0E0 T0 `0 m0{0 0000 +00 +0(0 1 1/,1 \1i1z11 111 11191:*2e2w222%2%2 +3033 +454 O5Y5b5 r5 ~5"55-5 566$6 +686U6g6z666A7S7f7o7 777(77 7 778 +&8 18 =8K8O8i8 z88!888 888 9959<9 D9P9g9 99 +999 99 9: +:$:::*V::::%:#:&:$;"5;X; +g;>r;S;<<<B<F<<9<L=R=r==== =(=3=>&>;>M> +_>j>&>%>F>? +?7?T?k? ??? +????@@15@g@@@@%@@@ A"A4ADA UAbAjAAAAA AA AAAB(8BaBwB$B,BB/C1CBC]CxCCCCCD5 D VDbD tD DDD7D"DE&E.E EE@SE!EE EEEF F ,F +6FAFPF cFpF +FFFF F FF FFFG$G*G2G8G UGbG yG+GG GGGH-H FHTHfH~HHH/H H II>I^I tII-I=IJJ)J!8J ZJhJwJJ J J +J JJ JJJK&K9K QK[KqKK*L vLLLLLLLLLL!M%MAM RM_MrMMM%MM N N*N P\m @͊:DI=J] ȍ؍  %*!Pr, َ 3K ]kqxY% < HUYkz  ,,  -$8R/;'-D3rG<I+huzޕTYbib{bޗfA:98cVgc"YmN)S}ƛ֛+؛kprv2{#ҜH!ޝgYhUž/HQZc k w  ) !'Fet   ̠ +!=Xx !ơա ޡ +  + 6= +CNUd(l ɢ +#; L Z h u  +  ȣۣ  + / <JReɤ)<Zo) +ȥӥ + +  -:@ HR cq t +~ +  Ȧۦ   ! )3 GUh +zΧ   + (4=E ] i +s~ĨʨӨ+  8 FSZkry +     ˩ +ة  +  %18?N a n +x ժ ܪ    @N fr  + «ԫ +!,>Tg(z ɬ۬#3EN6˭ #-4M6e'&Į8OU]o ɯ Яگ &06= D P ^ k u  Ȱ +Ұݰ  (5 >JZ^ehx| +=ݱ   -#B"f"! +β +ٲ   + +*0 8B1Q0#p g~uja0!LgeN _S _cR& .2 oSfpqOV@`l^i9 q&de.wIM9L 4 g>%w|]f 1, *6t]R & U&=tyBRXxM;qX< v% :663 WkQc>h"*7U?\!+O6WPN: U E~r*aP W5|~;IwPw' O;`}3ibu.-] +`%,5/;YS&U#/w o'Q S2OC }F<$ KA~o 8xQsAJ;NEMiyx I,R[t#uD!% rEaO-:  h^ +]DB]FT Pb^AK{sFL +1"Q5ry4 74Fzw" (N ?qFM+# |` e {Q)_Ys5b*;#$$tY*!qh<4L@!@ZRg/y5m!{:$pXVC\-YQMvLfoowP >"hd0XE .{A^mL$ +z$a=lhNz\VNr e8>k3<-BC0 " N @^d +' +J]:w?dd f T'D ZM A=F [C|o 0- B  s-SxwT`YCh<j= + B +9n 3E1MKYr >JD) @vG{! (l<W[$jqE[ z!}DJ^~%\D*Cv# [dF`> l9_?<7 eyF&JL} H|_qnH 80.A 7A Jv\GB~-&s'J.5|7tI /Ny.Xu|'/ ? cMuv6}.21pczyBHhnR {H"e1uQ J . 1G#:S'PxL-vet]G_3p gj+cU%4m+0YNkiQ,U6~zIK "D ( Slvp1/gX&52%&=) , irGz;M m?6 lk^)*<+q"kCCZ UTOO+xV9BFNxZnz 27uZP438@u 39@ 3j9,(9UO5A-W=[9)| nPTHE Dr;S72s1 e=$ }Zgxkdb_4198~; n: /t^!KKuWO2\0Ib8o~A  * ! m`>*>ho:5 3nPTByidH[,I8(H(KGC2 Vr\4?E'} yR7 Sj:{al7>6(bY#7 ;O aW`mU ?  R [W P^6/f=0]ri+ lK)ftihDk{*bV s] R\JaV-m/Y{KnV"? +)jqkS+vbEHB& c_2x<m= 4 4cVeA%5}$ aGI MEHTi@g=\,ts#UXZl6',"f/ K:kI  +   fZj(WJ%F_ (8pL?) bp< c'8 +0# G8 DmC )1+aI`nR.%G 3 [T TXG@2QT}Lz Xf)pc|s>Hgjd@$,o0Q(Z Invalid option "%s" Usage: %s [option ... ] [file ... ] @@ -292,8 +311,8 @@ (Unnamed Buffer)(Unnamed Template)(Varies)(clean)(invalid UTF-8 string)(modified)(none)1 Layer1 layer15 degrees %s16:1 (1600%)1:1 (100%)1:16 (6.25%)1:2 (50%)1:4 (25%)1:8 (12.5%)2:1 (200%)2D Transform...4:1 (400%)8:1 (800%)<%s><>For optimal GIMP performance, some settings may have to be adjusted.The GIMP - GNU Image Manipulation Program Copyright (C) 1995-2004 Spencer Kimball, Peter Mattis and the GIMP Development Team.The GIMP tips file could not be parsed!Your GIMP tips file appears to be missing!A file named '%s' already exists.A_dd to SelectionA_ngleAbout The GIMPActionActivate the _focused imageActive FiltersAdaptive supersamplingAddAdd Alpha C_hannelAdd Alpha ChannelAdd AnchorAdd ChannelAdd Color to ColormapAdd Guide: Add GuidesAdd Horizontal GuideAdd La_yer Mask...Add LayerAdd Layer MaskAdd PathAdd StrokeAdd Text LayerAdd Vertical GuideAdd a Mask to the LayerAdd color from BGAdd color from FGAdd layer maskAdd text to the imageAdd the current color to the color historyAdd the selected filter to the list of active filters.Add to palette %sAdd to the current selectionAdding theme '%s' (%s) -AdditionAdditional Input ControllersAdjust Brightness and ContrastAdjust Color BalanceAdjust Color CurvesAdjust Color LevelsAdjust brightness and contrastAdjust color balanceAdjust color curvesAdjust color levelsAdjust hue / lightness / saturationAdjust hue and saturationAdjust levels automaticallyAdjustmentAdvanced optionsAffect:Affected Area %sAirbrushAirbrush with variable pressureAl_pha to SelectionAlignedAlignmentAll ChannelsAll FilesAll Files (*.*)All image and undo data which doesn't fit into the Tile Cache will be written to a swap file. This file should be located on a local filesystem with enough free space (several hundred MB). On a UNIX system, you may want to use the system-wide temp-dir ("/tmp" or "/var/tmp").Allow completely transparent regions to be filledAllow completely transparent regions to be selectedAllow enlarging %sAlphaAlpha to SelectionAlpha:An image of the choosen size will use more memory than what is configured as "Maximum Image Size" in the Preferences dialog (currently %s).An_imationAnchor Floating SelectionAnchor floating layerAnchor floating selectionAngle:Anti erase %sAntialiasingAppearanceApply Layer MaskApply Layer _MaskApply ThresholdApply layer maskAre you sure you want to delete '%s' from the list and from disk?Are you sure you want to delete template '%s' from the list and from disk?As in _PreferencesAsk for confirmation before closing an image without saving.Aspect Ratio:Aspect ratio:Attach ParasiteAttach Parasite to ImageAttach Parasite to ItemAttach parasiteAuthor:AutoAuto _Follow Active ImageAuto shrinkAuto shrink selectionAuto-resize windowAutoloadAutomatically DetectedAvailable FiltersAvailable Types:BG color fillB_rightness-Contrast...B_uffersBackgroundBackground colorBackground color set to:Background: %d, %d, %dBackward (corrective)Base filled area on all visible layersBase selection on all visible layersBehindBevelBi-linearBlack & whiteBlack:Ble_nd Endpoints' ColorsBlen_dBlendBlend Endpoints' Opacit_yBlend: Blend: Invalid for indexed images.Blending...BlueBlue:BlurBlur or SharpenBo_rder...Border ChannelBorder SelectionBorder selection byBrightness-ContrastBrightness-Contrast does not operate on indexed layers.BrushBrush EditorBrush FoldersBrush UIBrush:BrushesBrushes MenuBucket FillBuffersBuffers MenuBurnButtBy ExtensionBy reverting the image to the state saved on disk, you will lose all changes, including all undo information.CMYKC_alibrate...C_olor PickerC_olumns:C_ombineCalibrate Monitor ResolutionCan't undo %sCan_vas Size...CancelCancel GuideCannot add layer mask of different dimensions than specified layer.Cannot add layer mask to a layer with no alpha channel.Cannot add layer mask to layer which is not part of an image.Cannot anchor this layer because it is not a floating selection.Cannot convert to a palette with more than 256 colors.Cannot create a new layer from the floating selection because it belongs to a layer mask or channel.Cannot create folder '%s': %sCannot create previewCannot crop because the current selection is empty.Cannot expand ${%s}Cannot float selection because the selected region is empty.Cannot raise a layer without alpha.Cannot save. Nothing is selected.Cannot stroke empty channel.Cannot stroke empty path.Canvas SizeCanvas _padding mode:Center X:CenteredChange Background ColorChange Colormap entryChange Foreground ColorChange Image ResolutionChange Image UnitChange Print SizeChange current layer or pathChange grid background colorChange grid foreground colorChange indexed paletteChange perspective of the layer or selectionChanging shortcut failed.ChannelChannel AttributesChannel Name:Channel cannot be lowered more.Channel cannot be raised higher.Channel colorChannel is already on the bottom.Channel is already on top.Channel to Sele_ctionChannel to SelectionChannel to selectionChannel:ChannelsChannels MenuCheck _size:Choose Stroke StyleCircleCl_earClearClear ChannelClear Undo HistoryClear all textClear errorsClear undo history...Click "Continue" to accept the settings above.Click "Continue" to create your personal GIMP folder.Click "Continue" to enter the GIMP user installation.Click "Continue" to proceed with the user installation.Click to connect this anchor with the selected endpoint.Click to create a new anchor. (try SHIFT)Click to create a new component of the path.Click to create a new path.Click to create previewClick to delete this anchor.Click to insert an anchor on the path. (try SHIFT)Click to make this node angular.Click to open up the path.Click to pick path to edit.Click to update preview -%s Click to force update even if preview is up-to-dateClick-Drag to change the shape of the curve. (SHIFT: symmetrical)Click-Drag to move the anchor around.Click-Drag to move the anchors around.Click-Drag to move the component around. (try SHIFT)Click-Drag to move the handle around. (try SHIFT)Click-Drag to move the path around.Click: selectClick: select Drag: moveClip resultClipboardClipped to bottom layerClipped to imageCloneClose %sClose this TabCo_py PathColo_rsColorColor BalanceColor Display FiltersColor PickerColor Picker InformationColor _Balance...Color _dithering:Color balance operates only on RGB color layers.Color eraseColor index:Color:Color_mapColor_space:Colori_ze...Coloring _Type for SegmentColoring _Type for SelectionColorizeColorize operates only on RGB color layers.Colorize the ImageColorize the imageColormapColormap EditorColormap MenuColumns:Comme_nt:CommentCon_trast:Con_volveConfigure Color Display FiltersConfigure E_xtended Input Devices...Configure G_rid...Configure GridConfigure Image GridConfigure Keyboard ShortcutsConfigure _Keyboard Shortcuts...Configure selected filterConfigure selected filter: %sConfirm Image SizeConfirm ScalingConfirm Text EditingConfirm closing of unsa_ved imagesConflicting ShortcutsConical (asym)Conical (sym)Connect StrokesConstantConstraintsContextContext-dependent cursors are cool. They are enabled by default. However, they require overhead that you may want to do without.ContinueContributions byConvertConvert EdgeConvert Image to GrayscaleConvert Image to IndexedConvert Image to Indexed ColorsConvert Image to RGBConvert imageConverting to indexed (stage 2)...Converting to indexed (stage 3)...Converting to indexed...ConvolveConvolve Type %sCopy NamedCopying file '%s' from '%s'...Copyright:Corrupt segment %d in gradient file '%s'.Could not create '%s': %sCould not create temporary file for '%s': %sCould not delete '%s': %sCould not find GIMP help browser.Could not open '%s' for reading: %sCould not open '%s' for writing: %sCould not open thumbnail '%s': %sCould not read %d bytes from '%s': %sCould not seek in XCF file: %sCould not start the GIMP help browser plug-in.Count:Cr_op LayerCreate New Doc_kCreate New TemplateCreate a New ImageCreate a New LayerCreate a New TemplateCreate a new display for this imageCreate a new image from the selected templateCreate a new templateCreate and edit images or photographsCreate and edit pathsCreate path from textCreate selection from pathCreating Preview ...Creating folder '%s'...CropCrop & ResizeCrop & Resize InformationCrop ImageCrop LayerCrop imageCrop or Resize an imageCrop: Crosshair onlyCu_tCu_t Named...Cubic (Best)Current _StatusCurrent height:Current layer onlyCurrent statusCurrent width:CursorCursor _mode:Cursor re_ndering:Curve TypeCurvesCurves for indexed layers cannot be adjusted.CustomCustom colorCustom gradientCustom p_adding color:CutCut NamedCyanCyan:D_uplicate BrushD_uplicate ChannelD_uplicate GradientD_uplicate LayerD_uplicate PaletteD_uplicate PathD_uplicate PatternD_uplicate Template...Dark check colorDarken onlyDash dot dot...Dash dot...Dash pattern:Dash preset:DashedDate:DebugDefault Appearance in Fullscreen ModeDefault Appearance in Normal ModeDefault GridDefault Image GridDefault _interpolation:Default _layer & channel preview size:Default _threshold:Delete AnchorDelete AnchorsDelete Layer Mas_kDelete Layer MaskDelete ObjectDelete SegmentDelete TemplateDelete brushDelete channelDelete colorDelete gradientDelete layerDelete layer maskDelete paletteDelete pathDelete patternDelete saved options...Delete the selected bufferDelete the selected templateDelete this imageDelete vectorsDeleting "%s" failed: %sDense dotsDesaturateDesaturate operates only on RGB color layers.DescriptionDesignDevice StatusDevicesDialogsDialogs MenuDiamondDifferenceDirect ColorDisable Layer MaskDisable Quick MaskDiscard Text InformationDisplayDisplay NavigationDisplay _Filters...Display proceduresDisplay type:Displaying [%0.6f, %0.6f]DissolveDistance:Distance: %0.6fDitheringDivideDo a _fresh user installationDo you really want to reset all filters to default values?Do you really want to reset all tool options to default values?Do you want to replace it with the image you are saving?Do_n't saveDockableDocument Histor_yDocument HistoryDocumentsDocuments MenuDod_geBurnDodgeDodge or Burn strokesDodge/BurnDouble dashedDrag AnchorDrag AnchorsDrag CurveDrag HandleDrag PathDrag: moveDraw in inkDrawableDrawable modDrawable proceduresDrop New LayerDrop New PathDue to lack of any fonts, text functionality is not available.Dump events from this controllerDuplicate brushDuplicate channelDuplicate gradientDuplicate layerDuplicate paletteDuplicate pathDuplicate patternDuplicate the selected templateEEK: can't undoE_xport Path...E_xtra SmallEdge BehaviourEdge-De_tectEditEdit Channel AttributesEdit Channel ColorEdit Color Palette EntryEdit Colormap EntryEdit Layer AttributesEdit Layer MaskEdit ModeEdit Palette ColorEdit Path AttributesEdit Quick Mask AttributesEdit Quick Mask ColorEdit TemplateEdit brushEdit channel attributesEdit colorEdit colormap entry #%dEdit gradientEdit layer attributesEdit paletteEdit path attributesEdit patternEdit proceduresEdit the selected templateEllipse SelectEmpty ChannelEmpty LayerEmpty PathEmpty Text LayerEmpty variable name in environment file %sEn_hanceEnable Quick MaskEnable dithering of _transparencyEnable this controllerEnable to display a handy GIMP tip on startup.Enable to display tooltips.EnormousEnter a name for the merged paletteEnter a name for the saved optionsEnter a name for this bufferEnter a name for this templateEnter a new name for the saved optionsEnter location (URI):EnvironmentEnvironment FoldersEqualizeEqualize does not operate on indexed layers.Erase to background or transparencyEraserError Co_nsoleError ConsoleError Console MenuError saving XCF file: %sError while parsing '%s' in line %d: %sError while reading '%s': %sError while reading brush file '%s': %sError while writing '%s': %sError writing XCF: %sError writing file '%s': +AdditionAdditional Input ControllersAdjust Brightness and ContrastAdjust Color BalanceAdjust Color CurvesAdjust Color LevelsAdjust brightness and contrastAdjust color balanceAdjust color curvesAdjust color levelsAdjust hue / lightness / saturationAdjust hue and saturationAdjust levels automaticallyAdjustmentAdvanced optionsAffect:Affected Area %sAirbrushAirbrush with variable pressureAl_pha to SelectionAlignedAlignmentAll ChannelsAll FilesAll Files (*.*)All image and undo data which doesn't fit into the Tile Cache will be written to a swap file. This file should be located on a local filesystem with enough free space (several hundred MB). On a UNIX system, you may want to use the system-wide temp-dir ("/tmp" or "/var/tmp").Allow completely transparent regions to be filledAllow completely transparent regions to be selectedAllow enlarging %sAlphaAlpha to SelectionAlpha:An image of the choosen size will use more memory than what is configured as "Maximum Image Size" in the Preferences dialog (currently %s).An_imationAnchor Floating SelectionAnchor floating layerAnchor floating selectionAngle:Anti erase %sAntialiasingAppearanceApply Layer MaskApply Layer _MaskApply ThresholdApply layer maskAre you sure you want to delete '%s' from the list and from disk?Are you sure you want to delete template '%s' from the list and from disk?As in _PreferencesAsk for confirmation before closing an image without saving.Aspect Ratio:Aspect ratio:Attach ParasiteAttach Parasite to ImageAttach Parasite to ItemAttach parasiteAuthor:AutoAuto _Follow Active ImageAuto shrinkAuto shrink selectionAuto-resize windowAutoloadAutomatically DetectedAvailable FiltersAvailable Types:BG color fillB_rightness-Contrast...B_uffersBackgroundBackground colorBackground color set to:Background: %d, %d, %dBackward (corrective)Base filled area on all visible layersBase selection on all visible layersBehindBevelBi-linearBlack & whiteBlack:Ble_nd Endpoints' ColorsBlen_dBlendBlend Endpoints' Opacit_yBlend: Blend: Invalid for indexed images.Blending...BlueBlue:BlurBlur or SharpenBo_rder...Border ChannelBorder SelectionBorder selection byBrightness-ContrastBrightness-Contrast does not operate on indexed layers.BrushBrush EditorBrush FoldersBrush UIBrush:BrushesBrushes MenuBucket FillBuffersBuffers MenuBurnButtBy ExtensionBy reverting the image to the state saved on disk, you will lose all changes, including all undo information.CMYKC_alibrate...C_olor PickerC_olumns:C_ombineCalibrate Monitor ResolutionCan't undo %sCan_vas Size...CancelCancel GuideCannot add layer mask of different dimensions than specified layer.Cannot add layer mask to a layer with no alpha channel.Cannot add layer mask to layer which is not part of an image.Cannot anchor this layer because it is not a floating selection.Cannot convert to a palette with more than 256 colors.Cannot create a new layer from the floating selection because it belongs to a layer mask or channel.Cannot create folder '%s': %sCannot create previewCannot crop because the current selection is empty.Cannot expand ${%s}Cannot float selection because the selected region is empty.Cannot raise a layer without alpha.Cannot save. Nothing is selected.Cannot stroke empty channel.Cannot stroke empty path.Canvas SizeCanvas _padding mode:Center X:Center Y:CenteredChange Background ColorChange Colormap entryChange Foreground ColorChange Image ResolutionChange Image UnitChange Print SizeChange current layer or pathChange grid background colorChange grid foreground colorChange indexed paletteChange perspective of the layer or selectionChanging shortcut failed.ChannelChannel AttributesChannel Name:Channel cannot be lowered more.Channel cannot be raised higher.Channel colorChannel is already on the bottom.Channel is already on top.Channel to Sele_ctionChannel to SelectionChannel to selectionChannel:ChannelsChannels MenuCheck _size:Choose Stroke StyleCircleCl_earClearClear ChannelClear Undo HistoryClear all textClear errorsClear undo history...Click "Continue" to accept the settings above.Click "Continue" to create your personal GIMP folder.Click "Continue" to enter the GIMP user installation.Click "Continue" to proceed with the user installation.Click to connect this anchor with the selected endpoint.Click to create a new anchor. (try SHIFT)Click to create a new component of the path.Click to create a new path.Click to create previewClick to delete this anchor.Click to insert an anchor on the path. (try SHIFT)Click to make this node angular.Click to open up the path.Click to pick path to edit.Click to update preview +%s Click to force update even if preview is up-to-dateClick-Drag to change the shape of the curve. (SHIFT: symmetrical)Click-Drag to move the anchor around.Click-Drag to move the anchors around.Click-Drag to move the component around. (try SHIFT)Click-Drag to move the handle around. (try SHIFT)Click-Drag to move the path around.Click: selectClick: select Drag: moveClip resultClipboardClipped to bottom layerClipped to imageCloneClose %sClose all TabsClose all tabs?Close this TabCo_py PathColo_rsColorColor BalanceColor Display FiltersColor PickerColor Picker InformationColor _Balance...Color _dithering:Color balance operates only on RGB color layers.Color eraseColor index:Color:Color_mapColor_space:Colori_ze...Coloring _Type for SegmentColoring _Type for SelectionColorizeColorize operates only on RGB color layers.Colorize the ImageColorize the imageColormapColormap EditorColormap MenuColumns:Comme_nt:CommentCon_trast:Con_volveConfigure Color Display FiltersConfigure E_xtended Input Devices...Configure G_rid...Configure GridConfigure Image GridConfigure Keyboard ShortcutsConfigure _Keyboard Shortcuts...Configure selected filterConfigure selected filter: %sConfirm Image SizeConfirm ScalingConfirm Text EditingConfirm closing of unsa_ved imagesConflicting ShortcutsConical (asym)Conical (sym)Connect StrokesConstantConstraintsContextContext-dependent cursors are cool. They are enabled by default. However, they require overhead that you may want to do without.ContinueContributions byConvertConvert EdgeConvert Image to GrayscaleConvert Image to IndexedConvert Image to Indexed ColorsConvert Image to RGBConvert imageConverting to indexed (stage 2)...Converting to indexed (stage 3)...Converting to indexed...ConvolveConvolve Type %sCopy NamedCopy _VisibleCopying file '%s' from '%s'...Copyright:Corrupt segment %d in gradient file '%s'.Could not create '%s': %sCould not create temporary file for '%s': %sCould not delete '%s': %sCould not find GIMP help browser.Could not open '%s' for reading: %sCould not open '%s' for writing: %sCould not open thumbnail '%s': %sCould not read %d bytes from '%s': %sCould not seek in XCF file: %sCould not start the GIMP help browser plug-in.Count:Cr_op LayerCreate New Doc_kCreate New TemplateCreate a New ImageCreate a New LayerCreate a New TemplateCreate a new display for this imageCreate a new image from the selected templateCreate a new templateCreate and edit images or photographsCreate and edit pathsCreate path from textCreate selection from pathCreating Preview ...Creating folder '%s'...CropCrop & ResizeCrop & Resize InformationCrop ImageCrop LayerCrop imageCrop or Resize an imageCrop: Crosshair onlyCu_tCu_t Named...Cubic (Best)Current _StatusCurrent height:Current layer onlyCurrent statusCurrent width:CursorCursor _mode:Cursor re_ndering:Curve TypeCurvesCurves for indexed layers cannot be adjusted.CustomCustom colorCustom gradientCustom p_adding color:CutCut NamedCyanCyan:D_uplicate BrushD_uplicate ChannelD_uplicate GradientD_uplicate LayerD_uplicate PaletteD_uplicate PathD_uplicate PatternD_uplicate Template...Dark check colorDarken onlyDash dot dot...Dash dot...Dash pattern:Dash preset:DashedDate:DebugDefault Appearance in Fullscreen ModeDefault Appearance in Normal ModeDefault GridDefault Image GridDefault _interpolation:Default _layer & channel preview size:Default _threshold:Delete AnchorDelete AnchorsDelete Layer Mas_kDelete Layer MaskDelete ObjectDelete SegmentDelete TemplateDelete brushDelete channelDelete colorDelete gradientDelete layerDelete layer maskDelete paletteDelete pathDelete patternDelete saved options...Delete the selected bufferDelete the selected templateDelete this imageDelete vectorsDeleting "%s" failed: %sDense dotsDesaturateDesaturate operates only on RGB color layers.DescriptionDesignDevice StatusDevicesDialogsDialogs MenuDiamondDifferenceDirect ColorDisable Layer MaskDisable Quick MaskDiscard Text InformationDisplayDisplay NavigationDisplay _Filters...Display proceduresDisplay type:Displaying [%0.6f, %0.6f]DissolveDistance:Distance: %0.6fDitheringDivideDo a _fresh user installationDo you really want to reset all filters to default values?Do you really want to reset all tool options to default values?Do you want to replace it with the image you are saving?Do_n't saveDockableDocument Histor_yDocument HistoryDocumentsDocuments MenuDod_geBurnDodgeDodge or Burn strokesDodge/BurnDouble dashedDrag AnchorDrag AnchorsDrag CurveDrag HandleDrag PathDrag: moveDraw in inkDrawableDrawable modDrawable proceduresDrop New LayerDrop New PathDue to lack of any fonts, text functionality is not available.Dump events from this controllerDuplicate brushDuplicate channelDuplicate gradientDuplicate layerDuplicate paletteDuplicate pathDuplicate patternDuplicate the selected templateEEK: can't undoE_xport Path...E_xtra SmallEdge BehaviourEdge-De_tectEditEdit Channel AttributesEdit Channel ColorEdit Color Palette EntryEdit Colormap EntryEdit Layer AttributesEdit Layer MaskEdit ModeEdit Palette ColorEdit Path AttributesEdit Quick Mask AttributesEdit Quick Mask ColorEdit TemplateEdit brushEdit channel attributesEdit colorEdit colormap entry #%dEdit gradientEdit layer attributesEdit paletteEdit path attributesEdit patternEdit proceduresEdit the selected templateEllipse SelectEmpty ChannelEmpty LayerEmpty PathEmpty Text LayerEmpty variable name in environment file %sEn_hanceEnable Quick MaskEnable dithering of _transparencyEnable this controllerEnable to display a handy GIMP tip on startup.Enable to display tooltips.EnormousEnter a name for the merged paletteEnter a name for the saved optionsEnter a name for this bufferEnter a name for this templateEnter a new name for the saved optionsEnter location (URI):EnvironmentEnvironment FoldersEqualizeEqualize does not operate on indexed layers.Erase to background or transparencyEraserError Co_nsoleError ConsoleError Console MenuError saving XCF file: %sError while parsing '%s' in line %d: %sError while reading '%s': %sError while reading brush file '%s': %sError while writing '%s': %sError writing XCF: %sError writing file '%s': %sError writing to '%s': %sError writing to temporary file for '%s': %s No file has been created.Error writing to temporary file for '%s': %s The original file has not been touched.ErrorsEventEx_tra LargeExpanded as necessaryExport Path to SVGExport all paths from this imageExport the active pathExposure:Extended Input DevicesExtensionsFG color fillFG to BG (HSV clockwise hue)FG to BG (HSV counter-clockwise)FG to BG (HSV)FG to BG (RGB)FG to TransparentFG to transparentFG/BGFG/BG ColorFS relaxFS rigorFS to layerF_it Canvas to LayersFade outFailed to import gradients from '%s': %sFailed to import paths from '%s': %sFancyFatal parse error in brush file '%s': File appears truncated.Fatal parse error in brush file '%s': File is corrupt.Fatal parse error in brush file '%s': Not a GIMP brush file.Fatal parse error in brush file '%s': Unknown GIMP brush shape.Fatal parse error in brush file '%s': Unknown GIMP brush version.Fatal parse error in brush file '%s': Unknown depth %d.Fatal parse error in brush file '%s': Unknown version %d.Fatal parse error in brush file '%s': Unsupported brush depth %d @@ -304,7 +323,7 @@ Make sure a proper setup for your display environment exists.GIMP help browserGIMP is not properly installed for the current user. User installation was skipped because the '--no-interface' flag was used. To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Generate optimum paletteGet Monitor ResolutionGiganticGimprc proceduresGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient:GradientsGradients MenuGrain extractGrain mergeGrayGrayscaleGreenGreen:GridGrid line spacingGrow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_counter-clockwise hue)HSV (clockwise _hue)HTML notation:H_eight:H_elp browser to use:Handle position: %0.6fHard edgeHard lightHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHelp proceduresHex:HighlightsHint for the _docks:Hint for the _toolbox:HintingHinting alters the font outline to produce a crisp bitmap at small sizesHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB color layers.Hue-_Saturation...Hue:HugeI_con & TextI_mageI_mport Path...I_nterpolation:I_nterval:IconIcon & descIcon & textIf available, hints from the font are used but you may prefer to always use the automatic hinterIf enabled, the move tool changes the active layer or path when a layer or path is being picked. This used to be the default behaviour in older versions.If you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.Illegal variable name in environment file %s: %sImageImage + GridImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage ThumbnailsImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage maskImage resolution is out of bounds, using the default resolution instead.Image sizeImage sourceImage typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport paletteImport pathsImported PathIn_kIn_vertIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorIndexed Color ConversionIndexed color layers are always scaled without interpolation. The chosen interpolation type will affect channels and masks only.Info WindowInitial zoom _ratio:Initialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' -InkInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratioKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard EventsKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine +InkInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard EventsKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine spacing:Line Width:Line _Style:Line style used for the grid.LinearLinked itemLoadLoad CurvesLoad LevelsLoad Right Color Fr_omLoad curves settings from fileLoad levels settings from fileLoad text from fileLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower Path to _BottomLower channelLower channel to bottomLower layerLower layer to bottomLower pathLower path to bottomM_agnifyM_asterM_ove to Screen...Ma_pMagentaMagenta:MagnifyMake _transparentManage Loadable ModulesMarching _ants speed:Mask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:Max Depth:Maximum _filesize for thumbnailing:Maximum _new image size:Maximum color differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMeasure the rulers and enter their lengths:Median:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMerge vectorsMessage proceduresMessage repeated %d times.Message repeated once.Messages are redirected to stderr.MidtonesMigrate User SettingsMinimal number of _undo levels:MiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMouse WheelMouse Wheel EventsMoveMove AnchorsMove ChannelMove Floating SelectionMove GuideMove Guide: Move LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove ToolMove itemMove layers & selectionsMove selectionMove the current layerMove the current pathMove the selected filter downMove the selected filter upMove to Screen...Move: MultiplyN_umber of colors:Na_vigationNa_vigation WindowNa_vigation preview size:NameName:NavigationNew ChannelNew Channel ColorNew Channel OptionsNew Color from _BGNew Color from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channelNew channel with last valuesNew channel...New color from BGNew color from FGNew gradientNew importNew layerNew layer with last valuesNew layer...New paletteNew path with last valuesNew path...New patternNew vectorsNo brushes available for use with this tool.No filter selectedNo linear gradients found in '%s'No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of _processors to use:Number of grid linesNumber of layers:O_ther...OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset by x/_2, y/2Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the palette selection dialogOpen the pattern selection dialogOpen the selected entryOpening '%s' failed: %sOpening '%s' failed: %sOptions: @@ -354,10 +373,10 @@ The GIMP %d.%d User InstallationWhen enabled the dialog automatically follows the image you are working on.When enabled, GIMP will show mnemonics in menus.When enabled, all paint tools will show a preview of the current brush's outline.When enabled, an image will become the active image when its image window receives the focus. This is useful for window managers using "click to focus".When enabled, dialogs will show a help button that gives access to the related help page. Without this button, the help page can still be reached by pressing F1.When enabled, menus can be torn off.When enabled, pressing F1 will open the help browser.When enabled, the GIMP will not save if the image is unchanged since opening it.When enabled, the GIMP will use a different info window per image view.When enabled, the X server is queried for the mouse's current position on each motion event, rather than relying on the position hint. This means painting with large brushes should be more accurate, but it may be slower. Perversely, on some X servers enabling this option results in faster painting.When enabled, the cursor will be shown over the image while using a paint tool.When enabled, the grid is visible by default. This can also be toggled with the "View->Show Grid" command.When enabled, the guides are visible by default. This can also be toggled with the "View->Show Guides" command.When enabled, the image window will automatically resize itself, when zooming into and out of images.When enabled, the image window will automatically resize itself, whenever the physical image size changes.When enabled, the layer boundary is visible by default. This can also be toggled with the "View->Show Layer Boundary" command.When enabled, the menubar is visible by default. This can also be toggled with the "View->Show Menubar" command.When enabled, the rulers are visible by default. This can also be toggled with the "View->Show Rulers" command.When enabled, the scrollbars are visible by default. This can also be toggled with the "View->Show Scrollbars" command.When enabled, the selected brush will be used for all tools.When enabled, the selected gradient will be used for all tools.When enabled, the selected pattern will be used for all tools.When enabled, the selection is visible by default. This can also be toggled with the "View->Show Selection" command.When enabled, the statusbar is visible by default. This can also be toggled with the "View->Show Statusbar" command.When enabled, this will ensure that each pixel of an image gets mapped to a pixel on the screen.When enabled, this will ensure that the full image is visible after a file is opened, otherwise it will be displayed with a scale of 1:1.When enabled, you can change keyboard shortcuts for menu items by hitting a key combination while the menu item is highlighted.WhiteWhite Balance operates only on RGB color layers.WidthWidth:Window ManagementWindow Manager HintsWindow PositionsWriting '%s' XXCF error: unsupported XCF file version %d encounteredXCF warning: version 0 of XCF file format did not save indexed colormaps correctly. -Substituting grayscale map.YYellowYellow:You are trying to create an image with a size of %s.You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your GIMP installation is incomplete:Your input device settings will be reset to default values the next time you start GIMP.Your keyboard shortcuts will be reset to default values the next time you start GIMP.Your window setup will be reset to default values the next time you start GIMP.Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_All_Anchor Layer_Antialiasing_Arbitrary Rotation..._Artistic_Aspect_Auto_B_BG Color_Background color:_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Bucket Fill_Buffer_By Color_By Color Select_C_Cap style:_Channels_Clear Errors_Clear Undo History_Clone_Close_Close Tab_Clouds_Color Tools_Colors_Configure Color and Opacity..._Context_Context Help_Copy_Copy Named..._Create Image from Template..._Crop & Resize_Crop Image_Curved_Curves..._Dark Check Color_Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Desaturate_Detach Tab_Device Status_Dialogs_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Ellipse Select_Enable layer & channel previews_Enormous_Equalize_Eraser_FG Color_File_Fill with:_Fit Image in Window_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground color:_Free Select_G_Generic_Gigantic_Gradient_Gradients_Grayscale_Grayscale copy of layer_Grow..._Guides_Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Info Window_Intersect with Selection_Invert_Join style:_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Left Neighbor's Right Endpoint_Levels..._Light Check Color_Light Effects_Lightness:_Line Style_Linear_Linked_Load Left Color From_Lower Channel_Lower Layer_Lower Path_M_Manually_Map_Mask_Mask to Selection_Maximum number of colors:_Measure_Medium_Merge Palettes..._Merge imported paths_Migrate GIMP 2.0 user settings_Misc. Stuff_Miter limit:_Mode_Module Manager_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._Padding Color_Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preferences_Preview_Preview Size_Previous tip_Print Size..._Properties_Quick Mask Active_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Reassign shortcut_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Remove unused colors from final palette_Render_Replace_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Order & Visibility_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Right Endpoint_Right Neighbor's Left Endpoint_Rotate_Saturation:_Save_Save Left Color To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Scale imported paths to fit image_Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Show Image Selection_Show in Toolbox_Sinusoidal_Small_Smudge_Snap distance:_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tool_Tools_Transfer layer's alpha channel_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Visible_Web_Web browser to use:_White (full opacity)_White Balance_Width:_Wrap around_X resolution:_X:_Xtns_Y_Y resolution:_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for icon typeinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetermillimetersminuten/apercentpicapicaspixelpixelspixels/%apixels/%spointpointssecondtips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: gimp 2.0 +Substituting grayscale map.YYellowYellow:You are trying to create an image with a size of %s.You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your GIMP installation is incomplete:Your input device settings will be reset to default values the next time you start GIMP.Your keyboard shortcuts will be reset to default values the next time you start GIMP.Your window setup will be reset to default values the next time you start GIMP.Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_All_Anchor Layer_Antialiasing_Arbitrary Rotation..._Artistic_Aspect_Auto_B_BG Color_Background color:_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Bucket Fill_Buffer_By Color_By Color Select_C_Cap style:_Channels_Clear Errors_Clear Undo History_Clone_Close_Close Tab_Clouds_Color Tools_Colors_Configure Color and Opacity..._Context_Context Help_Copy_Copy Named..._Create Image from Template..._Crop & Resize_Crop Image_Curved_Curves..._Dark Check Color_Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Desaturate_Detach Tab_Device Status_Dialogs_Discard Changes_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Ellipse Select_Enable layer & channel previews_Enormous_Equalize_Eraser_FG Color_File_Fill with:_Fit Image in Window_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground color:_Free Select_G_Generic_Gigantic_Gradient_Gradients_Grayscale_Grayscale copy of layer_Grow..._Guides_Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Info Window_Intersect with Selection_Invert_Join style:_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Left Neighbor's Right Endpoint_Levels..._Light Check Color_Light Effects_Lightness:_Line Style_Linear_Linked_Load Left Color From_Lower Channel_Lower Layer_Lower Path_M_Manually_Map_Mask_Mask to Selection_Maximum number of colors:_Measure_Medium_Merge Palettes..._Merge imported paths_Migrate GIMP 2.0 user settings_Misc. Stuff_Miter limit:_Mode_Module Manager_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._Padding Color_Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preferences_Preview_Preview Size_Previous tip_Print Size..._Properties_Quick Mask Active_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Reassign shortcut_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Remove unused colors from final palette_Render_Replace_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Order & Visibility_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Right Endpoint_Right Neighbor's Left Endpoint_Rotate_Saturation:_Save_Save Left Color To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Scale imported paths to fit image_Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Show Image Selection_Show in Toolbox_Sinusoidal_Small_Smudge_Snap distance:_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tool_Tools_Transfer layer's alpha channel_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Visible_Web_Web browser to use:_White (full opacity)_White Balance_Width:_Wrap around_X resolution:_X:_Xtns_Y_Y resolution:_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for icon typeinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetermillimetersminuten/apercentpicapicaspixelpixelspixels/%apixels/%spointpointssecondtips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: gimp 2.0 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-19 03:11+0100 -PO-Revision-Date: 2004-12-04 17:13+0100 +POT-Creation-Date: 2004-12-28 16:58+0100 +PO-Revision-Date: 2004-12-21 21:49+0100 Last-Translator: Sigurd Gartmann Language-Team: Norwegian MIME-Version: 1.0 @@ -396,8 +415,8 @@ (Buffer uten navn)(Mal uten navn)(Varierer)(tomt)(ugyldig UTF-8-streng)(endret)(ingen)1 lag1 lag15 grader %s16:1 (1600%)1:1 (100%)1:16 (6.25%)1:2 (50%)1:4 (25%)1:8 (12.5%)2:1 (200%)2D-transformasjon...4:1 (400%)8:1 (800%)<%s><>For optimal ytelse i GIMP, er det nødvendig med justering av noen innstillinger.GIMP - GNU Image Manipulation Program Copyright © 1995-2004 Spencer Kimball, Peter Mattis og GIMP-utviklingslaget.GIMP tips-filen kunne ikke tolkes!Din GIMP tips-fil ser ut til å mangle!En fil med navnet «%s» finnes allerede._Legg til i utvalg_VinkelOm GIMPHandlingAktiver det _fokuserte bildeetAktive filtreTilpassende supersamplingLegg tilLegg til alfakanalLegg til alfakanalLegg til ankerLegg til kanalLegg farge til fargekartLegg til innrettingslinje: Legg til innrettingslinjerLegg til horisontal innrettingslinjeLegg til lag_maske...Legg til lagLegg til lagmaskeLegg til baneLegg til strøkLegg til tekstlagLegg til vertikal innrettingslinjeLegg til maske for lagetLegg til farge fra bakgrunnenLegg til farge fra forgrunnenLegg til lagmaskeLegg tekst til bildetLegg gjeldende farge til i fargehistorikkenLegg til valgt filter i listen over aktive filtre.Legg til palett %sLegg til i dette utvalgetLegger til tema «%s» (%s) -TilleggEkstra inndatakontrollereJustér lysstyrke og kontrastJuster fargebalanseJuster fargekurverJuster fargenivåerJuster lysstyrke og kontrast...Juster fargebalanseJuster fargekurveneJuster fargenivåerJuster glød / lys / metningJuster Glød og metningJuster nivåer automatiskJusteringAvanserte alternativerPåvirkning:Påvirket område %sLuftpenselLuftpensel med variabelt trykkAl_fa til utvalgJustertJusteringAlle kanalerAlle filerAlle filer (*.*)Alle bilde- og angredata som ikke passer i flisbufferen vil bli skrevet til en mellomlagerfil. Denne fila bør plasseres på et lokalt filsystem med tilstrekkelig plass (flere hundre MB). På et UNIX-system vil du kanskje bruke systemets mappe for midlertidige filer. («/tmp» eller «/var/tmp»).Tillat fylling av helt gjennomsiktige områderTillat markering av helt gjennomsiktige områderTillat forstørring %sGjennomsiktighetGjennomsiktighet til utvalgGjennomsiktighet:Et bilde av den valgte størrelsen vil bruke mer minne et det som er innstilt som «maksimal bildestørrelse» i innstillingsvinduet (nåværende verdi er %s).An_imasjonForankre flytende utvalgForankre flytende lagForankre flytende utvalgVinkel:Anti-fjern %sAntialiaseringUtseendePåfør lagmaskeBruk lag_maskeBruk terskelBruk lagmaskeEr du sikker på at du vil slette «%s» fra listen og fra disken?Er du sikker på at du vil slette malen «%s» fra listen og fra disken?Som i _brukervalgSpør om bekreftelse før et ulagret bilde lukkes.Bredde- og høydeforhold:Bredde- og høydeforhold:Fest parasittFest parasitt på bildeFest parasitt til elementFest parasittForfatter:AutoFølg aktivt _bildeAutokrympKrymp utvalg automatiskAntomatisk endring av vindusstørrelseAutolastFunnet automatiskTilgjengelige filtreTilgjengelige typer:Bakgrunnsfargefyll_Lysstyrke-Kontrast...B_uffereBakgrunnBakgrunnsfargeBakgrunnsfarge satt til:Bakgrunn: %d, %d, %dBakover (korrektiv)Baser fylt område på alle synlige lagBaser utvalg på alle synlige lagBakNivåBi-lineærSvart hvittSvart:Bland endepunktenes farger_BlandFortynnBland endepunktenes _ugjennomsiktighetBland: Bland: Umulig for indekserte bilder.Blanding...BlåBlå:Gjør utydeligUtydeliggjør eller gjør skarpereKan_t...Sett ramme på kanalRam inn utvalgKantvalg vedLysstyrke-KontrastLysstyrke-kontrast virker ikke på indekserte lag.PenselPenseleditorPenselmapperPensel UIPensel:PenslerPenselmenyBøttefyllingBuffereBuffermenyBrennButtEtter typeVed å forkaste bildet til forrige lagring, mister du alle endringer, inkludert all angreinformasjon.CMYK_Kalibrér...FargevelgerK_olonner:K_ombinérKalibrer oppløsning for skjermKan ikke angre %sStørrelse på _lerretAvbrytAvbryt innrettingslinjeKan ikke legge til lagmaske med forskjellig dimensjon fra det spesifiserte laget.Kan ikke legge til lagmaske til et lag uten alfakanal.Kan ikke legge til lagmaske til lag som ikke er en del av et bilde.Kan ikke forankre dette laget fordi det ikke er et flytende utvalg.Kan ikke konvertere en palett med mer enn 256 farger.Kan ikke opprette nytt lag fra det flytende utvalget fordi det tilhører en lagmaske eller kanal.Kan ikke opprette mappe «%s»: %sKan ikke opprette forhåndsvisningKunne ikke beskjære fordi dette utvalget er tomt.Kan ikke utvide $(%s)Kan ikke gjøre utvalg flytende fordi den valgte region er tom.Kan ikke løfte et lag uten gjennomsiktighet.Kan ikke lagre. Ingenting er valgt.Kan ikke tegne på tom kanal.Kan ikke tegne på tom bane.Størrelse på lerretLerret_fyllmodus:Senter X:SentrertEndre bakgrunnsfargeEndre fargekartinnslagEndre forgrunnsfargeEndre bildets oppløsningEndre bildets enhetEndre utskriftsstørrelseEndre gjeldende lag eller baneEndre rutenettets bakgrunnsfargeEndre rutenettets forgrunnsfargeEndre indeksert palettEndre perspektiv for lag eller utvalgEndring av snarvei feilet.KanalAttributter for kanalKanalnavn:Kanalen kan ikke senkes lavere.Kanalen kan ikke løftes høyere.KanalfargeKanalen er allerede nederst.Kanalen er allerede øverst._Kanal til utvalgKanal til utvalgKanal til utvalgKanal:KanalerKanalmenyRute_størrelse:Velg strøkstilSirkel_TømTømTøm kanalTøm AngrehistorikkTøm all tekstTøm feilTøm angre-historikkKlikk «fortsett» for å akseptere innstillingene over.Klikk «fortsett» for å opprette din personlige GIMP-mappe.Klikk «fortsett» for å gå videre i GIMP bruker-installasjon.Klikk «fortsett» for å gå videre i GIMP-brukerinstallasjon.Klikk for å tilkoble dette ankeret med det valgte endepunktet.Klikk for å opprette et nytt anker (prøv SKIFT).Klikk for å opprette en ny komponent i banen.Klikk for å opprette en ny bane.Klikk for å opprette forhåndsvisningKlikk for å slette dette ankeret.Klikk for å sette inn et anker på banen (prøv SKIFT).Klikk for å gjøre denne noden vinklet.Klikk for å åpne banen.Opprett en ny bane for redigering.Klikk for å oppdatere forhåndsvisning -%s Klikk for å oppdatere selv om forhåndsvisningen allerede er oppdatertKlikk og dra for å endre formen på kurven (SKIFT: symmetrisk).Klikk og dra for å flytte ankeret rundt.Klikk og dra for å flytte ankerne rundt.Klikk og dra for å flytte komponenten rundt (prøv SKIFT).Klikk og dra for å flytte håndtaket rundt (prøv SKIFT).Klikk og dra for å flytte banen rundt.Klikk: utvalgKlikk: velg Dra: flyttKlipp ut resultatUtklippstavleKlippes til bunnlagKlippes til bildetKloneLukk %sLukk denne fanenKopiér bane_FargerFargeFargebalanseFilter for fargevisningPipetteInformasjon om fargevelgerFarge_balanse...Farge _dithering:Fargebalanse virker kun på RGB-fargelag.Slett med fargeFargeindeks:Farge:_FargekartFarge_rom:_Farg...Farge_type for segmentFarge_type for utvalgetFargFarging virker kun på RGB-fargelag.Farg bildetFarg bildetFargekartFargekartbehandlerFargekartmenyKolonner:Kommentar:KommentarKon_trast:Kon_voluérKonfigurer filtre for fargevisningStill inn _utvidede inndataenheter...Still inn _rutenett...Konfigurer rutenettKonfigurer størrelse på rutenettStill inn tastatursnarveierStill inn _tastatusnarveier...Still inn valgt filterStill inn valgt filter: %sBekreft størrelse på bildetBekreft SkaléringBekreft tekstredigeringBekreft lukking av _ulagrede bilderSnarveier i konfliktKonisk (asymmetrisk)Konisk (symmetrisk)Koble sammen strøkKonstantBegrensningerKontekstKontekstavhengige markører er fine. De er påslått som standard. De krever litt ekstra, og du kan fint klare deg uten.FortsettBidrag avKonverterKonverter kantKonverter bilde til gråtonerKonverter bilde til indeksertKonverter bilde til indekserte fargerKonverter bilde til RGBKonvertér bildeKonvertérer til indeksert (trinn 2)...Konvertérer til indeksert (trinn 3)...Konvertérer til indeksert...ConvolveConvolve type %sKopier navngittKopierer fil «%s» fra «%s»...Opphavsrett:Korrupt segment %d i graderingsfil «%s».Kunne ikke opprette «%s»: %sKunne ikke opprette midlertidig fil for «%s»: %sKunne ikke slette «%s»: %sKunne ikke finne GIMPs hjelpleserKan ikke åpne «%s» for lesing: %sKan ikke åpne «%s» for skriving: %sKunne ikke åpne miniatyrfil «%s»: %sKunne ikke lese %d bytes fra «%s»: %sKunne ikke søke i XCF-fil: %sKunne ikke starte GIMPs hjelplesertillegg.Antall:_Beskjær lagOpprett ny dok_kOpprett ny malOpprett et nytt bildeOpprett et nytt lagOpprett ny malOpprett en ny visning for dette bildetOpprett et nytt bilde fra den valgte malenOpprett en ny malOpprett og rediger bilder eller fotografierOpprett og rediger banerOpprett bane fra tekstOpprett utvalg fra baneOppretter forhåndsvisning...Oppretter mappe «%s»...BeskjærBeskjær og endre størrelseInformasjon om beskjæring og endring av størrelseBeskjær bildeBeskjær lagBeskjær bildeBeskjær eller endre størrelse på et bildeBeskjær: Kun «trådkors»Klipp _utKlipp _ut navngittKubisk (Beste)Status _nåNåværende høyde:Kun dette lagetStatus nåNåværende bredde:MarkørMarkør_modus:Markør_visning:KurvetypeKurverKurver for indekserte lag kan ikke justeres.EgendefinertEgendefinert fargeEgendefinert graderingEgendefinert f_yllfarge for lerretKlipp utKlipp ut navngittCyanCyan:_Kopiér pensel_Kopiér kanalD_upliker gradering_Kopiér lag_Kopiér palett_Kopiér bane_Kopiér mønster_Kopiér mal...Farge for mørke ruterGjør kun mørkereStrek prikk prikk...Strek prikk...Strekmønster:Forvalgte streker:StipletDato:AvlusningStandard utseende i fullskjermmodusStandard utseende i normal modusStandard rutenettStandard _rutenett for bildeForvalgt _interpolasjon:Standard størrelse for forhåndsvisning av _lag og kanaler:Forvalgt _terskel:Slett ankerSlett anker_Slett lagmaskeSlett lagmaskeSlett objektSlett segmentSlett malSlett penselSlett kanalSlett fargeSlett graderingSlett lagSlett lagmaskeSlett palettSlett baneSlett mønsterSlett lagrede alternativer...Slett det valgte bufferetSlett valgt malSlett dette bildetSlett vektorerSletting av «%s» feilet: %sTette prikkerMindre metningMindre metning virker bare på RGB-fargelag.BeskrivelseDesignEnhetsstatusEnheterMenyerDialogmenyFirkantDifferanseDirekte fargerSlå av lagmaskeSlå av hurtigmaskeForkast tekstinformasjonSkjermVis navigeringVis _filter...Prosedyrer for skjermSkjermtype:Viser [%0.6f, %0.6f]OppløsAvstand:Avstand: %0.6fDitheringDel oppGjør en _fersk brukerinstallasjonErdu sikker på at du vil nullstille alle filter til standardverdier?Vil du virkelig nullstille alle verktøysalternativer til standardverdiene?Vil du erstatte den med bildet du lagrer?_Ikke lagreKan dokkesDokumenthist_orikkDokumenthistorikkDokumenterDokumentmeny_BlekBrennBlekBlek eller brenn strøkBlek/BrennDobbelstipletDra ankerDra ankereDra kurveDra håndtakDra baneDra: flyttTegn med blekkTegneobjektTegningsendringProsedyrer for tegnede objekterSlipp nytt lagSlipp ny baneSiden skrifttyper mangler, er ikke tekstfunksjonalitet tilgjengelig.Kast handlinger fra denne kontrollerenKopiér penselKopiér kanalD_upliker graderingKopiér lagKopiér palettKopiér baneKopiér mønsterKopiér den valgte malenUffda: kan ikke angre_Eksporter bane...Veldig l_itenKantoppførselKant_deteksjonRedigerRediger attributter for kanalRediger farge for kanalRediger fargepalettoppføringRediger fargekartoppføringRediger lagets attributterRedigér til lagmaskeRedigeringsmodusRediger palettfargeRediger baneegenskaperRedigér attributter for hurtigmaskeRedige hurtigmaskefargeRediger malRediger penselRediger kanalattributterRediger fargeRediger fargekartoppføring #%dRediger graderingRediger lagattributterRediger palettRediger baneegenskaperRedigér mønsterRedigeringsprosedyrerRediger valgt malEllipseutvalgTøm kanalTomt lagTøm baneTomt tekstlagTomt variabelnavn i omgivelsesfil %sFor_bedreSlå på hurtigmaskeSlå på dithering av _gjennomsiktighetSlå på denne kontrollerenAktiver denne for å vise nyttige GIMP-tips ved oppstart av programmet.Aktiver denne for å vise små verktøyforklaringer.EnormSkriv inn navn for flettet palettSkriv inn et navn for det lagrede alternativetSkriv inn et navn for denne bufferenSkriv inn et navn for denne malenSkriv inn et nytt navn for det lagrede alternativetSkriv inn lokasjon (URI):OmgivelserMapper for omgivelserJevn utUtjevning virker ikke på indekserte lag.Slett til bakgrunn eller gjennomsiktighetViskelærFeil_konsollFeilkonsollFeilkonsollmenyFeil under lagring av XCF-fil: %sFeil ved lesing av «%s» på linje %d: +TilleggEkstra inndatakontrollereJustér lysstyrke og kontrastJuster fargebalanseJuster fargekurverJuster fargenivåerJuster lysstyrke og kontrast...Juster fargebalanseJuster fargekurveneJuster fargenivåerJuster glød / lys / metningJuster Glød og metningJuster nivåer automatiskJusteringAvanserte alternativerPåvirkning:Påvirket område %sLuftpenselLuftpensel med variabelt trykkAl_fa til utvalgJustertJusteringAlle kanalerAlle filerAlle filer (*.*)Alle bilde- og angredata som ikke passer i flisbufferen vil bli skrevet til en mellomlagerfil. Denne fila bør plasseres på et lokalt filsystem med tilstrekkelig plass (flere hundre MB). På et UNIX-system vil du kanskje bruke systemets mappe for midlertidige filer. («/tmp» eller «/var/tmp»).Tillat fylling av helt gjennomsiktige områderTillat markering av helt gjennomsiktige områderTillat forstørring %sGjennomsiktighetGjennomsiktighet til utvalgGjennomsiktighet:Et bilde av den valgte størrelsen vil bruke mer minne et det som er innstilt som «maksimal bildestørrelse» i innstillingsvinduet (nåværende verdi er %s).An_imasjonForankre flytende utvalgForankre flytende lagForankre flytende utvalgVinkel:Anti-fjern %sAntialiaseringUtseendePåfør lagmaskeBruk lag_maskeBruk terskelBruk lagmaskeEr du sikker på at du vil slette «%s» fra listen og fra disken?Er du sikker på at du vil slette malen «%s» fra listen og fra disken?Som i _brukervalgSpør om bekreftelse før et ulagret bilde lukkes.Bredde- og høydeforhold:Bredde- og høydeforhold:Fest parasittFest parasitt på bildeFest parasitt til elementFest parasittForfatter:AutoFølg aktivt _bildeAutokrympKrymp utvalg automatiskAntomatisk endring av vindusstørrelseAutolastFunnet automatiskTilgjengelige filtreTilgjengelige typer:Bakgrunnsfargefyll_Lysstyrke-Kontrast...B_uffereBakgrunnBakgrunnsfargeBakgrunnsfarge satt til:Bakgrunn: %d, %d, %dBakover (korrektiv)Baser fylt område på alle synlige lagBaser utvalg på alle synlige lagBakNivåBi-lineærSvart hvittSvart:Bland endepunktenes farger_BlandFortynnBland endepunktenes _ugjennomsiktighetBland: Bland: Umulig for indekserte bilder.Blanding...BlåBlå:Gjør utydeligUtydeliggjør eller gjør skarpereKan_t...Sett ramme på kanalRam inn utvalgKantvalg vedLysstyrke-KontrastLysstyrke-kontrast virker ikke på indekserte lag.PenselPenseleditorPenselmapperPensel UIPensel:PenslerPenselmenyBøttefyllingBuffereBuffermenyBrennButtEtter typeVed å forkaste bildet til forrige lagring, mister du alle endringer, inkludert all angreinformasjon.CMYK_Kalibrér...FargevelgerK_olonner:K_ombinérKalibrer oppløsning for skjermKan ikke angre %sStørrelse på _lerretAvbrytAvbryt innrettingslinjeKan ikke legge til lagmaske med forskjellig dimensjon fra det spesifiserte laget.Kan ikke legge til lagmaske til et lag uten alfakanal.Kan ikke legge til lagmaske til lag som ikke er en del av et bilde.Kan ikke forankre dette laget fordi det ikke er et flytende utvalg.Kan ikke konvertere en palett med mer enn 256 farger.Kan ikke opprette nytt lag fra det flytende utvalget fordi det tilhører en lagmaske eller kanal.Kan ikke opprette mappe «%s»: %sKan ikke opprette forhåndsvisningKunne ikke beskjære fordi dette utvalget er tomt.Kan ikke utvide $(%s)Kan ikke gjøre utvalg flytende fordi den valgte region er tom.Kan ikke løfte et lag uten gjennomsiktighet.Kan ikke lagre. Ingenting er valgt.Kan ikke tegne på tom kanal.Kan ikke tegne på tom bane.Størrelse på lerretLerret_fyllmodus:Senter X:Senter Y:SentrertEndre bakgrunnsfargeEndre fargekartinnslagEndre forgrunnsfargeEndre bildets oppløsningEndre bildets enhetEndre utskriftsstørrelseEndre gjeldende lag eller baneEndre rutenettets bakgrunnsfargeEndre rutenettets forgrunnsfargeEndre indeksert palettEndre perspektiv for lag eller utvalgEndring av snarvei feilet.KanalAttributter for kanalKanalnavn:Kanalen kan ikke senkes lavere.Kanalen kan ikke løftes høyere.KanalfargeKanalen er allerede nederst.Kanalen er allerede øverst._Kanal til utvalgKanal til utvalgKanal til utvalgKanal:KanalerKanalmenyRute_størrelse:Velg strøkstilSirkel_TømTømTøm kanalTøm AngrehistorikkTøm all tekstTøm feilTøm angre-historikkKlikk «fortsett» for å akseptere innstillingene over.Klikk «fortsett» for å opprette din personlige GIMP-mappe.Klikk «fortsett» for å gå videre i GIMP bruker-installasjon.Klikk «fortsett» for å gå videre i GIMP-brukerinstallasjon.Klikk for å tilkoble dette ankeret med det valgte endepunktet.Klikk for å opprette et nytt anker (prøv SKIFT).Klikk for å opprette en ny komponent i banen.Klikk for å opprette en ny bane.Klikk for å opprette forhåndsvisningKlikk for å slette dette ankeret.Klikk for å sette inn et anker på banen (prøv SKIFT).Klikk for å gjøre denne noden vinklet.Klikk for å åpne banen.Opprett en ny bane for redigering.Klikk for å oppdatere forhåndsvisning +%s Klikk for å oppdatere selv om forhåndsvisningen allerede er oppdatertKlikk og dra for å endre formen på kurven (SKIFT: symmetrisk).Klikk og dra for å flytte ankeret rundt.Klikk og dra for å flytte ankerne rundt.Klikk og dra for å flytte komponenten rundt (prøv SKIFT).Klikk og dra for å flytte håndtaket rundt (prøv SKIFT).Klikk og dra for å flytte banen rundt.Klikk: utvalgKlikk: velg Dra: flyttKlipp ut resultatUtklippstavleKlippes til bunnlagKlippes til bildetKloneLukk %sLukk alle fanerLukk alle faner?Lukk denne fanenKopiér bane_FargerFargeFargebalanseFilter for fargevisningPipetteInformasjon om fargevelgerFarge_balanse...Farge _dithering:Fargebalanse virker kun på RGB-fargelag.Slett med fargeFargeindeks:Farge:_FargekartFarge_rom:_Farg...Farge_type for segmentFarge_type for utvalgetFargFarging virker kun på RGB-fargelag.Farg bildetFarg bildetFargekartFargekartbehandlerFargekartmenyKolonner:Kommentar:KommentarKon_trast:Kon_voluérKonfigurer filtre for fargevisningStill inn _utvidede inndataenheter...Still inn _rutenett...Konfigurer rutenettKonfigurer størrelse på rutenettStill inn tastatursnarveierStill inn _tastatusnarveier...Still inn valgt filterStill inn valgt filter: %sBekreft størrelse på bildetBekreft SkaléringBekreft tekstredigeringBekreft lukking av _ulagrede bilderSnarveier i konfliktKonisk (asymmetrisk)Konisk (symmetrisk)Koble sammen strøkKonstantBegrensningerKontekstKontekstavhengige markører er fine. De er påslått som standard. De krever litt ekstra, og du kan fint klare deg uten.FortsettBidrag avKonverterKonverter kantKonverter bilde til gråtonerKonverter bilde til indeksertKonverter bilde til indekserte fargerKonverter bilde til RGBKonvertér bildeKonvertérer til indeksert (trinn 2)...Konvertérer til indeksert (trinn 3)...Konvertérer til indeksert...ConvolveConvolve type %sKopier navngittKopier _synligKopierer fil «%s» fra «%s»...Opphavsrett:Korrupt segment %d i graderingsfil «%s».Kunne ikke opprette «%s»: %sKunne ikke opprette midlertidig fil for «%s»: %sKunne ikke slette «%s»: %sKunne ikke finne GIMPs hjelpleserKan ikke åpne «%s» for lesing: %sKan ikke åpne «%s» for skriving: %sKunne ikke åpne miniatyrfil «%s»: %sKunne ikke lese %d bytes fra «%s»: %sKunne ikke søke i XCF-fil: %sKunne ikke starte GIMPs hjelplesertillegg.Antall:_Beskjær lagOpprett ny dok_kOpprett ny malOpprett et nytt bildeOpprett et nytt lagOpprett ny malOpprett en ny visning for dette bildetOpprett et nytt bilde fra den valgte malenOpprett en ny malOpprett og rediger bilder eller fotografierOpprett og rediger banerOpprett bane fra tekstOpprett utvalg fra baneOppretter forhåndsvisning...Oppretter mappe «%s»...BeskjærBeskjær og endre størrelseInformasjon om beskjæring og endring av størrelseBeskjær bildeBeskjær lagBeskjær bildeBeskjær eller endre størrelse på et bildeBeskjær: Kun «trådkors»Klipp _utKlipp _ut navngittKubisk (Beste)Status _nåNåværende høyde:Kun dette lagetStatus nåNåværende bredde:MarkørMarkør_modus:Markør_visning:KurvetypeKurverKurver for indekserte lag kan ikke justeres.EgendefinertEgendefinert fargeEgendefinert graderingEgendefinert f_yllfarge for lerretKlipp utKlipp ut navngittCyanCyan:_Kopiér pensel_Kopiér kanalD_upliker gradering_Kopiér lag_Kopiér palett_Kopiér bane_Kopiér mønster_Kopiér mal...Farge for mørke ruterGjør kun mørkereStrek prikk prikk...Strek prikk...Strekmønster:Forvalgte streker:StipletDato:AvlusningStandard utseende i fullskjermmodusStandard utseende i normal modusStandard rutenettStandard _rutenett for bildeForvalgt _interpolasjon:Standard størrelse for forhåndsvisning av _lag og kanaler:Forvalgt _terskel:Slett ankerSlett anker_Slett lagmaskeSlett lagmaskeSlett objektSlett segmentSlett malSlett penselSlett kanalSlett fargeSlett graderingSlett lagSlett lagmaskeSlett palettSlett baneSlett mønsterSlett lagrede alternativer...Slett det valgte bufferetSlett valgt malSlett dette bildetSlett vektorerSletting av «%s» feilet: %sTette prikkerMindre metningMindre metning virker bare på RGB-fargelag.BeskrivelseDesignEnhetsstatusEnheterMenyerDialogmenyFirkantDifferanseDirekte fargerSlå av lagmaskeSlå av hurtigmaskeForkast tekstinformasjonSkjermVis navigeringVis _filter...Prosedyrer for skjermSkjermtype:Viser [%0.6f, %0.6f]OppløsAvstand:Avstand: %0.6fDitheringDel oppGjør en _fersk brukerinstallasjonErdu sikker på at du vil nullstille alle filter til standardverdier?Vil du virkelig nullstille alle verktøysalternativer til standardverdiene?Vil du erstatte den med bildet du lagrer?_Ikke lagreKan dokkesDokumenthist_orikkDokumenthistorikkDokumenterDokumentmeny_BlekBrennBlekBlek eller brenn strøkBlek/BrennDobbelstipletDra ankerDra ankereDra kurveDra håndtakDra baneDra: flyttTegn med blekkTegneobjektTegningsendringProsedyrer for tegnede objekterSlipp nytt lagSlipp ny baneSiden skrifttyper mangler, er ikke tekstfunksjonalitet tilgjengelig.Kast handlinger fra denne kontrollerenKopiér penselKopiér kanalD_upliker graderingKopiér lagKopiér palettKopiér baneKopiér mønsterKopiér den valgte malenUffda: kan ikke angre_Eksporter bane...Veldig l_itenKantoppførselKant_deteksjonRedigerRediger attributter for kanalRediger farge for kanalRediger fargepalettoppføringRediger fargekartoppføringRediger lagets attributterRedigér til lagmaskeRedigeringsmodusRediger palettfargeRediger baneegenskaperRedigér attributter for hurtigmaskeRedige hurtigmaskefargeRediger malRediger penselRediger kanalattributterRediger fargeRediger fargekartoppføring #%dRediger graderingRediger lagattributterRediger palettRediger baneegenskaperRedigér mønsterRedigeringsprosedyrerRediger valgt malEllipseutvalgTøm kanalTomt lagTøm baneTomt tekstlagTomt variabelnavn i omgivelsesfil %sFor_bedreSlå på hurtigmaskeSlå på dithering av _gjennomsiktighetSlå på denne kontrollerenAktiver denne for å vise nyttige GIMP-tips ved oppstart av programmet.Aktiver denne for å vise små verktøyforklaringer.EnormSkriv inn navn for flettet palettSkriv inn et navn for det lagrede alternativetSkriv inn et navn for denne bufferenSkriv inn et navn for denne malenSkriv inn et nytt navn for det lagrede alternativetSkriv inn lokasjon (URI):OmgivelserMapper for omgivelserJevn utUtjevning virker ikke på indekserte lag.Slett til bakgrunn eller gjennomsiktighetViskelærFeil_konsollFeilkonsollFeilkonsollmenyFeil under lagring av XCF-fil: %sFeil ved lesing av «%s» på linje %d: %sFeil under lesing av «%s»: %sFeil under lesing av penselfil «%s»: %sFeil under skriving av «%s»: %sFeil under skriving av XCF: %sFeil ved skriving til fil «%s»: %sFeil under skriving av «%s»: %sFeil under skriving til midlertidig fil for «%s»: %s Ingen fil ble opprettet.Feil under skriving til midlertidig fil for «%s»: %s @@ -409,7 +428,7 @@ Kontroller at dine skjermomgivelser er korrekt satt opp.GIMP hjelpleserGIMP er ikke korrekt installert for denne brukerprofilen. Profilinstallasjonen ble omgått ved bruk av «--no-interface»-flagget. For å gjennomføre profilinstallasjonen, kjør GIMP uten «--no-interface»-flagget.GIMP bruker en begrenset mengde med minne for å lagre bildedata, såkalt «flisbuffer». Du bør justere størrelsen på denne så den passer i minnet. Ta i betraktning mengden minne som brukes av andre prosesser.GIMP bruker en gtkrc-fil slik at du kan konfigurere den til å se annerledes ut enn andre GTK applikasjoner.GIMP versjonGIMP vil advare brukeren om at det er gjort forsøk på å opprette et bilde som vil bruke mer minne enn det som er spesifisert her.GammaGenereltGenerelt bare en sak for 8-bit-skjermer. Dette setter minimalt antall systemfarger som GIMP skal bruke.Generér optimal palettHent oppløsning for monitorGigantiskProsedyrer for gimprc_GlasseffekterGraderingGraderingsbehandlerMeny for graderingsbehandlerGraderingsmapperFarge på venstre endepunkt av graderingsssegmentFarge på høyre endepunkt av graderingssegmentBrukergrensesnitt for graderingerGradering:GraderingerGraderingsmenyTrekk fra pikselverdierFlett pikselverdierGråGråtoneGrønnGrønn:RutenettRom mellom rutenettlinjerØk kanalØk utvalgØk utvalget medInnrettingslinjeInnrettingslinje- og rutenettilpasningProsedyrer for innrettingslinjerHSVHSV (%0.3f, %0.3f, %0.3f)HSV (glød _mot klokken)HSV (_glød med klokken)HTML-notasjon:_Høyde:Hjelp_leser som skal brukes:Posisjon for håndtak: %0.6fHard kantHardt lysHardhetHardhet:HøydeHøyde:HjelpHjelp leserHjelpesystemHjelp_leser starter ikkeHjelp_leser ikke funnetHjelpeprosedyrerHex:Lyse tonerHint til _dokkene:Hint til _verktøykassen:HintingHinting endrer skrifttypenes omriss for å lage tydeligere tekst ved små størrelserHistogra_mHistogramHistogramskalaHistorikkHorisontalHorisontal forskyvning av den første linja i rutenettet. Dette kan være et negativt tall.Horisontal linjeavstand for rutenettet.Hvor mange filnavn til nylig åpnede filer skal vises i filmenyen.GlødGlød/MetningGlød-metning virker bare på RGB-fargelag.Glød og metning...Glød:Ekstra storI_kon og tekst_Bilde_Importer bane...I_nterpolasjon:I_ntervall:IkonIkon og beskrIkon og tekstHvis tilgjengelig er hint fra skrifttypen brukt, men du kan foretrekke å alltid bruke automatisk hinter.Gjør at flytteverktøyet endrer det aktivet laget eller den aktive banen når et lag eller bane blir valgt. Dette pleide å være forvalgt oppførsel i tidligere versjoner.Hvis du ikke lagrer bildet, vil endringer fra de siste %s bli tapt.Hvis du avslutter nå, vil disse endringene gå tapt.Ugyldig variabelnavn i omgivelsesfil %s: %sBildeBilde + rutenettBildebehandlerInformasjon om bildeBildemenyBildestørrelseStatuslinjeformat for bildeBildemalerBildeminiatyrerFormat for for bildetittel og statuslinjeTittelformat for bildeBildevinduoppførselBildevinduerBildet inneholder ingen synlige lagBildefilBildemaskeBildeoppløsningen er utenfor grensene, bruker standard oppløsning i stedet.BildestørrelseBildekildeBildetypeBilderBildemenyAlternativer for importImporter palettImporter banerImporter baner fra SVGImporter en ny palettImporter palettImporter banerImportert baneBle_kk_InverterIn_verter maskeInkrementellInnrykk:Innrykk på første linjeIndeks:IndeksertIndeksert fargeIndeksert fargeomdannelseIndekserte fargelag er alltid skalert uten interpolering. Den valgte interpolasjonstypen vil bare ha betydning for kanaler og masker.InformasjonsvinduInitielt zoom_forhold:Initialiser lagets maske til:Initierer programtilleggInitierer programtillegg: «%s» -BlekkInndatakontrollereInndataenheterNivå inn:Sett inn ankerInstaller et privat fargekart; kan være nyttig på åttebitersskjermer.Installasjonen feilet. Kontakt systemadministrator.Installasjonen er vellykket. Klikk «Fortsett».Øyeblikkelig oppdateringIntelligent _saksIntensitet: %0.3f Ugjennomsiktighet: %0.3fGrensesnittIntern GIMP prosedyreInterne prosedyrerInterpolasjon:KryssKryss med dette utvalgetKryss (trådkors)Kryss (prikker)Ugyldig UTF-8-strengUgyldig UTF-8 data i fil «%s».Ugyldig UTF-8-streng i XCF-fil.Ugyldig UTF-8-streng i penselfil «%s».Ugyldig UTF-8-streng i graderingsfil «%s».Ugyldig UTF-8-streng i palettfil «%s»Ugyldig UTF-8-streng i mønsterfil «%s».Ugyldig tegnsekvens i URIUgyldig snarvei.Ugyldig bredde eller høyde. Begge må være positive.InverterInvertér kanalSnu om utvalgInverter virker ikke på indekserte lag.Invertér utvalgEr dette hva du ønsker å gjøre?Det ser ut til at du har brukt GIMP 2.0 før. Egenskaper for elementElementsynlighetJuster:Behold gjennomsiktighetBehold overBehold bredde- og høydeforhold %sBehold bredde- og høydeforholdBehold bredde- og høydeforhold %sBehold høyde %sBehold gjennomsiktighetBehold bredde %sTast nedTast ned (alt)Tast ned (kontroll + alt)Tast ned (kontroll)Tast ned (skift + alt)Tast ned (skift + kontroll + alt)Tast ned (skift + kontroll)Tast ned (skift)Tast venstreTast venstre (alt)Tast venstre (kontroll + alt)Tast venstre (kontroll)Tast venstre (skift + alt)Tast venstre (skift + kontroll + alt)Tast venstre (skift + kontroll)Tast venstre (skift)Tast høyreTast høyre (alt)Tast høyre (kontroll + alt)Tast høyre (kontroll)Tast høyre (skift + alt)Tast høyre (skift + kontroll + alt)Tast høyre (skift + kontroll)Tast høyre (skift)Tast oppTast opp (alt)Tast opp (kontroll + alt)Tast opp (kontroll)Tast opp (skift + alt)Tast opp (skift + Kontroll + Alt)Tast opp (skift + kontroll)Tast opp (skift)Tastatursnarveier kan omdefineres dynamisk i GIMP. menurc er et dump av din konfigurasjon som gjør den blir husket til neste økt. Du kan redigere denne filen hvis du vil, men det er mye lettere å definere tastene fra GIMP. Sletting av denne filen vil gjenopprette standard tastatursnarveier.TastaturTastaturhendelserTastatursnarveierVTHVe_nstre endepunkts farge...LandskapStorStor (256x256)Større forhåndsvisningerSiste feil:LagLag «%s» har ingen gjennomsiktighet. Lag ble plassert ovenfor.LagattributterLag_grensestørrelse...Fylltype for lagLagmaske til utvalgVelg lagLagstørrelseLag_modus_Navn på lag:Laget kan ikke senkes lavere.Laget kan ikke løftes høyere.Laget er allerede nederst.Laget er allerede øverst.Lag til bildestørrelseLag til _bunnenLag til _bildestørrelseLag til _toppenLagets _alfakanalLagLagmenyAlternativer for fletting av lag_Venstre endepunkts farge...VenstrejustertLengde:La GIMP forsøke å gjenopprette din forrige lagrede økt ved hver oppstart.NivåerNivåer for indekserte tengnede objekter kan ikke justeres.Farge for lyse ruterGjør kun lysereLinjeLinje- +BlekkInndatakontrollereInndataenheterNivå inn:Sett inn ankerInstaller et privat fargekart; kan være nyttig på åttebitersskjermer.Installasjonen feilet. Kontakt systemadministrator.Installasjonen er vellykket. Klikk «Fortsett».Øyeblikkelig oppdateringIntelligent _saksIntensitet: %0.3f Ugjennomsiktighet: %0.3fGrensesnittIntern GIMP prosedyreInterne prosedyrerInterpolasjon:KryssKryss med dette utvalgetKryss (trådkors)Kryss (prikker)Ugyldig UTF-8-strengUgyldig UTF-8 data i fil «%s».Ugyldig UTF-8-streng i XCF-fil.Ugyldig UTF-8-streng i penselfil «%s».Ugyldig UTF-8-streng i graderingsfil «%s».Ugyldig UTF-8-streng i palettfil «%s»Ugyldig UTF-8-streng i mønsterfil «%s».Ugyldig tegnsekvens i URIUgyldig snarvei.Ugyldig bredde eller høyde. Begge må være positive.InverterInvertér kanalSnu om utvalgInverter virker ikke på indekserte lag.Invertér utvalgEr dette hva du ønsker å gjøre?Det ser ut til at du har brukt GIMP 2.0 før. Egenskaper for elementElementsynlighetJuster:Behold gjennomsiktighetBehold overBehold bredde- og høydeforhold %sBehold bredde- og høydeforhold %sBehold høyde %sBehold gjennomsiktighetBehold bredde %sTast nedTast ned (alt)Tast ned (kontroll + alt)Tast ned (kontroll)Tast ned (skift + alt)Tast ned (skift + kontroll + alt)Tast ned (skift + kontroll)Tast ned (skift)Tast venstreTast venstre (alt)Tast venstre (kontroll + alt)Tast venstre (kontroll)Tast venstre (skift + alt)Tast venstre (skift + kontroll + alt)Tast venstre (skift + kontroll)Tast venstre (skift)Tast høyreTast høyre (alt)Tast høyre (kontroll + alt)Tast høyre (kontroll)Tast høyre (skift + alt)Tast høyre (skift + kontroll + alt)Tast høyre (skift + kontroll)Tast høyre (skift)Tast oppTast opp (alt)Tast opp (kontroll + alt)Tast opp (kontroll)Tast opp (skift + alt)Tast opp (skift + Kontroll + Alt)Tast opp (skift + kontroll)Tast opp (skift)Tastatursnarveier kan omdefineres dynamisk i GIMP. menurc er et dump av din konfigurasjon som gjør den blir husket til neste økt. Du kan redigere denne filen hvis du vil, men det er mye lettere å definere tastene fra GIMP. Sletting av denne filen vil gjenopprette standard tastatursnarveier.TastaturTastaturhendelserTastatursnarveierVTHVe_nstre endepunkts farge...LandskapStorStor (256x256)Større forhåndsvisningerSiste feil:LagLag «%s» har ingen gjennomsiktighet. Lag ble plassert ovenfor.LagattributterLag_grensestørrelse...Fylltype for lagLagmaske til utvalgVelg lagLagstørrelseLag_modus_Navn på lag:Laget kan ikke senkes lavere.Laget kan ikke løftes høyere.Laget er allerede nederst.Laget er allerede øverst.Lag til bildestørrelseLag til _bunnenLag til _bildestørrelseLag til _toppenLagets _alfakanalLagLagmenyAlternativer for fletting av lag_Venstre endepunkts farge...VenstrejustertLengde:La GIMP forsøke å gjenopprette din forrige lagrede økt ved hver oppstart.NivåerNivåer for indekserte tengnede objekter kan ikke justeres.Farge for lyse ruterGjør kun lysereLinjeLinje- mellomrom:Strekbredde:Linje_stil:Linjestil som brukes i rutenettet.LineærLenket elementLastLast kurverLaste nivåerLast _høyre farge fraLes kurveinnstillingene fra filHent nivåinnstillinger fra filHent tekst fra filLaster forhåndsvisning...Plassering:LogaritmiskLange strekerSer etter datafilerSenk kanalSenk kanal til bunnenSenk kanal til _bunnenSenk lagSenk lag til bunnenSenk baneSenk banen til bunnenSenk bane til _bunnenSenk kanalSenk kanal til bunnenSenk lagSenk lag til bunnenSenk baneSenk bane til bunnen_Forstørr_MesterFlytt til skjerm..._KartMagentaMagenta:ForstørrGjør _gjennomsiktigHåndter lastbare modulerHastighet for marsjerende _maur:Maskeugjennomsiktighet:Maskér _valgte områderMasker _ikke-valgte områderMatrise:Maks dybde:Maksimal filstørrelse for miniatyrer:Maksimal bildestørrelse for _nye bilder:Maksimal fargedifferanseMaksimalt angre_minne:Middelverdi:MålMål avstander og vinklerMål avstander og vinklerMål linjalene og skriv inn lengdene:Median:MiddelsMiddels strekerFlett sammen _nedoverFlett nedFlett lagFlett sammen palettFlett sammen synlige lagFlett sammen synlige banerFle_tt sammen synlige lagFlett sammen _synlige lagFlett sammen _synlige banerFlett sammen lagFlett sammen paletterFlett sammen vektorerMeldingsprosedyrerMelding gjentatt %d ganger.Melding gjentatt en gang.Meldinger er videresendt til stderr.MellomtonerOverfør brukerinnstillingerMinimalt antall _angrenivåer:ForskjelligHjørneModusModus:Endre valgt fargeEndre fargenivåer for valgt områdeEndre alle fargerEndre linjeavstand i rutenettModulmapperModulhåndtererModulbaneModulerMusemarkørerMusehjulMusehjulhendelserFlyttFlytt ankereFlytt kanalFlytt flytende utvalgFlytt innrettingslinjeFlytt innrettingslinje: Flytt lagFlytt lagmaskeFlytt baneFlytt utvalgFlytt tekstlagFlytteverktøyFlytt elementFlytt lag og utvalgFlytt utvalgFlytt dette lagetFlytt denne banenFlytt valgt filter nedFlytt valgt filter oppFlytt til skjerm...Flytt: Multipliser_Antall farger:Na_vigering_NavigasjonsvinduStørrelse for forhåndsvisning av _navigering:NavnNavn:NavigeringNy kanalFarge på ny kanalNye kanalalternativerNy farge fra _bakgrunnenNy farge fra _forgrunnenNytt bildeNytt lagNy baneAlternativer for ny baneNy malNy penselNy kanalNy kanal med verdier fra sist gangNy kanal...Ny farge fra _bakgrunnenNy farge fra _forgrunnenNy graderingNy importeringNytt lagNytt lag med verdier fra sistgangNytt lag...Ny palettNy bane med verdier fra sistgangNy bane...Nytt mønsterNye vektorerIngen pensler tilgjengelig for bruk med dette verktøyet.Ingen filter valgtIngen lineære gradienter funnet i «%s»Ikke lenger tilgjengeligIngen baner funnet i «%s»Ingen baner funnet i bufferetIngen mønstre tilgjengelig for denne operasjonen.Ingen utvalgIngen utvalg til stykning.Ingen miniatyrerUjustertIngenIngen (Raskest)NormalNormal (128x128)Normale prikkerNormalt vinduIkke en vanlig fil.Ikke nok synlige lag til å gjøre sammenfletting. Det må være minst to.Ikke nok synlige baner til å gjøre sammenslåing. Det må være minst to.Antall _prosessorer som skal brukes:Antall rutenettlinjerAntall lag:A_nnet...ForskyvningForskyv kanalTegning på avstandForskyv lagForskyv lagmaskeForskyv med x/_2, y/2Avstand:På diskPå flerprosessormaskiner, hvis GIMP ble kompilert med --enable-mp, angir dette hvor mange prosessorer GIMP skal bruke samtidig.Bare i minneÅp_ne som lag...UgjennomsiktighetUgjennomsiktighet:ÅpneÅpne bildeÅpne bilde som lagÅpne lokasjonÅpne tekstfil (UTF-8)Åpne lo_kasjon...Åpne _sisteVindu for åpning av bildeÅpne penselvalgÅpne skriftvalgÅpne graderingsvalgÅpne palettvalgÅpne mønstervalgÅpne valgt oppføringÅpning av «%s» feilet: %sÅpning av «%s» feilet: %sAlternativer: @@ -460,6 +479,6 @@ GIMP %d.%d-brukerinstallasjonenGjør at menyen automatisk følger bildet du jobber på.Gjør at GIMP vil vise snarveistaster i menyer.Gjør at alle tegneverktøy viser gjeldende pensels omriss.Hvis aktivert, vil et bilde bli aktivt når bildevinduet mottar fokus. Dette er nyttig for vindushåndtere som bruker «klikk for fokus».Gjør at dialoger vil vise en hjelpekanpp som gir tilgang til den relaterte hjelpesiden. Uten denne knappen, er hjelpesiden fremdeles tilgjengelig ved å trykke F1.Gjør at menyer kan løsnes.Gjør at F1-knappen vil åpne en hjelpeleser.Gjør at GIMP ikke vil lagre bilder som er uendret.Gjør at GIMP vil bruke egne informasjonsvinduer for hver bildevisning.Er dette slått på, vil X-tjeneren bli spurt etter musepekerens posisjon ved hver eneste bevegelse, framfor å stole på posisjonshintet. Det betyr at tegning med store pensler vil bli mer presist, men det kan føre til dårligere ytelse. Snodig nok vil denne funksjonen føre til bedre ytelse på noen X-tjenere.Gjør at markøren vil bli vist over bildet når et tegneverktøy brukes.Gjør at rutenettet er synlig som standard. Dette kan også endres med «Vis->Vis rutenett»-kommandoen.Gjør at innrettingslinjene er synlige som standard. Dette kan også endres med «Vis->Vis innerttingslinjer»-kommandoen.Vil endre størrelsen på bildevinduet automatisk når du zoomer inn og ut i bildet.Vil endre størrelsen på bildevinduet automatisk etter som endringer skjer i det faktiske bildet.Gjør at laggrensen er synlig som standard. Dette kan også endres med «Vis->Vis laggrense»-kommandoen.Gjør menylinja synlig som standard. Dette kan også endres med «Vis->Vis menylinje»-kommandoen.Gjør linjalene synlige som standard. Dette kan også endres med «Vis->Vis linjaler»-kommandoen.Gjør rullefeltene synlige som standard. Dette kan også endres med «Vis->Vis rullefelt»-kommandoen.Gjør at valgt pensel vil bli brukt for med alle verktøy.Gjør at valgt gradering vil bli brukt med alle verktøy.Gjør at valgt mønster vil bli brukt med alle verktøy.Gjør at utvalg er synlige som standard. Dette kan også endres med «Vis->Vis utvalg»-kommandoen.Gjør statuslinja synlige som standard. Dette kan også endres med «Vis->Vis statuslinje»-kommandoen.Hvis påslått, vil dette gjøre at hvert piksel i et bilde blir koblet til en piksel på skjermen.Gjør at hele bildet er synlig når det åpnes. Ellers vil det bli vist med en 1:1-skala.Gjør at du kan endre hurtigtaster for menyvalg ved å trykke en tastekombinasjon mens menyvalget er markert.HvitHvitbalanse virker bare på RGB-fargelag.BreddeBredde:VindushåndteringVindushåndteringshintVindusposisjonerSkriver «%s» XXCF-feil: ustøttet XCF filversjon %d møttXCF-advarsel: versjon 0 av XCF filformatet lagret ikke indekserte fargekart riktig. -Erstatter gråtonekart.YGulGul:Du prøver å opprette et bilde med størrelse %s.Noen menyer kan du slippe i dokken.Du skal ha mottatt en kopi av GNU General Public License sammen med dette programmet. Hvis ikke, skriv til Free Software Foundation Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.Du måtte starte GIMP på nytt for at disse endringene skal tre i kraft:Din GIMP-installasjon er uferdig:Dine innstillinger om inndataenheter vil bli nullstilt til standardverdiene neste gang du starter GIMP.Dine tastatursnarveier til bli nullstilt til standardverdiene neste gang du starter GIMP.Ditt vindusoppsett vil bli nullstilt til standardverdiene neste gang du starter GIMP.Oppførsel ved zooming og endring av størrelseZoom 1:1Zoom altZoom innZoom utZoomforholdZoomforhold:Zoom _altZoom _innZoom _utZoom altZoom faktor: %d:1Zoom bildet når vindusstørrelsen endresZoom innZoom inn og utForminskeZoom:[ Basisbilde ]_Om_Hent_Legg til farge fra bakgrunnen_Legg til farge fra forgrunnen_Legg til fane_Legg til i utvalg_Avanserte alternativer_Luftpensel_AltFor_ankre lag_Antialiasing_Vilkårlig Rotasjon..._Artistisk_Aspekt_Auto_B_Bakgrunnsfarge_Bakgrunnsfarge:_Svart (helt gjennomsiktig)_Blandingstype for segment_Blandingsfunksjon for utvalget_Utydeliggjør_Lysstyrke:_Pensel_Pensler_Pensler, mønstre og graderinger_Bøttefylling_Buffere_Etter farge_Etter fargeutvalg_C_Endestil:_Kanaler_Tøm feil_Tøm angre-historikk_Klone_Lukk_Lukk fane_Skyer_Fargeverktøy_Farger_Still inn farge og ugjennomsiktighet..._Kontekst_Kontekst hjelp_Kopiér_Kopier navngitt_Opprett bilde fra mal..._Beskjær og endre størrelse_Beskjær bilde_Bøyd_Kurver...Farge for _mørke ruter_Standard farger_Slett pensel_Slett buffer_Slett kanal_Slett farge_Slett gradering..._Slett bilde_Slett lag_Slett palett_Slett bane_Slett mønster..._Slett lagrede alternativer_Slett segment_Slett utvalg_Slett malMindre _metningLø_sne fane_Enhetsstatus_Menyer_Forkast informasjon om tekstFor_vrengninger_Punkt for punkt_KopiérR_edigerR_ediger pensel...R_ediger kanalattributter...R_ediger farge...R_ediger gradering...R_ediger lagattributter...R_ediger palett...R_ediger baneinnstillinger...R_ediger mønster..._Rediger mal..._Ellipseutvalg_Slå på lag- og kanalforhåndsvisninger_Enorm_Jevn ut_Viskelær_Forgrunnsfarge_Fil_Fyll med:_Tilpass bilde i vindu_Flat ut bilde_Vend_Vend segment_Vend utvalg_Flyt_Skrift_Skrifter_Forgrunnsfarge:_Fritt utvalg_GGe_nerelt_Gigantisk_Gradering_Graderinger_Gråtone_Gråtonekopi av lag_Øk...Innrettings_linjer_Hardhet_Hjelp_Horisontal:_Glød:Ekstra sto_r_Ikon_Ikon:_Bilde_Bilder_Importer_Importer palett..._Indeksert..._Informasjonsvindu_Kryss med utvalg_Invertér_Koblingsstil:_Stor_Lag_Lag_Lag, kanaler og baner_Venstre endepunkt_Venstre nabos høyre endepunkt_Nivåer...Farge for _lyse ruter_Lyseffekter_Lysverdi:Strek_stil:_Lineær_LenketHent _venstre farge fra_Senk kanal_Senk lag_Senk bane_M_Manuelt_Kart_MaskerMaske til _utvalg_Maksimalt antall farger:_Mål_Middels_Flett sammen paletter..._Flett sammen importerte baner_Overfør brukerinnstillingene fra GIMP 2.0D_iverse ting_Kantgrense:_Modus_Modulhåndterer_Flytt_Navn:N_atur_Ny pensel_Ny kanal_Ny kanal..._Nytt innslag..._Ny gradering_Nytt lag_Nytt lag..._Ny palett_Ny bane_Ny bane..._Nytt mønster_Ny mal..._Ny visning_Ny bane..._Neste tips_Støy_IngenForskyvning..._Ugjennomsiktighet_Åpne bilde_Åpne..._Fyllfarge_Tegneverktøy_Malerpensel_Palett_Lim inn_Lim inn buffer_Lim inn navngitt..._Baner_Mønster_Perspektiv_Posterisér..._Innstillinger_ForhåndsvisStørrelse på _forhåndsvisning_Forrige tips_Utskriftsstørrelse..._Egenskaper_Hurtigmaske aktiv_Avslutt_R_RGB_Radius_Løft kanal_Løft lag_Løft bane/_Løft visninger_Løft eller åpne bilde_Tilordne snarvei på nytt_Rektangelutvalg_Gjenta_Gjenta %s_Oppdater pensler_Oppdater graderinger_Oppdater paletter_Oppdater mønstre_Fjern ubrukte farger fra endelig palett_Rendring_Erstatt_Kopier segment..._Kopier utvalg..._Last skrifttyper på nytt_Nullstill rekkefølge og synlighet_Nullstill lagrede innstillinger for inndataenheter_Nullstill lagrede tastatursnarveier til standardverdier ved oppstartNullstill lagrede vindusposisjoner til standardverdier_Gjenopprett alternativer fra_Høyre endepunkt_Høyre nabos venstre endepunkt_Rotér_Metning:_LagreLagre v_enstre farge til_Lagre alternativer til_Lagre innstillinger for inndataenheter ved avslutning_Lagre tastatursnarveier ved avslutning_Lagre vindusposisjoner ved avslutning_Skalér_Skalér bilde..._Skalér lag..._Skalér importerte baner så de passer bildestørrelsen_Velg_Utvalg_Utvalgsbehandler_Utvalgsverktøy_FormGjør _skarpereVis bilde_utvalg_Vis i verktøykasse_Sinusformet_Liten_Tilsmuss_Innrettingsdistanse:_Strek opp utvalg_Strek opp utvalg_Trekk fra utvalg_Fanestil_Mal:M_aler_Tekst_Terskel...Ekstra lite_n_Dagens tips_Verktøy_Verktøy_Overfør lagets alfakanal_Transformér_Transformasjonsverktøy_Angre_Angre %s_Vertikal:_Vis_SynligNe_tt_Nettleser som skal brukes:_Hvit (helt ugjennomsiktig)_Hvitbalanse_Bredde:_Bryt rundt_X-oppløsning:_X:/_Utvid_Y_Y-oppløsning:_Y:_Zoom_Zoom (%s)fargerkopierdpiforventet «ja» eller «nei» for bolsk tegn %s, fikk «%s»fatal feil i tolkinggråtonegråtone-tomtommetommerindeksertindeksert-tomugyldig UTF-8-strengugyldig verdi «%ld» for ikontypeugyldig verdi «%ld» for tegn %sugyldig verdi «%s» for ikontypeugyldig verdi «%s» for tegn %smillimetermillimetreminuttenei/tprosentpicapicaspikselpikslerpiksler/%apiksler/%spunktpunktersekundenetips-locale:noKjartan Maraas +Erstatter gråtonekart.YGulGul:Du prøver å opprette et bilde med størrelse %s.Noen menyer kan du slippe i dokken.Du skal ha mottatt en kopi av GNU General Public License sammen med dette programmet. Hvis ikke, skriv til Free Software Foundation Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.Du måtte starte GIMP på nytt for at disse endringene skal tre i kraft:Din GIMP-installasjon er uferdig:Dine innstillinger om inndataenheter vil bli nullstilt til standardverdiene neste gang du starter GIMP.Dine tastatursnarveier til bli nullstilt til standardverdiene neste gang du starter GIMP.Ditt vindusoppsett vil bli nullstilt til standardverdiene neste gang du starter GIMP.Oppførsel ved zooming og endring av størrelseZoom 1:1Zoom altZoom innZoom utZoomforholdZoomforhold:Zoom _altZoom _innZoom _utZoom altZoom faktor: %d:1Zoom bildet når vindusstørrelsen endresZoom innZoom inn og utForminskeZoom:[ Basisbilde ]_Om_Hent_Legg til farge fra bakgrunnen_Legg til farge fra forgrunnen_Legg til fane_Legg til i utvalg_Avanserte alternativer_Luftpensel_AltFor_ankre lag_Antialiasing_Vilkårlig Rotasjon..._Artistisk_Aspekt_Auto_B_Bakgrunnsfarge_Bakgrunnsfarge:_Svart (helt gjennomsiktig)_Blandingstype for segment_Blandingsfunksjon for utvalget_Utydeliggjør_Lysstyrke:_Pensel_Pensler_Pensler, mønstre og graderinger_Bøttefylling_Buffere_Etter farge_Etter fargeutvalg_C_Endestil:_Kanaler_Tøm feil_Tøm angre-historikk_Klone_Lukk_Lukk fane_Skyer_Fargeverktøy_Farger_Still inn farge og ugjennomsiktighet..._Kontekst_Kontekst hjelp_Kopiér_Kopier navngitt_Opprett bilde fra mal..._Beskjær og endre størrelse_Beskjær bilde_Bøyd_Kurver...Farge for _mørke ruter_Standard farger_Slett pensel_Slett buffer_Slett kanal_Slett farge_Slett gradering..._Slett bilde_Slett lag_Slett palett_Slett bane_Slett mønster..._Slett lagrede alternativer_Slett segment_Slett utvalg_Slett malMindre _metningLø_sne fane_Enhetsstatus_Menyer_Forkast endringer_Forkast informasjon om tekstFor_vrengninger_Punkt for punkt_KopiérR_edigerR_ediger pensel...R_ediger kanalattributter...R_ediger farge...R_ediger gradering...R_ediger lagattributter...R_ediger palett...R_ediger baneinnstillinger...R_ediger mønster..._Rediger mal..._Ellipseutvalg_Slå på lag- og kanalforhåndsvisninger_Enorm_Jevn ut_Viskelær_Forgrunnsfarge_Fil_Fyll med:_Tilpass bilde i vindu_Flat ut bilde_Vend_Vend segment_Vend utvalg_Flyt_Skrift_Skrifter_Forgrunnsfarge:_Fritt utvalg_GGe_nerelt_Gigantisk_Gradering_Graderinger_Gråtone_Gråtonekopi av lag_Øk...Innrettings_linjer_Hardhet_Hjelp_Horisontal:_Glød:Ekstra sto_r_Ikon_Ikon:_Bilde_Bilder_Importer_Importer palett..._Indeksert..._Informasjonsvindu_Kryss med utvalg_Invertér_Koblingsstil:_Stor_Lag_Lag_Lag, kanaler og baner_Venstre endepunkt_Venstre nabos høyre endepunkt_Nivåer...Farge for _lyse ruter_Lyseffekter_Lysverdi:Strek_stil:_Lineær_LenketHent _venstre farge fra_Senk kanal_Senk lag_Senk bane_M_Manuelt_Kart_MaskerMaske til _utvalg_Maksimalt antall farger:_Mål_Middels_Flett sammen paletter..._Flett sammen importerte baner_Overfør brukerinnstillingene fra GIMP 2.0D_iverse ting_Kantgrense:_Modus_Modulhåndterer_Flytt_Navn:N_atur_Ny pensel_Ny kanal_Ny kanal..._Nytt innslag..._Ny gradering_Nytt lag_Nytt lag..._Ny palett_Ny bane_Ny bane..._Nytt mønster_Ny mal..._Ny visning_Ny..._Neste tips_Støy_IngenForskyvning..._Ugjennomsiktighet_Åpne bilde_Åpne..._Fyllfarge_Tegneverktøy_Malerpensel_Palett_Lim inn_Lim inn buffer_Lim inn navngitt..._Baner_Mønster_Perspektiv_Posterisér..._Innstillinger_ForhåndsvisStørrelse på _forhåndsvisning_Forrige tips_Utskriftsstørrelse..._Egenskaper_Hurtigmaske aktiv_Avslutt_R_RGB_Radius_Løft kanal_Løft lag_Løft bane/_Løft visninger_Løft eller åpne bilde_Tilordne snarvei på nytt_Rektangelutvalg_Gjenta_Gjenta %s_Oppdater pensler_Oppdater graderinger_Oppdater paletter_Oppdater mønstre_Fjern ubrukte farger fra endelig palett_Rendring_Erstatt_Kopier segment..._Kopier utvalg..._Last skrifttyper på nytt_Nullstill rekkefølge og synlighet_Nullstill lagrede innstillinger for inndataenheter_Nullstill lagrede tastatursnarveier til standardverdier ved oppstartNullstill lagrede vindusposisjoner til standardverdier_Gjenopprett alternativer fra_Høyre endepunkt_Høyre nabos venstre endepunkt_Rotér_Metning:_LagreLagre v_enstre farge til_Lagre alternativer til_Lagre innstillinger for inndataenheter ved avslutning_Lagre tastatursnarveier ved avslutning_Lagre vindusposisjoner ved avslutning_Skalér_Skalér bilde..._Skalér lag..._Skalér importerte baner så de passer bildestørrelsen_Velg_Utvalg_Utvalgsbehandler_Utvalgsverktøy_FormGjør _skarpereVis bilde_utvalg_Vis i verktøykasse_Sinusformet_Liten_Tilsmuss_Innrettingsdistanse:_Strek opp utvalg_Strek opp utvalg_Trekk fra utvalg_Fanestil_Mal:M_aler_Tekst_Terskel...Ekstra lite_n_Dagens tips_Verktøy_Verktøy_Overfør lagets alfakanal_Transformér_Transformasjonsverktøy_Angre_Angre %s_Vertikal:_Vis_SynligNe_tt_Nettleser som skal brukes:_Hvit (helt ugjennomsiktig)_Hvitbalanse_Bredde:_Bryt rundt_X-oppløsning:_X:_Utvid_Y_Y-oppløsning:_Y:_Zoom_Zoom (%s)fargerkopierdpiforventet «ja» eller «nei» for bolsk tegn %s, fikk «%s»fatal feil i tolkinggråtonegråtone-tomtommetommerindeksertindeksert-tomugyldig UTF-8-strengugyldig verdi «%ld» for ikontypeugyldig verdi «%ld» for tegn %sugyldig verdi «%s» for ikontypeugyldig verdi «%s» for tegn %smillimetermillimetreminuttenei/tprosentpicapicaspikselpikslerpiksler/%apiksler/%spunktpunktersekundenetips-locale:noKjartan Maraas Sigurd Gartmann Runar Ingebrigtsenverdi for tegn %s er ikke en gyldig UTF-8-strengunder lesing av «%s»: %s \ No newline at end of file diff -uraN gimp-2.2.0/po/nb.po gimp-2.2.1/po/nb.po --- gimp-2.2.0/po/nb.po 2004-12-19 03:11:36.000000000 +0100 +++ gimp-2.2.1/po/nb.po 2004-12-28 16:58:34.000000000 +0100 @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: gimp 2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-19 03:11+0100\n" -"PO-Revision-Date: 2004-12-04 17:13+0100\n" +"POT-Creation-Date: 2004-12-28 16:58+0100\n" +"PO-Revision-Date: 2004-12-21 21:49+0100\n" "Last-Translator: Sigurd Gartmann \n" "Language-Team: Norwegian \n" "MIME-Version: 1.0\n" @@ -1033,11 +1033,11 @@ msgid "Remove dangling entries" msgstr "Fjern hengende oppføringer" -#: app/actions/documents-commands.c:252 app/actions/file-commands.c:163 +#: app/actions/documents-commands.c:251 app/actions/file-commands.c:163 #: app/dialogs/file-open-dialog.c:198 app/dialogs/file-open-dialog.c:249 #: app/dialogs/file-open-location-dialog.c:193 -#: app/display/gimpdisplayshell-dnd.c:332 app/widgets/gimplayertreeview.c:802 -#: app/widgets/gimptoolbox-dnd.c:123 +#: app/display/gimpdisplayshell-dnd.c:334 app/widgets/gimplayertreeview.c:804 +#: app/widgets/gimptoolbox-dnd.c:125 #, c-format msgid "" "Opening '%s' failed:\n" @@ -1156,9 +1156,8 @@ #. GIMP_STOCK_COPY_VISIBLE, #: app/actions/edit-actions.c:93 -#, fuzzy msgid "Copy _Visible" -msgstr "_Synlig" +msgstr "Kopier _synlig" #: app/actions/edit-actions.c:98 msgid "_Paste" @@ -1546,115 +1545,115 @@ msgid "Zoom all" msgstr "Zoom alt" -#: app/actions/gradient-editor-actions.c:582 +#: app/actions/gradient-editor-actions.c:589 msgid "_Blending Function for Segment" msgstr "_Blandingstype for segment" -#: app/actions/gradient-editor-actions.c:584 +#: app/actions/gradient-editor-actions.c:591 msgid "Coloring _Type for Segment" msgstr "Farge_type for segment" -#: app/actions/gradient-editor-actions.c:587 +#: app/actions/gradient-editor-actions.c:594 msgid "_Flip Segment" msgstr "_Vend segment" -#: app/actions/gradient-editor-actions.c:589 +#: app/actions/gradient-editor-actions.c:596 msgid "_Replicate Segment..." msgstr "_Kopier segment..." -#: app/actions/gradient-editor-actions.c:591 +#: app/actions/gradient-editor-actions.c:598 msgid "Split Segment at _Midpoint" msgstr "Del segmentet ved _midtpunktet" -#: app/actions/gradient-editor-actions.c:593 +#: app/actions/gradient-editor-actions.c:600 msgid "Split Segment _Uniformly..." msgstr "Splitt segmentet _enhetlig..." -#: app/actions/gradient-editor-actions.c:595 +#: app/actions/gradient-editor-actions.c:602 msgid "_Delete Segment" msgstr "_Slett segment" -#: app/actions/gradient-editor-actions.c:597 +#: app/actions/gradient-editor-actions.c:604 msgid "Re-_center Segment's Midpoint" msgstr "S_entrer segmentets midtpunkt igjen" -#: app/actions/gradient-editor-actions.c:599 +#: app/actions/gradient-editor-actions.c:606 msgid "Re-distribute _Handles in Segment" msgstr "Distribuer _håndtak i segmentet igjen" -#: app/actions/gradient-editor-actions.c:604 +#: app/actions/gradient-editor-actions.c:611 msgid "_Blending Function for Selection" msgstr "_Blandingsfunksjon for utvalget" -#: app/actions/gradient-editor-actions.c:606 +#: app/actions/gradient-editor-actions.c:613 msgid "Coloring _Type for Selection" msgstr "Farge_type for utvalget" -#: app/actions/gradient-editor-actions.c:609 +#: app/actions/gradient-editor-actions.c:616 msgid "_Flip Selection" msgstr "_Vend utvalg" -#: app/actions/gradient-editor-actions.c:611 +#: app/actions/gradient-editor-actions.c:618 msgid "_Replicate Selection..." msgstr "_Kopier utvalg..." -#: app/actions/gradient-editor-actions.c:613 +#: app/actions/gradient-editor-actions.c:620 msgid "Split Segments at _Midpoints" msgstr "Del segmentene ved _midtpunktet" -#: app/actions/gradient-editor-actions.c:615 +#: app/actions/gradient-editor-actions.c:622 msgid "Split Segments _Uniformly..." msgstr "Del segmenter _enhetlig..." -#: app/actions/gradient-editor-actions.c:617 +#: app/actions/gradient-editor-actions.c:624 msgid "_Delete Selection" msgstr "_Slett utvalg" -#: app/actions/gradient-editor-actions.c:619 +#: app/actions/gradient-editor-actions.c:626 msgid "Re-_center Midpoints in Selection" msgstr "S_entrer midtpunkter i utvalget igjen" -#: app/actions/gradient-editor-actions.c:621 +#: app/actions/gradient-editor-actions.c:628 msgid "Re-distribute _Handles in Selection" msgstr "Distribuer håndtak i utvalget igjen" -#: app/actions/gradient-editor-commands.c:84 +#: app/actions/gradient-editor-commands.c:85 msgid "Left Endpoint Color" msgstr "_Venstre endepunkts farge..." -#: app/actions/gradient-editor-commands.c:86 +#: app/actions/gradient-editor-commands.c:87 msgid "Gradient Segment's Left Endpoint Color" msgstr "Farge på venstre endepunkt av graderingsssegment" -#: app/actions/gradient-editor-commands.c:186 +#: app/actions/gradient-editor-commands.c:189 msgid "Right Endpoint Color" msgstr "_Høyre endepunkts farge" -#: app/actions/gradient-editor-commands.c:188 +#: app/actions/gradient-editor-commands.c:191 msgid "Gradient Segment's Right Endpoint Color" msgstr "Farge på høyre endepunkt av graderingssegment" -#: app/actions/gradient-editor-commands.c:353 +#: app/actions/gradient-editor-commands.c:358 msgid "Replicate Segment" msgstr "Kopier segment" -#: app/actions/gradient-editor-commands.c:354 +#: app/actions/gradient-editor-commands.c:359 msgid "Replicate Gradient Segment" msgstr "Kopier graderingssegment" -#: app/actions/gradient-editor-commands.c:358 +#: app/actions/gradient-editor-commands.c:363 msgid "Replicate Selection" msgstr "Kopier utvalg" -#: app/actions/gradient-editor-commands.c:359 +#: app/actions/gradient-editor-commands.c:364 msgid "Replicate Gradient Selection" msgstr "Kopier graderingsutvalg" -#: app/actions/gradient-editor-commands.c:371 +#: app/actions/gradient-editor-commands.c:376 msgid "Replicate" msgstr "Kopier" -#: app/actions/gradient-editor-commands.c:386 +#: app/actions/gradient-editor-commands.c:391 msgid "" "Select the number of times\n" "to replicate the selected segment." @@ -1662,7 +1661,7 @@ "Velg antall ganger du ønsker \n" "å kopiere valgt segment." -#: app/actions/gradient-editor-commands.c:389 +#: app/actions/gradient-editor-commands.c:394 msgid "" "Select the number of times\n" "to replicate the selection." @@ -1670,27 +1669,27 @@ "Velg antall ganger\n" "utvalget skal kopieres." -#: app/actions/gradient-editor-commands.c:444 +#: app/actions/gradient-editor-commands.c:452 msgid "Split Segment Uniformly" msgstr "Del segmentet enhetlig" -#: app/actions/gradient-editor-commands.c:445 +#: app/actions/gradient-editor-commands.c:453 msgid "Split Gradient Segment Uniformly" msgstr "Del graderingssegment enhetlig" -#: app/actions/gradient-editor-commands.c:449 +#: app/actions/gradient-editor-commands.c:457 msgid "Split Segments Uniformly" msgstr "Del segmenter enhetlig" -#: app/actions/gradient-editor-commands.c:450 +#: app/actions/gradient-editor-commands.c:458 msgid "Split Gradient Segments Uniformly" msgstr "Del graderingssegmenter enhetlig" -#: app/actions/gradient-editor-commands.c:462 +#: app/actions/gradient-editor-commands.c:470 msgid "Split" msgstr "Del" -#: app/actions/gradient-editor-commands.c:478 +#: app/actions/gradient-editor-commands.c:486 msgid "" "Select the number of uniform parts\n" "in which to split the selected segment." @@ -1698,7 +1697,7 @@ "Velg antall enhetlige deler\n" "du vil dele valgt segment i." -#: app/actions/gradient-editor-commands.c:481 +#: app/actions/gradient-editor-commands.c:489 msgid "" "Select the number of uniform parts\n" "in which to split the segments in the selection." @@ -1781,7 +1780,7 @@ #: app/actions/image-actions.c:58 msgid "_Xtns" -msgstr "/_Utvid" +msgstr "_Utvid" #: app/actions/image-actions.c:59 msgid "_Image" @@ -1801,7 +1800,7 @@ #: app/actions/image-actions.c:65 app/actions/image-actions.c:70 msgid "_New..." -msgstr "_Ny bane..." +msgstr "_Ny..." #: app/actions/image-actions.c:75 msgid "Can_vas Size..." @@ -2135,7 +2134,7 @@ #: app/actions/layers-commands.c:232 app/actions/layers-commands.c:234 #: app/actions/layers-commands.c:291 app/actions/layers-commands.c:295 -#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:840 +#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:842 msgid "New Layer" msgstr "Nytt lag" @@ -2147,7 +2146,7 @@ msgid "Set Layer Boundary Size" msgstr "Angi størrelse på laggrense" -#: app/actions/layers-commands.c:512 app/core/gimplayer.c:255 +#: app/actions/layers-commands.c:512 app/core/gimplayer.c:253 msgid "Scale Layer" msgstr "Skaler lag" @@ -2159,7 +2158,7 @@ msgid "Layer Mask to Selection" msgstr "Lagmaske til utvalg" -#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1085 +#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1066 #: app/dialogs/layer-add-mask-dialog.c:62 msgid "Add Layer Mask" msgstr "Legg til lagmaske" @@ -2703,7 +2702,7 @@ msgstr "Åpne tekstfil (UTF-8)" #: app/actions/text-editor-commands.c:132 app/config/gimpconfig-utils.c:552 -#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:393 +#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:396 #: app/core/gimpbrushgenerated.c:601 app/core/gimpbrushpipe.c:338 #: app/core/gimpgradient-load.c:63 app/core/gimppalette.c:360 #: app/core/gimppattern.c:328 app/tools/gimpimagemaptool.c:608 @@ -4526,7 +4525,7 @@ msgid "FG to Transparent" msgstr "Forgrunn til gjennomsiktig" -#: app/core/gimp-gui.c:148 +#: app/core/gimp-gui.c:153 msgid "GIMP" msgstr "GIMP" @@ -4558,39 +4557,54 @@ msgid "Modules" msgstr "Moduler" -#: app/core/gimpbrush.c:531 +#: app/core/gimpbrush.c:534 #, c-format msgid "Could not read %d bytes from '%s': %s" msgstr "Kunne ikke lese %d bytes fra «%s»: %s" -#: app/core/gimpbrush.c:566 +#: app/core/gimpbrush.c:554 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Width = 0." +msgstr "Fatal feil i penselfil «%s»: Ukjent dybde %d." + +#: app/core/gimpbrush.c:563 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Height = 0." +msgstr "Fatal feil i penselfil «%s»: Filen er korrupt." + +#: app/core/gimpbrush.c:572 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Bytes = 0." +msgstr "Fatal feil i penselfil «%s»: Filen er korrupt." + +#: app/core/gimpbrush.c:596 #, c-format msgid "Fatal parse error in brush file '%s': Unknown depth %d." msgstr "Fatal feil i penselfil «%s»: Ukjent dybde %d." -#: app/core/gimpbrush.c:579 +#: app/core/gimpbrush.c:609 #, c-format msgid "Fatal parse error in brush file '%s': Unknown version %d." msgstr "Fatal feil i penselfil «%s»: Ukjent versjon %d." -#: app/core/gimpbrush.c:595 app/core/gimpbrush.c:715 +#: app/core/gimpbrush.c:625 app/core/gimpbrush.c:745 #, c-format msgid "Fatal parse error in brush file '%s': File appears truncated." msgstr "Fatal feil i penselfil «%s»: Filen ser ut til å være avkuttet." -#: app/core/gimpbrush.c:603 app/core/gimpbrushgenerated.c:648 +#: app/core/gimpbrush.c:633 app/core/gimpbrushgenerated.c:648 #: app/core/gimpbrushpipe.c:354 #, c-format msgid "Invalid UTF-8 string in brush file '%s'." msgstr "Ugyldig UTF-8-streng i penselfil «%s»." -#: app/core/gimpbrush.c:610 app/core/gimpcontext.c:1299 -#: app/core/gimpitem.c:479 app/core/gimppattern.c:400 +#: app/core/gimpbrush.c:640 app/core/gimpcontext.c:1299 +#: app/core/gimpitem.c:480 app/core/gimppattern.c:400 #: app/dialogs/template-options-dialog.c:80 app/tools/gimpvectortool.c:339 msgid "Unnamed" msgstr "Uten navn" -#: app/core/gimpbrush.c:704 +#: app/core/gimpbrush.c:734 #, c-format msgid "" "Fatal parse error in brush file '%s': Unsupported brush depth %d\n" @@ -4755,11 +4769,11 @@ "«%s»" #: app/core/gimpdatafactory.c:411 app/core/gimpdatafactory.c:414 -#: app/core/gimpitem.c:274 app/core/gimpitem.c:277 +#: app/core/gimpitem.c:275 app/core/gimpitem.c:278 msgid "copy" msgstr "kopier" -#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:286 +#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:287 #, c-format msgid "%s copy" msgstr "%s kopier" @@ -4822,7 +4836,7 @@ msgid "Rotate" msgstr "Roter" -#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:259 +#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:257 msgid "Transform Layer" msgstr "Transformasjonslag" @@ -5182,7 +5196,7 @@ #. pixel size #: app/core/gimpimagefile.c:624 app/dialogs/info-window.c:552 -#: app/widgets/gimpsizebox.c:552 app/widgets/gimptemplateeditor.c:637 +#: app/widgets/gimpsizebox.c:429 app/widgets/gimptemplateeditor.c:637 #: app/widgets/gimptemplateeditor.c:673 #, c-format msgid "%d x %d pixels" @@ -5202,15 +5216,15 @@ msgid "Could not open thumbnail '%s': %s" msgstr "Kunne ikke åpne miniatyrfil «%s»: %s" -#: app/core/gimpitem.c:1096 +#: app/core/gimpitem.c:1103 msgid "Attach Parasite" msgstr "Fest parasitt" -#: app/core/gimpitem.c:1106 +#: app/core/gimpitem.c:1113 msgid "Attach Parasite to Item" msgstr "Fest parasitt til element" -#: app/core/gimpitem.c:1145 app/core/gimpitem.c:1152 +#: app/core/gimpitem.c:1152 app/core/gimpitem.c:1159 msgid "Remove Parasite from Item" msgstr "Fjern parasitt fra element" @@ -5238,37 +5252,37 @@ msgid "Floating Selection to Layer" msgstr "Flytende utvalg til lag" -#: app/core/gimplayer.c:252 app/pdb/internal_procs.c:152 +#: app/core/gimplayer.c:250 app/pdb/internal_procs.c:152 msgid "Layer" msgstr "Lag" -#: app/core/gimplayer.c:253 +#: app/core/gimplayer.c:251 msgid "Rename Layer" msgstr "Endre navn på lag" -#: app/core/gimplayer.c:254 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 +#: app/core/gimplayer.c:252 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 msgid "Move Layer" msgstr "Flytt lag" -#: app/core/gimplayer.c:256 +#: app/core/gimplayer.c:254 msgid "Resize Layer" msgstr "Endre størrelse på lag" -#: app/core/gimplayer.c:257 +#: app/core/gimplayer.c:255 msgid "Flip Layer" msgstr "Vend lag" -#: app/core/gimplayer.c:258 +#: app/core/gimplayer.c:256 msgid "Rotate Layer" msgstr "Roter lag" -#: app/core/gimplayer.c:341 app/core/gimplayer.c:1129 +#: app/core/gimplayer.c:339 app/core/gimplayer.c:1110 #: app/core/gimplayermask.c:236 #, c-format msgid "%s mask" msgstr "%s maske" -#: app/core/gimplayer.c:387 +#: app/core/gimplayer.c:385 #, c-format msgid "" "Floating Selection\n" @@ -5277,41 +5291,41 @@ "Flytende utvalg\n" "(%s)" -#: app/core/gimplayer.c:1055 +#: app/core/gimplayer.c:1036 msgid "Cannot add layer mask to layer which is not part of an image." msgstr "Kan ikke legge til lagmaske til lag som ikke er en del av et bilde." -#: app/core/gimplayer.c:1062 +#: app/core/gimplayer.c:1043 msgid "Unable to add a layer mask since the layer already has one." msgstr "Kunne ikke legge til lagmaske siden laget allerede har en." -#: app/core/gimplayer.c:1069 +#: app/core/gimplayer.c:1050 msgid "Cannot add layer mask to a layer with no alpha channel." msgstr "Kan ikke legge til lagmaske til et lag uten alfakanal." -#: app/core/gimplayer.c:1079 +#: app/core/gimplayer.c:1060 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "" "Kan ikke legge til lagmaske med forskjellig dimensjon fra det spesifiserte " "laget." -#: app/core/gimplayer.c:1183 +#: app/core/gimplayer.c:1164 msgid "Transfer Alpha to Mask" msgstr "Overfør gjennomsiktighet til maske" -#: app/core/gimplayer.c:1343 +#: app/core/gimplayer.c:1324 msgid "Apply Layer Mask" msgstr "Påfør lagmaske" -#: app/core/gimplayer.c:1344 +#: app/core/gimplayer.c:1325 msgid "Delete Layer Mask" msgstr "Slett lagmaske" -#: app/core/gimplayer.c:1445 +#: app/core/gimplayer.c:1426 msgid "Add Alpha Channel" msgstr "Legg til alfakanal" -#: app/core/gimplayer.c:1467 +#: app/core/gimplayer.c:1448 msgid "Layer to Image Size" msgstr "Lag til bildestørrelse" @@ -6757,28 +6771,28 @@ msgstr "Utskriftsstørrelse:" #. the image size labels -#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:241 +#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:222 #: app/widgets/gimptemplateeditor.c:236 msgid "_Width:" msgstr "_Bredde:" -#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:248 +#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:225 #: app/widgets/gimptemplateeditor.c:243 msgid "H_eight:" msgstr "_Høyde:" #. the resolution labels -#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:338 +#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:273 #: app/widgets/gimptemplateeditor.c:363 msgid "_X resolution:" msgstr "_X-oppløsning:" -#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:345 +#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:276 #: app/widgets/gimptemplateeditor.c:370 msgid "_Y resolution:" msgstr "_Y-oppløsning:" -#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:357 +#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:269 #: app/widgets/gimptemplateeditor.c:383 #, c-format msgid "pixels/%a" @@ -6802,7 +6816,6 @@ msgstr "Det er %d bilder med ulagrede endringer:" #: app/dialogs/quit-dialog.c:183 -#, fuzzy msgid "_Discard Changes" msgstr "_Forkast endringer" @@ -7399,11 +7412,11 @@ msgid "%d minutes" msgstr "%d minuttene" -#: app/display/gimpdisplayshell-dnd.c:96 +#: app/display/gimpdisplayshell-dnd.c:98 msgid "Drop New Layer" msgstr "Slipp nytt lag" -#: app/display/gimpdisplayshell-dnd.c:140 +#: app/display/gimpdisplayshell-dnd.c:142 msgid "Drop New Path" msgstr "Slipp ny bane" @@ -8863,12 +8876,12 @@ msgstr "_Malerpensel" #: app/tools/gimppaintoptions-gui.c:103 app/widgets/gimpbrushselect.c:201 -#: app/widgets/gimplayertreeview.c:330 +#: app/widgets/gimplayertreeview.c:332 msgid "Opacity:" msgstr "Ugjennomsiktighet:" #: app/tools/gimppaintoptions-gui.c:108 app/tools/gimpselectionoptions.c:374 -#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:323 +#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:325 msgid "Mode:" msgstr "Modus:" @@ -9009,9 +9022,8 @@ msgstr "Senter X:" #: app/tools/gimprotatetool.c:190 -#, fuzzy msgid "Center Y:" -msgstr "Senter X:" +msgstr "Senter Y:" #: app/tools/gimpscaletool.c:91 msgid "Scale" @@ -10020,14 +10032,12 @@ msgstr "Bakgrunn: %d, %d, %d" #: app/widgets/gimpdock.c:348 app/widgets/gimpdock.c:359 -#, fuzzy msgid "Close all tabs?" -msgstr "_Lukk fane" +msgstr "Lukk alle faner?" #: app/widgets/gimpdock.c:354 -#, fuzzy msgid "Close all Tabs" -msgstr "_Lukk fane" +msgstr "Lukk alle faner" #: app/widgets/gimpdock.c:361 #, c-format @@ -10265,24 +10275,24 @@ msgid "Set Item Exclusive Linked" msgstr "Gjør elementet eksklusivt lenket" -#: app/widgets/gimplayertreeview.c:250 +#: app/widgets/gimplayertreeview.c:252 msgid "Reorder Layer" msgstr "Reorganiser lag" -#: app/widgets/gimplayertreeview.c:311 +#: app/widgets/gimplayertreeview.c:313 msgid "Keep transparency" msgstr "Behold gjennomsiktighet" -#: app/widgets/gimplayertreeview.c:846 +#: app/widgets/gimplayertreeview.c:848 msgid "Empty Layer" msgstr "Tomt lag" -#: app/widgets/gimpmessagebox.c:458 +#: app/widgets/gimpmessagebox.c:460 #, c-format msgid "Message repeated %d times." msgstr "Melding gjentatt %d ganger." -#: app/widgets/gimpmessagebox.c:460 +#: app/widgets/gimpmessagebox.c:462 msgid "Message repeated once." msgstr "Melding gjentatt en gang." @@ -10314,16 +10324,12 @@ msgid "Invalid UTF-8" msgstr "Ugyldig UTF-8-streng" -#: app/widgets/gimpsizebox.c:290 -msgid "Keep aspect ratio" -msgstr "Behold bredde- og høydeforhold" - -#: app/widgets/gimpsizebox.c:574 +#: app/widgets/gimpsizebox.c:451 #, c-format msgid "%d x %d dpi" msgstr "%d x %d dpi" -#: app/widgets/gimpsizebox.c:578 +#: app/widgets/gimpsizebox.c:455 #, c-format msgid "%d dpi" msgstr "%d dpi" @@ -10765,6 +10771,9 @@ msgid "Image Editor" msgstr "Bildebehandler" +#~ msgid "Keep aspect ratio" +#~ msgstr "Behold bredde- og høydeforhold" + #~ msgid "Y:" #~ msgstr "Y:" @@ -10789,18 +10798,6 @@ #~ msgid "Indexed Palette Menu" #~ msgstr "Indekspalettmeny" -#, fuzzy -#~ msgid "Inde_xed Palette" -#~ msgstr "Indeksert palett" - -#, fuzzy -#~ msgid "_Undo History" -#~ msgstr "Angre-historikk" - -#, fuzzy -#~ msgid "Brus_hes" -#~ msgstr "Pensler" - #~ msgid "No preview available" #~ msgstr "Ingen forhåndsvisning tilgjengelig" @@ -10810,14 +10807,6 @@ #~ msgid "Pixel Dimensions" #~ msgstr "Pikseldimensjoner" -#, fuzzy -#~ msgid "New width:" -#~ msgstr "Ny bredde:" - -#, fuzzy -#~ msgid "New height:" -#~ msgstr "Høyde:" - #~ msgid "_Size:" #~ msgstr "_Størrelse:" @@ -10834,10 +10823,6 @@ #~ msgid "Edit Indexed Color" #~ msgstr "Rediger indeksert farge" -#, fuzzy -#~ msgid "Edit indexed image palette color" -#~ msgstr "Rediger indeksert palettfarge for bilde" - #~ msgid "" #~ "%s\n" #~ "%s To Top" @@ -10911,18 +10896,6 @@ #~ msgid "Dark Checks" #~ msgstr "Mørke ruter" -#, fuzzy -#~ msgid "RGB color" -#~ msgstr "RGB-farge" - -#, fuzzy -#~ msgid "Indexed color" -#~ msgstr "Indeksert farge" - -#, fuzzy -#~ msgid "Swap dir:" -#~ msgstr "Mellomlagermappe:" - #~ msgid "Select Swap Dir" #~ msgstr "Velg mellomlagermappe" diff -uraN gimp-2.2.0/po/nl.gmo gimp-2.2.1/po/nl.gmo --- gimp-2.2.0/po/nl.gmo 2004-12-19 03:11:55.000000000 +0100 +++ gimp-2.2.1/po/nl.gmo 2004-12-28 16:58:43.000000000 +0100 @@ -1,189 +1,229 @@ -7O o &GF9GȕANRi< kH@2;(PdO298-r9;ڙ7 N -X c -m -x - -՚ &<0Ct -˛қڛ - - - -9 I Ua f rK˜.Q1!ԝ۝ -) 4 @ -LWl  -Ξ -* 6Kݟ%9Xm -ˠ֠ޠ- 5 ? LVf1{3 -ȣ ϣ -ܣ -AJ\< 3;@S\n -˥&$-4 : DRY_"g Ŧ֦76 < IW`g o |   ǧѧڧ  C)7m=@6$d[ީ3(<<#y!ܪ  -E]o,ƫ  (6 Vw ɬ ׬ .5I578)&,P}2  -%OAA%ӯ&4 1U#  հ߰& ,: P]0v  ű+2EXa q -$ !B\zȳس w ڴ & -8C -b)m,޵!##>!b%.ɶ  2E#[-%÷ * -D -O -Ze} ¸ ɸ -׸- + /9>DUh| ͹۹%! 6CVn  úҺ  3Nk} - -- ڻ   - +8Kdl μ ׼ ? 8`  ɽؽ޽ -  -& 1 = -G R^g{ > ׾-=Oo ˿ (; P -^i -   -*/Zc.z#"2&Qx ,# 0'JrFT?  - *KZi{ $=6<6As79c'9B=fF>CJ0g{ / 9E W d r3:Cb} -  -  0 8DTp  -O -   '.3bu -   $;uJce zQWr_,A&R'y    %=NRl{   -= -BHM  -H! B.qu1 - `C`0  - -'7Hgz ( - -H (5 <HW fs   !-B\r  36F U_w$ (?+h)*! /MTc*t' - --.\ex | 3 + -8 CPn   !5D@L-   (4 H R ^j   -  (4JRW_hp  -#$*2Olt { -   -8OXn $ ,8 @N S ` -m x -  (Fbir -    %B Q -^i ,)1 [h  BA6x   -  8"W!z  V+u(" /%G -mx -    $7L&f,  -"4 -:EM -]hw   ! & <Hc u;? $8He4$Yb-j  #- *6 KU]t -} :Nb kx -   !#E IW^ ft  -   -9V[ a!n!# 9U;=<= J P\`e(j, -J _l{  ;,F U bn   *GYm+  # B NZo6 7>\q    ) -/:? T` -w  4Ify.E  ,9 Q _m    -   -");C -JUj z 5Tk  0 JVq=6S'J{  )8M` t -"6)N d Kx -= - *  V ? `9 2  }4/  # /<;E  # ' < J&W~ -"%DZj+ 8>O Vc jw}  8v^e}   !+F_|    #, 5A(R{#     - ( -4?O1X75H;A!} ai*B=g    ) 5 !1!0!0"1J"(|"C""Sj#,#2# $A?%A%*%%& '(d)**[+,-G--.2// 0-0 -E0P0c0t0z0000 000 0001 11<1 Y2g2 ~222222223 3 /3<3P3 -`3k3p3y333;3;4<44 55 5666!6(60696W63p66666667 7F7[7 -{7 -77 7 7 7 7 7 7+7K8Q\88$G95l9P9G9-;:ji;o;eD<j<~=p=o>wu><>?*?>j?t?t@`@@~AAB -BB#B8B IBWB6YBoBCC C4C#FCjCG3D%{DDDDDD -D DD DE#E;E CEQEZE`EoExEEEE E E EEE EEF FAF GFTF[FcF fFpFwFFFFFFF FFF FFGG#G =G GG -TG_GeGtGGG GG GG GGGHHH $H.H 6H@H FHSHYH`H hHuH|HHH H HHH HH HHHH I$I-ICI cIpIvI|II -I II I -I I I I II JJJ -J(J1J :JFJOJ VJdJtJ{J J JJ JJ JJJJJ JJ KK&K7K(IKrKzKKK/KKK KL# L0LOLVL"fLL -LL LL -LL -LLL -LLLM MM-M5MDMHMNMQM`MdM -jMuM|MM5MM MMMMM M N N ?N`N -N NNNNNNNN N NNNN NN. O:OWOP)PIQ9iQTQDQR=RrRFSkJSKS:TA=T]TMT-+UCYU5UDU:V8SVV -VV -V VVV VVV -W W +W5W!RWtWW5WWW -WWX X*X1X8X ?X MX YX -gX -rX }X XX X XX XXSX7Y>Y.Y$&ZKZ QZ^ZdZ tZ~ZZZZZZZ[0[?[ U[c[r[[[[[![2\CC\\"\ \\\ ]#]9]P]n]]]"]] -]]^ ^%^B^ -W^ -b^ m^z^^P^1_4!`V`\`p`w` 2afOfCCg5ghg&hEh4chhHh'h(#i%Liri i i iiiij%j"Bj ej8jjjj j#j!#kEk[kpkkk k kkkk kk;k9*l7dl7l>l6m2Jm"}mm;m&m n"=nj`nFn"o"5o7Xo5o oo"op#p=pTp -[pfpwp }pp pp%p pp p -q!q -9q$Dqiqq qqq q -q qq,r3rDr`ryr!r%rrrs'sBsSs \shspsss tt%.t%Tt.ztttttu)u -Hu-Suu1uu(u#v'9v)av$v"v1vw ww4wLwaw1zwAww+x3xNxkxsx xx xxxxyyy8yHyWy ^y lyvy=}yyyyyyyyz&z:zKz_znzzz zzzz zzz{!{:{L{d{{{{{{{{{ |#$|"H|k| | | |%| | || }} },}4} =}K}`}z}}}} }}}}}~~*~WA~C~ ~ ~~ -)!1Sn    - 90$jǀ׀!  -)4<E_t ׁ 4N]|ւ  ) EQ.n(*  **Kv 0- $ 7*X#Å#ޅ P#ct؆߆ (4 P*Z!ɇ݇  -&"J)AtGI?H?}ȉAFFLϊ>FM(}v(0 BO_ s  -Ս-I fp.yǎ !4<M \j~#  Ϗ -$/7 -=ZH Xgđӑ -ؑ@$: PZ ky ~  Ӓ'rjH p06}? -Ӗޖ   '+5,a -  ̗җٗ =PT n | - ʘԘۘ  5DIOZ  ę љSݙ*1W\ /Ϛ - - - ! 0 :D]roY8< -u˜ &/He%y -b /< N[l}ў ڞ -+HZy#۟  7+9c ՠ ,@)P)z22ס/ -2:m9 -آ-4+L -xgӣ ; GSW_ev 3ԥ    -"!-OoϦަ - &7[?>   - '/ 5 BPj s'Ȩب '7 NZo x ̩ *H&^ ˪Ԫ۪->Zvӫ !&CLTZa3Ȭ    +>Qf}ʭ  -8 Op ϮԮ ڮ  * 6@Q a o ߯  /8Qi - ԰"'6>QhxZX G -U `l ڲ ȳ۳1D#T x##%-@PWfZv-ѵ: -:,ErŶ5! '3 DP Y es | -ŷͷ5.P   ɸ -   -! ,8 AOX"`  #չ   9 IV]AeA "!#Dh6;r{h - 'B/X - Ͼ ޾ ֿ   & -F -Q\nr !  * 6 -D O\l '$%#8!\"~ 8W8@7y7 ,9K V<Na#D=\m |'  #>F]u% -.C$Y=~  - .  ; HUqG! & 5 BN`s -  * =^n2$ E%\7X*<Xr     -%@ -HS[bs -{7H_x)! 8I`z!;WOlB_[_ -#7I] q~!"##:Un3GT{EK=bx)CNeCP8A@ M $0@E KWj  :$5HYix + 7EXq+#(8Qjy739 Q ]kr  A}   !#(Lg!" #Aahx  # !+J -Yd t~ -  CC>CXF!f$ckM: "? 5E+q6F4}232LL_0|@UW.Jy;=3"GSRK9 84B"w 5 & -5@Uh$ ]r # !/G] o} 8= IKDS $'7<_    Q (m  -  -       -  - . - -b9 -u - 3 P i7 J + zpg}pnNNEN}aN2UYa jx>6-wFy%  %4 D -NY,j  (/ @ -N Yf hr   -7@Rg{    "7Uh }      & , -: E Q]pv} - -  - )!0+R~      - 7EKRc -v     - / 4 <  K X w    .   -! !"!48!m!! !!-!%!!!0 " ="I"R" X"e" -{" """" "" -""" -# # #%#(#.# 0#>#A# I#V# ^#h#9l## #### ##$$$(C$#l$ -$ $$$$$$$$ $ $$$$$v %5%%yK6kJ/A;C(EQzQ-WG 1h@AYi;mFfrnF7x{ I:++[=+x^er`t -5|L<<Dd$y hf \FhK1QuuzZqS8xp~ , j+C5+s y=?M-u(4c>dPT33D|uz A4agVB0i:t[qqN#K~'@pMDjSB=,gH -\GUT4Jr 4Z{]?L."i<:rF)d&*#3)JtXU&NOP$'BR(B([BY6jjE#.^1^VmI_RR,~!(5lEK ? a"nh{niUOLp --s2"Km\'XFbMWi?@XcK`W:_b!]oo;\)s^5~Dx%'[N|G$$"<-L#`/*WVfX0u{ (@bkz'%7!|P gjHC}N3/MgT:^nO*QKH$e_Il?-"pTe+yMv94S\E*R`)S'8 gm}Uw>6XxeO97a="9E]0U__ Wcu0  S&wzD~tYL -:#@C=OJYf{`Atd&N ~rGv,b8sAkmY*9:@x.>}dd0eIh` oJCPDC6LW]i,sqyP% vEcF8T5Yl9]aqlj~mo7,bbzH jsTh bo;)qHC qB, X6TsfHL532V0|%3V6*R-<9JN)]v.c%yw \;S?!nn&4A!8%dp lHRwI|WkV.y2/ ^ - 51^>uo1vA [fD=&<}pv;>hwJ/kgZ&kaGQ?7}Z #`oE}P>[.!c -QfZG2aBi1$  {/cz3$Mvl{ amO)Q<1'@=Xx7e -4rVt|S _}N8/;ZlU% OPgp-0eZ9.IRI*\"U>2n!kY+t#(r7_[w6MG82Fw]2 +? +L&ǩG96GpANiI<k@\2;ЬP O]29-9H;7  +  + +' 2>N +]hk{ +ʯ02CV_g +~ +Ȱ +Ӱ ް    $ 0K=.1>!p²ղ +   + +@ S]l +u̳޳*6.eߴ;Pdx +ӵܵ  " /9I1^3ķʷݷ +p{Ÿ̸ ۸ +&A7Jy<Ĺ  -F^nv {̺ݺ +2&H$o ƻ"λ  +(7H\7p ɼҼټ   & + 9CL iw C7߽=@U6d;2P3f<#!1N h t~,8e  )2 ; IVjqx ~ .5567l8),4P2m OAH%&41 #> bp  + # 9F0_  +4GZc s  +$ -Nh   )2 +D O] +|),!#4#X!|%. %6J]p#-%*?W \j + + +   +'2-9g n{  (4 D P^ek%q!  & 8FU er  +% +0-; iu |  + " 5C] fp ?8 (4=O `jy + + +  +>9 x/ ?L [hm   ++6 +NY q  +*<E.\#"&3Z p|,# !';cFT0   + (IXgy $=6<FA79c79B=fV>CJ@g*/A Q [g y (<Xs - +; FT Y +f q{  + 4Pdjq y +O + +  .M`s +    +5uDc_ zKQrY &;&L's B  ") .;J\bz + % * 7C^u +H +  + H!_B1   '7 +GR W c`oC0E KX +j +u ( +9 +DHO +    &49 A NZb  # '5 G U b3p6" #-EY h$r (+@)l*!/%,;*Lw' +,EX o 8S dn~! (?Pe- +* :F3L + ;Th y @-"P bo t   - A K Wc z  +  !-CK^ckt|  +#06>[x   +    +>Y"p $,>Ra p|    +  +  % /9Rax  + + ,> R \fo    +   ) 5,An!) " : HTYho  BA2 DNUd t=L^fo +t   "( !K m           +V ++h + +( + +" + +     8 %P  +v       +         # 1 7 J  _  k  w  & ,     +  + + H f y    +    +       #/ D!Pr   $;,?h4- 3=F V#`-   + #/ $*@ +X c m{  !   +@ Vb +u    !%G!e# 9U=^<= )-2(7,` +J ,9H b o|  ;1K Z gs     +/L^r+      ,8#O s 6 *77o    4A _k +  +  + +=Xt 4 * = Z m | . E  ! ! *!7! O! ]!k!! ! ! ! +!! ! +! !!" +"""+"2"D"L" +S"^"s" """""" ##'#>#U#t## ### ### $$6$P$ j$v$$$$=$6%SG%J%% %&&#&=& L&X&g&|&& &&&& &&'+'F'^'r')'(NQ((K)=*>****+?5,`u,2, -.4///!0 0000011'1-1J1 _1 k1x1;11 111 12 2+2;2#O2 s22 2 2&22 +2233"*3M3]3m3~33333334!454:4J4_4+e4444 44 4 +44444 4 585vK5555 5 66 6!96[6s666666777#777Q7 X7 e7 q7 7777 77 7777!808(D8m8#v8 8 88 8 88889 +9 !9 +-989H91Q9791959H#:;l:!:: ;;<}==*=B>)?@/@@4A :AHA)OA5yAA1_B0B0B1B(%CCNCCSD,gD2D DAEA*F*lFFCG 1H>I JJ\KLLMGHNNyO2iPP P-P +PP QQ#Q(Q7Q=QOQ hQuQQ Q QQQQ QQ +Q<Q 4SBS YScSuSSSSSSSS +TT+T +;TFTKTTT3kT;T;TUU VV VVVVVW WW2W3KWWWWWWWWWFW6X +VX +aXlX qX X X X X X X X+XKYQSYY$>Z5cZPZGZ-2[j`\o\e;]j]~ ^p^o^wl_<_?!`>a`t`ta`aaubb0b,c2c9cKc`c qcc6coc(d*d1d49d#nddG[e%eeeeee +f ff #f-f#?fcf kfyfffffffffff f gg 2gqOqVqlq }qqqqqq +q +q +qrr rr#r +*r5rFrLr +Ur`rfrortrrrrrrrrrrr +rrrs5sO.$  ,BR cπ *>[x!2ށCU"t ۂ<Rh" +̃Ճ  +% +0 ;HWPl14$*>E  +(B` f rƇGۇM#Pq ˆ ̈؈  ': B NZ w ljӉ,6(c  -Ŋ  ++ +4 ?L]6q   +̋׋   #49 H R^} OČ>OSC5h4ÎH'[(%ҏ   -Gg" Ő8;B S#_!Б  $+ 3=$Ns ';9717i>62"Jm;&Ɣ" +j-F"ߕ"7%5] "Ė +! +(3EXix  %͗     !-D +\$g Ř٘  + ,8ev!Ǚ%-@Yt $- CO%`%.ۛ$6P)e +-Ȝ1(3#\')$ҝ"1L Tbv1՞AI+bß  1>Qov͠ܠ  = @J[c{áԡ2FU gqx ڢ4G[p ̣#"4 N o |%  Ť Ԥޤ  )CL^r ɥ٥*ߥW +Cb  ¦ئ +!2M ^ k y + ħЧ9$InŨ!ب * +6AIRlϩ -A[jŪڪ  "+)? iu.ի(۫*/ N*o ˬ0׬-6: IW j*#ҭ# 5PVc  $8P gs *!į0 6 +C&NuJ|AǰG IQ??۱}AF۲L"o>F4M{}ɴGYh{ ѵ   +3H\pݶ  .)Xwη  &7 FTh{#    =Zntx + +Z ºߺ'6 +;@F  ʻ ۻ    #0CTh.j #p/}- +CN `n v +, +J T] ft z   ) 7A[ +q +|    +O  +p {  S*W- / + +  ' 1;TrfY83 +lw + <%P +vb # 5BSd}    !5Rd#  &759m-  # 6DLi))22-/`29 +.9K-\+ +' +>IZu" 0F#`  +$%Ji~ g&   36 ER k x +!"1@ +FQo[> DRf k +x  $$7Q Zg'w  5AV_ {   * K&a 0A]y'  4!B&d3 , 9 FPX gs 1 GTe  & +7BTY _ iv     %3Dd s  /')A ]-~ )@PZkX  +- 8DWp  gz# 3#T x##6 ? LYl|Z- +:5 +p,{ +5(^ fp v     + +' A NZs5.  +! &Gfy +  +  " &2 H#Tx     *1A9A{ "#<6FOhW + '/, +\gx ~      + +%0BF` q{! # / += HUe |'$% #1!U"w 8W8V77",49a VRdw# ?DT ' "0DUev%88 +q|$=# a +o z.  G-!u  !3GZ +t   2Sc~&%2=$p%7XM  #DL[ n {  + +"3L`q2)K!u4!GiO'Bw_[v +' ;Ha!w"##6O3(T\EK=C x ) $ + +N| e C1 8u A@. !& ,8K`g  :&9JZiy + 8FYr+#)9Rkz74: R ^ls   A}   !#5Yt!"/ 7A_  .'Go/#  +. 9F V`o +  CC GdCXFI!$ M  7!"E"h""# ##5#E# $6$4,%2a%3%2%L%H&_&0+'@\''UK(W(.(())*+,-?..S/1K11 243"&4 I45W44444 44 +4455-5E5[5o5$5555 55]5[7j7 77777#7 +8808F8 X8f8z8 888888=8I49~9D<:;;;;;;;;;$;' <<H<< <<<< << <Q<(L= +u= +====== = = += +>.>bA>u>?3?P?i?@J@+@z BBpCgCC}xDDvENENMFNF}FiGNG:HH]I*aIII IIIII>I,JJJJ6J-Kw4KFL%LM2M ;MEM NMXMgM wM +MM,MMM MMMN NN1NINXNpNNNNN +N N NN NN +OO8O RO \OhO qO{OO OO OOO%OO PPPP(P +1PQRQgQ }QQQ QQ QQ Q QRR6RIRdRyR*RR R +R RR RR +S"S4S GS SS`SqSS S SSSS S S SS S +S T +T T +T 7T ETQTdT zTTTTTTT TT +T +TU +UU *U7U +:U EURUZUpUUU!U+UUU U VVV V /V=VNV`V oV|V V +V VVV V V VVVWW*W +=WHWQWZWaWjWzWWW WW W WW WXX#X&X+X3X BXOXnXXXXX.X Y + YY,Y%BY4hYYYY YYY-Y%(ZNZWZ0hZ Z ZZ ZZZZ Z [[([B[_[ w[ +[ +[[ +[[ [ [[[[\ \ \ +'\2\7\Q\ +f\ q\ {\\\\ \\\ \\ \\9\ ] ]+]=]B] I]V]h]$](]#] +] ^ ^^^"^'^-^3^ :^ D^N^S^Z^b^vq^5^_Y,J'{z"6NovRgj.CE]nY00/#UTn%U5L:,w7g&|u^5qc-4$u}!v^) 0xm (-Phf3h3bB1%SlqXu($Ds 3K9e'(ju;M+n7q@ $\W@1L_yB4N9Ohy%M?&3ofsq~esp! Ol\F1b5X 2}c'`(Q]t@.!GKZhCad|8l Hu1wI yaM)P+Wyw\&F{%m6;$*![kQBvB!OVH?K#tY)-P  Y.hTM7p6Ga:m}LeRiHhq_>Jw45gkeZ/} '`UxzXG2JV @@V*xk_6m ,W+%^dl}A +O]V1wRD>,fXj~5Vgj2RSy0Hm^)W?\bGSI._m! +.86XUx<?}8~Kv8FcY>NMb$Tp7 +DI[ 3`I47?~`(uPIq 3H::jsS=0WfP+ESiWJJn/Q{ *'3 zw9Far]SDh2"~r&T z^#QiX|qc_6XxR E46[mSc>jev + c#M Ztnr +0DZ>J{K[ea#v[frCSr+ \o>A[*F,{bkH@]k<7CLc-p&L]/o +&9 @{NU:Kmd&pu4EDl^kFN`V>Z gn?i .ARI%r;QG!=P<#^d+<]gQ=o ,EDXf'QyTtgN 3<D=51  W.T4x~neOkt= 7U={Idf;<9BpBz#}A-"I+O(:)o-zi1HELVpKpsf| +0\E1ZCP"U?j/!/s_;*E2]R$=%Az|<(y*b2(Cb K;- O")cMFA-C`\/idb8$)lT`eOYhd\:k{,HBGo| +l% 5=x;x*r&TiLtv8_B~` +F2|5929'~gC  t"uzGwws"VoJN6M l?i[aL0dqNnPaZ}s|AYA*,_/7.G#>^'QWt8<R9 [$a vrU4Zj")Y:;J@y 8 Invalid option "%s" Usage: %s [option ... ] [file ... ] @@ -209,61 +249,62 @@ -i, --no-interface Run without a user interface. -s, --no-splash Do not show the startup window. -v, --version Output version information. -%d Layers%d dpi, %s%d layers%d minutes%d seconds%d x %d dpi, %s%d x %d pixels%g x %g %s%s Channel Copy%s Channel to Selection%s Message%s copy%s mask%s%sClick: extend selection%s%sDrag: move & compress(%0.3f, %0.3f, %0.3f)(None)(This console window will close in ten seconds) +%d Layers%d dpi%d dpi, %s%d layers%d minutes%d seconds%d x %d dpi%d x %d dpi, %s%d x %d pixels%g x %g %s%p%s Channel Copy%s Channel to Selection%s Message%s copy%s mask%s%sClick: extend selection%s%sDrag: move & compress(%0.3f, %0.3f, %0.3f)(None)(This console window will close in ten seconds) (Unnamed Buffer)(Unnamed Template)(Varies)(clean)(invalid UTF-8 string)(modified)(none)1 Layer1 layer16:1 (1600%)1:1 (100%)1:16 (6.25%)1:2 (50%)1:4 (25%)1:8 (12.5%)2:1 (200%)2D Transform...4:1 (400%)8:1 (800%)<%s><>For optimal GIMP performance, some settings may have to be adjusted.The GIMP - GNU Image Manipulation Program Copyright (C) 1995-2004 -Spencer Kimball, Peter Mattis and the GIMP Development Team.The GIMP tips file could not be parsed!Your GIMP tips file appears to be missing!A file named '%s' already exists.A_ngleAbout The GIMPActionActive FiltersAddAdd Alpha C_hannelAdd Alpha ChannelAdd AnchorAdd ChannelAdd Guide: Add GuidesAdd Horizontal GuideAdd La_yer Mask...Add LayerAdd Layer MaskAdd PathAdd StrokeAdd Text LayerAdd Vertical GuideAdd a Mask to the LayerAdd color from BGAdd color from FGAdd text to the imageAdd the current color to the color historyAdd the selected filter to the list of active filters.Add to the current selectionAdding theme '%s' (%s) -AdditionAdditional Input ControllersAdjust Brightness and ContrastAdjust Color BalanceAdjust Color CurvesAdjust Color LevelsAdjust brightness and contrastAdjust color balanceAdjust color curvesAdjust color levelsAdjust hue and saturationAdjust levels automaticallyAdjustmentAffect:Affected Area %sAirbrushAirbrush with variable pressureAl_pha to SelectionAlignedAlignmentAll ChannelsAll FilesAll Files (*.*)All image and undo data which doesn't fit into the Tile Cache will be written to a swap file. This file should be located on a local filesystem with enough free space (several hundred MB). On a UNIX system, you may want to use the system-wide temp-dir ("/tmp" or "/var/tmp").Allow completely transparent regions to be filledAllow completely transparent regions to be selectedAlphaAlpha to SelectionAlpha:An image of the choosen size will use more memory than what is configured as "Maximum Image Size" in the Preferences dialog (currently %s).An_imationAnchor Floating SelectionAnchor floating layerAngle:AntialiasingAppearanceApply Layer MaskApply Layer _MaskApply ThresholdAre you sure you want to delete '%s' from the list and from disk?Are you sure you want to delete template '%s' from the list and from disk?Ask for confirmation before closing an image without saving.Aspect Ratio:Attach ParasiteAttach Parasite to ImageAttach Parasite to ItemAuthor:AutoAuto-resize windowAutoloadAvailable FiltersAvailable Types:BackgroundBackground colorBackground color set to:Background: %d, %d, %dBackward (corrective)Base filled area on all visible layersBase selection on all visible layersBehindBevelBi-linearBlack & whiteBlack:BlendBlend: Blend: Invalid for indexed images.Blending...BlueBlue:BlurBlur or SharpenBorder ChannelBorder SelectionBorder selection byBrightness-ContrastBrightness-Contrast does not operate on indexed layers.BrushBrush EditorBrush FoldersBrush UIBrush:BrushesBrushes MenuBucket FillBuffersBuffers MenuBurnButtBy ExtensionCMYKC_alibrate...C_olumns:C_ombineCalibrate Monitor ResolutionCan't undo %sCan_vas Size...CancelCancel GuideCannot add layer mask of different dimensions than specified layer.Cannot add layer mask to a layer with no alpha channel.Cannot add layer mask to layer which is not part of an image.Cannot anchor this layer because it is not a floating selection.Cannot convert to a palette with more than 256 colors.Cannot create a new layer from the floating selection because it belongs to a layer mask or channel.Cannot create folder '%s': %sCannot create previewCannot crop because the current selection is empty.Cannot expand ${%s}Cannot float selection because the selected region is empty.Cannot raise a layer without alpha.Cannot save. Nothing is selected.Cannot stroke empty channel.Cannot stroke empty path.Canvas SizeCenter X:CenteredChange Background ColorChange Foreground ColorChange Image ResolutionChange Image UnitChange current layer or pathChange grid background colorChange grid foreground colorChange perspective of the layer or selectionChanging shortcut failed.ChannelChannel AttributesChannel Name:Channel cannot be lowered more.Channel cannot be raised higher.Channel to Sele_ctionChannel to SelectionChannel to selectionChannel:ChannelsChannels MenuCheck _size:Choose Stroke StyleCircleCl_earClearClear ChannelClick "Continue" to accept the settings above.Click "Continue" to create your personal GIMP folder.Click "Continue" to enter the GIMP user installation.Click "Continue" to proceed with the user installation.Click to connect this anchor with the selected endpoint.Click to create a new anchor. (try SHIFT)Click to create a new component of the path.Click to create a new path.Click to delete this anchor.Click to insert an anchor on the path. (try SHIFT)Click to make this node angular.Click to open up the path.Click to pick path to edit.Click to update preview -%s Click to force update even if preview is up-to-dateClick-Drag to change the shape of the curve. (SHIFT: symmetrical)Click-Drag to move the anchor around.Click-Drag to move the anchors around.Click-Drag to move the component around. (try SHIFT)Click-Drag to move the handle around. (try SHIFT)Click-Drag to move the path around.Click: selectClick: select Drag: moveClipboardClipped to bottom layerClipped to imageCloneClose %sClose this TabColorColor BalanceColor Display FiltersColor PickerColor Picker InformationColor balance operates only on RGB color layers.Color index:Color:Color_mapColoring _Type for SegmentColoring _Type for SelectionColorizeColorize operates only on RGB color layers.Colorize the ImageColorize the imageColormapColormap EditorColormap MenuColumns:CommentCon_trast:Configure Color Display FiltersConfigure E_xtended Input Devices...Configure GridConfigure Image GridConfigure Keyboard ShortcutsConfigure _Keyboard Shortcuts...Configure selected filterConfigure selected filter: %sConfirm Image SizeConfirm ScalingConfirm Text EditingConflicting ShortcutsConnect StrokesConstantConstraintsContextContext-dependent cursors are cool. They are enabled by default. However, they require overhead that you may want to do without.ContinueContributions byConvertConvert EdgeConvert Image to GrayscaleConvert Image to IndexedConvert Image to Indexed ColorsConvert Image to RGBConvert imageConvolveConvolve Type %sCopy NamedCopying file '%s' from '%s'...Copyright:Corrupt segment %d in gradient file '%s'.Could not create '%s': %sCould not create temporary file for '%s': %sCould not delete '%s': %sCould not find GIMP help browser.Could not open '%s' for reading: %sCould not open '%s' for writing: %sCould not open thumbnail '%s': %sCould not read %d bytes from '%s': %sCould not seek in XCF file: %sCould not start the GIMP help browser plug-in.Count:Cr_op LayerCreate New TemplateCreate a New ImageCreate a New LayerCreate a New TemplateCreate a new display for this imageCreate a new image from the selected templateCreate a new templateCreate and edit images or photographsCreate and edit pathsCreating folder '%s'...CropCrop & ResizeCrop & Resize InformationCrop ImageCrop LayerCrop imageCrop or Resize an imageCrop: Crosshair onlyCu_tCu_t Named...Cubic (Best)Current statusCursorCursor _mode:Curve TypeCurvesCurves for indexed layers cannot be adjusted.CustomCustom colorCutCut NamedCyanCyan:D_uplicate BrushD_uplicate ChannelD_uplicate GradientD_uplicate LayerD_uplicate PatternDark check colorDash dot dot...Dash dot...Dash pattern:DashedDate:DebugDefault Appearance in Fullscreen ModeDefault Appearance in Normal ModeDefault GridDefault Image GridDefault _interpolation:Default _threshold:Delete AnchorDelete Layer Mas_kDelete Layer MaskDelete ObjectDelete SegmentDelete TemplateDelete brushDelete channelDelete gradientDelete layerDelete saved options...Delete the selected bufferDelete the selected templateDelete this imageDeleting "%s" failed: %sDense dotsDesaturateDesaturate operates only on RGB color layers.DescriptionDesignDevice StatusDevicesDialogsDialogs MenuDiamondDifferenceDirect ColorDisable Layer MaskDiscard Text InformationDisplayDisplay NavigationDisplay _Filters...Display proceduresDisplay type:Displaying [%0.6f, %0.6f]DissolveDistance:Distance: %0.6fDitheringDivideDo a _fresh user installationDo you really want to reset all tool options to default values?Do you want to replace it with the image you are saving?Do_n't saveDockableDocument HistoryDocumentsDocuments MenuDodgeDodge or Burn strokesDodge/BurnDouble dashedDrag AnchorDrag AnchorsDrag CurveDrag HandleDrag PathDrag: moveDraw in inkDrawableDrawable proceduresDrop New LayerDrop New PathDue to lack of any fonts, text functionality is not available.Dump events from this controllerDuplicate brushDuplicate channelDuplicate gradientDuplicate layerDuplicate patternDuplicate the selected templateEEK: can't undoEdge BehaviourEdge-De_tectEditEdit Channel AttributesEdit Channel ColorEdit Color Palette EntryEdit Colormap EntryEdit Layer AttributesEdit Layer MaskEdit ModeEdit Palette ColorEdit Path AttributesEdit TemplateEdit brushEdit channel attributesEdit colorEdit colormap entry #%dEdit gradientEdit patternEdit proceduresEdit the selected templateEllipse SelectEmpty ChannelEmpty LayerEmpty PathEmpty Text LayerEmpty variable name in environment file %sEn_hanceEnable this controllerEnable to display a handy GIMP tip on startup.Enable to display tooltips.EnormousEnter a name for the merged paletteEnter a name for the saved optionsEnter a name for this bufferEnter a name for this templateEnter a new name for the saved optionsEnter location (URI):EnvironmentEnvironment FoldersEqualizeEqualize does not operate on indexed layers.Erase to background or transparencyEraserError ConsoleError Console MenuError saving XCF file: %sError while parsing '%s' in line %d: %sError while reading '%s': %sError while writing '%s': %sError writing XCF: %sError writing file '%s': +Spencer Kimball, Peter Mattis and the GIMP Development Team.The GIMP tips file could not be parsed!Your GIMP tips file appears to be missing!A file named '%s' already exists.A_ngleAbout The GIMPActionActive FiltersAddAdd Alpha C_hannelAdd Alpha ChannelAdd AnchorAdd ChannelAdd Color to ColormapAdd Guide: Add GuidesAdd Horizontal GuideAdd La_yer Mask...Add LayerAdd Layer MaskAdd PathAdd StrokeAdd Text LayerAdd Vertical GuideAdd a Mask to the LayerAdd color from BGAdd color from FGAdd layer maskAdd text to the imageAdd the current color to the color historyAdd the selected filter to the list of active filters.Add to the current selectionAdding theme '%s' (%s) +AdditionAdditional Input ControllersAdjust Brightness and ContrastAdjust Color BalanceAdjust Color CurvesAdjust Color LevelsAdjust brightness and contrastAdjust color balanceAdjust color curvesAdjust color levelsAdjust hue and saturationAdjust levels automaticallyAdjustmentAffect:Affected Area %sAirbrushAirbrush with variable pressureAl_pha to SelectionAlignedAlignmentAll ChannelsAll FilesAll Files (*.*)All image and undo data which doesn't fit into the Tile Cache will be written to a swap file. This file should be located on a local filesystem with enough free space (several hundred MB). On a UNIX system, you may want to use the system-wide temp-dir ("/tmp" or "/var/tmp").Allow completely transparent regions to be filledAllow completely transparent regions to be selectedAlphaAlpha to SelectionAlpha:An image of the choosen size will use more memory than what is configured as "Maximum Image Size" in the Preferences dialog (currently %s).An_imationAnchor Floating SelectionAnchor floating layerAnchor floating selectionAngle:Anti erase %sAntialiasingAppearanceApply Layer MaskApply Layer _MaskApply ThresholdApply layer maskAre you sure you want to delete '%s' from the list and from disk?Are you sure you want to delete template '%s' from the list and from disk?Ask for confirmation before closing an image without saving.Aspect Ratio:Aspect ratio:Attach ParasiteAttach Parasite to ImageAttach Parasite to ItemAttach parasiteAuthor:AutoAuto shrinkAuto-resize windowAutoloadAutomatically DetectedAvailable FiltersAvailable Types:B_uffersBackgroundBackground colorBackground color set to:Background: %d, %d, %dBackward (corrective)Base filled area on all visible layersBase selection on all visible layersBehindBevelBi-linearBlack & whiteBlack:BlendBlend: Blend: Invalid for indexed images.Blending...BlueBlue:BlurBlur or SharpenBo_rder...Border ChannelBorder SelectionBorder selection byBrightness-ContrastBrightness-Contrast does not operate on indexed layers.BrushBrush EditorBrush FoldersBrush UIBrush:BrushesBrushes MenuBucket FillBuffersBuffers MenuBurnButtBy ExtensionCMYKC_alibrate...C_olumns:C_ombineCalibrate Monitor ResolutionCan't undo %sCan_vas Size...CancelCancel GuideCannot add layer mask of different dimensions than specified layer.Cannot add layer mask to a layer with no alpha channel.Cannot add layer mask to layer which is not part of an image.Cannot anchor this layer because it is not a floating selection.Cannot convert to a palette with more than 256 colors.Cannot create a new layer from the floating selection because it belongs to a layer mask or channel.Cannot create folder '%s': %sCannot create previewCannot crop because the current selection is empty.Cannot expand ${%s}Cannot float selection because the selected region is empty.Cannot raise a layer without alpha.Cannot save. Nothing is selected.Cannot stroke empty channel.Cannot stroke empty path.Canvas SizeCenter X:CenteredChange Background ColorChange Foreground ColorChange Image ResolutionChange Image UnitChange current layer or pathChange grid background colorChange grid foreground colorChange perspective of the layer or selectionChanging shortcut failed.ChannelChannel AttributesChannel Name:Channel cannot be lowered more.Channel cannot be raised higher.Channel to Sele_ctionChannel to SelectionChannel to selectionChannel:ChannelsChannels MenuCheck _size:Choose Stroke StyleCircleCl_earClearClear ChannelClear Undo HistoryClear all textClear errorsClear undo history...Click "Continue" to accept the settings above.Click "Continue" to create your personal GIMP folder.Click "Continue" to enter the GIMP user installation.Click "Continue" to proceed with the user installation.Click to connect this anchor with the selected endpoint.Click to create a new anchor. (try SHIFT)Click to create a new component of the path.Click to create a new path.Click to delete this anchor.Click to insert an anchor on the path. (try SHIFT)Click to make this node angular.Click to open up the path.Click to pick path to edit.Click to update preview +%s Click to force update even if preview is up-to-dateClick-Drag to change the shape of the curve. (SHIFT: symmetrical)Click-Drag to move the anchor around.Click-Drag to move the anchors around.Click-Drag to move the component around. (try SHIFT)Click-Drag to move the handle around. (try SHIFT)Click-Drag to move the path around.Click: selectClick: select Drag: moveClipboardClipped to bottom layerClipped to imageCloneClose %sClose all TabsClose all tabs?Close this TabCo_py PathColo_rsColorColor BalanceColor Display FiltersColor PickerColor Picker InformationColor balance operates only on RGB color layers.Color eraseColor index:Color:Color_mapColor_space:Coloring _Type for SegmentColoring _Type for SelectionColorizeColorize operates only on RGB color layers.Colorize the ImageColorize the imageColormapColormap EditorColormap MenuColumns:Comme_nt:CommentCon_trast:Configure Color Display FiltersConfigure E_xtended Input Devices...Configure GridConfigure Image GridConfigure Keyboard ShortcutsConfigure _Keyboard Shortcuts...Configure selected filterConfigure selected filter: %sConfirm Image SizeConfirm ScalingConfirm Text EditingConflicting ShortcutsConnect StrokesConstantConstraintsContextContext-dependent cursors are cool. They are enabled by default. However, they require overhead that you may want to do without.ContinueContributions byConvertConvert EdgeConvert Image to GrayscaleConvert Image to IndexedConvert Image to Indexed ColorsConvert Image to RGBConvert imageConvolveConvolve Type %sCopy NamedCopy _VisibleCopying file '%s' from '%s'...Copyright:Corrupt segment %d in gradient file '%s'.Could not create '%s': %sCould not create temporary file for '%s': %sCould not delete '%s': %sCould not find GIMP help browser.Could not open '%s' for reading: %sCould not open '%s' for writing: %sCould not open thumbnail '%s': %sCould not read %d bytes from '%s': %sCould not seek in XCF file: %sCould not start the GIMP help browser plug-in.Count:Cr_op LayerCreate New Doc_kCreate New TemplateCreate a New ImageCreate a New LayerCreate a New TemplateCreate a new display for this imageCreate a new image from the selected templateCreate a new templateCreate and edit images or photographsCreate and edit pathsCreating Preview ...Creating folder '%s'...CropCrop & ResizeCrop & Resize InformationCrop ImageCrop LayerCrop imageCrop or Resize an imageCrop: Crosshair onlyCu_tCu_t Named...Cubic (Best)Current _StatusCurrent statusCursorCursor _mode:Curve TypeCurvesCurves for indexed layers cannot be adjusted.CustomCustom colorCutCut NamedCyanCyan:D_uplicate BrushD_uplicate ChannelD_uplicate GradientD_uplicate LayerD_uplicate PathD_uplicate PatternD_uplicate Template...Dark check colorDarken onlyDash dot dot...Dash dot...Dash pattern:DashedDate:DebugDefault Appearance in Fullscreen ModeDefault Appearance in Normal ModeDefault GridDefault Image GridDefault _interpolation:Default _threshold:Delete AnchorDelete Layer Mas_kDelete Layer MaskDelete ObjectDelete SegmentDelete TemplateDelete brushDelete channelDelete gradientDelete layerDelete pathDelete saved options...Delete the selected bufferDelete the selected templateDelete this imageDeleting "%s" failed: %sDense dotsDesaturateDesaturate operates only on RGB color layers.DescriptionDesignDevice StatusDevicesDialogsDialogs MenuDiamondDifferenceDirect ColorDisable Layer MaskDiscard Text InformationDisplayDisplay NavigationDisplay _Filters...Display proceduresDisplay type:Displaying [%0.6f, %0.6f]DissolveDistance:Distance: %0.6fDitheringDivideDo a _fresh user installationDo you really want to reset all tool options to default values?Do you want to replace it with the image you are saving?Do_n't saveDockableDocument Histor_yDocument HistoryDocumentsDocuments MenuDodgeDodge or Burn strokesDodge/BurnDouble dashedDrag AnchorDrag AnchorsDrag CurveDrag HandleDrag PathDrag: moveDraw in inkDrawableDrawable proceduresDrop New LayerDrop New PathDue to lack of any fonts, text functionality is not available.Dump events from this controllerDuplicate brushDuplicate channelDuplicate gradientDuplicate layerDuplicate pathDuplicate patternDuplicate the selected templateEEK: can't undoE_xport Path...E_xtra SmallEdge BehaviourEdge-De_tectEditEdit Channel AttributesEdit Channel ColorEdit Color Palette EntryEdit Colormap EntryEdit Layer AttributesEdit Layer MaskEdit ModeEdit Palette ColorEdit Path AttributesEdit TemplateEdit brushEdit channel attributesEdit colorEdit colormap entry #%dEdit gradientEdit path attributesEdit patternEdit proceduresEdit the selected templateEllipse SelectEmpty ChannelEmpty LayerEmpty PathEmpty Text LayerEmpty variable name in environment file %sEn_hanceEnable this controllerEnable to display a handy GIMP tip on startup.Enable to display tooltips.EnormousEnter a name for the merged paletteEnter a name for the saved optionsEnter a name for this bufferEnter a name for this templateEnter a new name for the saved optionsEnter location (URI):EnvironmentEnvironment FoldersEqualizeEqualize does not operate on indexed layers.Erase to background or transparencyEraserError Co_nsoleError ConsoleError Console MenuError saving XCF file: %sError while parsing '%s' in line %d: %sError while reading '%s': %sError while writing '%s': %sError writing XCF: %sError writing file '%s': %sError writing to '%s': %sError writing to temporary file for '%s': %s No file has been created.Error writing to temporary file for '%s': %s -The original file has not been touched.ErrorsEventExpanded as necessaryExport Path to SVGExport the active pathExposure:Extended Input DevicesExtensionsFG to BG (HSV clockwise hue)FG to BG (HSV counter-clockwise)FG to BG (HSV)FG to BG (RGB)FG to TransparentFG/BGFG/BG ColorFade outFailed to import paths from '%s': %sFancyFatal parse error in brush file '%s': File appears truncated.Fatal parse error in brush file '%s': File is corrupt.Fatal parse error in brush file '%s': Not a GIMP brush file.Fatal parse error in brush file '%s': Unknown GIMP brush version.Fatal parse error in brush file '%s': Unknown depth %d.Fatal parse error in brush file '%s': Unknown version %d.Fatal parse error in brush file '%s': Unsupported brush depth %d +The original file has not been touched.ErrorsEventEx_tra LargeExpanded as necessaryExport Path to SVGExport the active pathExposure:Extended Input DevicesExtensionsFG to BG (HSV clockwise hue)FG to BG (HSV counter-clockwise)FG to BG (HSV)FG to BG (RGB)FG to TransparentFG to transparentFG/BGFG/BG ColorFade outFailed to import paths from '%s': %sFancyFatal parse error in brush file '%s': File appears truncated.Fatal parse error in brush file '%s': File is corrupt.Fatal parse error in brush file '%s': Not a GIMP brush file.Fatal parse error in brush file '%s': Unknown GIMP brush version.Fatal parse error in brush file '%s': Unknown depth %d.Fatal parse error in brush file '%s': Unknown version %d.Fatal parse error in brush file '%s': Unsupported brush depth %d GIMP brushes must be GRAY or RGBA.Fatal parse error in gradient file '%s': File is corrupt.Fatal parse error in gradient file '%s': Not a GIMP gradient file.Fatal parse error in palette file '%s': Missing magic header.Fatal parse error in palette file '%s': Missing magic header. Does this file need converting from DOS?Fatal parse error in palette file '%s': Read error in line %d.Fatal parse error in pattern file '%s': Could not read %d bytes: %sFatal parse error in pattern file '%s': Unknown pattern format version %d.Fatal parse error in pattern file '%s: Unsupported pattern depth %d. -GIMP Patterns must be GRAY or RGB.Feather ChannelFeather SelectionFeather selection byFileFile OperationsFile TypeFile existsFile is truncatedFill ChannelFill Opacity:Fill Type %sFill with BG ColorFill with FG ColorFill with PatternFill with TransparencyFill with WhiteFill with _background colorFill with a color gradientFill with a color or patternFilledFilte_rsFinal, Merged Layer should be:Finding Contiguous RegionsFinding Similar ColorsFit image in windowFit to windowFixed sizeFlatten ImageFlipFlip ChannelFlip LayerFlip PathFlip Text LayerFlip Type %sFlip the layer or selectionFlip...Flipping...Float SelectionFloating Selection to LayerFloating selectionsFocusFolderFoldersFont FoldersFont UIFontsFonts MenuFor a proper GIMP installation, a folder named '%s' needs to be created.ForegroundForeground & background colors. The black and white squares reset colors. The arrows swap colors. Double click to open the color selection dialog.Foreground colorForeground color set to:Foreground: %d, %d, %dForward (traditional)Free SelectFree selectFreehandFrom _ThemeFrom _windowing system (currently %d x %d dpi)From left to rightFrom right to leftFrom themeFullscr_eenFuzzy SelectGIMPGIMP ExtensionGIMP MessageGIMP Performance TuningGIMP Plug-InGIMP StartupGIMP Text EditorGIMP Tip of the DayGIMP User InstallationGIMP XCF imageGIMP could not initialize the graphical user interface. +GIMP Patterns must be GRAY or RGB.Feather ChannelFeather SelectionFeather selection byFileFile Open _DialogFile OperationsFile TypeFile existsFile is truncatedFill ChannelFill Opacity:Fill Type %sFill with BG ColorFill with B_G ColorFill with FG ColorFill with P_atternFill with PatternFill with TransparencyFill with WhiteFill with _FG ColorFill with _background colorFill with a color gradientFill with a color or patternFilledFilte_rsFinal, Merged Layer should be:Finding Contiguous RegionsFinding Similar ColorsFit Image to WindowFit image in windowFit image to windowFit to windowFixed sizeFlatten ImageFlipFlip ChannelFlip LayerFlip PathFlip Text LayerFlip Type %sFlip _HorizontallyFlip _VerticallyFlip imageFlip the layer or selectionFlip...Flipping...Float SelectionFloat selectionFloating Selection to LayerFloating selection to layerFloating selectionsFocusFolderFoldersFont FoldersFont UIFontsFonts MenuFor a proper GIMP installation, a folder named '%s' needs to be created.ForegroundForeground & background colors. The black and white squares reset colors. The arrows swap colors. Double click to open the color selection dialog.Foreground colorForeground color set to:Foreground: %d, %d, %dForward (traditional)Fr_om PathFree SelectFree selectFreehandFrom _ThemeFrom _windowing system (currently %d x %d dpi)From left to rightFrom right to leftFrom selectionFrom themeFullscr_eenFuzzy SelectGIMPGIMP ExtensionGIMP MessageGIMP Performance TuningGIMP Plug-InGIMP StartupGIMP Text EditorGIMP Tip of the DayGIMP User InstallationGIMP XCF imageGIMP could not initialize the graphical user interface. Make sure a proper setup for your display environment exists.GIMP help browserGIMP is not properly installed for the current user. User installation was skipped because the '--no-interface' flag was used. -To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Get Monitor ResolutionGiganticGimprc proceduresGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient:GradientsGradients MenuGrayGrayscaleGreenGreen:GridGrow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)HTML notation:H_eight:H_elp browser to use:Handle position: %0.6fHard edgeHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHelp proceduresHex:HighlightsHinting alters the font outline to produce a crisp bitmap at small sizesHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB color layers.Hue:HugeI_mageI_nterpolation:I_nterval:IconIcon & descIcon & textIf available, hints from the font are used but you may prefer to always use the automatic hinterIf you don't save the image, changes from the last %s will be lost.Illegal variable name in environment file %s: %sImageImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage ThumbnailsImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage maskImage resolution is out of bounds, using the default resolution instead.Image sourceImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImported PathIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorIndexed Color ConversionInfo WindowInitial zoom _ratio:Initialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' -InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstallation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateInterfaceInternal GIMP procedureInternal ProceduresInterpolation:Intersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Is this what you want to do?It seems you have used GIMP 2.0 before.Justify:Keep TransparencyKeep aboveKeep aspect ratioKeep transparencyKey shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard ShortcutsLTRLandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _TopLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLineLine Width:Line _Style:Line style used for the grid.LinearLoadLoad CurvesLoad LevelsLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower channelLower channel to bottomLower layerLower layer to bottomM_asterMa_pMagentaMagenta:MagnifyMake _transparentManage Loadable ModulesMarching _ants speed:Mask Opacity:Matrix:Max Depth:Maximum _filesize for thumbnailing:Maximum color differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMedian:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge _Visible Layers...Merge layersMessage proceduresMessage repeated %d times.Message repeated once.MidtonesMigrate User SettingsMinimal number of _undo levels:MiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMoveMove AnchorsMove ChannelMove GuideMove Guide: Move LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove ToolMove layers & selectionsMove selectionMove the current layerMove the current pathMove the selected filter downMove the selected filter upMove: MultiplyN_umber of colors:Na_vigation WindowNameName:NavigationNew ChannelNew Channel ColorNew Channel OptionsNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channel with last valuesNew channel...New gradientNew importNew layer with last valuesNew layer...New paletteNew patternNo brushes available for use with this tool.No filter selectedNo longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of layers:O_ther...OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset by x/_2, y/2Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:Open ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the pattern selection dialogOpening '%s' failed: +To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Get Monitor ResolutionGiganticGimprc proceduresGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient file '%s' is corrupt: Segments do not span the range 0-1.Gradient:GradientsGradients MenuGrayGrayscaleGreenGreen:GridGrow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)HTML notation:H_eight:H_elp browser to use:Handle position: %0.6fHard edgeHard lightHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHelp proceduresHex:HighlightsHinting alters the font outline to produce a crisp bitmap at small sizesHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB color layers.Hue:HugeI_con & TextI_mageI_mport Path...I_nterpolation:I_nterval:IconIcon & descIcon & textIf available, hints from the font are used but you may prefer to always use the automatic hinterIf you don't save the image, changes from the last %s will be lost.Illegal variable name in environment file %s: %sImageImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage ThumbnailsImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage maskImage resolution is out of bounds, using the default resolution instead.Image sourceImage typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport pathsImported PathIn_kIn_vertIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorIndexed Color ConversionInfo WindowInitial zoom _ratio:Initialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' +InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstallation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Is this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep transparencyKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard EventsKeyboard ShortcutsLTRLandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _TopLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine Width:Line _Style:Line style used for the grid.LinearLinked itemLoadLoad CurvesLoad LevelsLoad curves settings from fileLoad levels settings from fileLoad text from fileLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower channelLower channel to bottomLower layerLower layer to bottomM_asterM_ove to Screen...Ma_pMagentaMagenta:MagnifyMake _transparentManage Loadable ModulesMarching _ants speed:Mask Opacity:Matrix:Max Depth:Maximum _filesize for thumbnailing:Maximum color differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMedian:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge _Visible Layers...Merge _Visible PathsMerge layersMessage proceduresMessage repeated %d times.Message repeated once.Messages are redirected to stderr.MidtonesMigrate User SettingsMinimal number of _undo levels:MiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMoveMove AnchorsMove ChannelMove Floating SelectionMove GuideMove Guide: Move LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove ToolMove itemMove layers & selectionsMove selectionMove the current layerMove the current pathMove the selected filter downMove the selected filter upMove: MultiplyN_umber of colors:Na_vigationNa_vigation WindowNameName:NavigationNew ChannelNew Channel ColorNew Channel OptionsNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channel with last valuesNew channel...New gradientNew importNew layer with last valuesNew layer...New paletteNew path with last valuesNew path...New patternNo brushes available for use with this tool.No filter selectedNo linear gradients found in '%s'No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of layers:O_ther...OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset by x/_2, y/2Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the pattern selection dialogOpen the selected entryOpening '%s' failed: %sOpening '%s' failed: %sOptions: -Origin X:Original Width:Other (%s) ...OutlineOutput LevelsOverlayPDB calling error for procedure '%s': +Origin X:Origin Y:Original Width:Other (%s) ...OutlineOutput LevelsOverlayPDB calling error for procedure '%s': Argument #%d type mismatch (expected %s, got %s)PDB calling error: -procedure '%s' not foundPack my box with -five dozen liquor jugs.PaintPaint Options Shared Between ToolsPaint Tool proceduresPaint Tool:Paint fuzzy brush strokesPaint hard edged pixelsPaint using Patterns or Image RegionsPaintbrushPalettePalette EditorPalette Editor MenuPalette FoldersPalette UIPalette _Name:Palette _filePalettesPalettes MenuParasite proceduresParasitesParsing '%s' -PastePaste Buffer _IntoPaste Buffer as _NewPaste the selected bufferPaste the selected buffer as new imagePaste the selected buffer into the selectionPasted LayerPathPath AttributesPath Name:Path cannot be lowered more.Path cannot be raised higher.Path to SelectionPathsPaths MenuPatternPattern FoldersPattern UIPattern sourcePatternsPatterns MenuPe_ncilPencilPercentage of width of brushPercentile:Personal GIMP FolderPerspectivePerspective Transform InformationPerspective...Pick Mode %sPick a layer or guidePick a pathPick colors from the imagePixel dimensions:Pixel valuesPixelsPixels:Plase make sure the menu XML files are correctly installed.Please wait while your personal GIMP folder is being created...Please wait...Plug-InPlug-In EnvironmentPlug-In FoldersPlug-In could not open imagePlug-In could not save imagePlug-In crashed: "%s" +procedure '%s' not foundP_atternsPack my box with +five dozen liquor jugs.PaintPaint Options Shared Between ToolsPaint Tool proceduresPaint Tool:Paint _ModePaint fuzzy brush strokesPaint hard edged pixelsPaint using Patterns or Image RegionsPaintbrushPal_ettesPalettePalette EditorPalette Editor MenuPalette FoldersPalette UIPalette _Name:Palette _filePalettesPalettes MenuParasite proceduresParasitesParsing '%s' +PastePaste Buffer _IntoPaste Buffer as _NewPaste Pat_hPaste _IntoPaste as _NewPaste the selected bufferPaste the selected buffer as new imagePaste the selected buffer into the selectionPasted LayerPathPath AttributesPath Name:Path _ToolPath cannot be lowered more.Path cannot be raised higher.Path to Sele_ctionPath to SelectionPath to selectionPathsPaths MenuPatternPattern FoldersPattern UIPattern sourcePatternsPatterns MenuPe_ncilPencilPercentage of width of brushPercentile:Personal GIMP FolderPerspectivePerspective Transform InformationPerspective...Pick Mode %sPick a layer or guidePick a pathPick black pointPick colors from the imagePick gray pointPick white pointPixel dimensions:Pixel valuesPixelsPixels:Plase make sure the menu XML files are correctly installed.Please wait while your personal GIMP folder is being created...Please wait...Plug-InPlug-In EnvironmentPlug-In FoldersPlug-In could not open imagePlug-In could not save imagePlug-In crashed: "%s" (%s) The dying Plug-In may have messed up GIMP's internal state. You may want to save your images and restart GIMP to be on the safe side.Plug-In returned SUCCESS but did not return an imagePlug-InsPlug-inPlug-ins and extensions are external programs run by the GIMP which provide additional functionality. These programs are searched for at run-time and information about their functionality and mod-times is cached in this file. This file is intended to be GIMP-readable only, and should not be edited.PolygonalPortraitPosition: %0.6fPosterizePosterize (Reduce Number of Colors)Posterize _levels:Posterize does not operate on indexed layers.PreferencesPressure sensitivityPressure:PreviewPreview is out of datePreviewsPrint SizePrint size:Problems parsing the text parasite for layer '%s': %s Some text properties may be wrong. Unless you want to edit the text layer, you don't need to worry about this.Procedural DatabaseProcedural databaseProgressPseudo ColorPurpose:QualityQueryQuerying new Plug-insQuerying plug-in: '%s' -Quick MaskQuickMaskQuit The GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB ColorRGB-emptyRGBA (%0.3f, %0.3f, %0.3f, %0.3f)RTLR_e-show "%s"RadialRadius:Raise ChannelRaise Channel to TopRaise Channel to _TopRaise LayerRaise Layer to TopRaise PathRaise Path to TopRaise channelRaise channel to topRaise layerRaise layer to topRaise this image's displaysRaise window if already openRateRate:Re-Show LastRe-_center Midpoints in SelectionRe-_center Segment's MidpointRe-distribute _Handles in SegmentRe-distribute _Handles in SelectionRe_peat "%s"Reading palette '%s': Missing GREEN component in line %d.Reading palette file '%s': Invalid number of columns in line %d. Using default value.Reading palette file '%s': Missing BLUE component in line %d.Reading palette file '%s': Missing RED component in line %d.Reading palette file '%s': RGB value out of range in line %d.ReadyRect SelectRedRed:RedoReduce image to a fixed number of colorsReduce image to two colors using a thresholdRefresh brushesRefresh gradientsRefresh patternsRegisteredReload C_urrent ThemeRemember the current tool, pattern, color, and brush across GIMP sessions.Remote imageRemove ChannelRemove Floating SelectionRemove GuideRemove LayerRemove Parasite from ImageRemove Parasite from ItemRemove PathRemove the selected filter from the list of active filters.Removing shortcut failed.Rename ChannelRename LayerRename PathRename Saved Tool OptionsRename Text LayerRender StrokeReorder ChannelReorder LayerReorder pathRepeat LastRepeat:Replace the current selectionReplicateReplicate Gradient SegmentReplicate Gradient SelectionReplicate SegmentReplicate SelectionReset Tool OptionsReset the selected filter to default valuesResizeResize ChannelResize ImageResize LayerResize PathResize Text LayerResize imageResize window on _zoomResize window on image _size changeResizing...Resolution:Resource ConsumptionResource configurationRestore options from...Restore saved keyboard shortcuts on each GIMP startup.ReverseRevertRevert '%s' to '%s'?Revert ImageRevert failed. No file name associated with this image.Reverting to '%s' failed: +Quick MaskQuickMaskQuit The GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB ColorRGB-emptyRGBA (%0.3f, %0.3f, %0.3f, %0.3f)RTLR_e-show "%s"R_eset channelR_eset colorRadialRadius:Raise ChannelRaise Channel to TopRaise Channel to _TopRaise LayerRaise Layer to TopRaise PathRaise Path to TopRaise channelRaise channel to topRaise layerRaise layer to topRaise this image's displaysRaise window if already openRateRate:Re-Show LastRe-_center Midpoints in SelectionRe-_center Segment's MidpointRe-distribute _Handles in SegmentRe-distribute _Handles in SelectionRe_name Saved OptionsRe_peat "%s"Reading palette '%s': Missing GREEN component in line %d.Reading palette file '%s': Invalid number of columns in line %d. Using default value.Reading palette file '%s': Missing BLUE component in line %d.Reading palette file '%s': Missing RED component in line %d.Reading palette file '%s': RGB value out of range in line %d.ReadyRect SelectRedRed:RedoReduce image to a fixed number of colorsReduce image to two colors using a thresholdRefresh brushesRefresh gradientsRefresh patternsRegisteredReload C_urrent ThemeRemember the current tool, pattern, color, and brush across GIMP sessions.Remote imageRemove ChannelRemove Floating SelectionRemove GuideRemove LayerRemove Parasite from ImageRemove Parasite from ItemRemove PathRemove _EntryRemove floating selectionRemove parasiteRemove the selected filter from the list of active filters.Removing shortcut failed.Rename ChannelRename LayerRename PathRename Saved Tool OptionsRename Text LayerRender StrokeReorder ChannelReorder LayerReorder pathRepeat LastRepeat:Replace the current selectionReplicateReplicate Gradient SegmentReplicate Gradient SelectionReplicate SegmentReplicate SelectionReset Tool OptionsReset the selected filter to default valuesReset tool order and visibilityResizeResize ChannelResize ImageResize LayerResize PathResize Text LayerResize imageResize itemResize window on _zoomResize window on image _size changeResizing...Resolution:Resource ConsumptionResource configurationRestore options from...Restore saved keyboard shortcuts on each GIMP startup.ReverseRevertRevert '%s' to '%s'?Revert ImageRevert failed. No file name associated with this image.Reverting to '%s' failed: -%sRight Endpoint ColorRight justifiedRotateRotate ChannelRotate LayerRotate PathRotate Text LayerRotate imageRotate the layer or selectionRotating...Rotation InformationRoundS_pikesS_wap ColorsSat.:SaturationSaveSave '%s' as POV-RaySave CurvesSave Error Log to FileSave ImageSave Input Device Settings _NowSave LevelsSave Tool OptionsSave Window Positions _NowSave _as...Save a Copy of the ImageSave as _POV-Ray...Save changed keyboard shortcuts when the GIMP exits.Save curves settings to fileSave device statusSave levels settings to fileSave options to...Save the changes to image '%s' before closing?Save the positions and sizes of the main dialogs when the GIMP exits.Saved OptionsSaving '%s' +%sRight Endpoint ColorRight justifiedRotateRotate 90 degrees CC_WRotate 90 degrees _CWRotate ChannelRotate LayerRotate PathRotate Text LayerRotate _180 degreesRotate imageRotate the layer or selectionRotating...Rotation InformationRoundS_how GridS_pikesS_wap ColorsSat.:SaturationSaveSave '%s' as POV-RaySave CurvesSave Error Log to FileSave ImageSave Input Device Settings _NowSave LevelsSave Tool OptionsSave Window Positions _NowSave _All Errors to File...Save _Selection to File...Save _as...Save a Copy of the ImageSave all errorsSave as _POV-Ray...Save changed keyboard shortcuts when the GIMP exits.Save curves settings to fileSave device statusSave levels settings to fileSave options to...Save selectionSave selection to channelSave the changes to image '%s' before closing?Save the positions and sizes of the main dialogs when the GIMP exits.Save to _ChannelSaved OptionsSaving '%s' Saving '%s' failed: -%sSaving ImagesSawtooth waveScalable SVG image (*.svg)ScaleScale ChannelScale ImageScale LayerScale PathScale Text LayerScale imageScale ratio:Scale the layer or selectionScalingScaling...ScissorsScreenScript-Fu FoldersScriptsSelectSelect AllSelect Brush FoldersSelect By ColorSelect ColorSelect Environment FoldersSelect Font FoldersSelect Gradient FoldersSelect Module FoldersSelect NoneSelect Palette FoldersSelect Pattern FoldersSelect Plug-In FoldersSelect Primary Color to ModifySelect Range to ModifySelect Script-Fu FoldersSelect SourceSelect Swap FolderSelect Temp FolderSelect ThemeSelect Theme FoldersSelect Zoom RatioSelect by ColorSelect contiguous regionsSelect elliptical regionsSelect hand-drawn regionsSelect noneSelect rectangular regionsSelect regions by colorSelect shapes from imageSelect swap dirSelect the number of times +%sSaving ImagesSawtooth waveScalable SVG image (*.svg)ScaleScale ChannelScale ImageScale LayerScale PathScale Text LayerScale imageScale itemScale ratio:Scale the layer or selectionScalingScaling...ScissorsScreenScript-Fu FoldersScriptsSelectSelect AllSelect Brush FoldersSelect By ColorSelect ColorSelect Environment FoldersSelect File _Type (%s)Select Font FoldersSelect Gradient FoldersSelect Module FoldersSelect NoneSelect Palette FoldersSelect Pattern FoldersSelect Plug-In FoldersSelect Primary Color to ModifySelect Range to ModifySelect Script-Fu FoldersSelect SourceSelect Swap FolderSelect Temp FolderSelect ThemeSelect Theme FoldersSelect Zoom RatioSelect by ColorSelect contiguous regionsSelect elliptical regionsSelect hand-drawn regionsSelect noneSelect rectangular regionsSelect regions by colorSelect shapes from imageSelect swap dirSelect the number of times to replicate the selected segment.Select the number of times to replicate the selection.Select the number of uniform parts in which to split the segments in the selection.Select the number of uniform parts -in which to split the selected segment.Select web browserSelectionSelection EditorSelection MaskSelection Tool proceduresSelection: Selection: ADDSelection: INTERSECTSelection: REPLACESelection: SUBTRACTSensitivitySet Canvas Padding ColorSet Channel ColorSet Channel OpacitySet Image Canvas SizeSet Item Exclusive LinkedSet Item Exclusive VisibleSet Layer Boundary SizeSet Name from _TextSets an upper limit to the memory that is used per image to keep operations on the undo stack. Regardless of this setting, at least as many undo-levels as configured can be undone.Sets the browser used by the help system.Sets the canvas padding color used if the padding mode is set to custom color.Sets the external web browser to be used. This can be an absolute path or the name of an executable to search for in the user's PATH. If the command contains '%s' it will be replaced with the URL, else the URL will be appended to the command with a space separating the two.Sets the level of interpolation used for scaling and other transformations.Sets the manner in which transparency is displayed in images.Sets the minimal number of operations that can be undone. More undo levels are kept available until the undo-size limit is reached.Sets the mode of cursor the GIMP will use.Sets the monitor's horizontal resolution, in dots per inch. If set to 0, forces the X server to be queried for both horizontal and vertical resolution information.Sets the monitor's vertical resolution, in dots per inch. If set to 0, forces the X server to be queried for both horizontal and vertical resolution information.Sets the size of the checkerboard used to display transparency.Sets the size of the navigation preview available in the lower right corner of the image window.Sets the size of the previews in the Undo History.Sets the swap file location. The gimp uses a tile based memory allocation scheme. The swap file is used to quickly and easily swap tiles out to disk and back in. Be aware that the swap file can easily get very large if the GIMP is used with large images. Also, things can get horribly slow if the swap file is created on a directory that is mounted over NFS. For these reasons, it may be desirable to put your swap file in "/tmp".Sets the temporary storage directory. Files will appear here during the course of running the GIMP. Most files will disappear when the GIMP exits, but some files are likely to remain, so it is best if this directory not be one that is shared by other users.Sets the text to appear in image window status bars.Sets the text to appear in image window titles.Sets whether GIMP should create previews of layers and channels. Previews in the layers and channels dialog are nice to have but they can slow things down when working with large images.Shadow typeShadowsShapeShape:SharpenSharpen ChannelSharpen SelectionShearShear the layer or selectionShearing InformationShearing...Short dashesShortcutShortcut "%s" is already taken by "%s" from the "%s" group.Show Layer MaskShow S_tatusbarShow Scroll_barsShow _GuidesShow _Layer BoundaryShow _MenubarShow _brush outlineShow _foreground & background colorShow _guidesShow _layer boundaryShow _menubarShow _rulersShow active _brush, pattern & gradientShow active _imageShow gri_dShow help _buttonsShow image sizeShow memory usageShow menu _mnemonics (access keys)Show s_electionShow s_tatusbarShow scroll_barsShow tip next time GIMP startsShow tips on _startupShow tool _tipsShow zoom percentageShow zoom ratioShrink ChannelShrink SelectionShrink from image borderShrink selection bySizeSize in memory:Size of _thumbnails:Size:Skipping '%s': wrong GIMP protocol version.SmallSmaller PreviewsSmoothSmooth edgesSmudgeSmudge imageSolidSourceSpacingSpacing:Sparse dotsSpecial FileSpecifies how the area around the image should be drawn.Speed of marching ants in the selection outline. This value is in milliseconds (less time indicates faster marching).Speed:Spherical (_decreasing)Spherical (i_ncreasing)Spiral (ccw)Spiral (cw)SplitSplit Gradient Segment UniformlySplit Gradient Segments UniformlySplit Segment UniformlySplit Segment _Uniformly...Split Segment at _MidpointSplit Segments UniformlySplit Segments _Uniformly...Split Segments at _MidpointsSquareStac_kStandardStarting ExtensionsStarting extension: '%s' -State:Static ColorStatic GrayStatus & descStatus & textStd Dev:StipplesStock IDStroke PathStroke SelectionStyle of bevel around the statusbar textSubtractSubtract from the current selectionSupersamplingSwap folder:Temp folder:TemplatesTemplates MenuTemporary ProcedureTerminating plug-in: '%s' +in which to split the selected segment.Select web browserSelectionSelection EditorSelection MaskSelection Tool proceduresSelection maskSelection: Selection: ADDSelection: INTERSECTSelection: REPLACESelection: SUBTRACTSensitivitySet Canvas Padding ColorSet Channel ColorSet Channel OpacitySet ColormapSet Image Canvas SizeSet Item Exclusive LinkedSet Item Exclusive VisibleSet Layer Boundary SizeSet Name from _TextSets an upper limit to the memory that is used per image to keep operations on the undo stack. Regardless of this setting, at least as many undo-levels as configured can be undone.Sets the browser used by the help system.Sets the canvas padding color used if the padding mode is set to custom color.Sets the external web browser to be used. This can be an absolute path or the name of an executable to search for in the user's PATH. If the command contains '%s' it will be replaced with the URL, else the URL will be appended to the command with a space separating the two.Sets the level of interpolation used for scaling and other transformations.Sets the manner in which transparency is displayed in images.Sets the minimal number of operations that can be undone. More undo levels are kept available until the undo-size limit is reached.Sets the mode of cursor the GIMP will use.Sets the monitor's horizontal resolution, in dots per inch. If set to 0, forces the X server to be queried for both horizontal and vertical resolution information.Sets the monitor's vertical resolution, in dots per inch. If set to 0, forces the X server to be queried for both horizontal and vertical resolution information.Sets the size of the checkerboard used to display transparency.Sets the size of the navigation preview available in the lower right corner of the image window.Sets the size of the previews in the Undo History.Sets the swap file location. The gimp uses a tile based memory allocation scheme. The swap file is used to quickly and easily swap tiles out to disk and back in. Be aware that the swap file can easily get very large if the GIMP is used with large images. Also, things can get horribly slow if the swap file is created on a directory that is mounted over NFS. For these reasons, it may be desirable to put your swap file in "/tmp".Sets the temporary storage directory. Files will appear here during the course of running the GIMP. Most files will disappear when the GIMP exits, but some files are likely to remain, so it is best if this directory not be one that is shared by other users.Sets the text to appear in image window status bars.Sets the text to appear in image window titles.Sets whether GIMP should create previews of layers and channels. Previews in the layers and channels dialog are nice to have but they can slow things down when working with large images.Shadow typeShadowsShapeShape:SharpenSharpen ChannelSharpen SelectionShearShear the layer or selectionShearing InformationShearing...Short dashesShortcutShortcut "%s" is already taken by "%s" from the "%s" group.Show Layer MaskShow R_ulersShow S_tatusbarShow Scroll_barsShow _GuidesShow _Layer BoundaryShow _MenubarShow _SelectionShow _brush outlineShow _foreground & background colorShow _guidesShow _layer boundaryShow _menubarShow _rulersShow active _brush, pattern & gradientShow active _imageShow gri_dShow help _buttonsShow image sizeShow memory usageShow menu _mnemonics (access keys)Show s_electionShow s_tatusbarShow scroll_barsShow tip next time GIMP startsShow tips on _startupShow tool _tipsShow zoom percentageShow zoom ratioShrink ChannelShrink SelectionShrink from image borderShrink selection bySizeSize in memory:Size of _thumbnails:Size:Skipping '%s': wrong GIMP protocol version.SmallSmaller PreviewsSmoothSmooth edgesSmudgeSmudge imageSoft lightSolidSourceSpacingSpacing:Sparse dotsSpecial FileSpecifies how the area around the image should be drawn.Speed of marching ants in the selection outline. This value is in milliseconds (less time indicates faster marching).Speed:Spherical (_decreasing)Spherical (i_ncreasing)Spiral (ccw)Spiral (cw)SplitSplit Gradient Segment UniformlySplit Gradient Segments UniformlySplit Segment UniformlySplit Segment _Uniformly...Split Segment at _MidpointSplit Segments UniformlySplit Segments _Uniformly...Split Segments at _MidpointsSquareSt_atus & TextStac_kStandardStarting ExtensionsStarting extension: '%s' +State:Static ColorStatic GrayStatus & descStatus & textStd Dev:StipplesStock IDStro_ke PathStro_ke Path...Stroke PathStroke SelectionStroke path with last valuesStroke path...Stroke selection with last valuesStroke selection...Style of bevel around the statusbar textSubtractSubtract from the current selectionSupersamplingSwap folder:T_oolsTemp folder:TemplatesTemplates MenuTemporary ProcedureTerminating plug-in: '%s' TextText ColorText EditorText LayerText proceduresThe GIMPThe active brush. Click to open the Brush Dialog.The active gradient. -Click to open the Gradient Dialog.The active pattern. +Click to open the Gradient Dialog.The active image. +Click to open the Image Dialog.The active pattern. Click to open the Pattern Dialog.The background color of the grid; only used in double dashed line style.The filename '%s' couldn't be converted to a valid URI: %sThe foreground color of the grid.The gimprc is used to store personal preferences that affect GIMP's default behavior. Paths to search for brushes, palettes, gradients, patterns, plug-ins and modules can also configured here.The horizontal image resolution.The layer you selected is a text layer but it has been modified using other tools. Editing the layer with the text tool will discard these modifications. -You can edit the layer or create a new text layer from its text attributes.The sessionrc is used to store what dialog windows were open the last time you quit The GIMP. You can configure The GIMP to reopen these dialogs at the saved position.The tile cache is used to make sure the GIMP doesn't thrash tiles between memory and disk. Setting this value higher will cause the GIMP to use less swap space, but will also cause the GIMP to use more memory. Conversely, a smaller cache size causes the GIMP to use more swap space and less memory.The unit used for coordinate display when not in dot-for-dot mode.The unitrc is used to store your user units database. You can define additional units and use them just like you use the built-in units inches, millimeters, points and picas. This file is overwritten each time you quit the GIMP.The vertical image resolution.The window type hint that is set on dock windows. This may affect the way your window manager decorates and handles dock windows.The window type hint that is set on the toolbox. This may affect how your window manager decorates and handles the toolbox window.ThemeTheme FoldersThemesThere are %d images with unsaved changes:There are not enough visible layers for a merge down.There is always a tradeoff between memory usage and speed. In most cases, the GIMP opts for speed over memory. However, if memory is a big issue, try to enable this setting.There is no active layer or channel to copy from.There is no active layer or channel to cut from.There is no active layer or channel to stroke toThere is no active layer or channel to stroke to.There is one image with unsaved changes:There should be a file called '%s'. Please check your installation.There was an error parsing your '%s' file. Default values will be used. A backup of your configuration has been created at '%s'.This file holds a collection of standard media sizes that serve as image templates.This folder is searched for image templates.This folder is searched for user-installed themes.This folder is used to store fonts you only want visible in the GIMP. The GIMP checks this folder in addition to the system-wide GIMP fonts installation when searching for fonts. Use this only if you really want to have GIMP-only fonts, otherwise put things in your global font directory.This folder is used to store parameter files for the Curves tool.This folder is used to store parameter files for the Levels tool.This folder is used to store tool options.This folder is used to store user created and installed scripts. The GIMP checks this folder in addition to the systemwide GIMP scripts folder when searching for scripts.This folder is used to store user created, temporary, or otherwise non-system-supported DLL modules. The GIMP checks this folder in addition to the system-wide GIMP module folder when searching for modules to load during initialization.This folder is used to store user created, temporary, or otherwise non-system-supported additions to the plug-in environment. The GIMP checks this folder in addition to the system-wide GIMP environment folder when searching for plug-in environment modification files.This folder is used to store user created, temporary, or otherwise non-system-supported plug-ins. The GIMP checks this folder in addition to the system-wide GIMP plug-in folder when searching for plug-ins.This folder is used to store user defined brushes. The GIMP checks this folder in addition to the system-wide GIMP brushes installation when searching for brushes.This folder is used to store user defined gradients. The GIMP checks this folder in addition to the system-wide GIMP gradients installation when searching for gradients.This folder is used to store user defined palettes. The GIMP checks this folder in addition to the system-wide GIMP palettes installation when searching for palettes.This folder is used to store user defined patterns. The GIMP checks this folder in addition to the system-wide GIMP patterns installation when searching for patterns.This folder is used to temporarily store undo buffers to reduce memory usage. If The GIMP is unceremoniously killed, files of the form: gimp<#>.<#> may persist in this folder. These files are useless across GIMP sessions and can be destroyed with impunity.This folder will contain a number of important files. Click on one of the files or folders in the tree to get more information about the selected item.This is the distance in pixels where Guide and Grid snapping activates.This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.This text input field is limited to %d characters.This tool has no options.ThresholdThreshold does not operate on indexed layers.Threshold:Thumbnail %d of %dTile cache size:Tilt:TinyTitle & StatusTo_ysToggle Quick MaskTool OptionsTool Options MenuTool Toggle %sTool iconTool icon with crosshairTool_boxToolboxToolbox MenuToolsTools such as fuzzy-select and bucket fill find regions based on a seed-fill algorithm. The seed fill starts at the initially selected pixel and progresses in all directions until the difference of pixel intensity from the original is greater than a specified threshold. This value represents the default threshold.Tr_ansparencyTransfer Alpha to MaskTransformTransform ChannelTransform DirectionTransform LayerTransform PathTransform Tool proceduresTransformationTransformation proceduresTransforming...Translation byTransparencyTransparency _type:Triangular waveTrue ColorTypeType %sType a new acceleratorType a new accelerator, or press Backspace to clearUnable to add a layer mask since the layer already has one.Unable to cut or copy because the selected region is empty.Unable to open a test swap file. To avoid data loss please check the location and permissions of the swap directory defined in your Preferences (currently "%s").Unable to open swap file. The Gimp has run out of memory and cannot use the swap file. Some parts of your images may be corrupted. Try to save your work using different filenames, restart the Gimp and check the location of the swap directory in your Preferences.UndefinedUndoUndo HistoryUnitsUnknownUnknown file typeUnloadUnnamedUntitledUse "_Dot for dot" by defaultUse _web browser insteadUse all visible layers when shrinking the selectionUser Installation LogUser InterfaceUtility windowValueValue:Version %s brought to you byVersion:VerticalVertical offset of the first grid line; this may be a negative number.Vertical spacing of grid lines.Very largeVery smallViewView as gridView as listVisual class:Visual depth:Web BrowserWeb browserWelcome to -The GIMP %d.%d User InstallationWhen enabled the dialog automatically follows the image you are working on.When enabled, all paint tools will show a preview of the current brush's outline.When enabled, an image will become the active image when its image window receives the focus. This is useful for window managers using "click to focus".When enabled, menus can be torn off.When enabled, pressing F1 will open the help browser.When enabled, the GIMP will not save if the image is unchanged since opening it.When enabled, the GIMP will use a different info window per image view.When enabled, the X server is queried for the mouse's current position on each motion event, rather than relying on the position hint. This means painting with large brushes should be more accurate, but it may be slower. Perversely, on some X servers enabling this option results in faster painting.When enabled, the grid is visible by default. This can also be toggled with the "View->Show Grid" command.When enabled, the guides are visible by default. This can also be toggled with the "View->Show Guides" command.When enabled, the image window will automatically resize itself, when zooming into and out of images.When enabled, the image window will automatically resize itself, whenever the physical image size changes.When enabled, the layer boundary is visible by default. This can also be toggled with the "View->Show Layer Boundary" command.When enabled, the menubar is visible by default. This can also be toggled with the "View->Show Menubar" command.When enabled, the rulers are visible by default. This can also be toggled with the "View->Show Rulers" command.When enabled, the scrollbars are visible by default. This can also be toggled with the "View->Show Scrollbars" command.When enabled, the selected brush will be used for all tools.When enabled, the selected gradient will be used for all tools.When enabled, the selected pattern will be used for all tools.When enabled, the selection is visible by default. This can also be toggled with the "View->Show Selection" command.When enabled, the statusbar is visible by default. This can also be toggled with the "View->Show Statusbar" command.When enabled, this will ensure that each pixel of an image gets mapped to a pixel on the screen.When enabled, this will ensure that the full image is visible after a file is opened, otherwise it will be displayed with a scale of 1:1.When enabled, you can change keyboard shortcuts for menu items by hitting a key combination while the menu item is highlighted.WhiteWidthWidth:Window ManagementWindow Manager HintsWindow PositionsWriting '%s' +You can edit the layer or create a new text layer from its text attributes.The sessionrc is used to store what dialog windows were open the last time you quit The GIMP. You can configure The GIMP to reopen these dialogs at the saved position.The thumbnail in the Open dialog will be automatically updated if the file being previewed is smaller than the size set here.The tile cache is used to make sure the GIMP doesn't thrash tiles between memory and disk. Setting this value higher will cause the GIMP to use less swap space, but will also cause the GIMP to use more memory. Conversely, a smaller cache size causes the GIMP to use more swap space and less memory.The unit used for coordinate display when not in dot-for-dot mode.The unitrc is used to store your user units database. You can define additional units and use them just like you use the built-in units inches, millimeters, points and picas. This file is overwritten each time you quit the GIMP.The vertical image resolution.The window type hint that is set on dock windows. This may affect the way your window manager decorates and handles dock windows.The window type hint that is set on the toolbox. This may affect how your window manager decorates and handles the toolbox window.ThemeTheme FoldersThemesThere are %d images with unsaved changes:There are not enough visible layers for a merge down.There is always a tradeoff between memory usage and speed. In most cases, the GIMP opts for speed over memory. However, if memory is a big issue, try to enable this setting.There is no active layer or channel to copy from.There is no active layer or channel to cut from.There is no active layer or channel to stroke toThere is no active layer or channel to stroke to.There is one image with unsaved changes:There should be a file called '%s'. Please check your installation.There was an error parsing your '%s' file. Default values will be used. A backup of your configuration has been created at '%s'.This file holds a collection of standard media sizes that serve as image templates.This folder is searched for image templates.This folder is searched for user-installed themes.This folder is used to store fonts you only want visible in the GIMP. The GIMP checks this folder in addition to the system-wide GIMP fonts installation when searching for fonts. Use this only if you really want to have GIMP-only fonts, otherwise put things in your global font directory.This folder is used to store parameter files for the Curves tool.This folder is used to store parameter files for the Levels tool.This folder is used to store tool options.This folder is used to store user created and installed scripts. The GIMP checks this folder in addition to the systemwide GIMP scripts folder when searching for scripts.This folder is used to store user created, temporary, or otherwise non-system-supported DLL modules. The GIMP checks this folder in addition to the system-wide GIMP module folder when searching for modules to load during initialization.This folder is used to store user created, temporary, or otherwise non-system-supported additions to the plug-in environment. The GIMP checks this folder in addition to the system-wide GIMP environment folder when searching for plug-in environment modification files.This folder is used to store user created, temporary, or otherwise non-system-supported plug-ins. The GIMP checks this folder in addition to the system-wide GIMP plug-in folder when searching for plug-ins.This folder is used to store user defined brushes. The GIMP checks this folder in addition to the system-wide GIMP brushes installation when searching for brushes.This folder is used to store user defined gradients. The GIMP checks this folder in addition to the system-wide GIMP gradients installation when searching for gradients.This folder is used to store user defined palettes. The GIMP checks this folder in addition to the system-wide GIMP palettes installation when searching for palettes.This folder is used to store user defined patterns. The GIMP checks this folder in addition to the system-wide GIMP patterns installation when searching for patterns.This folder is used to temporarily store undo buffers to reduce memory usage. If The GIMP is unceremoniously killed, files of the form: gimp<#>.<#> may persist in this folder. These files are useless across GIMP sessions and can be destroyed with impunity.This folder will contain a number of important files. Click on one of the files or folders in the tree to get more information about the selected item.This is the distance in pixels where Guide and Grid snapping activates.This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.This text input field is limited to %d characters.This tool has no options.ThresholdThreshold does not operate on indexed layers.Threshold:Thumbnail %d of %dTile cache size:Tilt:TinyTitle & StatusTo_ysToggle Quick MaskToo many error messages!Tool OptionsTool Options MenuTool Toggle %sTool _OptionsTool iconTool icon with crosshairTool_boxToolboxToolbox MenuToolsTools MenuTools such as fuzzy-select and bucket fill find regions based on a seed-fill algorithm. The seed fill starts at the initially selected pixel and progresses in all directions until the difference of pixel intensity from the original is greater than a specified threshold. This value represents the default threshold.Tr_ansparencyTransfer Alpha to MaskTransformTransform ChannelTransform DirectionTransform LayerTransform PathTransform Tool proceduresTransformationTransformation proceduresTransforming...Translation byTransparencyTransparency _type:Triangular waveTrue ColorTypeType %sType a new acceleratorType a new accelerator, or press Backspace to clearUnable to add a layer mask since the layer already has one.Unable to cut or copy because the selected region is empty.Unable to open a test swap file. To avoid data loss please check the location and permissions of the swap directory defined in your Preferences (currently "%s").Unable to open swap file. The Gimp has run out of memory and cannot use the swap file. Some parts of your images may be corrupted. Try to save your work using different filenames, restart the Gimp and check the location of the swap directory in your Preferences.UndefinedUndoUndo HistoryUnitsUnknownUnknown file typeUnloadUnnamedUntitledUse "_Dot for dot" by defaultUse _web browser insteadUse all visible layers when shrinking the selectionUser Installation LogUser InterfaceUtility windowValueValue:Version %s brought to you byVersion:VerticalVertical offset of the first grid line; this may be a negative number.Vertical spacing of grid lines.Very largeVery smallViewView as _GridView as _ListView as gridView as listVisual class:Visual depth:Web BrowserWeb browserWelcome to +The GIMP %d.%d User InstallationWhen enabled the dialog automatically follows the image you are working on.When enabled, all paint tools will show a preview of the current brush's outline.When enabled, an image will become the active image when its image window receives the focus. This is useful for window managers using "click to focus".When enabled, menus can be torn off.When enabled, pressing F1 will open the help browser.When enabled, the GIMP will not save if the image is unchanged since opening it.When enabled, the GIMP will use a different info window per image view.When enabled, the X server is queried for the mouse's current position on each motion event, rather than relying on the position hint. This means painting with large brushes should be more accurate, but it may be slower. Perversely, on some X servers enabling this option results in faster painting.When enabled, the grid is visible by default. This can also be toggled with the "View->Show Grid" command.When enabled, the guides are visible by default. This can also be toggled with the "View->Show Guides" command.When enabled, the image window will automatically resize itself, when zooming into and out of images.When enabled, the image window will automatically resize itself, whenever the physical image size changes.When enabled, the layer boundary is visible by default. This can also be toggled with the "View->Show Layer Boundary" command.When enabled, the menubar is visible by default. This can also be toggled with the "View->Show Menubar" command.When enabled, the rulers are visible by default. This can also be toggled with the "View->Show Rulers" command.When enabled, the scrollbars are visible by default. This can also be toggled with the "View->Show Scrollbars" command.When enabled, the selected brush will be used for all tools.When enabled, the selected gradient will be used for all tools.When enabled, the selected pattern will be used for all tools.When enabled, the selection is visible by default. This can also be toggled with the "View->Show Selection" command.When enabled, the statusbar is visible by default. This can also be toggled with the "View->Show Statusbar" command.When enabled, this will ensure that each pixel of an image gets mapped to a pixel on the screen.When enabled, this will ensure that the full image is visible after a file is opened, otherwise it will be displayed with a scale of 1:1.When enabled, you can change keyboard shortcuts for menu items by hitting a key combination while the menu item is highlighted.WhiteWhite Balance operates only on RGB color layers.WidthWidth:Window ManagementWindow Manager HintsWindow PositionsWriting '%s' XXCF error: unsupported XCF file version %d encounteredXCF warning: version 0 of XCF file format did not save indexed colormaps correctly. -Substituting grayscale map.YYellowYellow:You are trying to create an image with a size of %s.You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your GIMP installation is incomplete:Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _InZoom _OutZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:[ Base Image ]_Acquire_Add Color from BG_Add Color from FG_Add to Selection_All_Anchor Layer_Antialiasing_Artistic_Auto_B_BG Color_Background color:_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Buffer_C_Channels_Close_Clouds_Colors_Context_Copy_Copy Named..._Curved_Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Layer_Delete Segment_Delete Selection_Dialogs_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Pattern..._FG Color_File_Fill with:_Fit Image in Window_Flip Segment_Flip Selection_Font_Foreground color:_G_Generic_Gradient_Guides_Hardness_Help_Horizontal:_Hue:_Icon:_Import_Info Window_Layer_Layers_Left Endpoint_Light Effects_Lightness:_Line Style_Linear_Lower Channel_Lower Layer_M_Manually_Map_Mask_Mask to Selection_Maximum number of colors:_Measure_Merge imported paths_Migrate GIMP 2.0 user settings_Misc. Stuff_Mode_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Gradient_New Layer_New Layer..._New Palette_New Pattern_New View_New..._Next tip_Noise_None_Offset..._Opacity_Open..._Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preview_Previous tip_Print Size..._Properties_R_RGB_Radius_Raise Channel_Raise Layer_Reassign shortcut_Rect Select_Redo %s_Refresh Brushes_Refresh Patterns_Remove unused colors from final palette_Render_Replace_Replicate Segment..._Replicate Selection..._Reset Saved Window Positions to Default Values_Right Endpoint_Rotate_Saturation:_Save_Save input device settings on exit_Save window positions on exit_Scale_Scale Layer..._Scale imported paths to fit image_Select_Selection_Shape_Sinusoidal_Snap distance:_Template:_Tool_Transform_Undo_Undo %s_Vertical:_View_Visible_Web_Web browser to use:_White Balance_Width:_X resolution:_X:_Xtns_Y_Y resolution:_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetermillimetersminuten/apercentpicapicaspixelpixelspixels/%apixels/%spointpointssecondtips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: gimp.gimp-2-0 +Substituting grayscale map.YYellowYellow:You are trying to create an image with a size of %s.You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your GIMP installation is incomplete:Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _InZoom _OutZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_All_Anchor Layer_Antialiasing_Arbitrary Rotation..._Artistic_Aspect_Auto_B_BG Color_Background color:_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Buffer_By Color_C_Cap style:_Channels_Clear Errors_Clear Undo History_Close_Close Tab_Clouds_Color Tools_Colors_Context_Copy_Copy Named..._Create Image from Template..._Crop & Resize_Curved_Curves..._Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Layer_Delete Path_Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Desaturate_Detach Tab_Device Status_Dialogs_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Enable layer & channel previews_Enormous_Equalize_Eraser_FG Color_File_Fill with:_Fit Image in Window_Flip_Flip Segment_Flip Selection_Font_Fonts_Foreground color:_Free Select_G_Generic_Gigantic_Gradient_Gradients_Grayscale copy of layer_Grow..._Guides_Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Info Window_Intersect with Selection_Invert_Join style:_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Levels..._Light Effects_Lightness:_Line Style_Linear_Linked_Lower Channel_Lower Layer_M_Manually_Map_Mask_Mask to Selection_Maximum number of colors:_Measure_Medium_Merge imported paths_Migrate GIMP 2.0 user settings_Misc. Stuff_Mode_Module Manager_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preferences_Preview_Preview Size_Previous tip_Print Size..._Properties_R_RGB_Radius_Raise Channel_Raise Layer_Reassign shortcut_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Patterns_Remove unused colors from final palette_Render_Replace_Replicate Segment..._Replicate Selection..._Reset Order & Visibility_Reset Saved Window Positions to Default Values_Restore Options from_Right Endpoint_Rotate_Saturation:_Save_Save Options to_Save input device settings on exit_Save window positions on exit_Scale_Scale Layer..._Scale imported paths to fit image_Select_Selection_Selection Editor_Selection Tools_Shape_Show Image Selection_Show in Toolbox_Sinusoidal_Small_Snap distance:_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Tiny_Tip of the Day_Tool_Tools_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Visible_Web_Web browser to use:_White (full opacity)_White Balance_Width:_X resolution:_X:_Xtns_Y_Y resolution:_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetermillimetersminuten/apercentpicapicaspixelpixelspixels/%apixels/%spointpointssecondtips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: gimp.gimp-2-0 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-19 03:11+0100 -PO-Revision-Date: 2004-12-07 22:41+0100 +POT-Creation-Date: 2004-12-28 16:58+0100 +PO-Revision-Date: 2004-12-19 00:57+0100 Last-Translator: Vincent van Adrighem Language-Team: Dutch MIME-Version: 1.0 @@ -297,60 +338,61 @@ -i, --no-interface Uitvoeren zonder een gebruikersinterface -s, --no-splash Opstartvenster niet weergeven. -v, --version Versie-informatie weergeven. -%d lagen%d dpi, %s%d lagen%d minuten%d seconden%d x %d dpi, %s%d × %d pixels%g × %g %s%s kanaalkopie%s kanaal naar selectie%s Bericht%s kopiëren%s masker%s%sKlik: Breid selectie uit%s%sSleep: verplaats & comprimeer(%0.3f, %0.3f, %0.3f)(Geen)(Dit consolevenster wordt na tien seconden gesloten) +%d lagen%d dpi%d dpi, %s%d lagen%d minuten%d seconden%d x %d dpi%d x %d dpi, %s%d × %d pixels%g × %g %s%p%s kanaalkopie%s kanaal naar selectie%s Bericht%s kopiëren%s masker%s%sKlik: Breid selectie uit%s%sSleep: verplaats & comprimeer(%0.3f, %0.3f, %0.3f)(Geen)(Dit consolevenster wordt na tien seconden gesloten) (Naamloze buffer)(Naamloze sjabloon)(Varieert)(schoon)(ongeldige UTF-8-tekenreeks)(gewijzigd)(geen)1 laag1 laag16:1 (1600%)1:1 (100%)1:16 (6.25%)1:2 (50%)1:4 (25%)1:8 (12.5%)2:1 (200%)2D transformatie...4:1 (400%)8:1 (800%)<%s><>Voor optimale GIMP-prestaties moet u mogelijk enkele instellingen aanpassen.De GIMP - GNU Image Manipulation Program Copyright (C) 1995-2004 -Spencer Kimball, Peter Mattis en het GIMP-ontwikkelteam.Het GIMP-tipsbestand kon niet correct worden ingelezen!Uw GIMP-tipsbestand lijkt te ontbreken!Een bestand genaamd '%s' bestaat al.Hoe_kOver de GIMPActieActieve filtersToevoegenAl_phakanaal toevoegenAlphakanaal toevoegenAnker toevoegenKanaal toevoegenHulplijnen toevoegen: Hulplijnen toevoegenHorizontale hulplijn toevoegenLaagmasker _toevoegen...Laag toevoegenLaagmaskter toevoegenPad toevoegenLijn toevoegenTekstlaag toevoegenVerticale hulplijn toevoegenMasker aan de laag toevoegenKleur toevoegen uit AGKleur toevoegen uit VGTekst aan de afbeelding toevoegenVoeg de huidige kleur toe aan de kleurgeschiedenisVoeg het geselecteerde filter toe aan de lijst van actieve filters.Toevoegen aan huidige selectieThema '%s' (%s) toevoegen (bezig) -OptellingAanvullende invoerapparatenHelderheid-Contrast aanpassenKleurbalans aanpassenKleurcurves aanpassenKleurniveaus aanpassenHelderheid-Contrast aanpassenKleurbalans aanpassenKleurcurves aanpassenKleurniveaus aanpassenKleurtoon en verzadiging aanpassenNiveau's automatisch aanpassenAanpassingBetreft:Betroffen gebied %sVerfspuitVerfspuit met variabele drukAl_pha naar selectieUitgelijndUitlijningAlle kanalenAlle bestandenAlle bestanden (*.*)Alle informatie over afbeeldingen en Ongedaan Maken die niet in de tegelcache past, wordt naar een wisselbestand geschreven. Dit bestand hoort op een lokaal bestandssysteem te staan met genoeg vrije schijfruimte (enkele honderden megabytes). Op een UNIX-systeem zou u de temp-map van het systeem kunnen gebruiken ("/tmp" of "/var/tmp").Sta vullen van volledig transparante gebieden toeSelectie van volledig transparante gebieden toestaanAlphaAlpha naar selectieAlpha:Een afbeelding met de gekozen afmetingen zal meer geheugen nodig hebben dan momenteel als "Maximale afbeeldingsgrootte" is geconfigureerd in het dialoogvenster Voorkeuren (momenteel %s).Ani_matieDrijvende selectie verankerenDrijvende laag verankerenHoek:Anti-aliasingWeergaveLaagmasker toepassenLaag_masker toepassenDrempel toepassenBent u zeker dat u '%s' uit de lijst en van de schijf wilt verwijderen?Bent u zeker dat u sjabloon '%s' van de lijst en van schijf wilt verwijderen?Vraag om bevestiging alvorens een afbeelding te sluiten zonder deze op te slaan.Platheid:Parasiet aanhangenParasiet aan afbeelding koppelenParasiet aan item koppelenAuteur:AutomatischVenster automatish aanpassenAutoladenBeschikbare filtersBeschikbare typen:AchtergrondAchtergrondkleurAchtergrondkleur ingesteld op:Achtergrond: %d, %d, %dAchterwaarts (corrigerend)Baseer gevuld gebied op alle zichtbare lagenSelectie baseren op alle zichtbare lagenAchterSchuinBilineairZwartwitZwart:MengenVerloop: Verloop: ongeldig voor geïndexeerde beelden.Mengen...BlauwBlauw:VervagenVervagen of verscherpenKanaalrandRandselectieRandselectie metHelderheid-ContrastHelderheid-Contrast werkt niet op geïndexeerde lagen.PenseelPenseeleditorPenseelmappenPenseel-UIPenseel:PenselenMenu PenselenVullenBuffersMenu BuffersDonkerderStompVolgens extensieCMYK_Kalibreren...Kolommen:_CombinerenKalibreer beeldschermresolutieKan %s niet ongedaan makenCan_vasgrootteAnnulerenHulplijn annulerenKan geen laagmasker toevoegen met andere afmetingen dan de gespecificeerde laagKan geen laagmasker toevoegen aan een laag zonder alphakanaal.Kan geen laagmasker toevoegen aan een laag die niet deel is van een afbeelding.Kan deze laag niet verankeren, want het is geen drijvende selectie.Kan een palet met meer dan 256 kleuren niet omzetten.Kan geen nieuwe laag maken van de drijvende selectie, omdat hij toebehoort aan een laagmasker of kanaal.Kan map '%s' niet aanmaken: %sKan geen vooruitblik aanmakenKan niet snijden, omdat de huidige selectie leeg is.Kan niet uitbreiden ${%s}Kan selectie niet laten drijven, omdat het geselecteerde gebied leeg is.Kan een laag zonder alpha niet verhogenKan niet opslaan. Niets is geselecteerd.Kan geen lijn tekenen op leeg kanaal.Kan geen leeg pad tekenen.CanvasgrootteMidden X:GecentreerdAchtergrondkleur veranderenVoorgrondkleur veranderenAfbeeldingsresolutie veranderenAfbeeldingseenheid veranderenHuidige laag of pad wijzigenAchtergrondkleur raster veranderenVoorgrondkleur raster veranderenVerander het perspectief van de huidige laag of selectieWijzigen sneltoets mislukt.KanaalKanaalattributenKanaalnaam:Kanaal kan niet verder naar benedenKanaal kan niet verder naar bovenKanaal naar sele_ctieKanaal naar selectieKanaal naar selectieKanaal:KanalenMenu KanalenVak_grootte:Kies lijntekenstijl.Cirkel_WissenLeegmakenKanaal leegmakenKlik "Doorgaan" om bovenstaande instellingen te aanvaarden.Klik "Doorgaan" om uw persoonlijke GIMP-map aan te maken.Klik "Doorgaan" om de gebruikersinstallatie te starten.Klik "Doorgaan" om de gebruikersinstallatie te starten.Klik om dit anker met het geselecteerde eindpunt te verbinden.Klik om een nieuw anker aan te maken. (Probeer SHIFT.)Klik om nieuwe component van het pad aan te maken.Klik om een nieuw pad aan te makenKlik om dit anker te wissen.Klik om een anker op het pad in te voegen. (Probeer SHIFT.)Klik om dit knooppunt hoekig te maken.Klik om het pad te splitsen.Klik om te bewerken pad te kiezen.Klik om vooruitblik te vernieuwen -%s Klik om vernieuwing af te dwingen, ook als vooruitblik bijgewerkt isKlik-sleep om de vorm van de curve te veranderen. (SHIFT: symetrisch.)Klik-sleep om het anker te slepen.Klik-sleep om de ankers te slepen.Klik-sleep om het component te slepen. (Probeer SHIFT.)Klik-sleep om het handvat te slepen. (Probeer SHIFT.)Klik-sleep om het pad te slepen.Klik: selecteerKlik: selecteer Sleep: verplaatsKlembordOp onderste laag gesnedenOp afbeelding gesnedenKlonen%s sluitenDeze tab sluitenKleurKleurbalansKleurweergavefiltersKleurkiezerInformatie kleurenkiezerKleurbalans werkt enkel op RGB-lagen.Kleurindex:Kleur:_KleurenkaartKleurtype voor segmentKleurtype voor selectieVerkleurenVerkleuren werkt enkel op RGB-lagen.Afbeelding verkleurenAfbeelding verkleurenKleurenkaartKleurenkaart editorKleurenkaart menuKolommen:CommentaarContrast:Kleurweergavefilters instellen_Uitgebreide invoerapparaten configureren...Raster instellenAfbeeldingsraster instellenSneltoetsen configurerenSneltoetsen configureren...Geselecteerde filter configurerenGeselecteerde filter configureren: %sAfbeeldingsgrootte bevestigenSchalen bevestigenTekstbewerken bevestigenConflicterende sneltoetsenLijnen verbindenConstantBeperkingenContextContextafhankelijke cursors zijn handig. Standaard staan ze aan. Ze verbruiken echter extra bronnen, en wellicht wilt u dat niet.DoorgaanMet bijdragen van ...ConverterenRand converterenAfbeelding naar Grijswaarden omzettenAfbeelding naar Geïndexeerd omzettenAfbeelding naar geïndexeerde kleuren omzettenAfbeelding naar RGB omzettenAfbeelding converterenVervagen/verscherpenConvolutietype %sBenoemde buffer kopiërenBestand '%s' wordt gekopieerd uit '%s'...Copyright:Beschadigd segment %d in verloopbestand '%s'.Kan '%s' niet aanmaken: %sKon geen tijdelijk bestand voor '%s' aanmaken: %sKan '%s' niet verwijderen: %sKon de hulpbrowser van GIMP niet vinden.Kon '%s' niet openen voor lezen: %sKon '%s' niet openen voor schrijven: %sKon miniatuurbestand '%s' niet openen: %sKan %d bytes niet lezen uit '%s': %sKan niet zoeken in XCF-bestand: %sKon de hulpbrowser plug-in van GIMP niet starten.Aantal:Laag s_nijdenNieuwe sjabloon aanmakenNieuwe afbeelding makenMaak nieuwe laag aanNieuwe sjabloon aanmakenMaak een nieuwe weergave voor deze afbeelding aanNieuwe afbeelding aanmaken op basis van de geselecteerde sjabloonNieuwe sjabloon aanmakenAfbeeldingen of foto's aanmaken en bewerkenPaden aanmaken en bewerkenMap '%s' wordt aangemaakt...SnijdenKnippen & herschalenInformatie knippen en herschalenAfbeelding snijdenLaag snijdenAfbeelding snijdenAfbeelding snijden of schalenKnip: Alleen kruisdraadK_nippenBenoemde buffer k_nippen...Kubisch (beste)Huidige statusCursorCursor_modus:CurvetypeCurvesCurves voor geïndexeerde lagen kunnen niet worden aangepast.EigenAangepaste kleurKnippenBenoemde buffer knippenCyaanCyaan:Penseel d_uplicerenKanaal d_uplicerenVerloop d_uplicerenLaag d_uplicerenPatroon d_uplicerenDonkere vakjesStreep stip stip...Streep stip...Streepjespatroon:GestreeptDatum:DebuggenVolledig schermNormale standStandaard rasterStandaard afbeeldingsrasterStandaard _interpolatie:Standaard drempelwaarde:Anker verwijderenLaagmasker _verwijderenLaagmasker verwijderenObject verwijderenSegment verwijderenSjabloon verwijderenPenseel verwijderenKanaal verwijderenVerloop verwijderenLaag verwijderenOpgeslagen opties verwijderen...De geselecteerde buffer verwijderenGeselecteerde sjabloon verwijderenVerwijder deze afbeeldingVerwijderen van '%s' mislukt: %sVeel stippenDesaturerenDesatureren werkt enkel op RGB-lagen.OmschrijvingOntwerpenApparaatstatusApparatenDialogenMenu DialogenDiamandVerschilDirecte kleurLaagmasker uitzettenTekstinformatie wegwerpenWeergaveWeergavenavigatie_Weergavefilters...WeergaveproceduresWeergavetype:Tonen [%0.6f, %0.6f]OplossenAfstand:Afstand: %0.6fKleurbenaderingDelenEen _verse gebruikersinstallatie uitvoerenWeet u zeker dat u alle gereedschapsopties tot hun standaard waarden wilt terugbrengen?Wilt u het vervangen door de afbeelding die u aan het opslaan bent?_Niet opslaanAankoppelbaarDocumentgeschiedenisDocumentenMenu DocumentenLichterLijnen tegenhouden of doordrukkenTegenhouden of doordrukkenDubbel gestreeptAnker slepenAnkers slepenCurve slepenHandvat slepenPad slepenSlepen: verplaatsenIn inkt tekenenTekengebiedTekengebiedproceduresNieuwe laag slepenNieuw pad verwijderenTekstfunctionaliteit ontbreekt, omdat er geen fonts zijn.Acties van dit invoerapparaat dumpenPenseel duplicerenKanaal duplicerenVerloop duplicerenLaag duplicerenPatroon duplicerenGeselecteerde sjabloon duplicerenEek: kan niet ongedaan makenRandgedragR_andenBewerkenKanaalattributen bewerkenKanaalkleur bewerkenKleur paletingang bewerkenKleur-paletingang bewerkenLaagattributen bewerkenLaagmaskter bewerkenBewerkstandPaletkleur bewerkenPadattributen bewerkenSjabloon bewerkenPenseel bewerken...Kanaalattributen bewerkenKleur bewerkenKleur-paletingang #%d bewerkenVerloop bewerkenPatroon bewerken...BewerkingsproceduresGeselecteerde sjabloon bewerkenOvale selectieNieuw kanaalNieuwe laagLeeg padTekstlaag leegmakenLege variabelenaam in omgevingsbestand %sVer_sterkenDit invoerapparaat gebruikenToon handige tips bij het starten van de GIMP.Toon zwevende tips.EnormGeef een naam op voor samengevoegd paletGeef een naam voor de opgeslagen opties opGeef een naam voor deze bufferGeef een naam voor deze sjabloonGeef een naam op voor de opgeslagen optiesLocatie invoeren (URI):OmgevingOmgevingsmappenGelijkmaken'Gelijkmaken' werkt niet op geïndexeerde lagen.Naar achtergrond of transparantie verwijderenGomFoutenconsoleMenu FoutenconsoleFout bij opslaan XCF-bestand: %sFout tijdens parseren '%s' in regel %d: %sFout tijdens lezen '%s': %sFout tijdens schrijven van '%s': %sFout bij schrijven XCF: %sFout bij schrijven bestand '%s': +Spencer Kimball, Peter Mattis en het GIMP-ontwikkelteam.Het GIMP-tipsbestand kon niet correct worden ingelezen!Uw GIMP-tipsbestand lijkt te ontbreken!Een bestand genaamd '%s' bestaat al.Hoe_kOver de GIMPActieActieve filtersToevoegenAl_phakanaal toevoegenAlphakanaal toevoegenAnker toevoegenKanaal toevoegenKleur toevoegen aan kleurenkaartHulplijnen toevoegen: Hulplijnen toevoegenHorizontale hulplijn toevoegenLaagmasker _toevoegen...Laag toevoegenLaagmaskter toevoegenPad toevoegenLijn toevoegenTekstlaag toevoegenVerticale hulplijn toevoegenMasker aan de laag toevoegenKleur toevoegen uit AGKleur toevoegen uit VGLaagmaskter toevoegenTekst aan de afbeelding toevoegenVoeg de huidige kleur toe aan de kleurgeschiedenisVoeg het geselecteerde filter toe aan de lijst van actieve filters.Toevoegen aan huidige selectieThema '%s' (%s) toevoegen (bezig) +OptellingAanvullende invoerapparatenHelderheid-Contrast aanpassenKleurbalans aanpassenKleurcurves aanpassenKleurniveaus aanpassenHelderheid-Contrast aanpassenKleurbalans aanpassenKleurcurves aanpassenKleurniveaus aanpassenKleurtoon en verzadiging aanpassenNiveau's automatisch aanpassenAanpassingBetreft:Betroffen gebied %sVerfspuitVerfspuit met variabele drukAl_pha naar selectieUitgelijndUitlijningAlle kanalenAlle bestandenAlle bestanden (*.*)Alle informatie over afbeeldingen en Ongedaan Maken die niet in de tegelcache past, wordt naar een wisselbestand geschreven. Dit bestand hoort op een lokaal bestandssysteem te staan met genoeg vrije schijfruimte (enkele honderden megabytes). Op een UNIX-systeem zou u de temp-map van het systeem kunnen gebruiken ("/tmp" of "/var/tmp").Sta vullen van volledig transparante gebieden toeSelectie van volledig transparante gebieden toestaanAlphaAlpha naar selectieAlpha:Een afbeelding met de gekozen afmetingen zal meer geheugen nodig hebben dan momenteel als "Maximale afbeeldingsgrootte" is geconfigureerd in het dialoogvenster Voorkeuren (momenteel %s).Ani_matieDrijvende selectie verankerenDrijvende laag verankerenDrijvende selectie verankerenHoek:Anti-gum %sAnti-aliasingWeergaveLaagmasker toepassenLaag_masker toepassenDrempel toepassenLaagmasker toepassenBent u zeker dat u '%s' uit de lijst en van de schijf wilt verwijderen?Bent u zeker dat u sjabloon '%s' van de lijst en van schijf wilt verwijderen?Vraag om bevestiging alvorens een afbeelding te sluiten zonder deze op te slaan.Platheid:Verhouding:Parasiet aanhangenParasiet aan afbeelding koppelenParasiet aan item koppelenParasiet aanhangenAuteur:AutomatischAutokrimpenVenster automatish aanpassenAutoladenAutomatisch opgemerktBeschikbare filtersBeschikbare typen:B_uffersAchtergrondAchtergrondkleurAchtergrondkleur ingesteld op:Achtergrond: %d, %d, %dAchterwaarts (corrigerend)Baseer gevuld gebied op alle zichtbare lagenSelectie baseren op alle zichtbare lagenAchterSchuinBilineairZwartwitZwart:MengenVerloop: Verloop: ongeldig voor geïndexeerde beelden.Mengen...BlauwBlauw:VervagenVervagen of verscherpen_Rand...KanaalrandRandselectieRandselectie metHelderheid-ContrastHelderheid-Contrast werkt niet op geïndexeerde lagen.PenseelPenseeleditorPenseelmappenPenseel-UIPenseel:PenselenMenu PenselenVullenBuffersMenu BuffersDonkerderStompVolgens extensieCMYK_Kalibreren...Kolommen:_CombinerenKalibreer beeldschermresolutieKan %s niet ongedaan makenCan_vasgrootteAnnulerenHulplijn annulerenKan geen laagmasker toevoegen met andere afmetingen dan de gespecificeerde laagKan geen laagmasker toevoegen aan een laag zonder alphakanaal.Kan geen laagmasker toevoegen aan een laag die niet deel is van een afbeelding.Kan deze laag niet verankeren, want het is geen drijvende selectie.Kan een palet met meer dan 256 kleuren niet omzetten.Kan geen nieuwe laag maken van de drijvende selectie, omdat hij toebehoort aan een laagmasker of kanaal.Kan map '%s' niet aanmaken: %sKan geen vooruitblik aanmakenKan niet snijden, omdat de huidige selectie leeg is.Kan niet uitbreiden ${%s}Kan selectie niet laten drijven, omdat het geselecteerde gebied leeg is.Kan een laag zonder alpha niet verhogenKan niet opslaan. Niets is geselecteerd.Kan geen lijn tekenen op leeg kanaal.Kan geen leeg pad tekenen.CanvasgrootteMidden X:GecentreerdAchtergrondkleur veranderenVoorgrondkleur veranderenAfbeeldingsresolutie veranderenAfbeeldingseenheid veranderenHuidige laag of pad wijzigenAchtergrondkleur raster veranderenVoorgrondkleur raster veranderenVerander het perspectief van de huidige laag of selectieWijzigen sneltoets mislukt.KanaalKanaalattributenKanaalnaam:Kanaal kan niet verder naar benedenKanaal kan niet verder naar bovenKanaal naar sele_ctieKanaal naar selectieKanaal naar selectieKanaal:KanalenMenu KanalenVak_grootte:Kies lijntekenstijl.Cirkel_WissenLeegmakenKanaal leegmakenOverzicht 'Ongedaan maken' leegmakenAlle tekst wissenFouten wissenOverzicht 'Ongedaan maken' leegmaken...Klik "Doorgaan" om bovenstaande instellingen te aanvaarden.Klik "Doorgaan" om uw persoonlijke GIMP-map aan te maken.Klik "Doorgaan" om de gebruikersinstallatie te starten.Klik "Doorgaan" om de gebruikersinstallatie te starten.Klik om dit anker met het geselecteerde eindpunt te verbinden.Klik om een nieuw anker aan te maken. (Probeer SHIFT.)Klik om nieuwe component van het pad aan te maken.Klik om een nieuw pad aan te makenKlik om dit anker te wissen.Klik om een anker op het pad in te voegen. (Probeer SHIFT.)Klik om dit knooppunt hoekig te maken.Klik om het pad te splitsen.Klik om te bewerken pad te kiezen.Klik om vooruitblik te vernieuwen +%s Klik om vernieuwing af te dwingen, ook als vooruitblik bijgewerkt isKlik-sleep om de vorm van de curve te veranderen. (SHIFT: symetrisch.)Klik-sleep om het anker te slepen.Klik-sleep om de ankers te slepen.Klik-sleep om het component te slepen. (Probeer SHIFT.)Klik-sleep om het handvat te slepen. (Probeer SHIFT.)Klik-sleep om het pad te slepen.Klik: selecteerKlik: selecteer Sleep: verplaatsKlembordOp onderste laag gesnedenOp afbeelding gesnedenKlonen%s sluitenAlle tabs sluitenAlle tabs sluiten?Deze tab sluitenPad _kopiërenKleu_renKleurKleurbalansKleurweergavefiltersKleurkiezerInformatie kleurenkiezerKleurbalans werkt enkel op RGB-lagen.Kleur wissenKleurindex:Kleur:_Kleurenkaart_Kleurtype:Kleurtype voor segmentKleurtype voor selectieVerkleurenVerkleuren werkt enkel op RGB-lagen.Afbeelding verkleurenAfbeelding verkleurenKleurenkaartKleurenkaart editorKleurenkaart menuKolommen:_Tekstbijlage:CommentaarContrast:Kleurweergavefilters instellen_Uitgebreide invoerapparaten configureren...Raster instellenAfbeeldingsraster instellenSneltoetsen configurerenSneltoetsen configureren...Geselecteerde filter configurerenGeselecteerde filter configureren: %sAfbeeldingsgrootte bevestigenSchalen bevestigenTekstbewerken bevestigenConflicterende sneltoetsenLijnen verbindenConstantBeperkingenContextContextafhankelijke cursors zijn handig. Standaard staan ze aan. Ze verbruiken echter extra bronnen, en wellicht wilt u dat niet.DoorgaanMet bijdragen van ...ConverterenRand converterenAfbeelding naar Grijswaarden omzettenAfbeelding naar Geïndexeerd omzettenAfbeelding naar geïndexeerde kleuren omzettenAfbeelding naar RGB omzettenAfbeelding converterenVervagen/verscherpenConvolutietype %sBenoemde buffer kopiëren_Zichtbare kopiërenBestand '%s' wordt gekopieerd uit '%s'...Copyright:Beschadigd segment %d in verloopbestand '%s'.Kan '%s' niet aanmaken: %sKon geen tijdelijk bestand voor '%s' aanmaken: %sKan '%s' niet verwijderen: %sKon de hulpbrowser van GIMP niet vinden.Kon '%s' niet openen voor lezen: %sKon '%s' niet openen voor schrijven: %sKon miniatuurbestand '%s' niet openen: %sKan %d bytes niet lezen uit '%s': %sKan niet zoeken in XCF-bestand: %sKon de hulpbrowser plug-in van GIMP niet starten.Aantal:Laag s_nijdenNieuw do_k aanmakenNieuwe sjabloon aanmakenNieuwe afbeelding makenMaak nieuwe laag aanNieuwe sjabloon aanmakenMaak een nieuwe weergave voor deze afbeelding aanNieuwe afbeelding aanmaken op basis van de geselecteerde sjabloonNieuwe sjabloon aanmakenAfbeeldingen of foto's aanmaken en bewerkenPaden aanmaken en bewerkenLaden vooruitblik (bezig)Map '%s' wordt aangemaakt...SnijdenKnippen & herschalenInformatie knippen en herschalenAfbeelding snijdenLaag snijdenAfbeelding snijdenAfbeelding snijden of schalenKnip: Alleen kruisdraadK_nippenBenoemde buffer k_nippen...Kubisch (beste)Huidige _statusHuidige statusCursorCursor_modus:CurvetypeCurvesCurves voor geïndexeerde lagen kunnen niet worden aangepast.AangepastAangepaste kleurKnippenBenoemde buffer knippenCyaanCyaan:Penseel d_uplicerenKanaal d_uplicerenVerloop d_uplicerenLaag d_uplicerenPad d_uplicerenPatroon d_uplicerenSjabloon d_upliceren...Donkere vakjesEnkel donker makenStreep stip stip...Streep stip...Streepjespatroon:GestreeptDatum:DebuggenVolledig schermNormale standStandaard rasterStandaard rasterStandaard _interpolatie:Standaard drempelwaarde:Anker verwijderenLaagmasker _verwijderenLaagmasker verwijderenObject verwijderenSegment verwijderenSjabloon verwijderenPenseel verwijderenKanaal verwijderenVerloop verwijderenLaag verwijderenPad verwijderenOpgeslagen opties verwijderen...De geselecteerde buffer verwijderenGeselecteerde sjabloon verwijderenVerwijder deze afbeeldingVerwijderen van '%s' mislukt: %sVeel stippenDesaturerenDesatureren werkt enkel op RGB-lagen.OmschrijvingOntwerpenApparaatstatusApparatenDialogenMenu DialogenDiamandVerschilDirecte kleurLaagmasker uitzettenTekstinformatie wegwerpenWeergaveWeergavenavigatie_Weergavefilters...WeergaveproceduresWeergavetype:Tonen [%0.6f, %0.6f]OplossenAfstand:Afstand: %0.6fKleurbenaderingDelenEen _verse gebruikersinstallatie uitvoerenWeet u zeker dat u alle gereedschapsopties tot hun standaard waarden wilt terugbrengen?Wilt u het vervangen door de afbeelding die u aan het opslaan bent?_Niet opslaanAankoppelbaar_DocumentgeschiedenisDocumentgeschiedenisDocumentenMenu DocumentenLichterLijnen tegenhouden of doordrukkenTegenhouden of doordrukkenDubbel gestreeptAnker slepenAnkers slepenCurve slepenHandvat slepenPad slepenSlepen: verplaatsenIn inkt tekenenTekengebiedTekengebiedproceduresNieuwe laag slepenNieuw pad verwijderenTekstfunctionaliteit ontbreekt, omdat er geen fonts zijn.Acties van dit invoerapparaat dumpenPenseel duplicerenKanaal duplicerenVerloop duplicerenLaag duplicerenPad duplicerenPatroon duplicerenGeselecteerde sjabloon duplicerenEek: kan niet ongedaan makenPad e_xporteren..._Zeer kleinRandgedragR_andenBewerkenKanaalattributen bewerkenKanaalkleur bewerkenKleur paletingang bewerkenKleur-paletingang bewerkenLaagattributen bewerkenLaagmaskter bewerkenBewerkstandPaletkleur bewerkenPadattributen bewerkenSjabloon bewerkenPenseel bewerken...Kanaalattributen bewerkenKleur bewerkenKleur-paletingang #%d bewerkenVerloop bewerkenPadattributen bewerkenPatroon bewerken...BewerkingsproceduresGeselecteerde sjabloon bewerkenOvale selectieNieuw kanaalNieuwe laagLeeg padTekstlaag leegmakenLege variabelenaam in omgevingsbestand %sVer_sterkenDit invoerapparaat gebruikenToon handige tips bij het starten van de GIMP.Toon zwevende tips.EnormGeef een naam op voor samengevoegd paletGeef een naam voor de opgeslagen opties opGeef een naam voor deze bufferGeef een naam voor deze sjabloonGeef een naam op voor de opgeslagen optiesLocatie invoeren (URI):OmgevingOmgevingsmappenGelijkmaken'Gelijkmaken' werkt niet op geïndexeerde lagen.Naar achtergrond of transparantie verwijderenGomFoutenco_nsoleFoutenconsoleMenu FoutenconsoleFout bij opslaan XCF-bestand: %sFout tijdens parseren '%s' in regel %d: %sFout tijdens lezen '%s': %sFout tijdens schrijven van '%s': %sFout bij schrijven XCF: %sFout bij schrijven bestand '%s': %sFout bij schrijven naar '%s': %sFout bij schrijven naar tijdelijk bestand voor '%s': %s Geen bestand aangemaakt.Fout bij het schrijven van tijdelijk bestand voor '%s': %s -Het originele bestand is niet getouched.FoutenActieVergroot waar nodigPad naar SVG exporterenActieve pad exporterenBelichting:Uitgebreide invoerapparatenExtensiesVG naar AG (KVW kleurtoon met wijzers mee)VG naar AG (KVW tegen wijzers in)VG naar AG (KVW)VG naar AG (RGB)VG naar TransparantVG/AGVG-/AG-kleurUitvloeienKon paden niet importeren uit '%s': %sChiqueFatale parseerfout in penseelbestand '%s': bestand lijkt te zijn ingekort.Fatale parseerfout in penseelbestand '%s': bestand is beschadigd.Fatale parseerfout in penseelbestand '%s': is geen GIMP-penseelbestand.Fatale parseerfout in penseelbestand '%s': onbekende versie GIMP-penseel.Fatale parseerfout in penseelbestand '%s': onbekende diepte %d.Fatale parseerfout in penseelbestand '%s': onbekende versie %d.Fatale parseerfout in penseelbestand '%s': niet-ondersteunde penseeldiepte %d +Het originele bestand is niet getouched.FoutenActieZ_eer grootVergroot waar nodigPad naar SVG exporterenActieve pad exporterenBelichting:Uitgebreide invoerapparatenExtensiesVG naar AG (KVW kleurtoon met wijzers mee)VG naar AG (KVW tegen wijzers in)VG naar AG (KVW)VG naar AG (RGB)VG naar TransparantVG naar transparantVG/AGVG-/AG-kleurUitvloeienKon paden niet importeren uit '%s': %sChiqueFatale parseerfout in penseelbestand '%s': bestand lijkt te zijn ingekort.Fatale parseerfout in penseelbestand '%s': bestand is beschadigd.Fatale parseerfout in penseelbestand '%s': is geen GIMP-penseelbestand.Fatale parseerfout in penseelbestand '%s': onbekende versie GIMP-penseel.Fatale parseerfout in penseelbestand '%s': onbekende diepte %d.Fatale parseerfout in penseelbestand '%s': onbekende versie %d.Fatale parseerfout in penseelbestand '%s': niet-ondersteunde penseeldiepte %d GIMP-penselen moeten Grijswaarden of RGBA zijn.Fatale parseerfout in verloopbestand '%s': bestand is beschadigd.Fatale parseerfout in verloopbestand '%s': is geen GIMP-verloopbestandFatale parseerfout in paletbestand '%s': ontbrekende bestandstypeaanduiding.Fatale parseerfout in paletbestand '%s': incorrecte bestandstypeaanduiding. Is dit bestand in een ander besturingssysteem geschreven?Fatale parseerfout in paletbestand '%s': leesfout op regel %d.Fatale parseerfout in patroonbestand '%s': kon niet %d bytes lezen: %sFatale parseerfout in patroonbestand '%s': onbekende patroonformaatversie %d.Fatale parseerfout in patroonbestand '%s': niet-ondersteunde patroondiepte %d. -GIMP-patronen moeten Grijswaarden of RGB zijn.Kanaal verzachtenStraalselectieStraalselectie metBestandBestandsoperatiesBestandstypeBestand bestaatBestand is afgekaptKanaal vullenOndoorzichtigheid van opvullen: Vultype %sVullen met AG-kleurVullen met VG-kleurMet patroon vullenMet transparantie vullenMet wit vullenVullen met _achtergrondkleurVullen met een kleurverloopVul met een kleur of patroonUitgevuldFilte_rsUiteindelijke, samengevoegde laag moet worden:Aaneengesloten gebieden vindenGelijkaardige kleuren zoekenAfbeelding in venster passenIn venster passenVaste grootteAfbeelding plettenOmkerenKanaal spiegelenLaag spiegelenPad spiegelenTekstlaag spiegelenSpiegelrichting %sSpiegel de huidige laag of selectieSpiegelen...Spiegelen...Drijvende selectieDrijvende selectie naar laagDrijvende selectiesFocusMapMappenFontmappenFont-UIFontsMenu FontsVoor een correcte GIMP-installatie moet een map met de naam '%s' worden aangemaakt.VoorgrondVoorgrond- en achtergrondkleuren. Met de zwarte en witte vierkanten stelt u kleuren opnieuw in. Met de pijlen verwisselt u kleuren. Dubbelklik om een kleur uit te kiezen.VoorgrondkleurVoorgrondkleur ingesteld op: Voorgrond: %d, %d, %dVoorwaarts (traditioneel)Vrije selectieVrije selectieVrijVan _themaResolutie aan het venstersysteem vragen (momenteel %d × %d dpi)Van links naar rechtsVan rechts naar linksVan thema_Volledig schermVage selectieGIMPGIMP-extensieGIMP-berichtGIMP-prestatie-afstemmingGIMP-plug-inOpstarten van GIMPGIMP-teksteditorGIMP Tip van de dagGIMP-gebruikersinstallatieGIMP XCF-afbeeldingGIMP kon de grafische gebruikersinterface niet initialiseren. +GIMP-patronen moeten Grijswaarden of RGB zijn.Kanaal verzachtenStraalselectieStraalselectie metBestand_Dialoogvenster Bestand openenBestandsoperatiesBestandstypeBestand bestaatBestand is afgekaptKanaal vullenOndoorzichtigheid van opvullen: Vultype %sVullen met AG-kleurVullen met _AG-kleurVullen met VG-kleurVullen met _patroonMet patroon vullenMet transparantie vullenMet wit vullenVullen met _VG-kleurVullen met _achtergrondkleurVullen met een kleurverloopVul met een kleur of patroonUitgevuldFilte_rsUiteindelijke, samengevoegde laag moet worden:Aaneengesloten gebieden vindenGelijkaardige kleuren zoekenAfbeelding in venster passenAfbeelding in venster passenAfbeelding in venster passenIn venster passenVaste grootteAfbeelding plettenOmkerenKanaal spiegelenLaag spiegelenPad spiegelenTekstlaag spiegelenSpiegelrichting %s_Horizontaal spiegelen_Verticaal spiegelenAfbeelding spiegelenSpiegel de huidige laag of selectieSpiegelen...Spiegelen...Drijvende selectieDrijvende selectieDrijvende selectie naar laagDrijvende selectie naar laagDrijvende selectiesFocusMapMappenFontmappenFont-UIFontsMenu FontsVoor een correcte GIMP-installatie moet een map met de naam '%s' worden aangemaakt.VoorgrondVoorgrond- en achtergrondkleuren. Met de zwarte en witte vierkanten stelt u kleuren opnieuw in. Met de pijlen verwisselt u kleuren. Dubbelklik om een kleur uit te kiezen.VoorgrondkleurVoorgrondkleur ingesteld op:Voorgrond: %d, %d, %dVoorwaarts (traditioneel)_Uit padVrije selectieVrije selectieVrijVan _themaResolutie aan het venstersysteem vragen (momenteel %d × %d dpi)Van links naar rechtsVan rechts naar linksVan selectieVan thema_Volledig schermVage selectieGIMPGIMP-extensieGIMP-berichtGIMP-prestatie-afstemmingGIMP-plug-inOpstarten van GIMPGIMP-teksteditorGIMP Tip van de dagGIMP-gebruikersinstallatieGIMP XCF-afbeeldingGIMP kon de grafische gebruikersinterface niet initialiseren. Zorg dat een correcte instelling voor uw weergaveomgeving bestaat.Hulpbrowser voor GIMPDe gebruikersinstallatie was overgeslagen, omdat de '--no-interface'-optie was gebruikt. -Om de gebruikersinstallatie uit te voeren, start de GIMP zonder de '--no-interface'-optie.GIMP gebruikt een beperkte hoeveelheid geheugen voor afbeeldingsgegevens, de zogeheten "Tegelcache". U moet de grootte aanpassen aan uw geheugen. Hou rekening met geheugen dat door andere processen wordt gebruikt.GIMP gebruikt een eigen gtkrc-bestand zodat u het er anders kunt laten uitzien dan andere GTK-programma's.GIMP-versieGIMP waarschuwt een gebruiker als een poging wordt gedaan een afbeelding aan te maken die meer geheugen vereist.GammaAlgemeenHet minimum aantal systeemkleuren dat is gereserveerd voor de GIMP (over het algemeen alleen belangrijk bij 8-bit weergaven).BeeldscherminformatieGigantischGimprc-procedures_GlaseffectenVerloopVerloopeditorMenu VerloopeditorVerloopmappenKleur van linkereindpunt van verloopsegmentKleur van rechtereindpunt van verloopsegmentVerloop-UIVerloop:VerlopenMenu VerlopenGrijsGrijswaardenGroenGroen:RasterKanaal groeienSelectie groeienGroei selectie metHulplijnMagnetische hulplijnen en rasterHulplijnproceduresKVWKVW (%0.3f, %0.3f, %0.3f)HTML-notatie:_Hoogte: Te gebruiken hulpbrowser:Handel positie: %0.6fHarde randHardheidHardheid:HoogteHoogte: HulpHulpbrowserHulpsysteemHulpbrowser start niet opHulpbrowser niet gevondenHulpproceduresHex:Lichtere kleurenHinten verandert de tekenvorm om bij alle groottes een gestoken bitmap te makenHistogramHistogramschaalGeschiedenisHorizontaalHorizontale verspringing van de eerste rasterlijn; dit mag een negatief getal zijn.Horizontale tussenruimte van rasterlijnen.Aantal recent geopende afbeeldingsbestanden te tonen in het menu Bestand/Recent openen.KleurtoonTint-VerzadigingKleurtoon-Verzadiging werkt enkel op RGB-lagen.Kleurtoon:Reusachtig_AfbeeldingI_nterpolatie:Interval:PictogramPictogram & omschrijvingPictogram & tekstAls hints in de font aanwezig zijn, worden ze gebruikt, maar mogelijk verkiest u altijd de autohinter te gebruikenIndien u de afbeelding niet opslaat zullen de wijzigingen in de laatste %s verloren gaan.Niet toegestane variabelenaam in omgevingsbestand %s: %sAfbeeldingAfbeelding-editorAfbeeldingsinformatieAfbeeldingsmenuAfbeeldingsgrootteFormaat afbeeldingsstatusbalkAfbeeldingssjablonenIniaturenFormaat afbeeldingstitel en statusbalkFormaat afbeeldingstitelWeergave afbeeldingsvenstersAfbeeldingsvenstersAfbeelding bevat geen zichtbare lagenAfbeeldingAfbeeldingsmaskerAfbeeldingsresolutie is buiten het bereik, in plaats daarvan wordt de standaardresolutie gebruikt.AfbeeldingsbronAfbeeldingenMenu AfbeeldingenImportoptiesPalet importerenPaden importerenPaden uit SVG importerenNieuw palet importerenGeïmporteerd padMasker inverterenOplopendInspringen:Inspringing van eerste regelIndex:GeïndexeerdGeïndexeerde KleurGeïndexeerde kleuromzettingInformatievenster_Aanvankelijke zoomverhouding:Laagmasker initialiseren naar:Initialiseren plug-ins (bezig)Initialiseren plug-in '%s' (bezig) -InktInline pixbufInvoerapparatenInvoerapparatenInvoerniveausAnker invoegenInstallatie mislukt. Neem contact op met systeembeheer.Installatie succesvol. Klik "Doorgaan" om verder te gaan.Onmiddelijk vernieuwenInterfaceInterne GIMP-procedureInterne proceduresInterpolatie:Snijden met huidige selectieDoorsnedes (kruisdraden)Doorsnedes (punten)Ongeldige UTF-8Ongeldige UTF-8-gegevens in bestand '%s'.Ongeldige UTF-8-tekenreeks in XCF-bestandOngeldige UTF-8-tekenreeks in penseelbestand '%s'.Ongeldige UTF-8-tekenreeks in verloopbestand '%s'.Ongeldige UTF-8-tekenreeks in paletbestand '%s'Ongeldige UTF-8-tekenreeks in patroonbestand '%s'.Ongeldige tekenreeks in URIOngeldige sneltoets.Ongeldige breedte of hoogte. Beiden moeten positief zijn.InverterenKanaal inverterenSelectie omkerenInverteren werkt niet op geïndexeerde lagen.Is dit wat u wilt doen?Blijkbaar heeft u eerder GIMP 2.0 gebruikt.Uitvullen:Transparantie behoudenZichtbaar houdenVaste verhoudingTransparantie behoudenToetsenbordkoppelingen kunnen dynamisch worden gewijzigd in de GIMP. Het menurc-bestand is een opname van uw toetseninstellingen op het moment dat de GIMP wordt gesloten. U kunt als u wilt dit bestand veranderen, maar het is veel makkelijker om de toetsen te definiëren vanuit de GIMP. Door dit bestand te verwijderen worden de standaardkoppelingen hersteld.ToetsenbordSneltoetsenLNRLiggendGrootGroot (256×256)Grotere vooruitblikkenLaatste fout:LaagLaag '%s' heeft geen alpha. Laag erboven geplaatst.LaagattributenVultype laagLaagmasker naar selectieLaagselectieLaaggrootteNaam laag:Laag kan niet verder naar benedenLaag kan niet verder naar bovenLaag is reeds op de bodemLaag is reeds de bovensteLaag naar afbeeldingsgrootteLaag _onderaanLaag _bovenaanLagenMenu LagenOpties voor samenvoegen lagenKleur van linkereindpuntLinks uitgelijndLengte:Laat GIMP trachten uw laatste sessie te herstellen bij elke keer dat u het programma start.NiveausNiveaus voor geïndexeerde lagen kunnen niet worden aangepast.Lichte vakjesLijnLijnbreedte:Lijnstijl:Lijnstijl van het raster.LineairLadenCurves ladenNiveaus ladenLaden vooruitblik (bezig)Locatie:LogaritmischLange streepjesBezig met zoeken naar gegevensbestandenKanaal verlagenKanaal onderaanKanaal _onderaanLaag naar benedenLaag naar bodemPad verlagenPad naar bodemKanaal verlagenKanaal onderaan zettenLaag omlaagLaag onderaan zettenAllemaal_ProjecterenMagentaMagenta:Vergroten_Transparant makenLaadbare modules beherenSnelheid _marcherende mieren:Ondoorzichtigheid van masker:Matrix:Max. Diepte:Maximale _bestandsgrootte voor miniaturen:Maximum kleurverschilMax. _geheugenruimte "Ongedaan maken":Gemiddelde:MetenAfstanden en hoeken metenAfstanden en hoeken metenMediaan:MediumMedium streepjes_Neerwaarts samenvoegenNeerwaarts samenvoegenLagen samenvoegenVoeg palet samenZichtbare lagen samenvoegenZichtbare paden samenvoegen_Zichtbare lagen samenvoegen...Lagen samenvoegenBerichtproceduresBericht %d maal herhaaldBericht eenmaal herhaaldMiddenkleurenGebruikersinstellingen overzetten_Min. aantal niveaus "Ongedaan maken":AllerleiVerstekModusModus:Geselecteerde kleur aanpassenVerander kleurniveau's van het geselecteerde bereikPas alle kleuren aanRegeltussenruimte aanpassenModulemappenModulebeheerModulepadModulesMuisaanwijzersVerplaatsenAnkers verplaatsenKanaal verplaatsenHulplijn verplaatsenHulplijn verplaatsen: Laag verplaatsenLaagmasker verplaatsenPad verplaatsenSelectie verplaatsenTekstlaag verplaatsenVerplaatsingVerplaats lagen en selectiesSelectie verplaatsenHuidige laag verplaatsenHuidig pad verplaatsenGeselecteerd filter naar benedenGeselecteerd filter naar bovenVerplaats: Vermenigvuldigen_Aantal kleuren:_NavigatievensterNaamNaam:NavigatieNieuw kanaalNieuwe kanaalkleurOpties Nieuw kanaalNieuwe afbeeldingNieuwe laagNieuw padOpties nieuw padNieuwe sjabloonNieuw penseelNieuw kanaal met laatste waardesNieuw kanaal...Nieuw verloopNieuw importerenNieuwe laag met laatste waardesNieuwe laag...Nieuw paletNieuw patroonGeen penselen beschikbaar voor dit gereedschap.Geen filter geselecteerdNiet langer beschikbaarGeen paden gevonden in '%s'Geen paden gevonden in de bufferGeen patronen beschikbaar voor deze operatie.Geen selectieGeen selectie om op te tekenen.Geen miniaturenNiet uitgelijndGeenGeen (snelste)NormaalNormaal (128×128)Normaal aantal stippenNormaal vensterNiet een standaard bestandEr zijn niet genoeg zichtbare lagen om samen te voegen. Er moeten er ten minste twee zijn.Er zijn niet genoeg zichtbare paden om samen te voegen. Er moeten er minstens twee zijn.Aantal lagen:_Anders...VerspringenKanaal verspringenVerspringing tekengebiedLaag verspringenLaagmasker verspringenVerschuiven met x/_2, y/2Verspringing:Op schijfOp computers met meerdere processors en met een GIMP die met de optie '--enable-mp' is gemaakt, bepaalt dit hoeveel processors GIMP tegelijk moet gebruiken.Alleen in geheugenOp_enen als laag...OndoorzichtigheidOndoorzichtigheid:Afbeelding openenAfbeelding openen als laagLocatie openenOpen tekstbestand (UTF-8)_Locatie openen..._Recent geopendOpen het penseelkeuzedialoogvensterOpen het fontkeuzedialoogvensterOpen het verloopkeuzedialoogvensterOpen het patroonkeuzedialoogvensterOpenen van '%s' mislukte. +Om de gebruikersinstallatie uit te voeren, start de GIMP zonder de '--no-interface'-optie.GIMP gebruikt een beperkte hoeveelheid geheugen voor afbeeldingsgegevens, de zogeheten "Tegelcache". U moet de grootte aanpassen aan uw geheugen. Hou rekening met geheugen dat door andere processen wordt gebruikt.GIMP gebruikt een eigen gtkrc-bestand zodat u het er anders kunt laten uitzien dan andere GTK-programma's.GIMP-versieGIMP waarschuwt een gebruiker als een poging wordt gedaan een afbeelding aan te maken die meer geheugen vereist.GammaAlgemeenHet minimum aantal systeemkleuren dat is gereserveerd voor de GIMP (over het algemeen alleen belangrijk bij 8-bit weergaven).BeeldscherminformatieGigantischGimprc-procedures_GlaseffectenVerloopVerloopeditorMenu VerloopeditorVerloopmappenKleur van linkereindpunt van verloopsegmentKleur van rechtereindpunt van verloopsegmentVerloop-UIVerloopbestand '%s' is beschadigd: segmenten omvatten niet het bereik 0-1.Verloop:VerlopenMenu VerlopenGrijsGrijswaardenGroenGroen:RasterKanaal groeienSelectie groeienGroei selectie metHulplijnMagnetische hulplijnen en rasterHulplijnproceduresKVWKVW (%0.3f, %0.3f, %0.3f)HTML-notatie:Hoogt_e: Te gebruiken hulpbrowser:Handel positie: %0.6fHarde randHard lichtHardheidHardheid:HoogteHoogte: HulpHulpbrowserHulpsysteemHulpbrowser start niet opHulpbrowser niet gevondenHulpproceduresHex:Lichtere kleurenHinten verandert de tekenvorm om bij alle groottes een gestoken bitmap te makenHistogra_mHistogramHistogramschaalGeschiedenisHorizontaalHorizontale verspringing van de eerste rasterlijn; dit mag een negatief getal zijn.Horizontale tussenruimte van rasterlijnen.Aantal recent geopende afbeeldingsbestanden te tonen in het menu Bestand/Recent openen.KleurtoonTint-VerzadigingKleurtoon-Verzadiging werkt enkel op RGB-lagen.Kleurtoon:ReusachtigPi_ctogram & tekst_AfbeeldingPad i_mporteren...I_nterpolatie:Interval:PictogramPictogram & omschrijvingPictogram & tekstAls hints in de font aanwezig zijn, worden ze gebruikt, maar mogelijk verkiest u altijd de autohinter te gebruikenIndien u de afbeelding niet opslaat zullen de wijzigingen in de laatste %s verloren gaan.Niet toegestane variabelenaam in omgevingsbestand %s: %sAfbeeldingAfbeelding-editorAfbeeldingsinformatieAfbeeldingsmenuAfbeeldingsgrootteFormaat statusbalkAfbeeldingssjablonenMiniaturenFormaat titel en statusbalkFormaat titelWeergave afbeeldingsvenstersAfbeeldingsvenstersAfbeelding bevat geen zichtbare lagenAfbeeldingAfbeeldingsmaskerAfbeeldingsresolutie is buiten het bereik, in plaats daarvan wordt de standaardresolutie gebruikt.AfbeeldingsbronAfbeeldingstypeAfbeeldingenMenu AfbeeldingenImportoptiesPalet importerenPaden importerenPaden uit SVG importerenNieuw palet importerenPaden importerenGeïmporteerd padIn_ktIn_verterenMasker inverterenOplopendInspringen:Inspringing van eerste regelIndex:GeïndexeerdGeïndexeerde KleurGeïndexeerde kleuromzettingInformatievenster_Aanvankelijke zoomverhouding:Laagmasker initialiseren naar:Initialiseren plug-ins (bezig)Initialiseren plug-in '%s' (bezig) +InktInline pixbufInvoerapparatenInvoerapparatenInvoerniveausAnker invoegenInstallatie mislukt. Neem contact op met systeembeheer.Installatie succesvol. Klik "Doorgaan" om verder te gaan.Onmiddelijk vernieuwenIntelligente _scharenIntensiteit: %0.3f Ondoorzichtigheid: %0.3fBedieningInterne GIMP-procedureInterne proceduresInterpolatie:SnijdenSnijden met huidige selectieDoorsnedes (kruisdraden)Doorsnedes (punten)Ongeldige UTF-8Ongeldige UTF-8-gegevens in bestand '%s'.Ongeldige UTF-8-tekenreeks in XCF-bestandOngeldige UTF-8-tekenreeks in penseelbestand '%s'.Ongeldige UTF-8-tekenreeks in verloopbestand '%s'.Ongeldige UTF-8-tekenreeks in paletbestand '%s'Ongeldige UTF-8-tekenreeks in patroonbestand '%s'.Ongeldige tekenreeks in URIOngeldige sneltoets.Ongeldige breedte of hoogte. Beiden moeten positief zijn.InverterenKanaal inverterenSelectie omkerenInverteren werkt niet op geïndexeerde lagen.Is dit wat u wilt doen?Blijkbaar heeft u eerder GIMP 2.0 gebruikt.Eigenschappen itemZichtbaarheid itemUitvullen:Transparantie behoudenZichtbaar houdenTransparantie behoudenToets neerToets neer (Alt)Toets neer (Control + Alt)Toets neer (Control)Toets neer (Shift + Alt)Toets neer (Shift + Control + Alt)Toets neer (Shift + Control)Toets neer (Shift)Toets linksToets links (Alt)Toets links (Control + Alt)Toets links (Control)Toets links (Shift + Alt)Toets links (Shift + Control + Alt)Toets links (Shift + Control)Toets links (Shift)Toets rechtsToets rechts (Alt)Toets rechts (Control + Alt)Toets rechts (Control)Toets rechts (Shift + Alt)Toets rechts (Shift + Control + Alt)Toets rechts (Shift + Control)Toets rechts (Shift)Toets opToets op (Alt)Toets op (Control + Alt)Toets op (Control)Toets op (Shift + Alt)Toets op (Shift + Control + Alt)Toets op (Shift + Control)Toets op (Shift)Toetsenbordkoppelingen kunnen dynamisch worden gewijzigd in de GIMP. Het menurc-bestand is een opname van uw toetseninstellingen op het moment dat de GIMP wordt gesloten. U kunt als u wilt dit bestand veranderen, maar het is veel makkelijker om de toetsen te definiëren vanuit de GIMP. Door dit bestand te verwijderen worden de standaardkoppelingen hersteld.ToetsenbordToetsaanslagenSneltoetsenLNRLiggendGrootGroot (256×256)Grotere vooruitblikkenLaatste fout:LaagLaag '%s' heeft geen alpha. Laag erboven geplaatst.LaagattributenVultype laagLaagmasker naar selectieLaagselectieLaaggrootteNaam laag:Laag kan niet verder naar benedenLaag kan niet verder naar bovenLaag is reeds op de bodemLaag is reeds de bovensteLaag naar afbeeldingsgrootteLaag _onderaanLaag _bovenaanLagenMenu LagenOpties voor samenvoegen lagenKleur van linkereindpuntLinks uitgelijndLengte:Laat GIMP trachten uw laatste sessie te herstellen bij elke keer dat u het programma start.NiveausNiveaus voor geïndexeerde lagen kunnen niet worden aangepast.Lichte vakjesEnkel lichter makenLijnLijnbreedte:Lijnstijl:Lijnstijl van het raster.LineairGekoppeld itemLadenCurves ladenNiveaus ladenCurve-instellingen laden uit bestandNiveauinstellingen uit bestand ladenTekst uit bestand ladenLaden vooruitblik (bezig)Locatie:LogaritmischLange streepjesBezig met zoeken naar gegevensbestandenKanaal verlagenKanaal onderaanKanaal _onderaanLaag naar benedenLaag naar bodemPad verlagenPad naar bodemKanaal verlagenKanaal onderaan zettenLaag omlaagLaag onderaan zettenAllemaal_Verplaatsen naar scherm..._ProjecterenMagentaMagenta:Vergroten_Transparant makenLaadbare modules beherenSnelheid _marcherende mieren:Ondoorzichtigheid van masker:Matrix:Max. Diepte:Maximale _bestandsgrootte voor miniaturen:Maximum kleurverschilMax. _geheugenruimte "Ongedaan maken":Gemiddelde:MetenAfstanden en hoeken metenAfstanden en hoeken metenMediaan:MediumMedium streepjes_Neerwaarts samenvoegenNeerwaarts samenvoegenLagen samenvoegenVoeg palet samenZichtbare lagen samenvoegenZichtbare paden samenvoegen_Zichtbare lagen samenvoegen...Zichtbare paden samen_voegenLagen samenvoegenBerichtproceduresBericht %d maal herhaaldBericht eenmaal herhaaldBerichten worden naar de stderr gevoerdMiddenkleurenGebruikersinstellingen overzetten_Min. aantal niveaus "Ongedaan maken":AllerleiVerstekModusModus:Geselecteerde kleur aanpassenVerander kleurniveau's van het geselecteerde bereikPas alle kleuren aanRegeltussenruimte aanpassenModulemappenModulebeheerModulepadModulesMuisaanwijzersVerplaatsenAnkers verplaatsenKanaal verplaatsenDrijvende selectie verplaatsenHulplijn verplaatsenHulplijn verplaatsen: Laag verplaatsenLaagmasker verplaatsenPad verplaatsenSelectie verplaatsenTekstlaag verplaatsenVerplaatsingItem verplaatsenVerplaats lagen en selectiesSelectie verplaatsenHuidige laag verplaatsenHuidig pad verplaatsenGeselecteerd filter naar benedenGeselecteerd filter naar bovenVerplaatsen: Vermenigvuldigen_Aantal kleuren:Na_vigatie_NavigatievensterNaamNaam:NavigatieNieuw kanaalNieuwe kanaalkleurOpties Nieuw kanaalNieuwe afbeeldingNieuwe laagNieuw padOpties nieuw padNieuwe sjabloonNieuw penseelNieuw kanaal met laatste waardesNieuw kanaal...Nieuw verloopNieuw importerenNieuwe laag met laatste waardesNieuwe laag...Nieuw paletNieuw pad met laatste waardesNieuw pad...Nieuw patroonGeen penselen beschikbaar voor dit gereedschap.Geen filter geselecteerdGeen lineaire verlopen gevonden in '%s'Niet langer beschikbaarGeen paden gevonden in '%s'Geen paden gevonden in de bufferGeen patronen beschikbaar voor deze operatie.Geen selectieGeen selectie om op te tekenen.Geen miniaturenNiet uitgelijndGeenGeen (snelste)NormaalNormaal (128×128)Normaal aantal stippenNormaal vensterNiet een standaard bestandEr zijn niet genoeg zichtbare lagen om samen te voegen. Er moeten er ten minste twee zijn.Er zijn niet genoeg zichtbare paden om samen te voegen. Er moeten er minstens twee zijn.Aantal lagen:_Anders...VerspringenKanaal verspringenVerspringing tekengebiedLaag verspringenLaagmasker verspringenVerschuiven met x/_2, y/2Verspringing:Op schijfOp computers met meerdere processors en met een GIMP die met de optie '--enable-mp' is gemaakt, bepaalt dit hoeveel processors GIMP tegelijk moet gebruiken.Alleen in geheugenOp_enen als laag...OndoorzichtigheidOndoorzichtigheid:OpenenAfbeelding openenAfbeelding openen als laagLocatie openenOpen tekstbestand (UTF-8)_Locatie openen..._Recent geopendDialoogvenster Afbeelding openenOpen het penseelkeuzedialoogvensterOpen het fontkeuzedialoogvensterOpen het verloopkeuzedialoogvensterOpen het patroonkeuzedialoogvensterGeselecteerde item openenOpenen van '%s' mislukte. %sOpenen van '%s' mislukte: %sOpties: -Bron X:Originele breedte:Anders (%s) ...OmtrekUitvoerniveausOverheen leggenPDB-aanroepfout voor procedure '%s': +Oorsprong X:Oorsprong Y:Originele breedte:Anders (%s) ...OmtrekUitvoerniveausOverheen leggenPDB-aanroepfout voor procedure '%s': Argument #%d type past niet (verwachtte %s, kreeg %s)PDB-aanroepfout: -procedure '%s' niet gevondenVoor de GIMP Pixelquiz moet -je psyche een beetje afwijken.SchilderenSchilderopties gedeeld tussen gereedschappenSchildergereedschapsproceduresSchildergereedschap:Vage penseelstreken schilderenTeken lijnen met harde randenMet patronen of stukken uit een afbeelding schilderenPenseelPaletPaleteditorMenu PaleteditorPaletmappenPalet-UIPalet_naam:Palet_bestandPalettenMenu PalettenParasietproceduresParasietenBezig met parseren van '%s' -PlakkenBuffer plakken _inBuffer plakken als _nieuwDe geselecteerde buffer plakkenDe geselecteerde buffer plakken als nieuwe afbeeldingDe geselecteerde buffer plakken in de selectieGeplakte laagPadPadattributenPadnaam:Pad kan niet verder naar benedenPad kan niet verder naar bovenPad naar selectiePadenMenu PadenPatroonPatroonmappenPatroon-UIPatroonbronPatronenMenu PatronenPot_loodPotloodPercentage van breedte van penseelPercentiel:Persoonlijke GIMP-mapPerspectiefInformatie perspectieftransformatiePerspectief...Kiesstand %sKies een laag of hulplijnKies een padKies een kleur uit de afbeeldingPixeldimensies:PixelwaardenPixelsPixels:Controleer dat de menu XML-bestanden correct zijn geïnstalleerd.Wacht a.u.b. terwijl uw persoonlijke GIMP-map wordt aangemaakt...Wacht A.U.B. ...Plug-inPlug-in-omgevingPlug-inmappenPlug-in kon afbeelding niet openenPlug-in kon afbeelding niet opslaanPlug-in crashte: "%s" +procedure '%s' niet gevondenP_atronenVoor de GIMP Pixelquiz moet +je psyche een beetje afwijken.SchilderenSchilderopties gedeeld tussen gereedschappenSchildergereedschapsproceduresSchildergereedschap:_SchilderstandVage penseelstreken schilderenTeken lijnen met harde randenMet patronen of stukken uit een afbeelding schilderenPenseelPal_ettenPaletPaleteditorMenu PaleteditorPaletmappenPalet-UIPalet_naam:Palet_bestandPalettenMenu PalettenParasietproceduresParasietenBezig met parseren van '%s' +PlakkenInterface<Buffer plakken als _nieuwPad _plakkenPlakken _opPlakken als _nieuw beeldDe geselecteerde buffer plakkenDe geselecteerde buffer plakken als nieuwe afbeeldingDe geselecteerde buffer plakken in de selectieGeplakte laagPadPadattributenPadnaam:_PadPad kan niet verder naar benedenPad kan niet verder naar bovenPad naar sele_ctiePad naar selectiePad naar selectiePadenMenu PadenPatroonPatroonmappenPatroon-UIPatroonbronPatronenMenu PatronenPot_loodPotloodPercentage van breedte van penseelPercentiel:Persoonlijke GIMP-mapPerspectiefInformatie perspectieftransformatiePerspectief...Kiesstand %sKies een laag of hulplijnKies een padZwartpunt kiezenKies een kleur uit de afbeeldingGrijspunt kiezenWitpunt kiezenPixeldimensies:PixelwaardenPixelsPixels:Controleer dat de menu XML-bestanden correct zijn geïnstalleerd.Wacht a.u.b. terwijl uw persoonlijke GIMP-map wordt aangemaakt...Wacht A.U.B. ...Plug-inPlug-in-omgevingPlug-inmappenPlug-in kon afbeelding niet openenPlug-in kon afbeelding niet opslaanPlug-in crashte: "%s" (%s) De stervende plug-in kan de interne staat van de GIMP overhoop hebben gehaald. U doet er verstandig aan uw afbeeldingen op te slaan en de GIMP af te sluiten en opnieuw op te starten.Plug-in melde SUCCES, maar produceerde geen afbeeldingPlug-insPlug-inPlug-ins en extensies zijn externe programma's die door de GIMP worden uitgevoerd en die extra functionaliteit bieden. Tijdens het uitvoeren van de GIMP wordt naar deze programma's gezocht en in dit bestand wordt informatie over hun functionaliteit en mod-tijden opgeslagen. Dit bestand hoort alleen door de GIMP gelezen te worden en mag niet worden gewijzigd.PolygonaalStaandPositie: %0.6fPosterizerenPosterizeren (verminder aantal kleuren)Posterisatie_niveaus:Posterizeren werkt niet op geïndexeerde lagen.VoorkeurenDrukgevoeligheidDruk:VooruitblikVooruitblik is verouderdVooruitblikkenAfdrukgrootteAfdrukgrootte:Problemen met het parseren van de tekstparasiet voor laag '%s': %s Sommige teksteigenschappen kunnen fout zijn. Dat is geen probleem, behalve als u de tekstlaag wilt bewerken.Procedurele DatabaseProcedurele databankVoortgangPseudokleurDoel:KwaliteitOpvragenOpvragen nieuwe plug-ins (bezig)Opvragen plug-in: '%s' (bezig) -SnelmaskerSnelmaskerDe GIMP afsluitenRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB-kleurRGB-leegRGBA (%0.3f, %0.3f, %0.3f, %0.3f)RNL"%s" opnieuw tonenRadiaalStraal:Kanaal verhogenKanaal bovenaanKanaal _bovenaanLaag omhoogLaag bovenaanPad omhoogPad naar topKanaal verhogenKanaal bovenaan zettenLaag omhoogLaag bovenaan zettenDe weergaven van deze afbeelding omhoogVenster bovenop indien reeds geopendMateMate:Laatste opnieuw tonenMiddelpunten in selectie hercentrerenMiddelpunt van segment hercentrerenHandvatten in segment herverdelenHandvatten in selectie herverdelen"%s" herhalenLaden palet '%s': GROEN-component ontbreekt op regel %d.Laden palet '%s': ongeldig aantal kolommen op regel %d. GIMP gebruikt standaard waarde.Laden palet '%s': BLAUW-component ontbreekt op regel %d.Laden palet '%s': ROOD-component ontbreekt op regel %d.Laden palet '%s': RGB-waarde buiten bereik op regel %d.KlaarRechthoekselectieRoodRood:Opnieuw uitvoerenAfbeelding tot vast aantal kleuren reducerenAfbeelding tot twee kleuren reduceren met een grenswaardePenselen vernieuwenVerlopen vernieuwenPatronen vernieuwenGeregistreerdHuidig thema herladenOnthou het huidige gereedschap, patroon, de kleur en penseel voor een volgende sessie.NetwerkafbeeldingKanaal verwijderenDrijvende selectie verwijderenHulplijn verwijderenLaag verwijderenParasiet uit afbeelding verwijderenParasiet van item verwijderenPad verwijderenVerwijder het geselecteerde filter uit de lijst van actieve filters.Verwijderen sneltoets mislukt.Kanaal hernoemenLaag hernoemenPad hernoemenOpgeslagen gereedschapsopties hernoemenTekstlaag hernoemenLijn renderenHerrangschik kanaalLaag herschikkenPad herschikkenLaatste herhalenHerhaal:Huidige selectie vervangenKopieerKopieer verloopsegmentKopieer verloopselectieKopieer segmentKopieer selectieGereedschapsopties herinstellenGeselecteerd filter naar beginwaardenHerschalenKanaal herschalenAfbeelding herschalenLaag herschalenPad herschalenTekstlaag herschalenAfbeelding herschalenVenstergrootte aanpassen bij _zoomen_Venstergrootte aanpassen bij vergroten/verkleinen afbeeldingHerschalen...Resolutie:BronverbruikBronconfiguratieOpties herstellen uit...Herstel opgeslagen sneltoetsen als GIMP start.TerugdraaienTerugdraaien'%s' terugzetten naar '%s'?Afbeelding terugzettenTerughalen lukte niet. Geen bestandsnaam aan deze afbeelding verbonden.Terughalen uit '%s' mislukte. +SnelmaskerSnelmaskerDe GIMP afsluitenRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB-kleurRGB-leegRGBA (%0.3f, %0.3f, %0.3f, %0.3f)RNL"%s" opnieuw tonenKanaal _herstellenKleur _herstellenRadiaalStraal:Kanaal verhogenKanaal bovenaanKanaal _bovenaanLaag omhoogLaag bovenaanPad omhoogPad naar topKanaal verhogenKanaal bovenaan zettenLaag omhoogLaag bovenaan zettenDe weergaven van deze afbeelding omhoogVenster bovenop indien reeds geopendMateMate:Laatste opnieuw tonenMiddelpunten in selectie hercentrerenMiddelpunt van segment hercentrerenHandvatten in segment herverdelenHandvatten in selectie herverdelenOpgeslagen opties _hernoemen"%s" herhalenLaden palet '%s': GROEN-component ontbreekt op regel %d.Laden palet '%s': ongeldig aantal kolommen op regel %d. GIMP gebruikt standaard waarde.Laden palet '%s': BLAUW-component ontbreekt op regel %d.Laden palet '%s': ROOD-component ontbreekt op regel %d.Laden palet '%s': RGB-waarde buiten bereik op regel %d.KlaarRechthoekselectieRoodRood:Opnieuw uitvoerenAfbeelding tot vast aantal kleuren reducerenAfbeelding tot twee kleuren reduceren met een grenswaardePenselen vernieuwenVerlopen vernieuwenPatronen vernieuwenGeregistreerdHuidig thema herladenOnthou het huidige gereedschap, patroon, de kleur en penseel voor een volgende sessie.NetwerkafbeeldingKanaal verwijderenDrijvende selectie verwijderenHulplijn verwijderenLaag verwijderenParasiet uit afbeelding verwijderenParasiet van item verwijderenPad verwijderen_Item verwijderenDrijvende selectie verwijderenParasiet verwijderenVerwijder het geselecteerde filter uit de lijst van actieve filters.Verwijderen sneltoets mislukt.Kanaal hernoemenLaag hernoemenPad hernoemenOpgeslagen gereedschapsopties hernoemenTekstlaag hernoemenLijn renderenHerrangschik kanaalLaag herschikkenPad herschikkenLaatste herhalenHerhaal:Huidige selectie vervangenKopieerKopieer verloopsegmentKopieer verloopselectieKopieer segmentKopieer selectieGereedschapsopties herinstellenGeselecteerd filter naar beginwaardenVolgorde en zichtbaarheid van het gereedschap herstellenHerschalenKanaal herschalenAfbeelding herschalenLaag herschalenPad herschalenTekstlaag herschalenAfbeelding herschalenItem herschalenVenstergrootte aanpassen bij _zoomen_Venstergrootte aanpassen bij vergroten/verkleinen afbeeldingHerschalen...Resolutie:BronverbruikBronconfiguratieOpties herstellen uit...Herstel opgeslagen sneltoetsen als GIMP start.TerugdraaienTerugdraaien'%s' terugzetten naar '%s'?Afbeelding terugzettenTerughalen lukte niet. Geen bestandsnaam aan deze afbeelding verbonden.Terughalen uit '%s' mislukte. -%sKleur van rechtereindpuntRechts uitgelijndRoterenKanaal draaienLaag draaienPad draaienTekstlaag draaienAfbeelding draaienDraai de laag of selectieRoteren...Rotatie-informatieRondS_pakenKleuren _wisselenVerz.:VerzadigingOpslaan'%s' opslaan als POV-RayCurves opslaanFoutenlog in bestand opslaanAfbeelding opslaanApparaatinstellingen _nu opslaanNiveaus opslaanGereedschapsopties opslaanVensterposities _nu opslaanOpslaan _als...Kopie van de afbeelding opslaanAls _POV-Ray opslaan...Sla gewijzigde sneltoetsen op als de GIMP afsluit.Sla curve-instellingen op in bestandApparaatstatus opslaanNiveauinstellingen in bestand opslaanOpties opslaan naar...Wijzigingen aan afbeelding '%s' opslaan voor afsluiten?Sla de posities en groottes van de belangrijkste dialoogvensters op als de GIMP afsluit.Opgeslagen optiesBezig met opslaan van '%s' +%sKleur van rechtereindpuntRechts uitgelijndRoteren90 graden draaien _TKI_90 graden draaien MKMKanaal draaienLaag draaienPad draaienTekstlaag draaien_180 graden draaienAfbeelding draaienDraai de laag of selectieRoteren...Rotatie-informatieRond_Raster tonenS_pakenKleuren _wisselenVerz.:VerzadigingOpslaan'%s' opslaan als POV-RayCurves opslaanFoutenlog in bestand opslaanAfbeelding opslaanApparaatinstellingen _nu opslaanNiveaus opslaanGereedschapsopties opslaanVensterposities _nu opslaan_Alle fouten naar bestand schrijven...Selectie op_slaan in bestand...Opslaan _als...Kopie van de afbeelding opslaanAlle fouten opslaanAls _POV-Ray opslaan...Sla gewijzigde sneltoetsen op als de GIMP afsluit.Sla curve-instellingen op in bestandApparaatstatus opslaanNiveauinstellingen in bestand opslaanOpties opslaan naar...Selectie opslaanSelectie opslaan in kanaalWijzigingen aan afbeelding '%s' opslaan voor afsluiten?Sla de posities en groottes van de belangrijkste dialoogvensters op als de GIMP afsluit.Opslaan in _kanaalOpgeslagen optiesBezig met opslaan van '%s' Bewaren '%s' mislukt: -%sAfbeeldingen opslaanZaagtandgolfSchaalbaar vectorbestand (*.svg)SchalenKanaal schalenAfbeelding schalenLaag schalenPad schalenTekstlaag schalenAfbeelding schalenSchaal:Schaal de laag of selectieSchalenSchalen...ScharenSchermScript-Fu-mappenScriptsSelecterenAlles selecterenPenseelmappen selecterenOp kleur selecterenKleur selecterenOmgevingsmappen selecterenFontmappen selecterenVerloopmappen selecterenModulemappen selecterenNiets selecterenPaletmappen selecterenPatroonmappen selecterenPlug-inmappen selecterenSelecteer primaire kleur om aan te passenSelecteer bereik om aan te passenScript-Fu-mappen selecterenBron selecterenWisselmap selecterenTijdelijke map selecterenThema selecterenThemamappen selecterenZoomverhouding selecterenSelecteer op kleurSelecteer aaneengesloten gebiedenSelecteer elliptische gebiedenSelecteer gebieden met de handNiets selecterenSelecteer rechthoekige gebiedenGebieden op kleur selecterenSemi-automatisch selecterenWisselmap selecterenSelecteer het aantal keren dat het +%sAfbeeldingen opslaanZaagtandgolfSchaalbaar vectorbestand (*.svg)SchalenKanaal schalenAfbeelding schalenLaag schalenPad schalenTekstlaag schalenAfbeelding schalenItem schalenSchaal:Schaal de laag of selectieSchalenSchalen...ScharenSchermScript-Fu-mappenScriptsSelecterenAlles selecterenPenseelmappen selecterenOp kleur selecterenKleur selecterenOmgevingsmappen selecterenSelecteer bestands_type ( %s)Fontmappen selecterenVerloopmappen selecterenModulemappen selecterenNiets selecterenPaletmappen selecterenPatroonmappen selecterenPlug-inmappen selecterenSelecteer primaire kleur om aan te passenSelecteer bereik om aan te passenScript-Fu-mappen selecterenBron selecterenWisselmap selecterenTijdelijke map selecterenThema selecterenThemamappen selecterenZoomverhouding selecterenSelecteer op kleurSelecteer aaneengesloten gebiedenElliptische gebieden selecterenSelecteer gebieden met de handNiets selecterenSelecteer rechthoekige gebiedenGebieden op kleur selecterenSemi-automatisch selecterenWisselmap selecterenSelecteer het aantal keren dat het geselecteerd segment moet worden gekopieerd.Selecteer het aantal keren dat de selectie moet worden gekopieerd.Selecteer het aantal gelijke delen waarin de geselecteerde segmenten moeten worden opgesplitst.Selecteer het aantal gelijke delen waarin het -geselecteerd segment moet worden opgesplitst.Webbrowser selecterenSelectieSelectie-editorSelectiemaskerSelectiegereedschapsproceduresSelectie: Selectie: TOEVOEGENSelectie: SNIJDENSelectie: VERVANGENSelectie: AFTREKKENGevoeligheidStel canvasopvulkleur inKanaalkleur instellenKanaalondoorzichtigheid instellenAfbeeldingscanvasgrootte instellenStel item in op exclusief gekoppeldStel item in op exclusief zichtbaarLaaggrensgrootte instellenNaam uit tekst instellenBovenste limiet voor de hoeveelheid geheugenruimte die per afbeelding wordt gebruikt om handelingen ongedaan te kunnen maken. Ongeacht deze instelling kunt u tenminste zoveel handelingen ongedaan maken als ingesteld.De browser die door het hulpsysteem wordt gebruikt.Stelt de opvulkleur van het canvas in als de opvulstand is ingesteld op eigen kleur.Stelt de externe webbrowser in die gebruikt moet worden. Dit kan een absoluut pad zijn of de naam van het uitvoerbaar bestand dat in het PATH van de gebruiker gezocht moet worden. Als de instructie '%s' bevat, zal hij door de URL worden vervangen, anders wordt de URL aan de instructie geplakt, met een spatie tussen de twee.Het niveau van interpolatie gebruikt voor schalen en andere transformaties.De manier waarop transparantie in afbeeldingen wordt getoond.Het minimaal aantal handeling dat ongedaan kan worden gemaakt. Meer handelingen worden bewaard tot de limiet is bereikt.De modus van de cursor die GIMP gebruikt.Stelt de horizontale beeldresolutie in op dots per inch. Bij de waarde 0 wordt de X-server gedwongen informatie te geven voor zowel de horizontale als verticale resolutie.Stelt de verticale beeldresolutie in op dots per inch. Bij de waarde 0 wordt de X-server gedwongen informatie te geven voor zowel de horizontale als verticale resolutie.De grootte van de vakken die worden getoond om transparantie mee aan te geven.De grootte van de navigatievooruitblik (te vinden in de rechteronderhoek van het afbeeldingsvenster).De grootte van de vooruitblikken in het Overzicht 'Ongedaan maken'.De lokatie van het wisselbestand. De GIMP gebruikt een op 'tegels' gebaseerde geheugentoewijzingsmethode. Het wisselbestand wordt gebruikt om snel en gemakkelijk tegels naar de schijf te schrijven en weer terug te halen. Hou er rekening mee dat het wisselbestand gemakkelijk erg groot kan worden als de GIMP met grote afbeeldingen wordt gebruikt. De computer kan ook zeer traag worden als het wisselbestand wordt aangemaakt in een map die via NFS is aangekoppeld. Om deze redenen kan het wenselijk zijn dat u uw wisselbestand in "/tmp" opslaat (UNIX-achtige systemen).De tijdelijke opslagmap. Hier zullen bestanden verschijnen als GIMP wordt uitgevoerd. De meeste bestanden zullen weer worden gewist als u GIMP verlaat, maar nu en dan blijven bestanden achter, dus kunt u deze map beter niet delen met andere gebruikers.De tekst die verschijnt in de statusbalk van afbeeldingsvensters.De tekst die verschijnt in de titelbalk van afbeeldingsvensters.Moet GIMP vooruitblikken aanmaken van lagen en kanalen? Vooruitblikken in de dialogen voor lagen en kanalen kunnen handig zijn, maar kunnen de werking van het programma vertragen als u met grote afbeeldingen werkt.SchaduwtypeDonkere kleurenVormVorm:VerscherpenKanaal verscherpenSelectie verscherpenHellenDe laag of selectie hellenHellingsinformatieHellen...Korte streepjesSneltoetsSneltoets "%s" is al in gebruik bij "%s" in de groep "%s".Laagmasker tonenStatusbalk tonenScrollbalken tonenHulplijnen tonenLaaggrens tonenMenubalk tonen_Penseelomtrek tonen_Voor- en achtergrondkleur tonen_Hulplijnen tonen_Laaggrens tonen_Menubalk tonen_Linealen tonenActieve Penselen, Patronen & Verlopen tonen_Actieve afbeelding tonen_Raster tonen_Hulpknoppen tonenAfbeeldingsgrootte tonenGeheugenverbruik tonenMenu-sneltoetsen tonen (combinatie-toetsen)S_electie tonenS_tatusbalk tonen_Schuifbalken tonenToon tip bij het opstarten van GIMP_Tips tonen bij opstarten_Tooltips tonenZoompercentage weergevenZoomverhouding weergevenKanaal krimpenSelectie krimpenKrimp vanaf de afbeeldingsrandKrimp selectie metGrootteGrootte in geheugen:Grootte van _miniaturen:Grootte:'%s' wordt overgeslagen: verkeerde GIMP-protocolversie.KleinKleinere vooruitblikkenGeleidelijkGladde randenSmerenAfbeelding smerenVastBronTussenruimteTussenruimte:Weinig stippenSpeciaal bestandGeeft aan hoe het gebied rond de afbeelding moet worden getekend.Snelheid van marcherende mieren in de selectierand. Deze waarde is in milliseconden (minder tijd betekent sneller marcheren).Snelheid:Sferisch (_afnemend)Sferisch (_toenemend)Spiraalvormig (tegen de klok in)Spiraalvormig (met de klok mee)SplitsSplits verloopsegment gelijkmatigSplits verloopsegmenten gelijkmatigSplits segment gelijkmatigSegment gelijkmatig splitsen...Segment op middelpunt splitsenSplits segmenten gelijkmatigSegmenten gelijkmatig splitsen...Segmenten op middelpunten splitsenVierkant_StapelStandaardStarten van extensies (bezig)Starten extensie: '%s' (bezig) -Staat:Statische KleurStatisch GrijsStatus & omschrijvingStatus & tekstStandaard afwijking:StippenStandaard IDPad naar lijnLijn op selectie tekenenSoort kader rond de statusbalktekstAftrekkenVan huidige selectie aftrekkenOvermonsteringWisselmap:Tijdelijke map:SjablonenMenu SjablonenTijdelijke procedurePlug-in afsluiten: '%s' +geselecteerd segment moet worden opgesplitst.Webbrowser selecterenSelectieSelectie-editorSelectiemaskerSelectiegereedschapsproceduresSelectiemaskerSelectie: Selectie: TOEVOEGENSelectie: SNIJDENSelectie: VERVANGENSelectie: AFTREKKENGevoeligheidStel canvasopvulkleur inKanaalkleur instellenKanaalondoorzichtigheid instellenKleurenkaart instellenAfbeeldingscanvasgrootte instellenStel item in op exclusief gekoppeldStel item in op exclusief zichtbaarLaaggrensgrootte instellenNaam uit tekst instellenBovenste limiet voor de hoeveelheid geheugenruimte die per afbeelding wordt gebruikt om handelingen ongedaan te kunnen maken. Ongeacht deze instelling kunt u tenminste zoveel handelingen ongedaan maken als ingesteld.De browser die door het hulpsysteem wordt gebruikt.Stelt de opvulkleur van het canvas in als de opvulstand is ingesteld op eigen kleur.Stelt de externe webbrowser in die gebruikt moet worden. Dit kan een absoluut pad zijn of de naam van het uitvoerbaar bestand dat in het PATH van de gebruiker gezocht moet worden. Als de instructie '%s' bevat, zal hij door de URL worden vervangen, anders wordt de URL aan de instructie geplakt, met een spatie tussen de twee.Het niveau van interpolatie gebruikt voor schalen en andere transformaties.De manier waarop transparantie in afbeeldingen wordt getoond.Het minimaal aantal handeling dat ongedaan kan worden gemaakt. Meer handelingen worden bewaard tot de limiet is bereikt.De modus van de cursor die GIMP gebruikt.Stelt de horizontale beeldresolutie in op dots per inch. Bij de waarde 0 wordt de X-server gedwongen informatie te geven voor zowel de horizontale als verticale resolutie.Stelt de verticale beeldresolutie in op dots per inch. Bij de waarde 0 wordt de X-server gedwongen informatie te geven voor zowel de horizontale als verticale resolutie.De grootte van de vakken die worden getoond om transparantie mee aan te geven.De grootte van de navigatievooruitblik (te vinden in de rechteronderhoek van het afbeeldingsvenster).De grootte van de vooruitblikken in het Overzicht 'Ongedaan maken'.De lokatie van het wisselbestand. De GIMP gebruikt een op 'tegels' gebaseerde geheugentoewijzingsmethode. Het wisselbestand wordt gebruikt om snel en gemakkelijk tegels naar de schijf te schrijven en weer terug te halen. Hou er rekening mee dat het wisselbestand gemakkelijk erg groot kan worden als de GIMP met grote afbeeldingen wordt gebruikt. De computer kan ook zeer traag worden als het wisselbestand wordt aangemaakt in een map die via NFS is aangekoppeld. Om deze redenen kan het wenselijk zijn dat u uw wisselbestand in "/tmp" opslaat (UNIX-achtige systemen).De tijdelijke opslagmap. Hier zullen bestanden verschijnen als GIMP wordt uitgevoerd. De meeste bestanden zullen weer worden gewist als u GIMP verlaat, maar nu en dan blijven bestanden achter, dus kunt u deze map beter niet delen met andere gebruikers.De tekst die verschijnt in de statusbalk van afbeeldingsvensters.De tekst die verschijnt in de titelbalk van afbeeldingsvensters.Moet GIMP vooruitblikken aanmaken van lagen en kanalen? Vooruitblikken in de dialogen voor lagen en kanalen kunnen handig zijn, maar kunnen de werking van het programma vertragen als u met grote afbeeldingen werkt.SchaduwtypeDonkere kleurenVormVorm:VerscherpenKanaal verscherpenSelectie verscherpenHellenDe laag of selectie hellenHellingsinformatieHellen...Korte streepjesSneltoetsSneltoets "%s" is al in gebruik bij "%s" in de groep "%s".Laagmasker tonen_Linealen tonenStatusbalk tonenScrollbalken tonenHulplijnen tonenLaaggrens tonenMenubalk tonenSelectie _tonen_Penseelomtrek tonen_Voor- en achtergrondkleur tonen_Hulplijnen tonen_Laaggrens tonen_Menubalk tonen_Linealen tonenActieve Penselen, Patronen & Verlopen tonen_Actieve afbeelding tonen_Raster tonen_Hulpknoppen tonenAfbeeldingsgrootte tonenGeheugenverbruik tonenMenu-sneltoetsen tonen (combinatie-toetsen)S_electie tonenS_tatusbalk tonen_Schuifbalken tonenToon tip bij het opstarten van GIMP_Tips tonen bij opstarten_Tooltips tonenZoompercentage weergevenZoomverhouding weergevenKanaal krimpenSelectie krimpenKrimp vanaf de afbeeldingsrandKrimp selectie metGrootteGrootte in geheugen:Grootte van _miniaturen:Grootte:'%s' wordt overgeslagen: verkeerde GIMP-protocolversie.KleinKleinere vooruitblikkenGeleidelijkGladde randenSmerenAfbeelding smerenZacht lichtVastBronTussenruimteTussenruimte:Weinig stippenSpeciaal bestandGeeft aan hoe het gebied rond de afbeelding moet worden getekend.Snelheid van marcherende mieren in de selectierand. Deze waarde is in milliseconden (minder tijd betekent sneller marcheren).Snelheid:Sferisch (_afnemend)Sferisch (_toenemend)Spiraalvormig (tegen de klok in)Spiraalvormig (met de klok mee)SplitsSplits verloopsegment gelijkmatigSplits verloopsegmenten gelijkmatigSplits segment gelijkmatigSegment gelijkmatig splitsen...Segment op middelpunt splitsenSplits segmenten gelijkmatigSegmenten gelijkmatig splitsen...Segmenten op middelpunten splitsenVierkantSt_atus en tekst_StapelStandaardStarten van extensies (bezig)Starten extensie: '%s' (bezig) +Staat:Statische KleurStatisch GrijsStatus & omschrijvingStatus & tekstStandaard afwijking:StippenStandaard IDLijn tekenen op pad_Lijn tekenen op pad...Pad naar lijnLijn op selectie tekenenLijn tekenen op pad met laatste waardesLijn tekenen op pad...Lijn tekenen op selectie met de laatste waardesLijn tekenen op selectie...Soort kader rond de statusbalktekstAftrekkenVan huidige selectie aftrekkenOvermonsteringWisselmap:_GereedschapTijdelijke map:SjablonenMenu SjablonenTijdelijke procedurePlug-in afsluiten: '%s' TekstTekstkleurTeksteditorTekstlaagTekstproceduresDe GIMPHet actieve penseel. Klik om het dialoogvenster Penselen te openen.Het actieve verloop. -Klik om het dialoogvenster Verlopen te openen.Het actieve patroon. +Klik om het dialoogvenster Verlopen te openen.De actieve afbeelding. +Klik om het dialoogvenster Afbeelding te openen.Het actieve patroon. Klik om het dialoogvenster Patronen te openen.De achtergrondkleur van het raster; wordt alleen gebruikt in dubbelgestreepte lijnstijl.De bestandsnaam '%s' kon niet in een geldige URI worden veranderd: %sDe voorgrondkleur van het raster.Het bestand gimprc wordt gebruikt om persoonlijke voorkeuren op te slaan die de werking van de GIMP beïnvloeden. Paden naar penselen, paletten, verlopen, patronen, plug-ins en modules kunnen hier ook worden ingesteld.De horizontale afbeeldingsresolutie.De laag die u selecteerde is een tekstlaag, maar werd met andere gereedschappen gewijzigd. Als u deze laag met het tekstgereedschap bewerkt, zullen deze wijzigingen ongedaan worden gemaakt. -U kunt de laag bewerken of een nieuwe tekstlaag maken uit zijn tekstattributen.Het sessionrc-bestand wordt gebruikt om op te slaan welke dialoogvensters open waren toen u de GIMP voor het laatst afsloot. U kunt de GIMP configureren zodat hij deze dialogen op de opgeslagen positie heropent.De tegelcache wordt gebruikt om ervoor te zorgen dat GIMP geen tegels tussen geheugen en schijf blijft wisselen. Als u deze waarde hoger maakt, gebruikt de GIMP minder wisselruimte, maar wel meer geheugen. De eenheid voor coördinatenweergaven in een andere dan stip-voor-stip-stand.Het unitrc-bestand wordt gebruikt om uw eenhedendatabase op te slaan. U kunt additionele eenheden definiëren en deze net zo gebruiken als de ingebouwde eenheden, zoals duimen, millimeters, punten en picas. Dit bestand wordt elke keer dat u de GIMP afsluit, opgeslagen.De verticale afbeeldingsresolutie.De venstertypehint die op dokvensters is ingesteld. Dit kan beïnvloeden hoe uw venstermanager dokvensters weergeeft en ermee omgaat.De venstertypehint die op de gereedschapskist is ingesteld. Dit kan beïnvloeden hoe uw venstermanager het Gereedschappenvenster weergeeft en ermee omgaat.ThemaThemamappenThema'sER zijn %d bestanden met niet opgeslagen wijzigingen:Er zijn niet genoeg zichtbare lagen voor een neerwaarte samenvoeging.Er is altijd een afweging tussen geheugengebruik en snelheid. In de meeste gevallen kiest de GIMP voor hoge snelheid boven zuinig geheugengebruik. Als geheugen echter een probleem is, probeer dan deze instelling.Er is geen actieve laag of kanaal om van te kopiëren.Er is geen actieve laag of kanaal om van te knippen.Er is geen actieve laag of kanaal om op te tekenenEr is geen actieve laag of kanaal om op te tekenen.Er is een bestand met niet opgeslagen wijzigingen:Er hoort een bestand genaamd '%s' te zijn. Controleer a.u.b. uw installatie.Het parseren van uw bestand '%s' ging mis. Standaard waarden worden gebruikt. Een kopie van uw instellingen is aangemaakt in '%s'.Dit bestand bevat een verzameling standaard mediumgroottes die dienen als afbeeldingssjablonen.In deze map worden afbeeldingssjablonen gezocht.In deze map worden door de gebruiker geplaatste thema's gezocht.Deze map wordt gebruikt om door de gebruiker gedefinieerde fonts in op te slaan. De GIMP controleert deze map naast de systeembrede map voor fonts bij het zoeken naar fonts.Deze map wordt gebruikt om parameterbestanden van het curvegereedschap in te bewaren.Deze map wordt gebruikt om parameterbestanden van het niveausgereedschap in te bewaren.In deze map worden gereedschapsopties bewaard.Deze map wordt gebruikt om door de gebruiker gemaakte en geïnstalleerde scripts in op te slaan. De GIMP controleert deze map naast de systeembrede map voor scripts bij het zoeken naar scripts.Deze map wordt gebruikt om door de gebruiker gemaakte, tijdelijke of andere niet door het systeem ondersteunde DLL-modules in op te slaan. De GIMP controleert deze map naast de systeembrede map voor modules bij het zoeken naar modules tijdens het opstarten.Deze map wordt gebruikt om door de gebruiker aangemaakte, tijdelijke, of andere niet door het systeem toevoegingen aan de plug-inomgeving op te slaan. De GIMP controleert deze map naast de systeembrede omgevingsmap bij het zoeken naar plug-ins.Deze map wordt gebruikt om door de gebruiker aangemaakte, tijdelijke, of andere niet door het systeem ondersteunde plug-ins in op te slaan. De GIMP controleert deze map naast de systeembrede map voor plug-ins bij het zoeken naar plug-ins.Deze map wordt gebruikt om door de gebruiker gedefinieerde penselen in op te slaan. De GIMP controleert deze map naast de systeembrede map voor penselen bij het zoeken naar penselen.Deze map wordt gebruikt om door de gebruiker gedefinieerde verlopen in op te slaan. De GIMP controleert deze map naast de systeembrede map voor verlopen bij het zoeken naar verlopen.Deze map wordt gebruikt om door de gebruiker gedefinieerde paletten in op te slaan. De GIMP controleert deze map naast de systeembrede map voor paletten bij het zoeken naar paletten.Deze map wordt gebruikt om door de gebruiker gedefinieerde patronen in op te slaan. De GIMP controleert deze map naast de systeembrede map voor patronen bij het zoeken naar patronen.Deze map wordt gebruikt om tijdelijk buffers voor Ongedaan Maken in op te slaan om op geheugengebruik te besparen. Als de GIMP niet op de zachtaardige manier is afgesloten, kunnen in deze directory bestanden achterblijven met de vorm: gimp<#>.<#>. Deze bestanden zijn tussen GIMP-sessies nutteloos en kunnen probleemloos worden verwijderd.Deze map zal enkele belangrijke bestanden bevatten. Klik op een van de bestanden of mappen in de boom om meer informatie over het gekozen item te krijgen.Dit is de afstand in pixels waar magnetische hulplijnen en raster beginnen.Dit programma wordt gedistribueerd hopende dat het goed te gebruiken zal zijn, maar zonder enige garantie; zelfs zonder de impliciete garantie van verkoopbaarheid of geschiktheid voor een bepaald doel. Zie de GNU general Public License voor meer details.Dit programma is vrije software; u kunt het opnieuw distribueren en/of modificeren onder de voorwaarden van de GNU General Public License zoals gepubliceerd door de Free Software Foundation; ofwel versie 2 van deze licentie, of (naar uw believen) een latere versie.Het tekstinvoerveld kan maximaal %d tekens bevatten.Dit gereedschap heeft geen opties.DrempelwaardeDrempelgereedschap werkt niet op geïndexeerde lagen.Drempel:Miniatuur %d van %dGrootte van TegelbufferHelling:MiniscuulTitel & Status_SpeeltjesSnelmasker schakelenGereedschapsoptiesMenu GereedschapsoptiesWissel gereedschap %sGereedschapspictogramGereedschapspictogram met kruisdraadGereedschapskistGereedschapskistGereedschapskistmenuGereedschapGereedschap als 'Vage selectie' en 'Vullen' vinden gebieden van aaneengesloten pixels op basis van een 'seed-fill' methode. Hierbij wordt vanuit de beginpixel in alle richtingen uitgewaaierd en gekeken wanneer het verschil in helderheid van de pixel met de beginpixel een drempelwaarde overschrijd. Deze waarde staat voor de standaard drempelwaarde.Tr_ansparantieAlpha naar masker verplaatsenTransformerenKanaal transformerenTransformatierichtingLaag transformerenPad transformerenTransformatiegereedschapsproceduresTransformatieTransformatieproceduresTransformatie (bezig)Vertaald door ...Transparantie_Transparantietype:Driehoekige golfEchte kleurTypeType %sTyp een nieuwe sneltoetsTyp een nieuwe sneltoets, of geeg Backspace om te wissenKan geen laagmasker toevoegen, omdat de laag er al een heeft.Niet in staat te knippen of kopiëren, omdat geselecteerd gebied leeg is.Niet in staat een testwisselbestand te openen. Voorkom gegevensverlies en controleer a.u.b. de lokatie en permissies van de wisselmap die in uw Voorkeuren is ingesteld (op dit moment "%s").Kon het wisselbestand niet openen. The Gimp heeft te weinig geheugenruimte maar kan het wisselbestand niet gebruiken. Mogelijkerwijze zijn nu delen van uw afbeelding beschadigd. Probeer uw werk op te slaan onder andere bestandsnamen, start the Gimp opnieuw op en controleer de lokatie van het wisselbestand in uw Voorkeuren.OngedefinieerdOngedaan makenOverzicht 'Ongedaan maken'EenhedenOnbekendOnbekend bestandstypeLossenNaamloosNaamloosStandaard "stip voor stip" gebruiken_Webbrowser gebruiken in plaats hiervanGebruik alle zichtbare lagen bij het krimpen van de selectieGebruikersinstallatielogGebruikersinterfaceWerktuigvensterWaardeWaarde:Versie %s, u aangeboden door ...Versie:VerticaalVerticale verspringing van de eerste rasterlijn; dit mag een negatief getal zijn.Verticale tussenruimte van rasterlijnen.Zeer grootZeer kleinBeeldAls raster weergevenAls lijst weergevenBeeldklasseBeelddiepte:WebbrowserWebbrowserWelkom bij de -GIMP %d.%d gebruikersinstallatieWanneer ingeschakeld volgt het dialoogvenster automatisch de afbeelding die waar u mee bezig bent.Wanneer ingeschakkeld zullen alle schildergereedschappen een vooruitblik van de omtrek van het huidige penseel tonen.Als dit aanstaat, zal een afbeelding actief worden als zijn venster focus ontvangt. Dit is nuttig voor vensterbeheerprogramma's die "click to focus" gebruiken.Als dit aanstaat, kunnen menu's afgescheurd worden.Als dit aanstaat wordt met het indrukken van de F1-toets de hulpbrowser gestart.Als dit aanstaat, slaat de GIMP een afbeelding niet op als deze niet gewijzigd is sinds hij werd geopend.Als dit aanstaat gebruikt de GIMP een infovenster per afbeeldingsweergave.Als dit aanstaat wordt de X-server bij elke muisbeweging om de muispositie gevraagd. Anders wordt op positiehints vertrouwd. Dit betekent dat schilderen met grote penselen nauwkeuriger zou moeten zijn, maar ook trager. Vreemd genoeg resulteert deze optie bij sommige X-servers in sneller schilderen.Als dit aanstaat, is het raster standaard zichtbaar. Dit kan ook worden geschakeld met het menu-item "Beeld/Raster tonen".Als dit aanstaat, zijn de hulplijnen standaard zichtbaar. Dit kan ook worden geschakeld met het menu-item "Beeld/Hulplijnen tonen".Als dit aanstaat zal het afbeeldingsvenster zichzelf herschalen als er op de afbeelding wordt in- of uitgezoomd.Als dit aanstaat zal het afbeeldingsvenster zichzelf herschalen als de afbeelding zelf wordt geschaald.Als dit aanstaat, is de laaggrens standaard zichtbaar. Dit kan ook worden geschakeld met het menu-item "Beeld/Laaggrens tonen".Als dit aanstaat, is de menubalk standaard zichtbaar. Dit kan ook worden geschakeld met het menu-item "Beeld/Menubalk tonen".Als dit aanstaat, zijn de linealen standaard zichtbaar. Dit kan ook worden geschakeld met het menu-item "Beeld/Linealen tonen".Als dit aanstaat, zijn de scrollbalken standaard zichtbaar. Dit kan ook worden geschakeld met het menu-item "Beeld/Scrollbalken tonen".Wanneer ingeschakeld, gebruiken alle gereedschappen het geselecteerde penseel.Wanneer ingeschakeld, gebruiken alle gereedschappen het geselecteerde verloop.Wanneer ingeschakeld, gebruiken alle gereedschappen het geselecteerde patroon.Als dit aanstaat, is de selectie standaard zichtbaar. Dit kan ook worden geschakeld met het menu-item "Beeld/Selectie tonen".Als dit aanstaat, is de statusbalk standaard zichtbaar. Dit kan ook worden geschakeld met het menu-item "Beeld/Statusbalk tonen".Als dit aanstaat wordt elke afbeeldingspixel geprojecteerd op een schermpixel.Als dit aanstaat, zal de volledige afbeelding zichtbaar zijn na het openen van een bestand, anders zal deze getoond worden op een schaal van 1:1.Als dit aanstaat, kunt u de sneltoetsen voor menu-items wijzigen door een toetsencombinatie in te drukken terwijl het menu-item is geselecteerd.WitBreedteBreedte:VensterbeheerVensterbeheer hintsVensterpositiesSchrijven van '%s' (bezig) +U kunt de laag bewerken of een nieuwe tekstlaag maken uit zijn tekstattributen.Het sessionrc-bestand wordt gebruikt om op te slaan welke dialoogvensters open waren toen u de GIMP voor het laatst afsloot. U kunt de GIMP configureren zodat hij deze dialogen op de opgeslagen positie heropent.De miniatuur in het dialoogvenster Openen zal automatisch worden vernieuwd als het bekeken bestand kleiner is dat hier is ingesteld.De tegelcache wordt gebruikt om ervoor te zorgen dat GIMP geen tegels tussen geheugen en schijf blijft wisselen. Als u deze waarde hoger maakt, gebruikt de GIMP minder wisselruimte, maar wel meer geheugen. De eenheid voor coördinatenweergaven in een andere dan stip-voor-stip-stand.Het unitrc-bestand wordt gebruikt om uw eenhedendatabase op te slaan. U kunt additionele eenheden definiëren en deze net zo gebruiken als de ingebouwde eenheden, zoals duimen, millimeters, punten en picas. Dit bestand wordt elke keer dat u de GIMP afsluit, opgeslagen.De verticale afbeeldingsresolutie.De venstertypehint die op dokvensters is ingesteld. Dit kan beïnvloeden hoe uw venstermanager dokvensters weergeeft en ermee omgaat.De venstertypehint die op de gereedschapskist is ingesteld. Dit kan beïnvloeden hoe uw venstermanager het Gereedschappenvenster weergeeft en ermee omgaat.ThemaThemamappenThema'sER zijn %d bestanden met niet opgeslagen wijzigingen:Er zijn niet genoeg zichtbare lagen voor een neerwaarte samenvoeging.Er is altijd een afweging tussen geheugengebruik en snelheid. In de meeste gevallen kiest de GIMP voor hoge snelheid boven zuinig geheugengebruik. Als geheugen echter een probleem is, probeer dan deze instelling.Er is geen actieve laag of kanaal om van te kopiëren.Er is geen actieve laag of kanaal om van te knippen.Er is geen actieve laag of kanaal om op te tekenenEr is geen actieve laag of kanaal om op te tekenen.Er is een bestand met niet opgeslagen wijzigingen:Er hoort een bestand genaamd '%s' te zijn. Controleer a.u.b. uw installatie.Het parseren van uw bestand '%s' ging mis. Standaard waarden worden gebruikt. Een kopie van uw instellingen is aangemaakt in '%s'.Dit bestand bevat een verzameling standaard mediumgroottes die dienen als afbeeldingssjablonen.In deze map worden afbeeldingssjablonen gezocht.In deze map worden door de gebruiker geplaatste thema's gezocht.Deze map wordt gebruikt om door de gebruiker gedefinieerde fonts in op te slaan. De GIMP controleert deze map naast de systeembrede map voor fonts bij het zoeken naar fonts.Deze map wordt gebruikt om parameterbestanden van het curvegereedschap in te bewaren.Deze map wordt gebruikt om parameterbestanden van het niveausgereedschap in te bewaren.In deze map worden gereedschapsopties bewaard.Deze map wordt gebruikt om door de gebruiker gemaakte en geïnstalleerde scripts in op te slaan. De GIMP controleert deze map naast de systeembrede map voor scripts bij het zoeken naar scripts.Deze map wordt gebruikt om door de gebruiker gemaakte, tijdelijke of andere niet door het systeem ondersteunde DLL-modules in op te slaan. De GIMP controleert deze map naast de systeembrede map voor modules bij het zoeken naar modules tijdens het opstarten.Deze map wordt gebruikt om door de gebruiker aangemaakte, tijdelijke, of andere niet door het systeem toevoegingen aan de plug-inomgeving op te slaan. De GIMP controleert deze map naast de systeembrede omgevingsmap bij het zoeken naar plug-ins.Deze map wordt gebruikt om door de gebruiker aangemaakte, tijdelijke, of andere niet door het systeem ondersteunde plug-ins in op te slaan. De GIMP controleert deze map naast de systeembrede map voor plug-ins bij het zoeken naar plug-ins.Deze map wordt gebruikt om door de gebruiker gedefinieerde penselen in op te slaan. De GIMP controleert deze map naast de systeembrede map voor penselen bij het zoeken naar penselen.Deze map wordt gebruikt om door de gebruiker gedefinieerde verlopen in op te slaan. De GIMP controleert deze map naast de systeembrede map voor verlopen bij het zoeken naar verlopen.Deze map wordt gebruikt om door de gebruiker gedefinieerde paletten in op te slaan. De GIMP controleert deze map naast de systeembrede map voor paletten bij het zoeken naar paletten.Deze map wordt gebruikt om door de gebruiker gedefinieerde patronen in op te slaan. De GIMP controleert deze map naast de systeembrede map voor patronen bij het zoeken naar patronen.Deze map wordt gebruikt om tijdelijk buffers voor Ongedaan Maken in op te slaan om op geheugengebruik te besparen. Als de GIMP niet op de zachtaardige manier is afgesloten, kunnen in deze directory bestanden achterblijven met de vorm: gimp<#>.<#>. Deze bestanden zijn tussen GIMP-sessies nutteloos en kunnen probleemloos worden verwijderd.Deze map zal enkele belangrijke bestanden bevatten. Klik op een van de bestanden of mappen in de boom om meer informatie over het gekozen item te krijgen.Dit is de afstand in pixels waar magnetische hulplijnen en raster beginnen.Dit programma wordt gedistribueerd hopende dat het goed te gebruiken zal zijn, maar zonder enige garantie; zelfs zonder de impliciete garantie van verkoopbaarheid of geschiktheid voor een bepaald doel. Zie de GNU general Public License voor meer details.Dit programma is vrije software; u kunt het opnieuw distribueren en/of modificeren onder de voorwaarden van de GNU General Public License zoals gepubliceerd door de Free Software Foundation; ofwel versie 2 van deze licentie, of (naar uw believen) een latere versie.Het tekstinvoerveld kan maximaal %d tekens bevatten.Dit gereedschap heeft geen opties.DrempelwaardeDrempelgereedschap werkt niet op geïndexeerde lagen.Drempel:Miniatuur %d van %dGrootte van TegelbufferHelling:MiniscuulTitel & Status_SpeeltjesSnelmasker schakelenTeveel foutmeldingen!GereedschapsoptiesMenu GereedschapsoptiesWissel gereedschap %sGereedschaps_optiesGereedschapspictogramGereedschapspictogram met kruisdraadGereedschapskistGereedschapskistGereedschapskistmenuGereedschapGereedschapmenuGereedschap als 'Vage selectie' en 'Vullen' vinden gebieden van aaneengesloten pixels op basis van een 'seed-fill' methode. Hierbij wordt vanuit de beginpixel in alle richtingen uitgewaaierd en gekeken wanneer het verschil in helderheid van de pixel met de beginpixel een drempelwaarde overschrijd. Deze waarde staat voor de standaard drempelwaarde.Tr_ansparantieAlpha naar masker verplaatsenTransformerenKanaal transformerenTransformatierichtingLaag transformerenPad transformerenTransformatiegereedschapsproceduresTransformatieTransformatieproceduresTransformatie (bezig)Vertaald door ...Transparantie_Transparantietype:Driehoekige golfEchte kleurTypeType %sTyp een nieuwe sneltoetsTyp een nieuwe sneltoets, of geeg Backspace om te wissenKan geen laagmasker toevoegen, omdat de laag er al een heeft.Niet in staat te knippen of kopiëren, omdat geselecteerd gebied leeg is.Niet in staat een testwisselbestand te openen. Voorkom gegevensverlies en controleer a.u.b. de lokatie en permissies van de wisselmap die in uw Voorkeuren is ingesteld (op dit moment "%s").Kon het wisselbestand niet openen. The Gimp heeft te weinig geheugenruimte maar kan het wisselbestand niet gebruiken. Mogelijkerwijze zijn nu delen van uw afbeelding beschadigd. Probeer uw werk op te slaan onder andere bestandsnamen, start the Gimp opnieuw op en controleer de lokatie van het wisselbestand in uw Voorkeuren.OngedefinieerdOngedaan makenOverzicht 'Ongedaan maken'EenhedenOnbekendOnbekend bestandstypeLossenNaamloosNaamloosStandaard "stip voor stip" gebruiken_Webbrowser gebruiken in plaats hiervanGebruik alle zichtbare lagen bij het krimpen van de selectieGebruikersinstallatielogBedieningWerktuigvensterWaardeWaarde:Versie %s, u aangeboden door ...Versie:VerticaalVerticale verspringing van de eerste rasterlijn; dit mag een negatief getal zijn.Verticale tussenruimte van rasterlijnen.Zeer grootZeer kleinBeeldAls _raster bekijkenAls _lijst bekijkenAls raster weergevenAls lijst weergevenBeeldklasseBeelddiepte:WebbrowserWebbrowserWelkom bij de +GIMP %d.%d gebruikersinstallatieWanneer ingeschakeld volgt het dialoogvenster automatisch de afbeelding die waar u mee bezig bent.Wanneer ingeschakkeld zullen alle schildergereedschappen een vooruitblik van de omtrek van het huidige penseel tonen.Als dit aanstaat, zal een afbeelding actief worden als zijn venster focus ontvangt. Dit is nuttig voor vensterbeheerprogramma's die "click to focus" gebruiken.Als dit aanstaat, kunnen menu's afgescheurd worden.Als dit aanstaat wordt met het indrukken van de F1-toets de hulpbrowser gestart.Als dit aanstaat, slaat de GIMP een afbeelding niet op als deze niet gewijzigd is sinds hij werd geopend.Als dit aanstaat gebruikt de GIMP een infovenster per afbeeldingsweergave.Als dit aanstaat wordt de X-server bij elke muisbeweging om de muispositie gevraagd. Anders wordt op positiehints vertrouwd. Dit betekent dat schilderen met grote penselen nauwkeuriger zou moeten zijn, maar ook trager. Vreemd genoeg resulteert deze optie bij sommige X-servers in sneller schilderen.Als dit aanstaat, is het raster standaard zichtbaar. Dit kan ook worden geschakeld met het menu-item "Beeld/Raster tonen".Als dit aanstaat, zijn de hulplijnen standaard zichtbaar. Dit kan ook worden geschakeld met het menu-item "Beeld/Hulplijnen tonen".Als dit aanstaat zal het afbeeldingsvenster zichzelf herschalen als er op de afbeelding wordt in- of uitgezoomd.Als dit aanstaat zal het afbeeldingsvenster zichzelf herschalen als de afbeelding zelf wordt geschaald.Als dit aanstaat, is de laaggrens standaard zichtbaar. Dit kan ook worden geschakeld met het menu-item "Beeld/Laaggrens tonen".Als dit aanstaat, is de menubalk standaard zichtbaar. Dit kan ook worden geschakeld met het menu-item "Beeld/Menubalk tonen".Als dit aanstaat, zijn de linealen standaard zichtbaar. Dit kan ook worden geschakeld met het menu-item "Beeld/Linealen tonen".Als dit aanstaat, zijn de scrollbalken standaard zichtbaar. Dit kan ook worden geschakeld met het menu-item "Beeld/Scrollbalken tonen".Wanneer ingeschakeld, gebruiken alle gereedschappen het geselecteerde penseel.Wanneer ingeschakeld, gebruiken alle gereedschappen het geselecteerde verloop.Wanneer ingeschakeld, gebruiken alle gereedschappen het geselecteerde patroon.Als dit aanstaat, is de selectie standaard zichtbaar. Dit kan ook worden geschakeld met het menu-item "Beeld/Selectie tonen".Als dit aanstaat, is de statusbalk standaard zichtbaar. Dit kan ook worden geschakeld met het menu-item "Beeld/Statusbalk tonen".Als dit aanstaat wordt elke afbeeldingspixel geprojecteerd op een schermpixel.Als dit aanstaat, zal de volledige afbeelding zichtbaar zijn na het openen van een bestand, anders zal deze getoond worden op een schaal van 1:1.Als dit aanstaat, kunt u de sneltoetsen voor menu-items wijzigen door een toetsencombinatie in te drukken terwijl het menu-item is geselecteerd.WitWitbalans werkt enkel op RGB-kleurenlagen.BreedteBreedte:VensterbeheerVensterbeheer hintsVensterpositiesSchrijven van '%s' (bezig) XXFC-fout: niet ondersteunde XCF-bestandsversie %d tegengekomenXCF waarschuwing: versie 0 van het XCF- bestandsformaat sloeg geïndexeerde kleurenkaarten verkeerd op. Bezig met vervangen van de grijswaardenkaart.YGeelGeel:U probeert een afbeelding aan te maken met grootte %s.U kunt hier dokbare dialoogvensters plaatsen.U zou een kopie van de GNU General Public License, samen met dit programma, ontvangen moeten hebben; indien dat niet het geval is kunt u schrijven naar de Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -Aan de vertaling van deze tekst kunnen geen rechten worden ontleend. Hiervoor moet u de oorspronkelijke Engelse teksten gebruiken.U moet de GIMP herstarten om de volgende veranderingen door te voeren:Uw installatie van GIMP is incompleetGedrag zoomen en schalenZoom 1:1Zoom alleInzoomenUitzoomenZoomverhoudingZoomverhouding:_Inzoomen_UitzoomenZoomfactor: %d:1Afbeelding zoomen als venstergrootte wijzigtInzoomenIn- & uitzoomenUitzoomenZoom:[ Basisafbeelding ]_ImporterenKleur _toevoegen uit AGKleur _toevoegen uit VG_Aan selectie toevoegen_AllesLaag ver_ankerenAnti-aliasing_Artistiek_AutomatischB_AG-kleur_Achtergrondkleur:Mengfunctie voor segmentMengfunctie voor selectie_VervagenHelderheid:Pe_nseel_BuffersC_KanalenSl_uitenW_olken_Kleuren_Context_KopiërenBenoemde buffer _kopiëren..._Gebogen_StandaardkleurenPenseel _verwijderenBuffer _verwijderenKanaal _verwijderenLaag _verwijderenSegment verwijderenSelectie verwijderen_DialogenTekstinformatie weggooien_Vervormingen_Punt voor punt_DuplicerenBe_werkenPenseel be_werken...Kanaalattributen be_werken...Kleur be_werken...Patroon be_werken..._VG-kleur_Bestand_Vullen met:A_fbeelding in venster passenSegment spiegelenSelectie spiegelen_Lettertype_Voorgrondkleur:G_Generiek_Verloop_Hulplijn_Hardheid_Hulp_Horizontaal:Kleurtoon:_Pictogram:_Importeren_Informatievenster_Laag_Lagen_Linker eindpunt_LichteffectenLichtheid:_Lijnstijl_LineairKanaal om_laagLaag om_laagM_HandmatigPro_jecteren_Masker_Masker naar selectie_Maximum aantal kleuren:_Meten_Geïmporteerde paden samenvoegenGIMP 2.0 _gebruikersinstellingen overzetten_Overige_Modus_Verplaatsen_Naam:_Natuur_Nieuw penseel_Nieuw kanaal_Nieuw kanaal..._Nieuw verloop_Nieuwe laag_Nieuwe laag..._Nieuw palet_Nieuw patroon_Nieuw beeld_Nieuw..._Volgende tip_Ruis_Niets_Verschuiving..._Ondoorzichtigheid_Openen..._PenseelPa_let_PlakkenBuffer _plakkenBenoemde buffer _plakken..._Paden_Patroon_Perspectief_Posterizeren...VooruitblikV_orige tipA_fdrukgrootte..._EigenschappenR_RGB_StraalKanaal om_hoogLaag om_hoog_Sneltoetsen opnieuw toewijzen_Rechthoekselectie%s opnieuw uitvoeren_Penselen vernieuwenPatronen _vernieuwen_Ongebruikte kleuren uit het palet verwijderen_Renderen_VervangenSegment kopiëren...Selectie kopiëren..._Opgeslagen vensterposities herstellen bij opstarten_Rechter eindpunt_RoterenVerzadiging:Op_slaan_Apparaatinstellingen opslaan bij verlaten...Vensterposities op_slaan bij verlaten_SchalenLaag _schalen...Geïmporteerde paden _schalen naar afbeeldinging_SelecterenSelectie_Vorm_Sinusvormig_Magnetische afstand:_Sjabloon:_Gereedschap_Transformeren_Ongedaan maken%s o_ngedaan maken_Verticaal:Beel_d_Zichtbaar_WebTe gebruiken _webbrowser:_Witbalans_Breedte:Resolutie _X:X:_XtraYResolutie _Y:Y:_Zoomen_Zoomen (%s)kleurenkopiërendpiverwachtte 'ja' of 'nee' voor Boolse token %s, kreeg '%s'fatale parseerfoutgrijswaardengrijswaarden-leegduimduimengeïndexeerdgeïndexeerd-leegongeldige UTF-8-tekenreeksongeldige waarde '%ld' voor token %songeldige waarde '%s' voor pictogramtypeongeldige waarde '%s' voor token %smillimetermillimetersminuutn.v.t.procentpicapicaspixelpixelspixels/%apixels/%spuntpuntensecondetips-locale:nlTino Meinen +Aan de vertaling van deze tekst kunnen geen rechten worden ontleend. Hiervoor moet u de oorspronkelijke Engelse teksten gebruiken.U moet de GIMP herstarten om de volgende veranderingen door te voeren:Uw installatie van GIMP is incompleetGedrag zoomen en schalenZoom 1:1Zoom alleInzoomenUitzoomenZoomverhoudingZoomverhouding:_Inzoomen_UitzoomenZoomfactor: %d:1Afbeelding zoomen als venstergrootte wijzigtInzoomenIn- & uitzoomenUitzoomenZoom:[ Basisafbeelding ]I_nfo_ImporterenKleur _toevoegen uit AGKleur _toevoegen uit VG_Tab toevoegen_Aan selectie toevoegen_Geavanceerde opties_AllesLaag ver_ankeren_Anti-aliasing_Willekeurige draaiing..._Artistiek_Verhouding_Automatisch_B_AG-kleur_Achtergrondkleur:_Zwart (transparant)Mengfunctie voor segmentMengfunctie voor selectie_VervagenHelderheid:Pe_nseel_Penselen_Penselen, Patronen & Verlopen_BuffersOp _kleur_C_Hoekstijl:_Kanalen_Fouten wissenOverzicht 'Ongedaan maken' _leegmakenSl_uitenTab sl_uitenW_olken_Kleur_Kleuren_Context_KopiërenBenoemde buffer _kopiëren..._Afbeelding volgens sjabloon aanmaken..._Knippen & herschalen_Gebogen_Curves..._StandaardkleurenPenseel _verwijderenBuffer _verwijderenKanaal _verwijderenLaag _verwijderenPad _verwijderenOpgeslagen opties _verwijderenSegment verwijderenSelectie verwijderenSjabloon _verwijderen_DesaturerenTab _loskoppelen_Apparaatstatus_DialogenTekstinformatie weggooien_Vervormingen_Punt voor punt_DuplicerenBe_werkenPenseel be_werken...Kanaalattributen be_werken...Kleur be_werken...Padattributen be_werken...Patroon be_werken...Sjabloon be_werken..._Laag- en kanaalvooruitblikken inschakelenE_norm_Gelijkmaken_Gummetjes_VG-kleur_Bestand_Vullen met:A_fbeelding in venster passen_SpiegelenSegment spiegelenSelectie spiegelen_Lettertype_Lettertypes_Voorgrondkleur:_Vrije selectie_G_GeneriekGig_antisch_Verloop_Verloop_Grijswaardenkopie van laag_Uitdijen..._Hulplijn_Hardheid_Hulp_Horizontaal:Kleurtoon:_Reusachtig_Pictogram_Pictogram:_Afbeelding_Afbeeldingen_Importeren_InformatievensterMet selectie _snijden_Inverteren_Verbindingsstijl:_Groot_Laag_Lagen_Lagen, Kanalen & Paden_Linker eindpunt_Niveaus..._LichteffectenLichtheid:_Lijnstijl_Lineair_GekoppeldKanaal om_laagLaag om_laag_M_HandmatigPro_jecteren_Masker_Masker naar selectie_Maximum aantal kleuren:_Meten_Middel_Geïmporteerde paden samenvoegenGIMP 2.0 _gebruikersinstellingen overzetten_Overige_Modus_Modulebeheer_Verplaatsen_Naam:_Natuur_Nieuw penseel_Nieuw kanaal_Nieuw kanaal..._Nieuwe invoer..._Nieuw verloop_Nieuwe laag_Nieuwe laag..._Nieuw palet_Nieuw pad_Nieuw pad..._Nieuw patroon_Nieuw sjabloon..._Nieuw beeld_Nieuw..._Volgende tip_Ruis_Niets_Verschuiving..._OndoorzichtigheidAfbeelding _openen_Openen...T_ekenen_PenseelPa_let_PlakkenBuffer _plakkenBenoemde buffer _plakken..._Paden_Patroon_Perspectief_Posterizeren..._Voorkeuren_Vooruitblik_Grootte van vooruitblikV_orige tipA_fdrukgrootte..._Eigenschappen_R_RGB_StraalKanaal om_hoogLaag om_hoog_Sneltoetsen opnieuw toewijzen_RechthoekselectieO_pnieuw uitvoeren%s opnieuw uitvoeren_Penselen vernieuwenPatronen _vernieuwen_Ongebruikte kleuren uit het palet verwijderen_Renderen_VervangenSegment kopiëren...Selectie kopiëren...Volgorde en zichtbaarheid _herstellen_Opgeslagen vensterposities herstellen bij opstartenOpties he_rstellen uit_Rechter eindpunt_RoterenVerzadiging:Op_slaanOpties op_slaan naar_Apparaatinstellingen opslaan bij verlaten...Vensterposities op_slaan bij verlaten_SchalenLaag _schalen...Geïmporteerde paden _schalen naar afbeeldinging_Selecteren_Selectie_Selectie-editor_Selectie_Vorm_Selectie tonen_Tonen in de gereedschapskist_Sinusvormig_Klein_Magnetische afstand:_Lijn tekenen op selectie_Lijn tekenen op selectie...Van selectie _aftrekkenTab_stijl_Sjabloon:_Sjablonen_TekstMinisc_uul_Tip van de dag_Gereedschap_Gereedschap_Transformeren_Transformatie_Ongedaan maken%s o_ngedaan maken_Verticaal:Beel_d_Zichtbaar_WebTe gebruiken _webbrowser:_Wit (ondoorzichtig)_Witbalans_Breedte:Resolutie _X:X:_Xtra_YResolutie _Y:Y:_Zoomen_Zoomen (%s)kleurenkopiërendpiverwachtte 'ja' of 'nee' voor Boolse token %s, kreeg '%s'fatale parseerfoutgrijswaardengrijswaarden-leegduimduimengeïndexeerdgeïndexeerd-leegongeldige UTF-8-tekenreeksongeldige waarde '%ld' voor token %songeldige waarde '%s' voor pictogramtypeongeldige waarde '%s' voor token %smillimetermillimetersminuutn.v.t.procentpicapicaspixelpixelspixels/%apixels/%spuntpuntensecondetips-locale:nlTino Meinen Branko Collin(2003) Gert de Wit (2000) Wing Tung Leung (1998) diff -uraN gimp-2.2.0/po/nl.po gimp-2.2.1/po/nl.po --- gimp-2.2.0/po/nl.po 2004-12-19 03:11:37.000000000 +0100 +++ gimp-2.2.1/po/nl.po 2004-12-28 16:58:34.000000000 +0100 @@ -11,8 +11,8 @@ msgstr "" "Project-Id-Version: gimp.gimp-2-0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-19 03:11+0100\n" -"PO-Revision-Date: 2004-12-07 22:41+0100\n" +"POT-Creation-Date: 2004-12-28 16:58+0100\n" +"PO-Revision-Date: 2004-12-19 00:57+0100\n" "Last-Translator: Vincent van Adrighem \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" @@ -435,7 +435,7 @@ # naar/binnen/in #: app/actions/buffers-actions.c:52 msgid "Paste Buffer _Into" -msgstr "Buffer plakken _in" +msgstr "Interface<" #: app/actions/buffers-actions.c:53 msgid "Paste the selected buffer into the selection" @@ -556,9 +556,8 @@ # afhalen #: app/actions/channels-actions.c:117 app/actions/layers-actions.c:231 #: app/actions/layers-actions.c:254 app/actions/vectors-actions.c:179 -#, fuzzy msgid "_Subtract from Selection" -msgstr "/Van selectie aftrekken" +msgstr "Van selectie _aftrekken" #: app/actions/channels-actions.c:118 app/actions/vectors-actions.c:180 #: app/widgets/gimpwidgets-constructors.c:69 @@ -568,14 +567,12 @@ #: app/actions/channels-actions.c:123 app/actions/layers-actions.c:236 #: app/actions/layers-actions.c:259 app/actions/vectors-actions.c:185 -#, fuzzy msgid "_Intersect with Selection" -msgstr "/Met selectie snijden" +msgstr "Met selectie _snijden" #: app/actions/channels-actions.c:124 app/actions/vectors-actions.c:186 -#, fuzzy msgid "Intersect" -msgstr "Interface" +msgstr "Snijden" #: app/actions/channels-commands.c:86 app/actions/channels-commands.c:383 msgid "Channel Attributes" @@ -670,9 +667,8 @@ msgstr "_Ondoorzichtigheid" #: app/actions/context-actions.c:49 -#, fuzzy msgid "Paint _Mode" -msgstr "Bewerkstand" +msgstr "_Schilderstand" # Attention! Singular in Dutch! #: app/actions/context-actions.c:50 @@ -719,9 +715,8 @@ # aspect/gedeelte/verhouding #: app/actions/context-actions.c:61 -#, fuzzy msgid "_Aspect" -msgstr "Platheid:" +msgstr "_Verhouding" #: app/actions/context-actions.c:62 msgid "A_ngle" @@ -758,19 +753,16 @@ msgstr "_Dialogen" #: app/actions/dialogs-actions.c:39 -#, fuzzy msgid "Create New Doc_k" -msgstr "/Dialogen/Nieuw dok aanmaken" +msgstr "Nieuw do_k aanmaken" #: app/actions/dialogs-actions.c:42 -#, fuzzy msgid "_Layers, Channels & Paths" -msgstr "/Dialogen/Nieuw dok aanmaken/Lagen, Kanalen & Paden" +msgstr "_Lagen, Kanalen & Paden" #: app/actions/dialogs-actions.c:47 -#, fuzzy msgid "_Brushes, Patterns & Gradients" -msgstr "/Dialogen/Nieuw dok aanmaken/Penselen, Patronen & Verlopen" +msgstr "_Penselen, Patronen & Verlopen" #: app/actions/dialogs-actions.c:52 msgid "_Misc. Stuff" @@ -782,14 +774,12 @@ msgstr "Gereedschapskist" #: app/actions/dialogs-actions.c:65 -#, fuzzy msgid "Tool _Options" -msgstr "Gereedschapsopties" +msgstr "Gereedschaps_opties" #: app/actions/dialogs-actions.c:70 -#, fuzzy msgid "_Device Status" -msgstr "Apparaatstatus" +msgstr "_Apparaatstatus" #: app/actions/dialogs-actions.c:75 msgid "_Layers" @@ -808,19 +798,16 @@ msgstr "_Kleurenkaart" #: app/actions/dialogs-actions.c:95 -#, fuzzy msgid "Histogra_m" -msgstr "Histogram" +msgstr "Histogra_m" #: app/actions/dialogs-actions.c:100 -#, fuzzy msgid "_Selection Editor" -msgstr "Selectie-editor" +msgstr "_Selectie-editor" #: app/actions/dialogs-actions.c:105 -#, fuzzy msgid "Na_vigation" -msgstr "Navigatie" +msgstr "Na_vigatie" #: app/actions/dialogs-actions.c:110 #, fuzzy @@ -828,123 +815,104 @@ msgstr "Overzicht 'Ongedaan maken'" #: app/actions/dialogs-actions.c:115 -#, fuzzy msgid "Colo_rs" -msgstr "Kleur" +msgstr "Kleu_ren" #: app/actions/dialogs-actions.c:120 -#, fuzzy msgid "_Brushes" -msgstr "Penselen" +msgstr "_Penselen" #: app/actions/dialogs-actions.c:125 -#, fuzzy msgid "P_atterns" -msgstr "Patronen" +msgstr "P_atronen" +# verlopen/verloop +# verlopen ziet er uit als werkwoord #: app/actions/dialogs-actions.c:130 -#, fuzzy msgid "_Gradients" -msgstr "Verloop" +msgstr "_Verloop" #: app/actions/dialogs-actions.c:135 -#, fuzzy msgid "Pal_ettes" -msgstr "Paletten" +msgstr "Pal_etten" #: app/actions/dialogs-actions.c:140 -#, fuzzy msgid "_Fonts" -msgstr "Fonts" +msgstr "_Lettertypes" #: app/actions/dialogs-actions.c:145 -#, fuzzy msgid "B_uffers" -msgstr "Buffers" +msgstr "B_uffers" #: app/actions/dialogs-actions.c:150 -#, fuzzy msgid "_Images" -msgstr "Afbeeldingen" +msgstr "_Afbeeldingen" #: app/actions/dialogs-actions.c:155 -#, fuzzy msgid "Document Histor_y" -msgstr "Documentgeschiedenis" +msgstr "_Documentgeschiedenis" #: app/actions/dialogs-actions.c:160 -#, fuzzy msgid "_Templates" -msgstr "Sjablonen" +msgstr "_Sjablonen" +# Tools wordt meestal als Extra vertaald, maar hier is het echt +# het gereedschap #: app/actions/dialogs-actions.c:165 -#, fuzzy msgid "T_ools" -msgstr "Gereedschap" +msgstr "_Gereedschap" #: app/actions/dialogs-actions.c:170 -#, fuzzy msgid "Error Co_nsole" -msgstr "Foutenconsole" +msgstr "Foutenco_nsole" #: app/actions/dialogs-actions.c:180 -#, fuzzy msgid "_Preferences" -msgstr "Voorkeuren" +msgstr "_Voorkeuren" #: app/actions/dialogs-actions.c:185 -#, fuzzy msgid "_Module Manager" -msgstr "Modulebeheer" +msgstr "_Modulebeheer" #: app/actions/dialogs-actions.c:190 -#, fuzzy msgid "_Tip of the Day" -msgstr "/Hulp/Tip van de dag" +msgstr "_Tip van de dag" #: app/actions/dialogs-actions.c:195 -#, fuzzy msgid "_About" -msgstr "Info" +msgstr "I_nfo" #: app/actions/dockable-actions.c:49 msgid "Dialogs Menu" msgstr "Menu Dialogen" #: app/actions/dockable-actions.c:53 -#, fuzzy msgid "_Add Tab" -msgstr "/Tab toevoegen" +msgstr "_Tab toevoegen" #: app/actions/dockable-actions.c:54 -#, fuzzy msgid "_Preview Size" -msgstr "/Grootte van vooruitblik" +msgstr "_Grootte van vooruitblik" #: app/actions/dockable-actions.c:55 -#, fuzzy msgid "_Tab Style" -msgstr "/Tabstijl" +msgstr "Tab_stijl" #: app/actions/dockable-actions.c:58 -#, fuzzy msgid "_Close Tab" -msgstr "/Tab sluiten" +msgstr "Tab sl_uiten" #: app/actions/dockable-actions.c:63 -#, fuzzy msgid "_Detach Tab" -msgstr "/Tab loskoppelen" +msgstr "Tab _loskoppelen" #: app/actions/dockable-actions.c:68 -#, fuzzy msgid "M_ove to Screen..." -msgstr "/Naar scherm..." +msgstr "_Verplaatsen naar scherm..." #: app/actions/dockable-actions.c:76 -#, fuzzy msgid "_Show Image Selection" -msgstr "Selectie tonen" +msgstr "_Selectie tonen" #: app/actions/dockable-actions.c:82 #, fuzzy @@ -952,98 +920,80 @@ msgstr "/Actieve afbeelding auto-volgen" #: app/actions/dockable-actions.c:101 -#, fuzzy msgid "_Tiny" -msgstr "Miniscuul" +msgstr "Minisc_uul" #: app/actions/dockable-actions.c:102 -#, fuzzy msgid "E_xtra Small" -msgstr "Zeer klein" +msgstr "_Zeer klein" #: app/actions/dockable-actions.c:103 -#, fuzzy msgid "_Small" -msgstr "Klein" +msgstr "_Klein" #: app/actions/dockable-actions.c:104 -#, fuzzy msgid "_Medium" -msgstr "Medium" +msgstr "_Middel" #: app/actions/dockable-actions.c:105 -#, fuzzy msgid "_Large" -msgstr "Groot" +msgstr "_Groot" #: app/actions/dockable-actions.c:106 -#, fuzzy msgid "Ex_tra Large" -msgstr "Zeer groot" +msgstr "Z_eer groot" #: app/actions/dockable-actions.c:107 -#, fuzzy msgid "_Huge" -msgstr "Reusachtig" +msgstr "_Reusachtig" #: app/actions/dockable-actions.c:108 -#, fuzzy msgid "_Enormous" -msgstr "Enorm" +msgstr "E_norm" #: app/actions/dockable-actions.c:109 -#, fuzzy msgid "_Gigantic" -msgstr "Gigantisch" +msgstr "Gig_antisch" #: app/actions/dockable-actions.c:114 -#, fuzzy msgid "_Icon" -msgstr "Pictogram:" +msgstr "_Pictogram" #: app/actions/dockable-actions.c:115 -#, fuzzy msgid "Current _Status" -msgstr "Huidige status" +msgstr "Huidige _status" #: app/actions/dockable-actions.c:116 -#, fuzzy msgid "_Text" -msgstr "Tekst" +msgstr "_Tekst" #: app/actions/dockable-actions.c:117 -#, fuzzy msgid "I_con & Text" -msgstr "Pictogram & tekst" +msgstr "Pi_ctogram & tekst" #: app/actions/dockable-actions.c:118 -#, fuzzy msgid "St_atus & Text" -msgstr "Status en tekst" +msgstr "St_atus en tekst" #: app/actions/dockable-actions.c:127 -#, fuzzy msgid "View as _List" -msgstr "/Als lijst bekijken" +msgstr "Als _lijst bekijken" #: app/actions/dockable-actions.c:132 -#, fuzzy msgid "View as _Grid" -msgstr "/Als raster bekijken" +msgstr "Als _raster bekijken" #: app/actions/documents-actions.c:42 msgid "Documents Menu" msgstr "Menu Documenten" #: app/actions/documents-actions.c:46 -#, fuzzy msgid "_Open Image" -msgstr "/Afbeelding openen" +msgstr "Afbeelding _openen" #: app/actions/documents-actions.c:47 -#, fuzzy msgid "Open the selected entry" -msgstr "Geselecteerde ingang verwijderen" +msgstr "Geselecteerde item openen" #: app/actions/documents-actions.c:52 #, fuzzy @@ -1055,19 +1005,16 @@ msgstr "Venster bovenop indien reeds geopend" #: app/actions/documents-actions.c:58 -#, fuzzy msgid "File Open _Dialog" -msgstr "/Dialoog Bestand openen" +msgstr "_Dialoogvenster Bestand openen" #: app/actions/documents-actions.c:59 -#, fuzzy msgid "Open image dialog" -msgstr "Afbeelding openen" +msgstr "Dialoogvenster Afbeelding openen" #: app/actions/documents-actions.c:64 -#, fuzzy msgid "Remove _Entry" -msgstr "/Ingang verwijderen" +msgstr "_Item verwijderen" #: app/actions/documents-actions.c:65 #, fuzzy @@ -1104,11 +1051,11 @@ msgid "Remove dangling entries" msgstr "/Losse ingangen verwijderen" -#: app/actions/documents-commands.c:252 app/actions/file-commands.c:163 +#: app/actions/documents-commands.c:251 app/actions/file-commands.c:163 #: app/dialogs/file-open-dialog.c:198 app/dialogs/file-open-dialog.c:249 #: app/dialogs/file-open-location-dialog.c:193 -#: app/display/gimpdisplayshell-dnd.c:332 app/widgets/gimplayertreeview.c:802 -#: app/widgets/gimptoolbox-dnd.c:123 +#: app/display/gimpdisplayshell-dnd.c:334 app/widgets/gimplayertreeview.c:804 +#: app/widgets/gimptoolbox-dnd.c:125 #, c-format msgid "" "Opening '%s' failed:\n" @@ -1120,19 +1067,16 @@ "%s" #: app/actions/drawable-actions.c:45 -#, fuzzy msgid "_Desaturate" -msgstr "Desatureren" +msgstr "_Desatureren" #: app/actions/drawable-actions.c:50 -#, fuzzy msgid "_Equalize" -msgstr "Gelijkmaken" +msgstr "_Gelijkmaken" #: app/actions/drawable-actions.c:55 -#, fuzzy msgid "In_vert" -msgstr "Inverteren" +msgstr "In_verteren" #: app/actions/drawable-actions.c:60 msgid "_White Balance" @@ -1143,39 +1087,33 @@ msgstr "_Verschuiving..." #: app/actions/drawable-actions.c:73 app/actions/vectors-actions.c:153 -#, fuzzy msgid "_Linked" -msgstr "Lijn" +msgstr "_Gekoppeld" #: app/actions/drawable-actions.c:79 app/actions/vectors-actions.c:147 msgid "_Visible" msgstr "_Zichtbaar" #: app/actions/drawable-actions.c:88 app/actions/image-actions.c:141 -#, fuzzy msgid "Flip _Horizontally" -msgstr "Horizontaal:" +msgstr "_Horizontaal spiegelen" #: app/actions/drawable-actions.c:93 app/actions/image-actions.c:146 -#, fuzzy msgid "Flip _Vertically" -msgstr "Verticaal:" +msgstr "_Verticaal spiegelen" #. please use the degree symbol in the translation #: app/actions/drawable-actions.c:101 app/actions/image-actions.c:155 -#, fuzzy msgid "Rotate 90 degrees _CW" -msgstr "/Laag/Transformaties/90 graden draaien MKM" +msgstr "_90 graden draaien MKM" #: app/actions/drawable-actions.c:106 app/actions/image-actions.c:160 -#, fuzzy msgid "Rotate _180 degrees" -msgstr "/Afbeelding/Transformaties/180 graden draaien" +msgstr "_180 graden draaien" #: app/actions/drawable-actions.c:111 app/actions/image-actions.c:165 -#, fuzzy msgid "Rotate 90 degrees CC_W" -msgstr "/Afbeelding/Transformaties/90 graden draaien TKI" +msgstr "90 graden draaien _TKI" #: app/actions/drawable-commands.c:58 msgid "Desaturate operates only on RGB color layers." @@ -1190,9 +1128,8 @@ msgstr "Inverteren werkt niet op geïndexeerde lagen." #: app/actions/drawable-commands.c:114 -#, fuzzy msgid "White Balance operates only on RGB color layers." -msgstr "Kleurbalans werkt enkel op RGB-lagen." +msgstr "Witbalans werkt enkel op RGB-kleurenlagen." # /Edit #: app/actions/edit-actions.c:61 @@ -1213,23 +1150,21 @@ msgstr "Ongedaan maken" #: app/actions/edit-actions.c:71 app/actions/edit-actions.c:231 -#, fuzzy msgid "_Redo" -msgstr "Opnieuw uitvoeren" +msgstr "O_pnieuw uitvoeren" #: app/actions/edit-actions.c:72 msgid "Redo" msgstr "Opnieuw uitvoeren" +# wissen/leegmaken #: app/actions/edit-actions.c:77 -#, fuzzy msgid "_Clear Undo History" -msgstr "Overzicht 'Ongedaan maken'" +msgstr "Overzicht 'Ongedaan maken' _leegmaken" #: app/actions/edit-actions.c:78 -#, fuzzy msgid "Clear undo history..." -msgstr "Overzicht 'Ongedaan maken'" +msgstr "Overzicht 'Ongedaan maken' leegmaken..." #: app/actions/edit-actions.c:83 msgid "Cu_t" @@ -1241,23 +1176,20 @@ #. GIMP_STOCK_COPY_VISIBLE, #: app/actions/edit-actions.c:93 -#, fuzzy msgid "Copy _Visible" -msgstr "_Zichtbaar" +msgstr "_Zichtbare kopiëren" #: app/actions/edit-actions.c:98 msgid "_Paste" msgstr "_Plakken" #: app/actions/edit-actions.c:103 -#, fuzzy msgid "Paste _Into" -msgstr "Plakken op" +msgstr "Plakken _op" #: app/actions/edit-actions.c:108 -#, fuzzy msgid "Paste as _New" -msgstr "Plakken als nieuw beeld" +msgstr "Plakken als _nieuw beeld" #: app/actions/edit-actions.c:113 msgid "Cu_t Named..." @@ -1277,19 +1209,16 @@ msgstr "_Wissen" #: app/actions/edit-actions.c:136 -#, fuzzy msgid "Fill with _FG Color" -msgstr "Vullen met VG-kleur" +msgstr "Vullen met _VG-kleur" #: app/actions/edit-actions.c:141 -#, fuzzy msgid "Fill with B_G Color" -msgstr "Vullen met AG-kleur" +msgstr "Vullen met _AG-kleur" #: app/actions/edit-actions.c:146 -#, fuzzy msgid "Fill with P_attern" -msgstr "Met patroon vullen" +msgstr "Vullen met _patroon" #: app/actions/edit-actions.c:214 #, c-format @@ -1302,9 +1231,8 @@ msgstr "%s opnieuw uitvoeren" #: app/actions/edit-commands.c:104 -#, fuzzy msgid "Clear Undo History" -msgstr "Overzicht 'Ongedaan maken'" +msgstr "Overzicht 'Ongedaan maken' leegmaken" #: app/actions/edit-commands.c:122 msgid "Really clear image's undo history?" @@ -1339,34 +1267,28 @@ msgstr "Menu Foutenconsole" #: app/actions/error-console-actions.c:44 -#, fuzzy msgid "_Clear Errors" -msgstr "/Fouten wissen" +msgstr "_Fouten wissen" #: app/actions/error-console-actions.c:45 -#, fuzzy msgid "Clear errors" msgstr "Fouten wissen" #: app/actions/error-console-actions.c:53 -#, fuzzy msgid "Save _All Errors to File..." -msgstr "/Alle fouten naar bestand schrijven..." +msgstr "_Alle fouten naar bestand schrijven..." #: app/actions/error-console-actions.c:54 -#, fuzzy msgid "Save all errors" -msgstr "Fouten wissen" +msgstr "Alle fouten opslaan" #: app/actions/error-console-actions.c:59 -#, fuzzy msgid "Save _Selection to File..." -msgstr "/Selectie naar bestand schrijven..." +msgstr "Selectie op_slaan in bestand..." #: app/actions/error-console-actions.c:60 -#, fuzzy msgid "Save selection" -msgstr "Selectie verplaatsen" +msgstr "Selectie opslaan" #: app/actions/error-console-commands.c:69 msgid "Cannot save. Nothing is selected." @@ -1675,115 +1597,115 @@ msgid "Zoom all" msgstr "Zoom alle" -#: app/actions/gradient-editor-actions.c:582 +#: app/actions/gradient-editor-actions.c:589 msgid "_Blending Function for Segment" msgstr "Mengfunctie voor segment" -#: app/actions/gradient-editor-actions.c:584 +#: app/actions/gradient-editor-actions.c:591 msgid "Coloring _Type for Segment" msgstr "Kleurtype voor segment" -#: app/actions/gradient-editor-actions.c:587 +#: app/actions/gradient-editor-actions.c:594 msgid "_Flip Segment" msgstr "Segment spiegelen" -#: app/actions/gradient-editor-actions.c:589 +#: app/actions/gradient-editor-actions.c:596 msgid "_Replicate Segment..." msgstr "Segment kopiëren..." -#: app/actions/gradient-editor-actions.c:591 +#: app/actions/gradient-editor-actions.c:598 msgid "Split Segment at _Midpoint" msgstr "Segment op middelpunt splitsen" -#: app/actions/gradient-editor-actions.c:593 +#: app/actions/gradient-editor-actions.c:600 msgid "Split Segment _Uniformly..." msgstr "Segment gelijkmatig splitsen..." -#: app/actions/gradient-editor-actions.c:595 +#: app/actions/gradient-editor-actions.c:602 msgid "_Delete Segment" msgstr "Segment verwijderen" -#: app/actions/gradient-editor-actions.c:597 +#: app/actions/gradient-editor-actions.c:604 msgid "Re-_center Segment's Midpoint" msgstr "Middelpunt van segment hercentreren" -#: app/actions/gradient-editor-actions.c:599 +#: app/actions/gradient-editor-actions.c:606 msgid "Re-distribute _Handles in Segment" msgstr "Handvatten in segment herverdelen" -#: app/actions/gradient-editor-actions.c:604 +#: app/actions/gradient-editor-actions.c:611 msgid "_Blending Function for Selection" msgstr "Mengfunctie voor selectie" -#: app/actions/gradient-editor-actions.c:606 +#: app/actions/gradient-editor-actions.c:613 msgid "Coloring _Type for Selection" msgstr "Kleurtype voor selectie" -#: app/actions/gradient-editor-actions.c:609 +#: app/actions/gradient-editor-actions.c:616 msgid "_Flip Selection" msgstr "Selectie spiegelen" -#: app/actions/gradient-editor-actions.c:611 +#: app/actions/gradient-editor-actions.c:618 msgid "_Replicate Selection..." msgstr "Selectie kopiëren..." -#: app/actions/gradient-editor-actions.c:613 +#: app/actions/gradient-editor-actions.c:620 msgid "Split Segments at _Midpoints" msgstr "Segmenten op middelpunten splitsen" -#: app/actions/gradient-editor-actions.c:615 +#: app/actions/gradient-editor-actions.c:622 msgid "Split Segments _Uniformly..." msgstr "Segmenten gelijkmatig splitsen..." -#: app/actions/gradient-editor-actions.c:617 +#: app/actions/gradient-editor-actions.c:624 msgid "_Delete Selection" msgstr "Selectie verwijderen" -#: app/actions/gradient-editor-actions.c:619 +#: app/actions/gradient-editor-actions.c:626 msgid "Re-_center Midpoints in Selection" msgstr "Middelpunten in selectie hercentreren" -#: app/actions/gradient-editor-actions.c:621 +#: app/actions/gradient-editor-actions.c:628 msgid "Re-distribute _Handles in Selection" msgstr "Handvatten in selectie herverdelen" -#: app/actions/gradient-editor-commands.c:84 +#: app/actions/gradient-editor-commands.c:85 msgid "Left Endpoint Color" msgstr "Kleur van linkereindpunt" -#: app/actions/gradient-editor-commands.c:86 +#: app/actions/gradient-editor-commands.c:87 msgid "Gradient Segment's Left Endpoint Color" msgstr "Kleur van linkereindpunt van verloopsegment" -#: app/actions/gradient-editor-commands.c:186 +#: app/actions/gradient-editor-commands.c:189 msgid "Right Endpoint Color" msgstr "Kleur van rechtereindpunt" -#: app/actions/gradient-editor-commands.c:188 +#: app/actions/gradient-editor-commands.c:191 msgid "Gradient Segment's Right Endpoint Color" msgstr "Kleur van rechtereindpunt van verloopsegment" -#: app/actions/gradient-editor-commands.c:353 +#: app/actions/gradient-editor-commands.c:358 msgid "Replicate Segment" msgstr "Kopieer segment" -#: app/actions/gradient-editor-commands.c:354 +#: app/actions/gradient-editor-commands.c:359 msgid "Replicate Gradient Segment" msgstr "Kopieer verloopsegment" -#: app/actions/gradient-editor-commands.c:358 +#: app/actions/gradient-editor-commands.c:363 msgid "Replicate Selection" msgstr "Kopieer selectie" -#: app/actions/gradient-editor-commands.c:359 +#: app/actions/gradient-editor-commands.c:364 msgid "Replicate Gradient Selection" msgstr "Kopieer verloopselectie" -#: app/actions/gradient-editor-commands.c:371 +#: app/actions/gradient-editor-commands.c:376 msgid "Replicate" msgstr "Kopieer" -#: app/actions/gradient-editor-commands.c:386 +#: app/actions/gradient-editor-commands.c:391 msgid "" "Select the number of times\n" "to replicate the selected segment." @@ -1791,7 +1713,7 @@ "Selecteer het aantal keren dat het\n" "geselecteerd segment moet worden gekopieerd." -#: app/actions/gradient-editor-commands.c:389 +#: app/actions/gradient-editor-commands.c:394 msgid "" "Select the number of times\n" "to replicate the selection." @@ -1799,27 +1721,27 @@ "Selecteer het aantal keren dat de\n" "selectie moet worden gekopieerd." -#: app/actions/gradient-editor-commands.c:444 +#: app/actions/gradient-editor-commands.c:452 msgid "Split Segment Uniformly" msgstr "Splits segment gelijkmatig" -#: app/actions/gradient-editor-commands.c:445 +#: app/actions/gradient-editor-commands.c:453 msgid "Split Gradient Segment Uniformly" msgstr "Splits verloopsegment gelijkmatig" -#: app/actions/gradient-editor-commands.c:449 +#: app/actions/gradient-editor-commands.c:457 msgid "Split Segments Uniformly" msgstr "Splits segmenten gelijkmatig" -#: app/actions/gradient-editor-commands.c:450 +#: app/actions/gradient-editor-commands.c:458 msgid "Split Gradient Segments Uniformly" msgstr "Splits verloopsegmenten gelijkmatig" -#: app/actions/gradient-editor-commands.c:462 +#: app/actions/gradient-editor-commands.c:470 msgid "Split" msgstr "Splits" -#: app/actions/gradient-editor-commands.c:478 +#: app/actions/gradient-editor-commands.c:486 msgid "" "Select the number of uniform parts\n" "in which to split the selected segment." @@ -1827,7 +1749,7 @@ "Selecteer het aantal gelijke delen waarin het\n" "geselecteerd segment moet worden opgesplitst." -#: app/actions/gradient-editor-commands.c:481 +#: app/actions/gradient-editor-commands.c:489 msgid "" "Select the number of uniform parts\n" "in which to split the segments in the selection." @@ -1918,9 +1840,8 @@ msgstr "_Xtra" #: app/actions/image-actions.c:59 -#, fuzzy msgid "_Image" -msgstr "/Afbeelding" +msgstr "_Afbeelding" #: app/actions/image-actions.c:60 msgid "_Mode" @@ -2296,7 +2217,7 @@ #: app/actions/layers-commands.c:232 app/actions/layers-commands.c:234 #: app/actions/layers-commands.c:291 app/actions/layers-commands.c:295 -#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:840 +#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:842 msgid "New Layer" msgstr "Nieuwe laag" @@ -2308,7 +2229,7 @@ msgid "Set Layer Boundary Size" msgstr "Laaggrensgrootte instellen" -#: app/actions/layers-commands.c:512 app/core/gimplayer.c:255 +#: app/actions/layers-commands.c:512 app/core/gimplayer.c:253 msgid "Scale Layer" msgstr "Laag schalen" @@ -2320,7 +2241,7 @@ msgid "Layer Mask to Selection" msgstr "Laagmasker naar selectie" -#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1085 +#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1066 #: app/dialogs/layer-add-mask-dialog.c:62 msgid "Add Layer Mask" msgstr "Laagmaskter toevoegen" @@ -2698,9 +2619,8 @@ msgstr "Niets selecteren" #: app/actions/select-actions.c:62 -#, fuzzy msgid "_Invert" -msgstr "Inverteren" +msgstr "_Inverteren" #: app/actions/select-actions.c:63 #, fuzzy @@ -2728,44 +2648,36 @@ msgstr "Hellen..." #: app/actions/select-actions.c:88 -#, fuzzy msgid "_Grow..." -msgstr "/Selecteren/Uitdijen..." +msgstr "_Uitdijen..." #: app/actions/select-actions.c:93 -#, fuzzy msgid "Bo_rder..." -msgstr "/Selecteren/Rand..." +msgstr "_Rand..." #: app/actions/select-actions.c:98 -#, fuzzy msgid "Save to _Channel" -msgstr "/Selecteren/Opslaan in kanaal" +msgstr "Opslaan in _kanaal" #: app/actions/select-actions.c:99 -#, fuzzy msgid "Save selection to channel" msgstr "Selectie opslaan in kanaal" #: app/actions/select-actions.c:104 -#, fuzzy msgid "_Stroke Selection..." -msgstr "Lijn op selectie tekenen" +msgstr "_Lijn tekenen op selectie..." #: app/actions/select-actions.c:105 -#, fuzzy msgid "Stroke selection..." -msgstr "Lijn op selectie tekenen" +msgstr "Lijn tekenen op selectie..." #: app/actions/select-actions.c:110 -#, fuzzy msgid "_Stroke Selection" -msgstr "Lijn op selectie tekenen" +msgstr "_Lijn tekenen op selectie" #: app/actions/select-actions.c:111 -#, fuzzy msgid "Stroke selection with last values" -msgstr "Lijn op selectie tekenen" +msgstr "Lijn tekenen op selectie met de laatste waardes" #: app/actions/select-commands.c:136 app/core/gimpselection.c:201 msgid "Feather Selection" @@ -2818,45 +2730,40 @@ msgstr "Menu Sjablonen" #: app/actions/templates-actions.c:46 -#, fuzzy msgid "_Create Image from Template..." -msgstr "/Afbeelding volgens sjabloon aanmaken..." +msgstr "_Afbeelding volgens sjabloon aanmaken..." #: app/actions/templates-actions.c:47 msgid "Create a new image from the selected template" msgstr "Nieuwe afbeelding aanmaken op basis van de geselecteerde sjabloon" #: app/actions/templates-actions.c:52 -#, fuzzy msgid "_New Template..." -msgstr "/Nieuwe sjabloon..." +msgstr "_Nieuw sjabloon..." #: app/actions/templates-actions.c:53 msgid "Create a new template" msgstr "Nieuwe sjabloon aanmaken" #: app/actions/templates-actions.c:58 -#, fuzzy msgid "D_uplicate Template..." -msgstr "/Sjabloon dupliceren..." +msgstr "Sjabloon d_upliceren..." #: app/actions/templates-actions.c:59 msgid "Duplicate the selected template" msgstr "Geselecteerde sjabloon dupliceren" #: app/actions/templates-actions.c:64 -#, fuzzy msgid "_Edit Template..." -msgstr "/Sjabloon bewerken..." +msgstr "Sjabloon be_werken..." #: app/actions/templates-actions.c:65 msgid "Edit the selected template" msgstr "Geselecteerde sjabloon bewerken" #: app/actions/templates-actions.c:70 -#, fuzzy msgid "_Delete Template" -msgstr "/Sjabloon verwijderen" +msgstr "Sjabloon _verwijderen" #: app/actions/templates-actions.c:71 msgid "Delete the selected template" @@ -2886,24 +2793,23 @@ "Bent u zeker dat u sjabloon '%s' van de lijst en van schijf wilt verwijderen?" #: app/actions/text-editor-actions.c:44 -#, fuzzy msgid "Open" -msgstr "/Bestand/Openen..." +msgstr "Openen" #: app/actions/text-editor-actions.c:45 -#, fuzzy msgid "Load text from file" msgstr "Tekst uit bestand laden" +# wissen #: app/actions/text-editor-actions.c:50 app/core/gimp-edit.c:350 msgid "Clear" msgstr "Leegmaken" #: app/actions/text-editor-actions.c:51 -#, fuzzy msgid "Clear all text" -msgstr "Wis alle tekst" +msgstr "Alle tekst wissen" +# links naar rechts #: app/actions/text-editor-actions.c:59 msgid "LTR" msgstr "LNR" @@ -2925,7 +2831,7 @@ msgstr "Open tekstbestand (UTF-8)" #: app/actions/text-editor-commands.c:132 app/config/gimpconfig-utils.c:552 -#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:393 +#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:396 #: app/core/gimpbrushgenerated.c:601 app/core/gimpbrushpipe.c:338 #: app/core/gimpgradient-load.c:63 app/core/gimppalette.c:360 #: app/core/gimppattern.c:328 app/tools/gimpimagemaptool.c:608 @@ -2938,30 +2844,26 @@ msgid "Tool Options Menu" msgstr "Menu Gereedschapsopties" +# opslaan in/opslaan naar #: app/actions/tool-options-actions.c:60 -#, fuzzy msgid "_Save Options to" -msgstr "/Opties opslaan naar" +msgstr "Opties op_slaan naar" #: app/actions/tool-options-actions.c:64 -#, fuzzy msgid "_Restore Options from" -msgstr "/Opties herstellen uit" +msgstr "Opties he_rstellen uit" #: app/actions/tool-options-actions.c:68 -#, fuzzy msgid "Re_name Saved Options" -msgstr "/Opgeslagen opties hernoemen" +msgstr "Opgeslagen opties _hernoemen" #: app/actions/tool-options-actions.c:72 -#, fuzzy msgid "_Delete Saved Options" -msgstr "/Opgeslagen opties verwijderen" +msgstr "Opgeslagen opties _verwijderen" #: app/actions/tool-options-actions.c:76 -#, fuzzy msgid "_New Entry..." -msgstr "/Nieuw pad..." +msgstr "_Nieuwe invoer..." #: app/actions/tool-options-actions.c:81 #, fuzzy @@ -3016,126 +2918,111 @@ "terugbrengen?" #: app/actions/tools-actions.c:47 -#, fuzzy msgid "Tools Menu" -msgstr "Gereedschapskistmenu" +msgstr "Gereedschapmenu" # Attention! Singular in Dutch! #: app/actions/tools-actions.c:50 -#, fuzzy msgid "_Tools" -msgstr "/Gereedschap" +msgstr "_Gereedschap" +# Selectiegereedschap +# het is hier duidelijker om 'tools' niet mee te vertalen #: app/actions/tools-actions.c:51 -#, fuzzy msgid "_Selection Tools" -msgstr "/Gereedschap/Selecties" +msgstr "_Selectie" +# het zijn penselen en potloden/stiften. +# schilderen en tekenen kan dus allebei. +# tekenen vond ik net iets duidelijker #: app/actions/tools-actions.c:52 -#, fuzzy msgid "_Paint Tools" -msgstr "Schildergereedschap:" +msgstr "T_ekenen" +# Transformatie/transformeren +# is niet consequent met 'tekenen' of 'schilderen' +# maar het is hier mooier dan Transformeren #: app/actions/tools-actions.c:53 -#, fuzzy msgid "_Transform Tools" -msgstr "/Gereedschap/Transformaties" +msgstr "_Transformatie" +# kleur/kleuren #: app/actions/tools-actions.c:54 -#, fuzzy msgid "_Color Tools" -msgstr "/Gereedschap/Kleur" +msgstr "_Kleur" #: app/actions/tools-actions.c:57 -#, fuzzy msgid "_Reset Order & Visibility" -msgstr "Zichtbaarheid item" +msgstr "Volgorde en zichtbaarheid _herstellen" #: app/actions/tools-actions.c:58 msgid "Reset tool order and visibility" -msgstr "" +msgstr "Volgorde en zichtbaarheid van het gereedschap herstellen" -# What's the Dutch translation for tooltip? #: app/actions/tools-actions.c:66 -#, fuzzy msgid "_Show in Toolbox" -msgstr "Tooltips tonen" +msgstr "_Tonen in de gereedschapskist" #: app/actions/tools-actions.c:75 -#, fuzzy msgid "_By Color" -msgstr "RGB-kleur" +msgstr "Op _kleur" #: app/actions/tools-actions.c:80 -#, fuzzy msgid "_Arbitrary Rotation..." -msgstr "/Laag/Tranformaties/Willekeurige draaiing..." +msgstr "_Willekeurige draaiing..." #: app/actions/vectors-actions.c:44 msgid "Paths Menu" msgstr "Menu Paden" +# tool niet meevertaald #: app/actions/vectors-actions.c:48 -#, fuzzy msgid "Path _Tool" -msgstr "/Padgereedschap" +msgstr "_Pad" #: app/actions/vectors-actions.c:53 -#, fuzzy msgid "_Edit Path Attributes..." -msgstr "/Padattributen bewerken..." +msgstr "Padattributen be_werken..." #: app/actions/vectors-actions.c:54 -#, fuzzy msgid "Edit path attributes" msgstr "Padattributen bewerken" #: app/actions/vectors-actions.c:59 -#, fuzzy msgid "_New Path..." -msgstr "/Nieuw pad..." +msgstr "_Nieuw pad..." #: app/actions/vectors-actions.c:60 -#, fuzzy msgid "New path..." -msgstr "/Nieuw pad..." +msgstr "Nieuw pad..." #: app/actions/vectors-actions.c:65 -#, fuzzy msgid "_New Path" -msgstr "Nieuw pad" +msgstr "_Nieuw pad" #: app/actions/vectors-actions.c:66 -#, fuzzy msgid "New path with last values" -msgstr "" -"Nieuw Pad\n" -"%s Dialoogvenster Nieuw pad" +msgstr "Nieuw pad met laatste waardes" #: app/actions/vectors-actions.c:71 -#, fuzzy msgid "D_uplicate Path" -msgstr "/Pad dupliceren" +msgstr "Pad d_upliceren" #: app/actions/vectors-actions.c:72 -#, fuzzy msgid "Duplicate path" msgstr "Pad dupliceren" #: app/actions/vectors-actions.c:77 -#, fuzzy msgid "_Delete Path" -msgstr "/Pad verwijderen" +msgstr "Pad _verwijderen" #: app/actions/vectors-actions.c:78 -#, fuzzy msgid "Delete path" msgstr "Pad verwijderen" #: app/actions/vectors-actions.c:83 -#, fuzzy msgid "Merge _Visible Paths" -msgstr "/Zichtbare paden samenvoegen" +msgstr "Zichtbare paden samen_voegen" #: app/actions/vectors-actions.c:88 #, fuzzy @@ -3178,59 +3065,48 @@ msgstr "Pad naar bodem" #: app/actions/vectors-actions.c:112 -#, fuzzy msgid "Stro_ke Path..." -msgstr "/Pad naar lijn..." +msgstr "_Lijn tekenen op pad..." #: app/actions/vectors-actions.c:113 -#, fuzzy msgid "Stroke path..." -msgstr "/Pad naar lijn..." +msgstr "Lijn tekenen op pad..." #: app/actions/vectors-actions.c:118 -#, fuzzy msgid "Stro_ke Path" -msgstr "Pad naar lijn" +msgstr "Lijn tekenen op pad" #: app/actions/vectors-actions.c:119 -#, fuzzy msgid "Stroke path with last values" -msgstr "Lijn tekenen met schildergereedschap" +msgstr "Lijn tekenen op pad met laatste waardes" #: app/actions/vectors-actions.c:124 -#, fuzzy msgid "Co_py Path" -msgstr "/Pad kopiëren" +msgstr "Pad _kopiëren" #: app/actions/vectors-actions.c:129 -#, fuzzy msgid "Paste Pat_h" -msgstr "/Pad Plakken" +msgstr "Pad _plakken" #: app/actions/vectors-actions.c:134 -#, fuzzy msgid "I_mport Path..." -msgstr "/Pad importeren..." +msgstr "Pad i_mporteren..." #: app/actions/vectors-actions.c:139 -#, fuzzy msgid "E_xport Path..." -msgstr "/Pad exporteren..." +msgstr "Pad e_xporteren..." #: app/actions/vectors-actions.c:162 -#, fuzzy msgid "Path to Sele_ction" -msgstr "/Pad naar selectie" +msgstr "Pad naar sele_ctie" #: app/actions/vectors-actions.c:163 app/tools/gimpvectortool.c:1893 -#, fuzzy msgid "Path to selection" msgstr "Pad naar selectie" #: app/actions/vectors-actions.c:168 -#, fuzzy msgid "Fr_om Path" -msgstr "/Selecteren/Uit pad" +msgstr "_Uit pad" #: app/actions/vectors-actions.c:194 #, fuzzy @@ -3311,14 +3187,12 @@ msgstr "Afbeelding in venster passen" #: app/actions/view-actions.c:84 -#, fuzzy msgid "Fit Image to Window" -msgstr "Pas in venster" +msgstr "Afbeelding in venster passen" #: app/actions/view-actions.c:85 -#, fuzzy msgid "Fit image to window" -msgstr "Pas in venster" +msgstr "Afbeelding in venster passen" #: app/actions/view-actions.c:90 msgid "_Info Window" @@ -3354,9 +3228,8 @@ msgstr "_Punt voor punt" #: app/actions/view-actions.c:125 -#, fuzzy msgid "Show _Selection" -msgstr "Selectie tonen" +msgstr "Selectie _tonen" #: app/actions/view-actions.c:131 msgid "Show _Layer Boundary" @@ -3372,9 +3245,8 @@ msgstr "/Beeld/Hulplijnen magnetisch" #: app/actions/view-actions.c:149 -#, fuzzy msgid "S_how Grid" -msgstr "Raster tonen" +msgstr "_Raster tonen" #: app/actions/view-actions.c:155 #, fuzzy @@ -3386,9 +3258,8 @@ msgstr "Menubalk tonen" #: app/actions/view-actions.c:167 -#, fuzzy msgid "Show R_ulers" -msgstr "Linealen tonen" +msgstr "_Linealen tonen" #: app/actions/view-actions.c:173 msgid "Show Scroll_bars" @@ -4141,6 +4012,8 @@ "The thumbnail in the Open dialog will be automatically updated if the file " "being previewed is smaller than the size set here." msgstr "" +"De miniatuur in het dialoogvenster Openen zal automatisch worden vernieuwd " +"als het bekeken bestand kleiner is dat hier is ingesteld." #: app/config/gimprc-blurbs.h:373 msgid "" @@ -4231,15 +4104,14 @@ msgid "Error while parsing '%s' in line %d: %s" msgstr "Fout tijdens parseren '%s' in regel %d: %s" +# full niet meevertaald #: app/core/core-enums.c:27 -#, fuzzy msgid "_White (full opacity)" -msgstr "Wit (ondoorzichtig)" +msgstr "_Wit (ondoorzichtig)" #: app/core/core-enums.c:28 -#, fuzzy msgid "_Black (full transparency)" -msgstr "Zwart (volledig transparant)" +msgstr "_Zwart (transparant)" #: app/core/core-enums.c:29 #, fuzzy @@ -4253,12 +4125,11 @@ #: app/core/core-enums.c:31 msgid "_Selection" -msgstr "Selectie" +msgstr "_Selectie" #: app/core/core-enums.c:32 -#, fuzzy msgid "_Grayscale copy of layer" -msgstr "Grijswaardenkopie van laag" +msgstr "_Grijswaardenkopie van laag" #: app/core/core-enums.c:61 app/core/gimp-gradients.c:70 msgid "FG to BG (RGB)" @@ -4269,9 +4140,8 @@ msgstr "VG naar AG (KVW)" #: app/core/core-enums.c:63 -#, fuzzy msgid "FG to transparent" -msgstr "VG naar Transparant" +msgstr "VG naar transparant" #: app/core/core-enums.c:64 #, fuzzy @@ -4476,7 +4346,7 @@ #: app/core/core-enums.c:566 app/dialogs/preferences-dialog.c:1804 msgid "Custom" -msgstr "Eigen" +msgstr "Aangepast" #: app/core/core-enums.c:567 msgid "Line" @@ -4630,7 +4500,6 @@ msgstr "Afbeelding herschalen" #: app/core/core-enums.c:1031 -#, fuzzy msgid "Flip image" msgstr "Afbeelding spiegelen" @@ -4675,67 +4544,54 @@ msgstr "Tekengebiedaanpassing" #: app/core/core-enums.c:1042 app/core/core-enums.c:1072 -#, fuzzy msgid "Selection mask" msgstr "Selectiemasker" #: app/core/core-enums.c:1043 app/core/core-enums.c:1075 -#, fuzzy msgid "Item visibility" msgstr "Zichtbaarheid item" #: app/core/core-enums.c:1044 -#, fuzzy msgid "Linked item" msgstr "Gekoppeld item" #: app/core/core-enums.c:1045 -#, fuzzy msgid "Item properties" -msgstr "Itemeigenschappen" +msgstr "Eigenschappen item" #: app/core/core-enums.c:1046 app/core/core-enums.c:1074 -#, fuzzy msgid "Move item" msgstr "Item verplaatsen" #: app/core/core-enums.c:1047 -#, fuzzy msgid "Scale item" msgstr "Item schalen" #: app/core/core-enums.c:1048 -#, fuzzy msgid "Resize item" msgstr "Item herschalen" #: app/core/core-enums.c:1049 app/core/core-enums.c:1079 -#, fuzzy msgid "Add layer mask" msgstr "Laagmaskter toevoegen" #: app/core/core-enums.c:1050 -#, fuzzy msgid "Apply layer mask" msgstr "Laagmasker toepassen" #: app/core/core-enums.c:1051 -#, fuzzy msgid "Floating selection to layer" msgstr "Drijvende selectie naar laag" #: app/core/core-enums.c:1052 -#, fuzzy msgid "Float selection" msgstr "Drijvende selectie" #: app/core/core-enums.c:1053 -#, fuzzy msgid "Anchor floating selection" msgstr "Drijvende selectie verankeren" #: app/core/core-enums.c:1054 -#, fuzzy msgid "Remove floating selection" msgstr "Drijvende selectie verwijderen" @@ -4762,18 +4618,16 @@ msgid "Paint" msgstr "Schilderen" +# aanhangen/vastmaken/bijvoegen #: app/core/core-enums.c:1060 app/core/core-enums.c:1100 -#, fuzzy msgid "Attach parasite" msgstr "Parasiet aanhangen" #: app/core/core-enums.c:1061 app/core/core-enums.c:1101 -#, fuzzy msgid "Remove parasite" msgstr "Parasiet verwijderen" #: app/core/core-enums.c:1062 -#, fuzzy msgid "Import paths" msgstr "Paden importeren" @@ -4782,7 +4636,6 @@ msgstr "Plug-in" #: app/core/core-enums.c:1064 -#, fuzzy msgid "Image type" msgstr "Afbeeldingstype" @@ -4941,7 +4794,7 @@ msgid "FG to Transparent" msgstr "VG naar Transparant" -#: app/core/gimp-gui.c:148 +#: app/core/gimp-gui.c:153 msgid "GIMP" msgstr "GIMP" @@ -4973,40 +4826,55 @@ msgid "Modules" msgstr "Modules" -#: app/core/gimpbrush.c:531 +#: app/core/gimpbrush.c:534 #, c-format msgid "Could not read %d bytes from '%s': %s" msgstr "Kan %d bytes niet lezen uit '%s': %s" -#: app/core/gimpbrush.c:566 +#: app/core/gimpbrush.c:554 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Width = 0." +msgstr "Fatale parseerfout in penseelbestand '%s': onbekende diepte %d." + +#: app/core/gimpbrush.c:563 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Height = 0." +msgstr "Fatale parseerfout in penseelbestand '%s': bestand is beschadigd." + +#: app/core/gimpbrush.c:572 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Bytes = 0." +msgstr "Fatale parseerfout in penseelbestand '%s': bestand is beschadigd." + +#: app/core/gimpbrush.c:596 #, c-format msgid "Fatal parse error in brush file '%s': Unknown depth %d." msgstr "Fatale parseerfout in penseelbestand '%s': onbekende diepte %d." -#: app/core/gimpbrush.c:579 +#: app/core/gimpbrush.c:609 #, c-format msgid "Fatal parse error in brush file '%s': Unknown version %d." msgstr "Fatale parseerfout in penseelbestand '%s': onbekende versie %d." -#: app/core/gimpbrush.c:595 app/core/gimpbrush.c:715 +#: app/core/gimpbrush.c:625 app/core/gimpbrush.c:745 #, c-format msgid "Fatal parse error in brush file '%s': File appears truncated." msgstr "" "Fatale parseerfout in penseelbestand '%s': bestand lijkt te zijn ingekort." -#: app/core/gimpbrush.c:603 app/core/gimpbrushgenerated.c:648 +#: app/core/gimpbrush.c:633 app/core/gimpbrushgenerated.c:648 #: app/core/gimpbrushpipe.c:354 #, c-format msgid "Invalid UTF-8 string in brush file '%s'." msgstr "Ongeldige UTF-8-tekenreeks in penseelbestand '%s'." -#: app/core/gimpbrush.c:610 app/core/gimpcontext.c:1299 -#: app/core/gimpitem.c:479 app/core/gimppattern.c:400 +#: app/core/gimpbrush.c:640 app/core/gimpcontext.c:1299 +#: app/core/gimpitem.c:480 app/core/gimppattern.c:400 #: app/dialogs/template-options-dialog.c:80 app/tools/gimpvectortool.c:339 msgid "Unnamed" msgstr "Naamloos" -#: app/core/gimpbrush.c:704 +#: app/core/gimpbrush.c:734 #, c-format msgid "" "Fatal parse error in brush file '%s': Unsupported brush depth %d\n" @@ -5176,11 +5044,11 @@ "%s" #: app/core/gimpdatafactory.c:411 app/core/gimpdatafactory.c:414 -#: app/core/gimpitem.c:274 app/core/gimpitem.c:277 +#: app/core/gimpitem.c:275 app/core/gimpitem.c:278 msgid "copy" msgstr "kopiëren" -#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:286 +#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:287 #, c-format msgid "%s copy" msgstr "%s kopiëren" @@ -5243,7 +5111,7 @@ msgid "Rotate" msgstr "Roteren" -#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:259 +#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:257 msgid "Transform Layer" msgstr "Laag transformeren" @@ -5285,11 +5153,12 @@ #, c-format msgid "Gradient file '%s' is corrupt: Segments do not span the range 0-1." msgstr "" +"Verloopbestand '%s' is beschadigd: segmenten omvatten niet het bereik 0-1." #: app/core/gimpgradient-load.c:281 -#, fuzzy, c-format +#, c-format msgid "No linear gradients found in '%s'" -msgstr "Geen paden gevonden in '%s'" +msgstr "Geen lineaire verlopen gevonden in '%s'" #: app/core/gimpgradient-load.c:291 #, fuzzy, c-format @@ -5333,9 +5202,8 @@ "zijn." #: app/core/gimpimage-colormap.c:63 -#, fuzzy msgid "Set Colormap" -msgstr "Kleurenkaart" +msgstr "Kleurenkaart instellen" #: app/core/gimpimage-colormap.c:115 #, fuzzy @@ -5343,9 +5211,8 @@ msgstr "Afbeeldingseenheid veranderen" #: app/core/gimpimage-colormap.c:135 -#, fuzzy msgid "Add Color to Colormap" -msgstr "/Kleur toevoegen uit VG" +msgstr "Kleur toevoegen aan kleurenkaart" #: app/core/gimpimage-convert.c:788 msgid "Convert Image to RGB" @@ -5621,7 +5488,7 @@ #. pixel size #: app/core/gimpimagefile.c:624 app/dialogs/info-window.c:552 -#: app/widgets/gimpsizebox.c:552 app/widgets/gimptemplateeditor.c:637 +#: app/widgets/gimpsizebox.c:429 app/widgets/gimptemplateeditor.c:637 #: app/widgets/gimptemplateeditor.c:673 #, c-format msgid "%d x %d pixels" @@ -5641,15 +5508,15 @@ msgid "Could not open thumbnail '%s': %s" msgstr "Kon miniatuurbestand '%s' niet openen: %s" -#: app/core/gimpitem.c:1096 +#: app/core/gimpitem.c:1103 msgid "Attach Parasite" msgstr "Parasiet aanhangen" -#: app/core/gimpitem.c:1106 +#: app/core/gimpitem.c:1113 msgid "Attach Parasite to Item" msgstr "Parasiet aan item koppelen" -#: app/core/gimpitem.c:1145 app/core/gimpitem.c:1152 +#: app/core/gimpitem.c:1152 app/core/gimpitem.c:1159 msgid "Remove Parasite from Item" msgstr "Parasiet van item verwijderen" @@ -5677,80 +5544,80 @@ msgid "Floating Selection to Layer" msgstr "Drijvende selectie naar laag" -#: app/core/gimplayer.c:252 app/pdb/internal_procs.c:152 +#: app/core/gimplayer.c:250 app/pdb/internal_procs.c:152 msgid "Layer" msgstr "Laag" -#: app/core/gimplayer.c:253 +#: app/core/gimplayer.c:251 msgid "Rename Layer" msgstr "Laag hernoemen" -#: app/core/gimplayer.c:254 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 +#: app/core/gimplayer.c:252 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 msgid "Move Layer" msgstr "Laag verplaatsen" -#: app/core/gimplayer.c:256 +#: app/core/gimplayer.c:254 msgid "Resize Layer" msgstr "Laag herschalen" -#: app/core/gimplayer.c:257 +#: app/core/gimplayer.c:255 msgid "Flip Layer" msgstr "Laag spiegelen" -#: app/core/gimplayer.c:258 +#: app/core/gimplayer.c:256 msgid "Rotate Layer" msgstr "Laag draaien" -#: app/core/gimplayer.c:341 app/core/gimplayer.c:1129 +#: app/core/gimplayer.c:339 app/core/gimplayer.c:1110 #: app/core/gimplayermask.c:236 #, c-format msgid "%s mask" msgstr "%s masker" -#: app/core/gimplayer.c:387 +#: app/core/gimplayer.c:385 #, fuzzy, c-format msgid "" "Floating Selection\n" "(%s)" msgstr "Drijvende Selectie" -#: app/core/gimplayer.c:1055 +#: app/core/gimplayer.c:1036 msgid "Cannot add layer mask to layer which is not part of an image." msgstr "" "Kan geen laagmasker toevoegen aan een laag die niet deel is van een " "afbeelding." -#: app/core/gimplayer.c:1062 +#: app/core/gimplayer.c:1043 msgid "Unable to add a layer mask since the layer already has one." msgstr "Kan geen laagmasker toevoegen, omdat de laag er al een heeft." -#: app/core/gimplayer.c:1069 +#: app/core/gimplayer.c:1050 msgid "Cannot add layer mask to a layer with no alpha channel." msgstr "Kan geen laagmasker toevoegen aan een laag zonder alphakanaal." -#: app/core/gimplayer.c:1079 +#: app/core/gimplayer.c:1060 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "" "Kan geen laagmasker toevoegen met andere afmetingen dan de gespecificeerde " "laag" -#: app/core/gimplayer.c:1183 +#: app/core/gimplayer.c:1164 msgid "Transfer Alpha to Mask" msgstr "Alpha naar masker verplaatsen" -#: app/core/gimplayer.c:1343 +#: app/core/gimplayer.c:1324 msgid "Apply Layer Mask" msgstr "Laagmasker toepassen" -#: app/core/gimplayer.c:1344 +#: app/core/gimplayer.c:1325 msgid "Delete Layer Mask" msgstr "Laagmasker verwijderen" -#: app/core/gimplayer.c:1445 +#: app/core/gimplayer.c:1426 msgid "Add Alpha Channel" msgstr "Alphakanaal toevoegen" -#: app/core/gimplayer.c:1467 +#: app/core/gimplayer.c:1448 msgid "Layer to Image Size" msgstr "Laag naar afbeeldingsgrootte" @@ -6677,9 +6544,10 @@ msgid "New Image" msgstr "Nieuwe afbeelding" +# image niet meevertaald voor duidelijkheid #: app/dialogs/preferences-dialog.c:1335 msgid "Default Image Grid" -msgstr "Standaard afbeeldingsraster" +msgstr "Standaard raster" #: app/dialogs/preferences-dialog.c:1338 msgid "Default Grid" @@ -6687,11 +6555,11 @@ #: app/dialogs/preferences-dialog.c:1358 msgid "User Interface" -msgstr "Gebruikersinterface" +msgstr "Bediening" #: app/dialogs/preferences-dialog.c:1361 msgid "Interface" -msgstr "Interface" +msgstr "Bediening" #. Previews #: app/dialogs/preferences-dialog.c:1368 @@ -6699,9 +6567,8 @@ msgstr "Vooruitblikken" #: app/dialogs/preferences-dialog.c:1371 -#, fuzzy msgid "_Enable layer & channel previews" -msgstr "Laag- en kanaalvooruitblikken inschakelen" +msgstr "_Laag- en kanaalvooruitblikken inschakelen" #: app/dialogs/preferences-dialog.c:1377 #, fuzzy @@ -6935,9 +6802,11 @@ msgid "Default Appearance in Fullscreen Mode" msgstr "Volledig scherm" +# image niet meevertaald voor duidelijkheid. +# formaat/indeling/informatie #: app/dialogs/preferences-dialog.c:1782 msgid "Image Title & Statusbar Format" -msgstr "Formaat afbeeldingstitel en statusbalk" +msgstr "Formaat titel en statusbalk" #: app/dialogs/preferences-dialog.c:1785 msgid "Title & Status" @@ -6965,11 +6834,11 @@ #: app/dialogs/preferences-dialog.c:1820 msgid "Image Title Format" -msgstr "Formaat afbeeldingstitel" +msgstr "Formaat titel" #: app/dialogs/preferences-dialog.c:1821 msgid "Image Statusbar Format" -msgstr "Formaat afbeeldingsstatusbalk" +msgstr "Formaat statusbalk" #: app/dialogs/preferences-dialog.c:1906 app/dialogs/preferences-dialog.c:1909 msgid "Display" @@ -7106,6 +6975,7 @@ msgid "Maximum _new image size:" msgstr "Maximale grootte voor nieuwe afbeelding:" +# processors/processoren #: app/dialogs/preferences-dialog.c:2213 #, fuzzy msgid "Number of _processors to use:" @@ -7114,7 +6984,7 @@ #. Image Thumbnails #: app/dialogs/preferences-dialog.c:2218 msgid "Image Thumbnails" -msgstr "Iniaturen" +msgstr "Miniaturen" #: app/dialogs/preferences-dialog.c:2223 msgid "Size of _thumbnails:" @@ -7248,28 +7118,29 @@ msgstr "Afdrukgrootte" #. the image size labels -#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:241 +#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:222 #: app/widgets/gimptemplateeditor.c:236 msgid "_Width:" msgstr "_Breedte:" -#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:248 +# H, O G en T worden al gebruikt als sneltoets +#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:225 #: app/widgets/gimptemplateeditor.c:243 msgid "H_eight:" -msgstr "_Hoogte: " +msgstr "Hoogt_e: " #. the resolution labels -#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:338 +#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:273 #: app/widgets/gimptemplateeditor.c:363 msgid "_X resolution:" msgstr "Resolutie _X:" -#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:345 +#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:276 #: app/widgets/gimptemplateeditor.c:370 msgid "_Y resolution:" msgstr "Resolutie _Y:" -#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:357 +#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:269 #: app/widgets/gimptemplateeditor.c:383 #, c-format msgid "pixels/%a" @@ -7916,11 +7787,11 @@ msgstr "%d minuten" # Drag and drop -#: app/display/gimpdisplayshell-dnd.c:96 +#: app/display/gimpdisplayshell-dnd.c:98 msgid "Drop New Layer" msgstr "Nieuwe laag slepen" -#: app/display/gimpdisplayshell-dnd.c:140 +#: app/display/gimpdisplayshell-dnd.c:142 msgid "Drop New Path" msgstr "Nieuw pad verwijderen" @@ -8957,10 +8828,10 @@ msgstr "Afbeelding snijden of schalen" #: app/tools/gimpcroptool.c:166 -#, fuzzy msgid "_Crop & Resize" -msgstr "Knippen & herschalen" +msgstr "_Knippen & herschalen" +# knippen #. initialize the statusbar display #: app/tools/gimpcroptool.c:499 app/tools/gimpcroptool.c:983 msgid "Crop: " @@ -8972,25 +8843,23 @@ #: app/tools/gimpcroptool.c:1029 msgid "Origin X:" -msgstr "Bron X:" +msgstr "Oorsprong X:" #: app/tools/gimpcroptool.c:1033 -#, fuzzy msgid "Origin Y:" -msgstr "Bron X:" +msgstr "Oorsprong Y:" #: app/tools/gimpcroptool.c:1071 app/widgets/gimpbrusheditor.c:194 -#, fuzzy msgid "Aspect ratio:" -msgstr "Platheid:" +msgstr "Verhouding:" +# betere vertaling? #: app/tools/gimpcroptool.c:1082 -#, fuzzy msgid "From selection" msgstr "Van selectie" +# betere vertaling? #: app/tools/gimpcroptool.c:1090 -#, fuzzy msgid "Auto shrink" msgstr "Autokrimpen" @@ -8999,9 +8868,8 @@ msgstr "Kleurcurves aanpassen" #: app/tools/gimpcurvestool.c:143 -#, fuzzy msgid "_Curves..." -msgstr "Curves" +msgstr "_Curves..." #: app/tools/gimpcurvestool.c:202 msgid "Adjust Color Curves" @@ -9011,10 +8879,10 @@ msgid "Load Curves" msgstr "Curves laden" +# lezen/laden #: app/tools/gimpcurvestool.c:205 -#, fuzzy msgid "Load curves settings from file" -msgstr "Lees curve-instellingen uit bestand" +msgstr "Curve-instellingen laden uit bestand" #: app/tools/gimpcurvestool.c:206 msgid "Save Curves" @@ -9033,10 +8901,10 @@ msgid "Channel:" msgstr "Kanaal:" +# opnieuw instellen/herstellen #: app/tools/gimpcurvestool.c:494 app/tools/gimplevelstool.c:430 -#, fuzzy msgid "R_eset channel" -msgstr "Kanaal opnieuw instellen" +msgstr "Kanaal _herstellen" #. Horizontal button box for load / save #: app/tools/gimpcurvestool.c:596 app/tools/gimplevelstool.c:640 @@ -9073,17 +8941,16 @@ #: app/tools/gimpeditselectiontool.c:262 #: app/tools/gimpeditselectiontool.c:1203 -#, fuzzy msgid "Move Floating Selection" -msgstr "Drijvende selectie verwijderen" +msgstr "Drijvende selectie verplaatsen" #: app/tools/gimpeditselectiontool.c:464 app/tools/gimpeditselectiontool.c:732 msgid "Move: " -msgstr "Verplaats: " +msgstr "Verplaatsen: " #: app/tools/gimpellipseselecttool.c:72 msgid "Select elliptical regions" -msgstr "Selecteer elliptische gebieden" +msgstr "Elliptische gebieden selecteren" #: app/tools/gimpellipseselecttool.c:73 #, fuzzy @@ -9095,13 +8962,12 @@ msgstr "Naar achtergrond of transparantie verwijderen" #: app/tools/gimperasertool.c:72 -#, fuzzy msgid "_Eraser" -msgstr "Gom" +msgstr "_Gummetjes" #. the anti_erase toggle #: app/tools/gimperasertool.c:185 -#, fuzzy, c-format +#, c-format msgid "Anti erase %s" msgstr "Anti-gum %s" @@ -9120,19 +8986,18 @@ msgid "Flip the layer or selection" msgstr "Spiegel de huidige laag of selectie" +# spiegelen/omkeren #: app/tools/gimpfliptool.c:84 -#, fuzzy msgid "_Flip" -msgstr "Omkeren" +msgstr "_Spiegelen" #: app/tools/gimpfreeselecttool.c:97 msgid "Select hand-drawn regions" msgstr "Selecteer gebieden met de hand" #: app/tools/gimpfreeselecttool.c:98 -#, fuzzy msgid "_Free Select" -msgstr "Vrije selectie" +msgstr "_Vrije selectie" #: app/tools/gimpfuzzyselecttool.c:98 msgid "Select contiguous regions" @@ -9172,27 +9037,27 @@ #: app/tools/gimphuesaturationtool.c:264 msgid "_R" -msgstr "R" +msgstr "_R" #: app/tools/gimphuesaturationtool.c:265 msgid "_Y" -msgstr "Y" +msgstr "_Y" #: app/tools/gimphuesaturationtool.c:266 msgid "_G" -msgstr "G" +msgstr "_G" #: app/tools/gimphuesaturationtool.c:267 msgid "_C" -msgstr "C" +msgstr "_C" #: app/tools/gimphuesaturationtool.c:268 msgid "_B" -msgstr "B" +msgstr "_B" #: app/tools/gimphuesaturationtool.c:269 msgid "_M" -msgstr "M" +msgstr "_M" #: app/tools/gimphuesaturationtool.c:272 msgid "Select Primary Color to Modify" @@ -9207,13 +9072,13 @@ msgstr "Geselecteerde kleur aanpassen" #: app/tools/gimphuesaturationtool.c:405 -#, fuzzy msgid "R_eset color" -msgstr "Kleur herstellen" +msgstr "Kleur _herstellen" +# miniatuur/vooruitblik #: app/tools/gimpimagemaptool.c:259 app/widgets/gimpthumbbox.c:354 msgid "_Preview" -msgstr "Vooruitblik" +msgstr "_Vooruitblik" #: app/tools/gimpimagemaptool.c:292 #, fuzzy @@ -9267,9 +9132,8 @@ msgstr "In inkt tekenen" #: app/tools/gimpinktool.c:64 -#, fuzzy msgid "In_k" -msgstr "Inkt" +msgstr "In_kt" #: app/tools/gimpiscissorstool.c:277 msgid "Scissors" @@ -9280,18 +9144,16 @@ msgstr "Semi-automatisch selecteren" #: app/tools/gimpiscissorstool.c:279 -#, fuzzy msgid "Intelligent _Scissors" -msgstr "/Gereedschap/Selectiegereedschap/Intelligente scharen" +msgstr "Intelligente _scharen" #: app/tools/gimplevelstool.c:161 msgid "Adjust color levels" msgstr "Kleurniveaus aanpassen" #: app/tools/gimplevelstool.c:162 -#, fuzzy msgid "_Levels..." -msgstr "Niveaus" +msgstr "_Niveaus..." #: app/tools/gimplevelstool.c:220 msgid "Adjust Color Levels" @@ -9301,10 +9163,10 @@ msgid "Load Levels" msgstr "Niveaus laden" +# lezen/laden #: app/tools/gimplevelstool.c:223 -#, fuzzy msgid "Load levels settings from file" -msgstr "Niveauinstellingen uit bestand lezen" +msgstr "Niveauinstellingen uit bestand laden" #: app/tools/gimplevelstool.c:224 msgid "Save Levels" @@ -9319,17 +9181,14 @@ msgstr "Niveaus voor geïndexeerde lagen kunnen niet worden aangepast." #: app/tools/gimplevelstool.c:355 -#, fuzzy msgid "Pick black point" msgstr "Zwartpunt kiezen" #: app/tools/gimplevelstool.c:359 -#, fuzzy msgid "Pick gray point" msgstr "Grijspunt kiezen" #: app/tools/gimplevelstool.c:363 -#, fuzzy msgid "Pick white point" msgstr "Witpunt kiezen" @@ -9447,12 +9306,12 @@ msgstr "_Penseel" #: app/tools/gimppaintoptions-gui.c:103 app/widgets/gimpbrushselect.c:201 -#: app/widgets/gimplayertreeview.c:330 +#: app/widgets/gimplayertreeview.c:332 msgid "Opacity:" msgstr "Ondoorzichtigheid:" #: app/tools/gimppaintoptions-gui.c:108 app/tools/gimpselectionoptions.c:374 -#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:323 +#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:325 msgid "Mode:" msgstr "Modus:" @@ -10339,141 +10198,139 @@ #: app/widgets/gimpcontrollerkeyboard.c:69 msgid "Key Up (Shift + Control + Alt)" -msgstr "" +msgstr "Toets op (Shift + Control + Alt)" #: app/widgets/gimpcontrollerkeyboard.c:72 msgid "Key Up (Control + Alt)" -msgstr "" +msgstr "Toets op (Control + Alt)" #: app/widgets/gimpcontrollerkeyboard.c:75 msgid "Key Up (Shift + Alt)" -msgstr "" +msgstr "Toets op (Shift + Alt)" #: app/widgets/gimpcontrollerkeyboard.c:78 msgid "Key Up (Shift + Control)" -msgstr "" +msgstr "Toets op (Shift + Control)" #: app/widgets/gimpcontrollerkeyboard.c:81 msgid "Key Up (Alt)" -msgstr "" +msgstr "Toets op (Alt)" #: app/widgets/gimpcontrollerkeyboard.c:84 msgid "Key Up (Control)" -msgstr "" +msgstr "Toets op (Control)" #: app/widgets/gimpcontrollerkeyboard.c:87 msgid "Key Up (Shift)" -msgstr "" +msgstr "Toets op (Shift)" #: app/widgets/gimpcontrollerkeyboard.c:90 msgid "Key Up" -msgstr "" +msgstr "Toets op" #: app/widgets/gimpcontrollerkeyboard.c:94 msgid "Key Down (Shift + Control + Alt)" -msgstr "" +msgstr "Toets neer (Shift + Control + Alt)" #: app/widgets/gimpcontrollerkeyboard.c:97 msgid "Key Down (Control + Alt)" -msgstr "" +msgstr "Toets neer (Control + Alt)" #: app/widgets/gimpcontrollerkeyboard.c:100 msgid "Key Down (Shift + Alt)" -msgstr "" +msgstr "Toets neer (Shift + Alt)" #: app/widgets/gimpcontrollerkeyboard.c:103 msgid "Key Down (Shift + Control)" -msgstr "" +msgstr "Toets neer (Shift + Control)" #: app/widgets/gimpcontrollerkeyboard.c:106 msgid "Key Down (Alt)" -msgstr "" +msgstr "Toets neer (Alt)" #: app/widgets/gimpcontrollerkeyboard.c:109 msgid "Key Down (Control)" -msgstr "" +msgstr "Toets neer (Control)" #: app/widgets/gimpcontrollerkeyboard.c:112 msgid "Key Down (Shift)" -msgstr "" +msgstr "Toets neer (Shift)" #: app/widgets/gimpcontrollerkeyboard.c:115 -#, fuzzy msgid "Key Down" -msgstr "Neerwaarts samenvoegen" +msgstr "Toets neer" #: app/widgets/gimpcontrollerkeyboard.c:119 msgid "Key Left (Shift + Control + Alt)" -msgstr "" +msgstr "Toets links (Shift + Control + Alt)" #: app/widgets/gimpcontrollerkeyboard.c:122 msgid "Key Left (Control + Alt)" -msgstr "" +msgstr "Toets links (Control + Alt)" #: app/widgets/gimpcontrollerkeyboard.c:125 msgid "Key Left (Shift + Alt)" -msgstr "" +msgstr "Toets links (Shift + Alt)" #: app/widgets/gimpcontrollerkeyboard.c:128 msgid "Key Left (Shift + Control)" -msgstr "" +msgstr "Toets links (Shift + Control)" #: app/widgets/gimpcontrollerkeyboard.c:131 msgid "Key Left (Alt)" -msgstr "" +msgstr "Toets links (Alt)" #: app/widgets/gimpcontrollerkeyboard.c:134 msgid "Key Left (Control)" -msgstr "" +msgstr "Toets links (Control)" #: app/widgets/gimpcontrollerkeyboard.c:137 msgid "Key Left (Shift)" -msgstr "" +msgstr "Toets links (Shift)" #: app/widgets/gimpcontrollerkeyboard.c:140 msgid "Key Left" -msgstr "" +msgstr "Toets links" #: app/widgets/gimpcontrollerkeyboard.c:144 msgid "Key Right (Shift + Control + Alt)" -msgstr "" +msgstr "Toets rechts (Shift + Control + Alt)" #: app/widgets/gimpcontrollerkeyboard.c:147 msgid "Key Right (Control + Alt)" -msgstr "" +msgstr "Toets rechts (Control + Alt)" #: app/widgets/gimpcontrollerkeyboard.c:150 msgid "Key Right (Shift + Alt)" -msgstr "" +msgstr "Toets rechts (Shift + Alt)" #: app/widgets/gimpcontrollerkeyboard.c:153 msgid "Key Right (Shift + Control)" -msgstr "" +msgstr "Toets rechts (Shift + Control)" #: app/widgets/gimpcontrollerkeyboard.c:156 msgid "Key Right (Alt)" -msgstr "" +msgstr "Toets rechts (Alt)" #: app/widgets/gimpcontrollerkeyboard.c:159 msgid "Key Right (Control)" -msgstr "" +msgstr "Toets rechts (Control)" #: app/widgets/gimpcontrollerkeyboard.c:162 msgid "Key Right (Shift)" -msgstr "" +msgstr "Toets rechts (Shift)" #: app/widgets/gimpcontrollerkeyboard.c:165 msgid "Key Right" -msgstr "" +msgstr "Toets rechts" #: app/widgets/gimpcontrollerkeyboard.c:207 msgid "Keyboard" msgstr "Toetsenbord" #: app/widgets/gimpcontrollerkeyboard.c:230 -#, fuzzy msgid "Keyboard Events" -msgstr "Toetsenbord" +msgstr "Toetsaanslagen" # voltooid #: app/widgets/gimpcontrollerkeyboard.c:231 @@ -10643,14 +10500,12 @@ msgstr "Achtergrond: %d, %d, %d" #: app/widgets/gimpdock.c:348 app/widgets/gimpdock.c:359 -#, fuzzy msgid "Close all tabs?" -msgstr "/Tab sluiten" +msgstr "Alle tabs sluiten?" #: app/widgets/gimpdock.c:354 -#, fuzzy msgid "Close all Tabs" -msgstr "/Tab sluiten" +msgstr "Alle tabs sluiten" #: app/widgets/gimpdock.c:361 #, c-format @@ -10674,16 +10529,16 @@ #: app/widgets/gimperrordialog.c:229 msgid "Too many error messages!" -msgstr "" +msgstr "Teveel foutmeldingen!" #: app/widgets/gimperrordialog.c:230 -#, fuzzy msgid "Messages are redirected to stderr." -msgstr "Bericht eenmaal herhaald" +msgstr "Berichten worden naar de stderr gevoerd" +# gedetecteerd/opgemerkt #: app/widgets/gimpfiledialog.c:304 msgid "Automatically Detected" -msgstr "" +msgstr "Automatisch opgemerkt" #: app/widgets/gimpfiledialog.c:310 msgid "By Extension" @@ -10694,9 +10549,9 @@ msgstr "Alle bestanden" #: app/widgets/gimpfiledialog.c:635 -#, fuzzy, c-format +#, c-format msgid "Select File _Type (%s)" -msgstr "Vultype %s" +msgstr "Selecteer bestands_type ( %s)" #: app/widgets/gimpfileprocview.c:234 msgid "File Type" @@ -10736,9 +10591,9 @@ msgstr "KVW (%0.3f, %0.3f, %0.3f)" #: app/widgets/gimpgradienteditor.c:821 -#, fuzzy, c-format +#, c-format msgid "Intensity: %0.3f Opacity: %0.3f" -msgstr "RGB (%0.3f, %0.3f, %0.3f) Ondoorzichtigheid: %0.3f" +msgstr "Intensiteit: %0.3f Ondoorzichtigheid: %0.3f" #: app/widgets/gimpgradienteditor.c:854 app/widgets/gimpgradienteditor.c:889 #, c-format @@ -10747,7 +10602,7 @@ #: app/widgets/gimpgradienteditor.c:862 msgid "Foreground color set to:" -msgstr "Voorgrondkleur ingesteld op: " +msgstr "Voorgrondkleur ingesteld op:" #: app/widgets/gimpgradienteditor.c:894 #, c-format @@ -10893,24 +10748,24 @@ msgstr "Stel item in op exclusief gekoppeld" # What does this mean? -#: app/widgets/gimplayertreeview.c:250 +#: app/widgets/gimplayertreeview.c:252 msgid "Reorder Layer" msgstr "Laag herschikken" -#: app/widgets/gimplayertreeview.c:311 +#: app/widgets/gimplayertreeview.c:313 msgid "Keep transparency" msgstr "Transparantie behouden" -#: app/widgets/gimplayertreeview.c:846 +#: app/widgets/gimplayertreeview.c:848 msgid "Empty Layer" msgstr "Nieuwe laag" -#: app/widgets/gimpmessagebox.c:458 +#: app/widgets/gimpmessagebox.c:460 #, c-format msgid "Message repeated %d times." msgstr "Bericht %d maal herhaald" -#: app/widgets/gimpmessagebox.c:460 +#: app/widgets/gimpmessagebox.c:462 msgid "Message repeated once." msgstr "Bericht eenmaal herhaald" @@ -10942,19 +10797,15 @@ msgid "Invalid UTF-8" msgstr "Ongeldige UTF-8" -#: app/widgets/gimpsizebox.c:290 -msgid "Keep aspect ratio" -msgstr "Vaste verhouding" - -#: app/widgets/gimpsizebox.c:574 -#, fuzzy, c-format +#: app/widgets/gimpsizebox.c:451 +#, c-format msgid "%d x %d dpi" -msgstr "%d × %d pixels" +msgstr "%d x %d dpi" -#: app/widgets/gimpsizebox.c:578 -#, fuzzy, c-format +#: app/widgets/gimpsizebox.c:455 +#, c-format msgid "%d dpi" -msgstr "dpi" +msgstr "%d dpi" #: app/widgets/gimpstrokeeditor.c:198 msgid "Line Width:" @@ -10965,14 +10816,12 @@ msgstr "_Lijnstijl" #: app/widgets/gimpstrokeeditor.c:228 -#, fuzzy msgid "_Cap style:" -msgstr "Hoekstijl:" +msgstr "_Hoekstijl:" #: app/widgets/gimpstrokeeditor.c:234 -#, fuzzy msgid "_Join style:" -msgstr "Verbindingsstijl:" +msgstr "_Verbindingsstijl:" #: app/widgets/gimpstrokeeditor.c:239 #, fuzzy @@ -10990,22 +10839,20 @@ #: app/widgets/gimpstrokeeditor.c:300 msgid "_Antialiasing" -msgstr "Anti-aliasing" +msgstr "_Anti-aliasing" #: app/widgets/gimptemplateeditor.c:255 #, c-format msgid "%p" -msgstr "" +msgstr "%p" #: app/widgets/gimptemplateeditor.c:330 -#, fuzzy msgid "_Advanced Options" -msgstr "Opgeslagen opties" +msgstr "_Geavanceerde opties" #: app/widgets/gimptemplateeditor.c:437 -#, fuzzy msgid "Color_space:" -msgstr "Kleur:" +msgstr "_Kleurtype:" # opvullen #: app/widgets/gimptemplateeditor.c:445 @@ -11013,9 +10860,8 @@ msgstr "_Vullen met:" #: app/widgets/gimptemplateeditor.c:455 -#, fuzzy msgid "Comme_nt:" -msgstr "Aantal:" +msgstr "_Tekstbijlage:" #: app/widgets/gimptemplateeditor.c:565 msgid "_Name:" @@ -11054,7 +10900,6 @@ msgstr "Miniatuur %d van %d" #: app/widgets/gimpthumbbox.c:730 app/widgets/gimpthumbbox.c:740 -#, fuzzy msgid "Creating Preview ..." msgstr "Laden vooruitblik (bezig)" @@ -11067,13 +10912,12 @@ msgstr "Achtergrondkleur veranderen" #: app/widgets/gimptoolbox-image-area.c:90 -#, fuzzy msgid "" "The active image.\n" "Click to open the Image Dialog." msgstr "" -"Het actieve patroon.\n" -"Klik om het dialoogvenster Patronen te openen." +"De actieve afbeelding.\n" +"Klik om het dialoogvenster Afbeelding te openen." #: app/widgets/gimptoolbox-indicator-area.c:143 msgid "" @@ -11184,7 +11028,6 @@ # What does this mean? #: app/widgets/gimpwidgets-constructors.c:53 -#, fuzzy msgid "Color erase" msgstr "Kleur wissen" @@ -11210,13 +11053,11 @@ #: app/widgets/gimpwidgets-constructors.c:62 #: app/widgets/gimpwidgets-constructors.c:95 -#, fuzzy msgid "Hard light" msgstr "Hard licht" #: app/widgets/gimpwidgets-constructors.c:63 #: app/widgets/gimpwidgets-constructors.c:96 -#, fuzzy msgid "Soft light" msgstr "Zacht licht" @@ -11246,13 +11087,11 @@ #: app/widgets/gimpwidgets-constructors.c:70 #: app/widgets/gimpwidgets-constructors.c:103 -#, fuzzy msgid "Darken only" msgstr "Enkel donker maken" #: app/widgets/gimpwidgets-constructors.c:71 #: app/widgets/gimpwidgets-constructors.c:104 -#, fuzzy msgid "Lighten only" msgstr "Enkel lichter maken" @@ -11424,6 +11263,9 @@ #~ msgid "Y:" #~ msgstr "Y:" +#~ msgid "Keep aspect ratio" +#~ msgstr "Vaste verhouding" + #~ msgid "Transformations do not work on layers that contain layer masks." #~ msgstr "Transformaties werken niet op lagen die laagmaskers bevatten." diff -uraN gimp-2.2.0/po/no.gmo gimp-2.2.1/po/no.gmo --- gimp-2.2.0/po/no.gmo 2004-12-19 03:11:55.000000000 +0100 +++ gimp-2.2.1/po/no.gmo 2004-12-28 16:58:43.000000000 +0100 @@ -1,266 +1,285 @@ -Q Jm ,&kG9G ATNi<Ok@29;lPO2I9|-9;7Z  - - -  - -/:BJf0 -%,4< K Y e -s -~   K4.1!=OVel -   -0 CM\ -ep*6Uh >Sg#{ - 4H P Z gq13)0 - ' -4?PbrAJ<# ` n| )2I[ lz -&$$IP V `nu"  - &7K7_    m   C7J=@6d83<#V!z   6Nfx,%?G Zh ! -4= F Tau|  .5 5A7w8),?[s2 OAk%&41/#a   -  %3 IVo0  #@+Iu   - $7JYn "?U dr !*; CPk "" &/ -AL -k)v,!###G!k%. %9L_#u-%/J_w | - - - #3FUd ky --   1DXi|   -%!C er&  (7 GT cp  +: -S -^-i    - 4<Oc v  :?+8k   - - ' 5 A -N Y e -o z  > -=Obr  +>Wk  - -%0 HV ly  -* 6?!Qs.#"%B&a ,# .<O'i' %F?T  ? V` -w   "+ 4@V(_$=6<(?eA79cY9B=:fx>CJbg !1 CQfk}      1EXk} ;Vm  -   -  - (; -LWs {   (2 [ a h  p }    - O   -  - - - - +U Js l89&OkvG9*GdANi=<k@P2;POQ29-9<;v7  +  + + &2B +Q\_o +0&7JS[ +r} + +  + " ' 3K@.1A!s + +/ :F \ +hs  +&5*K6v:Ocw# +-8IQcl 13 Thn +9Oip  +AJh<{ %-2 LXn  +(?&U$|  " 8DIOT +do~7  ( 5A IV[ `mm  ,:J QC^7=@6Yd3)]<q#! +7 M Waj &C,Z  !;Vl   (.>5m578)J,t2 %FaO}A%&54\1#   '?PV_n~ +  0 E Q^ e o |+ % 5C LV +^ is$ -Gex"    % :"H"k +  +)/,Iv!##!%B.a #-(V%l  +3 +> +ITls   +&--[ bo  .E Vb r ~ %! &,S gu    . =IXp + +- &2 9GO Wd +l w - 6@ PZa:?8 3?HZ ku + + + +  +? N>\ "4Td t  *=Rm + +   *:U d r +~*!.Hd#m"& -9M,V# ' '=eFTjq w   +  <]l{  ($<=B6<?A47v9c9LB=f>nCJg<     &2 D Q _m #3Gc~$ 8F +Y dr w +   +  +  &  6 D \ x   (      + +  - -    ! .- \ o   -           ' ; R ua    c| zhnrv"4CL\q&'      )/6; MZi{ ( ? -IT ]gnv {  -H -c nx -H!BIM1\  -  `hC1F0x   - -)H[ s( - -H -   -!, 3?N ]j      (A /3 E S `Kn36%4"J mw $   @(a+)*! -/?ov*''7@ -R]m - !B]nw     0 J ^ !v       !!6!O!-^!""""" """" ##3#L#]#u## # -# # ### $+$D$X$i$ ~$$$ $$$$$@$7%->%l% ~%% % % %%% %% % %&&;&Z&n& & & && &&& &' -'''<' R'`' x'' -''''''''''(&( <(J(_(v( -~(#(((((() )+=)i)q) x) ) -) ) )))))* (*5* D*R*e**"**** *+ +++$.+S+e+y++ ++ + +++ + ++ -, , -',2, B,L,[, k, u,,,,,,,- -'-0- C-O-b-|-- -- ----- - --. . %. /.;.X.g.y. . -. .. . .. . / /,/L/!_////)/ /0 0 &02070F0M0 ^0 j0x0B0A01.1C1 U1_1f1u1 111111N2]2o2w22 -22 222 2223"93!\3!~3333 3 3 344&4 .4<4VD4+4 4(44"5#5 95 E5Q5k5%5 -5 55555 -56 6!6 *686 L6 V6d6j6}6 6 6 66&6,6 &73787 -H7 -S7^7{7777747*8<8 -B8M8U8 -e8 p8}88 8888 88 8!89 -9;9 Q9]9n99 999 999;9?:^:m:u:::::4u;;;-; <<< - = =#!=E=-X= === ===== -= >>>>> >>>? ?? -7? -B?M?c? -s? ~? ???? ? ?!?? ? @!@ 0@ =@J@e@l@ t@@@ @@ -@@@ @ -A A+A ->AIAwAAA A!AA!A#B2B HB -UB9`BUB=B<.C=kCC"C?CD$D 5DADEDJD(OD,xDDDDD -DD -EEJ3E ~EEEE E EEF F (F6FNFhFxF;FFF F GG*G W n  +     .     +  +  9  E R W  f s       u f x Ec  oz|rx&'8 ` l v     +(9=Wt  +  + #>Ue +juH +  +H*!sB105 :GN^ +ny ~ `C108 > KX +j +u ( +9 +DHO +  +  $ 3 @NS [ ht|  Q]r   K3I6}" 2 A$Kp   (+)E*o!/*%Pa'~ +"4CL[t   /  F g       ! !1!C! J!W!n!!!!!-! ##"#5#9# S#]#c#s# ##3####$ $ +'$ 2$ >$K$i$$$$$$ $ % % '%3%H%\%k%@s%%-%% %& & & '&4&R& Y&e& j& v&&&&&& & ' '!' 8'F'^' w'' +''' '' '( +("(7(@(H([(`(h(q(y((( (((( +(#)*)C)\)r)x)))+))) ) * +* * '*5*J*^*w** ** ****"+7+@+V+ v+++++$++++, , , (, 6,B,U, Z, g,t, +, , +,, ,,, , ,,-$-;-Q-o----- ----- +. ..-.A.T. g. q.{.. . . ..... / +/ /*/ E/ R/^/ x/ / /,//!//0)0)F0 p0}0 0 00000 0 00B1AK1111 1111 22!262>2F222222 +3 3 !3/3F3 X3e3w33"3!3!3454N4 f4 p4 z4444 44V4+5 D5(N5w5"}55 5 555%6 +&6 16;6C6R6f6 +v66 66 66 6 6666 7 7 '757&O7,v7 777 +7 +777858M8`84r888 +888 +8 88 9 9 9(9/9 L9X9 m9!y99 99 999: : :1: C:P:W:;_:?::::;;3;P;4;'<0<-8< f=p=y= += =#==-= >>$> 9>C>K>b>k> +t> >>1?E?Y? b?o?x???? +? +??? +? ? @@@1@ B@ L@!V@x@ |@@@ @ @@@@ @@A *A6A +IATAfA yAA AA +AAAABB B!)BKB!iB#BB B +B9BUC=mC<C=C&D",D?ODDD DDDD(D,D"E2EDEUE +fEqEEEJE EFF0F JF WFdFF F FFFFF;GKGeG tG GGG G GG G G G +HH 0H:HUHrHHHHHHHHI I5I+LIxIIII I I II I JJ#.J RJ^J pJ|JJJ6JJKK#K 8K7EK}KKKKKKK L LL.L BLOL mLyLLL +L +LL LLL LL +L MM #M/M +FMQMqM MMMMM M +NN3NCNWN4lNNNNNOO)O.COErOO O OO O +PP3P 9P GP SP +_PjP {P +PPP PPPPPNQ +QQQQR R#R5RQRgR#RRR RRRS'S#ASeSS SSSSS$T+TJT _TiTyTTT!TTTU +U!U6U FUSUrUUUUU UU V V7VVVmV VVV VVVVWW.WEW +WWbWrW"WWW WWXX6XOX=_X6XSXJ(YsYYY YYYYY ZZ9Z KZWZfZ{ZZ ZZZZ ZZ[0[K[e[[[ [[[[[\\&\)\N]T]Kh^=^^*v__F`3`Ta?ra`a2bFbbxd4{e/ee fffffffff gg!g4gGgdg yg gg;gg ggh h"h 7hEhUh#ih hh h h&hh +ii"i2iLi"^iiiiiiiij$j4jCj Tjajzj jjjjj+jjj k k!k (k5k Ek +Sk^kdkkksk |k k8kvkElLldl|l l ll l!lllm5mNmkmmmmmmmm m m m +nn!n *n7nGn Vnbn sn nnn!nnn(o/o#8o \o jowo~o +o o ooooo +o o +p pp)pK2p1~p7p1p5qHPqAqq;fr!rr ss tu}Dv*vBw0xy6yy;z AzOz)Vz5zz1f{0{0{1{(,|CU||S},n}2} }A~A1*sJ 8Ec GO2p -lj +%6<APY_q  ̊ ڊ  +!<, iw Ό݌ +?Nhx  +Íȍэ3;;X6F=    ΐ%E3^#Α !0?E LXu~FΒ + +   % 2 ? M![!}  +K0/Q`K$5PIG-Oj`o˘e;j~ powl<?!>att`u0,29K` q6o(*149#nG[%XɡU"OxȢߢ +  # ,6?#Qu }̣ߣ   )7 NX`f is   #0 8BS V b lz + ĥ / >J +R]o   Φ ܦ 0@R c o{  ȧ +է 2L]v  ʨ Ԩި  & ,:JQW^ q~   + +ͩ֩ ީ  #+ > JWq yŪ +  *2:P _ lx {ǫϫ  %39IOV +^ iv   +   Ȭ Ҭ ߬    +&1 :FO ^ kw   ­ Эݭ   069>F U b n{ Ю(08AWo41Я/2HXx # ܰ#3"Cf +ny± ӱ߱% +> +I +T_ esy +Ҳز ++: BO^bhkz~ +5ճ   #!8 Z { + ǴӴڴ޴   &4.GvT#t#]2X)OIҸL8iqA9V=UκO$1t:386N9Ƽ +ͼؼ ߼   +%0 3@ +T _ir1Ľ  +$+BKSY _ m {  + +  ľ پ  Xzk).)?i|  )B^$y  "&?]{+20MUo$AY s}  +   +*,.W0 + '0A P ]BkH2 <V p~  + &+4F[p'!%GK +Q \ho&$ "6?T cp2    +  + +# +(e3   + +Q66CC5Ga}""2%X?n-#;Q c mw  ( Ij% +!  ++6Sp  + (8==v@??52u.!&" 8C(|"s@V));:''b  ( 9FN Tay)  +  +#,C[$`      +  + "%!G^"r 3#Ko xZ c mw%''9a! *21d!$&''?*^ &*J+\3.b q~, +  # +3>RZi z, "-28HW kx (0 6#@ d< +  )5E T a o y     + &6IX v,   + + -AZap  "E KQ)  + +  +&+ +C N \ +f q { +  D&Ip     *9HPn$-R jv -C U +cn w $ 'G4_!.$!32f +))    !0+R~)!$ !.OPT $&<c ~ +-'3Oj   +/*$OBU0C; =I/1d4NK5^5d<Ab |      -PP$P 3P@P]PePyPNQ -eQpQyQQQ QQQQQ#R(RFR ZRfRxRRR#RRS S'S:SWSnS$SSS SSST*T!BTdTTT -TTT TTTU'U;USU iUuUUUUUU VV*V =VJV_VqVVVVV -VVV"W2WLW fWrWWWWW=W6 XSWXJXXY"Y 5Y?YPYfYuYYYY YYYYZ %Z1ZJZ\Z pZ}ZZZZZ[[ /[;[P[e[u[[[[)^\N\\K]=7^u^*^$__3l`T`?``5a2aaKbc4d/3ece f*f2f8f?fPfaftf|fffffff f gg;gZg jgwgg gg ggg#g hh 2h @h&Mhth -hhhhh"hii,it#t` nx0~Ξ 6o;4#Gޠ%&XLUOKbkt| -   ¢#Ԣ ,3<Obk}    ѣۣ  $ Cd jw~  Ť֤ ٤   -* 2?Gg p~ ͥ -ե  /= Q _m }æզ    0 : -GRXgϧ   < FP Xb ht èɨШ    - -&?H PZ `msy  ɩ (7 -Wbu  ª Ѫ ު 09ATj  ȫ -Ы ۫   -  - : D Q^ oy  -  Ь ݬ  ' 4 BO X ft  ǭ ԭ  "(1BUg(yɮ4 1B/tʯ #* No"ذ -4 EQX`p - - -Ʊѱ ױ -(3DJ -S^dmr вԲڲݲ - 5G Ycsx ! ̳  -. 9ELPX]ci p z .TZ#qt] -2hXOIDL8۸qA9ȹ=U@O1:3S86918 -?J Q ^ kw -  -Ƽ Ѽۼ.16h{ -Ž˽ ѽ ߽   - -  *6 K Wc htXzݾ)X.)ۿ &4NWj}$ &3 ESc"u+2At&:Zn   -(3Rc k u -*.0)ARn - +DZs{  BH i2{  " -0;@ T^&v -F['o! - & 2$: _kpv" 2( / < IS[ -c n| - -e    -* -5@`rQ6C1Cu5a"Q"t2?- #Nr )CWq  %*0 -FQ!q -  %6FMS -Xcw 8=@?]?2.!?&a"8( "'sJ@)));S:'  ,:Nago  )0 @M -T -_js$      - $ -. 9"E%h".Igz# x(  % /G'X'! *J2i!$&'''Ow*  !&0*W+&@I3f , - , ;G[ -kv , "'JSejp  />M`h n#x <B U am}         - &D^n ,    -'2 -:ETey  " ECK)  - ) -; F -S^c -{   -   -  .D<&   +A Tbq):N$e  -<Se{  -  $ ' 3GO4!.$#!H3j -))  5 ? LX!h+)!"$A!fOT-2 ;H\&t  --''Ok   - #/,*\B0C;E=/1d!4K5^=5<AbQ      # 4 -BM iu(BQj!# +CYq     -  -(D LVf v( &->W_hMwz    %,C -Ze n |   ,{;lw v|g ",B Q[o1/! -! ,8G_sx  -& 26Pi    '@Xi -nyU -  ( -2[='B  - + D X  _ k z       i : -C -5, +b         -  - ) D [  p #}   - M   -   (  / 9 Q a p           $.>X%!>`fy -H30Pj-|  / De(,'*.H6Y ("-BZks ##);DSm! %=%X~ $Dcw!&#JSew{ @!0HYm v )9Rbtx L";*f{  "  -Mm    -  *4J -`k  -  4Um &) " 9FKe%    7 Q k       $ ! 2!>![! z!!!!!$!!! "" "(" 0">"G"Y" _" l"x""" "" -" """ ## /#<#N#`#w### ## ##/#$$ -$*$3$F$\$u$ -$$$$$ $$"$ % %%% >%K%Z%!c% % % % -% % %9%&)/&Y&r&&2& &&''!'''7'>'O' _'m'J'K'$(=( S( _( i( u(( (((((( ])j)|))) ))))) * *(*9*J*_*p*******++"+ -++ 6+a@+/+ +D+!,&%,L,i, x,,,-, , ,,-- ,-9-B- -T-_- -h-s- ------ - -----.&>. e.q.v.. ....////5?/u///// / / // //// -00 -40(?0 h0 v0/0 0000 011 )171?19H1:11111%2%<2b20"3S3b35q3 444 4 4"45-5 K5Y5l5|5 55555556666 666(67 <7 F7R7n7 -~7 7 7777 77!78 -8 8?8P8a8t888 888 88 -899 /9;9 R9\9 -q9|99*9999%9#:&A:$h:":: -:>:S ;<];<;F;<9#<L]<<<<<< =(=39=m=~=== -==&=%>F->t> >>>> >>> -?#?5?Q?g?v?1????@%@=@U@ l@z@@@ @@@@@@A A.A =AGAVApA(AAA$A,B;B/YBBBBBBC!CP[P -qP|P!P PPPPPQQ0QCQLQ]Q&zQQQ -QQQ R'R>R8TR*R@R8R2SOS^SoSvSS SS SSST TT-T=T -NTYTsTTT&TT!T!U!9U[UyUUUUU UUV/V3VB WPWH`X-XvXNYfYZZAZJ[qi[=[\\w^:_8__ -```````a a a.a6aVavaaa aa<a b b+bG V`fuy̟ߟ   $ -<GOUXhyР ߠ!- 6CV -Yd -mx -(ġ !;Yi -p{    ͢ڢ  -   3O ^ -lw  ȣأ+=SnĤ)Ӥ - ( --8O^ d r    -å -Υ ٥   ) 0= ERX_f nx  -ʦ٦ߦ 3? U -b my   -çƧϧէݧ 2+Q }  -Ũ Ш ڨ    -( 1= -L W c o{   -©ͩ ܩ - & 0<L [ i  Ϫت۪  -  7Rc -kv(ī %#@3dE6ެ3Ee mw~6'&5>P8`ʮЮ  $:L^ pz     ɯ    -',4:V r ðǰ -Ͱذ߰=(= FSY ` jx#""Ա! - -$ /9=EJPW -_ -ju{ 10βuj <}swq~b]+  56DSMH & LP: =c#>i~\C7X>  BDPL39']Mu,$li =8|c*j\VkO*x+.k#!! h80 cdi}eWQbrG"Z6 ti"&Z5E_$:R4uq$f\9+#dCt 61x )(70Me |`gW@%} 00, )z -/KDJzBJ[,NjcjFf F oD wU:vAI! E2sSs7J ?<l<sZA4p1 LM-Xrge5puD |py9 df%.? CBLg"Epv} eu  yP N d{  )f; "W+.' (D6. na!QV_W`*d #VU,?  /![ bm1 V.IK <viT>2 v1? < ^i$Ap~!Uan}  3ZIH:JQ]4c '4@F_,/  P;) gh: +X_m}L *( + ( :R:D8eo'B/(7 |g -6 om4@bCTU@  nz i9 A69FPM7@zz3w sVg</R).Y y(*(Oc>)@* NB TF4XH0sGBGg$ s`zz42J$3fEN C?Iqu7="* 3L(0Gw=Y /j!,q8}P f'r=/%Q+U -{7?JOf<xEo,% -Ms2 Tu=a{bthw-LDkSBc`#fj20]z2R?;q& _0n2Fd_{J|8.-H$KMw\x6'@6Zb=5jIKq4t>S 8O TR`5:.XK9$R35Hm- #70 m?4 yPb;wHl[Qjnu\""\Sk8^#|heE`>hvTt -aNQa~JP AmDY\1H ( r ,8G& hHyVK^T-k] -P ^N *y[gBkY`_lU4X7B<= =SySk -9C3mCa B Q'av.<=Kv@i&Z +% d1 C5 nE~@~N;Z-Ns%M{2W;~# UM *wxA 1$FQ3 pIKn1!CJ -I )%/h32cFo&T>pK]{8 >r P(q%[{)!S+Y xIE  ;YK^_httzQ7]_ u>Uk ?D+qO)xHbA,aWrOAXjGo#h -\;y8rZ'![UWgA^5OH Ww  p[&, -l~GM`Nt`G W" V6 C 5lmq|}I}vNLV b;c"r#OE&]-LR RL |roX|e;IdYQ n&[/V: /Yn93llF{JZdoG'>^x'F5peS~9a  -O - {[)216.: X@^&9kARlyY"0^ft TE% io]v e* -\O1m?x$<G% + 1=Ro +2!K#m  !9Ig w    + +  . >K`x('0M?BQj    %  +"- 6 D P]b q~ {hl? >DgM  + #7T1e/! + ';@IPXa { +& 1JYb     1 +6ATnUv +   +[ 'a B   +  + + ' +3 +B +I +[ + k +w + | + +i + C 5 +* V \ m |     +  )  #  8 #E i  +r M}   +    )8Oeu    !(.A +P[Hj302-D r~ -(M,v'*6!Xa q("- +"3; S#_#)!@b~ %&F [gy$ (7Qe!|& #@IN] x@  ,6Ec +  (IfuL};#4: L Y"e  ( C O [i +}  +)2 FP +epx  .K T&`)  %' M U ] m        !/!@!V!l!!!$! !!" ""."6"<"C"$U"z"" "" "" """# # # #6#M# f#p# +# ### ## ###$$6$J$ R$^$ n$z$/$$$ +$$$$%% +6%A%J%R%k% r%|%"% %%% %%&! & -& 9& C& +d& o& }&9&&)&''6'2T' ''''''''' ((J)(Kt($(( ( ) ) )+) ?)K)\)r){)) **$*6*I* O*[*o*~** *****++++B+`+}++++++ ++ +a+/J, z,D,,&,,- -,-B--`- - ---- --- +-. +.. +/.:.I.Q.c. z. +...-.&. ///2/ A/O/m/////5/0-030<0E0 T0 `0 m0{0 0000 +00 +0(0 1 1/,1 \1i1z11 111 11191:*2e2w222%2%2 +3033 +454 O5Y5b5 r5 ~5"55-5 566$6 +686U6g6z666A7S7f7o7 777(77 7 778 +&8 18 =8K8O8i8 z88!888 888 9959<9 D9P9g9 99 +999 99 9: +:$:::*V::::%:#:&:$;"5;X; +g;>r;S;<<<B<F<<9<L=R=r==== =(=3=>&>;>M> +_>j>&>%>F>? +?7?T?k? ??? +????@@15@g@@@@%@@@ A"A4ADA UAbAjAAAAA AA AAAB(8BaBwB$B,BB/C1CBC]CxCCCCCD5 D VDbD tD DDD7D"DE&E.E EE@SE!EE EEEF F ,F +6FAFPF cFpF +FFFF F FF FFFG$G*G2G8G UGbG yG+GG GGGH-H FHTHfH~HHH/H H II>I^I tII-I=IJJ)J!8J ZJhJwJJ J J +J JJ JJJK&K9K QK[KqKK*L vLLLLLLLLLL!M%MAM RM_MrMMM%MM N N*N P\m @͊:DI=J] ȍ؍  %*!Pr, َ 3K ]kqxY% < HUYkz  ,,  -$8R/;'-D3rG<I+huzޕTYbib{bޗfA:98cVgc"YmN)S}ƛ֛+؛kprv2{#ҜH!ޝgYhUž/HQZc k w  ) !'Fet   ̠ +!=Xx !ơա ޡ +  + 6= +CNUd(l ɢ +#; L Z h u  +  ȣۣ  + / <JReɤ)<Zo) +ȥӥ + +  -:@ HR cq t +~ +  Ȧۦ   ! )3 GUh +zΧ   + (4=E ] i +s~ĨʨӨ+  8 FSZkry +     ˩ +ة  +  %18?N a n +x ժ ܪ    @N fr  + «ԫ +!,>Tg(z ɬ۬#3EN6˭ #-4M6e'&Į8OU]o ɯ Яگ &06= D P ^ k u  Ȱ +Ұݰ  (5 >JZ^ehx| +=ݱ   -#B"f"! +β +ٲ   + +*0 8B1Q0#p g~uja0!LgeN _S _cR& .2 oSfpqOV@`l^i9 q&de.wIM9L 4 g>%w|]f 1, *6t]R & U&=tyBRXxM;qX< v% :663 WkQc>h"*7U?\!+O6WPN: U E~r*aP W5|~;IwPw' O;`}3ibu.-] +`%,5/;YS&U#/w o'Q S2OC }F<$ KA~o 8xQsAJ;NEMiyx I,R[t#uD!% rEaO-:  h^ +]DB]FT Pb^AK{sFL +1"Q5ry4 74Fzw" (N ?qFM+# |` e {Q)_Ys5b*;#$$tY*!qh<4L@!@ZRg/y5m!{:$pXVC\-YQMvLfoowP >"hd0XE .{A^mL$ +z$a=lhNz\VNr e8>k3<-BC0 " N @^d +' +J]:w?dd f T'D ZM A=F [C|o 0- B  s-SxwT`YCh<j= + B +9n 3E1MKYr >JD) @vG{! (l<W[$jqE[ z!}DJ^~%\D*Cv# [dF`> l9_?<7 eyF&JL} H|_qnH 80.A 7A Jv\GB~-&s'J.5|7tI /Ny.Xu|'/ ? cMuv6}.21pczyBHhnR {H"e1uQ J . 1G#:S'PxL-vet]G_3p gj+cU%4m+0YNkiQ,U6~zIK "D ( Slvp1/gX&52%&=) , irGz;M m?6 lk^)*<+q"kCCZ UTOO+xV9BFNxZnz 27uZP438@u 39@ 3j9,(9UO5A-W=[9)| nPTHE Dr;S72s1 e=$ }Zgxkdb_4198~; n: /t^!KKuWO2\0Ib8o~A  * ! m`>*>ho:5 3nPTByidH[,I8(H(KGC2 Vr\4?E'} yR7 Sj:{al7>6(bY#7 ;O aW`mU ?  R [W P^6/f=0]ri+ lK)ftihDk{*bV s] R\JaV-m/Y{KnV"? +)jqkS+vbEHB& c_2x<m= 4 4cVeA%5}$ aGI MEHTi@g=\,ts#UXZl6',"f/ K:kI  +   fZj(WJ%F_ (8pL?) bp< c'8 +0# G8 DmC )1+aI`nR.%G 3 [T TXG@2QT}Lz Xf)pc|s>Hgjd@$,o0Q(Z Invalid option "%s" Usage: %s [option ... ] [file ... ] @@ -292,8 +311,8 @@ (Unnamed Buffer)(Unnamed Template)(Varies)(clean)(invalid UTF-8 string)(modified)(none)1 Layer1 layer15 degrees %s16:1 (1600%)1:1 (100%)1:16 (6.25%)1:2 (50%)1:4 (25%)1:8 (12.5%)2:1 (200%)2D Transform...4:1 (400%)8:1 (800%)<%s><>For optimal GIMP performance, some settings may have to be adjusted.The GIMP - GNU Image Manipulation Program Copyright (C) 1995-2004 Spencer Kimball, Peter Mattis and the GIMP Development Team.The GIMP tips file could not be parsed!Your GIMP tips file appears to be missing!A file named '%s' already exists.A_dd to SelectionA_ngleAbout The GIMPActionActivate the _focused imageActive FiltersAdaptive supersamplingAddAdd Alpha C_hannelAdd Alpha ChannelAdd AnchorAdd ChannelAdd Color to ColormapAdd Guide: Add GuidesAdd Horizontal GuideAdd La_yer Mask...Add LayerAdd Layer MaskAdd PathAdd StrokeAdd Text LayerAdd Vertical GuideAdd a Mask to the LayerAdd color from BGAdd color from FGAdd layer maskAdd text to the imageAdd the current color to the color historyAdd the selected filter to the list of active filters.Add to palette %sAdd to the current selectionAdding theme '%s' (%s) -AdditionAdditional Input ControllersAdjust Brightness and ContrastAdjust Color BalanceAdjust Color CurvesAdjust Color LevelsAdjust brightness and contrastAdjust color balanceAdjust color curvesAdjust color levelsAdjust hue / lightness / saturationAdjust hue and saturationAdjust levels automaticallyAdjustmentAdvanced optionsAffect:Affected Area %sAirbrushAirbrush with variable pressureAl_pha to SelectionAlignedAlignmentAll ChannelsAll FilesAll Files (*.*)All image and undo data which doesn't fit into the Tile Cache will be written to a swap file. This file should be located on a local filesystem with enough free space (several hundred MB). On a UNIX system, you may want to use the system-wide temp-dir ("/tmp" or "/var/tmp").Allow completely transparent regions to be filledAllow completely transparent regions to be selectedAllow enlarging %sAlphaAlpha to SelectionAlpha:An image of the choosen size will use more memory than what is configured as "Maximum Image Size" in the Preferences dialog (currently %s).An_imationAnchor Floating SelectionAnchor floating layerAnchor floating selectionAngle:Anti erase %sAntialiasingAppearanceApply Layer MaskApply Layer _MaskApply ThresholdApply layer maskAre you sure you want to delete '%s' from the list and from disk?Are you sure you want to delete template '%s' from the list and from disk?As in _PreferencesAsk for confirmation before closing an image without saving.Aspect Ratio:Aspect ratio:Attach ParasiteAttach Parasite to ImageAttach Parasite to ItemAttach parasiteAuthor:AutoAuto _Follow Active ImageAuto shrinkAuto shrink selectionAuto-resize windowAutoloadAutomatically DetectedAvailable FiltersAvailable Types:BG color fillB_rightness-Contrast...B_uffersBackgroundBackground colorBackground color set to:Background: %d, %d, %dBackward (corrective)Base filled area on all visible layersBase selection on all visible layersBehindBevelBi-linearBlack & whiteBlack:Ble_nd Endpoints' ColorsBlen_dBlendBlend Endpoints' Opacit_yBlend: Blend: Invalid for indexed images.Blending...BlueBlue:BlurBlur or SharpenBo_rder...Border ChannelBorder SelectionBorder selection byBrightness-ContrastBrightness-Contrast does not operate on indexed layers.BrushBrush EditorBrush FoldersBrush UIBrush:BrushesBrushes MenuBucket FillBuffersBuffers MenuBurnButtBy ExtensionBy reverting the image to the state saved on disk, you will lose all changes, including all undo information.CMYKC_alibrate...C_olor PickerC_olumns:C_ombineCalibrate Monitor ResolutionCan't undo %sCan_vas Size...CancelCancel GuideCannot add layer mask of different dimensions than specified layer.Cannot add layer mask to a layer with no alpha channel.Cannot add layer mask to layer which is not part of an image.Cannot anchor this layer because it is not a floating selection.Cannot convert to a palette with more than 256 colors.Cannot create a new layer from the floating selection because it belongs to a layer mask or channel.Cannot create folder '%s': %sCannot create previewCannot crop because the current selection is empty.Cannot expand ${%s}Cannot float selection because the selected region is empty.Cannot raise a layer without alpha.Cannot save. Nothing is selected.Cannot stroke empty channel.Cannot stroke empty path.Canvas SizeCanvas _padding mode:Center X:CenteredChange Background ColorChange Colormap entryChange Foreground ColorChange Image ResolutionChange Image UnitChange Print SizeChange current layer or pathChange grid background colorChange grid foreground colorChange indexed paletteChange perspective of the layer or selectionChanging shortcut failed.ChannelChannel AttributesChannel Name:Channel cannot be lowered more.Channel cannot be raised higher.Channel colorChannel is already on the bottom.Channel is already on top.Channel to Sele_ctionChannel to SelectionChannel to selectionChannel:ChannelsChannels MenuCheck _size:Choose Stroke StyleCircleCl_earClearClear ChannelClear Undo HistoryClear all textClear errorsClear undo history...Click "Continue" to accept the settings above.Click "Continue" to create your personal GIMP folder.Click "Continue" to enter the GIMP user installation.Click "Continue" to proceed with the user installation.Click to connect this anchor with the selected endpoint.Click to create a new anchor. (try SHIFT)Click to create a new component of the path.Click to create a new path.Click to create previewClick to delete this anchor.Click to insert an anchor on the path. (try SHIFT)Click to make this node angular.Click to open up the path.Click to pick path to edit.Click to update preview -%s Click to force update even if preview is up-to-dateClick-Drag to change the shape of the curve. (SHIFT: symmetrical)Click-Drag to move the anchor around.Click-Drag to move the anchors around.Click-Drag to move the component around. (try SHIFT)Click-Drag to move the handle around. (try SHIFT)Click-Drag to move the path around.Click: selectClick: select Drag: moveClip resultClipboardClipped to bottom layerClipped to imageCloneClose %sClose this TabCo_py PathColo_rsColorColor BalanceColor Display FiltersColor PickerColor Picker InformationColor _Balance...Color _dithering:Color balance operates only on RGB color layers.Color eraseColor index:Color:Color_mapColor_space:Colori_ze...Coloring _Type for SegmentColoring _Type for SelectionColorizeColorize operates only on RGB color layers.Colorize the ImageColorize the imageColormapColormap EditorColormap MenuColumns:Comme_nt:CommentCon_trast:Con_volveConfigure Color Display FiltersConfigure E_xtended Input Devices...Configure G_rid...Configure GridConfigure Image GridConfigure Keyboard ShortcutsConfigure _Keyboard Shortcuts...Configure selected filterConfigure selected filter: %sConfirm Image SizeConfirm ScalingConfirm Text EditingConfirm closing of unsa_ved imagesConflicting ShortcutsConical (asym)Conical (sym)Connect StrokesConstantConstraintsContextContext-dependent cursors are cool. They are enabled by default. However, they require overhead that you may want to do without.ContinueContributions byConvertConvert EdgeConvert Image to GrayscaleConvert Image to IndexedConvert Image to Indexed ColorsConvert Image to RGBConvert imageConverting to indexed (stage 2)...Converting to indexed (stage 3)...Converting to indexed...ConvolveConvolve Type %sCopy NamedCopying file '%s' from '%s'...Copyright:Corrupt segment %d in gradient file '%s'.Could not create '%s': %sCould not create temporary file for '%s': %sCould not delete '%s': %sCould not find GIMP help browser.Could not open '%s' for reading: %sCould not open '%s' for writing: %sCould not open thumbnail '%s': %sCould not read %d bytes from '%s': %sCould not seek in XCF file: %sCould not start the GIMP help browser plug-in.Count:Cr_op LayerCreate New Doc_kCreate New TemplateCreate a New ImageCreate a New LayerCreate a New TemplateCreate a new display for this imageCreate a new image from the selected templateCreate a new templateCreate and edit images or photographsCreate and edit pathsCreate path from textCreate selection from pathCreating Preview ...Creating folder '%s'...CropCrop & ResizeCrop & Resize InformationCrop ImageCrop LayerCrop imageCrop or Resize an imageCrop: Crosshair onlyCu_tCu_t Named...Cubic (Best)Current _StatusCurrent height:Current layer onlyCurrent statusCurrent width:CursorCursor _mode:Cursor re_ndering:Curve TypeCurvesCurves for indexed layers cannot be adjusted.CustomCustom colorCustom gradientCustom p_adding color:CutCut NamedCyanCyan:D_uplicate BrushD_uplicate ChannelD_uplicate GradientD_uplicate LayerD_uplicate PaletteD_uplicate PathD_uplicate PatternD_uplicate Template...Dark check colorDarken onlyDash dot dot...Dash dot...Dash pattern:Dash preset:DashedDate:DebugDefault Appearance in Fullscreen ModeDefault Appearance in Normal ModeDefault GridDefault Image GridDefault _interpolation:Default _layer & channel preview size:Default _threshold:Delete AnchorDelete AnchorsDelete Layer Mas_kDelete Layer MaskDelete ObjectDelete SegmentDelete TemplateDelete brushDelete channelDelete colorDelete gradientDelete layerDelete layer maskDelete paletteDelete pathDelete patternDelete saved options...Delete the selected bufferDelete the selected templateDelete this imageDelete vectorsDeleting "%s" failed: %sDense dotsDesaturateDesaturate operates only on RGB color layers.DescriptionDesignDevice StatusDevicesDialogsDialogs MenuDiamondDifferenceDirect ColorDisable Layer MaskDisable Quick MaskDiscard Text InformationDisplayDisplay NavigationDisplay _Filters...Display proceduresDisplay type:Displaying [%0.6f, %0.6f]DissolveDistance:Distance: %0.6fDitheringDivideDo a _fresh user installationDo you really want to reset all filters to default values?Do you really want to reset all tool options to default values?Do you want to replace it with the image you are saving?Do_n't saveDockableDocument Histor_yDocument HistoryDocumentsDocuments MenuDod_geBurnDodgeDodge or Burn strokesDodge/BurnDouble dashedDrag AnchorDrag AnchorsDrag CurveDrag HandleDrag PathDrag: moveDraw in inkDrawableDrawable modDrawable proceduresDrop New LayerDrop New PathDue to lack of any fonts, text functionality is not available.Dump events from this controllerDuplicate brushDuplicate channelDuplicate gradientDuplicate layerDuplicate paletteDuplicate pathDuplicate patternDuplicate the selected templateEEK: can't undoE_xport Path...E_xtra SmallEdge BehaviourEdge-De_tectEditEdit Channel AttributesEdit Channel ColorEdit Color Palette EntryEdit Colormap EntryEdit Layer AttributesEdit Layer MaskEdit ModeEdit Palette ColorEdit Path AttributesEdit Quick Mask AttributesEdit Quick Mask ColorEdit TemplateEdit brushEdit channel attributesEdit colorEdit colormap entry #%dEdit gradientEdit layer attributesEdit paletteEdit path attributesEdit patternEdit proceduresEdit the selected templateEllipse SelectEmpty ChannelEmpty LayerEmpty PathEmpty Text LayerEmpty variable name in environment file %sEn_hanceEnable Quick MaskEnable dithering of _transparencyEnable this controllerEnable to display a handy GIMP tip on startup.Enable to display tooltips.EnormousEnter a name for the merged paletteEnter a name for the saved optionsEnter a name for this bufferEnter a name for this templateEnter a new name for the saved optionsEnter location (URI):EnvironmentEnvironment FoldersEqualizeEqualize does not operate on indexed layers.Erase to background or transparencyEraserError Co_nsoleError ConsoleError Console MenuError saving XCF file: %sError while parsing '%s' in line %d: %sError while reading '%s': %sError while reading brush file '%s': %sError while writing '%s': %sError writing XCF: %sError writing file '%s': +AdditionAdditional Input ControllersAdjust Brightness and ContrastAdjust Color BalanceAdjust Color CurvesAdjust Color LevelsAdjust brightness and contrastAdjust color balanceAdjust color curvesAdjust color levelsAdjust hue / lightness / saturationAdjust hue and saturationAdjust levels automaticallyAdjustmentAdvanced optionsAffect:Affected Area %sAirbrushAirbrush with variable pressureAl_pha to SelectionAlignedAlignmentAll ChannelsAll FilesAll Files (*.*)All image and undo data which doesn't fit into the Tile Cache will be written to a swap file. This file should be located on a local filesystem with enough free space (several hundred MB). On a UNIX system, you may want to use the system-wide temp-dir ("/tmp" or "/var/tmp").Allow completely transparent regions to be filledAllow completely transparent regions to be selectedAllow enlarging %sAlphaAlpha to SelectionAlpha:An image of the choosen size will use more memory than what is configured as "Maximum Image Size" in the Preferences dialog (currently %s).An_imationAnchor Floating SelectionAnchor floating layerAnchor floating selectionAngle:Anti erase %sAntialiasingAppearanceApply Layer MaskApply Layer _MaskApply ThresholdApply layer maskAre you sure you want to delete '%s' from the list and from disk?Are you sure you want to delete template '%s' from the list and from disk?As in _PreferencesAsk for confirmation before closing an image without saving.Aspect Ratio:Aspect ratio:Attach ParasiteAttach Parasite to ImageAttach Parasite to ItemAttach parasiteAuthor:AutoAuto _Follow Active ImageAuto shrinkAuto shrink selectionAuto-resize windowAutoloadAutomatically DetectedAvailable FiltersAvailable Types:BG color fillB_rightness-Contrast...B_uffersBackgroundBackground colorBackground color set to:Background: %d, %d, %dBackward (corrective)Base filled area on all visible layersBase selection on all visible layersBehindBevelBi-linearBlack & whiteBlack:Ble_nd Endpoints' ColorsBlen_dBlendBlend Endpoints' Opacit_yBlend: Blend: Invalid for indexed images.Blending...BlueBlue:BlurBlur or SharpenBo_rder...Border ChannelBorder SelectionBorder selection byBrightness-ContrastBrightness-Contrast does not operate on indexed layers.BrushBrush EditorBrush FoldersBrush UIBrush:BrushesBrushes MenuBucket FillBuffersBuffers MenuBurnButtBy ExtensionBy reverting the image to the state saved on disk, you will lose all changes, including all undo information.CMYKC_alibrate...C_olor PickerC_olumns:C_ombineCalibrate Monitor ResolutionCan't undo %sCan_vas Size...CancelCancel GuideCannot add layer mask of different dimensions than specified layer.Cannot add layer mask to a layer with no alpha channel.Cannot add layer mask to layer which is not part of an image.Cannot anchor this layer because it is not a floating selection.Cannot convert to a palette with more than 256 colors.Cannot create a new layer from the floating selection because it belongs to a layer mask or channel.Cannot create folder '%s': %sCannot create previewCannot crop because the current selection is empty.Cannot expand ${%s}Cannot float selection because the selected region is empty.Cannot raise a layer without alpha.Cannot save. Nothing is selected.Cannot stroke empty channel.Cannot stroke empty path.Canvas SizeCanvas _padding mode:Center X:Center Y:CenteredChange Background ColorChange Colormap entryChange Foreground ColorChange Image ResolutionChange Image UnitChange Print SizeChange current layer or pathChange grid background colorChange grid foreground colorChange indexed paletteChange perspective of the layer or selectionChanging shortcut failed.ChannelChannel AttributesChannel Name:Channel cannot be lowered more.Channel cannot be raised higher.Channel colorChannel is already on the bottom.Channel is already on top.Channel to Sele_ctionChannel to SelectionChannel to selectionChannel:ChannelsChannels MenuCheck _size:Choose Stroke StyleCircleCl_earClearClear ChannelClear Undo HistoryClear all textClear errorsClear undo history...Click "Continue" to accept the settings above.Click "Continue" to create your personal GIMP folder.Click "Continue" to enter the GIMP user installation.Click "Continue" to proceed with the user installation.Click to connect this anchor with the selected endpoint.Click to create a new anchor. (try SHIFT)Click to create a new component of the path.Click to create a new path.Click to create previewClick to delete this anchor.Click to insert an anchor on the path. (try SHIFT)Click to make this node angular.Click to open up the path.Click to pick path to edit.Click to update preview +%s Click to force update even if preview is up-to-dateClick-Drag to change the shape of the curve. (SHIFT: symmetrical)Click-Drag to move the anchor around.Click-Drag to move the anchors around.Click-Drag to move the component around. (try SHIFT)Click-Drag to move the handle around. (try SHIFT)Click-Drag to move the path around.Click: selectClick: select Drag: moveClip resultClipboardClipped to bottom layerClipped to imageCloneClose %sClose all TabsClose all tabs?Close this TabCo_py PathColo_rsColorColor BalanceColor Display FiltersColor PickerColor Picker InformationColor _Balance...Color _dithering:Color balance operates only on RGB color layers.Color eraseColor index:Color:Color_mapColor_space:Colori_ze...Coloring _Type for SegmentColoring _Type for SelectionColorizeColorize operates only on RGB color layers.Colorize the ImageColorize the imageColormapColormap EditorColormap MenuColumns:Comme_nt:CommentCon_trast:Con_volveConfigure Color Display FiltersConfigure E_xtended Input Devices...Configure G_rid...Configure GridConfigure Image GridConfigure Keyboard ShortcutsConfigure _Keyboard Shortcuts...Configure selected filterConfigure selected filter: %sConfirm Image SizeConfirm ScalingConfirm Text EditingConfirm closing of unsa_ved imagesConflicting ShortcutsConical (asym)Conical (sym)Connect StrokesConstantConstraintsContextContext-dependent cursors are cool. They are enabled by default. However, they require overhead that you may want to do without.ContinueContributions byConvertConvert EdgeConvert Image to GrayscaleConvert Image to IndexedConvert Image to Indexed ColorsConvert Image to RGBConvert imageConverting to indexed (stage 2)...Converting to indexed (stage 3)...Converting to indexed...ConvolveConvolve Type %sCopy NamedCopy _VisibleCopying file '%s' from '%s'...Copyright:Corrupt segment %d in gradient file '%s'.Could not create '%s': %sCould not create temporary file for '%s': %sCould not delete '%s': %sCould not find GIMP help browser.Could not open '%s' for reading: %sCould not open '%s' for writing: %sCould not open thumbnail '%s': %sCould not read %d bytes from '%s': %sCould not seek in XCF file: %sCould not start the GIMP help browser plug-in.Count:Cr_op LayerCreate New Doc_kCreate New TemplateCreate a New ImageCreate a New LayerCreate a New TemplateCreate a new display for this imageCreate a new image from the selected templateCreate a new templateCreate and edit images or photographsCreate and edit pathsCreate path from textCreate selection from pathCreating Preview ...Creating folder '%s'...CropCrop & ResizeCrop & Resize InformationCrop ImageCrop LayerCrop imageCrop or Resize an imageCrop: Crosshair onlyCu_tCu_t Named...Cubic (Best)Current _StatusCurrent height:Current layer onlyCurrent statusCurrent width:CursorCursor _mode:Cursor re_ndering:Curve TypeCurvesCurves for indexed layers cannot be adjusted.CustomCustom colorCustom gradientCustom p_adding color:CutCut NamedCyanCyan:D_uplicate BrushD_uplicate ChannelD_uplicate GradientD_uplicate LayerD_uplicate PaletteD_uplicate PathD_uplicate PatternD_uplicate Template...Dark check colorDarken onlyDash dot dot...Dash dot...Dash pattern:Dash preset:DashedDate:DebugDefault Appearance in Fullscreen ModeDefault Appearance in Normal ModeDefault GridDefault Image GridDefault _interpolation:Default _layer & channel preview size:Default _threshold:Delete AnchorDelete AnchorsDelete Layer Mas_kDelete Layer MaskDelete ObjectDelete SegmentDelete TemplateDelete brushDelete channelDelete colorDelete gradientDelete layerDelete layer maskDelete paletteDelete pathDelete patternDelete saved options...Delete the selected bufferDelete the selected templateDelete this imageDelete vectorsDeleting "%s" failed: %sDense dotsDesaturateDesaturate operates only on RGB color layers.DescriptionDesignDevice StatusDevicesDialogsDialogs MenuDiamondDifferenceDirect ColorDisable Layer MaskDisable Quick MaskDiscard Text InformationDisplayDisplay NavigationDisplay _Filters...Display proceduresDisplay type:Displaying [%0.6f, %0.6f]DissolveDistance:Distance: %0.6fDitheringDivideDo a _fresh user installationDo you really want to reset all filters to default values?Do you really want to reset all tool options to default values?Do you want to replace it with the image you are saving?Do_n't saveDockableDocument Histor_yDocument HistoryDocumentsDocuments MenuDod_geBurnDodgeDodge or Burn strokesDodge/BurnDouble dashedDrag AnchorDrag AnchorsDrag CurveDrag HandleDrag PathDrag: moveDraw in inkDrawableDrawable modDrawable proceduresDrop New LayerDrop New PathDue to lack of any fonts, text functionality is not available.Dump events from this controllerDuplicate brushDuplicate channelDuplicate gradientDuplicate layerDuplicate paletteDuplicate pathDuplicate patternDuplicate the selected templateEEK: can't undoE_xport Path...E_xtra SmallEdge BehaviourEdge-De_tectEditEdit Channel AttributesEdit Channel ColorEdit Color Palette EntryEdit Colormap EntryEdit Layer AttributesEdit Layer MaskEdit ModeEdit Palette ColorEdit Path AttributesEdit Quick Mask AttributesEdit Quick Mask ColorEdit TemplateEdit brushEdit channel attributesEdit colorEdit colormap entry #%dEdit gradientEdit layer attributesEdit paletteEdit path attributesEdit patternEdit proceduresEdit the selected templateEllipse SelectEmpty ChannelEmpty LayerEmpty PathEmpty Text LayerEmpty variable name in environment file %sEn_hanceEnable Quick MaskEnable dithering of _transparencyEnable this controllerEnable to display a handy GIMP tip on startup.Enable to display tooltips.EnormousEnter a name for the merged paletteEnter a name for the saved optionsEnter a name for this bufferEnter a name for this templateEnter a new name for the saved optionsEnter location (URI):EnvironmentEnvironment FoldersEqualizeEqualize does not operate on indexed layers.Erase to background or transparencyEraserError Co_nsoleError ConsoleError Console MenuError saving XCF file: %sError while parsing '%s' in line %d: %sError while reading '%s': %sError while reading brush file '%s': %sError while writing '%s': %sError writing XCF: %sError writing file '%s': %sError writing to '%s': %sError writing to temporary file for '%s': %s No file has been created.Error writing to temporary file for '%s': %s The original file has not been touched.ErrorsEventEx_tra LargeExpanded as necessaryExport Path to SVGExport all paths from this imageExport the active pathExposure:Extended Input DevicesExtensionsFG color fillFG to BG (HSV clockwise hue)FG to BG (HSV counter-clockwise)FG to BG (HSV)FG to BG (RGB)FG to TransparentFG to transparentFG/BGFG/BG ColorFS relaxFS rigorFS to layerF_it Canvas to LayersFade outFailed to import gradients from '%s': %sFailed to import paths from '%s': %sFancyFatal parse error in brush file '%s': File appears truncated.Fatal parse error in brush file '%s': File is corrupt.Fatal parse error in brush file '%s': Not a GIMP brush file.Fatal parse error in brush file '%s': Unknown GIMP brush shape.Fatal parse error in brush file '%s': Unknown GIMP brush version.Fatal parse error in brush file '%s': Unknown depth %d.Fatal parse error in brush file '%s': Unknown version %d.Fatal parse error in brush file '%s': Unsupported brush depth %d @@ -304,7 +323,7 @@ Make sure a proper setup for your display environment exists.GIMP help browserGIMP is not properly installed for the current user. User installation was skipped because the '--no-interface' flag was used. To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Generate optimum paletteGet Monitor ResolutionGiganticGimprc proceduresGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient:GradientsGradients MenuGrain extractGrain mergeGrayGrayscaleGreenGreen:GridGrid line spacingGrow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_counter-clockwise hue)HSV (clockwise _hue)HTML notation:H_eight:H_elp browser to use:Handle position: %0.6fHard edgeHard lightHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHelp proceduresHex:HighlightsHint for the _docks:Hint for the _toolbox:HintingHinting alters the font outline to produce a crisp bitmap at small sizesHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB color layers.Hue-_Saturation...Hue:HugeI_con & TextI_mageI_mport Path...I_nterpolation:I_nterval:IconIcon & descIcon & textIf available, hints from the font are used but you may prefer to always use the automatic hinterIf enabled, the move tool changes the active layer or path when a layer or path is being picked. This used to be the default behaviour in older versions.If you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.Illegal variable name in environment file %s: %sImageImage + GridImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage ThumbnailsImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage maskImage resolution is out of bounds, using the default resolution instead.Image sizeImage sourceImage typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport paletteImport pathsImported PathIn_kIn_vertIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorIndexed Color ConversionIndexed color layers are always scaled without interpolation. The chosen interpolation type will affect channels and masks only.Info WindowInitial zoom _ratio:Initialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' -InkInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratioKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard EventsKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine +InkInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard EventsKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine spacing:Line Width:Line _Style:Line style used for the grid.LinearLinked itemLoadLoad CurvesLoad LevelsLoad Right Color Fr_omLoad curves settings from fileLoad levels settings from fileLoad text from fileLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower Path to _BottomLower channelLower channel to bottomLower layerLower layer to bottomLower pathLower path to bottomM_agnifyM_asterM_ove to Screen...Ma_pMagentaMagenta:MagnifyMake _transparentManage Loadable ModulesMarching _ants speed:Mask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:Max Depth:Maximum _filesize for thumbnailing:Maximum _new image size:Maximum color differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMeasure the rulers and enter their lengths:Median:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMerge vectorsMessage proceduresMessage repeated %d times.Message repeated once.Messages are redirected to stderr.MidtonesMigrate User SettingsMinimal number of _undo levels:MiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMouse WheelMouse Wheel EventsMoveMove AnchorsMove ChannelMove Floating SelectionMove GuideMove Guide: Move LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove ToolMove itemMove layers & selectionsMove selectionMove the current layerMove the current pathMove the selected filter downMove the selected filter upMove to Screen...Move: MultiplyN_umber of colors:Na_vigationNa_vigation WindowNa_vigation preview size:NameName:NavigationNew ChannelNew Channel ColorNew Channel OptionsNew Color from _BGNew Color from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channelNew channel with last valuesNew channel...New color from BGNew color from FGNew gradientNew importNew layerNew layer with last valuesNew layer...New paletteNew path with last valuesNew path...New patternNew vectorsNo brushes available for use with this tool.No filter selectedNo linear gradients found in '%s'No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of _processors to use:Number of grid linesNumber of layers:O_ther...OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset by x/_2, y/2Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the palette selection dialogOpen the pattern selection dialogOpen the selected entryOpening '%s' failed: %sOpening '%s' failed: %sOptions: @@ -354,10 +373,10 @@ The GIMP %d.%d User InstallationWhen enabled the dialog automatically follows the image you are working on.When enabled, GIMP will show mnemonics in menus.When enabled, all paint tools will show a preview of the current brush's outline.When enabled, an image will become the active image when its image window receives the focus. This is useful for window managers using "click to focus".When enabled, dialogs will show a help button that gives access to the related help page. Without this button, the help page can still be reached by pressing F1.When enabled, menus can be torn off.When enabled, pressing F1 will open the help browser.When enabled, the GIMP will not save if the image is unchanged since opening it.When enabled, the GIMP will use a different info window per image view.When enabled, the X server is queried for the mouse's current position on each motion event, rather than relying on the position hint. This means painting with large brushes should be more accurate, but it may be slower. Perversely, on some X servers enabling this option results in faster painting.When enabled, the cursor will be shown over the image while using a paint tool.When enabled, the grid is visible by default. This can also be toggled with the "View->Show Grid" command.When enabled, the guides are visible by default. This can also be toggled with the "View->Show Guides" command.When enabled, the image window will automatically resize itself, when zooming into and out of images.When enabled, the image window will automatically resize itself, whenever the physical image size changes.When enabled, the layer boundary is visible by default. This can also be toggled with the "View->Show Layer Boundary" command.When enabled, the menubar is visible by default. This can also be toggled with the "View->Show Menubar" command.When enabled, the rulers are visible by default. This can also be toggled with the "View->Show Rulers" command.When enabled, the scrollbars are visible by default. This can also be toggled with the "View->Show Scrollbars" command.When enabled, the selected brush will be used for all tools.When enabled, the selected gradient will be used for all tools.When enabled, the selected pattern will be used for all tools.When enabled, the selection is visible by default. This can also be toggled with the "View->Show Selection" command.When enabled, the statusbar is visible by default. This can also be toggled with the "View->Show Statusbar" command.When enabled, this will ensure that each pixel of an image gets mapped to a pixel on the screen.When enabled, this will ensure that the full image is visible after a file is opened, otherwise it will be displayed with a scale of 1:1.When enabled, you can change keyboard shortcuts for menu items by hitting a key combination while the menu item is highlighted.WhiteWhite Balance operates only on RGB color layers.WidthWidth:Window ManagementWindow Manager HintsWindow PositionsWriting '%s' XXCF error: unsupported XCF file version %d encounteredXCF warning: version 0 of XCF file format did not save indexed colormaps correctly. -Substituting grayscale map.YYellowYellow:You are trying to create an image with a size of %s.You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your GIMP installation is incomplete:Your input device settings will be reset to default values the next time you start GIMP.Your keyboard shortcuts will be reset to default values the next time you start GIMP.Your window setup will be reset to default values the next time you start GIMP.Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_All_Anchor Layer_Antialiasing_Arbitrary Rotation..._Artistic_Aspect_Auto_B_BG Color_Background color:_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Bucket Fill_Buffer_By Color_By Color Select_C_Cap style:_Channels_Clear Errors_Clear Undo History_Clone_Close_Close Tab_Clouds_Color Tools_Colors_Configure Color and Opacity..._Context_Context Help_Copy_Copy Named..._Create Image from Template..._Crop & Resize_Crop Image_Curved_Curves..._Dark Check Color_Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Desaturate_Detach Tab_Device Status_Dialogs_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Ellipse Select_Enable layer & channel previews_Enormous_Equalize_Eraser_FG Color_File_Fill with:_Fit Image in Window_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground color:_Free Select_G_Generic_Gigantic_Gradient_Gradients_Grayscale_Grayscale copy of layer_Grow..._Guides_Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Info Window_Intersect with Selection_Invert_Join style:_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Left Neighbor's Right Endpoint_Levels..._Light Check Color_Light Effects_Lightness:_Line Style_Linear_Linked_Load Left Color From_Lower Channel_Lower Layer_Lower Path_M_Manually_Map_Mask_Mask to Selection_Maximum number of colors:_Measure_Medium_Merge Palettes..._Merge imported paths_Migrate GIMP 2.0 user settings_Misc. Stuff_Miter limit:_Mode_Module Manager_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._Padding Color_Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preferences_Preview_Preview Size_Previous tip_Print Size..._Properties_Quick Mask Active_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Reassign shortcut_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Remove unused colors from final palette_Render_Replace_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Order & Visibility_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Right Endpoint_Right Neighbor's Left Endpoint_Rotate_Saturation:_Save_Save Left Color To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Scale imported paths to fit image_Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Show Image Selection_Show in Toolbox_Sinusoidal_Small_Smudge_Snap distance:_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tool_Tools_Transfer layer's alpha channel_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Visible_Web_Web browser to use:_White (full opacity)_White Balance_Width:_Wrap around_X resolution:_X:_Xtns_Y_Y resolution:_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for icon typeinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetermillimetersminuten/apercentpicapicaspixelpixelspixels/%apixels/%spointpointssecondtips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: gimp 2.0 +Substituting grayscale map.YYellowYellow:You are trying to create an image with a size of %s.You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your GIMP installation is incomplete:Your input device settings will be reset to default values the next time you start GIMP.Your keyboard shortcuts will be reset to default values the next time you start GIMP.Your window setup will be reset to default values the next time you start GIMP.Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_All_Anchor Layer_Antialiasing_Arbitrary Rotation..._Artistic_Aspect_Auto_B_BG Color_Background color:_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Bucket Fill_Buffer_By Color_By Color Select_C_Cap style:_Channels_Clear Errors_Clear Undo History_Clone_Close_Close Tab_Clouds_Color Tools_Colors_Configure Color and Opacity..._Context_Context Help_Copy_Copy Named..._Create Image from Template..._Crop & Resize_Crop Image_Curved_Curves..._Dark Check Color_Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Desaturate_Detach Tab_Device Status_Dialogs_Discard Changes_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Ellipse Select_Enable layer & channel previews_Enormous_Equalize_Eraser_FG Color_File_Fill with:_Fit Image in Window_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground color:_Free Select_G_Generic_Gigantic_Gradient_Gradients_Grayscale_Grayscale copy of layer_Grow..._Guides_Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Info Window_Intersect with Selection_Invert_Join style:_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Left Neighbor's Right Endpoint_Levels..._Light Check Color_Light Effects_Lightness:_Line Style_Linear_Linked_Load Left Color From_Lower Channel_Lower Layer_Lower Path_M_Manually_Map_Mask_Mask to Selection_Maximum number of colors:_Measure_Medium_Merge Palettes..._Merge imported paths_Migrate GIMP 2.0 user settings_Misc. Stuff_Miter limit:_Mode_Module Manager_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._Padding Color_Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preferences_Preview_Preview Size_Previous tip_Print Size..._Properties_Quick Mask Active_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Reassign shortcut_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Remove unused colors from final palette_Render_Replace_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Order & Visibility_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Right Endpoint_Right Neighbor's Left Endpoint_Rotate_Saturation:_Save_Save Left Color To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Scale imported paths to fit image_Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Show Image Selection_Show in Toolbox_Sinusoidal_Small_Smudge_Snap distance:_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tool_Tools_Transfer layer's alpha channel_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Visible_Web_Web browser to use:_White (full opacity)_White Balance_Width:_Wrap around_X resolution:_X:_Xtns_Y_Y resolution:_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for icon typeinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetermillimetersminuten/apercentpicapicaspixelpixelspixels/%apixels/%spointpointssecondtips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: gimp 2.0 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-19 03:11+0100 -PO-Revision-Date: 2004-12-04 17:13+0100 +POT-Creation-Date: 2004-12-28 16:58+0100 +PO-Revision-Date: 2004-12-21 21:49+0100 Last-Translator: Sigurd Gartmann Language-Team: Norwegian MIME-Version: 1.0 @@ -396,8 +415,8 @@ (Buffer uten navn)(Mal uten navn)(Varierer)(tomt)(ugyldig UTF-8-streng)(endret)(ingen)1 lag1 lag15 grader %s16:1 (1600%)1:1 (100%)1:16 (6.25%)1:2 (50%)1:4 (25%)1:8 (12.5%)2:1 (200%)2D-transformasjon...4:1 (400%)8:1 (800%)<%s><>For optimal ytelse i GIMP, er det nødvendig med justering av noen innstillinger.GIMP - GNU Image Manipulation Program Copyright © 1995-2004 Spencer Kimball, Peter Mattis og GIMP-utviklingslaget.GIMP tips-filen kunne ikke tolkes!Din GIMP tips-fil ser ut til å mangle!En fil med navnet «%s» finnes allerede._Legg til i utvalg_VinkelOm GIMPHandlingAktiver det _fokuserte bildeetAktive filtreTilpassende supersamplingLegg tilLegg til alfakanalLegg til alfakanalLegg til ankerLegg til kanalLegg farge til fargekartLegg til innrettingslinje: Legg til innrettingslinjerLegg til horisontal innrettingslinjeLegg til lag_maske...Legg til lagLegg til lagmaskeLegg til baneLegg til strøkLegg til tekstlagLegg til vertikal innrettingslinjeLegg til maske for lagetLegg til farge fra bakgrunnenLegg til farge fra forgrunnenLegg til lagmaskeLegg tekst til bildetLegg gjeldende farge til i fargehistorikkenLegg til valgt filter i listen over aktive filtre.Legg til palett %sLegg til i dette utvalgetLegger til tema «%s» (%s) -TilleggEkstra inndatakontrollereJustér lysstyrke og kontrastJuster fargebalanseJuster fargekurverJuster fargenivåerJuster lysstyrke og kontrast...Juster fargebalanseJuster fargekurveneJuster fargenivåerJuster glød / lys / metningJuster Glød og metningJuster nivåer automatiskJusteringAvanserte alternativerPåvirkning:Påvirket område %sLuftpenselLuftpensel med variabelt trykkAl_fa til utvalgJustertJusteringAlle kanalerAlle filerAlle filer (*.*)Alle bilde- og angredata som ikke passer i flisbufferen vil bli skrevet til en mellomlagerfil. Denne fila bør plasseres på et lokalt filsystem med tilstrekkelig plass (flere hundre MB). På et UNIX-system vil du kanskje bruke systemets mappe for midlertidige filer. («/tmp» eller «/var/tmp»).Tillat fylling av helt gjennomsiktige områderTillat markering av helt gjennomsiktige områderTillat forstørring %sGjennomsiktighetGjennomsiktighet til utvalgGjennomsiktighet:Et bilde av den valgte størrelsen vil bruke mer minne et det som er innstilt som «maksimal bildestørrelse» i innstillingsvinduet (nåværende verdi er %s).An_imasjonForankre flytende utvalgForankre flytende lagForankre flytende utvalgVinkel:Anti-fjern %sAntialiaseringUtseendePåfør lagmaskeBruk lag_maskeBruk terskelBruk lagmaskeEr du sikker på at du vil slette «%s» fra listen og fra disken?Er du sikker på at du vil slette malen «%s» fra listen og fra disken?Som i _brukervalgSpør om bekreftelse før et ulagret bilde lukkes.Bredde- og høydeforhold:Bredde- og høydeforhold:Fest parasittFest parasitt på bildeFest parasitt til elementFest parasittForfatter:AutoFølg aktivt _bildeAutokrympKrymp utvalg automatiskAntomatisk endring av vindusstørrelseAutolastFunnet automatiskTilgjengelige filtreTilgjengelige typer:Bakgrunnsfargefyll_Lysstyrke-Kontrast...B_uffereBakgrunnBakgrunnsfargeBakgrunnsfarge satt til:Bakgrunn: %d, %d, %dBakover (korrektiv)Baser fylt område på alle synlige lagBaser utvalg på alle synlige lagBakNivåBi-lineærSvart hvittSvart:Bland endepunktenes farger_BlandFortynnBland endepunktenes _ugjennomsiktighetBland: Bland: Umulig for indekserte bilder.Blanding...BlåBlå:Gjør utydeligUtydeliggjør eller gjør skarpereKan_t...Sett ramme på kanalRam inn utvalgKantvalg vedLysstyrke-KontrastLysstyrke-kontrast virker ikke på indekserte lag.PenselPenseleditorPenselmapperPensel UIPensel:PenslerPenselmenyBøttefyllingBuffereBuffermenyBrennButtEtter typeVed å forkaste bildet til forrige lagring, mister du alle endringer, inkludert all angreinformasjon.CMYK_Kalibrér...FargevelgerK_olonner:K_ombinérKalibrer oppløsning for skjermKan ikke angre %sStørrelse på _lerretAvbrytAvbryt innrettingslinjeKan ikke legge til lagmaske med forskjellig dimensjon fra det spesifiserte laget.Kan ikke legge til lagmaske til et lag uten alfakanal.Kan ikke legge til lagmaske til lag som ikke er en del av et bilde.Kan ikke forankre dette laget fordi det ikke er et flytende utvalg.Kan ikke konvertere en palett med mer enn 256 farger.Kan ikke opprette nytt lag fra det flytende utvalget fordi det tilhører en lagmaske eller kanal.Kan ikke opprette mappe «%s»: %sKan ikke opprette forhåndsvisningKunne ikke beskjære fordi dette utvalget er tomt.Kan ikke utvide $(%s)Kan ikke gjøre utvalg flytende fordi den valgte region er tom.Kan ikke løfte et lag uten gjennomsiktighet.Kan ikke lagre. Ingenting er valgt.Kan ikke tegne på tom kanal.Kan ikke tegne på tom bane.Størrelse på lerretLerret_fyllmodus:Senter X:SentrertEndre bakgrunnsfargeEndre fargekartinnslagEndre forgrunnsfargeEndre bildets oppløsningEndre bildets enhetEndre utskriftsstørrelseEndre gjeldende lag eller baneEndre rutenettets bakgrunnsfargeEndre rutenettets forgrunnsfargeEndre indeksert palettEndre perspektiv for lag eller utvalgEndring av snarvei feilet.KanalAttributter for kanalKanalnavn:Kanalen kan ikke senkes lavere.Kanalen kan ikke løftes høyere.KanalfargeKanalen er allerede nederst.Kanalen er allerede øverst._Kanal til utvalgKanal til utvalgKanal til utvalgKanal:KanalerKanalmenyRute_størrelse:Velg strøkstilSirkel_TømTømTøm kanalTøm AngrehistorikkTøm all tekstTøm feilTøm angre-historikkKlikk «fortsett» for å akseptere innstillingene over.Klikk «fortsett» for å opprette din personlige GIMP-mappe.Klikk «fortsett» for å gå videre i GIMP bruker-installasjon.Klikk «fortsett» for å gå videre i GIMP-brukerinstallasjon.Klikk for å tilkoble dette ankeret med det valgte endepunktet.Klikk for å opprette et nytt anker (prøv SKIFT).Klikk for å opprette en ny komponent i banen.Klikk for å opprette en ny bane.Klikk for å opprette forhåndsvisningKlikk for å slette dette ankeret.Klikk for å sette inn et anker på banen (prøv SKIFT).Klikk for å gjøre denne noden vinklet.Klikk for å åpne banen.Opprett en ny bane for redigering.Klikk for å oppdatere forhåndsvisning -%s Klikk for å oppdatere selv om forhåndsvisningen allerede er oppdatertKlikk og dra for å endre formen på kurven (SKIFT: symmetrisk).Klikk og dra for å flytte ankeret rundt.Klikk og dra for å flytte ankerne rundt.Klikk og dra for å flytte komponenten rundt (prøv SKIFT).Klikk og dra for å flytte håndtaket rundt (prøv SKIFT).Klikk og dra for å flytte banen rundt.Klikk: utvalgKlikk: velg Dra: flyttKlipp ut resultatUtklippstavleKlippes til bunnlagKlippes til bildetKloneLukk %sLukk denne fanenKopiér bane_FargerFargeFargebalanseFilter for fargevisningPipetteInformasjon om fargevelgerFarge_balanse...Farge _dithering:Fargebalanse virker kun på RGB-fargelag.Slett med fargeFargeindeks:Farge:_FargekartFarge_rom:_Farg...Farge_type for segmentFarge_type for utvalgetFargFarging virker kun på RGB-fargelag.Farg bildetFarg bildetFargekartFargekartbehandlerFargekartmenyKolonner:Kommentar:KommentarKon_trast:Kon_voluérKonfigurer filtre for fargevisningStill inn _utvidede inndataenheter...Still inn _rutenett...Konfigurer rutenettKonfigurer størrelse på rutenettStill inn tastatursnarveierStill inn _tastatusnarveier...Still inn valgt filterStill inn valgt filter: %sBekreft størrelse på bildetBekreft SkaléringBekreft tekstredigeringBekreft lukking av _ulagrede bilderSnarveier i konfliktKonisk (asymmetrisk)Konisk (symmetrisk)Koble sammen strøkKonstantBegrensningerKontekstKontekstavhengige markører er fine. De er påslått som standard. De krever litt ekstra, og du kan fint klare deg uten.FortsettBidrag avKonverterKonverter kantKonverter bilde til gråtonerKonverter bilde til indeksertKonverter bilde til indekserte fargerKonverter bilde til RGBKonvertér bildeKonvertérer til indeksert (trinn 2)...Konvertérer til indeksert (trinn 3)...Konvertérer til indeksert...ConvolveConvolve type %sKopier navngittKopierer fil «%s» fra «%s»...Opphavsrett:Korrupt segment %d i graderingsfil «%s».Kunne ikke opprette «%s»: %sKunne ikke opprette midlertidig fil for «%s»: %sKunne ikke slette «%s»: %sKunne ikke finne GIMPs hjelpleserKan ikke åpne «%s» for lesing: %sKan ikke åpne «%s» for skriving: %sKunne ikke åpne miniatyrfil «%s»: %sKunne ikke lese %d bytes fra «%s»: %sKunne ikke søke i XCF-fil: %sKunne ikke starte GIMPs hjelplesertillegg.Antall:_Beskjær lagOpprett ny dok_kOpprett ny malOpprett et nytt bildeOpprett et nytt lagOpprett ny malOpprett en ny visning for dette bildetOpprett et nytt bilde fra den valgte malenOpprett en ny malOpprett og rediger bilder eller fotografierOpprett og rediger banerOpprett bane fra tekstOpprett utvalg fra baneOppretter forhåndsvisning...Oppretter mappe «%s»...BeskjærBeskjær og endre størrelseInformasjon om beskjæring og endring av størrelseBeskjær bildeBeskjær lagBeskjær bildeBeskjær eller endre størrelse på et bildeBeskjær: Kun «trådkors»Klipp _utKlipp _ut navngittKubisk (Beste)Status _nåNåværende høyde:Kun dette lagetStatus nåNåværende bredde:MarkørMarkør_modus:Markør_visning:KurvetypeKurverKurver for indekserte lag kan ikke justeres.EgendefinertEgendefinert fargeEgendefinert graderingEgendefinert f_yllfarge for lerretKlipp utKlipp ut navngittCyanCyan:_Kopiér pensel_Kopiér kanalD_upliker gradering_Kopiér lag_Kopiér palett_Kopiér bane_Kopiér mønster_Kopiér mal...Farge for mørke ruterGjør kun mørkereStrek prikk prikk...Strek prikk...Strekmønster:Forvalgte streker:StipletDato:AvlusningStandard utseende i fullskjermmodusStandard utseende i normal modusStandard rutenettStandard _rutenett for bildeForvalgt _interpolasjon:Standard størrelse for forhåndsvisning av _lag og kanaler:Forvalgt _terskel:Slett ankerSlett anker_Slett lagmaskeSlett lagmaskeSlett objektSlett segmentSlett malSlett penselSlett kanalSlett fargeSlett graderingSlett lagSlett lagmaskeSlett palettSlett baneSlett mønsterSlett lagrede alternativer...Slett det valgte bufferetSlett valgt malSlett dette bildetSlett vektorerSletting av «%s» feilet: %sTette prikkerMindre metningMindre metning virker bare på RGB-fargelag.BeskrivelseDesignEnhetsstatusEnheterMenyerDialogmenyFirkantDifferanseDirekte fargerSlå av lagmaskeSlå av hurtigmaskeForkast tekstinformasjonSkjermVis navigeringVis _filter...Prosedyrer for skjermSkjermtype:Viser [%0.6f, %0.6f]OppløsAvstand:Avstand: %0.6fDitheringDel oppGjør en _fersk brukerinstallasjonErdu sikker på at du vil nullstille alle filter til standardverdier?Vil du virkelig nullstille alle verktøysalternativer til standardverdiene?Vil du erstatte den med bildet du lagrer?_Ikke lagreKan dokkesDokumenthist_orikkDokumenthistorikkDokumenterDokumentmeny_BlekBrennBlekBlek eller brenn strøkBlek/BrennDobbelstipletDra ankerDra ankereDra kurveDra håndtakDra baneDra: flyttTegn med blekkTegneobjektTegningsendringProsedyrer for tegnede objekterSlipp nytt lagSlipp ny baneSiden skrifttyper mangler, er ikke tekstfunksjonalitet tilgjengelig.Kast handlinger fra denne kontrollerenKopiér penselKopiér kanalD_upliker graderingKopiér lagKopiér palettKopiér baneKopiér mønsterKopiér den valgte malenUffda: kan ikke angre_Eksporter bane...Veldig l_itenKantoppførselKant_deteksjonRedigerRediger attributter for kanalRediger farge for kanalRediger fargepalettoppføringRediger fargekartoppføringRediger lagets attributterRedigér til lagmaskeRedigeringsmodusRediger palettfargeRediger baneegenskaperRedigér attributter for hurtigmaskeRedige hurtigmaskefargeRediger malRediger penselRediger kanalattributterRediger fargeRediger fargekartoppføring #%dRediger graderingRediger lagattributterRediger palettRediger baneegenskaperRedigér mønsterRedigeringsprosedyrerRediger valgt malEllipseutvalgTøm kanalTomt lagTøm baneTomt tekstlagTomt variabelnavn i omgivelsesfil %sFor_bedreSlå på hurtigmaskeSlå på dithering av _gjennomsiktighetSlå på denne kontrollerenAktiver denne for å vise nyttige GIMP-tips ved oppstart av programmet.Aktiver denne for å vise små verktøyforklaringer.EnormSkriv inn navn for flettet palettSkriv inn et navn for det lagrede alternativetSkriv inn et navn for denne bufferenSkriv inn et navn for denne malenSkriv inn et nytt navn for det lagrede alternativetSkriv inn lokasjon (URI):OmgivelserMapper for omgivelserJevn utUtjevning virker ikke på indekserte lag.Slett til bakgrunn eller gjennomsiktighetViskelærFeil_konsollFeilkonsollFeilkonsollmenyFeil under lagring av XCF-fil: %sFeil ved lesing av «%s» på linje %d: +TilleggEkstra inndatakontrollereJustér lysstyrke og kontrastJuster fargebalanseJuster fargekurverJuster fargenivåerJuster lysstyrke og kontrast...Juster fargebalanseJuster fargekurveneJuster fargenivåerJuster glød / lys / metningJuster Glød og metningJuster nivåer automatiskJusteringAvanserte alternativerPåvirkning:Påvirket område %sLuftpenselLuftpensel med variabelt trykkAl_fa til utvalgJustertJusteringAlle kanalerAlle filerAlle filer (*.*)Alle bilde- og angredata som ikke passer i flisbufferen vil bli skrevet til en mellomlagerfil. Denne fila bør plasseres på et lokalt filsystem med tilstrekkelig plass (flere hundre MB). På et UNIX-system vil du kanskje bruke systemets mappe for midlertidige filer. («/tmp» eller «/var/tmp»).Tillat fylling av helt gjennomsiktige områderTillat markering av helt gjennomsiktige områderTillat forstørring %sGjennomsiktighetGjennomsiktighet til utvalgGjennomsiktighet:Et bilde av den valgte størrelsen vil bruke mer minne et det som er innstilt som «maksimal bildestørrelse» i innstillingsvinduet (nåværende verdi er %s).An_imasjonForankre flytende utvalgForankre flytende lagForankre flytende utvalgVinkel:Anti-fjern %sAntialiaseringUtseendePåfør lagmaskeBruk lag_maskeBruk terskelBruk lagmaskeEr du sikker på at du vil slette «%s» fra listen og fra disken?Er du sikker på at du vil slette malen «%s» fra listen og fra disken?Som i _brukervalgSpør om bekreftelse før et ulagret bilde lukkes.Bredde- og høydeforhold:Bredde- og høydeforhold:Fest parasittFest parasitt på bildeFest parasitt til elementFest parasittForfatter:AutoFølg aktivt _bildeAutokrympKrymp utvalg automatiskAntomatisk endring av vindusstørrelseAutolastFunnet automatiskTilgjengelige filtreTilgjengelige typer:Bakgrunnsfargefyll_Lysstyrke-Kontrast...B_uffereBakgrunnBakgrunnsfargeBakgrunnsfarge satt til:Bakgrunn: %d, %d, %dBakover (korrektiv)Baser fylt område på alle synlige lagBaser utvalg på alle synlige lagBakNivåBi-lineærSvart hvittSvart:Bland endepunktenes farger_BlandFortynnBland endepunktenes _ugjennomsiktighetBland: Bland: Umulig for indekserte bilder.Blanding...BlåBlå:Gjør utydeligUtydeliggjør eller gjør skarpereKan_t...Sett ramme på kanalRam inn utvalgKantvalg vedLysstyrke-KontrastLysstyrke-kontrast virker ikke på indekserte lag.PenselPenseleditorPenselmapperPensel UIPensel:PenslerPenselmenyBøttefyllingBuffereBuffermenyBrennButtEtter typeVed å forkaste bildet til forrige lagring, mister du alle endringer, inkludert all angreinformasjon.CMYK_Kalibrér...FargevelgerK_olonner:K_ombinérKalibrer oppløsning for skjermKan ikke angre %sStørrelse på _lerretAvbrytAvbryt innrettingslinjeKan ikke legge til lagmaske med forskjellig dimensjon fra det spesifiserte laget.Kan ikke legge til lagmaske til et lag uten alfakanal.Kan ikke legge til lagmaske til lag som ikke er en del av et bilde.Kan ikke forankre dette laget fordi det ikke er et flytende utvalg.Kan ikke konvertere en palett med mer enn 256 farger.Kan ikke opprette nytt lag fra det flytende utvalget fordi det tilhører en lagmaske eller kanal.Kan ikke opprette mappe «%s»: %sKan ikke opprette forhåndsvisningKunne ikke beskjære fordi dette utvalget er tomt.Kan ikke utvide $(%s)Kan ikke gjøre utvalg flytende fordi den valgte region er tom.Kan ikke løfte et lag uten gjennomsiktighet.Kan ikke lagre. Ingenting er valgt.Kan ikke tegne på tom kanal.Kan ikke tegne på tom bane.Størrelse på lerretLerret_fyllmodus:Senter X:Senter Y:SentrertEndre bakgrunnsfargeEndre fargekartinnslagEndre forgrunnsfargeEndre bildets oppløsningEndre bildets enhetEndre utskriftsstørrelseEndre gjeldende lag eller baneEndre rutenettets bakgrunnsfargeEndre rutenettets forgrunnsfargeEndre indeksert palettEndre perspektiv for lag eller utvalgEndring av snarvei feilet.KanalAttributter for kanalKanalnavn:Kanalen kan ikke senkes lavere.Kanalen kan ikke løftes høyere.KanalfargeKanalen er allerede nederst.Kanalen er allerede øverst._Kanal til utvalgKanal til utvalgKanal til utvalgKanal:KanalerKanalmenyRute_størrelse:Velg strøkstilSirkel_TømTømTøm kanalTøm AngrehistorikkTøm all tekstTøm feilTøm angre-historikkKlikk «fortsett» for å akseptere innstillingene over.Klikk «fortsett» for å opprette din personlige GIMP-mappe.Klikk «fortsett» for å gå videre i GIMP bruker-installasjon.Klikk «fortsett» for å gå videre i GIMP-brukerinstallasjon.Klikk for å tilkoble dette ankeret med det valgte endepunktet.Klikk for å opprette et nytt anker (prøv SKIFT).Klikk for å opprette en ny komponent i banen.Klikk for å opprette en ny bane.Klikk for å opprette forhåndsvisningKlikk for å slette dette ankeret.Klikk for å sette inn et anker på banen (prøv SKIFT).Klikk for å gjøre denne noden vinklet.Klikk for å åpne banen.Opprett en ny bane for redigering.Klikk for å oppdatere forhåndsvisning +%s Klikk for å oppdatere selv om forhåndsvisningen allerede er oppdatertKlikk og dra for å endre formen på kurven (SKIFT: symmetrisk).Klikk og dra for å flytte ankeret rundt.Klikk og dra for å flytte ankerne rundt.Klikk og dra for å flytte komponenten rundt (prøv SKIFT).Klikk og dra for å flytte håndtaket rundt (prøv SKIFT).Klikk og dra for å flytte banen rundt.Klikk: utvalgKlikk: velg Dra: flyttKlipp ut resultatUtklippstavleKlippes til bunnlagKlippes til bildetKloneLukk %sLukk alle fanerLukk alle faner?Lukk denne fanenKopiér bane_FargerFargeFargebalanseFilter for fargevisningPipetteInformasjon om fargevelgerFarge_balanse...Farge _dithering:Fargebalanse virker kun på RGB-fargelag.Slett med fargeFargeindeks:Farge:_FargekartFarge_rom:_Farg...Farge_type for segmentFarge_type for utvalgetFargFarging virker kun på RGB-fargelag.Farg bildetFarg bildetFargekartFargekartbehandlerFargekartmenyKolonner:Kommentar:KommentarKon_trast:Kon_voluérKonfigurer filtre for fargevisningStill inn _utvidede inndataenheter...Still inn _rutenett...Konfigurer rutenettKonfigurer størrelse på rutenettStill inn tastatursnarveierStill inn _tastatusnarveier...Still inn valgt filterStill inn valgt filter: %sBekreft størrelse på bildetBekreft SkaléringBekreft tekstredigeringBekreft lukking av _ulagrede bilderSnarveier i konfliktKonisk (asymmetrisk)Konisk (symmetrisk)Koble sammen strøkKonstantBegrensningerKontekstKontekstavhengige markører er fine. De er påslått som standard. De krever litt ekstra, og du kan fint klare deg uten.FortsettBidrag avKonverterKonverter kantKonverter bilde til gråtonerKonverter bilde til indeksertKonverter bilde til indekserte fargerKonverter bilde til RGBKonvertér bildeKonvertérer til indeksert (trinn 2)...Konvertérer til indeksert (trinn 3)...Konvertérer til indeksert...ConvolveConvolve type %sKopier navngittKopier _synligKopierer fil «%s» fra «%s»...Opphavsrett:Korrupt segment %d i graderingsfil «%s».Kunne ikke opprette «%s»: %sKunne ikke opprette midlertidig fil for «%s»: %sKunne ikke slette «%s»: %sKunne ikke finne GIMPs hjelpleserKan ikke åpne «%s» for lesing: %sKan ikke åpne «%s» for skriving: %sKunne ikke åpne miniatyrfil «%s»: %sKunne ikke lese %d bytes fra «%s»: %sKunne ikke søke i XCF-fil: %sKunne ikke starte GIMPs hjelplesertillegg.Antall:_Beskjær lagOpprett ny dok_kOpprett ny malOpprett et nytt bildeOpprett et nytt lagOpprett ny malOpprett en ny visning for dette bildetOpprett et nytt bilde fra den valgte malenOpprett en ny malOpprett og rediger bilder eller fotografierOpprett og rediger banerOpprett bane fra tekstOpprett utvalg fra baneOppretter forhåndsvisning...Oppretter mappe «%s»...BeskjærBeskjær og endre størrelseInformasjon om beskjæring og endring av størrelseBeskjær bildeBeskjær lagBeskjær bildeBeskjær eller endre størrelse på et bildeBeskjær: Kun «trådkors»Klipp _utKlipp _ut navngittKubisk (Beste)Status _nåNåværende høyde:Kun dette lagetStatus nåNåværende bredde:MarkørMarkør_modus:Markør_visning:KurvetypeKurverKurver for indekserte lag kan ikke justeres.EgendefinertEgendefinert fargeEgendefinert graderingEgendefinert f_yllfarge for lerretKlipp utKlipp ut navngittCyanCyan:_Kopiér pensel_Kopiér kanalD_upliker gradering_Kopiér lag_Kopiér palett_Kopiér bane_Kopiér mønster_Kopiér mal...Farge for mørke ruterGjør kun mørkereStrek prikk prikk...Strek prikk...Strekmønster:Forvalgte streker:StipletDato:AvlusningStandard utseende i fullskjermmodusStandard utseende i normal modusStandard rutenettStandard _rutenett for bildeForvalgt _interpolasjon:Standard størrelse for forhåndsvisning av _lag og kanaler:Forvalgt _terskel:Slett ankerSlett anker_Slett lagmaskeSlett lagmaskeSlett objektSlett segmentSlett malSlett penselSlett kanalSlett fargeSlett graderingSlett lagSlett lagmaskeSlett palettSlett baneSlett mønsterSlett lagrede alternativer...Slett det valgte bufferetSlett valgt malSlett dette bildetSlett vektorerSletting av «%s» feilet: %sTette prikkerMindre metningMindre metning virker bare på RGB-fargelag.BeskrivelseDesignEnhetsstatusEnheterMenyerDialogmenyFirkantDifferanseDirekte fargerSlå av lagmaskeSlå av hurtigmaskeForkast tekstinformasjonSkjermVis navigeringVis _filter...Prosedyrer for skjermSkjermtype:Viser [%0.6f, %0.6f]OppløsAvstand:Avstand: %0.6fDitheringDel oppGjør en _fersk brukerinstallasjonErdu sikker på at du vil nullstille alle filter til standardverdier?Vil du virkelig nullstille alle verktøysalternativer til standardverdiene?Vil du erstatte den med bildet du lagrer?_Ikke lagreKan dokkesDokumenthist_orikkDokumenthistorikkDokumenterDokumentmeny_BlekBrennBlekBlek eller brenn strøkBlek/BrennDobbelstipletDra ankerDra ankereDra kurveDra håndtakDra baneDra: flyttTegn med blekkTegneobjektTegningsendringProsedyrer for tegnede objekterSlipp nytt lagSlipp ny baneSiden skrifttyper mangler, er ikke tekstfunksjonalitet tilgjengelig.Kast handlinger fra denne kontrollerenKopiér penselKopiér kanalD_upliker graderingKopiér lagKopiér palettKopiér baneKopiér mønsterKopiér den valgte malenUffda: kan ikke angre_Eksporter bane...Veldig l_itenKantoppførselKant_deteksjonRedigerRediger attributter for kanalRediger farge for kanalRediger fargepalettoppføringRediger fargekartoppføringRediger lagets attributterRedigér til lagmaskeRedigeringsmodusRediger palettfargeRediger baneegenskaperRedigér attributter for hurtigmaskeRedige hurtigmaskefargeRediger malRediger penselRediger kanalattributterRediger fargeRediger fargekartoppføring #%dRediger graderingRediger lagattributterRediger palettRediger baneegenskaperRedigér mønsterRedigeringsprosedyrerRediger valgt malEllipseutvalgTøm kanalTomt lagTøm baneTomt tekstlagTomt variabelnavn i omgivelsesfil %sFor_bedreSlå på hurtigmaskeSlå på dithering av _gjennomsiktighetSlå på denne kontrollerenAktiver denne for å vise nyttige GIMP-tips ved oppstart av programmet.Aktiver denne for å vise små verktøyforklaringer.EnormSkriv inn navn for flettet palettSkriv inn et navn for det lagrede alternativetSkriv inn et navn for denne bufferenSkriv inn et navn for denne malenSkriv inn et nytt navn for det lagrede alternativetSkriv inn lokasjon (URI):OmgivelserMapper for omgivelserJevn utUtjevning virker ikke på indekserte lag.Slett til bakgrunn eller gjennomsiktighetViskelærFeil_konsollFeilkonsollFeilkonsollmenyFeil under lagring av XCF-fil: %sFeil ved lesing av «%s» på linje %d: %sFeil under lesing av «%s»: %sFeil under lesing av penselfil «%s»: %sFeil under skriving av «%s»: %sFeil under skriving av XCF: %sFeil ved skriving til fil «%s»: %sFeil under skriving av «%s»: %sFeil under skriving til midlertidig fil for «%s»: %s Ingen fil ble opprettet.Feil under skriving til midlertidig fil for «%s»: %s @@ -409,7 +428,7 @@ Kontroller at dine skjermomgivelser er korrekt satt opp.GIMP hjelpleserGIMP er ikke korrekt installert for denne brukerprofilen. Profilinstallasjonen ble omgått ved bruk av «--no-interface»-flagget. For å gjennomføre profilinstallasjonen, kjør GIMP uten «--no-interface»-flagget.GIMP bruker en begrenset mengde med minne for å lagre bildedata, såkalt «flisbuffer». Du bør justere størrelsen på denne så den passer i minnet. Ta i betraktning mengden minne som brukes av andre prosesser.GIMP bruker en gtkrc-fil slik at du kan konfigurere den til å se annerledes ut enn andre GTK applikasjoner.GIMP versjonGIMP vil advare brukeren om at det er gjort forsøk på å opprette et bilde som vil bruke mer minne enn det som er spesifisert her.GammaGenereltGenerelt bare en sak for 8-bit-skjermer. Dette setter minimalt antall systemfarger som GIMP skal bruke.Generér optimal palettHent oppløsning for monitorGigantiskProsedyrer for gimprc_GlasseffekterGraderingGraderingsbehandlerMeny for graderingsbehandlerGraderingsmapperFarge på venstre endepunkt av graderingsssegmentFarge på høyre endepunkt av graderingssegmentBrukergrensesnitt for graderingerGradering:GraderingerGraderingsmenyTrekk fra pikselverdierFlett pikselverdierGråGråtoneGrønnGrønn:RutenettRom mellom rutenettlinjerØk kanalØk utvalgØk utvalget medInnrettingslinjeInnrettingslinje- og rutenettilpasningProsedyrer for innrettingslinjerHSVHSV (%0.3f, %0.3f, %0.3f)HSV (glød _mot klokken)HSV (_glød med klokken)HTML-notasjon:_Høyde:Hjelp_leser som skal brukes:Posisjon for håndtak: %0.6fHard kantHardt lysHardhetHardhet:HøydeHøyde:HjelpHjelp leserHjelpesystemHjelp_leser starter ikkeHjelp_leser ikke funnetHjelpeprosedyrerHex:Lyse tonerHint til _dokkene:Hint til _verktøykassen:HintingHinting endrer skrifttypenes omriss for å lage tydeligere tekst ved små størrelserHistogra_mHistogramHistogramskalaHistorikkHorisontalHorisontal forskyvning av den første linja i rutenettet. Dette kan være et negativt tall.Horisontal linjeavstand for rutenettet.Hvor mange filnavn til nylig åpnede filer skal vises i filmenyen.GlødGlød/MetningGlød-metning virker bare på RGB-fargelag.Glød og metning...Glød:Ekstra storI_kon og tekst_Bilde_Importer bane...I_nterpolasjon:I_ntervall:IkonIkon og beskrIkon og tekstHvis tilgjengelig er hint fra skrifttypen brukt, men du kan foretrekke å alltid bruke automatisk hinter.Gjør at flytteverktøyet endrer det aktivet laget eller den aktive banen når et lag eller bane blir valgt. Dette pleide å være forvalgt oppførsel i tidligere versjoner.Hvis du ikke lagrer bildet, vil endringer fra de siste %s bli tapt.Hvis du avslutter nå, vil disse endringene gå tapt.Ugyldig variabelnavn i omgivelsesfil %s: %sBildeBilde + rutenettBildebehandlerInformasjon om bildeBildemenyBildestørrelseStatuslinjeformat for bildeBildemalerBildeminiatyrerFormat for for bildetittel og statuslinjeTittelformat for bildeBildevinduoppførselBildevinduerBildet inneholder ingen synlige lagBildefilBildemaskeBildeoppløsningen er utenfor grensene, bruker standard oppløsning i stedet.BildestørrelseBildekildeBildetypeBilderBildemenyAlternativer for importImporter palettImporter banerImporter baner fra SVGImporter en ny palettImporter palettImporter banerImportert baneBle_kk_InverterIn_verter maskeInkrementellInnrykk:Innrykk på første linjeIndeks:IndeksertIndeksert fargeIndeksert fargeomdannelseIndekserte fargelag er alltid skalert uten interpolering. Den valgte interpolasjonstypen vil bare ha betydning for kanaler og masker.InformasjonsvinduInitielt zoom_forhold:Initialiser lagets maske til:Initierer programtilleggInitierer programtillegg: «%s» -BlekkInndatakontrollereInndataenheterNivå inn:Sett inn ankerInstaller et privat fargekart; kan være nyttig på åttebitersskjermer.Installasjonen feilet. Kontakt systemadministrator.Installasjonen er vellykket. Klikk «Fortsett».Øyeblikkelig oppdateringIntelligent _saksIntensitet: %0.3f Ugjennomsiktighet: %0.3fGrensesnittIntern GIMP prosedyreInterne prosedyrerInterpolasjon:KryssKryss med dette utvalgetKryss (trådkors)Kryss (prikker)Ugyldig UTF-8-strengUgyldig UTF-8 data i fil «%s».Ugyldig UTF-8-streng i XCF-fil.Ugyldig UTF-8-streng i penselfil «%s».Ugyldig UTF-8-streng i graderingsfil «%s».Ugyldig UTF-8-streng i palettfil «%s»Ugyldig UTF-8-streng i mønsterfil «%s».Ugyldig tegnsekvens i URIUgyldig snarvei.Ugyldig bredde eller høyde. Begge må være positive.InverterInvertér kanalSnu om utvalgInverter virker ikke på indekserte lag.Invertér utvalgEr dette hva du ønsker å gjøre?Det ser ut til at du har brukt GIMP 2.0 før. Egenskaper for elementElementsynlighetJuster:Behold gjennomsiktighetBehold overBehold bredde- og høydeforhold %sBehold bredde- og høydeforholdBehold bredde- og høydeforhold %sBehold høyde %sBehold gjennomsiktighetBehold bredde %sTast nedTast ned (alt)Tast ned (kontroll + alt)Tast ned (kontroll)Tast ned (skift + alt)Tast ned (skift + kontroll + alt)Tast ned (skift + kontroll)Tast ned (skift)Tast venstreTast venstre (alt)Tast venstre (kontroll + alt)Tast venstre (kontroll)Tast venstre (skift + alt)Tast venstre (skift + kontroll + alt)Tast venstre (skift + kontroll)Tast venstre (skift)Tast høyreTast høyre (alt)Tast høyre (kontroll + alt)Tast høyre (kontroll)Tast høyre (skift + alt)Tast høyre (skift + kontroll + alt)Tast høyre (skift + kontroll)Tast høyre (skift)Tast oppTast opp (alt)Tast opp (kontroll + alt)Tast opp (kontroll)Tast opp (skift + alt)Tast opp (skift + Kontroll + Alt)Tast opp (skift + kontroll)Tast opp (skift)Tastatursnarveier kan omdefineres dynamisk i GIMP. menurc er et dump av din konfigurasjon som gjør den blir husket til neste økt. Du kan redigere denne filen hvis du vil, men det er mye lettere å definere tastene fra GIMP. Sletting av denne filen vil gjenopprette standard tastatursnarveier.TastaturTastaturhendelserTastatursnarveierVTHVe_nstre endepunkts farge...LandskapStorStor (256x256)Større forhåndsvisningerSiste feil:LagLag «%s» har ingen gjennomsiktighet. Lag ble plassert ovenfor.LagattributterLag_grensestørrelse...Fylltype for lagLagmaske til utvalgVelg lagLagstørrelseLag_modus_Navn på lag:Laget kan ikke senkes lavere.Laget kan ikke løftes høyere.Laget er allerede nederst.Laget er allerede øverst.Lag til bildestørrelseLag til _bunnenLag til _bildestørrelseLag til _toppenLagets _alfakanalLagLagmenyAlternativer for fletting av lag_Venstre endepunkts farge...VenstrejustertLengde:La GIMP forsøke å gjenopprette din forrige lagrede økt ved hver oppstart.NivåerNivåer for indekserte tengnede objekter kan ikke justeres.Farge for lyse ruterGjør kun lysereLinjeLinje- +BlekkInndatakontrollereInndataenheterNivå inn:Sett inn ankerInstaller et privat fargekart; kan være nyttig på åttebitersskjermer.Installasjonen feilet. Kontakt systemadministrator.Installasjonen er vellykket. Klikk «Fortsett».Øyeblikkelig oppdateringIntelligent _saksIntensitet: %0.3f Ugjennomsiktighet: %0.3fGrensesnittIntern GIMP prosedyreInterne prosedyrerInterpolasjon:KryssKryss med dette utvalgetKryss (trådkors)Kryss (prikker)Ugyldig UTF-8-strengUgyldig UTF-8 data i fil «%s».Ugyldig UTF-8-streng i XCF-fil.Ugyldig UTF-8-streng i penselfil «%s».Ugyldig UTF-8-streng i graderingsfil «%s».Ugyldig UTF-8-streng i palettfil «%s»Ugyldig UTF-8-streng i mønsterfil «%s».Ugyldig tegnsekvens i URIUgyldig snarvei.Ugyldig bredde eller høyde. Begge må være positive.InverterInvertér kanalSnu om utvalgInverter virker ikke på indekserte lag.Invertér utvalgEr dette hva du ønsker å gjøre?Det ser ut til at du har brukt GIMP 2.0 før. Egenskaper for elementElementsynlighetJuster:Behold gjennomsiktighetBehold overBehold bredde- og høydeforhold %sBehold bredde- og høydeforhold %sBehold høyde %sBehold gjennomsiktighetBehold bredde %sTast nedTast ned (alt)Tast ned (kontroll + alt)Tast ned (kontroll)Tast ned (skift + alt)Tast ned (skift + kontroll + alt)Tast ned (skift + kontroll)Tast ned (skift)Tast venstreTast venstre (alt)Tast venstre (kontroll + alt)Tast venstre (kontroll)Tast venstre (skift + alt)Tast venstre (skift + kontroll + alt)Tast venstre (skift + kontroll)Tast venstre (skift)Tast høyreTast høyre (alt)Tast høyre (kontroll + alt)Tast høyre (kontroll)Tast høyre (skift + alt)Tast høyre (skift + kontroll + alt)Tast høyre (skift + kontroll)Tast høyre (skift)Tast oppTast opp (alt)Tast opp (kontroll + alt)Tast opp (kontroll)Tast opp (skift + alt)Tast opp (skift + Kontroll + Alt)Tast opp (skift + kontroll)Tast opp (skift)Tastatursnarveier kan omdefineres dynamisk i GIMP. menurc er et dump av din konfigurasjon som gjør den blir husket til neste økt. Du kan redigere denne filen hvis du vil, men det er mye lettere å definere tastene fra GIMP. Sletting av denne filen vil gjenopprette standard tastatursnarveier.TastaturTastaturhendelserTastatursnarveierVTHVe_nstre endepunkts farge...LandskapStorStor (256x256)Større forhåndsvisningerSiste feil:LagLag «%s» har ingen gjennomsiktighet. Lag ble plassert ovenfor.LagattributterLag_grensestørrelse...Fylltype for lagLagmaske til utvalgVelg lagLagstørrelseLag_modus_Navn på lag:Laget kan ikke senkes lavere.Laget kan ikke løftes høyere.Laget er allerede nederst.Laget er allerede øverst.Lag til bildestørrelseLag til _bunnenLag til _bildestørrelseLag til _toppenLagets _alfakanalLagLagmenyAlternativer for fletting av lag_Venstre endepunkts farge...VenstrejustertLengde:La GIMP forsøke å gjenopprette din forrige lagrede økt ved hver oppstart.NivåerNivåer for indekserte tengnede objekter kan ikke justeres.Farge for lyse ruterGjør kun lysereLinjeLinje- mellomrom:Strekbredde:Linje_stil:Linjestil som brukes i rutenettet.LineærLenket elementLastLast kurverLaste nivåerLast _høyre farge fraLes kurveinnstillingene fra filHent nivåinnstillinger fra filHent tekst fra filLaster forhåndsvisning...Plassering:LogaritmiskLange strekerSer etter datafilerSenk kanalSenk kanal til bunnenSenk kanal til _bunnenSenk lagSenk lag til bunnenSenk baneSenk banen til bunnenSenk bane til _bunnenSenk kanalSenk kanal til bunnenSenk lagSenk lag til bunnenSenk baneSenk bane til bunnen_Forstørr_MesterFlytt til skjerm..._KartMagentaMagenta:ForstørrGjør _gjennomsiktigHåndter lastbare modulerHastighet for marsjerende _maur:Maskeugjennomsiktighet:Maskér _valgte områderMasker _ikke-valgte områderMatrise:Maks dybde:Maksimal filstørrelse for miniatyrer:Maksimal bildestørrelse for _nye bilder:Maksimal fargedifferanseMaksimalt angre_minne:Middelverdi:MålMål avstander og vinklerMål avstander og vinklerMål linjalene og skriv inn lengdene:Median:MiddelsMiddels strekerFlett sammen _nedoverFlett nedFlett lagFlett sammen palettFlett sammen synlige lagFlett sammen synlige banerFle_tt sammen synlige lagFlett sammen _synlige lagFlett sammen _synlige banerFlett sammen lagFlett sammen paletterFlett sammen vektorerMeldingsprosedyrerMelding gjentatt %d ganger.Melding gjentatt en gang.Meldinger er videresendt til stderr.MellomtonerOverfør brukerinnstillingerMinimalt antall _angrenivåer:ForskjelligHjørneModusModus:Endre valgt fargeEndre fargenivåer for valgt områdeEndre alle fargerEndre linjeavstand i rutenettModulmapperModulhåndtererModulbaneModulerMusemarkørerMusehjulMusehjulhendelserFlyttFlytt ankereFlytt kanalFlytt flytende utvalgFlytt innrettingslinjeFlytt innrettingslinje: Flytt lagFlytt lagmaskeFlytt baneFlytt utvalgFlytt tekstlagFlytteverktøyFlytt elementFlytt lag og utvalgFlytt utvalgFlytt dette lagetFlytt denne banenFlytt valgt filter nedFlytt valgt filter oppFlytt til skjerm...Flytt: Multipliser_Antall farger:Na_vigering_NavigasjonsvinduStørrelse for forhåndsvisning av _navigering:NavnNavn:NavigeringNy kanalFarge på ny kanalNye kanalalternativerNy farge fra _bakgrunnenNy farge fra _forgrunnenNytt bildeNytt lagNy baneAlternativer for ny baneNy malNy penselNy kanalNy kanal med verdier fra sist gangNy kanal...Ny farge fra _bakgrunnenNy farge fra _forgrunnenNy graderingNy importeringNytt lagNytt lag med verdier fra sistgangNytt lag...Ny palettNy bane med verdier fra sistgangNy bane...Nytt mønsterNye vektorerIngen pensler tilgjengelig for bruk med dette verktøyet.Ingen filter valgtIngen lineære gradienter funnet i «%s»Ikke lenger tilgjengeligIngen baner funnet i «%s»Ingen baner funnet i bufferetIngen mønstre tilgjengelig for denne operasjonen.Ingen utvalgIngen utvalg til stykning.Ingen miniatyrerUjustertIngenIngen (Raskest)NormalNormal (128x128)Normale prikkerNormalt vinduIkke en vanlig fil.Ikke nok synlige lag til å gjøre sammenfletting. Det må være minst to.Ikke nok synlige baner til å gjøre sammenslåing. Det må være minst to.Antall _prosessorer som skal brukes:Antall rutenettlinjerAntall lag:A_nnet...ForskyvningForskyv kanalTegning på avstandForskyv lagForskyv lagmaskeForskyv med x/_2, y/2Avstand:På diskPå flerprosessormaskiner, hvis GIMP ble kompilert med --enable-mp, angir dette hvor mange prosessorer GIMP skal bruke samtidig.Bare i minneÅp_ne som lag...UgjennomsiktighetUgjennomsiktighet:ÅpneÅpne bildeÅpne bilde som lagÅpne lokasjonÅpne tekstfil (UTF-8)Åpne lo_kasjon...Åpne _sisteVindu for åpning av bildeÅpne penselvalgÅpne skriftvalgÅpne graderingsvalgÅpne palettvalgÅpne mønstervalgÅpne valgt oppføringÅpning av «%s» feilet: %sÅpning av «%s» feilet: %sAlternativer: @@ -460,6 +479,6 @@ GIMP %d.%d-brukerinstallasjonenGjør at menyen automatisk følger bildet du jobber på.Gjør at GIMP vil vise snarveistaster i menyer.Gjør at alle tegneverktøy viser gjeldende pensels omriss.Hvis aktivert, vil et bilde bli aktivt når bildevinduet mottar fokus. Dette er nyttig for vindushåndtere som bruker «klikk for fokus».Gjør at dialoger vil vise en hjelpekanpp som gir tilgang til den relaterte hjelpesiden. Uten denne knappen, er hjelpesiden fremdeles tilgjengelig ved å trykke F1.Gjør at menyer kan løsnes.Gjør at F1-knappen vil åpne en hjelpeleser.Gjør at GIMP ikke vil lagre bilder som er uendret.Gjør at GIMP vil bruke egne informasjonsvinduer for hver bildevisning.Er dette slått på, vil X-tjeneren bli spurt etter musepekerens posisjon ved hver eneste bevegelse, framfor å stole på posisjonshintet. Det betyr at tegning med store pensler vil bli mer presist, men det kan føre til dårligere ytelse. Snodig nok vil denne funksjonen føre til bedre ytelse på noen X-tjenere.Gjør at markøren vil bli vist over bildet når et tegneverktøy brukes.Gjør at rutenettet er synlig som standard. Dette kan også endres med «Vis->Vis rutenett»-kommandoen.Gjør at innrettingslinjene er synlige som standard. Dette kan også endres med «Vis->Vis innerttingslinjer»-kommandoen.Vil endre størrelsen på bildevinduet automatisk når du zoomer inn og ut i bildet.Vil endre størrelsen på bildevinduet automatisk etter som endringer skjer i det faktiske bildet.Gjør at laggrensen er synlig som standard. Dette kan også endres med «Vis->Vis laggrense»-kommandoen.Gjør menylinja synlig som standard. Dette kan også endres med «Vis->Vis menylinje»-kommandoen.Gjør linjalene synlige som standard. Dette kan også endres med «Vis->Vis linjaler»-kommandoen.Gjør rullefeltene synlige som standard. Dette kan også endres med «Vis->Vis rullefelt»-kommandoen.Gjør at valgt pensel vil bli brukt for med alle verktøy.Gjør at valgt gradering vil bli brukt med alle verktøy.Gjør at valgt mønster vil bli brukt med alle verktøy.Gjør at utvalg er synlige som standard. Dette kan også endres med «Vis->Vis utvalg»-kommandoen.Gjør statuslinja synlige som standard. Dette kan også endres med «Vis->Vis statuslinje»-kommandoen.Hvis påslått, vil dette gjøre at hvert piksel i et bilde blir koblet til en piksel på skjermen.Gjør at hele bildet er synlig når det åpnes. Ellers vil det bli vist med en 1:1-skala.Gjør at du kan endre hurtigtaster for menyvalg ved å trykke en tastekombinasjon mens menyvalget er markert.HvitHvitbalanse virker bare på RGB-fargelag.BreddeBredde:VindushåndteringVindushåndteringshintVindusposisjonerSkriver «%s» XXCF-feil: ustøttet XCF filversjon %d møttXCF-advarsel: versjon 0 av XCF filformatet lagret ikke indekserte fargekart riktig. -Erstatter gråtonekart.YGulGul:Du prøver å opprette et bilde med størrelse %s.Noen menyer kan du slippe i dokken.Du skal ha mottatt en kopi av GNU General Public License sammen med dette programmet. Hvis ikke, skriv til Free Software Foundation Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.Du måtte starte GIMP på nytt for at disse endringene skal tre i kraft:Din GIMP-installasjon er uferdig:Dine innstillinger om inndataenheter vil bli nullstilt til standardverdiene neste gang du starter GIMP.Dine tastatursnarveier til bli nullstilt til standardverdiene neste gang du starter GIMP.Ditt vindusoppsett vil bli nullstilt til standardverdiene neste gang du starter GIMP.Oppførsel ved zooming og endring av størrelseZoom 1:1Zoom altZoom innZoom utZoomforholdZoomforhold:Zoom _altZoom _innZoom _utZoom altZoom faktor: %d:1Zoom bildet når vindusstørrelsen endresZoom innZoom inn og utForminskeZoom:[ Basisbilde ]_Om_Hent_Legg til farge fra bakgrunnen_Legg til farge fra forgrunnen_Legg til fane_Legg til i utvalg_Avanserte alternativer_Luftpensel_AltFor_ankre lag_Antialiasing_Vilkårlig Rotasjon..._Artistisk_Aspekt_Auto_B_Bakgrunnsfarge_Bakgrunnsfarge:_Svart (helt gjennomsiktig)_Blandingstype for segment_Blandingsfunksjon for utvalget_Utydeliggjør_Lysstyrke:_Pensel_Pensler_Pensler, mønstre og graderinger_Bøttefylling_Buffere_Etter farge_Etter fargeutvalg_C_Endestil:_Kanaler_Tøm feil_Tøm angre-historikk_Klone_Lukk_Lukk fane_Skyer_Fargeverktøy_Farger_Still inn farge og ugjennomsiktighet..._Kontekst_Kontekst hjelp_Kopiér_Kopier navngitt_Opprett bilde fra mal..._Beskjær og endre størrelse_Beskjær bilde_Bøyd_Kurver...Farge for _mørke ruter_Standard farger_Slett pensel_Slett buffer_Slett kanal_Slett farge_Slett gradering..._Slett bilde_Slett lag_Slett palett_Slett bane_Slett mønster..._Slett lagrede alternativer_Slett segment_Slett utvalg_Slett malMindre _metningLø_sne fane_Enhetsstatus_Menyer_Forkast informasjon om tekstFor_vrengninger_Punkt for punkt_KopiérR_edigerR_ediger pensel...R_ediger kanalattributter...R_ediger farge...R_ediger gradering...R_ediger lagattributter...R_ediger palett...R_ediger baneinnstillinger...R_ediger mønster..._Rediger mal..._Ellipseutvalg_Slå på lag- og kanalforhåndsvisninger_Enorm_Jevn ut_Viskelær_Forgrunnsfarge_Fil_Fyll med:_Tilpass bilde i vindu_Flat ut bilde_Vend_Vend segment_Vend utvalg_Flyt_Skrift_Skrifter_Forgrunnsfarge:_Fritt utvalg_GGe_nerelt_Gigantisk_Gradering_Graderinger_Gråtone_Gråtonekopi av lag_Øk...Innrettings_linjer_Hardhet_Hjelp_Horisontal:_Glød:Ekstra sto_r_Ikon_Ikon:_Bilde_Bilder_Importer_Importer palett..._Indeksert..._Informasjonsvindu_Kryss med utvalg_Invertér_Koblingsstil:_Stor_Lag_Lag_Lag, kanaler og baner_Venstre endepunkt_Venstre nabos høyre endepunkt_Nivåer...Farge for _lyse ruter_Lyseffekter_Lysverdi:Strek_stil:_Lineær_LenketHent _venstre farge fra_Senk kanal_Senk lag_Senk bane_M_Manuelt_Kart_MaskerMaske til _utvalg_Maksimalt antall farger:_Mål_Middels_Flett sammen paletter..._Flett sammen importerte baner_Overfør brukerinnstillingene fra GIMP 2.0D_iverse ting_Kantgrense:_Modus_Modulhåndterer_Flytt_Navn:N_atur_Ny pensel_Ny kanal_Ny kanal..._Nytt innslag..._Ny gradering_Nytt lag_Nytt lag..._Ny palett_Ny bane_Ny bane..._Nytt mønster_Ny mal..._Ny visning_Ny bane..._Neste tips_Støy_IngenForskyvning..._Ugjennomsiktighet_Åpne bilde_Åpne..._Fyllfarge_Tegneverktøy_Malerpensel_Palett_Lim inn_Lim inn buffer_Lim inn navngitt..._Baner_Mønster_Perspektiv_Posterisér..._Innstillinger_ForhåndsvisStørrelse på _forhåndsvisning_Forrige tips_Utskriftsstørrelse..._Egenskaper_Hurtigmaske aktiv_Avslutt_R_RGB_Radius_Løft kanal_Løft lag_Løft bane/_Løft visninger_Løft eller åpne bilde_Tilordne snarvei på nytt_Rektangelutvalg_Gjenta_Gjenta %s_Oppdater pensler_Oppdater graderinger_Oppdater paletter_Oppdater mønstre_Fjern ubrukte farger fra endelig palett_Rendring_Erstatt_Kopier segment..._Kopier utvalg..._Last skrifttyper på nytt_Nullstill rekkefølge og synlighet_Nullstill lagrede innstillinger for inndataenheter_Nullstill lagrede tastatursnarveier til standardverdier ved oppstartNullstill lagrede vindusposisjoner til standardverdier_Gjenopprett alternativer fra_Høyre endepunkt_Høyre nabos venstre endepunkt_Rotér_Metning:_LagreLagre v_enstre farge til_Lagre alternativer til_Lagre innstillinger for inndataenheter ved avslutning_Lagre tastatursnarveier ved avslutning_Lagre vindusposisjoner ved avslutning_Skalér_Skalér bilde..._Skalér lag..._Skalér importerte baner så de passer bildestørrelsen_Velg_Utvalg_Utvalgsbehandler_Utvalgsverktøy_FormGjør _skarpereVis bilde_utvalg_Vis i verktøykasse_Sinusformet_Liten_Tilsmuss_Innrettingsdistanse:_Strek opp utvalg_Strek opp utvalg_Trekk fra utvalg_Fanestil_Mal:M_aler_Tekst_Terskel...Ekstra lite_n_Dagens tips_Verktøy_Verktøy_Overfør lagets alfakanal_Transformér_Transformasjonsverktøy_Angre_Angre %s_Vertikal:_Vis_SynligNe_tt_Nettleser som skal brukes:_Hvit (helt ugjennomsiktig)_Hvitbalanse_Bredde:_Bryt rundt_X-oppløsning:_X:/_Utvid_Y_Y-oppløsning:_Y:_Zoom_Zoom (%s)fargerkopierdpiforventet «ja» eller «nei» for bolsk tegn %s, fikk «%s»fatal feil i tolkinggråtonegråtone-tomtommetommerindeksertindeksert-tomugyldig UTF-8-strengugyldig verdi «%ld» for ikontypeugyldig verdi «%ld» for tegn %sugyldig verdi «%s» for ikontypeugyldig verdi «%s» for tegn %smillimetermillimetreminuttenei/tprosentpicapicaspikselpikslerpiksler/%apiksler/%spunktpunktersekundenetips-locale:noKjartan Maraas +Erstatter gråtonekart.YGulGul:Du prøver å opprette et bilde med størrelse %s.Noen menyer kan du slippe i dokken.Du skal ha mottatt en kopi av GNU General Public License sammen med dette programmet. Hvis ikke, skriv til Free Software Foundation Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.Du måtte starte GIMP på nytt for at disse endringene skal tre i kraft:Din GIMP-installasjon er uferdig:Dine innstillinger om inndataenheter vil bli nullstilt til standardverdiene neste gang du starter GIMP.Dine tastatursnarveier til bli nullstilt til standardverdiene neste gang du starter GIMP.Ditt vindusoppsett vil bli nullstilt til standardverdiene neste gang du starter GIMP.Oppførsel ved zooming og endring av størrelseZoom 1:1Zoom altZoom innZoom utZoomforholdZoomforhold:Zoom _altZoom _innZoom _utZoom altZoom faktor: %d:1Zoom bildet når vindusstørrelsen endresZoom innZoom inn og utForminskeZoom:[ Basisbilde ]_Om_Hent_Legg til farge fra bakgrunnen_Legg til farge fra forgrunnen_Legg til fane_Legg til i utvalg_Avanserte alternativer_Luftpensel_AltFor_ankre lag_Antialiasing_Vilkårlig Rotasjon..._Artistisk_Aspekt_Auto_B_Bakgrunnsfarge_Bakgrunnsfarge:_Svart (helt gjennomsiktig)_Blandingstype for segment_Blandingsfunksjon for utvalget_Utydeliggjør_Lysstyrke:_Pensel_Pensler_Pensler, mønstre og graderinger_Bøttefylling_Buffere_Etter farge_Etter fargeutvalg_C_Endestil:_Kanaler_Tøm feil_Tøm angre-historikk_Klone_Lukk_Lukk fane_Skyer_Fargeverktøy_Farger_Still inn farge og ugjennomsiktighet..._Kontekst_Kontekst hjelp_Kopiér_Kopier navngitt_Opprett bilde fra mal..._Beskjær og endre størrelse_Beskjær bilde_Bøyd_Kurver...Farge for _mørke ruter_Standard farger_Slett pensel_Slett buffer_Slett kanal_Slett farge_Slett gradering..._Slett bilde_Slett lag_Slett palett_Slett bane_Slett mønster..._Slett lagrede alternativer_Slett segment_Slett utvalg_Slett malMindre _metningLø_sne fane_Enhetsstatus_Menyer_Forkast endringer_Forkast informasjon om tekstFor_vrengninger_Punkt for punkt_KopiérR_edigerR_ediger pensel...R_ediger kanalattributter...R_ediger farge...R_ediger gradering...R_ediger lagattributter...R_ediger palett...R_ediger baneinnstillinger...R_ediger mønster..._Rediger mal..._Ellipseutvalg_Slå på lag- og kanalforhåndsvisninger_Enorm_Jevn ut_Viskelær_Forgrunnsfarge_Fil_Fyll med:_Tilpass bilde i vindu_Flat ut bilde_Vend_Vend segment_Vend utvalg_Flyt_Skrift_Skrifter_Forgrunnsfarge:_Fritt utvalg_GGe_nerelt_Gigantisk_Gradering_Graderinger_Gråtone_Gråtonekopi av lag_Øk...Innrettings_linjer_Hardhet_Hjelp_Horisontal:_Glød:Ekstra sto_r_Ikon_Ikon:_Bilde_Bilder_Importer_Importer palett..._Indeksert..._Informasjonsvindu_Kryss med utvalg_Invertér_Koblingsstil:_Stor_Lag_Lag_Lag, kanaler og baner_Venstre endepunkt_Venstre nabos høyre endepunkt_Nivåer...Farge for _lyse ruter_Lyseffekter_Lysverdi:Strek_stil:_Lineær_LenketHent _venstre farge fra_Senk kanal_Senk lag_Senk bane_M_Manuelt_Kart_MaskerMaske til _utvalg_Maksimalt antall farger:_Mål_Middels_Flett sammen paletter..._Flett sammen importerte baner_Overfør brukerinnstillingene fra GIMP 2.0D_iverse ting_Kantgrense:_Modus_Modulhåndterer_Flytt_Navn:N_atur_Ny pensel_Ny kanal_Ny kanal..._Nytt innslag..._Ny gradering_Nytt lag_Nytt lag..._Ny palett_Ny bane_Ny bane..._Nytt mønster_Ny mal..._Ny visning_Ny..._Neste tips_Støy_IngenForskyvning..._Ugjennomsiktighet_Åpne bilde_Åpne..._Fyllfarge_Tegneverktøy_Malerpensel_Palett_Lim inn_Lim inn buffer_Lim inn navngitt..._Baner_Mønster_Perspektiv_Posterisér..._Innstillinger_ForhåndsvisStørrelse på _forhåndsvisning_Forrige tips_Utskriftsstørrelse..._Egenskaper_Hurtigmaske aktiv_Avslutt_R_RGB_Radius_Løft kanal_Løft lag_Løft bane/_Løft visninger_Løft eller åpne bilde_Tilordne snarvei på nytt_Rektangelutvalg_Gjenta_Gjenta %s_Oppdater pensler_Oppdater graderinger_Oppdater paletter_Oppdater mønstre_Fjern ubrukte farger fra endelig palett_Rendring_Erstatt_Kopier segment..._Kopier utvalg..._Last skrifttyper på nytt_Nullstill rekkefølge og synlighet_Nullstill lagrede innstillinger for inndataenheter_Nullstill lagrede tastatursnarveier til standardverdier ved oppstartNullstill lagrede vindusposisjoner til standardverdier_Gjenopprett alternativer fra_Høyre endepunkt_Høyre nabos venstre endepunkt_Rotér_Metning:_LagreLagre v_enstre farge til_Lagre alternativer til_Lagre innstillinger for inndataenheter ved avslutning_Lagre tastatursnarveier ved avslutning_Lagre vindusposisjoner ved avslutning_Skalér_Skalér bilde..._Skalér lag..._Skalér importerte baner så de passer bildestørrelsen_Velg_Utvalg_Utvalgsbehandler_Utvalgsverktøy_FormGjør _skarpereVis bilde_utvalg_Vis i verktøykasse_Sinusformet_Liten_Tilsmuss_Innrettingsdistanse:_Strek opp utvalg_Strek opp utvalg_Trekk fra utvalg_Fanestil_Mal:M_aler_Tekst_Terskel...Ekstra lite_n_Dagens tips_Verktøy_Verktøy_Overfør lagets alfakanal_Transformér_Transformasjonsverktøy_Angre_Angre %s_Vertikal:_Vis_SynligNe_tt_Nettleser som skal brukes:_Hvit (helt ugjennomsiktig)_Hvitbalanse_Bredde:_Bryt rundt_X-oppløsning:_X:_Utvid_Y_Y-oppløsning:_Y:_Zoom_Zoom (%s)fargerkopierdpiforventet «ja» eller «nei» for bolsk tegn %s, fikk «%s»fatal feil i tolkinggråtonegråtone-tomtommetommerindeksertindeksert-tomugyldig UTF-8-strengugyldig verdi «%ld» for ikontypeugyldig verdi «%ld» for tegn %sugyldig verdi «%s» for ikontypeugyldig verdi «%s» for tegn %smillimetermillimetreminuttenei/tprosentpicapicaspikselpikslerpiksler/%apiksler/%spunktpunktersekundenetips-locale:noKjartan Maraas Sigurd Gartmann Runar Ingebrigtsenverdi for tegn %s er ikke en gyldig UTF-8-strengunder lesing av «%s»: %s \ No newline at end of file diff -uraN gimp-2.2.0/po/no.po gimp-2.2.1/po/no.po --- gimp-2.2.0/po/no.po 2004-12-19 03:11:38.000000000 +0100 +++ gimp-2.2.1/po/no.po 2004-12-28 16:58:34.000000000 +0100 @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: gimp 2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-19 03:11+0100\n" -"PO-Revision-Date: 2004-12-04 17:13+0100\n" +"POT-Creation-Date: 2004-12-28 16:58+0100\n" +"PO-Revision-Date: 2004-12-21 21:49+0100\n" "Last-Translator: Sigurd Gartmann \n" "Language-Team: Norwegian \n" "MIME-Version: 1.0\n" @@ -1033,11 +1033,11 @@ msgid "Remove dangling entries" msgstr "Fjern hengende oppføringer" -#: app/actions/documents-commands.c:252 app/actions/file-commands.c:163 +#: app/actions/documents-commands.c:251 app/actions/file-commands.c:163 #: app/dialogs/file-open-dialog.c:198 app/dialogs/file-open-dialog.c:249 #: app/dialogs/file-open-location-dialog.c:193 -#: app/display/gimpdisplayshell-dnd.c:332 app/widgets/gimplayertreeview.c:802 -#: app/widgets/gimptoolbox-dnd.c:123 +#: app/display/gimpdisplayshell-dnd.c:334 app/widgets/gimplayertreeview.c:804 +#: app/widgets/gimptoolbox-dnd.c:125 #, c-format msgid "" "Opening '%s' failed:\n" @@ -1156,9 +1156,8 @@ #. GIMP_STOCK_COPY_VISIBLE, #: app/actions/edit-actions.c:93 -#, fuzzy msgid "Copy _Visible" -msgstr "_Synlig" +msgstr "Kopier _synlig" #: app/actions/edit-actions.c:98 msgid "_Paste" @@ -1546,115 +1545,115 @@ msgid "Zoom all" msgstr "Zoom alt" -#: app/actions/gradient-editor-actions.c:582 +#: app/actions/gradient-editor-actions.c:589 msgid "_Blending Function for Segment" msgstr "_Blandingstype for segment" -#: app/actions/gradient-editor-actions.c:584 +#: app/actions/gradient-editor-actions.c:591 msgid "Coloring _Type for Segment" msgstr "Farge_type for segment" -#: app/actions/gradient-editor-actions.c:587 +#: app/actions/gradient-editor-actions.c:594 msgid "_Flip Segment" msgstr "_Vend segment" -#: app/actions/gradient-editor-actions.c:589 +#: app/actions/gradient-editor-actions.c:596 msgid "_Replicate Segment..." msgstr "_Kopier segment..." -#: app/actions/gradient-editor-actions.c:591 +#: app/actions/gradient-editor-actions.c:598 msgid "Split Segment at _Midpoint" msgstr "Del segmentet ved _midtpunktet" -#: app/actions/gradient-editor-actions.c:593 +#: app/actions/gradient-editor-actions.c:600 msgid "Split Segment _Uniformly..." msgstr "Splitt segmentet _enhetlig..." -#: app/actions/gradient-editor-actions.c:595 +#: app/actions/gradient-editor-actions.c:602 msgid "_Delete Segment" msgstr "_Slett segment" -#: app/actions/gradient-editor-actions.c:597 +#: app/actions/gradient-editor-actions.c:604 msgid "Re-_center Segment's Midpoint" msgstr "S_entrer segmentets midtpunkt igjen" -#: app/actions/gradient-editor-actions.c:599 +#: app/actions/gradient-editor-actions.c:606 msgid "Re-distribute _Handles in Segment" msgstr "Distribuer _håndtak i segmentet igjen" -#: app/actions/gradient-editor-actions.c:604 +#: app/actions/gradient-editor-actions.c:611 msgid "_Blending Function for Selection" msgstr "_Blandingsfunksjon for utvalget" -#: app/actions/gradient-editor-actions.c:606 +#: app/actions/gradient-editor-actions.c:613 msgid "Coloring _Type for Selection" msgstr "Farge_type for utvalget" -#: app/actions/gradient-editor-actions.c:609 +#: app/actions/gradient-editor-actions.c:616 msgid "_Flip Selection" msgstr "_Vend utvalg" -#: app/actions/gradient-editor-actions.c:611 +#: app/actions/gradient-editor-actions.c:618 msgid "_Replicate Selection..." msgstr "_Kopier utvalg..." -#: app/actions/gradient-editor-actions.c:613 +#: app/actions/gradient-editor-actions.c:620 msgid "Split Segments at _Midpoints" msgstr "Del segmentene ved _midtpunktet" -#: app/actions/gradient-editor-actions.c:615 +#: app/actions/gradient-editor-actions.c:622 msgid "Split Segments _Uniformly..." msgstr "Del segmenter _enhetlig..." -#: app/actions/gradient-editor-actions.c:617 +#: app/actions/gradient-editor-actions.c:624 msgid "_Delete Selection" msgstr "_Slett utvalg" -#: app/actions/gradient-editor-actions.c:619 +#: app/actions/gradient-editor-actions.c:626 msgid "Re-_center Midpoints in Selection" msgstr "S_entrer midtpunkter i utvalget igjen" -#: app/actions/gradient-editor-actions.c:621 +#: app/actions/gradient-editor-actions.c:628 msgid "Re-distribute _Handles in Selection" msgstr "Distribuer håndtak i utvalget igjen" -#: app/actions/gradient-editor-commands.c:84 +#: app/actions/gradient-editor-commands.c:85 msgid "Left Endpoint Color" msgstr "_Venstre endepunkts farge..." -#: app/actions/gradient-editor-commands.c:86 +#: app/actions/gradient-editor-commands.c:87 msgid "Gradient Segment's Left Endpoint Color" msgstr "Farge på venstre endepunkt av graderingsssegment" -#: app/actions/gradient-editor-commands.c:186 +#: app/actions/gradient-editor-commands.c:189 msgid "Right Endpoint Color" msgstr "_Høyre endepunkts farge" -#: app/actions/gradient-editor-commands.c:188 +#: app/actions/gradient-editor-commands.c:191 msgid "Gradient Segment's Right Endpoint Color" msgstr "Farge på høyre endepunkt av graderingssegment" -#: app/actions/gradient-editor-commands.c:353 +#: app/actions/gradient-editor-commands.c:358 msgid "Replicate Segment" msgstr "Kopier segment" -#: app/actions/gradient-editor-commands.c:354 +#: app/actions/gradient-editor-commands.c:359 msgid "Replicate Gradient Segment" msgstr "Kopier graderingssegment" -#: app/actions/gradient-editor-commands.c:358 +#: app/actions/gradient-editor-commands.c:363 msgid "Replicate Selection" msgstr "Kopier utvalg" -#: app/actions/gradient-editor-commands.c:359 +#: app/actions/gradient-editor-commands.c:364 msgid "Replicate Gradient Selection" msgstr "Kopier graderingsutvalg" -#: app/actions/gradient-editor-commands.c:371 +#: app/actions/gradient-editor-commands.c:376 msgid "Replicate" msgstr "Kopier" -#: app/actions/gradient-editor-commands.c:386 +#: app/actions/gradient-editor-commands.c:391 msgid "" "Select the number of times\n" "to replicate the selected segment." @@ -1662,7 +1661,7 @@ "Velg antall ganger du ønsker \n" "å kopiere valgt segment." -#: app/actions/gradient-editor-commands.c:389 +#: app/actions/gradient-editor-commands.c:394 msgid "" "Select the number of times\n" "to replicate the selection." @@ -1670,27 +1669,27 @@ "Velg antall ganger\n" "utvalget skal kopieres." -#: app/actions/gradient-editor-commands.c:444 +#: app/actions/gradient-editor-commands.c:452 msgid "Split Segment Uniformly" msgstr "Del segmentet enhetlig" -#: app/actions/gradient-editor-commands.c:445 +#: app/actions/gradient-editor-commands.c:453 msgid "Split Gradient Segment Uniformly" msgstr "Del graderingssegment enhetlig" -#: app/actions/gradient-editor-commands.c:449 +#: app/actions/gradient-editor-commands.c:457 msgid "Split Segments Uniformly" msgstr "Del segmenter enhetlig" -#: app/actions/gradient-editor-commands.c:450 +#: app/actions/gradient-editor-commands.c:458 msgid "Split Gradient Segments Uniformly" msgstr "Del graderingssegmenter enhetlig" -#: app/actions/gradient-editor-commands.c:462 +#: app/actions/gradient-editor-commands.c:470 msgid "Split" msgstr "Del" -#: app/actions/gradient-editor-commands.c:478 +#: app/actions/gradient-editor-commands.c:486 msgid "" "Select the number of uniform parts\n" "in which to split the selected segment." @@ -1698,7 +1697,7 @@ "Velg antall enhetlige deler\n" "du vil dele valgt segment i." -#: app/actions/gradient-editor-commands.c:481 +#: app/actions/gradient-editor-commands.c:489 msgid "" "Select the number of uniform parts\n" "in which to split the segments in the selection." @@ -1781,7 +1780,7 @@ #: app/actions/image-actions.c:58 msgid "_Xtns" -msgstr "/_Utvid" +msgstr "_Utvid" #: app/actions/image-actions.c:59 msgid "_Image" @@ -1801,7 +1800,7 @@ #: app/actions/image-actions.c:65 app/actions/image-actions.c:70 msgid "_New..." -msgstr "_Ny bane..." +msgstr "_Ny..." #: app/actions/image-actions.c:75 msgid "Can_vas Size..." @@ -2135,7 +2134,7 @@ #: app/actions/layers-commands.c:232 app/actions/layers-commands.c:234 #: app/actions/layers-commands.c:291 app/actions/layers-commands.c:295 -#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:840 +#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:842 msgid "New Layer" msgstr "Nytt lag" @@ -2147,7 +2146,7 @@ msgid "Set Layer Boundary Size" msgstr "Angi størrelse på laggrense" -#: app/actions/layers-commands.c:512 app/core/gimplayer.c:255 +#: app/actions/layers-commands.c:512 app/core/gimplayer.c:253 msgid "Scale Layer" msgstr "Skaler lag" @@ -2159,7 +2158,7 @@ msgid "Layer Mask to Selection" msgstr "Lagmaske til utvalg" -#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1085 +#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1066 #: app/dialogs/layer-add-mask-dialog.c:62 msgid "Add Layer Mask" msgstr "Legg til lagmaske" @@ -2703,7 +2702,7 @@ msgstr "Åpne tekstfil (UTF-8)" #: app/actions/text-editor-commands.c:132 app/config/gimpconfig-utils.c:552 -#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:393 +#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:396 #: app/core/gimpbrushgenerated.c:601 app/core/gimpbrushpipe.c:338 #: app/core/gimpgradient-load.c:63 app/core/gimppalette.c:360 #: app/core/gimppattern.c:328 app/tools/gimpimagemaptool.c:608 @@ -4526,7 +4525,7 @@ msgid "FG to Transparent" msgstr "Forgrunn til gjennomsiktig" -#: app/core/gimp-gui.c:148 +#: app/core/gimp-gui.c:153 msgid "GIMP" msgstr "GIMP" @@ -4558,39 +4557,54 @@ msgid "Modules" msgstr "Moduler" -#: app/core/gimpbrush.c:531 +#: app/core/gimpbrush.c:534 #, c-format msgid "Could not read %d bytes from '%s': %s" msgstr "Kunne ikke lese %d bytes fra «%s»: %s" -#: app/core/gimpbrush.c:566 +#: app/core/gimpbrush.c:554 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Width = 0." +msgstr "Fatal feil i penselfil «%s»: Ukjent dybde %d." + +#: app/core/gimpbrush.c:563 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Height = 0." +msgstr "Fatal feil i penselfil «%s»: Filen er korrupt." + +#: app/core/gimpbrush.c:572 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Bytes = 0." +msgstr "Fatal feil i penselfil «%s»: Filen er korrupt." + +#: app/core/gimpbrush.c:596 #, c-format msgid "Fatal parse error in brush file '%s': Unknown depth %d." msgstr "Fatal feil i penselfil «%s»: Ukjent dybde %d." -#: app/core/gimpbrush.c:579 +#: app/core/gimpbrush.c:609 #, c-format msgid "Fatal parse error in brush file '%s': Unknown version %d." msgstr "Fatal feil i penselfil «%s»: Ukjent versjon %d." -#: app/core/gimpbrush.c:595 app/core/gimpbrush.c:715 +#: app/core/gimpbrush.c:625 app/core/gimpbrush.c:745 #, c-format msgid "Fatal parse error in brush file '%s': File appears truncated." msgstr "Fatal feil i penselfil «%s»: Filen ser ut til å være avkuttet." -#: app/core/gimpbrush.c:603 app/core/gimpbrushgenerated.c:648 +#: app/core/gimpbrush.c:633 app/core/gimpbrushgenerated.c:648 #: app/core/gimpbrushpipe.c:354 #, c-format msgid "Invalid UTF-8 string in brush file '%s'." msgstr "Ugyldig UTF-8-streng i penselfil «%s»." -#: app/core/gimpbrush.c:610 app/core/gimpcontext.c:1299 -#: app/core/gimpitem.c:479 app/core/gimppattern.c:400 +#: app/core/gimpbrush.c:640 app/core/gimpcontext.c:1299 +#: app/core/gimpitem.c:480 app/core/gimppattern.c:400 #: app/dialogs/template-options-dialog.c:80 app/tools/gimpvectortool.c:339 msgid "Unnamed" msgstr "Uten navn" -#: app/core/gimpbrush.c:704 +#: app/core/gimpbrush.c:734 #, c-format msgid "" "Fatal parse error in brush file '%s': Unsupported brush depth %d\n" @@ -4755,11 +4769,11 @@ "«%s»" #: app/core/gimpdatafactory.c:411 app/core/gimpdatafactory.c:414 -#: app/core/gimpitem.c:274 app/core/gimpitem.c:277 +#: app/core/gimpitem.c:275 app/core/gimpitem.c:278 msgid "copy" msgstr "kopier" -#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:286 +#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:287 #, c-format msgid "%s copy" msgstr "%s kopier" @@ -4822,7 +4836,7 @@ msgid "Rotate" msgstr "Roter" -#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:259 +#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:257 msgid "Transform Layer" msgstr "Transformasjonslag" @@ -5182,7 +5196,7 @@ #. pixel size #: app/core/gimpimagefile.c:624 app/dialogs/info-window.c:552 -#: app/widgets/gimpsizebox.c:552 app/widgets/gimptemplateeditor.c:637 +#: app/widgets/gimpsizebox.c:429 app/widgets/gimptemplateeditor.c:637 #: app/widgets/gimptemplateeditor.c:673 #, c-format msgid "%d x %d pixels" @@ -5202,15 +5216,15 @@ msgid "Could not open thumbnail '%s': %s" msgstr "Kunne ikke åpne miniatyrfil «%s»: %s" -#: app/core/gimpitem.c:1096 +#: app/core/gimpitem.c:1103 msgid "Attach Parasite" msgstr "Fest parasitt" -#: app/core/gimpitem.c:1106 +#: app/core/gimpitem.c:1113 msgid "Attach Parasite to Item" msgstr "Fest parasitt til element" -#: app/core/gimpitem.c:1145 app/core/gimpitem.c:1152 +#: app/core/gimpitem.c:1152 app/core/gimpitem.c:1159 msgid "Remove Parasite from Item" msgstr "Fjern parasitt fra element" @@ -5238,37 +5252,37 @@ msgid "Floating Selection to Layer" msgstr "Flytende utvalg til lag" -#: app/core/gimplayer.c:252 app/pdb/internal_procs.c:152 +#: app/core/gimplayer.c:250 app/pdb/internal_procs.c:152 msgid "Layer" msgstr "Lag" -#: app/core/gimplayer.c:253 +#: app/core/gimplayer.c:251 msgid "Rename Layer" msgstr "Endre navn på lag" -#: app/core/gimplayer.c:254 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 +#: app/core/gimplayer.c:252 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 msgid "Move Layer" msgstr "Flytt lag" -#: app/core/gimplayer.c:256 +#: app/core/gimplayer.c:254 msgid "Resize Layer" msgstr "Endre størrelse på lag" -#: app/core/gimplayer.c:257 +#: app/core/gimplayer.c:255 msgid "Flip Layer" msgstr "Vend lag" -#: app/core/gimplayer.c:258 +#: app/core/gimplayer.c:256 msgid "Rotate Layer" msgstr "Roter lag" -#: app/core/gimplayer.c:341 app/core/gimplayer.c:1129 +#: app/core/gimplayer.c:339 app/core/gimplayer.c:1110 #: app/core/gimplayermask.c:236 #, c-format msgid "%s mask" msgstr "%s maske" -#: app/core/gimplayer.c:387 +#: app/core/gimplayer.c:385 #, c-format msgid "" "Floating Selection\n" @@ -5277,41 +5291,41 @@ "Flytende utvalg\n" "(%s)" -#: app/core/gimplayer.c:1055 +#: app/core/gimplayer.c:1036 msgid "Cannot add layer mask to layer which is not part of an image." msgstr "Kan ikke legge til lagmaske til lag som ikke er en del av et bilde." -#: app/core/gimplayer.c:1062 +#: app/core/gimplayer.c:1043 msgid "Unable to add a layer mask since the layer already has one." msgstr "Kunne ikke legge til lagmaske siden laget allerede har en." -#: app/core/gimplayer.c:1069 +#: app/core/gimplayer.c:1050 msgid "Cannot add layer mask to a layer with no alpha channel." msgstr "Kan ikke legge til lagmaske til et lag uten alfakanal." -#: app/core/gimplayer.c:1079 +#: app/core/gimplayer.c:1060 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "" "Kan ikke legge til lagmaske med forskjellig dimensjon fra det spesifiserte " "laget." -#: app/core/gimplayer.c:1183 +#: app/core/gimplayer.c:1164 msgid "Transfer Alpha to Mask" msgstr "Overfør gjennomsiktighet til maske" -#: app/core/gimplayer.c:1343 +#: app/core/gimplayer.c:1324 msgid "Apply Layer Mask" msgstr "Påfør lagmaske" -#: app/core/gimplayer.c:1344 +#: app/core/gimplayer.c:1325 msgid "Delete Layer Mask" msgstr "Slett lagmaske" -#: app/core/gimplayer.c:1445 +#: app/core/gimplayer.c:1426 msgid "Add Alpha Channel" msgstr "Legg til alfakanal" -#: app/core/gimplayer.c:1467 +#: app/core/gimplayer.c:1448 msgid "Layer to Image Size" msgstr "Lag til bildestørrelse" @@ -6757,28 +6771,28 @@ msgstr "Utskriftsstørrelse:" #. the image size labels -#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:241 +#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:222 #: app/widgets/gimptemplateeditor.c:236 msgid "_Width:" msgstr "_Bredde:" -#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:248 +#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:225 #: app/widgets/gimptemplateeditor.c:243 msgid "H_eight:" msgstr "_Høyde:" #. the resolution labels -#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:338 +#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:273 #: app/widgets/gimptemplateeditor.c:363 msgid "_X resolution:" msgstr "_X-oppløsning:" -#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:345 +#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:276 #: app/widgets/gimptemplateeditor.c:370 msgid "_Y resolution:" msgstr "_Y-oppløsning:" -#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:357 +#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:269 #: app/widgets/gimptemplateeditor.c:383 #, c-format msgid "pixels/%a" @@ -6802,7 +6816,6 @@ msgstr "Det er %d bilder med ulagrede endringer:" #: app/dialogs/quit-dialog.c:183 -#, fuzzy msgid "_Discard Changes" msgstr "_Forkast endringer" @@ -7399,11 +7412,11 @@ msgid "%d minutes" msgstr "%d minuttene" -#: app/display/gimpdisplayshell-dnd.c:96 +#: app/display/gimpdisplayshell-dnd.c:98 msgid "Drop New Layer" msgstr "Slipp nytt lag" -#: app/display/gimpdisplayshell-dnd.c:140 +#: app/display/gimpdisplayshell-dnd.c:142 msgid "Drop New Path" msgstr "Slipp ny bane" @@ -8863,12 +8876,12 @@ msgstr "_Malerpensel" #: app/tools/gimppaintoptions-gui.c:103 app/widgets/gimpbrushselect.c:201 -#: app/widgets/gimplayertreeview.c:330 +#: app/widgets/gimplayertreeview.c:332 msgid "Opacity:" msgstr "Ugjennomsiktighet:" #: app/tools/gimppaintoptions-gui.c:108 app/tools/gimpselectionoptions.c:374 -#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:323 +#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:325 msgid "Mode:" msgstr "Modus:" @@ -9009,9 +9022,8 @@ msgstr "Senter X:" #: app/tools/gimprotatetool.c:190 -#, fuzzy msgid "Center Y:" -msgstr "Senter X:" +msgstr "Senter Y:" #: app/tools/gimpscaletool.c:91 msgid "Scale" @@ -10020,14 +10032,12 @@ msgstr "Bakgrunn: %d, %d, %d" #: app/widgets/gimpdock.c:348 app/widgets/gimpdock.c:359 -#, fuzzy msgid "Close all tabs?" -msgstr "_Lukk fane" +msgstr "Lukk alle faner?" #: app/widgets/gimpdock.c:354 -#, fuzzy msgid "Close all Tabs" -msgstr "_Lukk fane" +msgstr "Lukk alle faner" #: app/widgets/gimpdock.c:361 #, c-format @@ -10265,24 +10275,24 @@ msgid "Set Item Exclusive Linked" msgstr "Gjør elementet eksklusivt lenket" -#: app/widgets/gimplayertreeview.c:250 +#: app/widgets/gimplayertreeview.c:252 msgid "Reorder Layer" msgstr "Reorganiser lag" -#: app/widgets/gimplayertreeview.c:311 +#: app/widgets/gimplayertreeview.c:313 msgid "Keep transparency" msgstr "Behold gjennomsiktighet" -#: app/widgets/gimplayertreeview.c:846 +#: app/widgets/gimplayertreeview.c:848 msgid "Empty Layer" msgstr "Tomt lag" -#: app/widgets/gimpmessagebox.c:458 +#: app/widgets/gimpmessagebox.c:460 #, c-format msgid "Message repeated %d times." msgstr "Melding gjentatt %d ganger." -#: app/widgets/gimpmessagebox.c:460 +#: app/widgets/gimpmessagebox.c:462 msgid "Message repeated once." msgstr "Melding gjentatt en gang." @@ -10314,16 +10324,12 @@ msgid "Invalid UTF-8" msgstr "Ugyldig UTF-8-streng" -#: app/widgets/gimpsizebox.c:290 -msgid "Keep aspect ratio" -msgstr "Behold bredde- og høydeforhold" - -#: app/widgets/gimpsizebox.c:574 +#: app/widgets/gimpsizebox.c:451 #, c-format msgid "%d x %d dpi" msgstr "%d x %d dpi" -#: app/widgets/gimpsizebox.c:578 +#: app/widgets/gimpsizebox.c:455 #, c-format msgid "%d dpi" msgstr "%d dpi" @@ -10765,6 +10771,9 @@ msgid "Image Editor" msgstr "Bildebehandler" +#~ msgid "Keep aspect ratio" +#~ msgstr "Behold bredde- og høydeforhold" + #~ msgid "Y:" #~ msgstr "Y:" @@ -10789,18 +10798,6 @@ #~ msgid "Indexed Palette Menu" #~ msgstr "Indekspalettmeny" -#, fuzzy -#~ msgid "Inde_xed Palette" -#~ msgstr "Indeksert palett" - -#, fuzzy -#~ msgid "_Undo History" -#~ msgstr "Angre-historikk" - -#, fuzzy -#~ msgid "Brus_hes" -#~ msgstr "Pensler" - #~ msgid "No preview available" #~ msgstr "Ingen forhåndsvisning tilgjengelig" @@ -10810,14 +10807,6 @@ #~ msgid "Pixel Dimensions" #~ msgstr "Pikseldimensjoner" -#, fuzzy -#~ msgid "New width:" -#~ msgstr "Ny bredde:" - -#, fuzzy -#~ msgid "New height:" -#~ msgstr "Høyde:" - #~ msgid "_Size:" #~ msgstr "_Størrelse:" @@ -10834,10 +10823,6 @@ #~ msgid "Edit Indexed Color" #~ msgstr "Rediger indeksert farge" -#, fuzzy -#~ msgid "Edit indexed image palette color" -#~ msgstr "Rediger indeksert palettfarge for bilde" - #~ msgid "" #~ "%s\n" #~ "%s To Top" @@ -10911,18 +10896,6 @@ #~ msgid "Dark Checks" #~ msgstr "Mørke ruter" -#, fuzzy -#~ msgid "RGB color" -#~ msgstr "RGB-farge" - -#, fuzzy -#~ msgid "Indexed color" -#~ msgstr "Indeksert farge" - -#, fuzzy -#~ msgid "Swap dir:" -#~ msgstr "Mellomlagermappe:" - #~ msgid "Select Swap Dir" #~ msgstr "Velg mellomlagermappe" diff -uraN gimp-2.2.0/po/pa.gmo gimp-2.2.1/po/pa.gmo --- gimp-2.2.0/po/pa.gmo 2004-12-19 03:11:55.000000000 +0100 +++ gimp-2.2.1/po/pa.gmo 2004-12-28 16:58:43.000000000 +0100 @@ -1,105 +1,106 @@ -:)Soo&okoGRp9pGpAqN^qiq<rkTr@r2s;4sPpsOs2t9Dt-~t9t;t7"u Zudu -ku vu uuu -uuuu -uuuuv2vHv0Ovvvvvvv v vKv+wwwwww -w wx x"x1x -:xExTxgxyxx6xxx yy5yJy^yryyyyy -yyyzz 8z Ez1Oz3zzzzzz z -{{{A/{Jq{<{ {||||4|F|W| -`|k||&|$||| |} } }}"}(}7}H}7\} } }}}} }} }} }} ~ -~~(~/~M~c~#w~!~~~ ~~7Oas,  #DZo   Ҁ߀.8$)],Ё2 A\OxAȂ% -&04W1#  !) /= S` y  ̄߄   -$DWf{ ȅЅم 3H -g)r,!##C%gć؇#-8f%|͈  -5< A O\l -{-ĉʉۉ  -4: @M `n  Ɋي ) -; FR Ygo w - Ћ  ?T]o  - Ɍ -ӌ ތ  2Ee uˍ ߍ  -* -BM es Î ю -ݎ*$.;j# ҏޏ#& 5C']ՐF TR  ԑ -ޑ '6EW ]$i=6Ғ< AF9c“9&B`=f>HÕ ӕ ݕ -@Se|ؖߖ -  -;N_{ ɗї -ח - ǘ̘ ۘ +?Vueۙ zǚBHPgp  Λڛ ߛ ,I^m -  ÜϜ - - & -.!9B[ ȝ -ϝڝ ߝ 0( .; -M -Xcs - ƞ ՞  #/7U\ dp ϟ ޟ $C^ s (à+)BIXi -r}¡ۡ &A R\l!Ԣ (.> NZ3` £ Σۣ8Qe lx@-Ȥ   !?F K Wc w  ʥ  - %3K^fo w -ܦ -  .CWp ħʧ$+:I Q] b o -| - Ԩ * 0<N b lv ĩ ө )5 _l BACKЫ߫ - !8 JWi"!ˬ!'@ Xbr + íͭ ӭ ߭ - (2:I -Yds |  Ʈ Ү&,! N[`p - -ɯԯ ݯ  0!<^ m{ ? -6 >HQ#a- ɱѱ $*@ Xbf ! Dzղܲ  ) -<G Yg| -ͳس  (,>k{ -J (A [ h u ;  ) 7DLj{+ ж ݶ %6=t| Ʒ ӷ߷ #/DJ R_ -ep u - ݸ $84M˹E - P ^k -׺  - 5 ERm ƻһ6M f tҼ 8BSb | ӽ߽ :)U=*?2(4[/ȿοտۿ ) :G \j+   -&. 78D}  ,=#Fj -q | - -171S5HA;F! 50EG2A [-e -  ! *7 =K bl~ -   #3<p   ! . ; GKS$5GeBj<?P>`0 6o5# - - 5CLRahq    <D G S ]k -     )7 G S_n -w   -;KQXk n x - -     '.6 P \hpx   -  - %- 6BKT [iy    "+<O ant - - - -%09=CF -JU\a5e   -% 0<@HMSY ` jtz.l8BRx`aMidZ])QkNfS_ Wi -  --8; Uv 581oG+, & 2> C(Qz02 cq,";.j,0A"#d#9z<aSU9[63U9V63:6L)`I"} !. M&[ - 06!^ ","O&r F$Z,P # '*; f s7w  )%6\ aXo M-=)kTtR_Q<'3dO=)&IPJ[ ANee}\!@b  #(/BroW=_D_p->= -\bKJO< ! /93S2 - 2 K3X3)# %3GM^%"26(-_,   ! 91 ]k P H -\c -! -Q -G4 M| @ j Gv D Q EU  * ) ) +)LGvN) S7-HBE0UFTB S`}&"     #:Wr )&.H_|,&,!#Nr   ),V"f.   )%%>^~,# <)]:BV t ~ [@]Jq' <7P$,7Qh c& -g1=A1,^%tX  # 4 LT b @!=E!8!G!9">""# ##+# -$$C,$Mp$$$"$% %F%d%t%p%f&&r''(e) **+7,$N, s,0,%,,,#- ,- M- n- -#-#-/- (. I.-j.7. .0. //5/#L/*p// /#/4/30'J0r00000 000Q1Ge2%222 2 3+3,K3 x3"3#323;4 O4 p42|55d7 ~7 88N88"9"'9J9`9t99<9?9 $:1: N: -X:c:s:(:::#:6: 2;)?;i; ;; ; ;;%;";`<B<<<<< ="=O5== :>G> g>u>$>>>>#> ?d#??"?%???@,;@h@@@@@#@A.*A7YAA A A$AJA9BJB%ZBUB\B3C"CCfC/C.CC2C(1D ZD9gD-D0DEVEIvEWEdFi}F FFGG0G5JG(GGG"G,H&0H*WH4H.H$H I"(I,KI&xI*I4I.I$.JSJ,gJJ JJJJ KoKK'KKKKXKUSL:LELT*MMMMM N{N" O ,O 9O!ZO3|OO O$O ODP -UP`PJ|P P)P-Q'@Q0hQQ:Q Q) R*6RaRzRR)RR&R)S -FS QS-[S-S S S*S3S&1TPXT3TCT<!UC^UUUU U -U#UAV#HV#lV"V+VVVW##W GW,hWW-W#W#X4)XC^X@X X XX -YY#4Y#XY|YYY#YYZ=%ZcZZZ&ZBZG[ac[[8[\30\d\t\\\n]H^8\^,_3__`")`9L`@`` `/a92a0la<a9a9b2Nb0b/b bb c"cBc{\cc cc d9&dC`dddd"d&e:e!Teve#eEee7 -fDBff4f3f`gJqgg gg[gYh whhhhhhhiBiai,ii;iij-+jYjvjjj6+kbk,xk#kkkkllJ3lj~ll mm:!m\m%lmmm m mVmS.nnnnn nn!n+ o 8oEo]o0wo4oo-o"p7o )΄  (2,L)y2+)/C/s3,0">S'6),I v/6Lj,@+0l #؉ --%Sn$@OO<h_bUpEIʎi   (45,j-,Ő,,?)lZ%  $p2 ͒% 0 P Zg~ -:E Y$c T[Vg#~ Õ +98 r 0 JdWi`&`+:D 9F cp_ kNj?ctÞ8Ss)4 -+I&a" MѠ/Ll,С:,Kg ~"A*Q'| /Ǥ"0<wm80O o |D ϦݦU I-V*)&٧ =Xq@Э)] u%ϰ0f ; ò вZ޲9J^x ӳ% -'U o} 'Դ'$)B l"$ յߵ '2F;Z ¶)Ӷ1!/ Q _m "η "@]z!Ÿ  ) 7'X ֹ  /Lcz(źȺܺ"('Pg~ Ȼٻ  - >\ mw5޼ *K N[k#| ,۽   )Jdx&־. Abſ տ):=B ]~<)#<`6}%  6-Gu& ' )7Kby   }&Y  (42"Un   --E=c^ Af0qYYC#]M.lxo6% fS@A%? +;%  !e?\Idk-QhBYt8:TLV vFdCD< 2dG'mU45;g>Q9&[Czw -0]B _7hxB}EU5d_= ;J2}v w< Ftw[[i (y,4o=$yf%|iQma+)p1 -4-p<ZHt8Nlc2H -nj >B0*Gv'L!g+&D*g:c.``X:2OqX6L&RzH@' 0aa^9 T:BTGP\/$'6ehK"yEKrWP  OYWX:VZXmh/t/a4 %. --K`-6w |3#"Ol3+QKZ?.AUg$'!!bE6'R{S` D39/WT8_"FqLLX(o+%r~6@)V3IPE&qy_cN^*s $iPFHk+2JsS$=uN8 1uWsIg}k Rb*Amc&arO\;M,5Rln,4ReNnJl9f5$,/e*>Nb~ O4jI)k@n.|0Q(V1{j,sFAV]~px9M"C>{`G <S#}i35o"MG@C-x7jD7e?)!c*3?#]P}9rq^Z]v=WM!Z(JSUz{EzYp b7T)2^t>x/UKd -uIj1uh -p0   78kw1-b[8v"J=H|o 1(m\&f#i)zn#y{~r;s5~[:7<,_D^.(u|\ +9)Soo&okoG2p9zpGpApN>qiq<qk4r@r2r;sPPsOs2s9$t-^t9t;t7u :uDu +Ku Vu `ulu|u +uuuu +uuuuuv(v0/v`vsvvvvv v vKv wwwwww +w ww wxx +x%x4xGxYxkx6xxxxxy*y>yRyqyyyy +yyyyy z %z1/z3azzzzzz z +zzzA{JQ{<{ {{{{{|&|7| +@|K|d|&{|$||| ||| ||}}}(}7<} t} }}}} }} }} }} } }}~~-~C~#W~!{~~~ ~~~~/ASp,  $:Odm v  .Հ8)=,g2́ !<OXA%&471l# ƒЃ  3@ Y er y Ȅ ؄ +$7F[n ʅ ҅߅( +G)R|,Æ!݆###%Gmˇއ#-F%\ň ʈ؈ + ! /<L +[-fΉ   - @N `n} ъ + &2 9GO W +d o|ʋ Ӌ݋?4=O `j y + + ʌӌ %E Ubg ɍ܍ + + +"- ESiy +Ȏ*َ.Jf#o ҏ#ۏ #'=eѐFT2  +ɑ %7 =$In=t6<A&9hc9B@=f>(gw ʕ ؕ  3E\l֖ ۖ +  .?[k  + +—͗b{  Ș  6uE͙ z"(0GP` q }   ɛϛ֛ ۛ )>M +do x ʜ + +  +!B;~  + ˝0ם  +- +8CS k +y  ž؞  5< DPf  ȟ $#> S a (+̠)")8I +R]ox ӡ *:Th!Т٢  (3.bs ǣ3 :F@N- ĤѤ ֤    %1 E O[ r  +ӥޥ ,4= ES +[fǦϦ +֦ %>Yp y$ӧ + 0 = +J +U` pzܨ   + 0 :DM ^ ku ϩ) -:RWfm ~BAϪǫ +Ы۫ %7W"v!!ݬ &0@ O]+e  ӭ +  +'2A J Xfl &Ȯ, ).>\n +t +  ݯ ! +, ;I dqx?ϰװ #/-S ӱ ܱ &04N _ i!s  ղ  + + '5Jf + ɳճٳ޳(, 9I +[f{J ڴ ) 6 C O];u ͵ ٵ 8I+\ Ķ жܶ6 BJQXo ӷ  - +3> CO +f q} ƸҸ4PmɹEع  ,9Q W e q +}Ǻ Ϻܺ +  ;Rf~ λ 4 BOdvռ !0 JVez ӽ)#=M*?24)/^ƿ ۿ  *8Wfk+q  + 8KRX_nu~   #8 +? JTcw +| +171!5SHA;!Pr 50G2 )-3 +al     0:L`p +  3 +>Tcrx K!$m5Gejv<?>^` 6osz# +   /6?Ren    +  ! +9 +MX` iw}     !-< +EPVe    &9 < F +P +[f nx ~    *6>FU Xbh p} +  +  " )7GN Wd m{   + /<B +R]ov + + +  +#*/53i{   +  +!' . 8BHO.b:8TRx`dfa}i2Z]UQvkN4S_W7 +  + #D Zg5z8o+,  (H0 1?Yy,";8,U0A#2#V9zz</SlU9)6c3U9$6^3:).XIr}q  &) +P[ z06, ""&@ guF$ZPU # * 4 AOo7Eb  %* /X= M- )9TctR-Q<32Of=)IJh[ 3eK\!0N l z #/@oeW=-Dk_>-> \YbJh<  3!U2r + 3&3Z)# M,%z"26--,[  9]9 P H \1 +! +Q +G MJ @ j GD D Q E# i *z ) )  )GDN)S-YHB0#FTT !.K&i" Y c p} %@ Vdt)&-Jg,&,#@ Yfv  )$"4.W   j)}%% ,Ll, +)+Ur:B$ B L m[@+J?'  +7V$v,6 Sct&g=gA1,%BhXx # L" bo @ =!8Q!G!9! ""i# |##+# +##C#M>$$$"$$$F$2%B%p%4&&rQ''(3))k*o+,$, A,0N,%,,,#, , - <- ]-#~-#-/- - .-8.7f. .0. ../#/*>/i/ /#/4/0'0@0S0c0s00 000Q0G32%{222 222,3 F3"g3#323;3 4 >42J5}527 L7 V8c8Ns88"8"89.9B9U9<u9?9 99 : +&:1:A:(^:::#:6: ;) ;7; W;a; u; ;;%;";`;BM<<<<< <<O=S= >> 5>C>$S>x>>>#> >d>V?"f?%????, @6@V@v@@@#@@.@7'A_A |A A$AJABB%(BUNB\BC"C4C/TC.CC2C(C (D95D-oD0DDVDIDEWEdEiKF FFFFF(GAG[G"xG,G&G*G4H.OH$~HH"H,H&I*7I4bI.I$II,I,J @JMJdJJ JoJK'-KUKiK}KXKUK:ALE|LTLM'M>MOM N{%N"N N N!N3OHO XO$bO ODO +OOJP _P)P-P'P0Q1Q:HQ Q)Q*QQR/R)IRsR&R)R +R R-R-!S OS ]S*jS3S&SPS3ATCuT<TCT:UNU^U eU +oU#zUAU#U#V"(V+KVwVVV#V V,W-W-KW#yW#W4WCW@:X {X XX +XX#X#XY1YEY#_YYY=YYZ2Z&IZBpZGZaZ][8{[[3[[ \&\F\]]8],-_3Z___"_9_@`_` y`/`9`0a<5a9ra9a2a0b/Jb zbbb"bb{bpc ccc9cCcF Y)f ʄ,);2R+)/ۅ/ ;3Y,0>'*6R), //6_,@È0 5?V#p +-$@COOԊh$_bPp݌Nb   4͏,-/,],,א)Z.%  pʑ ;He%x Ȓ  1H +ғݓ $ -T=[# :[y Õ9Е +,<Y yȖ diT``BÙ:QD њޚ _j?;t[О )/4Y ß&"  CMMiǠ,;h:{, #4"٣*' <I/_"0Ԥw8}0  D" guU -*)G&qէX T5Eجh) -%Ag0f; [ hZvѲ* Jk%- 3 K'l')ڴ "%$H mw z'ʵ޵; .<?Z)k1!Ƕ   ","Cf ~ط)@!]   ϸ'3 Mn ǹ#(4]`t"( *8L`q  ֻ 5#Yv ¼ # 8,Fs  'AQ&nƾ پ+?] mҿտڿ 0<M)#6Lf%}  - &Ec w' " &36: L V`}s&  ",<(\42< U boEc^EPJ%hzx6<<y|=p3_U-O7EI B <4#[xJrcS^ 1?+KlhZ 3]wt19kWNXd#Zem lr*onEan3"H"gQ2 @Vkebgtj9Z@N#s8.IQ`q3b17fC$0E}xlu7YSViCYfO5>0WI[L-j: )8{GE((Qo9)0&!2*K =b'Kf8=k.u!$TM' +\`Ap[( LJ,oMp_2SYL\&!<(,-1{N8x_^,_[rRQmaha 0; z2AiMnK5VQb?y>$}+X+ ft%msF]$`&qe"IZq bZ@aR>M2U4 +CHd/;0MUs ` ;G :r/) *L93F5~& w~Fr!m*)(6 A<-]W7 6Gx#Bmfvi}u)*% 2]n+Y5N)=s/tD%}k\1X +5^sVl'_RHFHPv,d/a{R!.ize|#1dY7v@7'XiVz|{&up']}4H|~-'"&Tc\FAA"y8K9.uL:B|BP%vCk /T{;yXj^(9?54#nhPhj6$ g*; g?:Gvc-T6DWJ+~=[wg+BT +G@>.R6USt " + w %o8SIp!q:.3ej?  +zoW,c/y\ NO^wJC$l,`~ OOq4>cDP04UDDd Invalid option "%s" Usage: %s [option ... ] [file ... ] @@ -141,7 +142,7 @@ Make sure a proper setup for your display environment exists.GIMP help browserGIMP is not properly installed for the current user. User installation was skipped because the '--no-interface' flag was used. To perform user installation, run the GIMP without the '--no-interface' flag.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGet Monitor ResolutionGiganticGradient EditorGradient FoldersGradient UIGradient:GradientsGradients MenuGrain extractGrain mergeGrayGrayscaleGreenGreen:GridGrow ChannelGuideHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_counter-clockwise hue)HSV (clockwise _hue)HTML notation:Handle position: %0.6fHard lightHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHex:HighlightsHistogra_mHistogramHistoryHorizontalHorizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue:HugeI_con & TextI_mageI_nterval:IconIcon & descIcon & textIllegal variable name in environment file %s: %sImageImage EditorImage InformationImage MenuImage SizeImage TemplatesImage Window AppearanceImage WindowsImage maskImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImported PathIn_vertIncrementalIndent:Indentation of the first lineIndex:IndexedInfo WindowInitializing Plug-insInitializing plug-in: '%s' -InkInput DevicesInput LevelsInsert AnchorInstant updateInterfaceInternal GIMP procedureInternal ProceduresIntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'InvertInvert ChannelInvert SelectionJustify:Keep aboveKeep aspect ratioKeep transparencyKey DownKey LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)KeyboardKeyboard ShortcutsLandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer Fill TypeLayer SelectLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayersLayers MenuLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Lighten onlyLineLine Width:Line _Style:Line style used for the grid.LinearLoadLoad CurvesLoad LevelsLoading preview ...Location:LogarithmicLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower channelLower channel to bottomM_ove to Screen...MagentaMagenta:MagnifyMask Opacity:Matrix:Max Depth:Maximum color differenceMean:MeasureMeasure Distances and AnglesMeasure distances and anglesMedian:MediumMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Message repeated %d times.Message repeated once.MidtonesMiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModulesMouse WheelMoveMove AnchorsMove ChannelMove GuideMove LayerMove Layer MaskMove PathMove SelectionMove layers & selectionsMove the selected filter downMove the selected filter upMove: MultiplyNa_vigationName:New ChannelNew Channel ColorNew Channel OptionsNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channel with last valuesNew channel...New gradientNew layer...No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.NoneNone (Fastest)NormalNormal (128x128)Normal windowNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:Open ImageOpen Image as LayerOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the palette selection dialogOpen the pattern selection dialogOpen the selected entryOpening '%s' failed: +InkInput DevicesInput LevelsInsert AnchorInstant updateInterfaceInternal GIMP procedureInternal ProceduresIntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'InvertInvert ChannelInvert SelectionJustify:Keep aboveKeep transparencyKey DownKey LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)KeyboardKeyboard ShortcutsLandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer Fill TypeLayer SelectLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayersLayers MenuLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Lighten onlyLineLine Width:Line _Style:Line style used for the grid.LinearLoadLoad CurvesLoad LevelsLoading preview ...Location:LogarithmicLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower channelLower channel to bottomM_ove to Screen...MagentaMagenta:MagnifyMask Opacity:Matrix:Max Depth:Maximum color differenceMean:MeasureMeasure Distances and AnglesMeasure distances and anglesMedian:MediumMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Message repeated %d times.Message repeated once.MidtonesMiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModulesMouse WheelMoveMove AnchorsMove ChannelMove GuideMove LayerMove Layer MaskMove PathMove SelectionMove layers & selectionsMove the selected filter downMove the selected filter upMove: MultiplyNa_vigationName:New ChannelNew Channel ColorNew Channel OptionsNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channel with last valuesNew channel...New gradientNew layer...No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.NoneNone (Fastest)NormalNormal (128x128)Normal windowNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:Open ImageOpen Image as LayerOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the palette selection dialogOpen the pattern selection dialogOpen the selected entryOpening '%s' failed: %sOpening '%s' failed: %sOptions: Original Width:Other (%s) ...Output LevelsOverlayPDB calling error: @@ -162,7 +163,7 @@ did not save indexed colormaps correctly. Substituting grayscale map.YellowYellow:You can drop dockable dialogs here.Zoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom allZoom factor: %d:1Zoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_Antialiasing_Aspect_Auto_B_BG Color_Background color:_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Buffer_C_Cap style:_Channels_Clear Errors_Clear Undo History_Close Tab_Colors_Context_Context Help_Copy_Copy Named..._Crop Image_Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Gradient..._Delete Image_Delete Layer_Delete Segment_Desaturate_Detach Tab_Device Status_Dialogs_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Enormous_Equalize_FG Color_File_Fill with:_Flatten Image_Flip Segment_Flip Selection_Font_Fonts_Foreground color:_G_Gigantic_Gradient_Gradients_Grayscale_Guides_Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Indexed..._Intersect with Selection_Join style:_Large_Layer_Layers_Layers, Channels & Paths_Lightness:_Line Style_Linear_Linked_Lower Channel_M_Manually_Mask_Medium_Misc. Stuff_Mode_Module Manager_Name:_New Brush_New Channel_New Channel..._New Gradient_New Layer_New Layer..._New View_New..._Opacity_Open Image_Open..._Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Preferences_Preview_Preview Size_Print Size..._Properties_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Views_Raise or Open Image_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Rescan Font List_Saturation:_Save_Scale Image..._Selection_Selection Editor_Shape_Show Image Selection_Small_Subtract from Selection_Tab Style_Templates_Text_Tiny_Tip of the Day_Tool_Undo_Undo %s_Vertical:_Visible_X:_Xtns_Y_Y:_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for token %sinvalid value '%s' for token %smillimetermillimetersn/apercentpicapicaspixelpixelspixels/%apixels/%spointpointstranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: pa Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-19 03:11+0100 +POT-Creation-Date: 2004-12-28 16:58+0100 PO-Revision-Date: 2004-12-10 11:34+0530 Last-Translator: Amanpreet Singh Alam Language-Team: Punjabi @@ -211,7 +212,7 @@ ਜਾਂਚ ਲਵੋ ਕਿ ਤੁਹਾਡਾ ਦਰਿਸ਼ ਨਿਰਧਾਰਨ ਠੀਕ ਨਿਸ਼ਚਿਤ ਕੀਤਾ ਹੈ।ਜੈਮਪ ਸਹਾਇਤਾ ਝਲਕਾਰਾਜੈਮਪ ਮੌਜੂਦਾ ਉਪਭੋਗਤਾ ਲਈ ਸਹੀ ਤਰਾਂ ਇੰਸਟਾਲ ਨਹੀ ਹੈ। ਉਪਭੋਗਤਾ ਇੰਸਟਾਲੇਸ਼ਨ ਬਾਕੀ ਰਹਿ ਗਈ ਹੈ, ਕਿਉਕਿ '--no-interface' ਤਰੀਕਾ ਵਰਤਿਆ ਗਿਆ ਹੈ। ਉਪਭੋਗਤਾ ਇੰਸਟਾਲੇਸ਼ਨ ਕਰਨ ਲਈ, ਜੈਮਪ ਨੂੰ '--no-interface' ਨਾਲ ਚਲਾਉ।ਜੈਮਪ ਵਰਜਨਜੈਪਮ ਉਪਭੋਗਤਾ ਨੂੰ ਚੇਤਵਾਨੀ ਦੇਵੇਗਾ, ਜਦੋ ਕਿ ਚਿੱਤਰ ਜੋ ਕਿ ਬਣਾਉਣਾ ਹੈ, ਨਿਰਧਾਰਿਤ ਮੈਮੋਰੀ ਨਾਲੋ ਜਿਆਦਾ ਥਾਂ ਵਰਤੇਗਾ।ਗਾਮਾਸਧਾਰਨਮਾਨੀਟਰ ਰੈਜ਼ੋਲੇਸ਼ਨ ਪ੍ਰਾਪਤ ਕਰੋਵਿਰਾਟਢਾਲਵਾ ਸੰਪਾਦਕਢਾਲਵਾਂ ਫੋਲਡਰਢਾਲਵਾਂ UIਢਾਲਵਾਂ:ਢਾਲਵਾਂਢਾਲਵਾਂ ਮੇਨੂਲੱਕਡ਼ ਦੀਆਂ ਧਾਰੀਆਂ ਖੋਲੋਲੱਕਡ਼ ਦੀਆਂ ਧਾਰੀਆਂ ਵਿਲੀਨਭੂਰਾਗਰੇ-ਪੈਮਾਨਾਹਰਾਹਰਾ:ਗਰਿੱਡਉਭਾਰੋ ਚੈਨਲਦਿਸ਼ਾ-ਨਿਰਦੇਸ਼ਨHSVHSV (%0.3f, %0.3f, %0.3f)HSV (ਘੜੀ-ਉਲਟ ਆਭਾ)HSV (ਘਡ਼ੀ ਦੀ ਦਿਸ਼ਾ ਵਿੱਚ)HTML ਪਗ:ਸਥਿਤੀ ਸੰਭਾਲੋ: %0.6fਹਾਰਡ ਰੋਸ਼ਨੀਸਖਤਕਠੋਰਤਾ:ਉਚਾਈਉਚਾਈ:ਸਹਾਇਤਾਸਹਾਇਤਾ ਝਲਕਾਰਾਸਹਾਇਤਾ ਸਿਸਟਮਸਹਾਇਤਾ ਝਲਕਾਰਾ ਚਾਲੂ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆਸਹਾਇਤਾ ਝਲਕਾਰਾ ਨਹੀਂ ਲੱਭਿਆਹੈਕਸਾ:ਉਭਾਰੋਆਇਤ ਗਰਾਫ(_m)ਆਇਤ ਗਰਾਫਅਤੀਤਖਿਤਿਜੀਗਰਿੱਡ ਰੇਖਾਵਾਂ ਵਿੱਚ ਲੇਟਵੀ ਦੂਰੀਫਾਇਲ ਮੇਨੂ-ਸੂਚੀ ਵਿੱਚ ਕਿੰਨੇ ਤਾਜ਼ਾ ਖੋਲ੍ਹੋ ਚਿੱਤਰਾਂ ਦੇ ਫਾਇਲ-ਨਾਂ ਰੱਖਦਟ ਹਨ।ਰੰਗਤਆਭਾ-ਸਤ੍ਰਿਪਤਰੰਗਤ:ਵਿਰਾਟਆਈਕਾਨ ਤੇ ਪਾਠ(_c)ਚਿੱਤਰਅੰਤਰਾਲ:ਆਈਕਾਨਆਈਕਾਨ ਤੇ ਵਰਣਨਆਈਕਾਨ ਤੇ ਪਾਠਵਾਤਾਵਰਣ ਫਾਇਲ %s ਵਿੱਚ ਵੇਰੀਬਲ ਨਾਂ ਗਲਤ ਹੈ: %sਚਿੱਤਰਚਿੱਤਰ ਸੰਪਾਦਕਚਿੱਤਰ ਜਾਣਕਾਰੀਚਿੱਤਰ ਮੇਨੂਚਿੱਤਰ ਕਿਸਮਚਿੱਤਰ ਨਮੂਨੇਚਿੱਤਰ ਝਰੋਖਾ ਦਿੱਖਚਿੱਤਰ ਝਰੋਖੇਚਿੱਤਰ ਮਖੌਟਾਚਿੱਤਰਚਿੱਤਰ ਮੇਨੂਲਿਆਉ ਚੋਣਰੰਗ-ਪੱਟੀ ਆਯਾਤਰਸਤਾ ਲਿਆਉSVG ਤੋ ਲਿਆਉਣ ਲਈ ਰਸਤਾਨਵੀ ਰੰਗ-ਪੱਟੀ ਆਯਾਤ ਕਰੋਲਿਆਦਾ ਰਸਤਾਉਲਟ(_v)ਵਾਧਾਹਾਸ਼ੀਏ ਤੋ ਪਰਾ:ਪਹਿਲੀ ਸਤਰ ਦਾ ਹਾਸ਼ੀਏ ਤੋ ਪਰ੍ਹਾਤਤਕਰਾ:ਤਤਕਰਾਜਾਣਕਾਰੀ ਝਰੋਖਾਪਲੱਗ-ਇਨ ਨੂੰ ਸ਼ੁਰੂ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈਪਲੱਗ-ਇਨ ਨੂੰ ਸ਼ੁਰੂ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ: '%s' -ਸਿਆਹੀਇੰਟਪੁੱਟ ਯੰਤਰਇੰਪੁੱਟ ਪੱਧਰਸਹਾਰਾ ਵਿੱਚ ਜੋੜ੍ਹੋਤਤਕਾਲਿਕ ਨਵੀਨੀਕਰਨਇੰਟਰਫੇਸ਼ਅੰਦਰੂਨੀ ਜੈਮਪ ਤਰੀਕਾਅੰਦਰੂਨੀ ਕਾਰਵਾਈਕਾਂਟਮੌਜੂਦਾ ਚੋਣ ਨਾਲ ਜੋੜ੍ਹੋਅੰਤਰ-ਖੰਡ(ਧਾਰੀਦਾਰ)ਅੰਤਰ-ਖੰਡ(ਬਿੰਦੂਦਾਰ)ਗਲਤ ਯੂਟੀਐਫ-8ਫਾਇਲ '%s' ਵਿੱਚ ਗਲਤ ਯੂਟੀਐਫ-੮ ਡਾਟਾ ਹੈ।XCF ਫਾਇਲ ਵਿੱਚ ਗਲਤ ਯੂਟੀਐਫ-8 ਡਾਟਾਬੁਰਸ਼ ਫਾਇਲ '%s' ਵਿੱਚ ਗਲਤ ਯੂਟੀਐਫ-8 ਸਤਰਢਾਲਵਾਂ ਫਾਇਲ '%s' ਵਿੱਚ ਗਲਤ ਯੂਟੀਐਫ-8 ਸਤਰ ਹੈ।ਰੰਗ-ਪੱਟੀ ਫਾਇਲ '%s' ਵਿੱਚ ਗਲਤ ਯੂਟੀਐਫ-8 ਸਤਰ ਹੈ।ਉਲਟਉਲਟ ਚੈਨਲਉਲਟ ਚੋਣਅਨੁਕੂਲ:ਉੱਪਰ ਰੱਖੋਨਿਸ਼ਚਿਤ ਅਕਾਰ ਅਨੁਪਾਤਪਾਰਦਰਸ਼ਤਾ ਰੱਖੋਹੇਠ ਸਵਿੱਚਖੱਬੀ ਸਵਿੱਚਖੱਬੀ ਸਵਿੱਚ (Alt)ਖੱਬੀ ਸਵਿੱਚ (Control + Alt)ਖੱਬੀ ਸਵਿੱਚ (Control)ਖੱਬੀ ਸਵਿੱਚ (Shift + Alt)ਖੱਬੀ ਸਵਿੱਚ (Shift + Control + Alt)ਖੱਬੀ ਸਵਿੱਚ (Shift + Control)ਖੱਬੀ ਸਵਿੱਚ (Shift)ਸੱਜੀ ਸਵਿੱਚਸੱਜੀ ਸਵਿੱਚ (Alt)ਸੱਜੀ ਸਵਿੱਚ (Control + Alt)ਸੱਜੀ ਸਵਿੱਚ (Control)ਸੱਜੀ ਸਵਿੱਚ (Shift + Alt)ਸੱਜੀ ਸਵਿੱਚ (Shift + Control + Alt)ਸੱਜੀ ਸਵਿੱਚ (Shift + Control)ਸੱਜੀ ਸਵਿੱਚ (Shift)ਕੀ-ਬੋਰਡਕੀ-ਬੋਰਡ ਸ਼ਾਰਟਕੱਟਭੂ ਦਰਿਸ਼ਵੱਡਾਵੱਡਾ (256x256)ਵੱਡੇ ਨਮੂਨੇਅਖੀਰੀ ਗਲਤੀ:ਪਰਤਪਰਤ '%s' ਦਾ ਕੋਈ ਅਲਫਾ ਨਹੀ ਹੈ। ਪਰਤ ਇਸ ਤੋ ਉੱਪਰ ਹੈ।ਪਰਤ ਗੁਣਪਰਤ ਭਰਨ ਦੀ ਕਿਸਮਪਰਤ ਚੋਣਪਰਤ ਮੋਡਪਰਤ ਨਾਂ:ਪਰਤ ਨੂੰ ਹੋਰ ਹੇਠਾਂ ਨਹੀ ਕੀਤਾ ਜਾ ਸਕਦਾਪਰਤ ਨੂੰ ਹੋਰ ਉਠਾਇਆ ਨਹੀ ਜਾ ਸਕਦਾ ਹੈ।ਪਰਤ ਪਹਿਲਾਂ ਹੀ ਹੇਠਾਂ ਹੈਪਰਤ ਪਹਿਲਾਂ ਹੀ ਸਭ ਤੋ ਉਪੱਰ ਹੈਪਰਤ ਨੂੰ ਚਿੱਤਰ ਦੇ ਅਕਾਰ ਅਨੁਸਾਰ ਕਰੋਪਰਤਾਂਪਰਤ ਮੇਨੂਲੰਬਾਈ:ਜੈਪਮ ਨੂੰ ਆਪਣੇ ਅਖੀਰੀ ਸੰਭਾਲੇ ਅਜਲਾਸ ਨੂੰ ਸ਼ੁਰੂ ਵੇਲੇ ਮੁਡ਼-ਪ੍ਰਾਪਤ ਕਰਨ ਦੀ ਆਗਿਆ ਦਿਉ।ਪੱਧਰਤਤਕਰਾ ਪਰਤਾਂ ਲਈ ਪੱਧਰ ਅਨੁਕੂਲ ਨਹੀ ਕੀਤਾ ਜਾ ਸਕਦਾ ਹੈ।ਸਿਰਫ਼ ਰੋਸ਼ਨੀਰੇਖਾਰੇਖਾ ਚੌਡ਼ਾਈ:ਰੇਖਾ ਸ਼ੈਲੀ(_S):ਗਰਿੱਡ ਲਈ ਰੇਖਾ ਸ਼ੈਲੀਰੇਖਿਕਲੋਡਗੋਲਾਈ ਲੋਡ ਕਰੋਪੱਧਰ ਲੋਡ ਕਰੋਦਰਿਸ਼ ਲੋਡ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ...ਥਾਂ:ਲਾਗਰਿਥਮਿਕਡਾਟਾ ਫਾਇਲਾਂ ਵਿੱਚ ਖੋਜ ਜਾਰੀ ਹੈਚੈਨਲ ਹੇਠ ਕਰੋਹੇਠਲਾ ਚੈਨਲ ਥੱਲੇਹੇਠਲਾ ਚੈਨਲ ਥੱਲੇ(_B)ਪਰਤ ਨੂੰ ਹੇਠ ਕਰੋਪਰਤ ਨੂੰ ਹੇਠਾਂ ਭੇਜੋਰਸਤਾ ਹੇਠਰਸਤੇ ਨੂੰ ਹੇਠ ਵੱਲ ਨਿਵਾਉਚੈਨਲ ਹੇਠ ਕਰੋਹੇਠਲਾ ਚੈਨਲ ਥੱਲੇਪਰਦੇ ਤੇ ਏਧਰ-ਓਧਰ...ਮੈਜ਼ੀਨਟਾਮੈਜ਼ਾਨਟਿਕ:ਵੱਡ-ਦਰਿਸ਼ਮਖੌਟਾ ਧੁੰਦਲਾਪਨ:ਮੈਟ੍ਰਿਕਸ:ਅਧਿਕਤਮ ਡੂੰਘਾਈ:ਅਧਿਕਤਮ ਰੰਗ ਫ਼ਰਕਮੱਧ:ਮਾਪਦੂਰੀ ਅਤੇ ਕੋਣ ਮਾਪੋਦੂਰੀ ਅਤੇ ਕੋਣ ਮਾਪੋਮੱਧਮ:ਮੱਧਮਹੇਠਾਂ ਨੂੰ ਵਿਲੀਨ ਪਰਤਾਂ ਨੂੰ ਵਿਲੀਨ ਕਰੋਰੰਗ-ਪੱਟੀ ਵਿਲੀਨਦਿੱਸ ਰਹੀਆਂ ਪਰਤਾਂ ਨੂੰ ਵਿਲੀਨ ਕਰੋਦਿੱਖ ਰਸਤੇ ਵਿਲੀਨ ਕਰੋਦਿੱਖ ਪਰਤਾਂ ਨੂੰ ਵਿਲੀਨ ਕਰੋ...ਸੁਨੇਹਾ %d ਵਾਰ ਮੁਡ਼ ਵੇਖਾਉਸੁਨੇਹਾ ਇੱਕ ਵਾਰ ਮੁਡ਼ ਵੇਖਾਉਮੱਧ-ਟੋਨਫੁਟਕਲਕਣਮੋਡਮੋਡ:ਚੁਣੇ ਰੰਗ ਸੋਧੋਰੰਗ ਪੱਧਰ ਦੀ ਚੁਣੀ ਸੀਮਾ ਸੋਧਸਾਰੇ ਰੰਗ ਸੋਧੋਰੇਖਾ ਥਾਂ ਸੋਧੋਮੈਡੀਊਲ ਫੋਲਡਰਮੈਡੀਲਿਊ ਪ੍ਰਬੰਧਕਮੈਡੀਲਿਊਮਾਊਸ ਪਹੀਆਏਧਰ-ਓਧਰਸਹਾਰੇ ਏਧਰ-ਓਧਰਚੈਨਲ ਏਧਰ-ਓਧਰਨਿਰਦੇਸ਼ਕ ਏਧਰ-ਓਧਰਪਰਤ ਏਧਰ-ਓਧਰਪਰਤ-ਮਖੌਟਾ ਏਧਰ-ਓਧਰਰਸਤਾਂ ਏਧਰ-ਓਧਰਚੁਣਿਆ ਏਧਰ-ਓਧਰਪਰਤਾਂ ਤੇ ਚੋਣ ਏਧਰ-ਓਧਰਚੁਣੇ ਫਿਲਟਰ ਨੂੰ ਹੇਠਾਂ ਭੇਜੋਚੁਣੇ ਫਿਲਟਰ ਨੂੰ ਉੱਪਰ ਭੇਜੋਭੇਜੋ:ਬਹੁਏਧਰ-ਓਧਰਨਾਂ:ਨਵਾਂ ਚੈਨਲਨਵਾਂ ਚੈਨਲ ਰੰਗਨਵਾਂ ਚੈਨਲ ਚੋਣਨਵਾਂ ਚਿੱਤਰਨਵੀ ਪਰਤਨਵਾਂ ਰਸਤਾਨਵਾਂ ਰਸਤਾ ਚੋਣਨਵਾਂ ਨਮੂਨਾਨਵਾਂ ਬੁਰਸ਼ਆਖਰੀ ਮੁੱਲ ਨਾਲ ਨਵਾਂ ਚੈਨਲਨਵਾਂ ਚੈਨਲ...ਨਵਾਂ ਢਾਲੂਨਵੀ ਪਰਤ...ਹੁਣ ਉਪਲੱਬਧ ਨਹੀ'%s' ਵਿੱਚ ਕੋਈ ਰਸਤਾ ਨਹੀ ਲੱਭਿਆਬਫਰ ਵਿੱਚ ਕੋਈ ਰਸਤਾ ਨਹੀ ਲੱਭਿਆਇਸ ਕਾਰਵਾਈ ਲਈ ਕੋਈ ਤਰਤੀਬ ਉਪਲੱਬਧ ਨਹੀ ਹੈ।ਕੋਈ ਚੋਣ ਨਹੀਝਟਕੇ ਲਈ ਕੋਈ ਚੋਣ ਨਹੀ ਹੈਕੋਈ ਨਹੀਕੋਈ ਨਹੀ (ਸੱਭ ਤੋ ਤੇਜ਼)ਸਧਾਰਨਸਧਾਰਨ (128x128)ਸਧਾਰਨ ਝਰੋਖਾਵਿਲੀਨ ਕਰਨ ਲਈ ਲੋਡ਼ੀਦੀਆ ਪਰਤਾਂ ਨਹੀ ਹਨ। ਘੱਟੋ-ਘੱਟ ਦੋ ਪਰਤਾਂ ਹੋਣੀਆ ਚਾਹੀਦੀਆਂ ਹਨ।ਦਿੱਖ ਰਸਤੇ ਨੂੰ ਵਿਲੀਨ ਕਰਨ ਲਈ ਲੋਡ਼ੀਦੇ ਉਪਲੱਬਧ ਰਸਤੇ ਨਹੀ ਹਨ। ਘੱਟੋ-ਘੱਟ ਦੋ ਰਸਤੇ ਲੋਡ਼ੀਦੇ ਹਨ।ਡਿਸਕ ਤੇਬਹੁ-ਪ੍ਰੋਸੈਸਰ ਮਸ਼ੀਨਤੇ, ਜੇਕਰ ਜੈਮਪ --enable-mp ਨਾਲ ਕੰਪਾਇਲ ਹੋਇਆ ਹੈ ਤਾਂ, ਇਹਨਿਰਧਾਰਿਤ ਕਰੇਗਾ ਇੱਕ ਸਮੇਂ ਜੈਮਪ ਕਿੰਨੇ ਪ੍ਰੋਸੈਸਰ ਵਰਤ ਸਕਦਾ ਹੈ।ਸਿਰਫ ਮੈਮੋਰੀ ਵਿੱਚਨਵੀਂ ਪਰਤ ਵਾਂਗ ਖੋਲੋ...ਧੁੰਦਲਾਪਨਧੁੰਦਲਾਪਨ:ਚਿੱਤਰ ਖੋਲ੍ਹੋਚਿੱਤਰ ਪਰਤ ਵਾਂਗ ਖੋਲ੍ਹੋਪਾਠ ਫਾਇਲ (ਯੂਟੀਐਫ-8) ਖੋਲ੍ਹੋਥਾਂ ਖੋਲੋ...ਤਾਜ਼ਾ ਖੋਲੇ(_R)ਚਿੱਤਰ ਖੋਲ੍ਹੋ ਤਖਤੀਬੁਰਸ਼ ਚੋਣ ਤਖਤੀ ਖੋਲ੍ਹੋਫੋਂਟ ਚੋਣ ਤਖਤੀ ਖੋਲੋਢਾਲਵਾਂ ਚੋਣ ਤਖਤੀ ਖੋਲ੍ਹੋਤਰਤੀਬ ਚੋਣ ਤਖਤੀ ਖੋਲ੍ਹੋਤਰਤੀਬ ਚੋਣ ਤਖਤੀ ਖੋਲ੍ਹੋਚੁਣਿਆ ਇੰਦਰਾਜ਼ ਖੋਲੋ'%s' ਨੂੰ ਖੋਲਣਾ ਅਸਫਲ: +ਸਿਆਹੀਇੰਟਪੁੱਟ ਯੰਤਰਇੰਪੁੱਟ ਪੱਧਰਸਹਾਰਾ ਵਿੱਚ ਜੋੜ੍ਹੋਤਤਕਾਲਿਕ ਨਵੀਨੀਕਰਨਇੰਟਰਫੇਸ਼ਅੰਦਰੂਨੀ ਜੈਮਪ ਤਰੀਕਾਅੰਦਰੂਨੀ ਕਾਰਵਾਈਕਾਂਟਮੌਜੂਦਾ ਚੋਣ ਨਾਲ ਜੋੜ੍ਹੋਅੰਤਰ-ਖੰਡ(ਧਾਰੀਦਾਰ)ਅੰਤਰ-ਖੰਡ(ਬਿੰਦੂਦਾਰ)ਗਲਤ ਯੂਟੀਐਫ-8ਫਾਇਲ '%s' ਵਿੱਚ ਗਲਤ ਯੂਟੀਐਫ-੮ ਡਾਟਾ ਹੈ।XCF ਫਾਇਲ ਵਿੱਚ ਗਲਤ ਯੂਟੀਐਫ-8 ਡਾਟਾਬੁਰਸ਼ ਫਾਇਲ '%s' ਵਿੱਚ ਗਲਤ ਯੂਟੀਐਫ-8 ਸਤਰਢਾਲਵਾਂ ਫਾਇਲ '%s' ਵਿੱਚ ਗਲਤ ਯੂਟੀਐਫ-8 ਸਤਰ ਹੈ।ਰੰਗ-ਪੱਟੀ ਫਾਇਲ '%s' ਵਿੱਚ ਗਲਤ ਯੂਟੀਐਫ-8 ਸਤਰ ਹੈ।ਉਲਟਉਲਟ ਚੈਨਲਉਲਟ ਚੋਣਅਨੁਕੂਲ:ਉੱਪਰ ਰੱਖੋਪਾਰਦਰਸ਼ਤਾ ਰੱਖੋਹੇਠ ਸਵਿੱਚਖੱਬੀ ਸਵਿੱਚਖੱਬੀ ਸਵਿੱਚ (Alt)ਖੱਬੀ ਸਵਿੱਚ (Control + Alt)ਖੱਬੀ ਸਵਿੱਚ (Control)ਖੱਬੀ ਸਵਿੱਚ (Shift + Alt)ਖੱਬੀ ਸਵਿੱਚ (Shift + Control + Alt)ਖੱਬੀ ਸਵਿੱਚ (Shift + Control)ਖੱਬੀ ਸਵਿੱਚ (Shift)ਸੱਜੀ ਸਵਿੱਚਸੱਜੀ ਸਵਿੱਚ (Alt)ਸੱਜੀ ਸਵਿੱਚ (Control + Alt)ਸੱਜੀ ਸਵਿੱਚ (Control)ਸੱਜੀ ਸਵਿੱਚ (Shift + Alt)ਸੱਜੀ ਸਵਿੱਚ (Shift + Control + Alt)ਸੱਜੀ ਸਵਿੱਚ (Shift + Control)ਸੱਜੀ ਸਵਿੱਚ (Shift)ਕੀ-ਬੋਰਡਕੀ-ਬੋਰਡ ਸ਼ਾਰਟਕੱਟਭੂ ਦਰਿਸ਼ਵੱਡਾਵੱਡਾ (256x256)ਵੱਡੇ ਨਮੂਨੇਅਖੀਰੀ ਗਲਤੀ:ਪਰਤਪਰਤ '%s' ਦਾ ਕੋਈ ਅਲਫਾ ਨਹੀ ਹੈ। ਪਰਤ ਇਸ ਤੋ ਉੱਪਰ ਹੈ।ਪਰਤ ਗੁਣਪਰਤ ਭਰਨ ਦੀ ਕਿਸਮਪਰਤ ਚੋਣਪਰਤ ਮੋਡਪਰਤ ਨਾਂ:ਪਰਤ ਨੂੰ ਹੋਰ ਹੇਠਾਂ ਨਹੀ ਕੀਤਾ ਜਾ ਸਕਦਾਪਰਤ ਨੂੰ ਹੋਰ ਉਠਾਇਆ ਨਹੀ ਜਾ ਸਕਦਾ ਹੈ।ਪਰਤ ਪਹਿਲਾਂ ਹੀ ਹੇਠਾਂ ਹੈਪਰਤ ਪਹਿਲਾਂ ਹੀ ਸਭ ਤੋ ਉਪੱਰ ਹੈਪਰਤ ਨੂੰ ਚਿੱਤਰ ਦੇ ਅਕਾਰ ਅਨੁਸਾਰ ਕਰੋਪਰਤਾਂਪਰਤ ਮੇਨੂਲੰਬਾਈ:ਜੈਪਮ ਨੂੰ ਆਪਣੇ ਅਖੀਰੀ ਸੰਭਾਲੇ ਅਜਲਾਸ ਨੂੰ ਸ਼ੁਰੂ ਵੇਲੇ ਮੁਡ਼-ਪ੍ਰਾਪਤ ਕਰਨ ਦੀ ਆਗਿਆ ਦਿਉ।ਪੱਧਰਤਤਕਰਾ ਪਰਤਾਂ ਲਈ ਪੱਧਰ ਅਨੁਕੂਲ ਨਹੀ ਕੀਤਾ ਜਾ ਸਕਦਾ ਹੈ।ਸਿਰਫ਼ ਰੋਸ਼ਨੀਰੇਖਾਰੇਖਾ ਚੌਡ਼ਾਈ:ਰੇਖਾ ਸ਼ੈਲੀ(_S):ਗਰਿੱਡ ਲਈ ਰੇਖਾ ਸ਼ੈਲੀਰੇਖਿਕਲੋਡਗੋਲਾਈ ਲੋਡ ਕਰੋਪੱਧਰ ਲੋਡ ਕਰੋਦਰਿਸ਼ ਲੋਡ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ...ਥਾਂ:ਲਾਗਰਿਥਮਿਕਡਾਟਾ ਫਾਇਲਾਂ ਵਿੱਚ ਖੋਜ ਜਾਰੀ ਹੈਚੈਨਲ ਹੇਠ ਕਰੋਹੇਠਲਾ ਚੈਨਲ ਥੱਲੇਹੇਠਲਾ ਚੈਨਲ ਥੱਲੇ(_B)ਪਰਤ ਨੂੰ ਹੇਠ ਕਰੋਪਰਤ ਨੂੰ ਹੇਠਾਂ ਭੇਜੋਰਸਤਾ ਹੇਠਰਸਤੇ ਨੂੰ ਹੇਠ ਵੱਲ ਨਿਵਾਉਚੈਨਲ ਹੇਠ ਕਰੋਹੇਠਲਾ ਚੈਨਲ ਥੱਲੇਪਰਦੇ ਤੇ ਏਧਰ-ਓਧਰ...ਮੈਜ਼ੀਨਟਾਮੈਜ਼ਾਨਟਿਕ:ਵੱਡ-ਦਰਿਸ਼ਮਖੌਟਾ ਧੁੰਦਲਾਪਨ:ਮੈਟ੍ਰਿਕਸ:ਅਧਿਕਤਮ ਡੂੰਘਾਈ:ਅਧਿਕਤਮ ਰੰਗ ਫ਼ਰਕਮੱਧ:ਮਾਪਦੂਰੀ ਅਤੇ ਕੋਣ ਮਾਪੋਦੂਰੀ ਅਤੇ ਕੋਣ ਮਾਪੋਮੱਧਮ:ਮੱਧਮਹੇਠਾਂ ਨੂੰ ਵਿਲੀਨ ਪਰਤਾਂ ਨੂੰ ਵਿਲੀਨ ਕਰੋਰੰਗ-ਪੱਟੀ ਵਿਲੀਨਦਿੱਸ ਰਹੀਆਂ ਪਰਤਾਂ ਨੂੰ ਵਿਲੀਨ ਕਰੋਦਿੱਖ ਰਸਤੇ ਵਿਲੀਨ ਕਰੋਦਿੱਖ ਪਰਤਾਂ ਨੂੰ ਵਿਲੀਨ ਕਰੋ...ਸੁਨੇਹਾ %d ਵਾਰ ਮੁਡ਼ ਵੇਖਾਉਸੁਨੇਹਾ ਇੱਕ ਵਾਰ ਮੁਡ਼ ਵੇਖਾਉਮੱਧ-ਟੋਨਫੁਟਕਲਕਣਮੋਡਮੋਡ:ਚੁਣੇ ਰੰਗ ਸੋਧੋਰੰਗ ਪੱਧਰ ਦੀ ਚੁਣੀ ਸੀਮਾ ਸੋਧਸਾਰੇ ਰੰਗ ਸੋਧੋਰੇਖਾ ਥਾਂ ਸੋਧੋਮੈਡੀਊਲ ਫੋਲਡਰਮੈਡੀਲਿਊ ਪ੍ਰਬੰਧਕਮੈਡੀਲਿਊਮਾਊਸ ਪਹੀਆਏਧਰ-ਓਧਰਸਹਾਰੇ ਏਧਰ-ਓਧਰਚੈਨਲ ਏਧਰ-ਓਧਰਨਿਰਦੇਸ਼ਕ ਏਧਰ-ਓਧਰਪਰਤ ਏਧਰ-ਓਧਰਪਰਤ-ਮਖੌਟਾ ਏਧਰ-ਓਧਰਰਸਤਾਂ ਏਧਰ-ਓਧਰਚੁਣਿਆ ਏਧਰ-ਓਧਰਪਰਤਾਂ ਤੇ ਚੋਣ ਏਧਰ-ਓਧਰਚੁਣੇ ਫਿਲਟਰ ਨੂੰ ਹੇਠਾਂ ਭੇਜੋਚੁਣੇ ਫਿਲਟਰ ਨੂੰ ਉੱਪਰ ਭੇਜੋਭੇਜੋ:ਬਹੁਏਧਰ-ਓਧਰਨਾਂ:ਨਵਾਂ ਚੈਨਲਨਵਾਂ ਚੈਨਲ ਰੰਗਨਵਾਂ ਚੈਨਲ ਚੋਣਨਵਾਂ ਚਿੱਤਰਨਵੀ ਪਰਤਨਵਾਂ ਰਸਤਾਨਵਾਂ ਰਸਤਾ ਚੋਣਨਵਾਂ ਨਮੂਨਾਨਵਾਂ ਬੁਰਸ਼ਆਖਰੀ ਮੁੱਲ ਨਾਲ ਨਵਾਂ ਚੈਨਲਨਵਾਂ ਚੈਨਲ...ਨਵਾਂ ਢਾਲੂਨਵੀ ਪਰਤ...ਹੁਣ ਉਪਲੱਬਧ ਨਹੀ'%s' ਵਿੱਚ ਕੋਈ ਰਸਤਾ ਨਹੀ ਲੱਭਿਆਬਫਰ ਵਿੱਚ ਕੋਈ ਰਸਤਾ ਨਹੀ ਲੱਭਿਆਇਸ ਕਾਰਵਾਈ ਲਈ ਕੋਈ ਤਰਤੀਬ ਉਪਲੱਬਧ ਨਹੀ ਹੈ।ਕੋਈ ਚੋਣ ਨਹੀਝਟਕੇ ਲਈ ਕੋਈ ਚੋਣ ਨਹੀ ਹੈਕੋਈ ਨਹੀਕੋਈ ਨਹੀ (ਸੱਭ ਤੋ ਤੇਜ਼)ਸਧਾਰਨਸਧਾਰਨ (128x128)ਸਧਾਰਨ ਝਰੋਖਾਵਿਲੀਨ ਕਰਨ ਲਈ ਲੋਡ਼ੀਦੀਆ ਪਰਤਾਂ ਨਹੀ ਹਨ। ਘੱਟੋ-ਘੱਟ ਦੋ ਪਰਤਾਂ ਹੋਣੀਆ ਚਾਹੀਦੀਆਂ ਹਨ।ਦਿੱਖ ਰਸਤੇ ਨੂੰ ਵਿਲੀਨ ਕਰਨ ਲਈ ਲੋਡ਼ੀਦੇ ਉਪਲੱਬਧ ਰਸਤੇ ਨਹੀ ਹਨ। ਘੱਟੋ-ਘੱਟ ਦੋ ਰਸਤੇ ਲੋਡ਼ੀਦੇ ਹਨ।ਡਿਸਕ ਤੇਬਹੁ-ਪ੍ਰੋਸੈਸਰ ਮਸ਼ੀਨਤੇ, ਜੇਕਰ ਜੈਮਪ --enable-mp ਨਾਲ ਕੰਪਾਇਲ ਹੋਇਆ ਹੈ ਤਾਂ, ਇਹਨਿਰਧਾਰਿਤ ਕਰੇਗਾ ਇੱਕ ਸਮੇਂ ਜੈਮਪ ਕਿੰਨੇ ਪ੍ਰੋਸੈਸਰ ਵਰਤ ਸਕਦਾ ਹੈ।ਸਿਰਫ ਮੈਮੋਰੀ ਵਿੱਚਨਵੀਂ ਪਰਤ ਵਾਂਗ ਖੋਲੋ...ਧੁੰਦਲਾਪਨਧੁੰਦਲਾਪਨ:ਚਿੱਤਰ ਖੋਲ੍ਹੋਚਿੱਤਰ ਪਰਤ ਵਾਂਗ ਖੋਲ੍ਹੋਪਾਠ ਫਾਇਲ (ਯੂਟੀਐਫ-8) ਖੋਲ੍ਹੋਥਾਂ ਖੋਲੋ...ਤਾਜ਼ਾ ਖੋਲੇ(_R)ਚਿੱਤਰ ਖੋਲ੍ਹੋ ਤਖਤੀਬੁਰਸ਼ ਚੋਣ ਤਖਤੀ ਖੋਲ੍ਹੋਫੋਂਟ ਚੋਣ ਤਖਤੀ ਖੋਲੋਢਾਲਵਾਂ ਚੋਣ ਤਖਤੀ ਖੋਲ੍ਹੋਤਰਤੀਬ ਚੋਣ ਤਖਤੀ ਖੋਲ੍ਹੋਤਰਤੀਬ ਚੋਣ ਤਖਤੀ ਖੋਲ੍ਹੋਚੁਣਿਆ ਇੰਦਰਾਜ਼ ਖੋਲੋ'%s' ਨੂੰ ਖੋਲਣਾ ਅਸਫਲ: %s'%s' ਨੂੰ ਖੋਲਣਾ ਅਸਫਲ: %sਚੋਣ: ਅਸਲੀ ਚੌੜਾਈ:ਹੋਰ (%s) ...ਆਉਟਪੁੱਟ ਪੱਧਰਪਰਤ ਫੈਲਾਉPDB ਨੂੰ ਲਿਆਉਣ ਵਿੱਚ ਗਲਤੀ: diff -uraN gimp-2.2.0/po/pa.po gimp-2.2.1/po/pa.po --- gimp-2.2.0/po/pa.po 2004-12-19 03:11:38.000000000 +0100 +++ gimp-2.2.1/po/pa.po 2004-12-28 16:58:35.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: pa\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-19 03:11+0100\n" +"POT-Creation-Date: 2004-12-28 16:58+0100\n" "PO-Revision-Date: 2004-12-10 11:34+0530\n" "Last-Translator: Amanpreet Singh Alam \n" "Language-Team: Punjabi \n" @@ -1013,11 +1013,11 @@ msgid "Remove dangling entries" msgstr "ਲਟਕਦੇ ਇੰਦਰਾਜ਼ ਹਟਾਓ" -#: app/actions/documents-commands.c:252 app/actions/file-commands.c:163 +#: app/actions/documents-commands.c:251 app/actions/file-commands.c:163 #: app/dialogs/file-open-dialog.c:198 app/dialogs/file-open-dialog.c:249 #: app/dialogs/file-open-location-dialog.c:193 -#: app/display/gimpdisplayshell-dnd.c:332 app/widgets/gimplayertreeview.c:802 -#: app/widgets/gimptoolbox-dnd.c:123 +#: app/display/gimpdisplayshell-dnd.c:334 app/widgets/gimplayertreeview.c:804 +#: app/widgets/gimptoolbox-dnd.c:125 #, c-format msgid "" "Opening '%s' failed:\n" @@ -1525,153 +1525,153 @@ msgid "Zoom all" msgstr "ਸਭ ਆਕਾਰ" -#: app/actions/gradient-editor-actions.c:582 +#: app/actions/gradient-editor-actions.c:589 msgid "_Blending Function for Segment" msgstr "" -#: app/actions/gradient-editor-actions.c:584 +#: app/actions/gradient-editor-actions.c:591 msgid "Coloring _Type for Segment" msgstr "" -#: app/actions/gradient-editor-actions.c:587 +#: app/actions/gradient-editor-actions.c:594 msgid "_Flip Segment" msgstr "ਫਾਇਲ਼ ਖੰਡ" -#: app/actions/gradient-editor-actions.c:589 +#: app/actions/gradient-editor-actions.c:596 msgid "_Replicate Segment..." msgstr "" -#: app/actions/gradient-editor-actions.c:591 +#: app/actions/gradient-editor-actions.c:598 msgid "Split Segment at _Midpoint" msgstr "" -#: app/actions/gradient-editor-actions.c:593 +#: app/actions/gradient-editor-actions.c:600 msgid "Split Segment _Uniformly..." msgstr "" -#: app/actions/gradient-editor-actions.c:595 +#: app/actions/gradient-editor-actions.c:602 msgid "_Delete Segment" msgstr "ਖੰਡ ਹਟਾਓ" -#: app/actions/gradient-editor-actions.c:597 +#: app/actions/gradient-editor-actions.c:604 msgid "Re-_center Segment's Midpoint" msgstr "" -#: app/actions/gradient-editor-actions.c:599 +#: app/actions/gradient-editor-actions.c:606 msgid "Re-distribute _Handles in Segment" msgstr "" -#: app/actions/gradient-editor-actions.c:604 +#: app/actions/gradient-editor-actions.c:611 msgid "_Blending Function for Selection" msgstr "" -#: app/actions/gradient-editor-actions.c:606 +#: app/actions/gradient-editor-actions.c:613 msgid "Coloring _Type for Selection" msgstr "" -#: app/actions/gradient-editor-actions.c:609 +#: app/actions/gradient-editor-actions.c:616 msgid "_Flip Selection" msgstr "ਚੋਣ ਝਟਕੋ" -#: app/actions/gradient-editor-actions.c:611 +#: app/actions/gradient-editor-actions.c:618 msgid "_Replicate Selection..." msgstr "" -#: app/actions/gradient-editor-actions.c:613 +#: app/actions/gradient-editor-actions.c:620 msgid "Split Segments at _Midpoints" msgstr "" -#: app/actions/gradient-editor-actions.c:615 +#: app/actions/gradient-editor-actions.c:622 msgid "Split Segments _Uniformly..." msgstr "" -#: app/actions/gradient-editor-actions.c:617 +#: app/actions/gradient-editor-actions.c:624 msgid "_Delete Selection" msgstr "" -#: app/actions/gradient-editor-actions.c:619 +#: app/actions/gradient-editor-actions.c:626 msgid "Re-_center Midpoints in Selection" msgstr "" -#: app/actions/gradient-editor-actions.c:621 +#: app/actions/gradient-editor-actions.c:628 msgid "Re-distribute _Handles in Selection" msgstr "" -#: app/actions/gradient-editor-commands.c:84 +#: app/actions/gradient-editor-commands.c:85 msgid "Left Endpoint Color" msgstr "" -#: app/actions/gradient-editor-commands.c:86 +#: app/actions/gradient-editor-commands.c:87 msgid "Gradient Segment's Left Endpoint Color" msgstr "" -#: app/actions/gradient-editor-commands.c:186 +#: app/actions/gradient-editor-commands.c:189 msgid "Right Endpoint Color" msgstr "" -#: app/actions/gradient-editor-commands.c:188 +#: app/actions/gradient-editor-commands.c:191 msgid "Gradient Segment's Right Endpoint Color" msgstr "" -#: app/actions/gradient-editor-commands.c:353 +#: app/actions/gradient-editor-commands.c:358 msgid "Replicate Segment" msgstr "" -#: app/actions/gradient-editor-commands.c:354 +#: app/actions/gradient-editor-commands.c:359 msgid "Replicate Gradient Segment" msgstr "" -#: app/actions/gradient-editor-commands.c:358 +#: app/actions/gradient-editor-commands.c:363 msgid "Replicate Selection" msgstr "" -#: app/actions/gradient-editor-commands.c:359 +#: app/actions/gradient-editor-commands.c:364 msgid "Replicate Gradient Selection" msgstr "" -#: app/actions/gradient-editor-commands.c:371 +#: app/actions/gradient-editor-commands.c:376 msgid "Replicate" msgstr "" -#: app/actions/gradient-editor-commands.c:386 +#: app/actions/gradient-editor-commands.c:391 msgid "" "Select the number of times\n" "to replicate the selected segment." msgstr "" -#: app/actions/gradient-editor-commands.c:389 +#: app/actions/gradient-editor-commands.c:394 msgid "" "Select the number of times\n" "to replicate the selection." msgstr "" -#: app/actions/gradient-editor-commands.c:444 +#: app/actions/gradient-editor-commands.c:452 msgid "Split Segment Uniformly" msgstr "" -#: app/actions/gradient-editor-commands.c:445 +#: app/actions/gradient-editor-commands.c:453 msgid "Split Gradient Segment Uniformly" msgstr "" -#: app/actions/gradient-editor-commands.c:449 +#: app/actions/gradient-editor-commands.c:457 msgid "Split Segments Uniformly" msgstr "" -#: app/actions/gradient-editor-commands.c:450 +#: app/actions/gradient-editor-commands.c:458 msgid "Split Gradient Segments Uniformly" msgstr "" -#: app/actions/gradient-editor-commands.c:462 +#: app/actions/gradient-editor-commands.c:470 msgid "Split" msgstr "ਵੱਖ ਕਰੋ" -#: app/actions/gradient-editor-commands.c:478 +#: app/actions/gradient-editor-commands.c:486 msgid "" "Select the number of uniform parts\n" "in which to split the selected segment." msgstr "" -#: app/actions/gradient-editor-commands.c:481 +#: app/actions/gradient-editor-commands.c:489 msgid "" "Select the number of uniform parts\n" "in which to split the segments in the selection." @@ -2141,7 +2141,7 @@ #: app/actions/layers-commands.c:232 app/actions/layers-commands.c:234 #: app/actions/layers-commands.c:291 app/actions/layers-commands.c:295 -#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:840 +#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:842 msgid "New Layer" msgstr "ਨਵੀ ਪਰਤ" @@ -2153,7 +2153,7 @@ msgid "Set Layer Boundary Size" msgstr "" -#: app/actions/layers-commands.c:512 app/core/gimplayer.c:255 +#: app/actions/layers-commands.c:512 app/core/gimplayer.c:253 msgid "Scale Layer" msgstr "ਪਰਤ ਪੈਮਾਨਾ" @@ -2165,7 +2165,7 @@ msgid "Layer Mask to Selection" msgstr "" -#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1085 +#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1066 #: app/dialogs/layer-add-mask-dialog.c:62 msgid "Add Layer Mask" msgstr "ਪਰਤ ਮਖੋਟਾ ਜੋੜ੍ਹੋ" @@ -2792,7 +2792,7 @@ msgstr "ਪਾਠ ਫਾਇਲ (ਯੂਟੀਐਫ-8) ਖੋਲ੍ਹੋ" #: app/actions/text-editor-commands.c:132 app/config/gimpconfig-utils.c:552 -#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:393 +#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:396 #: app/core/gimpbrushgenerated.c:601 app/core/gimpbrushpipe.c:338 #: app/core/gimpgradient-load.c:63 app/core/gimppalette.c:360 #: app/core/gimppattern.c:328 app/tools/gimpimagemaptool.c:608 @@ -4704,7 +4704,7 @@ msgid "FG to Transparent" msgstr "FG ਤੋ ਪਾਰਦਰਸ਼ੀ" -#: app/core/gimp-gui.c:148 +#: app/core/gimp-gui.c:153 msgid "GIMP" msgstr "ਜੈਮਪ" @@ -4736,39 +4736,54 @@ msgid "Modules" msgstr "ਮੈਡੀਲਿਊ" -#: app/core/gimpbrush.c:531 +#: app/core/gimpbrush.c:534 #, c-format msgid "Could not read %d bytes from '%s': %s" msgstr " %d ਬਾਈਟ'%s' ਤੋ ਪੜ੍ਹੇ ਨਹੀ ਜਾ ਸਕੇ ਹਨ: %s" -#: app/core/gimpbrush.c:566 +#: app/core/gimpbrush.c:554 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Width = 0." +msgstr "ਬੁਰਸ਼ ਫਾਇਲ '%s' ਵਿੱਚ ਘਾਤਕ ਗਲਤੀ: ਫਾਇਲ ਨਕਾਰਾ ਹੈ।" + +#: app/core/gimpbrush.c:563 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Height = 0." +msgstr "ਬੁਰਸ਼ ਫਾਇਲ '%s' ਵਿੱਚ ਘਾਤਕ ਗਲਤੀ: ਫਾਇਲ ਨਕਾਰਾ ਹੈ।" + +#: app/core/gimpbrush.c:572 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Bytes = 0." +msgstr "ਬੁਰਸ਼ ਫਾਇਲ '%s' ਵਿੱਚ ਘਾਤਕ ਗਲਤੀ: ਫਾਇਲ ਨਕਾਰਾ ਹੈ।" + +#: app/core/gimpbrush.c:596 #, c-format msgid "Fatal parse error in brush file '%s': Unknown depth %d." msgstr "" -#: app/core/gimpbrush.c:579 +#: app/core/gimpbrush.c:609 #, c-format msgid "Fatal parse error in brush file '%s': Unknown version %d." msgstr "ਬੁਰਸ਼ ਫਾਇਲ '%s' ਵਿੱਚ ਘਾਤਕ ਗਲਤੀ: ਅਣਪਛਾਤਾ ਵਰਜਨ %d।" -#: app/core/gimpbrush.c:595 app/core/gimpbrush.c:715 +#: app/core/gimpbrush.c:625 app/core/gimpbrush.c:745 #, c-format msgid "Fatal parse error in brush file '%s': File appears truncated." msgstr "ਬੁਰਸ਼ ਫਾਇਲ '%s' ਵਿੱਚ ਘਾਤਕ ਗਲਤੀ: ਫਾਇਲ ਤਬਦੀਲ ਜਾਪਦੀ ਹੈ।" -#: app/core/gimpbrush.c:603 app/core/gimpbrushgenerated.c:648 +#: app/core/gimpbrush.c:633 app/core/gimpbrushgenerated.c:648 #: app/core/gimpbrushpipe.c:354 #, c-format msgid "Invalid UTF-8 string in brush file '%s'." msgstr "ਬੁਰਸ਼ ਫਾਇਲ '%s' ਵਿੱਚ ਗਲਤ ਯੂਟੀਐਫ-8 ਸਤਰ" -#: app/core/gimpbrush.c:610 app/core/gimpcontext.c:1299 -#: app/core/gimpitem.c:479 app/core/gimppattern.c:400 +#: app/core/gimpbrush.c:640 app/core/gimpcontext.c:1299 +#: app/core/gimpitem.c:480 app/core/gimppattern.c:400 #: app/dialogs/template-options-dialog.c:80 app/tools/gimpvectortool.c:339 msgid "Unnamed" msgstr "ਬੇ-ਨਾਮ" -#: app/core/gimpbrush.c:704 +#: app/core/gimpbrush.c:734 #, c-format msgid "" "Fatal parse error in brush file '%s': Unsupported brush depth %d\n" @@ -4933,11 +4948,11 @@ "%s" #: app/core/gimpdatafactory.c:411 app/core/gimpdatafactory.c:414 -#: app/core/gimpitem.c:274 app/core/gimpitem.c:277 +#: app/core/gimpitem.c:275 app/core/gimpitem.c:278 msgid "copy" msgstr "ਨਕਲ" -#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:286 +#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:287 #, c-format msgid "%s copy" msgstr "%s ਨਕਲ" @@ -4999,7 +5014,7 @@ msgid "Rotate" msgstr "ਘੁੰਮਾਉ" -#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:259 +#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:257 msgid "Transform Layer" msgstr "ਤਬਦੀਲ ਪਰਤ" @@ -5366,7 +5381,7 @@ #. pixel size #: app/core/gimpimagefile.c:624 app/dialogs/info-window.c:552 -#: app/widgets/gimpsizebox.c:552 app/widgets/gimptemplateeditor.c:637 +#: app/widgets/gimpsizebox.c:429 app/widgets/gimptemplateeditor.c:637 #: app/widgets/gimptemplateeditor.c:673 #, c-format msgid "%d x %d pixels" @@ -5386,15 +5401,15 @@ msgid "Could not open thumbnail '%s': %s" msgstr "" -#: app/core/gimpitem.c:1096 +#: app/core/gimpitem.c:1103 msgid "Attach Parasite" msgstr "" -#: app/core/gimpitem.c:1106 +#: app/core/gimpitem.c:1113 msgid "Attach Parasite to Item" msgstr "" -#: app/core/gimpitem.c:1145 app/core/gimpitem.c:1152 +#: app/core/gimpitem.c:1152 app/core/gimpitem.c:1159 msgid "Remove Parasite from Item" msgstr "" @@ -5420,76 +5435,76 @@ msgid "Floating Selection to Layer" msgstr "ਪਰਤ ਲਈ ਤਰਦੀ ਚੋਣ" -#: app/core/gimplayer.c:252 app/pdb/internal_procs.c:152 +#: app/core/gimplayer.c:250 app/pdb/internal_procs.c:152 msgid "Layer" msgstr "ਪਰਤ" -#: app/core/gimplayer.c:253 +#: app/core/gimplayer.c:251 msgid "Rename Layer" msgstr "ਪਰਤ ਦਾ ਨਾਂ-ਤਬਦੀਲ" -#: app/core/gimplayer.c:254 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 +#: app/core/gimplayer.c:252 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 msgid "Move Layer" msgstr "ਪਰਤ ਏਧਰ-ਓਧਰ" -#: app/core/gimplayer.c:256 +#: app/core/gimplayer.c:254 msgid "Resize Layer" msgstr "ਪਰਤ ਮੁਡ਼-ਅਕਾਰ" -#: app/core/gimplayer.c:257 +#: app/core/gimplayer.c:255 msgid "Flip Layer" msgstr "ਪਰਤ ਝਟਕਾ" -#: app/core/gimplayer.c:258 +#: app/core/gimplayer.c:256 msgid "Rotate Layer" msgstr "ਪਰਤ ਘੁੰਮਾਉ" -#: app/core/gimplayer.c:341 app/core/gimplayer.c:1129 +#: app/core/gimplayer.c:339 app/core/gimplayer.c:1110 #: app/core/gimplayermask.c:236 #, c-format msgid "%s mask" msgstr "%s ਮਖੌਟਾ" -#: app/core/gimplayer.c:387 +#: app/core/gimplayer.c:385 #, fuzzy, c-format msgid "" "Floating Selection\n" "(%s)" msgstr "ਤਰਦੀ ਚੋਣ" -#: app/core/gimplayer.c:1055 +#: app/core/gimplayer.c:1036 msgid "Cannot add layer mask to layer which is not part of an image." msgstr "" -#: app/core/gimplayer.c:1062 +#: app/core/gimplayer.c:1043 msgid "Unable to add a layer mask since the layer already has one." msgstr "" -#: app/core/gimplayer.c:1069 +#: app/core/gimplayer.c:1050 msgid "Cannot add layer mask to a layer with no alpha channel." msgstr "" -#: app/core/gimplayer.c:1079 +#: app/core/gimplayer.c:1060 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "" -#: app/core/gimplayer.c:1183 +#: app/core/gimplayer.c:1164 msgid "Transfer Alpha to Mask" msgstr "ਐਲਫਾ ਨੂੰ ਮਖੌਟੇ ਵਿੱਚ ਤਬਦੀਲ ਕਰੋ" -#: app/core/gimplayer.c:1343 +#: app/core/gimplayer.c:1324 msgid "Apply Layer Mask" msgstr "ਪਰਤ ਮਖੌਟਾ ਲਾਗੂ ਕਰੋ" -#: app/core/gimplayer.c:1344 +#: app/core/gimplayer.c:1325 msgid "Delete Layer Mask" msgstr "ਪਰਤ ਮਖੌਟਾ ਹਟਾਉ" -#: app/core/gimplayer.c:1445 +#: app/core/gimplayer.c:1426 msgid "Add Alpha Channel" msgstr "ਐਲਫਾ ਚੈਨਲ ਜੋੜ੍ਹੋ" -#: app/core/gimplayer.c:1467 +#: app/core/gimplayer.c:1448 msgid "Layer to Image Size" msgstr "ਪਰਤ ਨੂੰ ਚਿੱਤਰ ਦੇ ਅਕਾਰ ਅਨੁਸਾਰ ਕਰੋ" @@ -7002,32 +7017,32 @@ msgstr "ਛਾਪਣ ਦਾ ਅਕਾਰ:" #. the image size labels -#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:241 +#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:222 #: app/widgets/gimptemplateeditor.c:236 #, fuzzy msgid "_Width:" msgstr "ਚੌਡ਼ਾਈ:" -#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:248 +#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:225 #: app/widgets/gimptemplateeditor.c:243 #, fuzzy msgid "H_eight:" msgstr "ਉਚਾਈ:" #. the resolution labels -#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:338 +#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:273 #: app/widgets/gimptemplateeditor.c:363 #, fuzzy msgid "_X resolution:" msgstr "ਰੈਜ਼ੋਲੇਸ਼ਨ:" -#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:345 +#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:276 #: app/widgets/gimptemplateeditor.c:370 #, fuzzy msgid "_Y resolution:" msgstr "ਰੈਜ਼ੋਲੇਸ਼ਨ:" -#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:357 +#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:269 #: app/widgets/gimptemplateeditor.c:383 #, c-format msgid "pixels/%a" @@ -7585,11 +7600,11 @@ msgid "%d minutes" msgstr "" -#: app/display/gimpdisplayshell-dnd.c:96 +#: app/display/gimpdisplayshell-dnd.c:98 msgid "Drop New Layer" msgstr "ਨਵੀ ਪਰਤ ਸੁਟੋ" -#: app/display/gimpdisplayshell-dnd.c:140 +#: app/display/gimpdisplayshell-dnd.c:142 msgid "Drop New Path" msgstr "ਨਵਾਂ ਰਸਤਾ ਸੁੱਟੋ" @@ -9115,12 +9130,12 @@ msgstr "ਪੇਟ-ਬੁਰਸ਼" #: app/tools/gimppaintoptions-gui.c:103 app/widgets/gimpbrushselect.c:201 -#: app/widgets/gimplayertreeview.c:330 +#: app/widgets/gimplayertreeview.c:332 msgid "Opacity:" msgstr "ਧੁੰਦਲਾਪਨ:" #: app/tools/gimppaintoptions-gui.c:108 app/tools/gimpselectionoptions.c:374 -#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:323 +#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:325 msgid "Mode:" msgstr "ਮੋਡ:" @@ -10555,24 +10570,24 @@ msgid "Set Item Exclusive Linked" msgstr "ਇਕਾਈ ਨੂੰ ਨਿਵੇਕਲਾਂ ਸੰਬੰਧਿਤ ਨਿਰਧਾਰਿਤ ਕਰੋ" -#: app/widgets/gimplayertreeview.c:250 +#: app/widgets/gimplayertreeview.c:252 msgid "Reorder Layer" msgstr "ਮੁਡ਼-ਕਰਮ ਪਰਤ" -#: app/widgets/gimplayertreeview.c:311 +#: app/widgets/gimplayertreeview.c:313 msgid "Keep transparency" msgstr "ਪਾਰਦਰਸ਼ਤਾ ਰੱਖੋ" -#: app/widgets/gimplayertreeview.c:846 +#: app/widgets/gimplayertreeview.c:848 msgid "Empty Layer" msgstr "ਖਾਲੀ ਪਰਤ" -#: app/widgets/gimpmessagebox.c:458 +#: app/widgets/gimpmessagebox.c:460 #, c-format msgid "Message repeated %d times." msgstr "ਸੁਨੇਹਾ %d ਵਾਰ ਮੁਡ਼ ਵੇਖਾਉ" -#: app/widgets/gimpmessagebox.c:460 +#: app/widgets/gimpmessagebox.c:462 msgid "Message repeated once." msgstr "ਸੁਨੇਹਾ ਇੱਕ ਵਾਰ ਮੁਡ਼ ਵੇਖਾਉ" @@ -10604,16 +10619,12 @@ msgid "Invalid UTF-8" msgstr "ਗਲਤ ਯੂਟੀਐਫ-8" -#: app/widgets/gimpsizebox.c:290 -msgid "Keep aspect ratio" -msgstr "ਨਿਸ਼ਚਿਤ ਅਕਾਰ ਅਨੁਪਾਤ" - -#: app/widgets/gimpsizebox.c:574 +#: app/widgets/gimpsizebox.c:451 #, c-format msgid "%d x %d dpi" msgstr "%d x %d dpi" -#: app/widgets/gimpsizebox.c:578 +#: app/widgets/gimpsizebox.c:455 #, c-format msgid "%d dpi" msgstr "%d dpi" @@ -11055,6 +11066,9 @@ msgid "Image Editor" msgstr "ਚਿੱਤਰ ਸੰਪਾਦਕ" +#~ msgid "Keep aspect ratio" +#~ msgstr "ਨਿਸ਼ਚਿਤ ਅਕਾਰ ਅਨੁਪਾਤ" + #~ msgid "Y:" #~ msgstr "Y:" diff -uraN gimp-2.2.0/po/pl.gmo gimp-2.2.1/po/pl.gmo --- gimp-2.2.0/po/pl.gmo 2004-12-19 03:11:55.000000000 +0100 +++ gimp-2.2.1/po/pl.gmo 2004-12-28 16:58:43.000000000 +0100 @@ -1,236 +1,237 @@ -G TJ_  &kFG9G4A|Ni <wk@ 2a;PO!2q9-9 ;F7  - - -  -!,/? -Wbjr0#+ -BMT\d s - -   K\.1!Cew~ - - -,7L _ix -*6:q';Zo# - '0Pd l v 13,2EL --4 C -P[l~AJ,<? |  2ENew  -&$@el r |"   -(3BSg7{    $m1  C7Y=@6dG3<(#e!  /E]u,"<D We !1: C Q^ry  .55>7t8),<Xp2 OAh%&41,#^   -  "0 FSl~0   =+Fr   - $4GVk "<R ao '8 @Mh "" -#, ->I -h)s,!# #D!h%. "6I\#r-%,G\t y - - -  0CRa hv --  .AUfy  %!@ bo&  %4 DQ `m } (7 -P -[-f    - 19L` s  :?(8h   - - $ 2 > -K V b -l w  > *:L_o   (;Th~  - - -"- ES iv  -*3<!Np.#""?&^ ,# +9L'f'"F<T  < S] -t   ( 1=S(\$=6<%?bA79cV9B=7fu>CJ_g . @Nchz     .BUhz 8Sj~  -   -  %8 -ITp x (/X^e mz -O -      -   - -  -.* -Y -l - +F LJ_ |&k6G9G$AlNi<gk@2Q;PO2a9-9;67r  + + +  +/ +GRZb~0 + +2=DLT c q } + +   KL.1!3Ugn} +  +'< OYh +q|*6*at+J_s# + @T \ f s}13"5< +$ 3 +@K\n~AJ</ l z  "5>Ug x +& $0U\ b lz"  +#2CW7k    + m!  C7I=@6d73<#U!y  5Mew,,4 GU u ! !* 3 ANbip v .55.7d8),,H`2} OAX%&41#N r  +  6C\n0  -+6bu   + $$7F[ x" ,B Q_o x( 0=Xq "" +.9 +X)c,!##4!X%z. &9L#b-%7Ld iw + + +  3BQ Xf +y-   1EViy  % +!0 R_r&  $ 4A P] mz ' +@ +K-V    + !)<P cq  :?8X   + +  " . +; F R +\ gs | > *<O_q  +DXn ~ + + 5C Yf { +*#,!>`.w#"/&Nu ,# )<'V~'F,Ts  , CM +d o}   !-C(L$u=6<?RA79 cF9B='fe>C JOg  0>SXj z     2EXj (CZn  +   +  ( +9D` ht (HNU ]jrx +~O +     +    +  +. +I +\ +o  - - - - - - - - - -   $ 8 O u^    cy  z ekrs1@IYn&'      &,38 JWfx~% < -FQ Zdks x  -H -` ku -H!BFJ1Y  -  `eC1C0u   - -&EX p(~ - -H -  -) 0<K Zg}     %> , 0> P ^ kKy360?"U x $  * K(l+)*!8/Jz*'"2BK -]hx ,Mhy  !+;Ui!  " A Z -i !!!! !!!! " "3"G"X"p"" " -" " """#&#?#S#d# y### #####@#2$-9$g$ y$$ $ $ $$$ $$ $ $%%6%U%i% }% % %% %%% %& -&"&7& M&[& s&& -&&&&&&&&&& '!' 7'E'Z'q' -y'#'''''''(+8(d(l( s( ( -( ( ((((() #)0) ?)M)`){)")))) )** **$)*N*`*t** ** * ** * ** -* -+ + +'+6+ F+ P+Z+s+++++++, , ,*,=,W,\, -b, m,y,,,, , ,,, , - ---3-B-T- f- -s- ~-- - -- - - -,-'.!:.\.p..). .. . / //!/(/ 9/ E/S/Bf/A// 00 00:0A0P0 `0m00000)181J1R1[1 -`1k1 111 1111"2!72!Y2{222 2 2 2223 33V3+v3 3(33"33 4 4,4F4%^4 -4 44444 -44 44 55 '5 15?5E5X5 m5 y5 55&5,5 666 -#6 -.696V6t66664677 -7(707 -@7 K7X7g7 p7~777 77 7!77 88 ,888I8d8 t8~88 888?88 99(989U9r94:I:R:-Z: ;;; -; ;#;;-; %<1<F< [<e<m<<< <<H=\=p= y====== -= -=== -> > >*>.>H> Y> c>!m>> >>> > >>>? ??+? A?M? -`?k?}? ?? ?? -??? @(@-@ 3@!@@b@!@#@@ @ -@9@U.A=A<A=A"=B?`BBB BBBB(B,C3CCCUCfC -wCCCCJC DD(DAD [D hDuDD D DDDDE; E\EvE E EEE E EE E F FF#F AFKFfFFFFFFFFGG1GFG+]GGGGG G G GG H H(H#?H cHoH HHHH6HI%I-I4I II7VIIIIIIIJ J !J-J?J SJ`J ~JJJJ -J -JJ JJJ J K -KKK 4K@K -WKbKK KKKKK LL+LDLTLhL4}LLLLLM+M:M.TMEMM M MM N N)NDN JN XN dN -pN{N N -NNN NNNNONO -OOPP P (P4PFPbPxP#PPP PPQ"Q8Q#RQvQQ QQQQQ$RMgw  -‹NjЋ3;;W5F<   ͎Ԏ܎#3<#pϏ# *6S\Fe -̐ -א      +!9![ } +K0 Q>)$̓5P'Gx-Oj>oej~pioژwJ<™?>?t~t`hɛSӜ0ٜ -)> O]6_o4#LpG9XUڟO0 - Š Ѡ۠ # - 5CLRahq ġΡ ӡ   !+>Y x  ۢ     $2FM -T_ gt| ȣ  - -' 7ET dr   Ҥ -  '3BK\ v  -ɥإ.?Q a    Ϧަ   )69 B L -V -al  ŧ̧ӧۧ  ) 1>ELTn} - ʨ ֨  $0 3=BH[v Щ ݩ - !. > L -Z e s     ǪѪت -ު   #/8 ?M]d m z    ƫ٫߫   $9 LY_hy(٬*4D1y/ۭ! )6<P#a Ů̮ܮ" -"4ELUk |ί - - - "28? -_j{ -԰  #' --8?D5H~  ̱!  $E -e p|  Ȳ ϲݲ.3<p%sf#8Lõme~EvLiDAg=M:O./~B;:- hr -y  ѻ -  '1%:,`B 0JZ a ku    - -ƽ ѽ ޽"  %*:tKMI;!ӿ -)6`o! )BRhz)'=+\3! !6Xu!,. [ |   -$ /;M]gs=<Vuz @$J$o$   -"-<H<O -+6#P-t/#),F!` - - -*O>5 -% '1%: -`/k  - -  %EIZ   -7=R  #@`uK|<NOTEp%[MH -/S&0' -4 ?M`'&7*R}&' 8Vm - &F$c<WQ=D;@.Q$I+(T-tmO3`4XT"7w.!1 -FQi| ;!]n}  62CTd{   -,26Nb#}" $ -( A1b  -  !9B&X$'11.'`0&:D9('.'0V.A )D ]j- 8# / Kl -+&, S_nv    %198r {$  4H[q  - &*;#f1#8Ngz,A%Tz"  1M R` q}   .@$Y~    7S(T|E $6L ak| )7Pi&;71s7V*s 6"Q$t  %!Acx) 0Qev  0 -He;|#$# -E'_ $ -:(DJ]o%:0*0C,t40\od 01b" @7)N)x**!#<` 53 -bX~nkFsX&VYpcgaYfh" Q^s    ) > S b ~   %     -3 -#P -t - -! - - -+ -! 2 R p !         ) C S b q !          4 U j 1        ge#{!   D%j}  '>To)""v+@V#t 12At  !&<"V -y# '4Tk| -  -  *$5F K"U*x -5 @J[dIl*Q3;IO   )F@:,gm | "  5 L ,\   Y  ! -!! &! 4! B!P!a!~! !!! -! !! ! !" " ("4" E"f""*#1#L#`# {######}#In$R$ % %$6% [%#e%% % %"%%% &%&$A&1f&2&/&1&#-'Q'Le''''6'(3(eS((( (()*)?)P)e){))))!))*)7*#a**** **+("+"K+n+++!+++),#9,],w,,",, ,*-$/-T-o- -../"/9/A/H/X/k/{/H////0.0=0 M0[0&k0'000'01",1O1h1}1 1111 1a1R2=Z222222 2233#3,3<3M3!f3"333 3 33 4'464P4f4y444444 5585M5i5 -x55 5 5 -5 55#5 6 ,6:6W6w66.6"66+7 ,767=7\73{7777777 88=8Y8w8888889/9DE9 9%9&99 -9999.:K: k:::::: : ::;$);N;g;};;;; ;;< .<:<L<)`<*<<< << -<=!=6=<= C= M=Y=n==&= -= === > > >*'>R>a>%z> > > >+>> ?-?=? O? [?-h??2??&?#@<@Z@ k@@ @@@@@@ @@\A__A%AAAB B%B;B[BqBBBBBCCCCCC'CDD4DLD`DuDDDDDE$E#CEgEoEEE EEE -EhECCFF1F F0F FG5G,EG*rG4GGGG GG -HH/H>HNH -UH `HHHHHHH HHI9I,YII IIII(I)J.J KJlJ#JAJJ KKK%K9KLKSKZK bK nKxKK -K%K K.K LL1LML`LwLL LLLLLLJMOMcMkMM"M!MM>NOOtO PPP PP1PP?Q WQcQzQQQQ Q QQQ RRS SS(S1S9STS oS }SSS S S%SSST -%T 0T!:T\T`T&yTTTT#T T U U$!U FUgU$|UU!UUU$V4V$IVnV!V V*VVVW+W$GW'lW)WWWWQWgNXSXP -YQ[Y7Y_YEZ&aZZZ Z -Z=ZHZF[\[v[[[[&[3[v$\ \\\!\\]*$],O]|]]#]!]!] ^1%^W^t^^^(^^^_._E_\_u_ _ _ __ __`&`=`T`m``3`3`2a4Ca2xa#a<a bb5bMbfb"bbb)b4b4cLccctcc#cXc* dKd -Td3_ddCdMd:eZete{eeeeeee f f ?fLf af nfzf -ffffffg ggg6g"Eg hg*uggggg(g%hEhUhghzhhhih 7iXi"ri!i"iii; jrEjjjj#jk%k:k -Wkbkykkk kkk"l"*lMl"hl -lllvdm m m mnnn3n%Onun#n-n'no-oBo$]oo"o,o&op5pKp%gpp#p-p'p'qEq\q&yq q$q.q(r>r ]rirrr r5r-r+sCsassssss+ t8tVttttt tt(t uu9uLu`utuu%u-u"uv>vWv$ov$v!vvCv;6wOrwVwx5xNx ixuxxxxx@x+&y Ry`ysyyy -y'yyzz15z$gz,z,z#z -{ ({ -5{@{V{k{{'{ {5|i }s}N[9@HRcIT0U -&v1=B) -# ,6EU eq -  "ĉ  K$p"2M.mӋ5:Z!p#Ԍ5+*Vq"#Ӎ(+1]r!*=3qw я ",5>M2\ '3Kem( Ñ!%$J"i(  ’В ֒ "< Y er !!#@T@r$Bؔ&&B+i #Õӕ  '7$Lq w̖Uі2'7Z/0—RQFA<~O(ݞ_t#]3ӣ٣!>8T@=Υ> >K$Dr@XI[*\A%; EDg&AVֳ-? &M -t8Ҷ   ;D ^$lշ'6 -JUd$$IZs"$ "=ZkٻI#?mK5aN -^i{   Ŀ'ο-AC% -0G Y -cn!I* & 4AGg.-M_8qQ=x:|JfVIgD:`g/5ZIKIIwQa2  -,@Rd7fDF O4Y1fyhdf14f x -"0 M[ y ') = GQ es  -  "#& 7 AMV_}!  '3<PXmu '% -.9N` o |  1 @Mbt - 5Mm!- ".5LRav -    -"-%A g u    -  0:MU^g%    - 7FWj m w'C Pb}    !.> Q^ o{   ' -9D LY o |  '6Pl7 )7@Vp.I94>s%  <1;(m -  * BL'U}  # 8 H R\cr z  #  ! -+6S s  H *V 5%$3J$~  - - $ 34A"vW5yJ/l@?>cZ$/FTn7-Tr.RCV-o )" ' 341b>LB[C<>9sw%='XP/ 3o  pMuh!2<g}UrbKmib=L;<!hUVEiBr(,$e2 -x&BW>wm)OFm`[cef<E+8r=?o@!a\MhDS  Ye 7 (XD[y:8+NK[%k@{B )`;4 Y6 Di5n]+:g4 -|2AK eQ?1RVx> #Wm.ZM{Qb78z&J. }H5? <P.4;2+A#Eq|@  n&;>SO#)5sY/y_Pr -"(f*uaB^qF(pZ]&%X!: {@&|5qpGZh7^|YKwJG2 EZ&# Ev 1  &B]JR+= lvS% =yc}}zA+ %iI U-A PfjpR , [#zSX~g0{_6Wd/5 E0\,V 6>tUhXknc^_ Hfe$7i$ x\ LQr ,=x' =: 0LTft-66X5Z<xP0*tkMy-Tu4.oYq_j 1sb~e\razgV #*Cu ab^Sis`S}9 -EOi8:8P3K~14( {dl' ]; H -D ;u6\DA!9a~f]~ g2Br?a `*LmLW aV>.H*BQ)s|C $ ) c]vu9%"A@#6cr:G'^h'%p+ 7S,tieJFG s -$x(?#; k D&6 8 JAUob%Y5KJq^x ``V! -y)!\op9N   o -! [4F\wJT LPczCS}R]OwN k> GlTQ,y3A-K"vq"@ /?4Q< "W&GEUhw"CN$^R)UhW9 yCjv 4 M'l3Gjn H?n <td<KA9sVEcz5I.7G"*Ij`2[Qf Pel(}Bq   f  :JXd/<3f K*|u'0 80 HI+ ,?I^=d tOsv|a; .T]k# F tDAO=)1:=lI#|& (-N/:6Mij;gMWvv,{@Ocd6D -qqe}'UNk  0/dI~j_C{Yw+* oO*ClHg.Z2Qb!}g|`_GXY+x,~20mZ$nz'{ B XU- 7~ F ;_@kN8 t 1 T!WFV/kG%.z, o 9h%" LRwT[luE nF0Lt3-yaH"(s]1v`Z R\7  ?CM833 d[ -5j9$*S4p{3Dup)b0mHm~ - II9 d(> MpwP7gnDO _\F:zx^j_YNN@mR82 11Q $ +~ + + + + + + + + + +  ( ? uN    ci  z U[rc!09I^&o'      #( :GVhn , +6A JT[c h u +H +P [eu +}H!B6:1I{  +  `UC130e   + +5H `(n + +H +  + ,; JWm     .  . @ N [Ki36 /"E hr $   ;(\+)*!(/:jq*'"2; +MXh~ ++FW`o   3G!_   8 -G u!~!!! !!!! !!3!%"6"N"^" v" +" " """"##1#B# W#e#|# #####@#$-$E$ W$d$ i$ w$ $$$ $$ $ $$$%3%G% [% e% q%}% %%% %% +%&& +&9& Q&]& +s&~&&&&&&&&&&& '#'8'O' +W'#b''''''''+(B(J( Q( _( +k( v( (((((( )) )+)>)Y)"p)))) )))))$*,*>*R*a* p*|* * ** * ** +* +** *++ $+ .+8+Q+`+w+++++++ +,,5,:, +@, K,W,i,},, , ,,, , , ,,- -2- D- +Q- \-f- - -- - - -,-.!.:.N.e.). .. . ..../ / #/1/BD/A//// 000.0 >0K0]0r0z0011(10191 +>1I1 ]1k11 1111"1!2!72Y2q22 2 2 2222 22V2+T3 3(33"33 3 3 +4$4%<4 +b4 m4w4444 +44 44 44 5 55#565 K5 W5 c5q5&5,5 555 +6 + 6646R6q6664666 +677 +7 )767E7 N7\7d7k7 77 7!77 77 +88'8B8 R8\8m8 888?88889939P949':0:-8: f;p;y; +; ;#;;-; <<$< 9<C<K<b<k< t<<&=:=N= W=d=m=u={== += +=== += = => >&> 7> A>!K>m> q>>> > >>>> >> ? ?+? +>?I?[? n?|? ?? +????@ @ @!@@@!^@#@@ @ +@9@U A=bA<A=A"B?>B~BB BBBB(B,BC!C3CDC +UC`CvCCJC CCDD 9D FDSDnD D DDDDD;D:ETE cE pE|EE E EE E E EEF F)FDFaFsFFFFFFFFG$G+;GgGGGG G G GG G GH#H AHMH _HkHHH6HHI II 'I74IlIIIIIII I I JJ 1J>J \JhJ}JJ +J +JJ JJJ JJ +JJJ KK +5K@K`K }KKKKK KK L"L2LFL4[LLLLLL MM.2MEaMM M MM M MN"N (N 6N BN +NNYN jN +vNNN NNNNNNO +OOOOO PP$P@PVP#pPPP PPPQQ#0QTQrQ QQQQQ$QR9R NRXRhRRR!RRRR +SS%S 5SBSaS|SSSS SSST&TET\T uTTT TTTTT +UU4U +FUQUaU"{UUU UUU V%V>V=NV6VSVJWbW{WW WWWWWW +X(X :XFXUXjX}X XXXX XX YY9YTYlY YYYYYYYY)ZNZ([K<\=\\*J]u]^3^T^?F_`_2_``Lb4Oc/cc od{dddddddddddee8e Me Yefe;oee eee ee ff)f#=f afnf f f&ff +fffg g"2gUgmg}ggggggghh (h5hNh bhnhshhh+hhhh hh h i i +'i2i8i?iGi Pi \i8iivij j8jPj Xj ejqj wj!jjjj k"k?k\kckrkykkkk k k k kkkk ll$l 3l?l Pl \lhll!lll(l m#m 9m GmTm[m +am lm ymmmmm +m m +m mmnKn1[n7n1n5nH-oAvoo;Cp!pp cqq krxs}!t*tBu vvwwx x,x)3x5]xx1Cy0uy0y1y( zC2zvzSz,K{2x{ {A|A}*P}{}'~ "@G,t]2M - +҇݇-6<Na z  ڈ  +<  FT kuϊ+EU dq +3ŋ;;5qF ak p }Î3#NrǏݏ 1:FC + + Ő Ӑ    !!9 [ g+sK0Qn$5ϓPGV-O̕joej]~ȗpGow(<?ݙ>t\tњ`F10 -;6=ot4#*NGX_UO^u~ +    ̠ՠ#  !*0?FObu~   ͡   7 Vw } Ƣ ΢آ   $+ +2= ERZz ţ ԣ + #2 BP d r Ƥ֤   ): T ^ +kv|ȥ / ? ` jt |  ¦Ц   * +4 +?Jcl t~  ԧ  #*2L[ +{  ȨШ    &9T]ex  ɩϩߩ +    * +8 C Q ^ h u   +Ǫ Ъܪ    +;B K X fs |  ūͫ ܫ   *7=FWj|(Ȭެ4"1W/ϭ߭ .#? c"ʮ +#*3I Zfmu +ů +Я +ۯ  +=HY_ +hsy ɰְ + "5&\ nx !  # +C NZaemrx~   .β3N%gsf8hLme\¶ETLGDAٸgM:ѹO /\B;Ϻ:  FP +W bl  +ʻͻ޻  %,>kB˼ݼ (8 ? IS q   + +  "Ƚ  t)M';u!ӿ )>Mgo! 0FXo)+:3f! !6Sq!,  9 Z {  + +;gQ=<4SXsy $($M$r  + <&<cO + #.-R/#) +$!> +`k + +O5l +% % +>/Iy  + + #I8   0  #>SKZ<NO2Ep%9_M~H/1&a0' + +>^v'&*0[x&' 4Kaw + $$Af<WQDm;@./$^I+2-RmO3>4rXT7U.! +$/GZnv|;;L[bs  6!2BYn w  +,2,@#[" $ 1@r  +  &6$]'11 '>f0:"]9z('.04.eA " ;Hc-u 8#  )Jb +|+& + 1=LT gs   9P Yg$x &9Oaw  +*#Dhy1,EXk +%2Xw"  1+ 0> O[j    $7\o    7STZE * ?IZ w).Gby&;1Q4*Q| "/$Rw  %!AVj) /CTs  0  &C;Z#$# #'=e $ +:("(;M%d:0*0!,R40\oB 0@]"m @7),)V**!#>^ z53 +bX\nk$sXV]YzpcEa7fhi /<Qj    1 @ \ n  %     +#. +R +m +! + + ++ +! + 0 N !b          ! 1 @ O !^          3 H 1d         g a|C#Y!}   DH[ n| '2Mk)""Tw 4#R v12R g q{!"4 +W#b 2IZ +k v +  *$$ )"3*V + (9BIJ*QI-w   F@: +EK Zh }" * ,: g  v Y    +   ! ! !.!?!\! p!~!! +! !! ! !!! "" #"D""*"#*#># Y#c#z####}#IL$R$$$$% 9%#C%g% }% %"%%%%%%$&1D&2v&/&1&# '/'LC''''6''(e1((( ((())2)H)e)|))!))))*#.*R*l*}* ***(*"+;+T+f+!~+++)+#,*,D,W,"p,, ,*,$,!-<- +...".///%/8/H/HP////// +0 0(0&80'_000'00"0151J1 R1^1y11 1a12='2e2x2222 222222 33!33"U3x33 3 33334434F4`4u4444445565 +E5P5 g5 u5 +5 55#55 56$6D6M6.]6"66+6 67 +7)73H7|77777777 +8&8D8b8888888D9 W9%a9&99 +9999.9: 8:Y:m:::: : :::$:;4;J;f;~;; ;;; ;<<)-<*W<<< << +<<!<= = = =&=;=P=&j= += === = = =*=>.>%G> m> {> >+>> >-> +? ? (?-5?c?2y??&?#? @'@ 8@Y@ h@v@{@@@@ @@\@_,A%AAAA AAB(B>BZBwBBBNC_CCCCC'CCCDD-DBD^D{DDDD$D#E4ENNNtN YPcPkP zPP1PP?P $Q0QGQZQcQlQ Q QQQ RRRRRRRS!S R +j u " ̉ډK=Yp"NJ.:i5ы'!=_#}5+#>"Y#|(Ս+*?Xn!ƎΎ=>D Wcyӏ  2)\ 2:L_(g !ϑ%"6(Y    Ȓ  & 2? O[o!!Ǔ# !@?$B&&+6 b#l Õؕ$> DQarU27'/_0RQeA KilOܛ(_Ut#*Nn!>8!@Z=>٥>$WD|rb@էXo[\SA«;֬Ư4&VԴ?ڵ& +A8L ʶֶ ݶ +$9^oŷ +"1޹$'@Zs"$ֺ +'8Sg|ɻͻջI?:KzƼ5a ++6H [en  'ÿ-ARr% & +0;!LnvI~*  4Sr.-,8>Qw=xrIJdfVmgy`gd'IKIbDQ.2   173k 4&1[fPyh1f13 EOW]z +"0 ( FTc t' +  2@ S +`kz } "#&  #,Jcjz!  %:B ak~' +- < I Wd w /AQa +:!Qs- .CT]l +    +% 4 B NZ a k +u  "+4R%g    $7 : DRYo'C/JPet|      + <HQcio   + & < ISfy  9S[q7  #=.XI94 @P%f  <1(: co-   '"J jx #  )0? G T `#l   +  @N ]j~H*#Na| 5%3$Kp y + + 4"CW4xI/k?>=bY$.ESn6,Sq-RBU,n )! & 341a=KB[B<>8sw$<'WO. 2o  pLtg 2<f|TrbJmib<K;;!gTVDiAq(+#e1 x&BV>wl(NFm`Zbef;D*7r<?n@ a[LgDR Ye6 'WD[y:8+MJZ$j@zB (`:3 X5 Ch4m\*9g4 +{1@K dP>0QVw> "Vl-ZLzQa77y %J- }G5>  ;P-3:1*A#Eq~|?  n&:=SN")5rY/x^Oq "(e*u`A^pE(oY\%%W 9 {?&{4ppGZh6^|XJwIF1 DZ%" Eu 1  +%B]JQ+< kvS$ =xc||z@* $iI T-@ PfioR + Z#zSW}g/{^6Vc/4 D/[+U 6=sTgXjmb]^Gfd#7i~# w[~ LPq,=x& =9 0LSet-56X4Y;xP/*sjLy-St4.oXq^j 0sa}d[r`yfU"*Cu ab^Rhs`R}8 +DOh8:7O2J~13' {dk& ]; G C ;t6[D@!9a~e\} +f2Ar?` _~)KmKW `V=.H)AP)r|B # ( c\uu8$!@?"5bq:F&]h'%p* 6R,thdIFF r $x'>#: k C%5 8 IATnb$X5JJp^w `_V  +x(!\oo9M   o , Z4E\vJTKPczBS|Q]NvN k= GkSP+y3A,K"uq"?.?3Q; !V&FEUgw!CN$]R)UhV8 yBiv  3 M&l2Fim H>m ;sc<K@9rUEcz4H-7F!)Ij_2[Pe Oek(|Aq   f  :IXc/<3e K)|t'/ 7/ HH*,?I]<c sOrv{a:-T\k" E sCAO=(09<lH#{% ',M.95Mhi:gMWvu,z@Nbd5D +ppd}'UMj + +0.dH}j_BzYv+) nO*ClGf.Y1Qa!}f{__GWY+w+~20lY#my&{ + A XU, 6~~ F ;_?kM7 t 0 T WEU.j G%.y+ n 8h%! LQvTZltD nE/Lt3-x`G"'s]0u_Z Q\6 +>CL722 c[ 5i9#)R3oz2Cuo(a0mHl} IH8 d'>MpvO7gnCN  _\F9yw]j^XNN@lR81 01Q $ Invalid option "%s" Usage: %s [option ... ] [file ... ] @@ -274,7 +275,7 @@ Make sure a proper setup for your display environment exists.GIMP help browserGIMP is not properly installed for the current user. User installation was skipped because the '--no-interface' flag was used. To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Generate optimum paletteGet Monitor ResolutionGiganticGimprc proceduresGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient:GradientsGradients MenuGrain extractGrain mergeGrayGrayscaleGreenGreen:GridGrid line spacingGrow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_counter-clockwise hue)HSV (clockwise _hue)HTML notation:H_eight:H_elp browser to use:Handle position: %0.6fHard edgeHard lightHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHelp proceduresHex:HighlightsHint for the _docks:Hint for the _toolbox:HintingHinting alters the font outline to produce a crisp bitmap at small sizesHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB color layers.Hue-_Saturation...Hue:HugeI_con & TextI_mageI_mport Path...I_nterpolation:I_nterval:IconIcon & descIcon & textIf available, hints from the font are used but you may prefer to always use the automatic hinterIf enabled, the move tool changes the active layer or path when a layer or path is being picked. This used to be the default behaviour in older versions.If you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.Illegal variable name in environment file %s: %sImageImage + GridImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage ThumbnailsImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage maskImage resolution is out of bounds, using the default resolution instead.Image sizeImage sourceImage typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport paletteImport pathsImported PathIn_kIn_vertIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorIndexed Color ConversionIndexed color layers are always scaled without interpolation. The chosen interpolation type will affect channels and masks only.Info WindowInitial zoom _ratio:Initialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' -InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratioKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine +InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine spacing:Line Width:Line _Style:Line style used for the grid.LinearLinked itemLoadLoad CurvesLoad LevelsLoad Right Color Fr_omLoad curves settings from fileLoad levels settings from fileLoad text from fileLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower Path to _BottomLower channelLower channel to bottomLower layerLower layer to bottomLower pathLower path to bottomM_agnifyM_asterM_ove to Screen...Ma_pMagentaMagenta:MagnifyMake _transparentManage Loadable ModulesMarching _ants speed:Mask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:Max Depth:Maximum _filesize for thumbnailing:Maximum _new image size:Maximum color differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMeasure the rulers and enter their lengths:Median:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMerge vectorsMessage proceduresMessage repeated %d times.Message repeated once.Messages are redirected to stderr.MidtonesMigrate User SettingsMinimal number of _undo levels:MiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMouse WheelMoveMove AnchorsMove ChannelMove Floating SelectionMove GuideMove LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove ToolMove itemMove layers & selectionsMove selectionMove the current layerMove the current pathMove the selected filter downMove the selected filter upMove to Screen...Move: MultiplyN_umber of colors:Na_vigationNa_vigation WindowNa_vigation preview size:NameName:NavigationNew ChannelNew Channel ColorNew Channel OptionsNew Color from _BGNew Color from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channelNew channel with last valuesNew channel...New color from BGNew color from FGNew gradientNew importNew layerNew layer with last valuesNew layer...New paletteNew path with last valuesNew path...New patternNew vectorsNo brushes available for use with this tool.No filter selectedNo linear gradients found in '%s'No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of _processors to use:Number of grid linesNumber of layers:O_ther...OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset by x/_2, y/2Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the palette selection dialogOpen the pattern selection dialogOpen the selected entryOpening '%s' failed: %sOpening '%s' failed: %sOptions: @@ -325,7 +326,7 @@ did not save indexed colormaps correctly. Substituting grayscale map.YYellowYellow:You are trying to create an image with a size of %s.You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your input device settings will be reset to default values the next time you start GIMP.Your keyboard shortcuts will be reset to default values the next time you start GIMP.Your window setup will be reset to default values the next time you start GIMP.Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_All_Anchor Layer_Antialiasing_Arbitrary Rotation..._Artistic_Aspect_Auto_B_BG Color_Background color:_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Bucket Fill_Buffer_By Color_By Color Select_C_Cap style:_Channels_Clear Errors_Clear Undo History_Clone_Close_Close Tab_Clouds_Color Tools_Colors_Configure Color and Opacity..._Context_Context Help_Copy_Copy Named..._Create Image from Template..._Crop & Resize_Crop Image_Curved_Curves..._Dark Check Color_Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Desaturate_Detach Tab_Device Status_Dialogs_Discard Changes_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Ellipse Select_Enable layer & channel previews_Enormous_Equalize_Eraser_FG Color_File_Fill with:_Fit Image in Window_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground color:_Free Select_G_Generic_Gigantic_Gradient_Gradients_Grayscale_Grayscale copy of layer_Grow..._Guides_Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Info Window_Intersect with Selection_Invert_Join style:_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Left Neighbor's Right Endpoint_Levels..._Light Check Color_Light Effects_Lightness:_Line Style_Linear_Linked_Load Left Color From_Lower Channel_Lower Layer_Lower Path_M_Manually_Map_Mask_Mask to Selection_Maximum number of colors:_Measure_Medium_Merge Palettes..._Merge imported paths_Migrate GIMP 2.0 user settings_Misc. Stuff_Miter limit:_Mode_Module Manager_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._Padding Color_Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preferences_Preview_Preview Size_Previous tip_Properties_Quick Mask Active_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Reassign shortcut_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Remove unused colors from final palette_Render_Replace_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Order & Visibility_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Right Endpoint_Right Neighbor's Left Endpoint_Rotate_Saturation:_Save_Save Left Color To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Scale imported paths to fit image_Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Show Image Selection_Show in Toolbox_Sinusoidal_Small_Smudge_Snap distance:_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tool_Tools_Transfer layer's alpha channel_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Visible_Web_Web browser to use:_White (full opacity)_White Balance_Width:_Wrap around_X resolution:_X:_Xtns_Y_Y resolution:_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for icon typeinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetermillimetersminuten/apercentpicapicaspixelpixelspixels/%apixels/%spointpointssecondtips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: gimp Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-19 03:11+0100 +POT-Creation-Date: 2004-12-28 16:58+0100 PO-Revision-Date: 2004-03-22 10:58+0100 Last-Translator: GNOME PL Team Language-Team: Polish @@ -379,7 +380,7 @@ spersonalizowaną programu. Aby wykonać tę instalację, należy uruchomić program GIMP bez opcji "--no-interface".GIMP wykorzystuje ograniczoną ilość pamięci do przechowywania danych obrazu. Jest to tak zwany "Cache kafli". Należy dopasować jego rozmiar do wielkości dostępnej pamięci, uwzględniając przy tym pamięć wykorzystywaną przez inne uruchomione procesy.GIMP wykorzystuje dodatkowy plik gtkrc, dzięki czemu możliwe jest ustawienie jego wyglądu niezależnie od innych aplikacji GTK.Wersja programu GIMPProgram GIMP wyświetli ostrzeżenie jeżeli ilość pamięci niezbędna do utworzenia obrazu przekroczy podaną tutaj wartość. GammaOgólneUstala minimalną liczbę kolorów systemowych, zajmowanych przez program GIMP. Ustawienie odnosi się tylko do ekranów 8-bitowych.Wygenerowana optymalna paletaPobieranie rozdzielczości monitoraGigantycznyProcedury gimprcEfekty _szkłaGradientEdytor gradientówMenu edytora gradientówFoldery z gradientamiKolor lewego punktu końcowego segmentu gradientuKolor prawego punktu końcowego segmentu gradientuGUI wyboru gradientuGradient:GradientyMenu gradientówWydobycie ziarnaPołączenie ziarnaSzaryOdcienie szarościZielonyZielony:SiatkaOdstępy pomiędzy liniami siatkiPowiększenie kanałuPowiększenie zaznaczeniaStopień powiększenia zaznaczeniaProwadnicaPrzyciąganie do prowadnic i siatkiProcedury prowadnicHSVHSV (%0.3f, %0.3f, %0.3f)HSV (odcień _lewoskrętnie)HSV (odcień p_rawoskrętnie)Notacja HTML-owa:_Wysokość:Używana prz_eglądarka pomocy:Pozycja uchwytu: %0.6fTwarda krawędźTwarde światłoTwardośćTwardość:WysokośćWysokość: PomocPrzeglądarka pomocySystem pomocyNie można uruchomić przeglądarki pomocyNie odnaleziono przeglądarki pomocyProcedury pomocyHex:ŚwiatłaPodpowiedź typu okna dla _doków:Podpowiedź typu okna dla _narzędziówki:HintingHinting wpływa przy niewielkich rozmiarach znaków na kształt czcionki, tak aby przy rasteryzacji powstawała bitmapa lepszej jakości.Histogra_mHistogramSkala histogramuHistoriaPoziomoPoziome przesunięcie pierwszej linii siatki; może być liczbą ujemną.Poziome odstępy pomiędzy liniami siatki.Liczba wyświetlanych w menu "Plik" nazw plików z ostatnio otwieranymi obrazami.OdcieńOdcień i nasycenieZmiany odcienia i nasycenia kolorów są możliwe tylko na warstwach RGB.Odc_ień i nasycenie...Odc.:PotężnyI_kona i tekstO_brazZa_importuj ścieżkę...I_nterpolacja:Ok_res:IkonaIkona i opisIkona i tekstJeśli dostępne są podpowiedzi dotyczące rasteryzacji dołączone do czcionki, wówczas GIMP z nich korzysta. Możliwe jest jednak korzystanie wyłącznie ze sposobu hintingu wbudowanego w program.Powoduje, że narzędzie przesuwania zmienia aktywną warstwę lub ścieżkę z chwilą jej uchwycenia. Zachowanie to występowało jako domyślne w starszych wersjach programu.Jeśli zrezygnujesz z zapisania obrazu, zostaną utracone zmiany z %s.Zakończenie działania programu spowoduje utracenie tych zmian.Niepoprawna nazwa zmiennej w pliku %s ze środowiskiem: %sObrazObraz + siatkaEdytor obrazuInformacje o obrazieMenu obrazuWymiary obrazuFormat opisu na pasku stanu obrazuSzablony obrazówMiniaturki obrazowFormat tytułu i opisu stanuFormat tytułu obrazuWygląd okna z obrazemOkna z obrazamiObraz nie zawiera żadnych widocznych warstwPlik z obrazemMaska obrazuRozdzielczość obrazu przekracza dopuszczalny zakres. Użyto rozdzielczości domyślnej.Wymiary obrazuObrazTyp obrazuObrazyMenu obrazówOpcje importuImport paletyImport ścieżekImport ścieżek z pliku SVGImport nowej paletyImport paletyImport ścieżekZaimportowana ścieżkaSta_lówkaIn_wersja_Inwersja maskiPrzyrostoweWcięcie:Wcięcie pierwszego wierszaIndeks:IndeksowanyTryb indeksowanyKonwersja do trybu indeksowanegoWarstwy w trybie indeksowanym są zawsze skalowane bez interpolacji. Wybrany typ interpolacji wpłynie tylko na skalowanie kanałów i masek.Okno informacyjnePoczą_tkowy współczynnik powiększenia:Początkowa maska warstwy:Inicjowanie wtyczekInicjowanie wtyczki: "%s" StalówkaOsadzony obiekt pixbufUrządzenia sterująceUrządzenia wejściowePoziomy wejścioweWstawienie zaczepuInstalowanie prywatnej palety kolorów. Opcja jest przydatna w przypadku pracy na ekranie w trybie 8-bitowym (256-kolorowym).Instalacja nie powiodła się. Skontaktuj się z administratorem systemu.Instalacja przebiegła pomyślnie. Aby kontynuować, kliknij przycisk "Kontynuuj".Stałe odświeżanieInteligentne _nożyceIntensywność: %0.3f Krycie: %0.3fInterfejsWewnętrzna procedura programu GIMPWewnętrzne proceduryInterpolacja:PrzecięciePrzecina z bieżącym zaznaczeniemPrzecięcia (krzyżyki)Przecięcia (punkty)Niepoprawny UTF-8Niepoprawny napis UTF-8 w pliku "%s".Niepoprawny napis UTF-8 w pliku XCF.Niepoprawny napis UTF-8 w pliku z pędzlami "%s".Niepoprawny napis UTF-8 w pliku "%s" z gradientem.Niepoprawny napis UTF-8 w pliku z paletą "%s".Niepoprawny napis UTF-8 w pliku z deseniami "%s".Niepoprawna sekwencja znaków w URINiepoprawny skrót.Niepoprawna szerokość lub wysokość. Obie wartości muszą być dodatnie.InwersjaInwersja kanałuOdwrócenie zaznaczeniaInwersja nie jest możliwa na warstwach indeksowanych.Odwrócenie zaznaczeniaCzy na pewno chcesz to zrobić?Wykryto pliki wykorzystywane przez program GIMP w wersji 2.0. -Wybierz sposób dalszego postępowania.Właściwości elementuWidoczność elementuJustowanie:Zachowanie przezroczystościWyświetlanie na wierzchuStałe proporcje %sStałe proporcjeStałe proporcje %sStała wysokość %sZachowanie przezroczystościStała szerokość %sStrzałka w dółStrzałka w dół (Alt)Strzałka w dół (Control + Alt)Strzałka w dół (Control)Strzałka w dół (Shift + Alt)Strzałka w dół (Shift + Control + Alt)Strzałka w dół (Shift + Control)Strzałka w dół (Shift)Strzałka w lewoStrzałka w lewo (Alt)Strzałka w lewo (Control + Alt)Strzałka w lewo (Control)Strzałka w lewo (Shift + Alt)Strzałka w lewo (Shift + Control + Alt)Strzałka w lewo (Shift + Control)Strzałka w lewo (Shift)Strzałka w prawoStrzałka w prawo (Alt)Strzałka w prawo (Control + Alt)Strzałka w prawo (Control)Strzałka w prawo (Shift + Alt)Strzałka w prawo (Shift + Control + Alt)Strzałka w prawo (Shift + Control)Strzałka w prawo (Shift)Strzałka w góręStrzałka w górę (Alt)Strzałka w górę (Control + Alt)Strzałka w górę (Control)Strzałka w górę (Shift + Alt)Strzałka w górę (Shift + Control + Alt)Strzałka w górę (Shift + Control)Strzałka w górę (Shift)W programie GIMP możliwa jest dynamiczna konfiguracja skrótów klawiszowych. Plik menurc zawiera stan tej konfiguracji, co pozwala na jej użycie w następnej sesji. Dopuszczalna jest samodzielna modyfikacja tego pliku, jednak definiowanie skrótów klawiszowych jest dużo łatwiejsze w samym programie. Usunięcie tego pliku spowoduje przywrócenie domyślnych skrótów klawiszowych.KlawiaturaSkróty klawiszoweLDPKolor _lewego punktu końcowego...PoziomoWielkiDuże (256x256)Większe podglądyOstatni błąd:WarstwaWarstwa "%s" nie ma kanału alfa, warstwa została umieszczona powyżej.Atrybuty warstwyWymiary grani_c warstwy...Typ wypełnienia warstwyMaska warstwy na zaznaczenieWybór warstwyWymiary warstwy_Tryb warstwy_Nazwa warstwy:Nie można bardziej obniżyć warstwy.Nie można bardziej podnieść warstwy.Warstwa jest już na dnie.Warstwa jest już na wierzchu.Dopasowanie wymiarów warstwy do obrazuWarstwa _na dnoDop_asuj wymiary warstwy do obrazuWarstwa na w_ierzchołek_Kanał alfa warstwyWarstwyMenu warstwOpcje łączenia kanałówKolor lewego punktu końcowegoWyjustowany lewostronnieDługość:Powoduje, że przy każdym uruchomieniu programu GIMP przywracana jest poprzednia zapisana sesja.PoziomyNie można modyfikować poziomów na warstwach indeksowanych.Kolor jasnego polaTylko jaśniejszeLiniaOdstępy +Wybierz sposób dalszego postępowania.Właściwości elementuWidoczność elementuJustowanie:Zachowanie przezroczystościWyświetlanie na wierzchuStałe proporcje %sStałe proporcje %sStała wysokość %sZachowanie przezroczystościStała szerokość %sStrzałka w dółStrzałka w dół (Alt)Strzałka w dół (Control + Alt)Strzałka w dół (Control)Strzałka w dół (Shift + Alt)Strzałka w dół (Shift + Control + Alt)Strzałka w dół (Shift + Control)Strzałka w dół (Shift)Strzałka w lewoStrzałka w lewo (Alt)Strzałka w lewo (Control + Alt)Strzałka w lewo (Control)Strzałka w lewo (Shift + Alt)Strzałka w lewo (Shift + Control + Alt)Strzałka w lewo (Shift + Control)Strzałka w lewo (Shift)Strzałka w prawoStrzałka w prawo (Alt)Strzałka w prawo (Control + Alt)Strzałka w prawo (Control)Strzałka w prawo (Shift + Alt)Strzałka w prawo (Shift + Control + Alt)Strzałka w prawo (Shift + Control)Strzałka w prawo (Shift)Strzałka w góręStrzałka w górę (Alt)Strzałka w górę (Control + Alt)Strzałka w górę (Control)Strzałka w górę (Shift + Alt)Strzałka w górę (Shift + Control + Alt)Strzałka w górę (Shift + Control)Strzałka w górę (Shift)W programie GIMP możliwa jest dynamiczna konfiguracja skrótów klawiszowych. Plik menurc zawiera stan tej konfiguracji, co pozwala na jej użycie w następnej sesji. Dopuszczalna jest samodzielna modyfikacja tego pliku, jednak definiowanie skrótów klawiszowych jest dużo łatwiejsze w samym programie. Usunięcie tego pliku spowoduje przywrócenie domyślnych skrótów klawiszowych.KlawiaturaSkróty klawiszoweLDPKolor _lewego punktu końcowego...PoziomoWielkiDuże (256x256)Większe podglądyOstatni błąd:WarstwaWarstwa "%s" nie ma kanału alfa, warstwa została umieszczona powyżej.Atrybuty warstwyWymiary grani_c warstwy...Typ wypełnienia warstwyMaska warstwy na zaznaczenieWybór warstwyWymiary warstwy_Tryb warstwy_Nazwa warstwy:Nie można bardziej obniżyć warstwy.Nie można bardziej podnieść warstwy.Warstwa jest już na dnie.Warstwa jest już na wierzchu.Dopasowanie wymiarów warstwy do obrazuWarstwa _na dnoDop_asuj wymiary warstwy do obrazuWarstwa na w_ierzchołek_Kanał alfa warstwyWarstwyMenu warstwOpcje łączenia kanałówKolor lewego punktu końcowegoWyjustowany lewostronnieDługość:Powoduje, że przy każdym uruchomieniu programu GIMP przywracana jest poprzednia zapisana sesja.PoziomyNie można modyfikować poziomów na warstwach indeksowanych.Kolor jasnego polaTylko jaśniejszeLiniaOdstępy wierszy:Szerokość linii:_Styl linii:Styl linii siatki.LiniowaDowiązany elementZaładujOdczyt krzywychOdczyt poziomówPobranie pr_awego koloruOdczyt ustawień krzywych z plikuOdczyt ustawień poziomów z plikuWczytanie tekstu z plikuOdczytywanie podglądu ...Położenie:LogarytmicznaDługie kreskiWyszukiwanie plików z danymiObniża kanałObniżenie kanału na dnoObniż kanał na _dnoObniżenie warstwyObniżenie warstwy na dnoObniżenie ścieżkiObniżenie ścieżki na dnoObniż ścieżkę na _dnoObniżenie kanałuObniżenie kanału na dnoObniżenie warstwyObniżenie warstwy na dnoObniżenie ścieżkiObniżenie ścieżki na dnoPo_większenieŁączn_iePrzenieś na _ekran..._OdwzorowaniaPurpurowyPurpurowy:PowiększenieUstawienie prz_ezroczystościZarządzanie modułami ładowalnymiSzybkość a_nimacji obwódki:Krycie maski:Za_maskuj zaznaczone obszaryZamaskuj _niezaznaczone obszaryMacierz:Maks. głębia:Ma_ksymalny rozmiar miniaturyzowanych plików:Maksymal_ny rozmiar nowego obrazu:Maksymalna różnica kolorów_Maksymalna pamięć dla historii operacji:Średnia:MiarkaPomiary odległości i kątówPomiary odległości i kątówZmierz linijki i wprowadź poniżej ich długości:Mediana:ŚredniŚrednie kreskiPołącz _w dółPołączenie w dółPołączenie warstwPołączenie paletPołączenie widocznych warstwPołącz widoczne ścieżki_Połącz widoczne warstwy..._Połącz widoczne warstwy..._Połącz widoczne ścieżkiPołączenie warstwPołączenie paletPołączenie wektorówProcedury obsługi komunikatówPowtórzono komunikat %d razy.Powtórzono komunikatKomunikaty zostaną przekierowane na standardowe wyjście błędów.PółtonyMigracja ustawień spersonalizowanychMi_nimalna liczba poziomów cofnięć:RóżneZaostrzonyTrybTryb:Modyfikacja wybranego koloruModyfikacja poziomów koloru wybranego zakresuModyfikacja wszystkich kolorówZmienia odstęp międzywierszowyFoldery z modułamiMenedżer modułówŚcieżka modułuModułyWskaźniki myszyKółko myszyPrzesunięciePrzesunięcie zaczepówPrzesunięcie kanałuPrzesunięcie oderwanego zaznaczeniaPrzesunięcie prowadnicyPrzesunięcie warstwyPrzesunięcie maski warstwyPrzesunięcie ścieżkiPrzesunięcie zaznaczeniaPrzesunięcie warstwy tekstowejPrzesuwaniePrzesunięcie elementuPrzesuwanie warstw i zaznaczeńZaznaczenieBieżąca warstwaBieżąca ścieżkaPrzesunięcie zaznaczonego filtru w dółPrzesunięcie zaznaczonego filtru w góręPrzenieś na ekran...Przesunięcie: Mnożenie_Liczba kolorów:Naw_igacjaOkno n_awigacyjneRozmiar podglądu _nawigacyjnego:NazwaNazwa:NawigacjaNowy kanałKolor nowego kanałuOpcje nowego kanałuNowy kolor z koloru _tłaNowy kolor z koloru p_ierwszoplanowegoNowy obrazNowa warstwaNowa ścieżkaOpcje nowej ścieżkiNowy szablonNowy pędzelNowy kanałNowy kanał z użyciem ostatnich wartościNowy kanał...Nowy kolor z koloru tłaNowy kolor z koloru pierwszoplanowegoNowy gradientNowy importNowa warstwaNowa warstwa z użyciem ostatnich wartościNowa warstwa...Nowa paletaNowa ścieżka z użyciem ostatnich wartościNowa ścieżka...Nowy deseńNowe wektoryBrak dostępnych pędzli dla tego narzędzia.Nie zaznaczono filtruNie odnaleziono gradientów liniowych w pliku "%s"Już niedostępnyNie odnaleziono ścieżek w pliku "%s"Nie odnaleziono ścieżek w buforzeBrak deseni dla tej operacji.Brak zaznaczeniaBrak zaznaczenia do narysowania.Bez miniaturekNiewyrównanyBrakBrakZwykłyZwykłe (128x128)Zwykłe punktyZwykłe oknoTo nie jest zwykły plikNiewystarczająca liczba widocznych warstw do połączenia. Potrzebne są przynajmniej dwie.Niewystarczająca liczba widocznych ścieżek do połączenia. Potrzebne są przynajmniej dwie._Liczba wykorzystywanych procesorów:Liczba linii siatkiLiczba warstw:_Inne (%s) ...PrzesunięciePrzesunięcie kanałuPrzesunięcie obszaru rysowaniaPrzesunięcie warstwyPrzesunięcie maski warstwyPrzesunięcie o (x/_2),(y/2)Przesunięcie:Na dyskuW przypadku komputerów wieloprocesorowych, jeśli GIMP został skompilowany z użyciem opcji --enable-mp, ustawienie określa, ile procesorów program powinien wykorzystywać jednocześnie.Tylko w pamięciOtwó_rz jako nową warstwę...KrycieKrycie:OtwórzOtwarcie obrazuOtwarcie obrazu w postaci nowej warstwyOtwarcie położeniaOtwiera plik tekstowy (UTF-8)Ot_wórz położenie...Os_tatnio otwieraneOkno otwarcia obrazuOtwiera okno wyboru pędzlaOtwiera okno wyboru czcionkiOtwiera okno wyboru gradientuOtwarcie okna wyboru paletyOtwiera okno wyboru deseniaOtwarcie wybranej pozycjiNie można otworzyć pliku "%s": diff -uraN gimp-2.2.0/po/pl.po gimp-2.2.1/po/pl.po --- gimp-2.2.0/po/pl.po 2004-12-19 03:11:39.000000000 +0100 +++ gimp-2.2.1/po/pl.po 2004-12-28 16:58:35.000000000 +0100 @@ -31,7 +31,7 @@ msgstr "" "Project-Id-Version: gimp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-19 03:11+0100\n" +"POT-Creation-Date: 2004-12-28 16:58+0100\n" "PO-Revision-Date: 2004-03-22 10:58+0100\n" "Last-Translator: GNOME PL Team \n" "Language-Team: Polish \n" @@ -1066,11 +1066,11 @@ msgstr "Usunięcie nieistniejących pozycji" # c-format -#: app/actions/documents-commands.c:252 app/actions/file-commands.c:163 +#: app/actions/documents-commands.c:251 app/actions/file-commands.c:163 #: app/dialogs/file-open-dialog.c:198 app/dialogs/file-open-dialog.c:249 #: app/dialogs/file-open-location-dialog.c:193 -#: app/display/gimpdisplayshell-dnd.c:332 app/widgets/gimplayertreeview.c:802 -#: app/widgets/gimptoolbox-dnd.c:123 +#: app/display/gimpdisplayshell-dnd.c:334 app/widgets/gimplayertreeview.c:804 +#: app/widgets/gimptoolbox-dnd.c:125 #, c-format msgid "" "Opening '%s' failed:\n" @@ -1587,117 +1587,117 @@ msgid "Zoom all" msgstr "Widok na całość" -#: app/actions/gradient-editor-actions.c:582 +#: app/actions/gradient-editor-actions.c:589 msgid "_Blending Function for Segment" msgstr "Typ fu_nkcji gradientu dla segmentu" -#: app/actions/gradient-editor-actions.c:584 +#: app/actions/gradient-editor-actions.c:591 msgid "Coloring _Type for Segment" msgstr "_Typ kolorowania segmentu" -#: app/actions/gradient-editor-actions.c:587 +#: app/actions/gradient-editor-actions.c:594 msgid "_Flip Segment" msgstr "O_dbij segment" -#: app/actions/gradient-editor-actions.c:589 +#: app/actions/gradient-editor-actions.c:596 msgid "_Replicate Segment..." msgstr "Zr_eplikuj segment..." -#: app/actions/gradient-editor-actions.c:591 +#: app/actions/gradient-editor-actions.c:598 msgid "Split Segment at _Midpoint" msgstr "_Podziel segment w punkcie pośrednim" -#: app/actions/gradient-editor-actions.c:593 +#: app/actions/gradient-editor-actions.c:600 msgid "Split Segment _Uniformly..." msgstr "Podziel _segment równomiernie..." -#: app/actions/gradient-editor-actions.c:595 +#: app/actions/gradient-editor-actions.c:602 msgid "_Delete Segment" msgstr "_Usuń segment" -#: app/actions/gradient-editor-actions.c:597 +#: app/actions/gradient-editor-actions.c:604 msgid "Re-_center Segment's Midpoint" msgstr "_Wyśrodkuj punkt pośredni segmentu" -#: app/actions/gradient-editor-actions.c:599 +#: app/actions/gradient-editor-actions.c:606 msgid "Re-distribute _Handles in Segment" msgstr "Rozłóż ponownie uc_hwyty w segmencie" -#: app/actions/gradient-editor-actions.c:604 +#: app/actions/gradient-editor-actions.c:611 msgid "_Blending Function for Selection" msgstr "Typ fu_nkcji gradientu dla zaznaczenia" -#: app/actions/gradient-editor-actions.c:606 +#: app/actions/gradient-editor-actions.c:613 msgid "Coloring _Type for Selection" msgstr "_Typ kolorowania zaznaczenia" -#: app/actions/gradient-editor-actions.c:609 +#: app/actions/gradient-editor-actions.c:616 msgid "_Flip Selection" msgstr "O_dbij zaznaczenie" -#: app/actions/gradient-editor-actions.c:611 +#: app/actions/gradient-editor-actions.c:618 msgid "_Replicate Selection..." msgstr "Zr_eplikuj zaznaczenie..." -#: app/actions/gradient-editor-actions.c:613 +#: app/actions/gradient-editor-actions.c:620 msgid "Split Segments at _Midpoints" msgstr "_Podziel segmenty w punktach pośrednich" # - raz - "Podziel segmenty równomiernie" # - dwa - "Równomierny podział segmentów" -#: app/actions/gradient-editor-actions.c:615 +#: app/actions/gradient-editor-actions.c:622 msgid "Split Segments _Uniformly..." msgstr "Podziel _segmenty równomiernie..." -#: app/actions/gradient-editor-actions.c:617 +#: app/actions/gradient-editor-actions.c:624 msgid "_Delete Selection" msgstr "_Usuń zaznaczenie" -#: app/actions/gradient-editor-actions.c:619 +#: app/actions/gradient-editor-actions.c:626 msgid "Re-_center Midpoints in Selection" msgstr "_Wyśrodkuj punkty pośrednie w zaznaczeniu" -#: app/actions/gradient-editor-actions.c:621 +#: app/actions/gradient-editor-actions.c:628 msgid "Re-distribute _Handles in Selection" msgstr "Rozłóż ponownie uc_hwyty w zaznaczeniu" -#: app/actions/gradient-editor-commands.c:84 +#: app/actions/gradient-editor-commands.c:85 msgid "Left Endpoint Color" msgstr "Kolor lewego punktu końcowego" -#: app/actions/gradient-editor-commands.c:86 +#: app/actions/gradient-editor-commands.c:87 msgid "Gradient Segment's Left Endpoint Color" msgstr "Kolor lewego punktu końcowego segmentu gradientu" -#: app/actions/gradient-editor-commands.c:186 +#: app/actions/gradient-editor-commands.c:189 msgid "Right Endpoint Color" msgstr "Kolor prawego punktu końcowego" -#: app/actions/gradient-editor-commands.c:188 +#: app/actions/gradient-editor-commands.c:191 msgid "Gradient Segment's Right Endpoint Color" msgstr "Kolor prawego punktu końcowego segmentu gradientu" -#: app/actions/gradient-editor-commands.c:353 +#: app/actions/gradient-editor-commands.c:358 msgid "Replicate Segment" msgstr "Zreplikuj segment" -#: app/actions/gradient-editor-commands.c:354 +#: app/actions/gradient-editor-commands.c:359 msgid "Replicate Gradient Segment" msgstr "Replikacja segmentu gradientu" -#: app/actions/gradient-editor-commands.c:358 +#: app/actions/gradient-editor-commands.c:363 msgid "Replicate Selection" msgstr "Zreplikuj zaznaczenie" -#: app/actions/gradient-editor-commands.c:359 +#: app/actions/gradient-editor-commands.c:364 msgid "Replicate Gradient Selection" msgstr "Replikacja zaznaczenia gradientu" -#: app/actions/gradient-editor-commands.c:371 +#: app/actions/gradient-editor-commands.c:376 msgid "Replicate" msgstr "Zreplikuj" -#: app/actions/gradient-editor-commands.c:386 +#: app/actions/gradient-editor-commands.c:391 msgid "" "Select the number of times\n" "to replicate the selected segment." @@ -1705,7 +1705,7 @@ "Określ, ile razy powinien zostać\n" "zreplikowany zaznaczony segment." -#: app/actions/gradient-editor-commands.c:389 +#: app/actions/gradient-editor-commands.c:394 msgid "" "Select the number of times\n" "to replicate the selection." @@ -1713,31 +1713,31 @@ "Określ, ile razy powinno zostać\n" "zreplikowane zaznaczenie." -#: app/actions/gradient-editor-commands.c:444 +#: app/actions/gradient-editor-commands.c:452 msgid "Split Segment Uniformly" msgstr "Podziel segment równomiernie" # - raz - "Podziel segment równomiernie" # - dwa - "Równomierny podział segmentu" -#: app/actions/gradient-editor-commands.c:445 +#: app/actions/gradient-editor-commands.c:453 msgid "Split Gradient Segment Uniformly" msgstr "Równomierny podział segmentu gradientu" -#: app/actions/gradient-editor-commands.c:449 +#: app/actions/gradient-editor-commands.c:457 msgid "Split Segments Uniformly" msgstr "Podziel segmenty równomiernie" # - raz - "Podziel segmenty równomiernie" # - dwa - "Równomierny podział segmentów" -#: app/actions/gradient-editor-commands.c:450 +#: app/actions/gradient-editor-commands.c:458 msgid "Split Gradient Segments Uniformly" msgstr "Równomierny podział segmentów" -#: app/actions/gradient-editor-commands.c:462 +#: app/actions/gradient-editor-commands.c:470 msgid "Split" msgstr "Podziel" -#: app/actions/gradient-editor-commands.c:478 +#: app/actions/gradient-editor-commands.c:486 msgid "" "Select the number of uniform parts\n" "in which to split the selected segment." @@ -1745,7 +1745,7 @@ "Podaj liczbę jednakowych części, na jakie\n" "ma zostać podzielony zaznaczony segment." -#: app/actions/gradient-editor-commands.c:481 +#: app/actions/gradient-editor-commands.c:489 msgid "" "Select the number of uniform parts\n" "in which to split the segments in the selection." @@ -2189,7 +2189,7 @@ #: app/actions/layers-commands.c:232 app/actions/layers-commands.c:234 #: app/actions/layers-commands.c:291 app/actions/layers-commands.c:295 -#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:840 +#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:842 msgid "New Layer" msgstr "Nowa warstwa" @@ -2201,7 +2201,7 @@ msgid "Set Layer Boundary Size" msgstr "Ustawienie wymiarów granic warstwy" -#: app/actions/layers-commands.c:512 app/core/gimplayer.c:255 +#: app/actions/layers-commands.c:512 app/core/gimplayer.c:253 msgid "Scale Layer" msgstr "Przeskaluj warstwę" @@ -2213,7 +2213,7 @@ msgid "Layer Mask to Selection" msgstr "Maska warstwy na zaznaczenie" -#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1085 +#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1066 #: app/dialogs/layer-add-mask-dialog.c:62 msgid "Add Layer Mask" msgstr "Dodanie maski warstwy" @@ -2759,7 +2759,7 @@ msgstr "Otwiera plik tekstowy (UTF-8)" #: app/actions/text-editor-commands.c:132 app/config/gimpconfig-utils.c:552 -#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:393 +#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:396 #: app/core/gimpbrushgenerated.c:601 app/core/gimpbrushpipe.c:338 #: app/core/gimpgradient-load.c:63 app/core/gimppalette.c:360 #: app/core/gimppattern.c:328 app/tools/gimpimagemaptool.c:608 @@ -4639,7 +4639,7 @@ msgid "FG to Transparent" msgstr "Kolor pierwszoplanowy na przezroczystość" -#: app/core/gimp-gui.c:148 +#: app/core/gimp-gui.c:153 msgid "GIMP" msgstr "GIMP" @@ -4671,45 +4671,66 @@ msgid "Modules" msgstr "Moduły" -#: app/core/gimpbrush.c:531 +#: app/core/gimpbrush.c:534 #, c-format msgid "Could not read %d bytes from '%s': %s" msgstr "Nie można odczytać %d bajtów z pliku \"%s\": %s" -#: app/core/gimpbrush.c:566 +#: app/core/gimpbrush.c:554 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Width = 0." +msgstr "" +"Poważny błąd przy analizie składniowej pliku \"%s\" z pędzlami: nieznana " +"głębia %d." + +#: app/core/gimpbrush.c:563 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Height = 0." +msgstr "" +"Poważny błąd przy analizie składniowej pliku \"%s\" z pędzlami: plik jest " +"uszkodzony." + +#: app/core/gimpbrush.c:572 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Bytes = 0." +msgstr "" +"Poważny błąd przy analizie składniowej pliku \"%s\" z pędzlami: plik jest " +"uszkodzony." + +#: app/core/gimpbrush.c:596 #, c-format msgid "Fatal parse error in brush file '%s': Unknown depth %d." msgstr "" "Poważny błąd przy analizie składniowej pliku \"%s\" z pędzlami: nieznana " "głębia %d." -#: app/core/gimpbrush.c:579 +#: app/core/gimpbrush.c:609 #, c-format msgid "Fatal parse error in brush file '%s': Unknown version %d." msgstr "" "Poważny błąd przy analizie składniowej pliku \"%s\" z pędzlami: nieznana " "wersja %d." -#: app/core/gimpbrush.c:595 app/core/gimpbrush.c:715 +#: app/core/gimpbrush.c:625 app/core/gimpbrush.c:745 #, c-format msgid "Fatal parse error in brush file '%s': File appears truncated." msgstr "" "Poważny błąd przy analizie składniowej pliku \"%s\" z pędzlami: plik wydaje " "się być obcięty." -#: app/core/gimpbrush.c:603 app/core/gimpbrushgenerated.c:648 +#: app/core/gimpbrush.c:633 app/core/gimpbrushgenerated.c:648 #: app/core/gimpbrushpipe.c:354 #, c-format msgid "Invalid UTF-8 string in brush file '%s'." msgstr "Niepoprawny napis UTF-8 w pliku z pędzlami \"%s\"." -#: app/core/gimpbrush.c:610 app/core/gimpcontext.c:1299 -#: app/core/gimpitem.c:479 app/core/gimppattern.c:400 +#: app/core/gimpbrush.c:640 app/core/gimpcontext.c:1299 +#: app/core/gimpitem.c:480 app/core/gimppattern.c:400 #: app/dialogs/template-options-dialog.c:80 app/tools/gimpvectortool.c:339 msgid "Unnamed" msgstr "Bez nazwy" -#: app/core/gimpbrush.c:704 +#: app/core/gimpbrush.c:734 #, c-format msgid "" "Fatal parse error in brush file '%s': Unsupported brush depth %d\n" @@ -4884,11 +4905,11 @@ "%s" #: app/core/gimpdatafactory.c:411 app/core/gimpdatafactory.c:414 -#: app/core/gimpitem.c:274 app/core/gimpitem.c:277 +#: app/core/gimpitem.c:275 app/core/gimpitem.c:278 msgid "copy" msgstr "kopia" -#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:286 +#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:287 #, c-format msgid "%s copy" msgstr "kopia: %s" @@ -4951,7 +4972,7 @@ msgid "Rotate" msgstr "Obrót" -#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:259 +#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:257 msgid "Transform Layer" msgstr "Przekształcenie warstwy" @@ -5329,7 +5350,7 @@ #. pixel size #: app/core/gimpimagefile.c:624 app/dialogs/info-window.c:552 -#: app/widgets/gimpsizebox.c:552 app/widgets/gimptemplateeditor.c:637 +#: app/widgets/gimpsizebox.c:429 app/widgets/gimptemplateeditor.c:637 #: app/widgets/gimptemplateeditor.c:673 #, c-format msgid "%d x %d pixels" @@ -5349,15 +5370,15 @@ msgid "Could not open thumbnail '%s': %s" msgstr "Nie można otworzyć pliku miniaturki \"%s\": %s" -#: app/core/gimpitem.c:1096 +#: app/core/gimpitem.c:1103 msgid "Attach Parasite" msgstr "Dołączenie danych pasożytniczych" -#: app/core/gimpitem.c:1106 +#: app/core/gimpitem.c:1113 msgid "Attach Parasite to Item" msgstr "Dołączenie do elementu danych pasożytniczych" -#: app/core/gimpitem.c:1145 app/core/gimpitem.c:1152 +#: app/core/gimpitem.c:1152 app/core/gimpitem.c:1159 msgid "Remove Parasite from Item" msgstr "Usunięcie z elementu danych pasożytniczych" @@ -5386,37 +5407,37 @@ msgid "Floating Selection to Layer" msgstr "Oderwane zaznaczenie na warstwę" -#: app/core/gimplayer.c:252 app/pdb/internal_procs.c:152 +#: app/core/gimplayer.c:250 app/pdb/internal_procs.c:152 msgid "Layer" msgstr "Warstwa" -#: app/core/gimplayer.c:253 +#: app/core/gimplayer.c:251 msgid "Rename Layer" msgstr "Zmiana nazwy warstwy" -#: app/core/gimplayer.c:254 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 +#: app/core/gimplayer.c:252 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 msgid "Move Layer" msgstr "Przesunięcie warstwy" -#: app/core/gimplayer.c:256 +#: app/core/gimplayer.c:254 msgid "Resize Layer" msgstr "Zmiana wymiarów warstwy" -#: app/core/gimplayer.c:257 +#: app/core/gimplayer.c:255 msgid "Flip Layer" msgstr "Odbicie warstwy" -#: app/core/gimplayer.c:258 +#: app/core/gimplayer.c:256 msgid "Rotate Layer" msgstr "Obrót warstwy" -#: app/core/gimplayer.c:341 app/core/gimplayer.c:1129 +#: app/core/gimplayer.c:339 app/core/gimplayer.c:1110 #: app/core/gimplayermask.c:236 #, c-format msgid "%s mask" msgstr "maska %s" -#: app/core/gimplayer.c:387 +#: app/core/gimplayer.c:385 #, c-format msgid "" "Floating Selection\n" @@ -5425,40 +5446,40 @@ "Oderwane zaznaczenie\n" "(%s)" -#: app/core/gimplayer.c:1055 +#: app/core/gimplayer.c:1036 msgid "Cannot add layer mask to layer which is not part of an image." msgstr "" "Nie można dodać maski warstwy do warstwy, która nie jest częścią obrazu." -#: app/core/gimplayer.c:1062 +#: app/core/gimplayer.c:1043 msgid "Unable to add a layer mask since the layer already has one." msgstr "Nie można dodać maski warstwy, ponieważ warstwa już ją ma." -#: app/core/gimplayer.c:1069 +#: app/core/gimplayer.c:1050 msgid "Cannot add layer mask to a layer with no alpha channel." msgstr "Nie można dodać maski warstwy do warstwy bez kanału alfa." -#: app/core/gimplayer.c:1079 +#: app/core/gimplayer.c:1060 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "Nie można dodać maski warstwy o wymiarach różnych od wymiarów warstwy." -#: app/core/gimplayer.c:1183 +#: app/core/gimplayer.c:1164 msgid "Transfer Alpha to Mask" msgstr "Przeniesienie kanału alfa na maskę" -#: app/core/gimplayer.c:1343 +#: app/core/gimplayer.c:1324 msgid "Apply Layer Mask" msgstr "Zastosowanie maski warstwy" -#: app/core/gimplayer.c:1344 +#: app/core/gimplayer.c:1325 msgid "Delete Layer Mask" msgstr "Usunięcie maski warstwy" -#: app/core/gimplayer.c:1445 +#: app/core/gimplayer.c:1426 msgid "Add Alpha Channel" msgstr "Dodanie kanału alfa" -#: app/core/gimplayer.c:1467 +#: app/core/gimplayer.c:1448 msgid "Layer to Image Size" msgstr "Dopasowanie wymiarów warstwy do obrazu" @@ -6927,28 +6948,28 @@ msgstr "Rozmiar wydruku:" #. the image size labels -#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:241 +#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:222 #: app/widgets/gimptemplateeditor.c:236 msgid "_Width:" msgstr "_Szerokość: " -#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:248 +#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:225 #: app/widgets/gimptemplateeditor.c:243 msgid "H_eight:" msgstr "_Wysokość:" #. the resolution labels -#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:338 +#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:273 #: app/widgets/gimptemplateeditor.c:363 msgid "_X resolution:" msgstr "Rozdzielczość _X:" -#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:345 +#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:276 #: app/widgets/gimptemplateeditor.c:370 msgid "_Y resolution:" msgstr "Rozdzielczość _Y:" -#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:357 +#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:269 #: app/widgets/gimptemplateeditor.c:383 #, c-format msgid "pixels/%a" @@ -7599,11 +7620,11 @@ msgid "%d minutes" msgstr "ostatnich %d minut" -#: app/display/gimpdisplayshell-dnd.c:96 +#: app/display/gimpdisplayshell-dnd.c:98 msgid "Drop New Layer" msgstr "Upuszczenie nowej warstwy" -#: app/display/gimpdisplayshell-dnd.c:140 +#: app/display/gimpdisplayshell-dnd.c:142 msgid "Drop New Path" msgstr "Upuszczenie nowej ścieżki" @@ -9082,12 +9103,12 @@ msgstr "_Pędzel" #: app/tools/gimppaintoptions-gui.c:103 app/widgets/gimpbrushselect.c:201 -#: app/widgets/gimplayertreeview.c:330 +#: app/widgets/gimplayertreeview.c:332 msgid "Opacity:" msgstr "Krycie:" #: app/tools/gimppaintoptions-gui.c:108 app/tools/gimpselectionoptions.c:374 -#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:323 +#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:325 msgid "Mode:" msgstr "Tryb:" @@ -10510,24 +10531,24 @@ msgid "Set Item Exclusive Linked" msgstr "Ustawienie wyłącznego dowiązania elementu" -#: app/widgets/gimplayertreeview.c:250 +#: app/widgets/gimplayertreeview.c:252 msgid "Reorder Layer" msgstr "Zmiana pozycji warstwy" -#: app/widgets/gimplayertreeview.c:311 +#: app/widgets/gimplayertreeview.c:313 msgid "Keep transparency" msgstr "Zachowanie przezroczystości" -#: app/widgets/gimplayertreeview.c:846 +#: app/widgets/gimplayertreeview.c:848 msgid "Empty Layer" msgstr "Pusta warstwa" -#: app/widgets/gimpmessagebox.c:458 +#: app/widgets/gimpmessagebox.c:460 #, c-format msgid "Message repeated %d times." msgstr "Powtórzono komunikat %d razy." -#: app/widgets/gimpmessagebox.c:460 +#: app/widgets/gimpmessagebox.c:462 msgid "Message repeated once." msgstr "Powtórzono komunikat" @@ -10559,16 +10580,12 @@ msgid "Invalid UTF-8" msgstr "Niepoprawny UTF-8" -#: app/widgets/gimpsizebox.c:290 -msgid "Keep aspect ratio" -msgstr "Stałe proporcje" - -#: app/widgets/gimpsizebox.c:574 +#: app/widgets/gimpsizebox.c:451 #, c-format msgid "%d x %d dpi" msgstr "%d x %d dpi" -#: app/widgets/gimpsizebox.c:578 +#: app/widgets/gimpsizebox.c:455 #, c-format msgid "%d dpi" msgstr "%d dpi" @@ -11011,6 +11028,9 @@ msgid "Image Editor" msgstr "Edytor obrazu" +#~ msgid "Keep aspect ratio" +#~ msgstr "Stałe proporcje" + #~ msgid "Y:" #~ msgstr "Y:" diff -uraN gimp-2.2.0/po/pt_BR.gmo gimp-2.2.1/po/pt_BR.gmo --- gimp-2.2.0/po/pt_BR.gmo 2004-12-19 03:11:56.000000000 +0100 +++ gimp-2.2.1/po/pt_BR.gmo 2004-12-28 16:58:44.000000000 +0100 @@ -1,219 +1,221 @@ -W Jw hi&kG9ZGANim<k@2;P0O29->9l;7 $ -+ 6 -@ -K Vbr - -0%Vgz - - -  * : FR W cKp.B1q!6:M -_ jv -  -2DVe*{6 %.Kj#'A -]hy  13P -DOi -A JM< -EU]b |  -#.?Xo&$ #="E hty -7 % 2@IP X eq y m   ,6? \jz C7= -@H6d%C3Y<#!$A [g }/Li,   1!?a|  2 AN.d55787)p,2 KlOA%5&[41#  7 CMev| -  (0: k w +/BK [i r| - $ 2Sm" ) 2>F +K `"n" -  - )+U,o!##! %Bh. #*-N|%, 1? -Y -d -oz  - . -AL-S   1ATk | %! ':&Ry    % 5BT co~ - -- LX _mu } -  +9S \f v:?8 Yen  - - -   -$ /; DQe t> '9HZz    6 FPcx - -  !. CP`{ -*!(.?n#"&= S_s,|# 'F'cFT;    -, 7E b   ($=b=h6<?AZ79c9rB=f->CJgb   2 B LX j w   2IYm "6J ^l -   -   -  (  0 < L  \ j     (  - - - % -2 -: -@ +V Js |HI&_kG9:GtANiM<k@`2;POa29-9L;7  +  + ++ 6BR +alo +06GZck + + +  +  &2 7 CKP."1Q!- +? JV l +x  +$6E*[6+J_s#! +=HYas| 130dx~ +$/I_y +AJ-x<  %5=B \h~  +8O&e$ "% HTY_d +t7   )0 8 EQ Yfk pm}  <JZ aCn7=@(6id#39m<#!! ;G ]gp,I,`  !A\r   !..D5s578)P,z2 +LgOA%&;4b1#   #-EV\et +  0 K Wd k u +"+ ;I R\ +d oy$ 3Mk~"  &  + @"N"q +  +) 5,O|!##!%"H.g # +-.\%r  +9 +D +OZry   +!,-3a hu !4K \h x %! &2Y m{    "4 CO^v + +- ,8 ?MU ]j +r } 3 <F V`g:?8 9EN` q{ + + + +  $1E T>b (:Zj z  &0CXs + +   #0@[ j x +*!.Nj#s"& 3?S,\# '&'CkFTpw }   +  % Bcr  ($B=H6<?A:7|9c9RB=f >tCJgB   " ,8 J W es)9Mi* >L +_ jx } +   +    ,  < J b ~   (      + + +  -F -OQ - +& +O1 +  - - -S d }   -     .  $ 7  -F  Q  _  k x }         u   kc1 z#r+&&7'^       06N_c}  -  #+ 0 =Id{ -H - #-= -EHP!B1CV[ `mt -  `C10-^ d q~ - - ((6 -_ -jHu -  -  5J Y fty    w    #K13}6"  0:Rf u$   ($+M)y*!/29H*Y' - 0BXhz   1 : I b u        !!!!9![!w!! !!!!!!"-!"O#X#h#{## #### ##3#$ $8$H$ `$ -m$ x$ $$$$$%%,% A%O%f% m%y%%%%@%%-&/& A&N& S& a& m&z&& && & &&&&'1' E' O' ['g' ~''' '' -''' (#( ;(G( -](h(}(((((((((( ( )")9) -A)#L)p)))))))+*,*4* ;* I* -U* `* m*{***** ** ++(+C+"Z+}+++ +++++$+,(,<,K, Z,f, n, |,,, , ,, -, , -,, --- .- 8-B-[-j-------- ..%.?.D. -J. U.a.s... . ... . . ../*/8\8{8884888 -999 -(9 39@9O9 X9f9n9u9 99 9!99 99 : :1:L: \:f:w: :::;:?:!;0;8;L;\;y;;48<m<v<-~< === -= =#=>-> I>U>j> >>>>> -> >>w??? ?????? -? -@@&@ -6@ A@ K@Y@]@w@ @ @!@@ @@@ @ A A(A/A 7AEAZA pA|A -AAA AA AA -B BB:BWB\B bB!oBB!B#BB C -C9#CU]C=C<C=.DlD"rD?DDD DEE E(E,;EhExEEE -EEEEJE AFNF]FvF F FFF F FFG+G;G;UGGG G GGG G HH )H 7H DHPHXH vHHHHHHHII&I9ITIfI{I+IIIII J J &J2J DJ QJ]J#tJ JJ JJJJ6K=KZKbKiK ~K7KKKKL L$L:L IL VLbLtL LL LLLL -L -LL L M!M 0M>M -DMOMTM iMuM -MMM MMM N)N DNPN`NyNNN4NNOO0OMO`OoO.OEOO P P*P BP PP^PyP P P P -PP P -PPP PQ Q(QA* cZGψ2N  [-e -ÊԊڊߊ" ;HZ j x  -<ʋ  ,6H\l{ɍݍ %2F -Vafo3;;2ԏFې ", 1 >LRZ lÑ3#0TlΒݒ F%l - -   Ó Г ݓ !! = I+UK0͔QP$5PG8-Ojoieٙj?~p)ow -<?>t>t`(0ʟПן 6oVƠȠϠ4נ# 0G%AXgUOf} -   ʣԣݣ# )28GNWj}   Ǥդ  $? ^  Υ ֥   -,3 -:E MZb ͦ ܦ -  +: JX l z Χާ  (1 K U -bms٨& 6 W ak s}  ǩשީ    ! -+ -6AZc ku { ˪ ת !)CR -r}  ǫݫ   0KT\o  Ƭ֬ܬ -   ! -/ : H U _ ly   - ǭӭܭ    "29 B O ]j s  îƮˮӮ    0=CL]p(ůί4(1]/հ  4#E i"б -)09O `ls{ -˲ -ֲ - # -CN_e -nydz ϳܳ  -#(5,b t~ !Ŵ  ) -I T`gksx~   .Ե &wXZ>MP@YqA]qIC[DcSH8>ռ1>FGBͽ - -" -- -8 C O[k -z  þ о ܾ 4,=j| ĿͿֿ ߿  -  -  % -1< -R -]h m{a~;k:&  " ,9@Zi  .O`}.K,d8#"Fa~*A_ -  -\E?;38LR 6R[l -u6@Y/q   ! :$H$m $- 3@XjM;   &5< Yc l*  !:W6j !1C HV    2J^ g]uJ[KzC -%%8Q/7+%2 >N m w &E c)#9 Wd )2: ANe x"<@M&Ot:2.2a%!7'$)N|gA%&'L7t2$%< O)Y!   =%Nt1 - ! @ a/k     -+)60`!#4Xu, .8R[  %"5$X&}&& 9C[k 4282U''&$,$CQ #&(4O% 2MT-i      0 >L dq 6  6T[kqx#5K[q -%! ;)ev  & 6D_n}% -67A y    - - ( -HSg   -#U#\yB  -&1K -do%.$ .@O^m} #P!Km}'6O_f! 1$Kp  -& #1KZt   2 $7\@w'% - N*o 4):CTe~%)"!;]KzT! (6Q%i " -608i , F(P&y BLW<WdPQJP[V-|MWOd   )9Haq1Mcy! (4"=`~00# 4APYhx  &4FXi)  -!  , 8 !N p w ~ ]    - - - - -   ' 7  -G R A[        + 0 B S p    "     !1|@Xu}0/3$c    #6O#Tx$ % -?JSZbiqw)" 33Eyd  - - -S&,z;=9OV]mu xFN/:~70?$Qv.  .L^Mq!1 Bc|    'B $:Qn tR:)Kd#   + B R *f    ( % 1 !4R!0!3!)!":("c"l"{"/""%"+"$#:# P#\# r########$ $@$[$(z$"$$$$$%3%"R%,u%&%%%%#&7&!U&+w&%&&&& '-'H'(g'"''^'+)3)F)Y)])})))) ))E)*!** L*#m*****$*+"+?+[+y+ +++++#+,<, Q,I^,,8,,---8-J-#^-- -----.-* .6.!P.r. .. . ...// 0/>/Z/v///////0 00'0/080@0U0#u000"00091"I1l111111,12"2)2;2L2c2t2222223&373H3b3~3/3 3"3'3!4*43484>42Z44&44445515B5^5d5 s55 -5 -5 55 5556 6%6?6O6d6%x6$666 66 7 7/'7W7^7 e7 -q7|7777 7 7 -77 8 8 -,8"78 Z8!h8"8 88 8)89 9)9 I9 W9 d9<r99)99:!/:1Q::":: ::::: ; ;+;QF;Q;%;<+< ?< I<V<e<<<< <<<q== = -== == == >>">&>>&e>(>'>(>?"?;? -R? ]? g?q?????q?7(@ `@Nj@@7@'@ A7AIAeA,|AAAAAAA!B%B6BIBQBaB |BBBBB B BBB/C&8C _CmCsCCC#CCC -D%D;DCPDDDDDD#DEE0E9EJERE YE zEE E.EEEFF*F@FYFoFFFFFFKFKGcGwGGG#G$GG;HHHQH BJLJTJ eJ -qJ%|JJ3J JKK 2KYJWY YYYYY"Z1ZIZ#`Z3ZZZ ZZ[!"[AD[ [[[[[G[*\J\h\ -|\"\\\\\\]-]?]_]o] ] ] ] ]] ]]]]^ ^'^.^ G^#U^ y^6^#^^^&_$6_[_{______G`J`c``#````6aJ:aaaaaaaa bb1bFb[bpbbbbbb"bc!c;cjcbdud}ddddd"dd e*4e$_eeee'e!e%f/Ef)uffff&f g$k!Nkpkk kkkll+l>l6\llllllm#;m_m?m4mTmQInnnn nn -o'o*=oho!~oo -oooo -p !p%/pUpkpp2p p+p& q&Gq$nqqqqqqr !r#Brfr7mss (taIuDuu/vvpw>xeOxTxq -yG|yy*nz|@}B}9~%-3:Tp * HVg2nˀ(>P%kҁ- %3Le}/&Ă// _ƃՃ$ 3AI#^7Ä˄  & ;EM S `n>х Q]uІ,؆+ 1$Rw#%ׇ%>] es Ĉ͈ވ%7:S%L)'+5S Š ׊ 0Ic ivPË79L88IOBJ,w#e K?e?9!ߕLQf-lL5ɘ7?7Bw-N7e2"?Ut\ -\gQĝ*ڞ h 7fަE=!TUv̩.ө -= \ -ju  ֪ )@Yn ԫ|z ޭ.Nas ˮڮ )=C?F2ҰS -Ydm *ϲ  #'?g={"ܳ,(Kt Q*E p } -ŵԵ'"  C Q5_g97tc*KUڹd0RhQռsbyֽPQTR[:T'h2o!@Y;-2`S'*{n-c&' 0=E N [ -i t ~ 1* 1;To~      #1#O's  * 2 @ai q} -$5D -KVn}  -7I\ lx -   /?Sr3 - #-<EUl |   -"" ERYa hu}  $ /7?Hc%y !0@O R_gn2 5;T[ c m z     (1@HN -_ j x  -Bbq     4J S_s.   ##@7d>9,$K p |-"&:Ib6{ - -+ KU^f  -    !$ FS s } -    #'/2BF -LW]dIh  )-+W(* -     )39@HfZ<"( o6) )3Sn! X*]wuR(j87Snf$ c}CmW^D Z+krh%M Y{{l7>=LtL0@P )> <P|; uVP P3 Zb 4 sTsiyz? 4Bs%TL%J m5N|72$1I 6iYOL|vX H h^8' 85Jlr0#)~< JM>,m/j-. @ H,jO aq -"c31I;e635utkc+n'S ,`{QC&  CP/ , e{|%ZEMF+^c82gv} X}>FYv=N-> ,*$Q4/;AD\y?(4 qzt"so +:D"s@!k*B, 0 O H_B r: \Z?#6f:L8W -?H*bvVBT^/mvV;<jQOk<<D7U3 z-K[tIs~L$'\awbxT}\b U*^;1G0uRwE a_@FIF oTp5]TM -s" U : Jye9i[yb 3[a3(hPV`WD&EHJj- BBmV'xlf`,aHINwnF#G}Yq &:9zC  :(B[5 O X_#moEFK%h`jZK _#FD y sJAl)B/hC  d&hR9 4`bFp+'oQCOj`%SL-cG w `T wXIM7SPU|C.1!:Iu\KZN}@x=fbprh  f&)IE:=L QVeU?s2 \4v5;Qr]Y2  {op2TJxF\5!WGZU)\!,Ec1 Wu -#3" Y^jC7 f"6 t]0% qI"5 - ~uaG /LGA/>S.g* . -#Ep$# 1N%>W@`/X"&x% BdzROM]|DWAa7 |w Nm.Q#.J&Xrv2D+ Q` e:3KEU O:38 wH 6fq>9W0.g0izA!?d<e?4j!(VR9dnJ?f91@E(uUw($ x1YGf]HADx<8dWa~YlG -y q=KAyn9_RN-k-M_"nyzA29DW \ ,dKQ h=Rg_tC ]Mq&^ V=} -*.B5{}u9t4 P=2@~PTr_r/$l=< R |tmNqin } -teT_4|o'%78{pg8Hh*kU= $GH8E)  p0 ;~-9c q&O^KCFSpZi +vi k gcSKN .y@o*5<$^!YicRUA @dV76P S{;L "m),/7X.!  MkK)x[oS(zReQ[ - -dZ[Jgi d 1lln6 X$' a+;0 6 I Az41[le> O; GvNM>!rg60+ 2b gV k]{*&?~''(~ -  #]?bx< 2~+[ p' + + +3 D ] t  +     .     +&  1  ?  K X ]  l y       u l ~ Kc uzr ~&'> f r |    .?C]z  +    )D[k +p{H +   +%H0!yB1#6; @MTd +t  `C10 > D Q^ +p +{ ( +? +JHU +  +  * 9 FTY a nz  Wcx    K3]6" 2F U$_   (+-)Y*!/(*9du' +&6HW`o   0 C  Z {       !!)!E!W! ^!k!!!!!!-!#&#6#I#M# g#q#w## ##3###$$ .$ +;$ F$ R$_$}$$$$$$ %%4% ;%G%\%p%%@%%-%% && !& /& ;&H&f& m&y& ~& &&&&&& ' ' )'5' L'Z'r' '' +''' '' (( ++(6(K(T(\(o(t(|((((( ((() +)#)>)W)p)))))+))* * * +#* .* ;*I*^*r*** ** ***+"(+K+T+j+ +++++$+++ +,, (,4, <, J,V,i, n, {,, +, , +,, ,,, , --)-8-O-e------ --- .. +. #./.A.U.h. {. ... . . .... +/ / +)/ 4/>/ Y/ f/r/ / / /,//!/0&0=0)Z0 00 0 00000 0 0 1B1A_1111 1112 2#252J2R2Z222333 +3!3 53C3Z3 l3y333"3!3!414I4b4 z4 4 4444 44V4+,5 X5(b55"55 5 555%6 +:6 E6O6W6f6z6 +66 66 66 6 6667 #7 /7 ;7I7&c7,7 777 +7 +77 8*8I8a8t84888 +888 +8 999 &949<9C9 `9l9 9!99 99 999: *:4:E: W:d:k:;s:?:::;;*;G;d;4<;<D<-L< z=== += =#==-= >#>8> M>W>_>v>> +> >>E?Y?m? v?????? +? +??? +@ @ @'@+@E@ V@ `@!j@@ @@@ @ @@@@ AA(A >AJA +]AhAzA AA AA +AAAB%B*B 0B!=B_B!}B#BB B +B9BU+C=C<C=C:D"@D?cDDD DDDD(D, E6EFEXEiE +zEEEEJE FF+FDF ^F kFxFF F FFFF G;#G_GyG G GGG G GG G H HH&H DHNHiHHHHHHHHI"I4III+`IIIII I I IJ J J+J#BJ fJrJ JJJJ6J K(K0K7K LK7YKKKKKKKL L $L0LBL VLcL LLLL +L +LL LLL L M +MM"M 7MCM +ZMeMM MMMMM NN.NGNWNkN4NNNNNO.O=O.WOEOO O OO P P,PGP MP [P gP +sP~P P +PPP PPPP +QNQ +QR +RR#R +R7RIReR{R#RRR RR S%S;S#USySS SSSSS$T?T^T sT}TTTT!TTU#U +*U5UJU ZUgUUUUUU UVV4VKVjVV VVV VVVWW/WBWYW +kWvWW"WWW WXX2XJXcX=sX6XSXJn GnTndn snn n nnn!nn +o(#oLo#Uo yo ooo +o o oooop +p p +p (p6pFpKOp1p7p1q57qHmqAqq;r!rr ss tu}av*vB +xMx4ySyyXz ^zlz)sz5zz1{0{0{1|(I|Cr||S7},}2} }A AN*g Ub1Ճ(ЅӆGl2Nډ )-3 +alŊˊ݊ ( 8 FPir z +< Ռ *:I^xԍ  +$/4=3T;;ĎF    ( :[bjs3ʑ#":M]w ĒF: +Z +ep u     !Ǔ!  +#KO0Q̔$Z5PG-NO|j̘o7ej ~xpohw؛<P?>͜t t`Wa0g̟ ݟ6o$4#ڠGǡ%X5UO4KT]e +n y  # %8KTf x   Ĥ̤Ҥ դߤ  ,M S`gp   ¥ Υ إ + (0P Ygm|  +ɦۦ  & : HV fs ϧ ۧ  # +0;APl{Ѩ  % /9 AK Q]r  ̩٩ܩ   + +(1 9C IV\bhov~  ̪ Ԫ  +@K^ m y  ǫӫ ֫"*=S s  + ĬѬ   +   # - :G Xb jt{ +   ƭҭۭ    +8 A O] lx   ɮ֮  +>P(bʯܯ41+/]Ӱ ۰# 7Xw~" +ɱԱ .:AIYk + + + βԲ +-3 +<GMV[p óƳճٳ +߳50 BL\ah p~!  ִ + ".59AFLR Y cmsz .ѵp&wX(>MPY_qA+qmIߺC)DmcS8j>1>GSB +޽ + + +  )9 +HSVj     ˾, 8J\dl    +ƿ ѿ +޿   + + +  ++6 ;IaX~;9:u&  (7 MWm .K[v,28_#/Ld{*-MThq + \?p;   ): +CNi6@'/? o |  $$;`y &8MO;   + '1 :[*d %68ov  $    , 5]CJ[KHC%]%8Q7O+%2  ; ER g 1R)q# %2Ni 3 F"S<v@MOB:2./%O!u7'$|5A%'7B2z$% + )'!Qs z  %B[1o +   //9i|     +)0._t!#&C`,{  )  "$&&Kr&& )9 Op422#'V'~&$,C cm#|&4R%g "-7 e s     2?NUf 6 ")9?FWgz)? +Wbh%n! ;3DTe   -<K^v +7 G S] s  + + +!5Mfz   +#U\GB  + +2=%Pv.$,;K ]i#P!;KZl|-4N!b$>] lz +& (B^ r ~ 2 $*@E'%  *=h~ 4)"3L%k)! +KHT %7] t" +607Oh  (&G nBzLW +WbdPJpPN[V|RMWdu l x/?[t1Gdy! " .Lh00 '6FUn  &7Pp) +  ! > E L ][     + + + + + +  +  A) k          ! > N f ~ "   P k cl|&CKk}0/$1 V `j|  #"F]a|$ + !(07?EX)i" 33GdM  + + +S,H;u=$+;CS dpwxN:L7 $DV.k .,M? 1JZk{     $< BPiR:K2~#   *4 _ w  ( % 1 4 !0U!3!)!!:!1":"I"/\""%"+""# #*# @#M#c#y##### ##$(5$"^$$$$$$$" %,0%&]%%%%#%%!&+2&%^&&&& &&'("'"K'n'^'(()))8)A)H)Y) v))E))!) *#(*L*`*r**$****+4+ I+j+~+++#+++ ,I,c,8k,,,,,,-#-=- D-Q-Z-j-{-.-*--! .-. <.I. Z. {..... ../1/@/]/m///////////0#00T0k0"00090"1'1A1`1f1m11,1111122/2?2[2v2222223393/T3 3"3'33333324H4&a4444444455 .5:5 +T5 +_5 j5w5 5555 555 +66%36$Y6~66 66 66/677 7 +,777I7`7z7 7 7 +77 7 7 +7"7 8!#8"E8 h8v8 8)88 8)8 9 9 9<-9j9)999!91 :>:"P:s: :::::: ::Q;QS;%;;; ; << <<<L<h< <<<,=@= V= +`=k= q=~= == ===&=& >(G>'p>(>>>> + ? ? "?,?>?M?V?h?qq?7? @N%@t@7{@'@@@A A,7AdAkAtA{AAA!AAAB BB 7BABRBXBiB B BBB/B&B C(C.CACPC#gCCCCCCC DODdDlD|DD#DDDDDE E E 5EAE \E.hEEEEEEEF*FTTeT T TTT UU*UEU _UmU~UUUU7UVWGWeWWWWWWW$X/)XYX"tX0X0XXJY ]YkYYYY"YYZ#Z3?ZsZZ ZZZ!ZAZ A[b[k[t[[G[[\#\ +7\"B\e\\\\\\\\]*] D] P] Z] h]u] }]]]]] ]]] ^#^ 4^6B^#y^^^&^$^_6_F_\_x___G_``;`#W`{```6`J`@aSacaraaaa aaabb+bIb^brbbb"bb!bbjcd0d8dAdZdbdud"dd d*d$e?eZere'e!e%e/f)0fZfzff&f f$f.g(Kgtggg!ggg)h#Ehih hh$hhh,h$i7i"Ri!ui$ii"i$i$j&9j`j&~jjj"jj! k+kFk bkkkkkkk6lNlllllll#lm?:m4zmTmQnVnunn nnnn*n#o!9o[o +ro}oooo o%op&pBp2[p p+p&p&q$)qNqgqzqqqq q#q!r7(s`s sauDfuu/Yvv+w>we +xTpxqxG7yy*)zT|@p}B}}~~~~~+GVk "2)\vɀ %&L]w-ˁ  8/O&Ђ/ ;Sm$׃ #=7F~  ˄   )<>M 0HPp,+ $ 2N#n%ч؇ .>Sb r̈:%ILo)'5 DPl} ӊۊ $1AQbyP~7ϋ98A8zIOMJ2J#  DKPge9`!d !-'LU57?B2-uNew2ݚ?tP\Ŝ\"Qѝ* Πԡv#ģffЧ=Ѩ!U1.ũة  +%0 A MYt ê)G]r |5E ^j|.ڭ .D Tu֮ͮۮ=?<F|ï2S +(?W `m*  ʲ#ֲ'"=6"tʳ(/EY_f {Q* + 8 +FQaq'"۵  5gP9r/cKIUdRPh sy EпQoTRiTz#2*]en!@;-S*6ancW&    +$ / 9 CP1k *9R gsy     # +'. V`i q{  $ ,8@T[ +z$ +)8HX gt '3C +Z e  -?]p3 + ' 7AThqy   +"   #08@HPX ak $ %4 Zf} + ")C^fn2  ( 5A P\ kx     + % 3=[s{  , IWoux}    .CV.j  #7>W9$ + 7EMg-}"&66 +m +x !;Pd { +    !  . 8 +E P \fk   +I#m  )+(>*g +    f<|"$p f~vj`/ KfeO `T ^cR& .2 nSfopOU@`k^h: s&dd-vKL9M 5 f?%w~\g 3- +5u] Q +' V%=syBRxL;qW= x% 9562 WkQc=h#,7T@]",Q7VPM; T E}r*aP +Y4 |~:IvOy( N<a}4jbu/-\~ +_%+5/:XT&W"/w q&R R3ND }F;% KA}n7xPr@I;NENhxw H,T[t#tF!& qEaO-:  g^ +]CD^EU Oa_AK{sHL +1"S 4q-y374Fzw" 'N >pFO*$ |_ d zQ*_Ys6b*;#$$sZ)!ph<3M@!?[Qg/x4l!}9# +pXVB],XRMvNfopvQ =$gc0WF 0|B]nL& y#a<liN~ y\VMt e8@k2</BE1 # N A^d +& I\<w>ed g S'C ZL A=G [C{o 0. C  u-SwxS`YCi<l< A ;n 5G1MKZq >KD* ?uG{" (l;kW\#iqDZ  z CL]$\D*Bw% ZdG`? k8^?<7fxE'JK~ G{!_qpI 9/.@ 6C Jv\FB~,%s)J .5|7tI"1Pz-Xu}'0 > dMuv6}41ob{{AHhnQ {H!f0wP + K / 0G#:R(RxL-uet]H_3r gi-cT%4m+2XOkiP.U6yJL "E ) Skvp0.gW(52$%?) + +jrI|=N l?7 ml]()=+q"jCBY UTPN+yV8CFMxZmz 19tYQ437?u 39A 2j9,'9UO7A.W<\:){! nPSIE Ds:U62re=$ }Zgzjca`528:}< m:/v_#MJtVO1\0Ic7o~B  +   ma=)>hn:6 3oPTByicH[-H8'G(JFC3 Wr~[4AD'| yR8 Rj;zbn6>8*bY#8 ;P `V_mV @  S ZX O^50e=0^ri* lK(fthgEmz*aX r] R[J`U,l.Y{JnV!? )jrjS+ucFHA& d^2w>o> 3 6cUd@$5|% bGH MDJTi@h>[+ss"UYZl62 &,!e. L9kJ ,   e[i(WI'E_ (8oK?(bp;!b'8 +/" G9 DmD +1*aI`mS.&H 4 [V TXFB1QU|Lz Xf)qb|t>Ghke@$,o1Q)Y Invalid option "%s" Usage: %s [option ... ] [file ... ] @@ -257,7 +259,7 @@ Make sure a proper setup for your display environment exists.GIMP help browserGIMP is not properly installed for the current user. User installation was skipped because the '--no-interface' flag was used. To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Generate optimum paletteGet Monitor ResolutionGiganticGimprc proceduresGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient:GradientsGradients MenuGrain extractGrain mergeGrayGrayscaleGreenGreen:GridGrid line spacingGrow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_counter-clockwise hue)HSV (clockwise _hue)HTML notation:H_eight:H_elp browser to use:Handle position: %0.6fHard edgeHard lightHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHelp proceduresHex:HighlightsHint for the _docks:Hint for the _toolbox:HintingHinting alters the font outline to produce a crisp bitmap at small sizesHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB color layers.Hue-_Saturation...Hue:HugeI_con & TextI_mageI_mport Path...I_nterpolation:I_nterval:IconIcon & descIcon & textIf available, hints from the font are used but you may prefer to always use the automatic hinterIf enabled, the move tool changes the active layer or path when a layer or path is being picked. This used to be the default behaviour in older versions.If you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.Illegal variable name in environment file %s: %sImageImage + GridImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage ThumbnailsImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage maskImage resolution is out of bounds, using the default resolution instead.Image sizeImage sourceImage typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport paletteImport pathsImported PathIn_kIn_vertIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorIndexed Color ConversionIndexed color layers are always scaled without interpolation. The chosen interpolation type will affect channels and masks only.Info WindowInitial zoom _ratio:Initialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' -InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratioKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard EventsKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine +InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard EventsKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine spacing:Line Width:Line _Style:Line style used for the grid.LinearLinked itemLoadLoad CurvesLoad LevelsLoad Right Color Fr_omLoad curves settings from fileLoad levels settings from fileLoad text from fileLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower Path to _BottomLower channelLower channel to bottomLower layerLower layer to bottomLower pathLower path to bottomM_agnifyM_asterM_ove to Screen...Ma_pMagentaMagenta:MagnifyMake _transparentManage Loadable ModulesMarching _ants speed:Mask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:Max Depth:Maximum _filesize for thumbnailing:Maximum _new image size:Maximum color differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMeasure the rulers and enter their lengths:Median:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMerge vectorsMessage proceduresMessage repeated %d times.Message repeated once.Messages are redirected to stderr.MidtonesMigrate User SettingsMinimal number of _undo levels:MiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMouse WheelMouse Wheel EventsMoveMove AnchorsMove ChannelMove Floating SelectionMove GuideMove Guide: Move LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove ToolMove itemMove layers & selectionsMove selectionMove the current layerMove the current pathMove the selected filter downMove the selected filter upMove to Screen...Move: MultiplyN_umber of colors:Na_vigationNa_vigation WindowNa_vigation preview size:NameName:NavigationNew ChannelNew Channel ColorNew Channel OptionsNew Color from _BGNew Color from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channelNew channel with last valuesNew channel...New color from BGNew color from FGNew gradientNew importNew layerNew layer with last valuesNew layer...New paletteNew path with last valuesNew path...New patternNew vectorsNo brushes available for use with this tool.No filter selectedNo linear gradients found in '%s'No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of _processors to use:Number of grid linesNumber of layers:O_ther...OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset by x/_2, y/2Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the palette selection dialogOpen the pattern selection dialogOpen the selected entryOpening '%s' failed: %sOpening '%s' failed: %sOptions: @@ -309,7 +311,7 @@ did not save indexed colormaps correctly. Substituting grayscale map.YYellowYellow:You are trying to create an image with a size of %s.You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your GIMP installation is incomplete:Your input device settings will be reset to default values the next time you start GIMP.Your keyboard shortcuts will be reset to default values the next time you start GIMP.Your window setup will be reset to default values the next time you start GIMP.Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_All_Anchor Layer_Antialiasing_Arbitrary Rotation..._Artistic_Aspect_Auto_B_BG Color_Background color:_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Bucket Fill_Buffer_By Color_By Color Select_C_Cap style:_Channels_Clear Errors_Clear Undo History_Clone_Close_Close Tab_Clouds_Color Tools_Colors_Configure Color and Opacity..._Context_Context Help_Copy_Copy Named..._Create Image from Template..._Crop & Resize_Crop Image_Curved_Curves..._Dark Check Color_Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Desaturate_Detach Tab_Device Status_Dialogs_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Ellipse Select_Enable layer & channel previews_Enormous_Equalize_Eraser_FG Color_File_Fill with:_Fit Image in Window_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground color:_Free Select_G_Generic_Gigantic_Gradient_Gradients_Grayscale_Grayscale copy of layer_Grow..._Guides_Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Info Window_Intersect with Selection_Invert_Join style:_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Left Neighbor's Right Endpoint_Levels..._Light Check Color_Light Effects_Lightness:_Line Style_Linear_Linked_Load Left Color From_Lower Channel_Lower Layer_Lower Path_M_Manually_Map_Mask_Mask to Selection_Maximum number of colors:_Measure_Medium_Merge Palettes..._Merge imported paths_Migrate GIMP 2.0 user settings_Misc. Stuff_Miter limit:_Mode_Module Manager_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._Padding Color_Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preferences_Preview_Preview Size_Previous tip_Print Size..._Properties_Quick Mask Active_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Reassign shortcut_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Remove unused colors from final palette_Render_Replace_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Order & Visibility_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Right Endpoint_Right Neighbor's Left Endpoint_Rotate_Saturation:_Save_Save Left Color To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Scale imported paths to fit image_Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Show Image Selection_Show in Toolbox_Sinusoidal_Small_Smudge_Snap distance:_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tool_Tools_Transfer layer's alpha channel_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Visible_Web_Web browser to use:_White (full opacity)_White Balance_Width:_Wrap around_X resolution:_X:_Xtns_Y_Y resolution:_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for icon typeinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetermillimetersminuten/apercentpicapicaspixelpixelspixels/%apixels/%spointpointssecondtips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: pt_BR Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-19 03:11+0100 +POT-Creation-Date: 2004-12-28 16:58+0100 PO-Revision-Date: 2004-12-14 02:58-0200 Last-Translator: Joao S. O. Bueno Calligaris Language-Team: Brazilian Portuguese <> @@ -360,7 +362,7 @@ Certifique-se de que existe uma configuração de ambiente para o DISPLAY a utilizar..Navegador de ajuda do GIMPO GIMP não está adequadamente instalado para o usuário atual. A instalação para este usuário não foi executada porque a opção '--no-interface' foi usada. Para fazer a instalação do usuário, execute o GIMP sem a opção '--no-interface'O GIMP usa uma quantidade limitada de memória para armazenamento de dados, o chamado "Cache de Fragmentos" (Tile Cache) . Você deve ajustar este tamanho para que se ajuste na memória. Considerar a quantidade de memória usada por outros processos em execução.O GIMP usa um arquivo gtkrc adicional e por isso você pode configurá-lo para que ele seja diferente das outras aplicações GTK.Versão do GIMPO GIMP vai alertar o usuário se for feita uma tentativa de criar uma imagem que vá usar mais memória que o valor especificado aqui.GamaGeralNormalmente somente relevante para displays de 8-bit, este valor é o número mínimo de cores a serem alocadas para o GIMP.Gerar paleta otimizada:Obter Resolução do MonitorGiganteProcedimentos do arquivo GimprcEfeitos de _VidroDegradêEditor de Degradês Menu do Editor de DegradêsDiretórios de DegradêsCor do Ponto à Esquerda do Segmento de DegradêCor do Ponto à Direita do Segmento de DegradêInterface de Usuário para DegradêsDegradê:DegradêsMenu de DegradêsExtrair grãosMesclar grãosCinzaTons de CinzaVerdeVerde:GradeEspaçamento das linhas da gradeAumentar CanalAumentar SeleçãoAumentar a seleção porGuiaAtrair para as guias e para a gradeProcedimentos de guiasHSV HSV (%0.3f, %0.3f, %0.3f)HSV (sentido _anti-horário)HSV (tonalidade no sentido horário)Notação HTML_Altura:Navegador de a_juda a usar:Posição de alça: %0.6fBorda duraLuz duraDurezaDureza:AlturaAltura:AjudaNavegador de AjudaSistema de AjudaO navegador de ajuda não está iniciandoNavegador de ajuda não encontradoProcedimentos de ajudaHexa:Tons clarosDica de tipo de janela para as janelas _acopláveisDica de tipo de janela para a caixa de _ferramentasDicasAs dicas alteram o contorno das fontes de forma a produzir um bitmap nítido para tamanhos pequenos.Histogra_maHistogramaEscala do HistogramaHistóricoHorizontalDeslocamento horizontal da primeira linha da grade; este número pode ser negativo.Espaçamento horizontal das linhas da grade.Quantos nomes de arquivos recém utilizados manter no menu.MatizMatiz-SaturaçãoMatiz-Saturação funciona somente com camadas em formato RGBMatiz-_Saturação...Matiz:ImensoÍ_cone & TextoI_magemI_mportar VetorI_nterpolação:In_tervalo:ÍconeÍcone & descriçãoÍcone & textoSe disponíveis, as dicas da fonte serão utilizadas, mas você pode preferir utilizar as dicas geradas automaticamente.Quando habilitado, a ferramenta Mover altera o vetor ou a camada ativa para a que foi movida, senão, o vetor ou camada ativa permance a mesma não importando qual foi movida. Esse era o comportamento padrão em versões anteriores.Se você não salvar a imagem, modificações dos últimos %s serão perdidas.Se você sair agora, estas modificações serão perdidas.Nome de variável ilegal em arquivo de ambiente %s.: %sImagemImagem + GradeEditor de ImagensInformação de ImagemMenu de ImagemTamanho da ImagemFormato da Barra de Estado da ImagemModelos de ImagemMiniaturas de ImagemFormato do Título da Imagem & Barra de EstadoFormato do Título da Imagem:Aparência das Janelas de ImagemJanelas de imagemA imagem não contém nenhuma camada visível.Arquivo de imagemMáscara da imagemA resolução da imagem está fora dos limites. Usando a resolução padrão.Tamanho da imagemFonte em imagemTipo de imagemImagensMenu de ImagensOpções de ImportaçãoImportar PaletaImportar VetoresImportar Vetores de Arquivo SVG Importar uma Nova PaletaImportar PaletaImportar vetoresVetor ImportadoT_intaIn_verterIn_verter MáscaraIncrementalIdentação:Identação da primeira linhaÍndice:IndexadoCor IndexadaConversão de Cor IndexadaCamadas de cor indexada sempre são redimensionadas sem interpolação. O tipo de interpolação escolhida irá afetar apenas o redimensionamento dos canais e das máscaras.Janela de InformaçãoZoom inicial:Inicializar Máscara da Camada para:Inicializando Plug-insInicializando plug-in: "%s" -TintaInline pixbufControladores de EntradaDispositivos de EntradaNíveis de EntradaInserir ÂncoraInstala um mapa de cores privado; pode ser útil em displays de 8-bit (256 cores).A instalação falhou. Contate o administrador do sistema.Instalação concluída com sucesso. Clique em "Continuar" para prosseguir.Atualização instantânea_Tesoura InteligenteIntensidade %0.3f Opacidade: %0.3fInterfaceProcedimento interno do GIMPProcedimentos InternosInterpolação:Fazer intersecção Fazer intersecção com a seleção atualIntersecções (cruzes)Intersecções (pontos)UTF-8 inválidoDados UTF-8 inválidos no arquivo '%s' .String UTF-8 inválida no arquivo XCFString UTF-8 inválida no arquivo de pincel '%s'.String UTF-8 inválida no arquivo de degradês '%s'.String UTF-8 inválida no arquivo de paleta '%s'String UTF-8 inválida no arquivo de texturas '%s'.Seqüencia de caracteres inválida na URLAtalho inválido.Largura ou altura inválida(s). Ambas devem ser positivas.InverterInverter CanalInverter SeleçãoA inversão não funciona em camadas indexadas.Inverte a seleçãoË isso mesmo que você deseja fazer?Parece que você já usou o GIMP 2.0 antes.Propriedades de ítemVisibilidade de ítemJustificar:Manter TransparênciaManter acimaManter proporção %sManter proporçãoManter proporção %sManter altura %sManter transparênciaManter largura %sTecla-Seta BaixoTecla-Seta Baixo (Alt)Tecla-Seta Baixo (Control + Alt)Tecla-Seta Baixo (Control)Tecla-Seta Baixo (Shift + Alt)Tecla-Seta Baixo (Shift + Control + Alt)Tecla-Seta Baixo (Shift + Control)Tecla-Seta Baixo (Shift)Tecla-Seta EsquerdaTecla-Seta Esquerda (Alt)Tecla-Seta Esquerda (Control + Alt)Tecla-Seta Esquerda (Control)Tecla-Seta Esquerda (Shift + Alt)Tecla-Seta Esquerda (Shift + Control + Alt)Tecla-Seta Esquerda (Shift + Control)Tecla-Seta Esquerda (Shift)Tecla-Seta DireitaTecla-Seta Direita (Alt)Tecla-Seta Direita (Control + Alt)Tecla-Seta Direita (Control)Tecla-Seta Direita (Shift + Alt)Tecla-Seta Direita (Shift + Control + Alt)Tecla-Seta Direita (Shift + Control)Tecla-Seta Direita (Shift)Tecla-Seta CimaTecla-Seta Cima (Alt) Tecla-Seta Cima (Control + Alt) Tecla-Seta Cima (Control) Tecla-Seta Cima (Shift + Alt) Tecla-Seta Cima (Shift + Control + Alt) Tecla-Seta Cima (Shift + Control) Tecla-Seta Cima (Shift) Os atalhos de teclado podem ser redefinidos dinamicamente no GIMP. O menurc é um depósito de sua configuração, de forma que ela possa ser lembrada para a próxima sessão. Você pode editar este arquivo se desejar, mas é muito mais fácil definir as teclas dentro do GIMP. A remoção deste arquivo irá recuperar os atalhos de teclado padrões.TecladoEventos de TecladoAtalhos de TecladoEPDCor do Ponto do Canto _EsquerdoPaisagemGrandeGrande (256x256)Pré-Visualizações MaioresÚltimo Erro:CamadaA camada "%s" não tem alfa. A camada atual foi colocada acima. dela.Atributos da CamadaTamanho dos L_imites da camada...Tipo de Preenchimento da Camada:Máscara da Camada para a SeleçãoSeleção de CamadaTamanho da Camada_Modo de Combinação_Nome da Camada:A camada não pode mais ser baixada.A camada não pode subir mais.A camada já está no fundo.A camada já está no topo.Camada para Tamanho da ImagemCamada para o _FundoCamada para o Ta_manho de ImagemCamada para o _TopoCopia o Canal _Alfa da CamadaCamadasMenu de CamadasOpções de Combinação de CamadasCor do Ponto no Canto EsquerdoAlinhado à esquerdaComprimento:Faz o GIMP tentar restaurar sua última sessão salva quando é iniciado.NíveisNíveis não podem ser ajustados para imagens indexadas.Cor dos tons claros do xadrezSomente clarearLinearEspaçamento +TintaInline pixbufControladores de EntradaDispositivos de EntradaNíveis de EntradaInserir ÂncoraInstala um mapa de cores privado; pode ser útil em displays de 8-bit (256 cores).A instalação falhou. Contate o administrador do sistema.Instalação concluída com sucesso. Clique em "Continuar" para prosseguir.Atualização instantânea_Tesoura InteligenteIntensidade %0.3f Opacidade: %0.3fInterfaceProcedimento interno do GIMPProcedimentos InternosInterpolação:Fazer intersecção Fazer intersecção com a seleção atualIntersecções (cruzes)Intersecções (pontos)UTF-8 inválidoDados UTF-8 inválidos no arquivo '%s' .String UTF-8 inválida no arquivo XCFString UTF-8 inválida no arquivo de pincel '%s'.String UTF-8 inválida no arquivo de degradês '%s'.String UTF-8 inválida no arquivo de paleta '%s'String UTF-8 inválida no arquivo de texturas '%s'.Seqüencia de caracteres inválida na URLAtalho inválido.Largura ou altura inválida(s). Ambas devem ser positivas.InverterInverter CanalInverter SeleçãoA inversão não funciona em camadas indexadas.Inverte a seleçãoË isso mesmo que você deseja fazer?Parece que você já usou o GIMP 2.0 antes.Propriedades de ítemVisibilidade de ítemJustificar:Manter TransparênciaManter acimaManter proporção %sManter proporção %sManter altura %sManter transparênciaManter largura %sTecla-Seta BaixoTecla-Seta Baixo (Alt)Tecla-Seta Baixo (Control + Alt)Tecla-Seta Baixo (Control)Tecla-Seta Baixo (Shift + Alt)Tecla-Seta Baixo (Shift + Control + Alt)Tecla-Seta Baixo (Shift + Control)Tecla-Seta Baixo (Shift)Tecla-Seta EsquerdaTecla-Seta Esquerda (Alt)Tecla-Seta Esquerda (Control + Alt)Tecla-Seta Esquerda (Control)Tecla-Seta Esquerda (Shift + Alt)Tecla-Seta Esquerda (Shift + Control + Alt)Tecla-Seta Esquerda (Shift + Control)Tecla-Seta Esquerda (Shift)Tecla-Seta DireitaTecla-Seta Direita (Alt)Tecla-Seta Direita (Control + Alt)Tecla-Seta Direita (Control)Tecla-Seta Direita (Shift + Alt)Tecla-Seta Direita (Shift + Control + Alt)Tecla-Seta Direita (Shift + Control)Tecla-Seta Direita (Shift)Tecla-Seta CimaTecla-Seta Cima (Alt) Tecla-Seta Cima (Control + Alt) Tecla-Seta Cima (Control) Tecla-Seta Cima (Shift + Alt) Tecla-Seta Cima (Shift + Control + Alt) Tecla-Seta Cima (Shift + Control) Tecla-Seta Cima (Shift) Os atalhos de teclado podem ser redefinidos dinamicamente no GIMP. O menurc é um depósito de sua configuração, de forma que ela possa ser lembrada para a próxima sessão. Você pode editar este arquivo se desejar, mas é muito mais fácil definir as teclas dentro do GIMP. A remoção deste arquivo irá recuperar os atalhos de teclado padrões.TecladoEventos de TecladoAtalhos de TecladoEPDCor do Ponto do Canto _EsquerdoPaisagemGrandeGrande (256x256)Pré-Visualizações MaioresÚltimo Erro:CamadaA camada "%s" não tem alfa. A camada atual foi colocada acima. dela.Atributos da CamadaTamanho dos L_imites da camada...Tipo de Preenchimento da Camada:Máscara da Camada para a SeleçãoSeleção de CamadaTamanho da Camada_Modo de Combinação_Nome da Camada:A camada não pode mais ser baixada.A camada não pode subir mais.A camada já está no fundo.A camada já está no topo.Camada para Tamanho da ImagemCamada para o _FundoCamada para o Ta_manho de ImagemCamada para o _TopoCopia o Canal _Alfa da CamadaCamadasMenu de CamadasOpções de Combinação de CamadasCor do Ponto no Canto EsquerdoAlinhado à esquerdaComprimento:Faz o GIMP tentar restaurar sua última sessão salva quando é iniciado.NíveisNíveis não podem ser ajustados para imagens indexadas.Cor dos tons claros do xadrezSomente clarearLinearEspaçamento entre linhasLargura da Linha:Estilo das _Linhas:Estilo de linha usado para a grade.LinearÍtem ligadoCarregarCarregar CurvasCarregar NíveisCarregar Cor da D_ireita deLê configuração de curvas salvaa em arquivoLer ajustes de níveis a partir de arquivoCarrega texto de arquivo Carregando pré-visualização...Localização:LogarítmicoTracinhos longosProcurando por arquivos de dadosAbaixar CanalAbaixar Canal até o FundoAbaixar Canal até o _FundoAbaixar camadaAbaixar Camada para o FundoAbaixar VetorAbaixar Vetor para o Fundo Abaixar Vetor para o Fu_ndoAbaixa o canalAbaixa o canal até o fundoAbaixa a camadaAbaixa camada para o fundoAbaixa o vetorAbaixa o vetor para o fundo _Ampliar_TodosMo_ver para a Tela...Ma_pearMagentaMagenta:AmpliarDeixar _transparenteGerenciar Módulos CarregáveisVelocidade de marcha das formig_as:Opacidade da Máscara:Mascarar Áreas _SelecionadasMascarar Áreas _Não-SelecionadasMatriz:Profundidade máxima:Tamanho _máximo de arquivo para geração de miniaturas:Tamanho máximo de _novas imagens:Diferença de cor máximaMemória máxima para desfazerMeio:MedidaMedir Distâncias e ÂngulosMedir distâncias e ângulosMeça as réguas e digite seus comprimentos:Mediana:MédioTracinhos médiosCombinar Abai_xoCombinar com as abaixoCombinar CamadasCombinar PaletaCombinar Camadas Visíveis.Combinar Vetores VisíveisCombinar Camadas _Visíveis...Combinar Camadas V_isíveis..._Combinar Vetores VisíveisCombinar camadasCombinar PaletasCombinar vetoresProcedimentos de mensagemMensagem repetida %d vezes.Mensagem repetida uma vez.As mensagens estão redirecionadas para stderr.Tons médiosMigrar Configurações do UsuárioNúmero mínimo de níveis de desfazer:DiversosQuadradoModoModo:Modificar a Cor SelecionadaModificar os Níveis de Cores da Faixa SelecionadaModificar todas as coresModificar o espaçamento entre linhas.Diretórios de MódulosGerenciador de MódulosCaminho para os módulosMódulosCursores de MouseRodinha do MouseEventos da Rodinha do MouseMoverMover ÂncorasMover CanalMover Seleção FlutuanteMover GuiaMover GuiaMover CamadaMover Máscara de CamadaMover VetorMover SeleçãoMover Camada de TextoFerramenta Mover Mover ítemMove camadas & seleçõesMover seleçãoMover a camada atualMover o vetor atualMover o filtro selecionado para baixoMover o filtro selecionado para cimaMo_ver para a Tela...Mover: MultiplicarNúmero de _cores:Na_vegaçãoJanela de Na_vegação...Tamanho de pré-visualização de _navegação:Nome: Nome: NavegaçãoNovo CanalCor do Novo CanalOpções do Novo CanalNova Cor da cor de F_undoNova Cor da cor de _FrenteNova ImagemNova CamadaNovo VetorOpções do Novo VetorNovo ModeloNovo PincelNovo canalNovo canal com os últimos valoresNovo canal...Insere cor de fundo como nova corInsere cor de frente como nova corNovo degradêNova importaçãoNova camadaNova camada repetindo os últimos valores_Nova camada...Nova PaletaNovo vetor usando os últimos parâmetrosNovo vetor...Nova TexturaNovos vetoresNão há pincéis disponíveis para uso com esta ferramenta.Nenhum filtro selecionadoNenhum degradê linear encontrado em '%s'Não está mais disponívelNenhum vetor encontrado em '%s'Nenhum vetor encontrado no bufferNenhuma textura disponível para esta operação.Nenhuma seleçãoNão há seleção para contornar.Sem miniaturasNão alinhadoNenhumNenhuma (Mais Rápida)NormalNormal (128x128)Pontilhado normalJanela normalNão é um arquivo regularNão há camadas visíveis suficientes para combinar. Deve haver no mínimo duas.Não há vetores visíveis suficientes para combinar. Deve haver no mínimo dois.Número de _processadores a utilizar:Número de linhas da gradeNúmero de camadas:_Outra...DeslocamentoDeslocar CanalDeslocar Objeto DesenhávelDeslocar CamadaDeslocar Máscara de CamadaDeslocar por x/_2, y/2Deslocamento:No discoEm máquinas com múltiplos processadores, se o GIMP foi compilado com --enable-mp, seleciona quantos processadores o GIMP deve usar simultaneamente.Somente na memóriaAb_rir como Camada...OpacidadeOpacidade:AbrirAbrir ImagemAbrir Imagem como CamadaAbrir URLAbrir Arquivo de Texto (UTF-8)_Abrir URL...Abrir _RecenteDiálogo para abrir imagensAbre o diálogo de seleção de pincelAbre o diálogo de seleção de fontesAbre o diálogo de seleção de degradêAbre o diálogo de seleção de paletasAbre o diálogo de seleção de texturasAbrir a entrada selecionadaFalha ao abrir '%s': %sFalha ao abrir '%s' %sOpções: diff -uraN gimp-2.2.0/po/pt_BR.po gimp-2.2.1/po/pt_BR.po --- gimp-2.2.0/po/pt_BR.po 2004-12-19 03:11:41.000000000 +0100 +++ gimp-2.2.1/po/pt_BR.po 2004-12-28 16:58:36.000000000 +0100 @@ -15,7 +15,7 @@ msgstr "" "Project-Id-Version: pt_BR\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-19 03:11+0100\n" +"POT-Creation-Date: 2004-12-28 16:58+0100\n" "PO-Revision-Date: 2004-12-14 02:58-0200\n" "Last-Translator: Joao S. O. Bueno Calligaris \n" "Language-Team: Brazilian Portuguese <>\n" @@ -1043,11 +1043,11 @@ msgid "Remove dangling entries" msgstr "Remove as entradas pendentes" -#: app/actions/documents-commands.c:252 app/actions/file-commands.c:163 +#: app/actions/documents-commands.c:251 app/actions/file-commands.c:163 #: app/dialogs/file-open-dialog.c:198 app/dialogs/file-open-dialog.c:249 #: app/dialogs/file-open-location-dialog.c:193 -#: app/display/gimpdisplayshell-dnd.c:332 app/widgets/gimplayertreeview.c:802 -#: app/widgets/gimptoolbox-dnd.c:123 +#: app/display/gimpdisplayshell-dnd.c:334 app/widgets/gimplayertreeview.c:804 +#: app/widgets/gimptoolbox-dnd.c:125 #, c-format msgid "" "Opening '%s' failed:\n" @@ -1555,115 +1555,115 @@ msgid "Zoom all" msgstr "Ampliar tudo" -#: app/actions/gradient-editor-actions.c:582 +#: app/actions/gradient-editor-actions.c:589 msgid "_Blending Function for Segment" msgstr "Função de _Mescla para o Segmento" -#: app/actions/gradient-editor-actions.c:584 +#: app/actions/gradient-editor-actions.c:591 msgid "Coloring _Type for Segment" msgstr "Mo_delo de Cor para o Segmento" -#: app/actions/gradient-editor-actions.c:587 +#: app/actions/gradient-editor-actions.c:594 msgid "_Flip Segment" msgstr "_Espelhar Segmento" -#: app/actions/gradient-editor-actions.c:589 +#: app/actions/gradient-editor-actions.c:596 msgid "_Replicate Segment..." msgstr "_Replicar Segmento..." -#: app/actions/gradient-editor-actions.c:591 +#: app/actions/gradient-editor-actions.c:598 msgid "Split Segment at _Midpoint" msgstr "Dividir o Segmento no _Meio" -#: app/actions/gradient-editor-actions.c:593 +#: app/actions/gradient-editor-actions.c:600 msgid "Split Segment _Uniformly..." msgstr "Dividir o Segmento _Uniformemente..." -#: app/actions/gradient-editor-actions.c:595 +#: app/actions/gradient-editor-actions.c:602 msgid "_Delete Segment" msgstr "Remo_ver Segmento" -#: app/actions/gradient-editor-actions.c:597 +#: app/actions/gradient-editor-actions.c:604 msgid "Re-_center Segment's Midpoint" msgstr "Re_centralizar o Ponto Médio do Segmento" -#: app/actions/gradient-editor-actions.c:599 +#: app/actions/gradient-editor-actions.c:606 msgid "Re-distribute _Handles in Segment" msgstr "Redistribuir _Pontos de Manuseio no Segmento" -#: app/actions/gradient-editor-actions.c:604 +#: app/actions/gradient-editor-actions.c:611 msgid "_Blending Function for Selection" msgstr "Função de _Mesclagem para a Seleção" -#: app/actions/gradient-editor-actions.c:606 +#: app/actions/gradient-editor-actions.c:613 msgid "Coloring _Type for Selection" msgstr "Mo_delo de Cor para a Seleção" -#: app/actions/gradient-editor-actions.c:609 +#: app/actions/gradient-editor-actions.c:616 msgid "_Flip Selection" msgstr "_Espelhar Seleção" -#: app/actions/gradient-editor-actions.c:611 +#: app/actions/gradient-editor-actions.c:618 msgid "_Replicate Selection..." msgstr "_Replicar Seleção..." -#: app/actions/gradient-editor-actions.c:613 +#: app/actions/gradient-editor-actions.c:620 msgid "Split Segments at _Midpoints" msgstr "Dividir Segmentos nos Pontos _Médios" -#: app/actions/gradient-editor-actions.c:615 +#: app/actions/gradient-editor-actions.c:622 msgid "Split Segments _Uniformly..." msgstr "Dividir Segmentos _Uniformemente..." -#: app/actions/gradient-editor-actions.c:617 +#: app/actions/gradient-editor-actions.c:624 msgid "_Delete Selection" msgstr "Remo_ver Seleção" -#: app/actions/gradient-editor-actions.c:619 +#: app/actions/gradient-editor-actions.c:626 msgid "Re-_center Midpoints in Selection" msgstr "Re_centralizar Pontos Médios da Seleção" -#: app/actions/gradient-editor-actions.c:621 +#: app/actions/gradient-editor-actions.c:628 msgid "Re-distribute _Handles in Selection" msgstr "Redistribuir _Pontos de Manuseio na Seleção" -#: app/actions/gradient-editor-commands.c:84 +#: app/actions/gradient-editor-commands.c:85 msgid "Left Endpoint Color" msgstr "Cor do Ponto no Canto Esquerdo" -#: app/actions/gradient-editor-commands.c:86 +#: app/actions/gradient-editor-commands.c:87 msgid "Gradient Segment's Left Endpoint Color" msgstr "Cor do Ponto à Esquerda do Segmento de Degradê" -#: app/actions/gradient-editor-commands.c:186 +#: app/actions/gradient-editor-commands.c:189 msgid "Right Endpoint Color" msgstr "Cor do Ponto no Canto Direito" -#: app/actions/gradient-editor-commands.c:188 +#: app/actions/gradient-editor-commands.c:191 msgid "Gradient Segment's Right Endpoint Color" msgstr "Cor do Ponto à Direita do Segmento de Degradê" -#: app/actions/gradient-editor-commands.c:353 +#: app/actions/gradient-editor-commands.c:358 msgid "Replicate Segment" msgstr "Replicar Segmento" -#: app/actions/gradient-editor-commands.c:354 +#: app/actions/gradient-editor-commands.c:359 msgid "Replicate Gradient Segment" msgstr "Replicar Segmento de Degradê" -#: app/actions/gradient-editor-commands.c:358 +#: app/actions/gradient-editor-commands.c:363 msgid "Replicate Selection" msgstr "Replicar Seleção" -#: app/actions/gradient-editor-commands.c:359 +#: app/actions/gradient-editor-commands.c:364 msgid "Replicate Gradient Selection" msgstr "Replicar Seleção de Degradê" -#: app/actions/gradient-editor-commands.c:371 +#: app/actions/gradient-editor-commands.c:376 msgid "Replicate" msgstr "Replicar" -#: app/actions/gradient-editor-commands.c:386 +#: app/actions/gradient-editor-commands.c:391 msgid "" "Select the number of times\n" "to replicate the selected segment." @@ -1671,7 +1671,7 @@ "Selecione o número de vezes\n" "a replicar o segmento selecionado." -#: app/actions/gradient-editor-commands.c:389 +#: app/actions/gradient-editor-commands.c:394 msgid "" "Select the number of times\n" "to replicate the selection." @@ -1679,27 +1679,27 @@ "Selecione o número de vezes\n" "a replicar a seleção." -#: app/actions/gradient-editor-commands.c:444 +#: app/actions/gradient-editor-commands.c:452 msgid "Split Segment Uniformly" msgstr "Dividir o Segmento Uniformemente" -#: app/actions/gradient-editor-commands.c:445 +#: app/actions/gradient-editor-commands.c:453 msgid "Split Gradient Segment Uniformly" msgstr "Dividir o Segmento de Degradê Uniformemente" -#: app/actions/gradient-editor-commands.c:449 +#: app/actions/gradient-editor-commands.c:457 msgid "Split Segments Uniformly" msgstr "Dividir Segmentos Uniformemente" -#: app/actions/gradient-editor-commands.c:450 +#: app/actions/gradient-editor-commands.c:458 msgid "Split Gradient Segments Uniformly" msgstr "Dividir Segmentos de Degradê Uniformemente" -#: app/actions/gradient-editor-commands.c:462 +#: app/actions/gradient-editor-commands.c:470 msgid "Split" msgstr "Dividir" -#: app/actions/gradient-editor-commands.c:478 +#: app/actions/gradient-editor-commands.c:486 msgid "" "Select the number of uniform parts\n" "in which to split the selected segment." @@ -1707,7 +1707,7 @@ "Selecione o número de partes uniformes\n" "nas quais dividir o segmento selecionado." -#: app/actions/gradient-editor-commands.c:481 +#: app/actions/gradient-editor-commands.c:489 msgid "" "Select the number of uniform parts\n" "in which to split the segments in the selection." @@ -2145,7 +2145,7 @@ #: app/actions/layers-commands.c:232 app/actions/layers-commands.c:234 #: app/actions/layers-commands.c:291 app/actions/layers-commands.c:295 -#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:840 +#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:842 msgid "New Layer" msgstr "Nova Camada" @@ -2157,7 +2157,7 @@ msgid "Set Layer Boundary Size" msgstr "Ajusta o Tamanho do Limite da Camada" -#: app/actions/layers-commands.c:512 app/core/gimplayer.c:255 +#: app/actions/layers-commands.c:512 app/core/gimplayer.c:253 msgid "Scale Layer" msgstr "Redimensionar Camada" @@ -2169,7 +2169,7 @@ msgid "Layer Mask to Selection" msgstr "Máscara da Camada para a Seleção" -#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1085 +#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1066 #: app/dialogs/layer-add-mask-dialog.c:62 msgid "Add Layer Mask" msgstr "Adicionar Máscara à Camada" @@ -2716,7 +2716,7 @@ msgstr "Abrir Arquivo de Texto (UTF-8)" #: app/actions/text-editor-commands.c:132 app/config/gimpconfig-utils.c:552 -#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:393 +#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:396 #: app/core/gimpbrushgenerated.c:601 app/core/gimpbrushpipe.c:338 #: app/core/gimpgradient-load.c:63 app/core/gimppalette.c:360 #: app/core/gimppattern.c:328 app/tools/gimpimagemaptool.c:608 @@ -4581,7 +4581,7 @@ msgid "FG to Transparent" msgstr "Frente para Transparente" -#: app/core/gimp-gui.c:148 +#: app/core/gimp-gui.c:153 msgid "GIMP" msgstr "GIMP" @@ -4613,42 +4613,61 @@ msgid "Modules" msgstr "Módulos" -#: app/core/gimpbrush.c:531 +#: app/core/gimpbrush.c:534 #, c-format msgid "Could not read %d bytes from '%s': %s" msgstr "Impossível ler %d bytes de '%s': %s" -#: app/core/gimpbrush.c:566 +#: app/core/gimpbrush.c:554 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Width = 0." +msgstr "" +"Erro fatal de análise no arquivo de pincel '%s': Profundidade desconhecida: %" +"d." + +#: app/core/gimpbrush.c:563 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Height = 0." +msgstr "" +"Erro fatal de análise no arquivo de pincel '%s':O arquivo está corrompido." + +#: app/core/gimpbrush.c:572 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Bytes = 0." +msgstr "" +"Erro fatal de análise no arquivo de pincel '%s':O arquivo está corrompido." + +#: app/core/gimpbrush.c:596 #, c-format msgid "Fatal parse error in brush file '%s': Unknown depth %d." msgstr "" "Erro fatal de análise no arquivo de pincel '%s': Profundidade desconhecida: %" "d." -#: app/core/gimpbrush.c:579 +#: app/core/gimpbrush.c:609 #, c-format msgid "Fatal parse error in brush file '%s': Unknown version %d." msgstr "" "Erro fatal de análise no arquivo de pincel '%s': Versão desconhecida %d." -#: app/core/gimpbrush.c:595 app/core/gimpbrush.c:715 +#: app/core/gimpbrush.c:625 app/core/gimpbrush.c:745 #, c-format msgid "Fatal parse error in brush file '%s': File appears truncated." msgstr "Erro fatal de análise: O arquivo de pincel '%s' parece truncado." -#: app/core/gimpbrush.c:603 app/core/gimpbrushgenerated.c:648 +#: app/core/gimpbrush.c:633 app/core/gimpbrushgenerated.c:648 #: app/core/gimpbrushpipe.c:354 #, c-format msgid "Invalid UTF-8 string in brush file '%s'." msgstr "String UTF-8 inválida no arquivo de pincel '%s'." -#: app/core/gimpbrush.c:610 app/core/gimpcontext.c:1299 -#: app/core/gimpitem.c:479 app/core/gimppattern.c:400 +#: app/core/gimpbrush.c:640 app/core/gimpcontext.c:1299 +#: app/core/gimpitem.c:480 app/core/gimppattern.c:400 #: app/dialogs/template-options-dialog.c:80 app/tools/gimpvectortool.c:339 msgid "Unnamed" msgstr "Sem nome" -#: app/core/gimpbrush.c:704 +#: app/core/gimpbrush.c:734 #, c-format msgid "" "Fatal parse error in brush file '%s': Unsupported brush depth %d\n" @@ -4821,11 +4840,11 @@ "%s" #: app/core/gimpdatafactory.c:411 app/core/gimpdatafactory.c:414 -#: app/core/gimpitem.c:274 app/core/gimpitem.c:277 +#: app/core/gimpitem.c:275 app/core/gimpitem.c:278 msgid "copy" msgstr "copiar" -#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:286 +#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:287 #, c-format msgid "%s copy" msgstr "cópia de %s" @@ -4888,7 +4907,7 @@ msgid "Rotate" msgstr "Rotacionar" -#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:259 +#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:257 msgid "Transform Layer" msgstr "Transformar Camada" @@ -5255,7 +5274,7 @@ #. pixel size #: app/core/gimpimagefile.c:624 app/dialogs/info-window.c:552 -#: app/widgets/gimpsizebox.c:552 app/widgets/gimptemplateeditor.c:637 +#: app/widgets/gimpsizebox.c:429 app/widgets/gimptemplateeditor.c:637 #: app/widgets/gimptemplateeditor.c:673 #, c-format msgid "%d x %d pixels" @@ -5275,15 +5294,15 @@ msgid "Could not open thumbnail '%s': %s" msgstr "Impossível remover miniatura '%s': %s" -#: app/core/gimpitem.c:1096 +#: app/core/gimpitem.c:1103 msgid "Attach Parasite" msgstr "Anexar Parasita" -#: app/core/gimpitem.c:1106 +#: app/core/gimpitem.c:1113 msgid "Attach Parasite to Item" msgstr "Anexar Parasita ao Ítem" -#: app/core/gimpitem.c:1145 app/core/gimpitem.c:1152 +#: app/core/gimpitem.c:1152 app/core/gimpitem.c:1159 msgid "Remove Parasite from Item" msgstr "Remover Parasita do Ítem" @@ -5311,37 +5330,37 @@ msgid "Floating Selection to Layer" msgstr "Seleção Flutuante para Camada" -#: app/core/gimplayer.c:252 app/pdb/internal_procs.c:152 +#: app/core/gimplayer.c:250 app/pdb/internal_procs.c:152 msgid "Layer" msgstr "Camada" -#: app/core/gimplayer.c:253 +#: app/core/gimplayer.c:251 msgid "Rename Layer" msgstr "Renomear Camada" -#: app/core/gimplayer.c:254 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 +#: app/core/gimplayer.c:252 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 msgid "Move Layer" msgstr "Mover Camada" -#: app/core/gimplayer.c:256 +#: app/core/gimplayer.c:254 msgid "Resize Layer" msgstr "Alterar Tamanho da Camada" -#: app/core/gimplayer.c:257 +#: app/core/gimplayer.c:255 msgid "Flip Layer" msgstr "Espelhar Camada" -#: app/core/gimplayer.c:258 +#: app/core/gimplayer.c:256 msgid "Rotate Layer" msgstr "Rotacionar Camada" -#: app/core/gimplayer.c:341 app/core/gimplayer.c:1129 +#: app/core/gimplayer.c:339 app/core/gimplayer.c:1110 #: app/core/gimplayermask.c:236 #, c-format msgid "%s mask" msgstr "%s máscara" -#: app/core/gimplayer.c:387 +#: app/core/gimplayer.c:385 #, c-format msgid "" "Floating Selection\n" @@ -5350,44 +5369,44 @@ "Seleção Flutuante\n" "(%s)" -#: app/core/gimplayer.c:1055 +#: app/core/gimplayer.c:1036 msgid "Cannot add layer mask to layer which is not part of an image." msgstr "" "Impossível adicionar uma máscara de camada a uma camada que não é parte de " "uma imagem." -#: app/core/gimplayer.c:1062 +#: app/core/gimplayer.c:1043 msgid "Unable to add a layer mask since the layer already has one." msgstr "Já existe uma máscara de camada, impossível adicionar outra." -#: app/core/gimplayer.c:1069 +#: app/core/gimplayer.c:1050 msgid "Cannot add layer mask to a layer with no alpha channel." msgstr "" "Impossível adicionar uma máscara de camada à uma camada sem canal alfa." -#: app/core/gimplayer.c:1079 +#: app/core/gimplayer.c:1060 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "" "Impossível adicionar uma máscara de camada de dimensões diferentes da camada " "especificada." -#: app/core/gimplayer.c:1183 +#: app/core/gimplayer.c:1164 msgid "Transfer Alpha to Mask" msgstr "Mover Alfa para Máscara" -#: app/core/gimplayer.c:1343 +#: app/core/gimplayer.c:1324 msgid "Apply Layer Mask" msgstr "Aplicar Máscara na Camada" -#: app/core/gimplayer.c:1344 +#: app/core/gimplayer.c:1325 msgid "Delete Layer Mask" msgstr "Remover Máscara de Camada" -#: app/core/gimplayer.c:1445 +#: app/core/gimplayer.c:1426 msgid "Add Alpha Channel" msgstr "Adicionar Canal Alfa" -#: app/core/gimplayer.c:1467 +#: app/core/gimplayer.c:1448 msgid "Layer to Image Size" msgstr "Camada para Tamanho da Imagem" @@ -6850,28 +6869,28 @@ msgstr "Tamanho de Impressão" #. the image size labels -#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:241 +#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:222 #: app/widgets/gimptemplateeditor.c:236 msgid "_Width:" msgstr "_Largura:" -#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:248 +#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:225 #: app/widgets/gimptemplateeditor.c:243 msgid "H_eight:" msgstr "_Altura:" #. the resolution labels -#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:338 +#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:273 #: app/widgets/gimptemplateeditor.c:363 msgid "_X resolution:" msgstr "Resolução _X:" -#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:345 +#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:276 #: app/widgets/gimptemplateeditor.c:370 msgid "_Y resolution:" msgstr "Resolução _Y:" -#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:357 +#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:269 #: app/widgets/gimptemplateeditor.c:383 #, c-format msgid "pixels/%a" @@ -7511,11 +7530,11 @@ msgid "%d minutes" msgstr "%d minutos" -#: app/display/gimpdisplayshell-dnd.c:96 +#: app/display/gimpdisplayshell-dnd.c:98 msgid "Drop New Layer" msgstr "Soltar Nova Camada" -#: app/display/gimpdisplayshell-dnd.c:140 +#: app/display/gimpdisplayshell-dnd.c:142 msgid "Drop New Path" msgstr "Soltar Novo Vetor" @@ -8977,12 +8996,12 @@ msgstr "_Pincel" #: app/tools/gimppaintoptions-gui.c:103 app/widgets/gimpbrushselect.c:201 -#: app/widgets/gimplayertreeview.c:330 +#: app/widgets/gimplayertreeview.c:332 msgid "Opacity:" msgstr "Opacidade:" #: app/tools/gimppaintoptions-gui.c:108 app/tools/gimpselectionoptions.c:374 -#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:323 +#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:325 msgid "Mode:" msgstr "Modo:" @@ -10385,24 +10404,24 @@ msgid "Set Item Exclusive Linked" msgstr "Setar Ítem como Ligado Exclusivamente" -#: app/widgets/gimplayertreeview.c:250 +#: app/widgets/gimplayertreeview.c:252 msgid "Reorder Layer" msgstr "Reposicionar Camada" -#: app/widgets/gimplayertreeview.c:311 +#: app/widgets/gimplayertreeview.c:313 msgid "Keep transparency" msgstr "Manter transparência" -#: app/widgets/gimplayertreeview.c:846 +#: app/widgets/gimplayertreeview.c:848 msgid "Empty Layer" msgstr "Camada Vazia" -#: app/widgets/gimpmessagebox.c:458 +#: app/widgets/gimpmessagebox.c:460 #, c-format msgid "Message repeated %d times." msgstr "Mensagem repetida %d vezes." -#: app/widgets/gimpmessagebox.c:460 +#: app/widgets/gimpmessagebox.c:462 msgid "Message repeated once." msgstr "Mensagem repetida uma vez." @@ -10434,17 +10453,12 @@ msgid "Invalid UTF-8" msgstr "UTF-8 inválido" -# c-format -#: app/widgets/gimpsizebox.c:290 -msgid "Keep aspect ratio" -msgstr "Manter proporção" - -#: app/widgets/gimpsizebox.c:574 +#: app/widgets/gimpsizebox.c:451 #, c-format msgid "%d x %d dpi" msgstr "%d x %d ppp" -#: app/widgets/gimpsizebox.c:578 +#: app/widgets/gimpsizebox.c:455 #, c-format msgid "%d dpi" msgstr "%d ppp" @@ -10888,6 +10902,10 @@ msgid "Image Editor" msgstr "Editor de Imagens" +# c-format +#~ msgid "Keep aspect ratio" +#~ msgstr "Manter proporção" + #~ msgid "R_aise Tool" #~ msgstr "S_ubir Ferramenta" diff -uraN gimp-2.2.0/po/pt.gmo gimp-2.2.1/po/pt.gmo --- gimp-2.2.0/po/pt.gmo 2004-12-19 03:11:56.000000000 +0100 +++ gimp-2.2.1/po/pt.gmo 2004-12-28 16:58:44.000000000 +0100 @@ -196,7 +196,7 @@ did not save indexed colormaps correctly. Substituting grayscale map.YellowYellow:You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom factor: %d:1Zoom inZoom in & outZoom outZoom:[ Base Image ]_Antialiasing_Auto_B_Blending Function for Segment_Blending Function for Selection_Brightness:_Brush_C_Delete Segment_Delete Selection_Flip Segment_Flip Selection_G_Gradient_Horizontal:_Hue:_Icon:_Import_Lightness:_M_Manually_Name:_Pattern_Preview_R_Redo_Redo %s_Replicate Segment..._Replicate Selection..._Saturation:_Selection_Undo_Undo %s_Vertical:_X:_Y_Y:_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for token %sinvalid value '%s' for token %smillimetermillimetersn/apercentpicapicaspixelpixelspixels/%apixels/%spointpointstips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: 2.6 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-19 03:11+0100 +POT-Creation-Date: 2004-12-28 16:58+0100 PO-Revision-Date: 2004-04-06 00:02+0200 Last-Translator: Duarte Loreto Language-Team: Portuguese diff -uraN gimp-2.2.0/po/pt.po gimp-2.2.1/po/pt.po --- gimp-2.2.0/po/pt.po 2004-12-19 03:11:40.000000000 +0100 +++ gimp-2.2.1/po/pt.po 2004-12-28 16:58:36.000000000 +0100 @@ -14,7 +14,7 @@ msgstr "" "Project-Id-Version: 2.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-19 03:11+0100\n" +"POT-Creation-Date: 2004-12-28 16:58+0100\n" "PO-Revision-Date: 2004-04-06 00:02+0200\n" "Last-Translator: Duarte Loreto \n" "Language-Team: Portuguese \n" @@ -1172,11 +1172,11 @@ msgid "Remove dangling entries" msgstr "/Remover Entradas Estra_nhas" -#: app/actions/documents-commands.c:252 app/actions/file-commands.c:163 +#: app/actions/documents-commands.c:251 app/actions/file-commands.c:163 #: app/dialogs/file-open-dialog.c:198 app/dialogs/file-open-dialog.c:249 #: app/dialogs/file-open-location-dialog.c:193 -#: app/display/gimpdisplayshell-dnd.c:332 app/widgets/gimplayertreeview.c:802 -#: app/widgets/gimptoolbox-dnd.c:123 +#: app/display/gimpdisplayshell-dnd.c:334 app/widgets/gimplayertreeview.c:804 +#: app/widgets/gimptoolbox-dnd.c:125 #, c-format msgid "" "Opening '%s' failed:\n" @@ -1760,115 +1760,115 @@ msgid "Zoom all" msgstr "Zoom Geral" -#: app/actions/gradient-editor-actions.c:582 +#: app/actions/gradient-editor-actions.c:589 msgid "_Blending Function for Segment" msgstr "_Função de Mistura para Segmento" -#: app/actions/gradient-editor-actions.c:584 +#: app/actions/gradient-editor-actions.c:591 msgid "Coloring _Type for Segment" msgstr "_Tipo Coloração para Segmento" -#: app/actions/gradient-editor-actions.c:587 +#: app/actions/gradient-editor-actions.c:594 msgid "_Flip Segment" msgstr "_Inverter Segmento" -#: app/actions/gradient-editor-actions.c:589 +#: app/actions/gradient-editor-actions.c:596 msgid "_Replicate Segment..." msgstr "_Replicar Segmento..." -#: app/actions/gradient-editor-actions.c:591 +#: app/actions/gradient-editor-actions.c:598 msgid "Split Segment at _Midpoint" msgstr "Dividir Segmento no Ponto _Médio" -#: app/actions/gradient-editor-actions.c:593 +#: app/actions/gradient-editor-actions.c:600 msgid "Split Segment _Uniformly..." msgstr "Dividir Segmento _Uniformemente..." -#: app/actions/gradient-editor-actions.c:595 +#: app/actions/gradient-editor-actions.c:602 msgid "_Delete Segment" msgstr "_Remover Segmento" -#: app/actions/gradient-editor-actions.c:597 +#: app/actions/gradient-editor-actions.c:604 msgid "Re-_center Segment's Midpoint" msgstr "_Centrar Novamente Ponto Médio do Segmento" -#: app/actions/gradient-editor-actions.c:599 +#: app/actions/gradient-editor-actions.c:606 msgid "Re-distribute _Handles in Segment" msgstr "Redistribuir Pontos de Man_useio no Segmento" -#: app/actions/gradient-editor-actions.c:604 +#: app/actions/gradient-editor-actions.c:611 msgid "_Blending Function for Selection" msgstr "Função de _Mistura para a Selecção" -#: app/actions/gradient-editor-actions.c:606 +#: app/actions/gradient-editor-actions.c:613 msgid "Coloring _Type for Selection" msgstr "_Tipo Coloração para a Selecção" -#: app/actions/gradient-editor-actions.c:609 +#: app/actions/gradient-editor-actions.c:616 msgid "_Flip Selection" msgstr "_Inverter Selecção" -#: app/actions/gradient-editor-actions.c:611 +#: app/actions/gradient-editor-actions.c:618 msgid "_Replicate Selection..." msgstr "_Replicar Selecção..." -#: app/actions/gradient-editor-actions.c:613 +#: app/actions/gradient-editor-actions.c:620 msgid "Split Segments at _Midpoints" msgstr "Dividir Segmentos nos Pontos _Médios" -#: app/actions/gradient-editor-actions.c:615 +#: app/actions/gradient-editor-actions.c:622 msgid "Split Segments _Uniformly..." msgstr "Dividir Segmentos _Uniformemente..." -#: app/actions/gradient-editor-actions.c:617 +#: app/actions/gradient-editor-actions.c:624 msgid "_Delete Selection" msgstr "_Remover Selecção" -#: app/actions/gradient-editor-actions.c:619 +#: app/actions/gradient-editor-actions.c:626 msgid "Re-_center Midpoints in Selection" msgstr "_Centralizar Novamente Pontos Médios da Selecção" -#: app/actions/gradient-editor-actions.c:621 +#: app/actions/gradient-editor-actions.c:628 msgid "Re-distribute _Handles in Selection" msgstr "Redistribuir Pontos de Man_useio na Selecção" -#: app/actions/gradient-editor-commands.c:84 +#: app/actions/gradient-editor-commands.c:85 msgid "Left Endpoint Color" msgstr "Cor Ponto Final Esquerdo" -#: app/actions/gradient-editor-commands.c:86 +#: app/actions/gradient-editor-commands.c:87 msgid "Gradient Segment's Left Endpoint Color" msgstr "Cor Ponto Final Esquerdo do Segmento Gradiente" -#: app/actions/gradient-editor-commands.c:186 +#: app/actions/gradient-editor-commands.c:189 msgid "Right Endpoint Color" msgstr "Cor Ponto Final Direito" -#: app/actions/gradient-editor-commands.c:188 +#: app/actions/gradient-editor-commands.c:191 msgid "Gradient Segment's Right Endpoint Color" msgstr "Cor Ponto Final Direito do Segmento Gradiente" -#: app/actions/gradient-editor-commands.c:353 +#: app/actions/gradient-editor-commands.c:358 msgid "Replicate Segment" msgstr "Replicar Segmento" -#: app/actions/gradient-editor-commands.c:354 +#: app/actions/gradient-editor-commands.c:359 msgid "Replicate Gradient Segment" msgstr "Replicar Segmento Gradiente" -#: app/actions/gradient-editor-commands.c:358 +#: app/actions/gradient-editor-commands.c:363 msgid "Replicate Selection" msgstr "Replicar Selecção" -#: app/actions/gradient-editor-commands.c:359 +#: app/actions/gradient-editor-commands.c:364 msgid "Replicate Gradient Selection" msgstr "Replicar Selecção Gradiente" -#: app/actions/gradient-editor-commands.c:371 +#: app/actions/gradient-editor-commands.c:376 msgid "Replicate" msgstr "Replicar" -#: app/actions/gradient-editor-commands.c:386 +#: app/actions/gradient-editor-commands.c:391 msgid "" "Select the number of times\n" "to replicate the selected segment." @@ -1876,7 +1876,7 @@ "Seleccione o número de vezes\n" "que deseja replicar o segmento seleccionado." -#: app/actions/gradient-editor-commands.c:389 +#: app/actions/gradient-editor-commands.c:394 msgid "" "Select the number of times\n" "to replicate the selection." @@ -1884,27 +1884,27 @@ "Seleccione o número de vezes\n" "a replicar a selecção." -#: app/actions/gradient-editor-commands.c:444 +#: app/actions/gradient-editor-commands.c:452 msgid "Split Segment Uniformly" msgstr "Dividir Segmento Uniformemente" -#: app/actions/gradient-editor-commands.c:445 +#: app/actions/gradient-editor-commands.c:453 msgid "Split Gradient Segment Uniformly" msgstr "Dividir Segmento Gradiente Uniformemente" -#: app/actions/gradient-editor-commands.c:449 +#: app/actions/gradient-editor-commands.c:457 msgid "Split Segments Uniformly" msgstr "Dividir Segmentos Uniformemente" -#: app/actions/gradient-editor-commands.c:450 +#: app/actions/gradient-editor-commands.c:458 msgid "Split Gradient Segments Uniformly" msgstr "Dividir Segmentos Gradiente Uniformemente" -#: app/actions/gradient-editor-commands.c:462 +#: app/actions/gradient-editor-commands.c:470 msgid "Split" msgstr "Dividir" -#: app/actions/gradient-editor-commands.c:478 +#: app/actions/gradient-editor-commands.c:486 msgid "" "Select the number of uniform parts\n" "in which to split the selected segment." @@ -1912,7 +1912,7 @@ "Seleccione o número de partes uniformes\n" "nas quais dividir o segmento seleccionado." -#: app/actions/gradient-editor-commands.c:481 +#: app/actions/gradient-editor-commands.c:489 msgid "" "Select the number of uniform parts\n" "in which to split the segments in the selection." @@ -2433,7 +2433,7 @@ #: app/actions/layers-commands.c:232 app/actions/layers-commands.c:234 #: app/actions/layers-commands.c:291 app/actions/layers-commands.c:295 -#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:840 +#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:842 msgid "New Layer" msgstr "Nova Camada" @@ -2445,7 +2445,7 @@ msgid "Set Layer Boundary Size" msgstr "Ajustar Tamanho Limite Camada" -#: app/actions/layers-commands.c:512 app/core/gimplayer.c:255 +#: app/actions/layers-commands.c:512 app/core/gimplayer.c:253 msgid "Scale Layer" msgstr "Camada de Escala" @@ -2457,7 +2457,7 @@ msgid "Layer Mask to Selection" msgstr "Máscara de Camada para Selecção" -#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1085 +#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1066 #: app/dialogs/layer-add-mask-dialog.c:62 msgid "Add Layer Mask" msgstr "Adicionar Máscara de Camada" @@ -3094,7 +3094,7 @@ msgstr "Abrir Ficheiro Texto (UTF-8)" #: app/actions/text-editor-commands.c:132 app/config/gimpconfig-utils.c:552 -#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:393 +#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:396 #: app/core/gimpbrushgenerated.c:601 app/core/gimpbrushpipe.c:338 #: app/core/gimpgradient-load.c:63 app/core/gimppalette.c:360 #: app/core/gimppattern.c:328 app/tools/gimpimagemaptool.c:608 @@ -5122,7 +5122,7 @@ msgid "FG to Transparent" msgstr "Frente para Transparente" -#: app/core/gimp-gui.c:148 +#: app/core/gimp-gui.c:153 msgid "GIMP" msgstr "GIMP" @@ -5154,44 +5154,65 @@ msgid "Modules" msgstr "Módulos" -#: app/core/gimpbrush.c:531 +#: app/core/gimpbrush.c:534 #, c-format msgid "Could not read %d bytes from '%s': %s" msgstr "Incapaz de ler %d bytes de '%s': %s" -#: app/core/gimpbrush.c:566 +#: app/core/gimpbrush.c:554 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Width = 0." +msgstr "" +"Erro fatal de parseamento no ficheiro de pincel '%s': Profundidade %d " +"desconhecida." + +#: app/core/gimpbrush.c:563 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Height = 0." +msgstr "" +"Erro fatal de parseamento no ficheiro de pincel '%s': Ficheiro está " +"corrompido." + +#: app/core/gimpbrush.c:572 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Bytes = 0." +msgstr "" +"Erro fatal de parseamento no ficheiro de pincel '%s': Ficheiro está " +"corrompido." + +#: app/core/gimpbrush.c:596 #, c-format msgid "Fatal parse error in brush file '%s': Unknown depth %d." msgstr "" "Erro fatal de parseamento no ficheiro de pincel '%s': Profundidade %d " "desconhecida." -#: app/core/gimpbrush.c:579 +#: app/core/gimpbrush.c:609 #, c-format msgid "Fatal parse error in brush file '%s': Unknown version %d." msgstr "" "Erro fatal de parseamento no ficheiro de pincel '%s': Versão %d desconhecida." -#: app/core/gimpbrush.c:595 app/core/gimpbrush.c:715 +#: app/core/gimpbrush.c:625 app/core/gimpbrush.c:745 #, c-format msgid "Fatal parse error in brush file '%s': File appears truncated." msgstr "" "Erro fatal de parseamento no ficheiro de pincel '%s': Ficheiro parece " "truncado." -#: app/core/gimpbrush.c:603 app/core/gimpbrushgenerated.c:648 +#: app/core/gimpbrush.c:633 app/core/gimpbrushgenerated.c:648 #: app/core/gimpbrushpipe.c:354 #, c-format msgid "Invalid UTF-8 string in brush file '%s'." msgstr "Expressão UTF-8 inválida no ficheiro de pincel '%s'." -#: app/core/gimpbrush.c:610 app/core/gimpcontext.c:1299 -#: app/core/gimpitem.c:479 app/core/gimppattern.c:400 +#: app/core/gimpbrush.c:640 app/core/gimpcontext.c:1299 +#: app/core/gimpitem.c:480 app/core/gimppattern.c:400 #: app/dialogs/template-options-dialog.c:80 app/tools/gimpvectortool.c:339 msgid "Unnamed" msgstr "Sem nome" -#: app/core/gimpbrush.c:704 +#: app/core/gimpbrush.c:734 #, c-format msgid "" "Fatal parse error in brush file '%s': Unsupported brush depth %d\n" @@ -5364,11 +5385,11 @@ "%s" #: app/core/gimpdatafactory.c:411 app/core/gimpdatafactory.c:414 -#: app/core/gimpitem.c:274 app/core/gimpitem.c:277 +#: app/core/gimpitem.c:275 app/core/gimpitem.c:278 msgid "copy" msgstr "copiar" -#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:286 +#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:287 #, c-format msgid "%s copy" msgstr "%s cópia" @@ -5430,7 +5451,7 @@ msgid "Rotate" msgstr "Rodar" -#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:259 +#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:257 msgid "Transform Layer" msgstr "Camada Transformação" @@ -5811,7 +5832,7 @@ #. pixel size #: app/core/gimpimagefile.c:624 app/dialogs/info-window.c:552 -#: app/widgets/gimpsizebox.c:552 app/widgets/gimptemplateeditor.c:637 +#: app/widgets/gimpsizebox.c:429 app/widgets/gimptemplateeditor.c:637 #: app/widgets/gimptemplateeditor.c:673 #, c-format msgid "%d x %d pixels" @@ -5831,15 +5852,15 @@ msgid "Could not open thumbnail '%s': %s" msgstr "Incapaz de abrir ficheiro de imagem de referência '%s': %s" -#: app/core/gimpitem.c:1096 +#: app/core/gimpitem.c:1103 msgid "Attach Parasite" msgstr "Anexar Informações Anexas" -#: app/core/gimpitem.c:1106 +#: app/core/gimpitem.c:1113 msgid "Attach Parasite to Item" msgstr "Anexar Informações Anexas ao Item" -#: app/core/gimpitem.c:1145 app/core/gimpitem.c:1152 +#: app/core/gimpitem.c:1152 app/core/gimpitem.c:1159 msgid "Remove Parasite from Item" msgstr "Remover Informações Anexas do Item" @@ -5868,80 +5889,80 @@ msgid "Floating Selection to Layer" msgstr "Selecção Flutuante para Camada" -#: app/core/gimplayer.c:252 app/pdb/internal_procs.c:152 +#: app/core/gimplayer.c:250 app/pdb/internal_procs.c:152 msgid "Layer" msgstr "Camada" -#: app/core/gimplayer.c:253 +#: app/core/gimplayer.c:251 msgid "Rename Layer" msgstr "Renomear Camada" -#: app/core/gimplayer.c:254 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 +#: app/core/gimplayer.c:252 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 msgid "Move Layer" msgstr "Mover Camada" -#: app/core/gimplayer.c:256 +#: app/core/gimplayer.c:254 msgid "Resize Layer" msgstr "Redimensionar Camada" -#: app/core/gimplayer.c:257 +#: app/core/gimplayer.c:255 msgid "Flip Layer" msgstr "Virar Camada" -#: app/core/gimplayer.c:258 +#: app/core/gimplayer.c:256 msgid "Rotate Layer" msgstr "Rodar Camada" -#: app/core/gimplayer.c:341 app/core/gimplayer.c:1129 +#: app/core/gimplayer.c:339 app/core/gimplayer.c:1110 #: app/core/gimplayermask.c:236 #, c-format msgid "%s mask" msgstr "%s máscara" -#: app/core/gimplayer.c:387 +#: app/core/gimplayer.c:385 #, fuzzy, c-format msgid "" "Floating Selection\n" "(%s)" msgstr "Selecção Flutuante" -#: app/core/gimplayer.c:1055 +#: app/core/gimplayer.c:1036 msgid "Cannot add layer mask to layer which is not part of an image." msgstr "" "Impossível adicionar máscara de camada a camada que não é parte de uma " "imagem." -#: app/core/gimplayer.c:1062 +#: app/core/gimplayer.c:1043 msgid "Unable to add a layer mask since the layer already has one." msgstr "Impossível adicionar máscara de camada pois a camada já possui uma." -#: app/core/gimplayer.c:1069 +#: app/core/gimplayer.c:1050 msgid "Cannot add layer mask to a layer with no alpha channel." msgstr "Impossível adicionar máscara de camada a uma camada sem canal alfa." -#: app/core/gimplayer.c:1079 +#: app/core/gimplayer.c:1060 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "" "Impossível adicionar máscara de camada de dimensões diferentes da camada " "especificada." -#: app/core/gimplayer.c:1183 +#: app/core/gimplayer.c:1164 msgid "Transfer Alpha to Mask" msgstr "Transferir Alfa para Máscara" -#: app/core/gimplayer.c:1343 +#: app/core/gimplayer.c:1324 msgid "Apply Layer Mask" msgstr "Aplicar Máscara de Camada" -#: app/core/gimplayer.c:1344 +#: app/core/gimplayer.c:1325 msgid "Delete Layer Mask" msgstr "Remover Máscara de Camada" -#: app/core/gimplayer.c:1445 +#: app/core/gimplayer.c:1426 msgid "Add Alpha Channel" msgstr "Adicionar Canal Alfa" -#: app/core/gimplayer.c:1467 +#: app/core/gimplayer.c:1448 msgid "Layer to Image Size" msgstr "Camada para Tamanho de Imagem" @@ -7496,32 +7517,32 @@ msgstr "Tamanho Impressão:" #. the image size labels -#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:241 +#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:222 #: app/widgets/gimptemplateeditor.c:236 #, fuzzy msgid "_Width:" msgstr "Largura:" -#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:248 +#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:225 #: app/widgets/gimptemplateeditor.c:243 #, fuzzy msgid "H_eight:" msgstr "Altura:" #. the resolution labels -#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:338 +#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:273 #: app/widgets/gimptemplateeditor.c:363 #, fuzzy msgid "_X resolution:" msgstr "Resolução:" -#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:345 +#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:276 #: app/widgets/gimptemplateeditor.c:370 #, fuzzy msgid "_Y resolution:" msgstr "Resolução:" -#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:357 +#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:269 #: app/widgets/gimptemplateeditor.c:383 #, c-format msgid "pixels/%a" @@ -8176,11 +8197,11 @@ msgid "%d minutes" msgstr "" -#: app/display/gimpdisplayshell-dnd.c:96 +#: app/display/gimpdisplayshell-dnd.c:98 msgid "Drop New Layer" msgstr "Largar Nova Camada" -#: app/display/gimpdisplayshell-dnd.c:140 +#: app/display/gimpdisplayshell-dnd.c:142 msgid "Drop New Path" msgstr "Descartar Novo Caminho" @@ -9733,12 +9754,12 @@ msgstr "Pincel" #: app/tools/gimppaintoptions-gui.c:103 app/widgets/gimpbrushselect.c:201 -#: app/widgets/gimplayertreeview.c:330 +#: app/widgets/gimplayertreeview.c:332 msgid "Opacity:" msgstr "Opacidade:" #: app/tools/gimppaintoptions-gui.c:108 app/tools/gimpselectionoptions.c:374 -#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:323 +#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:325 msgid "Mode:" msgstr "Modo:" @@ -11208,25 +11229,25 @@ msgid "Set Item Exclusive Linked" msgstr "Definir Item Exclusivamente Ligado" -#: app/widgets/gimplayertreeview.c:250 +#: app/widgets/gimplayertreeview.c:252 msgid "Reorder Layer" msgstr "Reordenar Camada" -#: app/widgets/gimplayertreeview.c:311 +#: app/widgets/gimplayertreeview.c:313 #, fuzzy msgid "Keep transparency" msgstr "Manter Transparência" -#: app/widgets/gimplayertreeview.c:846 +#: app/widgets/gimplayertreeview.c:848 msgid "Empty Layer" msgstr "Camada Vazia" -#: app/widgets/gimpmessagebox.c:458 +#: app/widgets/gimpmessagebox.c:460 #, c-format msgid "Message repeated %d times." msgstr "Mensagem repetida %d vezes." -#: app/widgets/gimpmessagebox.c:460 +#: app/widgets/gimpmessagebox.c:462 msgid "Message repeated once." msgstr "Mensagem repetida uma vez." @@ -11258,17 +11279,12 @@ msgid "Invalid UTF-8" msgstr "UTF-8 inválido" -#: app/widgets/gimpsizebox.c:290 -#, fuzzy -msgid "Keep aspect ratio" -msgstr "Proporção de Aspecto Fixo" - -#: app/widgets/gimpsizebox.c:574 +#: app/widgets/gimpsizebox.c:451 #, fuzzy, c-format msgid "%d x %d dpi" msgstr "%d x %d pixeis" -#: app/widgets/gimpsizebox.c:578 +#: app/widgets/gimpsizebox.c:455 #, fuzzy, c-format msgid "%d dpi" msgstr "dpi" @@ -11748,6 +11764,10 @@ msgid "Image Editor" msgstr "Lista Imagens" +#, fuzzy +#~ msgid "Keep aspect ratio" +#~ msgstr "Proporção de Aspecto Fixo" + #~ msgid "Y:" #~ msgstr "Y:" diff -uraN gimp-2.2.0/po/ro.gmo gimp-2.2.1/po/ro.gmo --- gimp-2.2.0/po/ro.gmo 2004-12-19 03:11:56.000000000 +0100 +++ gimp-2.2.1/po/ro.gmo 2004-12-28 16:58:44.000000000 +0100 @@ -58,7 +58,7 @@ (Varies)<>AddAdd the current color to the color historyAdditionAdjustmentAlignedAlignmentAlphaAlpha:Angle:AntialiasingAppearanceAuthor:AutoBackgroundBackground: %d, %d, %dBehindBlend: Blend: Invalid for indexed images.Blending...BlueBlue:BlurBorder SelectionBrightness-ContrastBrush EditorBrush UIBrushesCalibrate Monitor ResolutionCan't undo %sCancelCenter X:ChannelChannelsClearClick "Continue" to accept the settings above.Click "Continue" to enter the GIMP user installation.Clipped to bottom layerClipped to imageColorColor BalanceColor PickerConfirm Image SizeContinueConvertCopyright:Count:CropCrop & ResizeCrop & Resize InformationCrop: Crosshair onlyCurvesCustomCyanDate:Device StatusDevicesDifferenceDirect ColorDisplayDissolveDistance:Distance: %0.6fDivideEditEdit Channel AttributesEdit Channel ColorEdit Layer AttributesEdit Palette ColorEdit Path AttributesEdit proceduresEnter a name for this bufferEnvironmentExpanded as necessaryExposure:ExtensionsFG to BG (HSV)FG to BG (RGB)FG to TransparentFeather SelectionFile OperationsFill Opacity:Finding Contiguous RegionsFloating selectionsForegroundForeground: %d, %d, %dGIMP ExtensionGIMP MessageGIMP Performance TuningGIMP Plug-InGIMP StartupGIMP Tip of the DayGIMP User InstallationGIMP versionGeneralGet Monitor ResolutionGimprc proceduresGradient EditorGradient UIGradient:GradientsGrayGrayscaleGreenGreen:Grow SelectionHandle position: %0.6fHardnessHardness:HeightHeight:Help BrowserHelp SystemHelp proceduresHistogramHorizontalHueHue-SaturationHugeImageImage WindowsImage maskImport PaletteIncrementalIndex:IndexedIndexed ColorIndexed Color ConversionInitialize Layer Mask to:Instant updateInterfaceInternal GIMP procedureInternal ProceduresInvertLargeLayerLayer Fill TypeLayer SelectLevelsLinearLoadLoad CurvesLoad LevelsLocation:Looking for data filesLower ChannelMagentaMask Opacity:Matrix:Max Depth:Mean:Median:MediumMerge PaletteMiscellaneousModeMode:ModulesMove ToolMove layers & selectionsMove: MultiplyNew ChannelNew Channel ColorNew Channel OptionsNew ImageNew LayerNew PathNo brushes available for use with this tool.No patterns available for this operation.NoneNormalOffsetOffset:OpacityOpacity:OpenOptions: Origin X:Original Width:OverlayPalettePalettesParasite proceduresParasitesPastePasted LayerPath to SelectionPathsPattern UIPatternsPerspective Transform InformationPerspective...Pick colors from the imagePixelsPixels:Please wait...Plug-InsPlug-inPreferencesPressure:PreviewProcedural DatabaseProcedural databaseProgressPseudo ColorPurpose:RGBRGB ColorRGB-emptyRGBA (%0.3f, %0.3f, %0.3f, %0.3f)RadialRadius:RedRed:RedoRegisteredRepeat:ReplicateResizeResolution:Resource ConsumptionResource configurationRevertRotateRotating...Rotation InformationSaturationSaveSave CurvesSave ImageSave LevelsSave a Copy of the ImageScaleScale ImageScale LayerScalingScaling...ScreenSelectionSelection MaskSelection: Selection: ADDSelection: INTERSECTSelection: REPLACESelection: SUBTRACTSensitivitySet Layer Boundary SizeShadowsShapeShearShearing...Show tip next time GIMP startsShow zoom percentageShow zoom ratioShrink SelectionSizeSize:SmallSmoothSourceSpacing:Speed:SplitSquareStandardState:Static ColorStatic GrayStd Dev:SubtractTemporary ProcedureThe GIMPThere are not enough visible layers for a merge down.This tool has no options.ThresholdThreshold:TinyTool OptionsTransformTransparencyTrue ColorTypeUndefinedUndoUnitsUnloadUnnamedUntitledUser Installation LogValueVersion %s brought to you byVersion:VerticalWhiteWidthWidth:Window PositionsXCF error: unsupported XCF file version %d encounteredYellowZoom inZoom outcolorscopydpigrayscalegrayscale-emptyinchinchesindexedindexed-emptymillimetermillimeterspercentpicapicaspixelpixelspixels/%apointpointsProject-Id-Version: gimp Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-19 03:11+0100 +POT-Creation-Date: 2004-12-28 16:58+0100 PO-Revision-Date: 2000-11-24 15:46+0100 Last-Translator: Robert Claudiu Gheorghe Language-Team: Română diff -uraN gimp-2.2.0/po/ro.po gimp-2.2.1/po/ro.po --- gimp-2.2.0/po/ro.po 2004-12-19 03:11:42.000000000 +0100 +++ gimp-2.2.1/po/ro.po 2004-12-28 16:58:36.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: gimp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-19 03:11+0100\n" +"POT-Creation-Date: 2004-12-28 16:58+0100\n" "PO-Revision-Date: 2000-11-24 15:46+0100\n" "Last-Translator: Robert Claudiu Gheorghe \n" "Language-Team: Română \n" @@ -1179,11 +1179,11 @@ msgid "Remove dangling entries" msgstr "Selecţie Plutitoare" -#: app/actions/documents-commands.c:252 app/actions/file-commands.c:163 +#: app/actions/documents-commands.c:251 app/actions/file-commands.c:163 #: app/dialogs/file-open-dialog.c:198 app/dialogs/file-open-dialog.c:249 #: app/dialogs/file-open-location-dialog.c:193 -#: app/display/gimpdisplayshell-dnd.c:332 app/widgets/gimplayertreeview.c:802 -#: app/widgets/gimptoolbox-dnd.c:123 +#: app/display/gimpdisplayshell-dnd.c:334 app/widgets/gimplayertreeview.c:804 +#: app/widgets/gimptoolbox-dnd.c:125 #, fuzzy, c-format msgid "" "Opening '%s' failed:\n" @@ -1791,186 +1791,186 @@ msgid "Zoom all" msgstr "Scalează tot" -#: app/actions/gradient-editor-actions.c:582 +#: app/actions/gradient-editor-actions.c:589 #, fuzzy msgid "_Blending Function for Segment" msgstr "Tip de colorare pentru segment" -#: app/actions/gradient-editor-actions.c:584 +#: app/actions/gradient-editor-actions.c:591 #, fuzzy msgid "Coloring _Type for Segment" msgstr "Tip de colorare pentru segment" -#: app/actions/gradient-editor-actions.c:587 +#: app/actions/gradient-editor-actions.c:594 #, fuzzy msgid "_Flip Segment" msgstr "Oglindire segment" -#: app/actions/gradient-editor-actions.c:589 +#: app/actions/gradient-editor-actions.c:596 #, fuzzy msgid "_Replicate Segment..." msgstr "Replicare segment" -#: app/actions/gradient-editor-actions.c:591 +#: app/actions/gradient-editor-actions.c:598 #, fuzzy msgid "Split Segment at _Midpoint" msgstr "Împarţire segment la punctul median" -#: app/actions/gradient-editor-actions.c:593 +#: app/actions/gradient-editor-actions.c:600 #, fuzzy msgid "Split Segment _Uniformly..." msgstr "Împarţire uniformă segment" -#: app/actions/gradient-editor-actions.c:595 +#: app/actions/gradient-editor-actions.c:602 #, fuzzy msgid "_Delete Segment" msgstr "Elimină segment" -#: app/actions/gradient-editor-actions.c:597 +#: app/actions/gradient-editor-actions.c:604 #, fuzzy msgid "Re-_center Segment's Midpoint" msgstr "Re-centrează mijloc segment" -#: app/actions/gradient-editor-actions.c:599 +#: app/actions/gradient-editor-actions.c:606 #, fuzzy msgid "Re-distribute _Handles in Segment" msgstr "Re-distribuire mânere în segment" -#: app/actions/gradient-editor-actions.c:604 +#: app/actions/gradient-editor-actions.c:611 #, fuzzy msgid "_Blending Function for Selection" msgstr "Tipul de colorare pentru selecţie" -#: app/actions/gradient-editor-actions.c:606 +#: app/actions/gradient-editor-actions.c:613 #, fuzzy msgid "Coloring _Type for Selection" msgstr "Tipul de colorare pentru selecţie" -#: app/actions/gradient-editor-actions.c:609 +#: app/actions/gradient-editor-actions.c:616 #, fuzzy msgid "_Flip Selection" msgstr "Oglindire selecţie" -#: app/actions/gradient-editor-actions.c:611 +#: app/actions/gradient-editor-actions.c:618 #, fuzzy msgid "_Replicate Selection..." msgstr "Replicare selecţie" -#: app/actions/gradient-editor-actions.c:613 +#: app/actions/gradient-editor-actions.c:620 #, fuzzy msgid "Split Segments at _Midpoints" msgstr "Împarte segmentele în punctele mediane" -#: app/actions/gradient-editor-actions.c:615 +#: app/actions/gradient-editor-actions.c:622 #, fuzzy msgid "Split Segments _Uniformly..." msgstr "Împarte segmentele în mod uniform" -#: app/actions/gradient-editor-actions.c:617 +#: app/actions/gradient-editor-actions.c:624 #, fuzzy msgid "_Delete Selection" msgstr "Elimină selecţia" -#: app/actions/gradient-editor-actions.c:619 +#: app/actions/gradient-editor-actions.c:626 #, fuzzy msgid "Re-_center Midpoints in Selection" msgstr "Re-centrează punctele mediane în selecţie" -#: app/actions/gradient-editor-actions.c:621 +#: app/actions/gradient-editor-actions.c:628 #, fuzzy msgid "Re-distribute _Handles in Selection" msgstr "Re-distribuire mânere în selecţie" -#: app/actions/gradient-editor-commands.c:84 +#: app/actions/gradient-editor-commands.c:85 #, fuzzy msgid "Left Endpoint Color" msgstr "Culoarea punctului din stânga" -#: app/actions/gradient-editor-commands.c:86 +#: app/actions/gradient-editor-commands.c:87 #, fuzzy msgid "Gradient Segment's Left Endpoint Color" msgstr "Culoarea punctului din stânga" -#: app/actions/gradient-editor-commands.c:186 +#: app/actions/gradient-editor-commands.c:189 #, fuzzy msgid "Right Endpoint Color" msgstr "Culoarea punctului din dreapta" -#: app/actions/gradient-editor-commands.c:188 +#: app/actions/gradient-editor-commands.c:191 #, fuzzy msgid "Gradient Segment's Right Endpoint Color" msgstr "Culoarea punctului din dreapta" -#: app/actions/gradient-editor-commands.c:353 +#: app/actions/gradient-editor-commands.c:358 #, fuzzy msgid "Replicate Segment" msgstr "Replicare segment" -#: app/actions/gradient-editor-commands.c:354 +#: app/actions/gradient-editor-commands.c:359 #, fuzzy msgid "Replicate Gradient Segment" msgstr "Replicare segment" -#: app/actions/gradient-editor-commands.c:358 +#: app/actions/gradient-editor-commands.c:363 #, fuzzy msgid "Replicate Selection" msgstr "Replicare selecţie" -#: app/actions/gradient-editor-commands.c:359 +#: app/actions/gradient-editor-commands.c:364 #, fuzzy msgid "Replicate Gradient Selection" msgstr "Replicare selecţie" -#: app/actions/gradient-editor-commands.c:371 +#: app/actions/gradient-editor-commands.c:376 msgid "Replicate" msgstr "Replicare" -#: app/actions/gradient-editor-commands.c:386 +#: app/actions/gradient-editor-commands.c:391 #, fuzzy msgid "" "Select the number of times\n" "to replicate the selected segment." msgstr "doriţi să replicaţi segmentul selectat" -#: app/actions/gradient-editor-commands.c:389 +#: app/actions/gradient-editor-commands.c:394 #, fuzzy msgid "" "Select the number of times\n" "to replicate the selection." msgstr "Selectaţi vă rog de câte ori" -#: app/actions/gradient-editor-commands.c:444 +#: app/actions/gradient-editor-commands.c:452 #, fuzzy msgid "Split Segment Uniformly" msgstr "Împarţire uniformă segment" -#: app/actions/gradient-editor-commands.c:445 +#: app/actions/gradient-editor-commands.c:453 #, fuzzy msgid "Split Gradient Segment Uniformly" msgstr "Împarţire uniformă segment" -#: app/actions/gradient-editor-commands.c:449 +#: app/actions/gradient-editor-commands.c:457 #, fuzzy msgid "Split Segments Uniformly" msgstr "Împarte segmentele în mod uniform" -#: app/actions/gradient-editor-commands.c:450 +#: app/actions/gradient-editor-commands.c:458 #, fuzzy msgid "Split Gradient Segments Uniformly" msgstr "Împarte segmentele în mod uniform" -#: app/actions/gradient-editor-commands.c:462 +#: app/actions/gradient-editor-commands.c:470 msgid "Split" msgstr "Impărţire" -#: app/actions/gradient-editor-commands.c:478 +#: app/actions/gradient-editor-commands.c:486 #, fuzzy msgid "" "Select the number of uniform parts\n" "in which to split the selected segment." msgstr "în care doriţi să impărţiţi segmentul selectat" -#: app/actions/gradient-editor-commands.c:481 +#: app/actions/gradient-editor-commands.c:489 #, fuzzy msgid "" "Select the number of uniform parts\n" @@ -2503,7 +2503,7 @@ #: app/actions/layers-commands.c:232 app/actions/layers-commands.c:234 #: app/actions/layers-commands.c:291 app/actions/layers-commands.c:295 -#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:840 +#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:842 msgid "New Layer" msgstr "Strat nou" @@ -2516,7 +2516,7 @@ msgid "Set Layer Boundary Size" msgstr "Stabileşte dimensiune exterioară strat" -#: app/actions/layers-commands.c:512 app/core/gimplayer.c:255 +#: app/actions/layers-commands.c:512 app/core/gimplayer.c:253 msgid "Scale Layer" msgstr "Scalează stratul" @@ -2530,7 +2530,7 @@ msgid "Layer Mask to Selection" msgstr "/Strat/Masca -> Selecţie" -#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1085 +#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1066 #: app/dialogs/layer-add-mask-dialog.c:62 #, fuzzy msgid "Add Layer Mask" @@ -3189,7 +3189,7 @@ msgstr "" #: app/actions/text-editor-commands.c:132 app/config/gimpconfig-utils.c:552 -#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:393 +#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:396 #: app/core/gimpbrushgenerated.c:601 app/core/gimpbrushpipe.c:338 #: app/core/gimpgradient-load.c:63 app/core/gimppalette.c:360 #: app/core/gimppattern.c:328 app/tools/gimpimagemaptool.c:608 @@ -5118,7 +5118,7 @@ msgid "FG to Transparent" msgstr "Prim plan -> Transparent" -#: app/core/gimp-gui.c:148 +#: app/core/gimp-gui.c:153 #, fuzzy msgid "GIMP" msgstr "GIMP" @@ -5153,39 +5153,54 @@ msgid "Modules" msgstr "Module" -#: app/core/gimpbrush.c:531 +#: app/core/gimpbrush.c:534 #, fuzzy, c-format msgid "Could not read %d bytes from '%s': %s" msgstr "Nu am putut deschide fişierul %s" -#: app/core/gimpbrush.c:566 +#: app/core/gimpbrush.c:554 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Width = 0." +msgstr "Fişierul de pensule al GIMP pare să fie trunchiat: \"%s\"." + +#: app/core/gimpbrush.c:563 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Height = 0." +msgstr "Fişierul de pensule al GIMP pare să fie trunchiat: \"%s\"." + +#: app/core/gimpbrush.c:572 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Bytes = 0." +msgstr "Fişierul de pensule al GIMP pare să fie trunchiat: \"%s\"." + +#: app/core/gimpbrush.c:596 #, fuzzy, c-format msgid "Fatal parse error in brush file '%s': Unknown depth %d." msgstr "Fişierul de pensule al GIMP pare să fie trunchiat: \"%s\"." -#: app/core/gimpbrush.c:579 +#: app/core/gimpbrush.c:609 #, fuzzy, c-format msgid "Fatal parse error in brush file '%s': Unknown version %d." msgstr "Fişierul de pensule al GIMP pare să fie trunchiat: \"%s\"." -#: app/core/gimpbrush.c:595 app/core/gimpbrush.c:715 +#: app/core/gimpbrush.c:625 app/core/gimpbrush.c:745 #, fuzzy, c-format msgid "Fatal parse error in brush file '%s': File appears truncated." msgstr "Fişierul de pensule al GIMP pare să fie trunchiat: \"%s\"." -#: app/core/gimpbrush.c:603 app/core/gimpbrushgenerated.c:648 +#: app/core/gimpbrush.c:633 app/core/gimpbrushgenerated.c:648 #: app/core/gimpbrushpipe.c:354 #, fuzzy, c-format msgid "Invalid UTF-8 string in brush file '%s'." msgstr "Eroare în fişierul de pensule al GIMP \"%s\"." -#: app/core/gimpbrush.c:610 app/core/gimpcontext.c:1299 -#: app/core/gimpitem.c:479 app/core/gimppattern.c:400 +#: app/core/gimpbrush.c:640 app/core/gimpcontext.c:1299 +#: app/core/gimpitem.c:480 app/core/gimppattern.c:400 #: app/dialogs/template-options-dialog.c:80 app/tools/gimpvectortool.c:339 msgid "Unnamed" msgstr "Fară nume" -#: app/core/gimpbrush.c:704 +#: app/core/gimpbrush.c:734 #, c-format msgid "" "Fatal parse error in brush file '%s': Unsupported brush depth %d\n" @@ -5368,11 +5383,11 @@ msgstr "Nu am reuşit să citesc traseul din %s" #: app/core/gimpdatafactory.c:411 app/core/gimpdatafactory.c:414 -#: app/core/gimpitem.c:274 app/core/gimpitem.c:277 +#: app/core/gimpitem.c:275 app/core/gimpitem.c:278 msgid "copy" msgstr "copiere" -#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:286 +#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:287 #, c-format msgid "%s copy" msgstr "%s copiere" @@ -5436,7 +5451,7 @@ msgid "Rotate" msgstr "Rotire" -#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:259 +#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:257 #, fuzzy msgid "Transform Layer" msgstr "Transformare" @@ -5867,7 +5882,7 @@ #. pixel size #: app/core/gimpimagefile.c:624 app/dialogs/info-window.c:552 -#: app/widgets/gimpsizebox.c:552 app/widgets/gimptemplateeditor.c:637 +#: app/widgets/gimpsizebox.c:429 app/widgets/gimptemplateeditor.c:637 #: app/widgets/gimptemplateeditor.c:673 #, c-format msgid "%d x %d pixels" @@ -5888,17 +5903,17 @@ msgid "Could not open thumbnail '%s': %s" msgstr "Nu am putut redeschide %s\n" -#: app/core/gimpitem.c:1096 +#: app/core/gimpitem.c:1103 #, fuzzy msgid "Attach Parasite" msgstr "ataşează parazit" -#: app/core/gimpitem.c:1106 +#: app/core/gimpitem.c:1113 #, fuzzy msgid "Attach Parasite to Item" msgstr "ataşează parazit" -#: app/core/gimpitem.c:1145 app/core/gimpitem.c:1152 +#: app/core/gimpitem.c:1152 app/core/gimpitem.c:1159 #, fuzzy msgid "Remove Parasite from Item" msgstr "elimină parazit" @@ -5935,94 +5950,94 @@ msgid "Floating Selection to Layer" msgstr "Selecţie Plutitoare" -#: app/core/gimplayer.c:252 app/pdb/internal_procs.c:152 +#: app/core/gimplayer.c:250 app/pdb/internal_procs.c:152 msgid "Layer" msgstr "Strat" -#: app/core/gimplayer.c:253 +#: app/core/gimplayer.c:251 #, fuzzy msgid "Rename Layer" msgstr "/Stivă/Ridică Stratul" -#: app/core/gimplayer.c:254 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 +#: app/core/gimplayer.c:252 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 #, fuzzy msgid "Move Layer" msgstr "Strat nou" -#: app/core/gimplayer.c:256 +#: app/core/gimplayer.c:254 #, fuzzy msgid "Resize Layer" msgstr "/Stivă/Ridică Stratul" -#: app/core/gimplayer.c:257 +#: app/core/gimplayer.c:255 #, fuzzy msgid "Flip Layer" msgstr "Strat" -#: app/core/gimplayer.c:258 +#: app/core/gimplayer.c:256 #, fuzzy msgid "Rotate Layer" msgstr "Strat Plutitor" -#: app/core/gimplayer.c:341 app/core/gimplayer.c:1129 +#: app/core/gimplayer.c:339 app/core/gimplayer.c:1110 #: app/core/gimplayermask.c:236 #, c-format msgid "%s mask" msgstr "masca %s" -#: app/core/gimplayer.c:387 +#: app/core/gimplayer.c:385 #, fuzzy, c-format msgid "" "Floating Selection\n" "(%s)" msgstr "Selecţie Plutitoare" -#: app/core/gimplayer.c:1055 +#: app/core/gimplayer.c:1036 #, fuzzy msgid "Cannot add layer mask to layer which is not part of an image." msgstr "" "Nu pot să adaug un strat de tip mască\n" "unui strat fără canal alfa(transparenţă)." -#: app/core/gimplayer.c:1062 +#: app/core/gimplayer.c:1043 #, fuzzy msgid "Unable to add a layer mask since the layer already has one." msgstr "" "Nu pot să adaug stratul mască\n" "deoarece stratul are deja unul." -#: app/core/gimplayer.c:1069 +#: app/core/gimplayer.c:1050 #, fuzzy msgid "Cannot add layer mask to a layer with no alpha channel." msgstr "" "Nu pot să adaug un strat de tip mască\n" "unui strat fără canal alfa(transparenţă)." -#: app/core/gimplayer.c:1079 +#: app/core/gimplayer.c:1060 #, fuzzy msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "Nu pot să adaug un strat de tip mască unui strat de alte dimensiuni" -#: app/core/gimplayer.c:1183 +#: app/core/gimplayer.c:1164 msgid "Transfer Alpha to Mask" msgstr "" -#: app/core/gimplayer.c:1343 +#: app/core/gimplayer.c:1324 #, fuzzy msgid "Apply Layer Mask" msgstr "/Aplică stratul mască" -#: app/core/gimplayer.c:1344 +#: app/core/gimplayer.c:1325 #, fuzzy msgid "Delete Layer Mask" msgstr "/Elimină stratul mască" -#: app/core/gimplayer.c:1445 +#: app/core/gimplayer.c:1426 #, fuzzy msgid "Add Alpha Channel" msgstr "/Adaugă canal de transparenţa" -#: app/core/gimplayer.c:1467 +#: app/core/gimplayer.c:1448 #, fuzzy msgid "Layer to Image Size" msgstr "/Strat -> Dimensiune imagine" @@ -7647,32 +7662,32 @@ msgstr "Dimensiune previzualizare:" #. the image size labels -#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:241 +#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:222 #: app/widgets/gimptemplateeditor.c:236 #, fuzzy msgid "_Width:" msgstr "Lăţime:" -#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:248 +#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:225 #: app/widgets/gimptemplateeditor.c:243 #, fuzzy msgid "H_eight:" msgstr "Înălţime:" #. the resolution labels -#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:338 +#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:273 #: app/widgets/gimptemplateeditor.c:363 #, fuzzy msgid "_X resolution:" msgstr "Rezoluţie:" -#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:345 +#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:276 #: app/widgets/gimptemplateeditor.c:370 #, fuzzy msgid "_Y resolution:" msgstr "Rezoluţie:" -#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:357 +#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:269 #: app/widgets/gimptemplateeditor.c:383 #, c-format msgid "pixels/%a" @@ -8396,12 +8411,12 @@ msgid "%d minutes" msgstr "%d Octeţi" -#: app/display/gimpdisplayshell-dnd.c:96 +#: app/display/gimpdisplayshell-dnd.c:98 #, fuzzy msgid "Drop New Layer" msgstr "Strat nou" -#: app/display/gimpdisplayshell-dnd.c:140 +#: app/display/gimpdisplayshell-dnd.c:142 #, fuzzy msgid "Drop New Path" msgstr "Traseu nou" @@ -10036,12 +10051,12 @@ msgstr "desen" #: app/tools/gimppaintoptions-gui.c:103 app/widgets/gimpbrushselect.c:201 -#: app/widgets/gimplayertreeview.c:330 +#: app/widgets/gimplayertreeview.c:332 msgid "Opacity:" msgstr "Opacitate:" #: app/tools/gimppaintoptions-gui.c:108 app/tools/gimpselectionoptions.c:374 -#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:323 +#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:325 msgid "Mode:" msgstr "Mod:" @@ -11574,27 +11589,27 @@ msgid "Set Item Exclusive Linked" msgstr "Opţiuni strat nou" -#: app/widgets/gimplayertreeview.c:250 +#: app/widgets/gimplayertreeview.c:252 #, fuzzy msgid "Reorder Layer" msgstr "/Stivă/Coboară Stratul" -#: app/widgets/gimplayertreeview.c:311 +#: app/widgets/gimplayertreeview.c:313 #, fuzzy msgid "Keep transparency" msgstr "Păstrează Transparenţa" -#: app/widgets/gimplayertreeview.c:846 +#: app/widgets/gimplayertreeview.c:848 #, fuzzy msgid "Empty Layer" msgstr "Strat de text" -#: app/widgets/gimpmessagebox.c:458 +#: app/widgets/gimpmessagebox.c:460 #, fuzzy, c-format msgid "Message repeated %d times." msgstr "Mesaj repetat de %d ori" -#: app/widgets/gimpmessagebox.c:460 +#: app/widgets/gimpmessagebox.c:462 #, fuzzy msgid "Message repeated once." msgstr "Mesaj repetat o singură dată" @@ -11626,17 +11641,12 @@ msgid "Invalid UTF-8" msgstr "Eroare în fişierul de pensule al GIMP \"%s\"." -#: app/widgets/gimpsizebox.c:290 -#, fuzzy -msgid "Keep aspect ratio" -msgstr "Dimensiune fixă / Raport de aspect" - -#: app/widgets/gimpsizebox.c:574 +#: app/widgets/gimpsizebox.c:451 #, fuzzy, c-format msgid "%d x %d dpi" msgstr "%d x %d puncte ecran" -#: app/widgets/gimpsizebox.c:578 +#: app/widgets/gimpsizebox.c:455 #, fuzzy, c-format msgid "%d dpi" msgstr "puncte/inch" @@ -12142,6 +12152,10 @@ msgid "Image Editor" msgstr "Mască imagine" +#, fuzzy +#~ msgid "Keep aspect ratio" +#~ msgstr "Dimensiune fixă / Raport de aspect" + #~ msgid "Y:" #~ msgstr "Y:" diff -uraN gimp-2.2.0/po/ru.gmo gimp-2.2.1/po/ru.gmo --- gimp-2.2.0/po/ru.gmo 2004-12-19 03:11:56.000000000 +0100 +++ gimp-2.2.1/po/ru.gmo 2004-12-28 16:58:44.000000000 +0100 @@ -1,218 +1,220 @@ -= J[ XY&okG9JGANi]<k@p2;P Oq29-.9\;7 - - & -0 -; FRb -q| -0FWjr - - -  ! -9 > JKW.)1X!!4 -F Q] -s~  - 1@*V6 &EZn# -8CT\nw 13+_sy -*DZt{ -AJ(s<  08= Wcy  - 3J&`$ " COTZ_ -oz7 $+ 3 @L Taf kmx  7EUC\7=@6Wd3'[<o#! )5 KU^v%,<i  !8Ncx    -. 5O578),,V2 (CO_A%&4>1s#   !28A -P[c iw 0  ! ( 2 ?Lg+   -! ,6$V{  -(;K"`  en  " ".Qjs - -),+!E#g#!%.E LXi}#- %!G]s  - - - !(7 < JWgw  -- $4K OY^du  ' 3 ANU[%a! & *9L ^l{     %@]o~ - --    -! ,9L_x   :4?o8  * -9DJ -` k y - -   > Pq  )6 ERWo " 8 -FQ -it    -  ' -3>*Oz!.#""Fi& , #8\c r''7MiFT& ,9O b  -  !0BT Zfo x($=65<l?A7+9cc9B;=~f>#CbJg Yeu      "6Mbu3PW`  - ' , -9 DN ^l -  -I](v  -O0 -BM #  -9  D  P \  e .q     -     - -  -( - @ - M -Z -k - - -u - -  c  $ z1   r -F]fx&'  ! +5 D R^ cmsz  )>MVl  -    - -*?VH^ -  -H!(BJ1  -#. 3 ?`KCF10    - -*5L\m ( - -H -M X -ep w     )1OV ^l 'AWsw   K362ix"  $%@ U c (+)*$!Oq/*'3[k{ - -";N e .I Zdt! - 5F[z-    !!!&! 6!B!3H!|!!!! ! -! ! !!";"["t""" """ """##@&#g#-n## ## # # ##$ $$ $ )$5$L$k$$$ $ $ $$ $$% *%6% -L%W%l% %% %% -%%%%%&&&$&,&>&V& l&z&&& -&#&&&'%'+'3'P'+m''' ' ' -' ' '''(*(C( X(e( t(((("((( ) ))7)=)B)H)$^))))) )) ) )) ) ** -,* -7*B* R*\*k* {* ******++0+7+@+ S+_+r+++ -+ +++++ + ,,, (, 5, ?,K,h,w,, , -, ,, , ,, - - #-,/-\-!o----)- .. (. 6.B.G.V.]. n. z..B.A. />/S/ e/o/v// //////^0m000 -00 000 001%1"D1!g1!1111 1 1 22"2 12?2VG2+2 2(22"3&3 <3 H3T3n3%3 -3 33333 -34 4$4 -4;4 O4 Y4g4m44 4 4 44&4,4 )565;5 -K5 -V5a5~5555545-6?6 -E6P6X6 -h6 s666 6666 66 6!6!7 07>7 T7`7q77 777 777?7%848<8P8`8}884<9q9z9-9 ::: -: :#: ;-; M;Y;n; ;;;;; ;;p<<< <<<<<< -< -< == -/= := D=R=V=p= = =!= === = =>>$> ,>:>O> e>q> ->>> >> >> ->??/?L?Q? W?!d??!?#?? @ - @9@UR@=@<@=#A"aA?AAA AAAA(B,*BWBgByBB -BBBBJB 0C=CLCeC C CCC C CCDD*D;DDDD D DDD D DE E &E 3E?EGE eEoEEEEEEEFF(FCFUFjF+FFFFF F G G!G 3G @GLG#cG GG GGGG6G,HIHQHXH mH7zHHHHHHI)I 8I EIQIcI wII IIII -I -II IIJ J-J -3J>JCJ XJdJ -{JJJ JJJJK 3K?KOKhKxKK4KKKLLSUSlSSS SSS SST#T8TPTcTzT -TTT"TTT U$U8USUkUU=U6US VJ]VVVV VVWW'WAWPWnW WWWWW WWWX "X/XOXeXXXX XXXX YY-Y@Y)YNZnZK[=[ \*\\`]3^T7^?^`^2-_`__a4b/bb ccccccc dd#d5d;dNdad~d d dd;dd eee /egNg]g ng{gg ggggg+ghh'h .h;h BhOh _h -mhxh~hhh h h8hvh_ifi~ii i ii i!ijj4jOjhjjjjjjjjj j -k k $k2k;k DkQkak pk|k k kkk!kkl( lIl#Rl vl lll -l l lllll -m -m m'm7mK@m1m7m1m5(nH^nAnn;to!oo pp qr}Rs*sBt>u%vDvvIw Ow]w)dw5ww1tx0x0x1y(:yCcyyS(z,|z2z zA{A?|*||X} F~S"ƀqăG]2~ ˆ-Ն -!3DJO^gm ʇ ڇ   ) -/<: w ̉܉*9M\v  -Ɗъ֊ߊ3;*;fDFK   ʍ܍23K#Ύގ,2 9EbkFt -ۏ -     , :!H!j  +KА0QM8$ے5P6G-ϓOjMoe(j~pxowY<ј?>Ntt`wؚb0&8M ^l6no4&#[GHXU?V_hp -y   #ȟ   '0CV_q    ŠϠנݠ  7X ^kr{  ʡ ͡ ١   - &3;[ drx  -ɢԢ  #1 E Sa q~ɣ ڣ  - 5 ? -LW]läԤ  A KU ]g my ȥΥե    - - +DM U_ erx~  Φ  -< -\gz  ǧ ֧  5>FYo  ƨͨ -ը    - $ 2 ? I Vc t~  - Ʃ թ   # , 9 GT ] k y  ʪ ֪ '8K]ow4ګ1/Aq ̬Ҭ# <[br" -ʭۭ %-=Od -} - - Ȯήծ - - +1:?Tjy  -ïίկگ5ޯ &0@EL Tb!w  ۰ - %*06 = GQW^ es.Wұ0*G[0`ȴk)XdzuX~Y׸1yùD=cFe-RQ 8DK k w#ټ -4"Wm ;LϽ2f;!%ľ--B -K -Va y -  - -  -¿"Ϳ - - &>ocJ='\ M-(V'g&8)'FQ($,<Bi''1$.5SFc%47Z(@?6Q0,>4%0Z,L7:=x)';=B` ^l+< Ja<8M:8 6&L&s&ya+1)% ;GAP/&3!Ln$* '))={gh L Yf{ 9%%K%qc - ,&Se!)o -^i   - +0J4DV@m( ey`^6`Vo+'SaLJ;>6, cq";7<2W:-B<6LsR -<:[:'+ ; \ }   ,2DU*q*mumxx\siIU@ MJ;rJG2YOKO~zjQ 7[X;+*4 -_j$|! .%"4W#v4 KU q}57x--, -$7\lA> Cd4AA3;6o@58|V'1/-!]#RSWS818IjL=?T8p6Q,QN~,X@S@E?3[` '(D0m"(KD6({cA-JFxA#%7>Uv--RH#/#>R$o!  (v5)' , .= l { % ' , " -() -(R -){ -+ - - -! -  1 ? R  a k Xz R & D 1b H #   "5 "X {     " C"[ ~$,0,,]!,ap'$(,M6z"))%Hn':)z1 ('",5)b9)!%!G#i!#8 (!1!S$u(%H$n&,"( -(3(\8%,&/Vr<$6I((r.6.GHA+<#VMz"(.3b/<!(>(XV*> ;U > ? !N#!Hr!4!6!S'"{""#""^">I# ###$#1#E%$4k$?$4$!%57%&m%m%& &&&2&2&T+'8''<' (9&(=`(F(((()(7)(`))#) ))))2*CC*?**z*mQ+v+6,,zB-z-8.b3//00Xq11W223383.49N44,4"4445)5,G5t5,565.5$ 6"E69h666#6797"X72{737+7848,S8&818181 9=9-X9'9#9999:,5:b:,:(:::J;\;r;%;%;;*;1<1M<%<_<v= -|==== = = ==>A>>>&?<@%Z@'@@%@%@AAc*AAAA A5AB48BmBrBB<BBB" C0C7GCCC#dD>DElG5HGH - I -II5J:6JqJJJJ%J0J%$KQJKSKKLL+L IL WL -cLnLLL -L9LL8M*GMrMAM+MMM(N@NXNmNN|N NNOO/O CO PO^O#mOOJOKO'DPlP -qP7|PAP PQQQ#Q#R2RORMR6SSS_S =T^TfT%wTT*TTT U*#U$NUsU"MVrpWJWT.XX#X'X0XY#7Y,[YY)YYY6Z5RZZFZZ![1[#['[ \)\,@\!m\)\)\0\4])I])s]+] ]]%]^ .^2<^ o^{^'^U^_%`55`8k`/`6` a#a8aXavaas>bb#6cZc;ucc,c'cd3d7Jd)d#d+d>d>;eLzeReJfJefUfYg`gg%h-*hbXh-hChF-i!ti4ii+ij)1j-[j)j#j+j#k'k0k?kXkkk kkkkkkll *lKlfl wlllll!llm'm .m;mRmcmxmmm3mo.p07phppp'p ppnphq%qq)qq r!r6r8Qr5r'r+r1s$Fs1ks'ssss4t-7t -et pt|t uvuuu -u(uuu!v6v Gvhv{vvGv@wDDw-wRw -x$xCx$]xx2x%xx$y6y(Ty(}yy2yy$z4z(Rz {z z*z -zzzz#z>{5\{({:{>{5|E|=_|J|6|8}X}h}5}}5}S}=~M~\~,v~,~~#~,2?/r/2###G%k/5:2FC< ǁ ԁ - 0Q)"{0ς!% 7 DQg!~#<ă/1*Q#|)0ʄ,)(JR).Dž2?)Ai*ֆ0*Lw"LJ,!69!p.D3x!6B2u@n40‹",2CMvČAߌ!9Y`~ -ٍ}s; 3Tk|$Տ!.>X!u%ґ5.0G'x"%Ò35;S77Ǔ0+0,\Ɣn0Jd_Wr>ʖ 0=0nn -)8(XȘ"/+[l-י#0UADܚ   )"J<m<+/3C3w\3<Ke!tȝ!#2V,fK0,]#y9!ן3!-)Oyy*'R'g%JNAOz !-6dQ֦&(^O!0  K1}/!,,  11>(p*Ӫ"#!E_uy!#٫D$B"g)2  -4$'Y&*ܭ*24L&*ܮB>J1EޯC$MhQDM_|nx|F|f%% -/]l|^cR#nҶ)..Gcv ڷ042'g1+ٸ!0@4q0cRQ'#̺+D6a-ƻ'% -)0%Z 2*ۼ?*F,q'ܽ0#5PY0H۾P$ouBU(!~*4&,';T4Lf1 '11)3[z8 -CZ(s/:L/ 3/ 9Sk*%3%(9bk+E#E7i/E7)}C;'>G*I62 P4q&-+u'<:;@Q(%56^N")0)F#p''3%')M8w3+99J6V61!h! / ->Ids|  - -&7Rg" '$Bg -"#@Sf,~2%-.S4.,014bB7)<.\0&&@,[.("65R><&>A15._KwvR4,3+_0r0.>.BQq3%55S53 J*_>0J.E5t89#:A&|;5(:>-y/~Vt+*4_G*+_Vh\ -!v,$o8G - ' 3 T(u455O;0 .(pW$%44H-},*',+CX.-+%%ZK8 243>h<C)((R5{5M=5(s(@88U=*7 /<+Z S'#: -T/_6( +8JbJx''+% Q*[*IK6Z938;8 7t  !   ! -() -R -#f - -& - -! - "# %F l " 2  - " H %O Pu & ? W-  7 -   7 -C"Nq%/ --%KqxviwY{oMPoJ1.]y)+*0][Y& / G @P i Z TV"P"L"LI#;##v$n%^*&&e'|)(*z*2M+ ,_./J1/2F4NN56&89Y:;Lw=A= ->P> b>n>>> >>(>??0)?0Z?A?+?+?5%@,[@-@I@%A.&A.UAA.AAfD>DD%D3E%6E'\E:E>E%E'$F-LFzF/FFFF G!0GRGkG -rG.}GSGoHpH HJyK3LLL]LwLLL(LLL MOM6nM>MfMHKN=N1N>OSCO2O3OOP,P;P,WP PPPI@QQQQ,Q*R++R)WR R$ROR<S%TS%zSbST~T_UjVfsWXroYwYZZ[i\3] ^^_"`abbwc}\dyd Teafaghh -Ui`i i i7i73jkjjjQj jk k lRlGhllvmBnnRoo/o%p%;pappp/p%p%p)p&qf;q%q#q%qr)"rLrcr'wr1r"r&r)sEsWs^s|s&sssssst7t;Mt9ttt t t1u3u BuNu"_uuu u8u+u vv 'v Hv!Uv wv>vv#vv9 w<Fw8ww ww w#w"x=xWxqx#x%xx!xy*y!Jyly!yyy y( z2z$Bz6gzzzz zz0{C{#_{+{{1{|,!|"N|Iq||| || }}1$}#V}z}}#}} } }'}&#~J~ -L~W~m~~~~5~~~+;Yas ," &0(W ǀ)р$E fwԁ:1Mg - 2#&)BP9!̓ ";Setڄ $>Wr˅ -&#J])p Ȇ6,;Sr/)* 2>@ ESmB. ?Mc$  ʼn- /90i9aԊj6H*/EE8ˌ(W-E>ˍ - (;Ed1Ҏ) .:'L&t )͏#&&Bi Ր:S3q ǑN9W%   *-< -P -[fcj=Γ (*S -\g)+MܔD*LoB '48GPYq - ɖؖ'eRuhu. - #-34'R dZMy$NZ#+ M*.C1iX- /xK[ g/|LFJS)&z,:KrlPg\r\&1G (- a8rC,UP. ;LYoxV I>sD(. S8h9MPLn-E"4h>f){2>~8 86C G1T=KNnf n)w|}>7[L' OP3>qd 5AoAjN\n~YG!%CE E5 mr\bE - Az@v Ky86, Dpft~At -<! c `+|l+sNFZ*uhk}}t8 $ 0j~Ee3 0by? Jw/IF G"c_7mFUa ` f;:p>2;]u4 +@qgziztBXwUUZ?<-E G -Ww<"Y\c%DxPfN)|>% 'z3 \a5V'6O[@=P'HQF^]WL 4#5Y:)"I z]" 0sN(qwb0OR. -USx[ JJVc!Yvi} N$j/~5[ 10H(6c9AuI;\Cl!5 a %vV9bnC% ?h }:Xu>HUSQd2H$9: f/7 Z=*99 5 -(|,vR /QM9T@oICI_a6:{ kQOwVixGPi im>*I%gXuH) so^W8g|R ?{sXVsm= -*24Ybq$7y`v#eM{r<c -v)F,t{*tt.=$|jay#pY T7Y1{BV*Ss"/Hp <;;< i$D:JT1  [~Zk<&thef-o 0 O d_Zklk8B9_vA33\%8 }BQ:xz7vlZGeXdTS_[ ?6WQR }%E& 'DTDRW+(!q=1`^~Q+|E!mm}*2! P Xe|b )]?Lf5Fk ac&x{yrb]_3 ,0homUe,_; c@e 3j+uG &pr`v gJJ&/ 7Iz`-,'#0Sl.cuIA6 M3:@Uda+ @w: 'Oqpoi7neO 2 !lDM$^])7 SJ202 TC h)Sd -  }24  jY "/ lO9H #{?<%xQ41= $,!oGzW@T%B{ +_8Kp 6 g'sa&1]? -~mW255]UD$AD&4M p &B HB^_ ;np* ek;CMmVJoyw[=V1" K#njN!KWf( q^KFt=# ?d6.OK`6 -.B\n7i<-ydF~XBwlyx^TL"Hj` 4j@^]rgXL=q(uRL*#h'P 3k; [g-/9^ bk(ZEq4RRb(,+.AW<r0s"`QN  +< I[ ܓHI&_kG9:GtANiM<k@`2;POa29-9L;7  +  + ++ 6BR +alo +06GZb +y + +   ) . :KG.1H!z $ +6 AM +cn  +!0*F6q5J^r# +(3DL^g 13Oci| +4Jdk z +AJc<v  (- GSi|  + +#:&P$w " 3?DJO +_jy7   # 0< DQV [mh  + '5ECL7=@6Gd~3K<_#! % ;ENf|,,Ys{  ! (>Shq z   .5?5u78),Fs2 3OOA%&4.1c#  "(1 +@KS Yg }0   " /<Wt+}   + &$Fk~ +;"Ps  U^o w ""AZc +u +),!5#W#{!%.5 <HYm#-%7Mc~  + + +' , :GWgz  +- $; ?INTex   # 1>EK%Q!w & )< N\k {   0M_n + +-    + )<Ohp   :$?_8   +)4: +P [ i u + +   > @aq & 5BG_r  ( +6A +Yd |    +#.*?js!. #"6Yv& ,#(LS bp'' +'=YFsT )? Rs  +   2D JV_ ht($=6%<\?A79Sc9B+=nf>CRJg IUe w     &=Rey#@GPo  +   +) 4> N\o +  9M(f  +O  +2=  +)  4  @ L  U .a     +       + + 0 + = +J +[ +o + +u +   c   z!   r 6MVhw&'   % 4 BN S]cjo .=F\ s +}    + +/FHN +  +H!B:}1  + # /`;C61z0   + +%<L]| ( + +H += H +U` gs     !?F N\u 1Gcg y  K36"Yh"~  $0 E S t(+)*!?a/s*'#K[kt +, Cd  ' 8BRl! $9Xq-      ! ! !3&!Z!k!!! ! +! ! !!!"9"R"f"w" """ """""@#E#-L#z# ## # # ### ## # $$*$I$h$|$ $ $ $$ $$$ %% +*%5%J% `%n% %% +%%%%%%%%& +&&4& J&X&m&& +&#&&&&' ''.'+K'w'' ' ' +' ' ''''(!( 6(C( R(`(s(("(((( ))) )&)$<)a)s))) )) ) )) ) )) + +* +* * 0*:*I* Y* c*m*******+++ 1+=+P+j+o+ +u+ +++++ + +++ , , ,),F,U,g, y, +, ,, , ,, , , -, -:-!M-o---)- -- . . .%.4.;. L. X.f.By.A../1/ C/M/T/c/ s//////<0K0]0e0 +n0y0 000 0001""1!E1!g1111 1 1 112 22V%2+|2 2(22"23 3 &323L3%d3 +3 33333 +33 34 44 -4 74E4K4^4 s4 4 44&4,4 555 +)5 +45?5\5z555545 66 +#6.666 +F6 Q6^6m6 v6666 66 6!66 77 27>7O7j7 z777 777?7888.8>8[8x849O9X9-`9 ::: +: :#::-: +;7;L; a;k;s;;; ;;N<b<v< <<<<<< +< +<<< + = = "=0=4=N= _= i=!s= === = ===> +>>-> C>O> +b>m>> >> >> +>>> ?*?/? 5?!B?d?!?#?? ? +?9?U0@=@<@=A"?A?bAAA AAAA(A,B5BEBWBhB +yBBBBJB CC*CCC ]C jCwCC C CCCCD;"D^DxD D DDD D DD D E EE%E CEMEhEEEEEEEEF!F3FHF+_FFFFF F F FF G G*G#AG eGqG GGGG6G +H'H/H6H KH7XHHHHHHHI I #I/IAI UIbI IIII +I +II III I J +JJ!J 6JBJ +YJdJJ JJJJJ KK-KFKVKjK4KKKKKL-LQ]Q rQ|QQQQ!QQR"R +)R4RIR YRfRRRRRR RSS3SJSiSS SSS SSSTT.TATXT +jTuTT"TTT TUU1UIUbU=rU6USUJ;VVVV VVVVWW.WLW ^WjWyWWW WWWW X X-XCX]XxXX XXXXXX YY)YNYLZK`[=[[*n\\>]3]T^?j^`^2 _>__pa4sb/bb cccccccccddd,d?d\d qd }dd;dd ddd ee /e=eMe#ae ee e e&ee +eff*fDf"Vfyfffffffgg,g;g LgYgrg ggggg+gggh hh h-h =h +KhVh\hchkh th h8hvh=iDi\iti |i ii i!iiij-jFjcjjjjjjjj j j j kkk "k/k?k NkZk kk wkkk!kkk(k'l#0l Tl blolvl +|l l lllll +l +l lmmKm1jm7m1m5nH,tkt`U@0ƛ+ <J6Lo4#9]G&XnUǞ4=FN +W b nx #ʟ ҟ!4=O ak p ~  Ƞ۠ 6 <IPY x    ϡ + 9 BPVe  +Ģ Ԣ  # 1? O\o  ģУߣ   +*5;Jfuˤܤ   )3 ;E KWl{  ƥӥ֥ ߥ  + + "+ 3= CPV\bipx  Ʀ Φۦ  +:EX g s  ͧ Чڧߧ$7M m z + ˨ ۨ  +    ' 4A R\ dnu +{   ̩թ ܩ +  %2 ; I Wcv|   ֪ );MU^t41/Oeu Ĭ#լ 9@P"` +ɭ߭  -B +[ +f +q|  +Ӯޮ + 2HW _l{ +5 #* 2@!U w  +ٰ   %/5< CQ.dW0G9`kXs̵^dXuX\YyDc`Fĺe RqQĻ ") I Ucs# +׼45K c;qLf!%Ⱦ-ݾ   +) +4? W +d o +} +  +" +ο +ٿoAJ=': blM-4'E&m8)F/(v$,BG''1$ 51Fgc%78(p@?6/0f,>408,iL7:V)o';= ^|`^J+<(?8+:d8 &*&Qx&y?+i}1) %A.p/&3!*L$h* '){Eh * 7DY o9}%%KOcb + ,1C!c)o +<Ge   +  ("4@K( eiW`<6`4o+1aL(;u>6 + AO"a;7<25:h-B<LQR +:9:t'+  : [ |  ,"3*Oz*muKxx:si'U@M(;vrJ%2pYO)Oy~zHQ [6;+* +=H$Z! ."5#Tx )3 O[5t7x-p-,$:JbyA> !B4`AA36M@58|4'1/ !;]pv#RS5S81IHL=28N6Q,/N\,X@1@rE?39`m '("0K"|(KD(YcA-(FVA#7UT--R&y#/#0$M!r  v)' + . J Y %i ' , " ( +(0 +)Y ++ + + +! + +   0  ? I XX R  " 1@ Hr #   " "6 Y v     " !"9 \}$,0 +,;!h,aN_'p$,+6X")%&Lcy':z (',)@j9)!!%#G!k#8!!1$S(x%&$L&q,"(((:8c%,& 4P<m$6I(P.y6.G&An+<#4MX"(.@/_<!(6V_*>;3 >o ?  N!HP!4!6!S"Y"x"#""^">'# f#s##$#1#E$4I$?~$4$!$5%&K%mr%% i&v&&2&2&T '8^''<''9(=>(F|(((((()(>)g)#~) ))))2)C!*?e**z*m/+v+,,z -z-.b/t//{0XO115223383 49,4f4,o4"44445,%5R5,k565.5$5"#69F666#6696"672Y737+7747,18&^81818189-69'd9#99999,:@:,^:(:::J::;P;%f;%;;*;1;1+<%]<_<v< +Z=e=t== = = ===Ae>>>&?<?%8@'^@@%@%@@@cAlAAA A5AA4BKBPBjB<BBB"BC7%C]CoC#BD>fDEJGH%H +H +HH5I:JOJdJ~JJ%J0J%KQ(KSzKKKK L 'L 5L +ALLLjLyL +L9LL8L*%MPMAiM+MMM(MN6NKNNZN NNNN O !O .Od>eLXeReJeJCfUfYf>gg%g-hb6h-hChF i!Ri4tii+ii)j)9j#cj+j#jjjjkk 2kSknkkkkkk kkl 'l1lAl[lol!llll llmm(mGm`m3omo.o0op/p>p'Wp ppnpq%2qXq)wqqqqq8r5:r'pr+r1r$r1s'Msusss4s-s +t t,t tvt5uDu +`u(kuuu!uu uv+vKvGkv@vDv-9wRgwwww$ x2x2Nx%xx$xx(y(-yVy2ryy$yy(z +z 5z*Cz +nzyzzz#z>z5 {(B{:k{>{{{=|JM|6|8|}}5-}5c}S}}} ~,&~,S~~#~,~2~/"/R2##%/A5q:F<: w  + 0Qف"+0N!%  !.#P<t/*#,)P0z,)؄J)M.w2?مA*[̆*'8J]"w,!LJ6! BV.n͈D(!A6cΉB%<@VʊnS0r",Ƌ2M&tAь .C +^i}#; ,=[k$!̏ޏ!%Gd%5ޑ0'("P%s35͒;7?7w0+, 9Nbv˔nJOdW">zϖ00nO +ɗٗ(1OaxҘ/ۘ -;i#0UDG  ٚ"<<Z+/Û33'\[3!$FXxѝ#,CKZ0ܞ #)9M!3!ݟ)):Ky]*נ'%?JeNAzAѣ-1F\kQ&ئ^^!q0 ħЧK-/?!o,7,dЩ 1( Ii*"#Ѫ%)CTX!g#D$"):2d 4Ԭ' 1&Ip**41&Ip*B>9J1\ECԯMQfD|xS|̲IFϳ|%%-ߴ ,^?c#Bb).ȶ.c& 04'?1W+Ѹ04!V0lcR'T#|+D̺6-Hv'%)% + 02>q*?*,!Nl'0#P 0ZHPԾo%BUؿ!.*P4{&,;4@uLf H'i113 z?8 +(#/L|:/7 gt3/*7b%{3(2Rj+E#7Qk/E)-CW;>*6Ia6 4!&V-}+u<M:;@(B%k56^"])0)# 'Dl'{3%)8'3`+9964Vk6!:! +#,;Tg ~ +"0Sp $6 +KVg",.[v2%.42.g,04BG7). 0;l&&, .8(g"65>8<w&>105b._K'sv4y,30"0S.>.Q!3s%55593o J*>:0yJ.5$8Z9#:&,;S5(:-)/W~tC+**_hf\t +v$SoxGk +   (%N_4}55;50q.p$x%44--,[*',C.L-{+%Z8V 24><WC)(5+5aM=(#(L@u88=>*|7 + + 6SD' +/6?(v J('s'+ * *6aItK6 +9A3{8;7$ \ !q   ! (  +# +: +&Z + +! + +" +% + "2 2U  + " H % P% &v ? W 5 7H -     + " !0%J/p +%!x&iw {oPmGo1j.]))*] iYV7@ iA Z T"P["L"L";F##&$%^%9&e&,))z*2* 0,_<./J<1/2F3N4M6&38Z9 :;L'=At= +=P= >>:>Q> h>v>(>>>0>0 +?A;?+}?+?5?, @-8@If@%@.@.A4A.KAzAD>0DoD%D3D%D' E:4E>oE%E'E-E*F/GFwFFF F!FGG +"G.-GS\GoG H HIyiKKK L'LALPL(hLLLLOL6M>UMfMHM=DN1N>NSN2GO3zOOOOO,P 4PBP[PIP:QTQrQ,Q*Q+Q)R 1R$RROwR<R%S%*SbPSS~TUjUf#WXrYwY +ZZiy\\]^M__`abwc} dyd efggXh +ii i i7i7ij3jFjQHj jk k kRkGl`lv{mmnR/oo/o%o%op p/0p%`p%p)ppfp%Rq#xq%qq)qqr''r1Or"r&r)rrss,s&Esls}sssss7s;s99tstt t t1tt tt"u2u4u Iu8Wu+u uu u u!v 'v>1vpv#vv9v<v83wlw ww w#wwwx!x#9x%]xx!xxx!xy!:y\yzy y(yy$y6zNzaz~z zz0zz#{+3{_{1{{,{"{I!|k|| || ||1|#}*}:}#Z}~} } }'}&}} +}~~.~@~5_~~~~~~ #;Sk ,"&(0N_n w)$EЀ'6Vl:57 +F Q2]#ʂ&قB9C!} "ȃ$;RlԄ";Xl{ +&Ӆ )  JVfx6̆܆"/6)f*  6RBj. $/ T u-/09JajHQ*/ŋE;Mg8{(W݌E5>{ ʍ(EZn1) ގ'&$K^ q)}#&ˏ&6G Wcr:Ȑ3! UcwN9A\%k ڒݒ + + c=~(ړ + )6+`MDڔLBl• ו !9M +a ly'eR%ht-  #-33&QdYLy$NZ"+ M*.C0hX, /xK[ g.|KFJS)%y,9JrkOg\q[&0F ', a7qB+TO. :LYnwV I=rC'- S8h8MPKn-E"3g=f({2>}8  85BG1S<JNme m(v{|=6ZK& NP2>pd 4@n@jM[n~XF!%BE E5 mq[aD @z? u Jx76+ Dpet}@s +<! b +_+{k*sMFY)tgj|}s7 # 0i}Ed2 /bx> Jv.IE G"c^7mFU`` e::p>1:\u3*?pgyhzsAXwTUZ?; ,D F +Wv;!Y\b%CwOfN)|>% 'z3 [a4U&6N [@=O'GQE]]WK 4"5Y:)!H y]! 0rM'pwa/OQ- TRw[ +~IJUb Yvi} M#i/}5Z 1/H(5c9AtI;[Cl 4 a%uU9bmC$ >g +}9Xt=HUSQc1G#89 e/6 Y =*88 4 (|+vR .QL8T?nHCH_`5:z jPNvVhxFOh il=)H$fWuG( sn^V8f{R +?{rXUrm< +)14Xap$6x`v#eM{q~;b +u~(E+tz)ts-<#|i`y"oX S6X0{AU*Rs".Go;;:; i#D9IS0  +Z~Zj;%thdf-~o / N + c^Zkkk7A8^uA22\$7 |AP:wy6ukYGeWcSR^Z >6WPQ|$D% &CSDRV+' q<1_^~Q*{D ll})1 P Wd{b (\?Lf4Ej`b&wzxqa\_3 ,0holTd+^; c@e~ 2i*uG %or`v fIJ%. 6Iz_,,'"/Rk-cuHA6 L39@Ud`* ?w9 &Npooi7meO 1  lCM#]\)7RI2/1 TB g(Sd   |23  iX !/lO9H "z><$xP30< $+!oFyW@T$Bz +_7Ko 5 g&ra%0]> ~mV254\TD$AC&4Lp &B GA^_ :mp) dj;BLlVInywZ=V1! K#njN!JVe' q]KFs=" ?c5-OJ`5 ,.B\n7h<-xcE}WBvlyx]TL!Hj_ 3j?]]rfWK<q'tQL*#g'P 2k: [f,.9^ ak(YDq4RQb(,*.@V<r0s"_PM  Invalid option "%s" Usage: %s [option ... ] [file ... ] @@ -256,7 +258,7 @@ Make sure a proper setup for your display environment exists.GIMP help browserGIMP is not properly installed for the current user. User installation was skipped because the '--no-interface' flag was used. To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Generate optimum paletteGet Monitor ResolutionGiganticGimprc proceduresGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient:GradientsGradients MenuGrain extractGrain mergeGrayGrayscaleGreenGreen:GridGrid line spacingGrow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_counter-clockwise hue)HSV (clockwise _hue)HTML notation:H_eight:H_elp browser to use:Handle position: %0.6fHard edgeHard lightHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHelp proceduresHex:HighlightsHint for the _docks:Hint for the _toolbox:HintingHinting alters the font outline to produce a crisp bitmap at small sizesHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB color layers.Hue-_Saturation...Hue:HugeI_con & TextI_mageI_mport Path...I_nterpolation:I_nterval:IconIcon & descIcon & textIf available, hints from the font are used but you may prefer to always use the automatic hinterIf enabled, the move tool changes the active layer or path when a layer or path is being picked. This used to be the default behaviour in older versions.If you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.Illegal variable name in environment file %s: %sImageImage + GridImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage ThumbnailsImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage maskImage resolution is out of bounds, using the default resolution instead.Image sizeImage sourceImage typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport paletteImport pathsImported PathIn_kIn_vertIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorIndexed Color ConversionIndexed color layers are always scaled without interpolation. The chosen interpolation type will affect channels and masks only.Info WindowInitial zoom _ratio:Initialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' -InkInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratioKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard ShortcutsL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine +InkInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard ShortcutsL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine spacing:Line Width:Line _Style:Line style used for the grid.LinearLinked itemLoadLoad CurvesLoad LevelsLoad Right Color Fr_omLoad curves settings from fileLoad levels settings from fileLoad text from fileLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower Path to _BottomLower channelLower channel to bottomLower layerLower layer to bottomLower pathLower path to bottomM_agnifyM_asterM_ove to Screen...Ma_pMagentaMagenta:MagnifyMake _transparentManage Loadable ModulesMarching _ants speed:Mask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:Max Depth:Maximum _filesize for thumbnailing:Maximum _new image size:Maximum color differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMeasure the rulers and enter their lengths:Median:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMerge vectorsMessage proceduresMessage repeated %d times.Message repeated once.Messages are redirected to stderr.MidtonesMigrate User SettingsMinimal number of _undo levels:MiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMouse WheelMoveMove AnchorsMove ChannelMove Floating SelectionMove GuideMove LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove ToolMove itemMove layers & selectionsMove selectionMove the current layerMove the current pathMove the selected filter downMove the selected filter upMove to Screen...Move: MultiplyN_umber of colors:Na_vigationNa_vigation WindowNa_vigation preview size:NameName:NavigationNew ChannelNew Channel ColorNew Channel OptionsNew Color from _BGNew Color from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channelNew channel with last valuesNew channel...New color from BGNew color from FGNew gradientNew importNew layerNew layer with last valuesNew layer...New paletteNew path with last valuesNew path...New patternNew vectorsNo brushes available for use with this tool.No filter selectedNo linear gradients found in '%s'No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of _processors to use:Number of grid linesNumber of layers:O_ther...OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset by x/_2, y/2Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:Open ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the palette selection dialogOpen the pattern selection dialogOpen the selected entryOpening '%s' failed: %sOpening '%s' failed: %sOptions: @@ -307,7 +309,7 @@ did not save indexed colormaps correctly. Substituting grayscale map.YYellowYellow:You are trying to create an image with a size of %s.You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your input device settings will be reset to default values the next time you start GIMP.Your keyboard shortcuts will be reset to default values the next time you start GIMP.Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_All_Anchor Layer_Antialiasing_Arbitrary Rotation..._Artistic_Aspect_Auto_B_BG Color_Background color:_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Bucket Fill_Buffer_By Color_By Color Select_C_Cap style:_Channels_Clear Errors_Clear Undo History_Clone_Close_Close Tab_Clouds_Color Tools_Colors_Configure Color and Opacity..._Context_Context Help_Copy_Copy Named..._Create Image from Template..._Crop & Resize_Crop Image_Curved_Curves..._Dark Check Color_Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Desaturate_Detach Tab_Device Status_Dialogs_Discard Changes_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Ellipse Select_Enable layer & channel previews_Enormous_Equalize_Eraser_FG Color_File_Fill with:_Fit Image in Window_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground color:_Free Select_G_Generic_Gigantic_Gradient_Gradients_Grayscale_Grayscale copy of layer_Grow..._Guides_Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Info Window_Intersect with Selection_Invert_Join style:_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Left Neighbor's Right Endpoint_Levels..._Light Check Color_Light Effects_Lightness:_Line Style_Linear_Linked_Load Left Color From_Lower Channel_Lower Layer_Lower Path_M_Manually_Map_Mask_Mask to Selection_Maximum number of colors:_Measure_Medium_Merge Palettes..._Merge imported paths_Migrate GIMP 2.0 user settings_Misc. Stuff_Miter limit:_Mode_Module Manager_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._Padding Color_Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preferences_Preview_Preview Size_Previous tip_Properties_Quick Mask Active_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Reassign shortcut_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Render_Replace_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Order & Visibility_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Right Endpoint_Right Neighbor's Left Endpoint_Rotate_Saturation:_Save_Save Left Color To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Scale imported paths to fit image_Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Show Image Selection_Show in Toolbox_Sinusoidal_Small_Smudge_Snap distance:_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tool_Tools_Transfer layer's alpha channel_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Visible_Web_Web browser to use:_White (full opacity)_White Balance_Width:_Wrap around_X resolution:_X:_Xtns_Y_Y resolution:_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for icon typeinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetermillimetersminuten/apercentpicapicaspixelpixelspixels/%apixels/%spointpointssecondtips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: gimp.HEAD.ru Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-19 03:11+0100 +POT-Creation-Date: 2004-12-28 16:58+0100 PO-Revision-Date: 2004-11-23 14:55+0300 Last-Translator: Roxana Chernogolova Language-Team: russian @@ -376,7 +378,7 @@ ПероСпособы управленияУстройства вводаУровни на входе:Вставить точкуУстановить свою цветовую карту может быть полезно при работе с 8-битными (256 цветов) дисплеями.Установка не удалась. Обратитесь к системному администратору.Установка завершена. Нажмите кнопку "Продолжить" для дальнейшей работы.Быстрое обновление_Умные ножницыЯркость %0.3f Непрозрачность: %0.3fИнтерфейсВнутренняя процедура GIMPВнутренние процедурыИнтерполяция:ПересечениеПересечь с текущим выделениемПересечения (крестики)Пересечения (точки)недопустимая строка UTF-8Недопустимая строка UTF-8 в файле'%s'.Недопустимая строка UTF-8 в XCF файле.Недопустимая строка UTF-8 в файле кистей '%s'.Недопустимая строка UTF-8 в файле градиента '%s'.Недопустимая строка UTF-8 файле палитры "%s"Недопустимая строка UTF-8 файле шаблона '%s'Неправильная последовательность символов в URLНекорректное сочетание клавиш быстрого доступа.Неправильная ширина или высота. -Оба значения должны быть положительными.ИнвертированиеИнвертировать каналИнвертировать выделениеИнвертирование не действует на индексированные слои.Инвертировать выделениеВы действительно хотите это сделать?Возможно, Вы использовали раньше GIMP 2.0.Свойства элементаВидимость области рисованияФорматирование:Сохранять прозрачностьВсегда наверхуСохранить пропорции %sФиксированные пропорцииСохранить пропорции %sСохранить высоту %sСохранять прозрачностьСохранить ширину %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Комбинации клавиш могут быть динамически переопределены +Оба значения должны быть положительными.ИнвертированиеИнвертировать каналИнвертировать выделениеИнвертирование не действует на индексированные слои.Инвертировать выделениеВы действительно хотите это сделать?Возможно, Вы использовали раньше GIMP 2.0.Свойства элементаВидимость области рисованияФорматирование:Сохранять прозрачностьВсегда наверхуСохранить пропорции %sСохранить пропорции %sСохранить высоту %sСохранять прозрачностьСохранить ширину %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Комбинации клавиш могут быть динамически переопределены в Gimp. menurc - содержит копию вашей конфигурации, поэтому ее можно запомнить для последующих сеансов. Вы можете править этот файл, если захотите, но гораздо diff -uraN gimp-2.2.0/po/ru.po gimp-2.2.1/po/ru.po --- gimp-2.2.0/po/ru.po 2004-12-19 03:11:43.000000000 +0100 +++ gimp-2.2.1/po/ru.po 2004-12-28 16:58:37.000000000 +0100 @@ -17,7 +17,7 @@ msgstr "" "Project-Id-Version: gimp.HEAD.ru\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-19 03:11+0100\n" +"POT-Creation-Date: 2004-12-28 16:58+0100\n" "PO-Revision-Date: 2004-11-23 14:55+0300\n" "Last-Translator: Roxana Chernogolova \n" "Language-Team: russian \n" @@ -1043,11 +1043,11 @@ msgid "Remove dangling entries" msgstr "Удалить устаревшие записи" -#: app/actions/documents-commands.c:252 app/actions/file-commands.c:163 +#: app/actions/documents-commands.c:251 app/actions/file-commands.c:163 #: app/dialogs/file-open-dialog.c:198 app/dialogs/file-open-dialog.c:249 #: app/dialogs/file-open-location-dialog.c:193 -#: app/display/gimpdisplayshell-dnd.c:332 app/widgets/gimplayertreeview.c:802 -#: app/widgets/gimptoolbox-dnd.c:123 +#: app/display/gimpdisplayshell-dnd.c:334 app/widgets/gimplayertreeview.c:804 +#: app/widgets/gimptoolbox-dnd.c:125 #, c-format msgid "" "Opening '%s' failed:\n" @@ -1557,115 +1557,115 @@ msgid "Zoom all" msgstr "Вернуть к размеру окна" -#: app/actions/gradient-editor-actions.c:582 +#: app/actions/gradient-editor-actions.c:589 msgid "_Blending Function for Segment" msgstr "Функция смешивания для сегмента" -#: app/actions/gradient-editor-actions.c:584 +#: app/actions/gradient-editor-actions.c:591 msgid "Coloring _Type for Segment" msgstr "Тип окрашивания для сегмента" -#: app/actions/gradient-editor-actions.c:587 +#: app/actions/gradient-editor-actions.c:594 msgid "_Flip Segment" msgstr "Отразить сегмент" -#: app/actions/gradient-editor-actions.c:589 +#: app/actions/gradient-editor-actions.c:596 msgid "_Replicate Segment..." msgstr "Сделать копию сегмента..." -#: app/actions/gradient-editor-actions.c:591 +#: app/actions/gradient-editor-actions.c:598 msgid "Split Segment at _Midpoint" msgstr "Разделить сегмент по центру" -#: app/actions/gradient-editor-actions.c:593 +#: app/actions/gradient-editor-actions.c:600 msgid "Split Segment _Uniformly..." msgstr "Равномерно разделить сегмент..." -#: app/actions/gradient-editor-actions.c:595 +#: app/actions/gradient-editor-actions.c:602 msgid "_Delete Segment" msgstr "Удалить сегмент" -#: app/actions/gradient-editor-actions.c:597 +#: app/actions/gradient-editor-actions.c:604 msgid "Re-_center Segment's Midpoint" msgstr "Отцентровать среднюю точку сегмента" -#: app/actions/gradient-editor-actions.c:599 +#: app/actions/gradient-editor-actions.c:606 msgid "Re-distribute _Handles in Segment" msgstr "Перераспределить направляющие в сегменте" -#: app/actions/gradient-editor-actions.c:604 +#: app/actions/gradient-editor-actions.c:611 msgid "_Blending Function for Selection" msgstr "Функция смешения для выделения" -#: app/actions/gradient-editor-actions.c:606 +#: app/actions/gradient-editor-actions.c:613 msgid "Coloring _Type for Selection" msgstr "Тип окрашивания для выделения" -#: app/actions/gradient-editor-actions.c:609 +#: app/actions/gradient-editor-actions.c:616 msgid "_Flip Selection" msgstr "Отразить выделение" -#: app/actions/gradient-editor-actions.c:611 +#: app/actions/gradient-editor-actions.c:618 msgid "_Replicate Selection..." msgstr "Сделать копию выделения..." -#: app/actions/gradient-editor-actions.c:613 +#: app/actions/gradient-editor-actions.c:620 msgid "Split Segments at _Midpoints" msgstr "Разделить сегменты по центрам" -#: app/actions/gradient-editor-actions.c:615 +#: app/actions/gradient-editor-actions.c:622 msgid "Split Segments _Uniformly..." msgstr "Равномерно разделить сегменты..." -#: app/actions/gradient-editor-actions.c:617 +#: app/actions/gradient-editor-actions.c:624 msgid "_Delete Selection" msgstr "Удалить выделение" -#: app/actions/gradient-editor-actions.c:619 +#: app/actions/gradient-editor-actions.c:626 msgid "Re-_center Midpoints in Selection" msgstr "Отцентровать средние точки выделения" -#: app/actions/gradient-editor-actions.c:621 +#: app/actions/gradient-editor-actions.c:628 msgid "Re-distribute _Handles in Selection" msgstr "Перераспределить направляющие в выделенном" -#: app/actions/gradient-editor-commands.c:84 +#: app/actions/gradient-editor-commands.c:85 msgid "Left Endpoint Color" msgstr "Цвет крайней левой точки" -#: app/actions/gradient-editor-commands.c:86 +#: app/actions/gradient-editor-commands.c:87 msgid "Gradient Segment's Left Endpoint Color" msgstr "Цвет крайней левой точки сегмента градиента" -#: app/actions/gradient-editor-commands.c:186 +#: app/actions/gradient-editor-commands.c:189 msgid "Right Endpoint Color" msgstr "Цвет крайней правой точки" -#: app/actions/gradient-editor-commands.c:188 +#: app/actions/gradient-editor-commands.c:191 msgid "Gradient Segment's Right Endpoint Color" msgstr "Цвет крайней правой точки сегмента градиента" -#: app/actions/gradient-editor-commands.c:353 +#: app/actions/gradient-editor-commands.c:358 msgid "Replicate Segment" msgstr "Сделать копию сегмента" -#: app/actions/gradient-editor-commands.c:354 +#: app/actions/gradient-editor-commands.c:359 msgid "Replicate Gradient Segment" msgstr "Сделать копию сегмента" -#: app/actions/gradient-editor-commands.c:358 +#: app/actions/gradient-editor-commands.c:363 msgid "Replicate Selection" msgstr "Сделать копию выделения" -#: app/actions/gradient-editor-commands.c:359 +#: app/actions/gradient-editor-commands.c:364 msgid "Replicate Gradient Selection" msgstr "Сделать копию выделения градиента" -#: app/actions/gradient-editor-commands.c:371 +#: app/actions/gradient-editor-commands.c:376 msgid "Replicate" msgstr "Создать копию" -#: app/actions/gradient-editor-commands.c:386 +#: app/actions/gradient-editor-commands.c:391 msgid "" "Select the number of times\n" "to replicate the selected segment." @@ -1673,7 +1673,7 @@ "Выбор числа создаваемых\n" "копий выделенного сегмента" -#: app/actions/gradient-editor-commands.c:389 +#: app/actions/gradient-editor-commands.c:394 msgid "" "Select the number of times\n" "to replicate the selection." @@ -1681,27 +1681,27 @@ "Выбор числа создаваемых\n" "копий выделения." -#: app/actions/gradient-editor-commands.c:444 +#: app/actions/gradient-editor-commands.c:452 msgid "Split Segment Uniformly" msgstr "Равномерно разделить сегмент" -#: app/actions/gradient-editor-commands.c:445 +#: app/actions/gradient-editor-commands.c:453 msgid "Split Gradient Segment Uniformly" msgstr "Равномерно разделить сегмент градиента" -#: app/actions/gradient-editor-commands.c:449 +#: app/actions/gradient-editor-commands.c:457 msgid "Split Segments Uniformly" msgstr "Равномерно разделить сегменты" -#: app/actions/gradient-editor-commands.c:450 +#: app/actions/gradient-editor-commands.c:458 msgid "Split Gradient Segments Uniformly" msgstr "Равномерно разделить сегменты градиента" -#: app/actions/gradient-editor-commands.c:462 +#: app/actions/gradient-editor-commands.c:470 msgid "Split" msgstr "Разделить" -#: app/actions/gradient-editor-commands.c:478 +#: app/actions/gradient-editor-commands.c:486 msgid "" "Select the number of uniform parts\n" "in which to split the selected segment." @@ -1709,7 +1709,7 @@ "Выберите число равных частей \n" "на которое надо разделить сегмент" -#: app/actions/gradient-editor-commands.c:481 +#: app/actions/gradient-editor-commands.c:489 msgid "" "Select the number of uniform parts\n" "in which to split the segments in the selection." @@ -2151,7 +2151,7 @@ #: app/actions/layers-commands.c:232 app/actions/layers-commands.c:234 #: app/actions/layers-commands.c:291 app/actions/layers-commands.c:295 -#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:840 +#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:842 msgid "New Layer" msgstr "Новый слой" @@ -2163,7 +2163,7 @@ msgid "Set Layer Boundary Size" msgstr "Установить размеры границ слоя" -#: app/actions/layers-commands.c:512 app/core/gimplayer.c:255 +#: app/actions/layers-commands.c:512 app/core/gimplayer.c:253 msgid "Scale Layer" msgstr "Масштабировать слой" @@ -2175,7 +2175,7 @@ msgid "Layer Mask to Selection" msgstr "Маска слоя -> Выделение" -#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1085 +#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1066 #: app/dialogs/layer-add-mask-dialog.c:62 msgid "Add Layer Mask" msgstr "Добавить маску слоя" @@ -2722,7 +2722,7 @@ msgstr "Открыть текствый файл (UTF-8)" #: app/actions/text-editor-commands.c:132 app/config/gimpconfig-utils.c:552 -#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:393 +#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:396 #: app/core/gimpbrushgenerated.c:601 app/core/gimpbrushpipe.c:338 #: app/core/gimpgradient-load.c:63 app/core/gimppalette.c:360 #: app/core/gimppattern.c:328 app/tools/gimpimagemaptool.c:608 @@ -4552,7 +4552,7 @@ msgid "FG to Transparent" msgstr "Основной в прозрачный" -#: app/core/gimp-gui.c:148 +#: app/core/gimp-gui.c:153 msgid "GIMP" msgstr "GIMP" @@ -4584,39 +4584,54 @@ msgid "Modules" msgstr "Модули" -#: app/core/gimpbrush.c:531 +#: app/core/gimpbrush.c:534 #, c-format msgid "Could not read %d bytes from '%s': %s" msgstr "Невозможно прочесть %d байт из '%s': %s" -#: app/core/gimpbrush.c:566 +#: app/core/gimpbrush.c:554 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Width = 0." +msgstr "Неисправимая ошибка разбора файла кисти '%s': неизвестная глубина %d." + +#: app/core/gimpbrush.c:563 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Height = 0." +msgstr "Неисправимая ошибка разбора файла кисти '%s': файл повреждён." + +#: app/core/gimpbrush.c:572 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Bytes = 0." +msgstr "Неисправимая ошибка разбора файла кисти '%s': файл повреждён." + +#: app/core/gimpbrush.c:596 #, c-format msgid "Fatal parse error in brush file '%s': Unknown depth %d." msgstr "Неисправимая ошибка разбора файла кисти '%s': неизвестная глубина %d." -#: app/core/gimpbrush.c:579 +#: app/core/gimpbrush.c:609 #, c-format msgid "Fatal parse error in brush file '%s': Unknown version %d." msgstr "Неисправимая ошибка разбора файла кисти '%s': неизвестная версия '%d'." -#: app/core/gimpbrush.c:595 app/core/gimpbrush.c:715 +#: app/core/gimpbrush.c:625 app/core/gimpbrush.c:745 #, c-format msgid "Fatal parse error in brush file '%s': File appears truncated." msgstr "Неисправимая ошибка разбора файла кисти '%s': файл вероятно оборван." -#: app/core/gimpbrush.c:603 app/core/gimpbrushgenerated.c:648 +#: app/core/gimpbrush.c:633 app/core/gimpbrushgenerated.c:648 #: app/core/gimpbrushpipe.c:354 #, c-format msgid "Invalid UTF-8 string in brush file '%s'." msgstr "Недопустимая строка UTF-8 в файле кистей '%s'." -#: app/core/gimpbrush.c:610 app/core/gimpcontext.c:1299 -#: app/core/gimpitem.c:479 app/core/gimppattern.c:400 +#: app/core/gimpbrush.c:640 app/core/gimpcontext.c:1299 +#: app/core/gimpitem.c:480 app/core/gimppattern.c:400 #: app/dialogs/template-options-dialog.c:80 app/tools/gimpvectortool.c:339 msgid "Unnamed" msgstr "Безымянный" -#: app/core/gimpbrush.c:704 +#: app/core/gimpbrush.c:734 #, c-format msgid "" "Fatal parse error in brush file '%s': Unsupported brush depth %d\n" @@ -4784,11 +4799,11 @@ "%s" #: app/core/gimpdatafactory.c:411 app/core/gimpdatafactory.c:414 -#: app/core/gimpitem.c:274 app/core/gimpitem.c:277 +#: app/core/gimpitem.c:275 app/core/gimpitem.c:278 msgid "copy" msgstr "копия" -#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:286 +#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:287 #, c-format msgid "%s copy" msgstr "%s копировать" @@ -4851,7 +4866,7 @@ msgid "Rotate" msgstr "Вращение" -#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:259 +#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:257 msgid "Transform Layer" msgstr "Преобразование слоя" @@ -5212,7 +5227,7 @@ #. pixel size #: app/core/gimpimagefile.c:624 app/dialogs/info-window.c:552 -#: app/widgets/gimpsizebox.c:552 app/widgets/gimptemplateeditor.c:637 +#: app/widgets/gimpsizebox.c:429 app/widgets/gimptemplateeditor.c:637 #: app/widgets/gimptemplateeditor.c:673 #, c-format msgid "%d x %d pixels" @@ -5232,15 +5247,15 @@ msgid "Could not open thumbnail '%s': %s" msgstr "Не удалось открыть файл миниатюр '%s': %s" -#: app/core/gimpitem.c:1096 +#: app/core/gimpitem.c:1103 msgid "Attach Parasite" msgstr "Добавит шум" -#: app/core/gimpitem.c:1106 +#: app/core/gimpitem.c:1113 msgid "Attach Parasite to Item" msgstr "Добавить шум в элемент" -#: app/core/gimpitem.c:1145 app/core/gimpitem.c:1152 +#: app/core/gimpitem.c:1152 app/core/gimpitem.c:1159 msgid "Remove Parasite from Item" msgstr "Удалить шум из элемента" @@ -5271,37 +5286,37 @@ msgid "Floating Selection to Layer" msgstr "Плавающее выделение в слой" -#: app/core/gimplayer.c:252 app/pdb/internal_procs.c:152 +#: app/core/gimplayer.c:250 app/pdb/internal_procs.c:152 msgid "Layer" msgstr "Слой" -#: app/core/gimplayer.c:253 +#: app/core/gimplayer.c:251 msgid "Rename Layer" msgstr "Переименовать слой" -#: app/core/gimplayer.c:254 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 +#: app/core/gimplayer.c:252 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 msgid "Move Layer" msgstr "Переместить слой" -#: app/core/gimplayer.c:256 +#: app/core/gimplayer.c:254 msgid "Resize Layer" msgstr "Изменить размер слоя" -#: app/core/gimplayer.c:257 +#: app/core/gimplayer.c:255 msgid "Flip Layer" msgstr "Отразить слой" -#: app/core/gimplayer.c:258 +#: app/core/gimplayer.c:256 msgid "Rotate Layer" msgstr "Вращать слой" -#: app/core/gimplayer.c:341 app/core/gimplayer.c:1129 +#: app/core/gimplayer.c:339 app/core/gimplayer.c:1110 #: app/core/gimplayermask.c:236 #, c-format msgid "%s mask" msgstr "%s маска" -#: app/core/gimplayer.c:387 +#: app/core/gimplayer.c:385 #, c-format msgid "" "Floating Selection\n" @@ -5310,42 +5325,42 @@ "Плавающее выделение\n" "(%s)" -#: app/core/gimplayer.c:1055 +#: app/core/gimplayer.c:1036 msgid "Cannot add layer mask to layer which is not part of an image." msgstr "" "Невозможно добавить маску слоя к слою, не являющемуся частью изображения." -#: app/core/gimplayer.c:1062 +#: app/core/gimplayer.c:1043 msgid "Unable to add a layer mask since the layer already has one." msgstr "Не удалось добавить маску слоя, так как у слоя уже есть маска." -#: app/core/gimplayer.c:1069 +#: app/core/gimplayer.c:1050 msgid "Cannot add layer mask to a layer with no alpha channel." msgstr "Невозможно добавить маску слоя к слою без альфа-канала." -#: app/core/gimplayer.c:1079 +#: app/core/gimplayer.c:1060 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "" "Невозможно добавить маску слоя, отличающуюся\n" " размерами от указанного слоя." -#: app/core/gimplayer.c:1183 +#: app/core/gimplayer.c:1164 msgid "Transfer Alpha to Mask" msgstr "Преобразовать альфа-канал в маску" -#: app/core/gimplayer.c:1343 +#: app/core/gimplayer.c:1324 msgid "Apply Layer Mask" msgstr "Применить маску слоя" -#: app/core/gimplayer.c:1344 +#: app/core/gimplayer.c:1325 msgid "Delete Layer Mask" msgstr "Удалить маску слоя" -#: app/core/gimplayer.c:1445 +#: app/core/gimplayer.c:1426 msgid "Add Alpha Channel" msgstr "Добавить альфа-канал" -#: app/core/gimplayer.c:1467 +#: app/core/gimplayer.c:1448 msgid "Layer to Image Size" msgstr "Слой к размеру изображения" @@ -6805,28 +6820,28 @@ msgstr "Размер при печати:" #. the image size labels -#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:241 +#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:222 #: app/widgets/gimptemplateeditor.c:236 msgid "_Width:" msgstr "_Ширина:" -#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:248 +#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:225 #: app/widgets/gimptemplateeditor.c:243 msgid "H_eight:" msgstr "_Высота:" #. the resolution labels -#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:338 +#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:273 #: app/widgets/gimptemplateeditor.c:363 msgid "_X resolution:" msgstr "Разрешение по X:" -#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:345 +#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:276 #: app/widgets/gimptemplateeditor.c:370 msgid "_Y resolution:" msgstr "Разрешение по Y:" -#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:357 +#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:269 #: app/widgets/gimptemplateeditor.c:383 #, c-format msgid "pixels/%a" @@ -7477,11 +7492,11 @@ msgid "%d minutes" msgstr "%d минут" -#: app/display/gimpdisplayshell-dnd.c:96 +#: app/display/gimpdisplayshell-dnd.c:98 msgid "Drop New Layer" msgstr "Опустить новый слой" -#: app/display/gimpdisplayshell-dnd.c:140 +#: app/display/gimpdisplayshell-dnd.c:142 msgid "Drop New Path" msgstr "Опустить новый контур" @@ -8945,12 +8960,12 @@ msgstr "_Кисть" #: app/tools/gimppaintoptions-gui.c:103 app/widgets/gimpbrushselect.c:201 -#: app/widgets/gimplayertreeview.c:330 +#: app/widgets/gimplayertreeview.c:332 msgid "Opacity:" msgstr "Непрозрачность:" #: app/tools/gimppaintoptions-gui.c:108 app/tools/gimpselectionoptions.c:374 -#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:323 +#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:325 msgid "Mode:" msgstr "Режим:" @@ -10356,24 +10371,24 @@ msgid "Set Item Exclusive Linked" msgstr "Установить связь с элементом" -#: app/widgets/gimplayertreeview.c:250 +#: app/widgets/gimplayertreeview.c:252 msgid "Reorder Layer" msgstr "Реорганизовать слой" -#: app/widgets/gimplayertreeview.c:311 +#: app/widgets/gimplayertreeview.c:313 msgid "Keep transparency" msgstr "Сохранять прозрачность" -#: app/widgets/gimplayertreeview.c:846 +#: app/widgets/gimplayertreeview.c:848 msgid "Empty Layer" msgstr "Пустой слой" -#: app/widgets/gimpmessagebox.c:458 +#: app/widgets/gimpmessagebox.c:460 #, c-format msgid "Message repeated %d times." msgstr "Сообщение повторено %d раз" -#: app/widgets/gimpmessagebox.c:460 +#: app/widgets/gimpmessagebox.c:462 msgid "Message repeated once." msgstr "Сообщение повторено один раз" @@ -10405,16 +10420,12 @@ msgid "Invalid UTF-8" msgstr "недопустимая строка UTF-8" -#: app/widgets/gimpsizebox.c:290 -msgid "Keep aspect ratio" -msgstr "Фиксированные пропорции" - -#: app/widgets/gimpsizebox.c:574 +#: app/widgets/gimpsizebox.c:451 #, c-format msgid "%d x %d dpi" msgstr "%d x %d точек растра" -#: app/widgets/gimpsizebox.c:578 +#: app/widgets/gimpsizebox.c:455 #, c-format msgid "%d dpi" msgstr "%d dpi" @@ -10856,6 +10867,9 @@ msgid "Image Editor" msgstr "Редактор изображений" +#~ msgid "Keep aspect ratio" +#~ msgstr "Фиксированные пропорции" + #~ msgid "Resize Error: Both width and height must be greater than zero." #~ msgstr "" #~ "Ошибка изменения размера: и ширина и высота должны быть больше нуля." diff -uraN gimp-2.2.0/po/sk.gmo gimp-2.2.1/po/sk.gmo --- gimp-2.2.0/po/sk.gmo 2004-12-19 03:11:56.000000000 +0100 +++ gimp-2.2.1/po/sk.gmo 2004-12-28 16:58:44.000000000 +0100 @@ -1,224 +1,232 @@ -N Jm &kGZ9GA$Nfi<k\@2 ;<PxO29L-9;7* bl -s ~ - -  - - -6Pf0m -  ) 5 -C -N Y fr  K.1! &5<Xg~ -  - , -5@Obz*6%8Umv#7#Ko - * 7AQ1f3 - - 2BASJ< 0 >L\u + <Jb -kv&$ & 0>E^ek"  -7/g m z   mS X f t~  C7=R@6dm3<#&!Jl  6HZw, *8 X y!  $1ELS Ygz .557G8),+C2` OA;%}&41#1 Uc   -  &?Q0c  +EXkt   - $)> [|"% 4BR [go  ;Tt "" - -;)Fp,!##!;%].  /#E-i%/G LZ -t - - %4 ;I -\g-n  (9L\o  %! 5BU&m   $ 3@ P]o ~ - -# -.-9 gs z  -  3 FTn w :?8; t  - -   - ) 5 -? JV _l >  2BTcu  ';Q ak~ - - & <I ^k{ -*!!C.Z#"&1X nz,#  '9a'~FTV   &0 -G R` }  &(/$X}=6<?5Au79c)9B= -fH>CJ2g}  !6;M ] gs   (;Mdt &=Qe y -   -    -'C KWg w( + 1 8  @ M U [  -a Ol   -  n - - - +M Jm &kGJ9GANVi<kL@2;,PhO2 9<-v9;7 R\ +c n +x +  + + +&@V0] +  % +3 +> I Vb r ~ K.z1!%,HWnr +  +   +%0?Rj|*6(E]f'#;_y +   '1A1V3 +| +"2ACJ< .<Le}   ,:R +[fw&$   .5NU[u"}  + 7W ] jx   mC H V dnw  C7 +=B@6d]{3<#!:\y  &8Jg, ( H i!w  !5<C IWj y.55778o),32P OA+%m&41#! ES o { +  /A0S  + 5H[d t  + $ +. Kl" $2B KW_ +Dd y"" + ++)6`,z!##!+%Ms.  #5-Y% +7 <J +d +o +z $ +9 +LW-^  )<L_v  %! %2E&]    #0 @M_ nz + +-) Wc jx  + # 6D^ gq :?8+ dpy  + +  +  % +/ :F O\p > "2DSe  +A Q[n + +  ,9 N[k +*!3.Jy#"&!H ^j~,# ')Q'nFTF    +7 BP m  ($Hm=s6<?%Ae79c9}B=f8>CJ"gm  &+= M Wc u  +=Tdx-AU iw +   +   + 3 ;GW gu( ! (  0 = E K  +Q O\   +  ^ +o + +  - - - - - -. -, ? R  -a  l  z           " u1    cL z8>rF,A&R'y        *9KQiz~  -$ -7>F K Xd -H -3 >HX -`Hk!B1,^qv { -  `8C10Hy   - -+ C(Q -z -H -  -  -:Pe t       # 1 >KL36"( KUm $   (?+h)*! /MTc*t' -0;K]s  ;LUd}   ( < !T v        !-!-5 -d5 o5y5555 -55 55 55 6 66%686 M6 Y6 e6s6&6,6 666 -7 -7767T7s7774777 -788 - 8 +888G8 P8^8f8m8 88 8!88 88 99)9D9 T9^9o9 999?9999::5:R:4:);2;-:; h<r<{< -< <#<<-< ==&= ;=E=M=d=m= -v= ==3>G>[> d>q>z>>>> -> ->>> -> > ???3? D? N?!X?z? ~??? ? ???? ?@@ ,@8@ -K@V@h@ {@@ @@ -@@@@AA A!+AMA!kA#AA A -A9AUB=oB<B=B"(C?KCCC CCCC(C,CD.D@DQD -bDmDDDJD DEE,E FE SE`E{E E EEEEE; FGFaF pF }FFF F FF F F FGG ,G6GQGnGGGGGGGG -HH1H+HHtHHHH H H HH H II#*I NIZI lIxIII6IIJJJ 4J7AJyJJJJJJJ J KK*K >KKK iKuKKK -K -KK KKK KK -KL -L L+L -BLMLmL LLLLL LMM/M?MSM4hMMMMMNN%N.?NEnNN N NN N OO/O 5O CO OO -[OfO wO -OOO OOOOONP -PPPP Q QQ1QMQcQ#}QQQ QQQ R#R#=RaRR RRRRR$S'SFS [SeSuSSS!SSS T -TT2T BTOTnTTTTT TTUU3URUiU UUU UUUUUV*VAV -SV^VnV"VVV VVVW2WKW=[W6WSWJ$XoXXX XXXXXYY5Y GYSYbYwYY YYYY YYZ,ZGZaZ|ZZ ZZZZZZ["[)[N\P\Kd]=]]*r^^B_3_T`?n```2aBaatc4wd/dd eeeeeeeeefff0fCf`f uf ff;ff ffg gg 3gAgQg#eg gg g g&gg -h hh.hHh"Zh}hhhhhhh i i0i?i Pi]ivi iiiii+iii j jj $j1j Aj -OjZj`jgjoj xj j8jvjAkHk`kxk k kk k!kkkl1lJlgllllllll l l l mmm&m /mftt`z017>Pe v6o-/64>#sG`XUOWǡСء -   #0T \jsyǢ٢    -7?E HRe  ƣӣڣ  !2 5 A KYmt -{ ä ̤ڤ ) -1<N ^l{   ɥ ٥1 B NZir   -æߦ+DUg w    ħЧ %, ?LO X b -l -w  ɨϨըۨ  %? GT[bj -ѩ   - :F ISX^qƪ  $ -, 7D T b -p {     ˫ի ݫ -  , 9EN Ucsz     ¬Ь ߬  # 0 <I^ q~í(խ%=O4i1/Ю&F N[au# ˯"4 -<GYjqz ̰ް -  - -"- 3AGW]d - -ɱα ,069HL -R]di5m ϲԲ۲ ! ( Ij - ų ̳ ֳ .DaC-^s?<@S}GѷhsEq<M7A4UvL̺8BR8Aλ;;L  -   - üϼ ߼ -  -" -7#@d7ٽ + + + + + +. + / B  +Q  \  j  v           u!   v c< z(.r6 1&B'i       );AYjn  +  '.6 ; HTo +H +# .8H +PH[!B  1Naf kx +  `(C108i o | + + 3(A +j +uH +  +  *@U d q       ! .K<36" ;E]q $   (/+X)*!/ =DS*d' + +;Qas *3B[n    !2 T p         !-!H"Q"d"h" """" ""3"" #!#1# I# +V# a# m#z#####$$ *$8$O$ V$b$w$$$@$$-$% *%7% <% J% V%c%% %% % %%%%&& .& 8& D&P& g&u&& && +&&& & ' $'0' +F'Q'f'o'w'''''''' '' ("( +*(#5(Y(r((((((+()) $) 2) +>) I) V)d)y)))) )) ))*,*"C*f*o** *****$**+%+4+ C+O+ W+ e+q+ v+ ++ ++ + +++ +++ , ,,1,@,W,m,,,,,, ,,,-- + - +-7-I-]-p- - --- - - ---.. $. +1. <.F. a. n.z. . . .,..!././E/)b/ // / ///// / 00B$0Ag0000 0001 1+1=1R1Z1b111222 +2)2 =2K2b2 t2222"2!2!393Q3j3 3 3 3333 33V3+44 `4(j44"44 4 445%5 +B5 M5W5_5n55 +55 55 55 5 5566 +6 76 C6Q6&k6,6 666 +6 +66727Q7i7|74777 +777 +7 88%8 .8<8D8K8 h8t8 8!88 88 889"9 29<9M9 _9l9s9?{999999:0:4:;;-; F<P<Y< +i< t<#~<<-< <<= =#=+=B=K= +T= _=k=>%>9> B>O>X>`>f>|> +> +>>> +> > >>>? "? ,?!6?X? \?j?~? ? ???? ??? +@@ +)@4@F@ Y@g@ |@@ +@@@@@@ @! A+A!IA#kAA A +A9AUA=MB<B=B"C?)CiC{C CCCC(C,CC DD/D +@DKDaDvDJD DDD +E $E 1E>EYE sE EEEEE;E%F?F NF [FgFF F FF F F FFF +GG/GLG^GrGGGGGGGGH+&HRHjHHH H H HH H HH#I ,I8I JIVIkII6IIIII J7JWJuJJJJJJ J JJK K)K GKSKhKnK +uK +KK KKK KK +KKK K L + L+LKL hLtLLLL LLL MM1M4FM{MMMMMMN.NELNN N NN N NN O O !O -O +9ODO UO +aOlO{O OOOOONmP +PPPPP PPQ+QAQ#[QQQ QQQQR#R?R]R qR~RRRR$RS$S 9SCSSSmSS!SSSS +SST T-TLTgT~TTT TTTTU0UGU `UnUU UUUUUUVV +1Vf Sf _flf;uff fff ff gg/g#Cg ggtg g g&gg +ggg h&h"8h[hshhhhhhhhii .i;iTi hitiyiii+iiii ii jj j +-j8j>jEjMj Vj bj8ojvjk&k>kVk ^k kkwk }k!kkkkl(lElblilxlllll l l l lllm mm*m 9mEm Vm bmnmm!mmm(mn#n ?n MnZnan +gn rn nnnnn +n n +n nn oKo1ao7o1o5oH3pA|pp;Iq!qq irr qs~t}'u*uBvwwxxy $y2y)9y5cyy1Iz0{z0z1z({C8{|{S{,Q|2~| |A}A~*V~~- (FG2zc2S - +؈$3<BTg   lj  +< LZ q{Ջ"1K[ jw +3ˌ;;;wF  gq v  ҏُ(3A#uĐԐ"( /;XaFj +ё +ܑ     " 0!>!`  +Kƒ0QC.$є5P,G}-ŕOjCoej~pnoߙwO<ǚ?>Dtt`mΜX؝0ޝ.C Tb6do  4#QuG>XUߠO5 + ʡ ֡ #2 :HQWfmv ɢӢ آ  # &0C^ }      )7KR +Yd ly ͤ  +, <JY iw   ĥץ  ,8GP j t +̦ަ "3E U v   çҧ ا + *- 6 @ +J +U`y  ǨϨר   %29@Hbq +  ʩ֩ީ  $ '16<Ojs{ Ī Ѫߪ -  -: EOXa p ~  - -  Ǿ ܾ Mf:5($^.@On  &?Xp+83Qks/E'] -  #5 -F -Q\l|j654j -9D`|   ?;R@  /M` g's #3L]f n|A7 <H P\l u! , -  & CM ` n |2  $,; DNp^  ! .I_hNz?Q L[;n,S!4 O3H.|*)- 6BVu$1'Lt.* :Uhz "5DIaKMLE?6, "6Y&x8*(sH@,,*<W?($4 FPk - ,E:V  1%Wi -{   -(3E\o!8.S - -  (--Gd'z'# -=1H!z63.+N+z+)52:J_y-2$1>p*BTc+t - #8GZar ; ) B -LWl %<Mb /%&6Cz*=Ocr # /? _ -l2w -   8 -Vav  /Q?R0  !/E Zdu -!*<L\ct?(/BVi|# #+G` !0Nau#,>\n~1  ,:F&$'"-Ao - 2(*<U*u,!&-TMq^$-<W#p  8<8u/G -g,r)H?=[DF<%<bJ!OlKsJ|VTzs  -?F] p| ";Uo /9!Ac&&& %2C T`r !0@Sfy+) -0 -;F[mu |S ++4`o ~  , < Q ,`   * -F -E G  | \  a }m   '3EV^o00"2F[bqy%)-1G-y  %    )3; DNe"y& _ -s ~  L+Q'y8    ! -1< B Pj]Ag<6&:Kbr",-.<k{Z - @N`x    - ".@}_ "*Mj slN;P!  .!8Zp&' )35]13 89 r~225J am   0 M d $      !8!'V!!~!!!!!!"'6"!^"" """""$#-#L#)`# $$$"$ -$$$%%&%9-%g%x%%% %%%%)%)#&M&h&&&&&&' ''4'S'f'[o''<'(*(:(A(R(b(%r( (((((((()()R)m) ) ) )))))*#*:*J*d********+ +'+ --+ 8+D+I+`+|+ +++++ +',@,$],,,,,/,,-- -0-?-Q-b--#-#--..*.=.Q.n.$..&.#./ ///"/,:/g/~///// ////0!0?0S0i0{0000000 11:1$U1$z111 -11 11#1 2'2 -/2 :2G2]2x222 2 222 2 3$363F3\3 s3 3 3$33 3#34 4 4D+4p4(44%4(49$5^5m5 5 555 555 56B6A]6"66666 6 7 7 737E7L7U7 7788"8+8=8Z8 o8888 88!9;9[9{9 99 9 9 99 ::: 2:h<:.::1:;0;H;h;|;$;!;5; <<< "<0<E<W<h<x<< <<<<<<<= =#=7=+P=#|==== ==)=)>9>S>m>>0>>> >>>>? ?-? 4?B?K?S? l?v? ?)???? @@)@B@ U@a@s@ @@@F@@@A.A*MA*xAA7cBBBCBD -DD *D 6D&DDkD3D -DDDDDD E E E2EDEEF)F 1F>FFF NF$ZF%FF FFFF GG"G&G@G QG [G!hGGGGGGG"H $H.H7HHHdHHHHHHHHI)I@IPI$hI#II II-I* J+6J+bJ!JJ JGJiKFKIKJL+[L>LLLL M -M$M%*M&PMwMMMM M#M#M"NP3NNNNNNNO0OPObOxOOOO<O,!PNPaPtP+PPPPP QQ-Q AQMQ hQtQQQQQQQR1R*PR{RR&R1R!S-0S^SmSSSSSS -T*#T4NTTT TTTTBT#:U^UfUnUUPUU V(V ;VEVeVVVVVVVV W&W>W -GWRW fWrWyWWWWWWWWW%X.X0@X#qXXXX%X -Y)Y:YNYgY~YY:Y&YZ,Z'IZqZZZ1ZFZ0[E[Z[j[[ [[[[[[ \#\@\S\f\z\\$\\\\\]^ ^)^/^D^ -L^W^h^^^"^^^ __&_D_\_%x___ ___`,`%H`n`` -`````" a,aIa\acasaa a&aaa b)bEb`bobb&b#bb -c 'c(5c(^c cccccc d=dYdid}d&ddddee5e!Rete0e/eKeJ?fffffff fg $g2gQgagjgzggg -g!gggh&&h$Mh&rh)h*hhii0iHiaiiiii1jUj#kZlAwll7dmmAn8nPoJmo[o9pNp prEt;att -Pu[uaufuluuu -uuu uuuv4vMv]vmv0vvvvvw#wBwTwfw#wwwww-w+xHx \x}xxx1x'y0yBy]ysyyyyyzz%z?zYzlz zzz -z,zzz -{{ -&{1{E{^{ v{{{{{ {{6{y{ r|~|||"|| |%}&)}P} m} }}!}'} ~ #~ 0~ <~F~ c~~~~ ~ ~~ -~~~~!2D[(l))+>Fcr - €Ӏ%  .>OaCf7895UJPւ'< ! -?JĉU[k.q*ˌ44č630%d?ʎi^4ȏFDXTYAI#,ߖS@RUVN3Ey*Ɲ̝+ߝ* 6=E T^g!О$. -S ^h yGݠ&:Pe&¡ס* 2@Tj{DBQ*|MVX  ,GPYn  "¦(':6$qɧ'ܧ).J\`iyI( & -3>Vl.,(18Mj2cO.BݬZ X{gԭ]<yzrux~ GGݳF%uleu۵a:19 BPds/EGN1V*?yɹlCi. IW k w ǻ -Ի߻3 :F `jp  Ѽ $5D -_ j xŽ  % -AL Tbwz -þ ξؾ -'0 GT'p  -̿׿.BUm! -'2B S] |   %9Vj&   '& 8DX kx   !   ! -+ 6 C -MX_ g q{  "$7 \h  -  -$*1C^ fp0 " 1?Pc r     $ 7DShq y    1=U]`en# - );N_1p  -%K,?x9 $ -C -N Yc}9,'$,C?V  &.J]s   -   -* 2 ? I Ubg   $*1M5 %%6$\$  5"Org <}qwn {b](  56ASMH$ IM: =`! >g{Z@4W; ?BM|J3~9']Jr*$li =6yc*iZVkO*u).k# h5- bdfzcWQboG Z3 rh &Y5E\"8R4uq"fY6+!aAq 31v)%70Me {`dU@#} 0-) &w /KDHw@J[,Nh}cgFd C oDtS:s>G! E2sQs4G ?<j:sWA4p1 -LM*Urgc3puA |ny6 dc".= @BJg"Bmv} eu  yN K bx  'd8 T(,$ %D4+ k_!QV_U]'d #TU, ? /[ - am1 V.FH 9viT</ v/< 9 \g$?m~!Ranz  0WFH7JQ]1` '4@F^,,  P9& ff 7 (X_k{L (% ) ( 7P:A8bl$B-(4 yg} +6 ok4=`CTS= | mx f9 A66CNK5=yz1v pSg9-P)+Wy&((Lc>&@*N}@ QC2XH.r G?Ee! s^zz12G$3fEN -C<Gqu7};"' 0L(0Gt=Y/j!,q6zPf'r:,%O+ T{7?HOe<xCo)" -Jq/Qt:_xbthw-LDhSBa] cj00[w2R?8o& ].l/Db\{J|8.+F!IMw\x6 '@4X_=2hIK q4q>S~5L TR`2:.VK9!R35Fm* #70 m=1 vPb;uHlYOjls["\Ph8^#|hbE_>evRt^KQ^~GP >jDXY.H & p *8G# hExUH^R-k] -M \L*wYeBiV^_lU2X7B<: ;QvSj --9C3lCa ? Q'`s,:=Kt>i$Z +% c. C2 nC|@~N9X*Kp%Mx0W;~ UJ 'wu> 1$FN0 oIKn1AJ -F )#/g32aFm&<pH\{5 ;r P(p%Xz)P+W wIB  ;YI]]ftmzN5Z_r>Ui <B+oO)xE_A,aTrLAVjDn e -\8y8|pZ$!XRVdA[5ME W~t  p[#)k{GK`Nt`D W T3 @ 3~jmn|}I|sLLS `;c" q#MB&Z-I~O RI yoUze;IdVN n&[/V8 ,Yk71iiFyJZalD%;[x%D5neS}9a  -O {Z'2/6+: X>^#7k?O lvY"-^fs TE% -io[u d* -\O.j?u$<E" + " 2 @ +N Y g t ~   ū̫ +ҫݫ  + #, 3AQX a n |   ɬܬ   '< O\bk|(ܭ-4G1|/ޮ$ ,9?S#d ȯϯ߯" +%7HOXn Ѱ + + +  %5;B +bm~ +ױ  +&* +0;BG5K  ϲ!  'H +h s  ij˳ ҳ."?!-<sj?޶<S[Ghs`EԸqM7ڹAUTL8B08sA;;* fp +w   +   +˼ּټ + #Bbx7ν +  + #-6? N \ h +v +    ƾҾ׾MD:˿5$<au{ -L_p 6Ng|+8/IQo #';c +  # +$ +/:JZjp65Hafv| +">Zv |  ?;0l@   +> E'Qy *;D LZwA7 & .:J St}! , +  !+ > L Z2g  + ",p<  ! '=FNX?QL9;n,1!^4 O3&.Z*)   4Sh~$'*Rls.* 3FXjrz "I?KML#?p6,"7&V8}*(s&@,,<5?r($ $.I +^ iu +#:4o  15G +Ydy   +(3#:Mi!.1`} + + p} (--%B'X'# +1&!X6z3.+,+X+)5(=Wp-21Ni* 2A+R +~ %8?P iu;|   +*5J^s +@ ]jr/y%6!Xl~-APe x#   = +J2U +  +4?Ti~  /QRo0   # 8BS +j!u*:ARg|?(  4GZl#  %>]} !,?So#~ +:L\l{1  +:$&_$'"-M +it 2(3*S~,!& 2MO^ 5#Nr  8<Sm % +E,P)}H?=9DwF<<@}JOJKsJZVTzQ  $; NZj3M_p !A_&{&& ! 2>Pbs 1DWo+ + +$9KS ZSh~  +>M \fn  +  / ,> k }  +$ +# %  | :  ? }K    #4<Me0y0$9@OW`i% 1%-W  %     ",C"W&z_ +Q \f x L+QW_8p    +  .j;AE<6)@P"c, .IYZh   ,>Vj}    +  }="+H Q_tlNPh! !8N]e&')5;1q3 8 P\o22( ?Kcs  . $I n      !' !!H!j!!!!!!'"!("J" b"o""""$""#)*# T$`$t$"$ +$$$$$$9$1%B%Z%m% %%%%)%)%&2&M&j&&&&& &&&'0'[9''<'''( ((,(%<( b(l((((((()()7) O) \) j)x))))))**.*I*Z*t******** +* +++*+F+ ^+l++++ +'+ +,$',L,U,],z,/,,,,,, --,-L-#j-#-----..8.$P.u.&.#......,/1/H/h/{/// ////// 0030E0]0n00000001$1$D1i11 +11 11#111 +1 22'2B2Y2q2 2 222 2 2$233&3 =3 K3 X3$e33 3#33 3 3D3:4(Y44%4(494(575 V5 d5q5y5 555 55B5A'6"i66666 6 6 666777 7777778$8 98Z8s88 88!89%9E9 `99 9 9 99 999 9h:.o::1::0:;2;F;$X;!};5;;;; ;;<!<2<B<Q< X<f<|<<<<<< <<=+=#F=j={== ==)=)=>>7>I>0Z>>> >>>>> >> > ??? 6?@? X?)e???? ??? @ @+@=@ S@a@g@Fn@@@@@*A*BAmA7-BeBvBCBC +CC C D&D5D3MD +DDDDDD D DDDEEEE EFF F$$F%IFoF FFFF FFFF +G G %G!2GTGcGyGGGG"G GGHH.HKH\HsHHHHHHH +II$2I#WI{I II-I*I+J+,J!XJzJ JGJiJFIKIKJK+%L>QLLLL L +LL%L&MAMRMdMtM M#M#M"MPMNNbNuNNNNNNO,OBO_O~OO<O,OP+P>P+PP|PPPPPPP QQ 2Q>QwQQQQQQQ*RER`R&R1R!R-R(S7SQSjSSSSS*S4TMT`T sTTTTBT#U(U0U8UNUPeUUUU VV/VOV`VpVVVVV VVW +WW 0We0\e/eKeJ fTfpfffff ff ffg+g4gDgTggg +zg!gggg&g$h&AL{I3}9&]Iq)$li =5xc)hYVkO*t(.k# h4, adeybWQbnGZ2 qg&X4D[!7R4uq!fX5+ `@p  21u)$70Le z`cT@"} 0,( %v~/KDGv?J[,Ng|cfFc B oDsR:r=F ! E2sPs3F ?<i9sVA4p1 LM)Trgb2 pu@ |my5 db!.< ?BIg"Alv} eu  yMJ aw  &c7 S'+# $D3* j^!PV_T\&d #SU, >/[ `m1 V-EG 8viT;. v.; 8 [f$>l~!Qany + /VEH6JQ]0_ '3?E]++  P8% ee 6 'X_jzL'$ ( ( 6O:@7ak#B,(3 xg| *6 oj4<_CT R< { lw e8A6~5BMJ4<xz0u oRg8,O(*Vy%''Kc>%@*M|? PB1XH-q +G>Dd s]zz01F#3fEN B;Fqu7|:"& /L(0Fs<Y/j!,q5yPf'r9+%N+ S{6?GOd<xBo(! +Ip.Ps9^wbthw,LDgSA`\bj/0Zv2Q?7n& \-k.Ca[{I|8.*E HMw\x6 '@3W^=1gIJ q4p>S}4K TR`1:.UK9 R~35Em) "7/ m<0 uPb;tHlXNjkrZ"\Og8^#|haE^>dvQt]JQ]~FO +=iCWX-G % +o )8G" hDwTG^Q-k] +L [K*vXdBhU]_lU1X7B<9 :PuRi -9C3kCa > Q'_r+9=Ks=i#Z +% b- C1 nB{@~N8W)Jo$Mw/W:~ UI &wt= 1$FM/ nIKn0@J-E )"/f22`Fl&;pG[{4 :r + P(o%Wy)O+V vIA  ;YH\\etlzM4Y_q >Uh;A*nO)xD^@,aSrKAUjCmd +\7y8{oZ# WQUcAZ5LD W}s  p["(jzGJ`Nt`C W S2 ? 2}imm|}H{rKKR _;c! +p#LA%Y-~H}N RH xnTye;IdUM n&[.V7 +Yj60hhFxJZ`kC$:Zx$C5meS|9a  O {Y&2.5*: X=^"6k>N luY",^fr TE% ioZt c* +\N-i?t$;D! Invalid option "%s" Usage: %s [option ... ] [file ... ] @@ -262,7 +270,7 @@ Make sure a proper setup for your display environment exists.GIMP help browserGIMP is not properly installed for the current user. User installation was skipped because the '--no-interface' flag was used. To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Generate optimum paletteGet Monitor ResolutionGiganticGimprc proceduresGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient:GradientsGradients MenuGrain extractGrain mergeGrayGrayscaleGreenGreen:GridGrid line spacingGrow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_counter-clockwise hue)HSV (clockwise _hue)HTML notation:H_eight:H_elp browser to use:Handle position: %0.6fHard edgeHard lightHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHelp proceduresHex:HighlightsHint for the _docks:Hint for the _toolbox:HintingHinting alters the font outline to produce a crisp bitmap at small sizesHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB color layers.Hue-_Saturation...Hue:HugeI_con & TextI_mageI_mport Path...I_nterpolation:I_nterval:IconIcon & descIcon & textIf available, hints from the font are used but you may prefer to always use the automatic hinterIf enabled, the move tool changes the active layer or path when a layer or path is being picked. This used to be the default behaviour in older versions.If you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.Illegal variable name in environment file %s: %sImageImage + GridImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage ThumbnailsImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage maskImage resolution is out of bounds, using the default resolution instead.Image sizeImage sourceImage typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport paletteImport pathsImported PathIn_kIn_vertIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorIndexed Color ConversionIndexed color layers are always scaled without interpolation. The chosen interpolation type will affect channels and masks only.Info WindowInitial zoom _ratio:Initialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' -InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratioKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine +InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine spacing:Line Width:Line _Style:Line style used for the grid.LinearLinked itemLoadLoad CurvesLoad LevelsLoad Right Color Fr_omLoad curves settings from fileLoad levels settings from fileLoad text from fileLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower Path to _BottomLower channelLower channel to bottomLower layerLower layer to bottomLower pathLower path to bottomM_agnifyM_asterM_ove to Screen...Ma_pMagentaMagenta:MagnifyMake _transparentManage Loadable ModulesMarching _ants speed:Mask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:Max Depth:Maximum _filesize for thumbnailing:Maximum _new image size:Maximum color differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMeasure the rulers and enter their lengths:Median:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMerge vectorsMessage proceduresMessage repeated %d times.Message repeated once.Messages are redirected to stderr.MidtonesMigrate User SettingsMinimal number of _undo levels:MiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMouse WheelMoveMove AnchorsMove ChannelMove Floating SelectionMove GuideMove Guide: Move LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove ToolMove itemMove layers & selectionsMove selectionMove the current layerMove the current pathMove the selected filter downMove the selected filter upMove to Screen...Move: MultiplyN_umber of colors:Na_vigationNa_vigation WindowNa_vigation preview size:NameName:NavigationNew ChannelNew Channel ColorNew Channel OptionsNew Color from _BGNew Color from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channelNew channel with last valuesNew channel...New color from BGNew color from FGNew gradientNew importNew layerNew layer with last valuesNew layer...New paletteNew path with last valuesNew path...New patternNew vectorsNo brushes available for use with this tool.No filter selectedNo linear gradients found in '%s'No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of _processors to use:Number of grid linesNumber of layers:O_ther...OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset by x/_2, y/2Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the palette selection dialogOpen the pattern selection dialogOpen the selected entryOpening '%s' failed: %sOpening '%s' failed: %sOptions: @@ -314,7 +322,7 @@ did not save indexed colormaps correctly. Substituting grayscale map.YYellowYellow:You are trying to create an image with a size of %s.You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your input device settings will be reset to default values the next time you start GIMP.Your keyboard shortcuts will be reset to default values the next time you start GIMP.Your window setup will be reset to default values the next time you start GIMP.Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_All_Anchor Layer_Antialiasing_Arbitrary Rotation..._Artistic_Aspect_Auto_B_BG Color_Background color:_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Bucket Fill_Buffer_By Color_By Color Select_C_Cap style:_Channels_Clear Errors_Clear Undo History_Clone_Close_Close Tab_Clouds_Color Tools_Colors_Configure Color and Opacity..._Context_Context Help_Copy_Copy Named..._Create Image from Template..._Crop & Resize_Crop Image_Curved_Curves..._Dark Check Color_Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Desaturate_Detach Tab_Device Status_Dialogs_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Ellipse Select_Enable layer & channel previews_Enormous_Equalize_Eraser_FG Color_File_Fill with:_Fit Image in Window_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground color:_Free Select_G_Generic_Gigantic_Gradient_Gradients_Grayscale_Grayscale copy of layer_Grow..._Guides_Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Info Window_Intersect with Selection_Invert_Join style:_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Left Neighbor's Right Endpoint_Levels..._Light Check Color_Light Effects_Lightness:_Line Style_Linear_Linked_Load Left Color From_Lower Channel_Lower Layer_Lower Path_M_Manually_Map_Mask_Mask to Selection_Maximum number of colors:_Measure_Medium_Merge Palettes..._Merge imported paths_Migrate GIMP 2.0 user settings_Misc. Stuff_Miter limit:_Mode_Module Manager_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._Padding Color_Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preferences_Preview_Preview Size_Previous tip_Print Size..._Properties_Quick Mask Active_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Reassign shortcut_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Remove unused colors from final palette_Render_Replace_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Order & Visibility_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Right Endpoint_Right Neighbor's Left Endpoint_Rotate_Saturation:_Save_Save Left Color To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Scale imported paths to fit image_Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Show Image Selection_Show in Toolbox_Sinusoidal_Small_Smudge_Snap distance:_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tool_Tools_Transfer layer's alpha channel_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Visible_Web_Web browser to use:_White (full opacity)_White Balance_Width:_Wrap around_X resolution:_X:_Xtns_Y_Y resolution:_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for icon typeinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetermillimetersminuten/apercentpicapicaspixelpixelspixels/%apixels/%spointpointssecondtips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: gimp.HEAD Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-19 03:11+0100 +POT-Creation-Date: 2004-12-28 16:58+0100 PO-Revision-Date: 2004-11-27 10:27Stedn Evropa (bn as) Last-Translator: Zdenko Podobný Language-Team: Slovak <> @@ -367,7 +375,7 @@ Uistite sa, že existuje správne nastavenie zobrazovacieho prostredia.Prehliadač GIMP pomocníkaGimp nie je správne nainštalovaný pre aktuálneho používateľa. Používateľská inštalácia bola preskočená, lebo bolo použité '--no-interface'. Ak chcete, aby bola vykonaná používateľská inštalácia, spustite GIMP bez '--no-interface'.GIMP používa obmedzené množstvo pamäte na ukladanie obrázkových údajov, tzv. "Vyrovnávaciu pamäť dlaždíc". Jej veľkosť by ste mali prispôsobiť veľkosti celkovej pamäte. Berte však ohľad aj na množstvo pamäte použitej inými procesmi.GIMP používa tiež dodatočný súbor gtkrc a preto ho je možné nastaviť tak,aby bol jeho vzhľad iný ako ostatných GTK aplikácií.GIMP verziaGIMP bude varovať používateľa pri pokuse vytvoriť obrázok, ktorý by zabral viac pamäte ako je tu určená veľkosť.GamaVšeobecnéNastavuje minimálny počet farieb systému alokovaných pre GIMP, všeobecne je to doležité iba pre osembitové obrazovky.Generovať optimálnu paletuZískať rozlíšenie monitoraGigantickáProcedúry GimprcEfekty so s_klomPrechodEditor prechodovPonuka Editor prechodovPriečinky prechoduFarba ľavého koncového bodu segmentu prechoduFarba pravého koncového bodu segmentu prechoduRozhranie prechodovPrechodPrechodyPonuka PrechodyExtrakcia zrnitostiZlúčenie zrnitostiŠedáOdtiene šedejZelenáZelená:MriežkaMedzera medzi čiarami mriežkyZväčšiť kanálZväčšiť výberZväčšiť výber oVodítkoPrichytávanie k vodítkam a mriežkeProcedúry vodítokHSVHSV (%0.3f, %0.3f, %0.3f)HSV (odtieň proti smeru hodinových ru_čičiek)HSV (odtieň v smere _hodinových ručičiek)HTML zápis:_Výška:Použiť pr_ehliadač pre pomocníka:Pozícia riadiaceho bodu: %0.6fOstré hranyOstré svetloTvrdosť:Tvrdosť:VýškaVýška:PomocníkPrehliadač pomocníkaSystém pomocníkovPrehliadač pomocníka neštartujePrehliadač pomocníka nebol nájdenýProcedúry pomocníkaHex:SvetláTypu pre _doky:Typu pre _nástroje:HintingHinting zmení obrys písma tak, aby boli vytvorené ostré bitmapy aj pri malých veľkostiachHistogra_mHistogramMierka histogramuHistóriaVodorovneVodorovný posun prvej čiary mriežky; môže to byť aj záporné číslo.Vodorovné medzery medzi čiarami mriežky.Koľko názvov nedávno otvorených obrázkov bude udržovaných v ponuke Súbor.OdtieňOdtieň-SýtosťOdtieň-Sýtosť funguje iba s vrstvami vo farbách RGB.Odtieň-_Sýtosť...Odtieň:ObrovskáI_kona a textO_brázokI_mportovať cestu...I_nterpolácia:I_nterval:IkonaIkona a popisIkona a textAk je dostupné, použije sa hinting z písma, ale ak chcete, vždy môžete použiť automatický hintingAk je povolené, nástroj presunu mení aktívnu vrstvu alebo cestu, keď je vybraná vrstva alebo cesta. To bolo v starších verziách implicitné chovanie.Ak neuložíte obrázok, zmeny od posledného %s budú stratené.Ak teraz ukončíte GIMP, neuložené zmeny budú stratené.Neplatný názov premennej v súbore prostredia %s: %sObrázokObrázok + mriežkaEditor obrázkovInformácie o obrázkuPonuka ObrázokVeľkosť obrázkaFormát stavového riadku obrázkaŠablóny obrázkovMiniatúry obrázkovFormát titulku obrázka a stavového riadkuFormát titulku obrázkaVzhľad okna obrázkaOkná obrázkaObrázok neobsahuje žiadne viditeľné vrstvySúbor obrázkaMaska obrázkaRozlíšenie obrázka je mimo rozsah, namiesto neho sa použije štandardné rozlíšenie.Veľkosť obrázkaZdroj obrázkaTyp obrázkaObrázkyPonuka ObrázkyNastavenia importuImport paletyImportovať cestyImportovať cestu z SVGImport novej paletyImportovať paletuImportovať cestyImportovať cestuA_tramentIn_vertovaťIn_vertovať maskuPostupnýOdsadenie:Odsadenie prvého riadkuIndex:IndexovanáIndexovaná farbaKonverzia na indexované farbyVrstvy indexovaných farieb sú zmenené bez interpolácie. Zvolený typ interpolácie ovplyvní iba zmenu kanálov a masiek.Informačné okno_Počiatočné zväčšenie:Východzí stav masky vrstvy:Inicializácia zásuvných modulovInicializácia modulu: '%s' -AtramentInline pixbufVstupné regulátoryVstupné zariadeniaVstupné úrovneVložiť ukotvenieNainštalovať súkromnú farebnú mapu; môže byť užitočné na 8-bitových (256 farebných) displejoch.Inštalácia sa nepodarila. Kontaktujte prosím systémového administrátora.Inštalácia bola úspešne dokončená.Pokračuje kliknutím na "Pokračovať".Okamžitá aktualizácia_Inteligentné nožniceIntenzita: %0.3f Krytie: %0.3fRozhranieInterná procedúra programu GIMPVnútorné procedúryInterpolácia:PrienikPrienik s aktuálnym výberomPriesečníky (krížiky)Priesečníky (body)Neplatné UTF-8Nesprávny UTF-8 dáta v súbore '%s'.Nesprávny UTF-8 reťazec v súbore XCFNesprávny UTF-8 reťazec v súbore '%s'.Nesprávny UTF-8 reťazec v súbore s prechodom '%s'.Neplatný UTF-8 reťazec v súbore s paletou '%s'Neplatný UTF-8 reťazec v súbore so vzorkou '%s'.Neplatná sekvencia znakov v URINeplatná klávesová skratka.Neplatná šírka alebo výška. Obe musia byť kladné.InvertovaťInvertovať kanálInverzný výberInvertovanie nefunguje na indexovaných vrstvách.Invertovať výberJe to to, čo si prajete?Zdá sa, že ste v minulosti používali GIMP 2.0 Vlastnosti položiekViditeľnosť položkyZarovnanie:Dodržať priesvitnosťUdržovať horeUdržať pomer %sPevný pomer stránUdržať pomer %sDodržať výšku %sDodržať priesvitnosťDodržať šírku %sKláves doleKláves dole (Alt)Kláves dole (Control + Alt)Kláves dole (Control)Kláves dole (Shift + Alt)Kláves dole (Shift + Control + Alt)Kláves dole (Shift + Control)Kláves dole (Shift)Kláves doľavaKláves doľava (Alt)Kláves doľava (Control + Alt)Kláves doľava (Control)Kláves doľava (Shift + Alt)Kláves doľava (Shift + Control + Alt)Kláves doľava (Shift + Control)Kláves doľava (Shift)Kláves dopravaKláves doprava (Alt)Kláves doprava (Control + Alt)Kláves doprava (Control)Kláves doprava (Shift + Alt)Kláves doprava (Shift + Control + Alt)Kláves doprava (Shift + Control)Kláves doprava (Shift)Kláves horeKláves hore (Alt)Kláves hore (Control + Alt)Kláves hore (Control)Kláves hore (Shift + Alt)Kláves hore (Shift + Control + Alt)Kláves hore (Shift + Control)Kláves hore (Shif)Klávesové skratky sa dajú v GIMPe dynamicky predefinovať. Súbor menurc uchováva vašu konfiguráciu pre ďalšie spustenie. Je možné ho editovať, ale oveľa jednoduchšie je definovať klávesové skratky priamo v GIMPe. Ak tento súbor zmažete, obnovia sa pôvodné klávesové skratky.KlávesnicaKlávesové skratkyZľava dopravaFarba ľav_ého koncového bodu...Na šírkuVeľkáVeľké (256x256)Väčšie náhľadyPosledná chyba:VrstvaVrstva '%s' nemá alfu. Vrstva bola umiestnená nad ňou.Atribúty vrstvyRoz_mery okrajov vrstvyTyp výplne vrstvyMasku vrstvy do výberuVýber vrstvyVeľkosť vrstvy_Režim vrstvy_Názov vrstvy:Vrstvu nie je možné posunúť nižšie.Vrstvu nie je možné posunúť vyššie.Vrstva je už celkom dole.Vrstva je už celkom hore.Vrstva do veľkosti obrázkaUmiestniť vrstvu _doleVrstva do _veľkosti obrázkaUmiestniť vrs_tvu hore_Alfa kanál vrstvyVrstvyPonuka vrstvyNastavenie splynutia vrstievFarba ľavého koncového boduZarovnané doľavaDĺžka:Nechať GIMP pokúsiť sa obnoviť vaše posledné uložené sedenie pri každom spustení.ÚrovneÚrovne nemôžu byť upravované v indexovaných vrstvách.Farba svetlej šachovniceLen zosvetlenieČiaraRozostup +AtramentInline pixbufVstupné regulátoryVstupné zariadeniaVstupné úrovneVložiť ukotvenieNainštalovať súkromnú farebnú mapu; môže byť užitočné na 8-bitových (256 farebných) displejoch.Inštalácia sa nepodarila. Kontaktujte prosím systémového administrátora.Inštalácia bola úspešne dokončená.Pokračuje kliknutím na "Pokračovať".Okamžitá aktualizácia_Inteligentné nožniceIntenzita: %0.3f Krytie: %0.3fRozhranieInterná procedúra programu GIMPVnútorné procedúryInterpolácia:PrienikPrienik s aktuálnym výberomPriesečníky (krížiky)Priesečníky (body)Neplatné UTF-8Nesprávny UTF-8 dáta v súbore '%s'.Nesprávny UTF-8 reťazec v súbore XCFNesprávny UTF-8 reťazec v súbore '%s'.Nesprávny UTF-8 reťazec v súbore s prechodom '%s'.Neplatný UTF-8 reťazec v súbore s paletou '%s'Neplatný UTF-8 reťazec v súbore so vzorkou '%s'.Neplatná sekvencia znakov v URINeplatná klávesová skratka.Neplatná šírka alebo výška. Obe musia byť kladné.InvertovaťInvertovať kanálInverzný výberInvertovanie nefunguje na indexovaných vrstvách.Invertovať výberJe to to, čo si prajete?Zdá sa, že ste v minulosti používali GIMP 2.0 Vlastnosti položiekViditeľnosť položkyZarovnanie:Dodržať priesvitnosťUdržovať horeUdržať pomer %sUdržať pomer %sDodržať výšku %sDodržať priesvitnosťDodržať šírku %sKláves doleKláves dole (Alt)Kláves dole (Control + Alt)Kláves dole (Control)Kláves dole (Shift + Alt)Kláves dole (Shift + Control + Alt)Kláves dole (Shift + Control)Kláves dole (Shift)Kláves doľavaKláves doľava (Alt)Kláves doľava (Control + Alt)Kláves doľava (Control)Kláves doľava (Shift + Alt)Kláves doľava (Shift + Control + Alt)Kláves doľava (Shift + Control)Kláves doľava (Shift)Kláves dopravaKláves doprava (Alt)Kláves doprava (Control + Alt)Kláves doprava (Control)Kláves doprava (Shift + Alt)Kláves doprava (Shift + Control + Alt)Kláves doprava (Shift + Control)Kláves doprava (Shift)Kláves horeKláves hore (Alt)Kláves hore (Control + Alt)Kláves hore (Control)Kláves hore (Shift + Alt)Kláves hore (Shift + Control + Alt)Kláves hore (Shift + Control)Kláves hore (Shif)Klávesové skratky sa dajú v GIMPe dynamicky predefinovať. Súbor menurc uchováva vašu konfiguráciu pre ďalšie spustenie. Je možné ho editovať, ale oveľa jednoduchšie je definovať klávesové skratky priamo v GIMPe. Ak tento súbor zmažete, obnovia sa pôvodné klávesové skratky.KlávesnicaKlávesové skratkyZľava dopravaFarba ľav_ého koncového bodu...Na šírkuVeľkáVeľké (256x256)Väčšie náhľadyPosledná chyba:VrstvaVrstva '%s' nemá alfu. Vrstva bola umiestnená nad ňou.Atribúty vrstvyRoz_mery okrajov vrstvyTyp výplne vrstvyMasku vrstvy do výberuVýber vrstvyVeľkosť vrstvy_Režim vrstvy_Názov vrstvy:Vrstvu nie je možné posunúť nižšie.Vrstvu nie je možné posunúť vyššie.Vrstva je už celkom dole.Vrstva je už celkom hore.Vrstva do veľkosti obrázkaUmiestniť vrstvu _doleVrstva do _veľkosti obrázkaUmiestniť vrs_tvu hore_Alfa kanál vrstvyVrstvyPonuka vrstvyNastavenie splynutia vrstievFarba ľavého koncového boduZarovnané doľavaDĺžka:Nechať GIMP pokúsiť sa obnoviť vaše posledné uložené sedenie pri každom spustení.ÚrovneÚrovne nemôžu byť upravované v indexovaných vrstvách.Farba svetlej šachovniceLen zosvetlenieČiaraRozostup riadkovŠírka čiary:Š_týl čiary:Štýl čiary použitý pre mriežku.LineárnaPrepojená položkaOtvoriťNačítať krivkyNačítať úrovneNačítať pravú far_bu zNačítať nastavenia kriviek zo súboruNačítať nastavenia úrovní zo súboruNačítať text zo súboruNačítavam náhľad...Umiestnenie:LogaritmickýDlhé čiarkyHľadajú sa dátové súboryZnížiť kanálZnížiť kanál naspodokZnížiť kanál _naspodokZnížiť vrstvuUmiestniť vrstvu doleZnížiť cestuPresunúť cestu naspodokPresunúť cestu naspo_dokZnížiť kanálZnížiť kanál naspodokZnížiť vrstvuUmiestniť vrstvu doleZnížiť cestuPresunúť cestu naspodok_Lupa_HlavnýPresunúť d_o obrazovky...Ma_paPurpurováPurpurová:LupaU_robiť priehľadnýmSpráva zásuvných modulovRýchlosť behu či_ar:Krytie masky:Maska _zvolených oblastíMaska _nezvolených oblastíMatica:Najväčšia hĺbka:Maximálna v_eľkosť miniatúr:Maximálna veľkosť _nového obrázka:Maximálny farebný nesúlad_Maximum pamäte pre funkciu Späť:Priemer:MeradloMeranie vzdialenosti a uhlovMeranie vzdialenosti a uhlovOdmerajte pravítka a vložte dole ich dĺžky:Medián:StrednáStredné čiarkySply_núť doleSplynutie doleSplynutie vrstievPripojiť paletuSplynutie viditeľných vrstievSplynutie viditeľných ciestSplynutie _viditeľných vrstiev...Splynutie _viditeľných vrstiev...Splynutie _viditeľných ciestSplynutie vrstievPripojiť paletuSplynutie vektorovSprávy z procedúrSpráva %d krát zopakovanáSpráva raz zopakovanáSprávy sú presmerované do stderr.Stredné tónyMigrovať používateľské nastaveniaMinimálny počet _úrovní späť:RôzneOstráRežimRežim:Upraviť zvolenú farbuUpraviť zvolený rozsah farebných úrovníUpraviť všetky farbyUpraviť medzery medzi riadkamiPriečinky modulovSprávca modulovCesta k moduluModulyKurzory myšiKoliesko myšiPresunPosunúť ukotveniaPosunúť kanálPresunúť plávajúci výberPresunúť vodítkoPresunúť vodítko: Presunúť vrstvuPresunúť vrstvu maskyPresunúť cestuPresunúť výberPresun textovej vrstvyNástroj presunuPresunúť položkuPresun vrstiev a výberovPresunúť výberPresunúť aktuálnu vrstvuPresunúť aktuálnu cestuPosunúť označený filter nižšiePosunúť označený filter vyššiePresunúť do obrazovky...Presun: NásobenieP_očet farieb:Na_vigáciaNa_vigačné oknoVeľkosť na_vigačného náhľadu:NázovNázov:NavigáciaNový kanálNový farebný kanálVlastnosti nového kanáluNová farba z poza_diaNová _farba z poprediaNový obrázokNová vrstvaNová cestaNastavenie novej cestyNová šablónaNový štetecNový kanálNový kanál s poslednými hodnotamiNový kanál...Nová farba z pozadiaNová farba z poprediaNový prechodNový importNová vrstvaNová vrstva s poslednými hodnotamiNová vrstva...Nová paletaNová cesta s poslednými hodnotamiNová cesta...Nová vzorkaNové vektoryNie sú dostupné žiadne štetce pre použitie s týmto nástrojom.Žiadny filter nie je zvolenýNebol nájdený lineárny prechod v '%s'Už nie sú viac prístupnéV '%s' nebola nájdená žiadna cestaV buffery nebola nájdená žiadna cestaPre túto operáciu nie sú k dispozícii žiadne vzorky.Žiadny výberPre ťah nie je nič zvolené.Bez miniatúrNezarovnanýŽiadneŽiadna (najrýchlejšia)NormálneNormálne (128x128)Normálne bodkyBežné oknoNie je bežný súborMálo viditeľných vrstiev pre zlúčenie. Musia byť aspoň dve.Málo viditeľných ciest pre splynutie. Musia byť najmenej dve.Počet _používaných procesorov:Počet čiar mriežkyPočet vrstiev:_Iné...Posun:Posun kanálaPosun kresbyPosun vrstvyPosun masky vrstvyPosun o x/_2, y/2Posun:Na diskuNa viacprocerosových strojoch, ak bol GIMP preložený s voľbou --enable-mp, toto predstavuje, koľko procesorov by mal GIMP simultánne používať.Iba v pamätiOtvor_iť ako vrstvu...KrytieKrytie:OtvoriťOtvoriť obrázokOtvoriť obrázok ako vrstvuOtvoriť umiestnenieOtvoriť textový súbor (UTF-8)Otvoriť _umiestnenie...Otvoriť p_redošléDialóg otvorenia obrázkaOtvoriť dialóg výberu štetcaOtvorí dialóg výberu písmaOtvoriť dialóg výberu prechoduOtvoriť dialóg výberu paletyOtvoriť dialóg výberu vzorkyOtvoriť zvolenú položkuNepodarilo sa otvoriť '%s': %sOtvorenie '%s' zlyhalo: %sMožnosti: diff -uraN gimp-2.2.0/po/sk.po gimp-2.2.1/po/sk.po --- gimp-2.2.0/po/sk.po 2004-12-19 03:11:44.000000000 +0100 +++ gimp-2.2.1/po/sk.po 2004-12-28 16:58:37.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: gimp.HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-19 03:11+0100\n" +"POT-Creation-Date: 2004-12-28 16:58+0100\n" "PO-Revision-Date: 2004-11-27 10:27Stedn Evropa (bn as)\n" "Last-Translator: Zdenko Podobný \n" "Language-Team: Slovak <>\n" @@ -1032,11 +1032,11 @@ msgid "Remove dangling entries" msgstr "Odstrániť visiace položky" -#: app/actions/documents-commands.c:252 app/actions/file-commands.c:163 +#: app/actions/documents-commands.c:251 app/actions/file-commands.c:163 #: app/dialogs/file-open-dialog.c:198 app/dialogs/file-open-dialog.c:249 #: app/dialogs/file-open-location-dialog.c:193 -#: app/display/gimpdisplayshell-dnd.c:332 app/widgets/gimplayertreeview.c:802 -#: app/widgets/gimptoolbox-dnd.c:123 +#: app/display/gimpdisplayshell-dnd.c:334 app/widgets/gimplayertreeview.c:804 +#: app/widgets/gimptoolbox-dnd.c:125 #, c-format msgid "" "Opening '%s' failed:\n" @@ -1545,115 +1545,115 @@ msgid "Zoom all" msgstr "Zväčšiť všetko" -#: app/actions/gradient-editor-actions.c:582 +#: app/actions/gradient-editor-actions.c:589 msgid "_Blending Function for Segment" msgstr "Funkcia prechodu pre se_gment" -#: app/actions/gradient-editor-actions.c:584 +#: app/actions/gradient-editor-actions.c:591 msgid "Coloring _Type for Segment" msgstr "_Typ vyfarbenia pre segment" -#: app/actions/gradient-editor-actions.c:587 +#: app/actions/gradient-editor-actions.c:594 msgid "_Flip Segment" msgstr "Pre_klopiť segment" -#: app/actions/gradient-editor-actions.c:589 +#: app/actions/gradient-editor-actions.c:596 msgid "_Replicate Segment..." msgstr "_Replikovať segment..." -#: app/actions/gradient-editor-actions.c:591 +#: app/actions/gradient-editor-actions.c:598 msgid "Split Segment at _Midpoint" msgstr "Rovnomerne rozdeliť seg_ment..." -#: app/actions/gradient-editor-actions.c:593 +#: app/actions/gradient-editor-actions.c:600 msgid "Split Segment _Uniformly..." msgstr "Rovno_merne rozdeliť segment..." -#: app/actions/gradient-editor-actions.c:595 +#: app/actions/gradient-editor-actions.c:602 msgid "_Delete Segment" msgstr "_Zmazať segment" -#: app/actions/gradient-editor-actions.c:597 +#: app/actions/gradient-editor-actions.c:604 msgid "Re-_center Segment's Midpoint" msgstr "Opäť vy_centrovať stredný bod segmentu" -#: app/actions/gradient-editor-actions.c:599 +#: app/actions/gradient-editor-actions.c:606 msgid "Re-distribute _Handles in Segment" msgstr "Opäť rozložiť riadiace _body v segmente" -#: app/actions/gradient-editor-actions.c:604 +#: app/actions/gradient-editor-actions.c:611 msgid "_Blending Function for Selection" msgstr "Funkcia prechodu pre vý_ber" -#: app/actions/gradient-editor-actions.c:606 +#: app/actions/gradient-editor-actions.c:613 msgid "Coloring _Type for Selection" msgstr "_Typ vyfarbenia pre výber" -#: app/actions/gradient-editor-actions.c:609 +#: app/actions/gradient-editor-actions.c:616 msgid "_Flip Selection" msgstr "_Preklopiť výber" -#: app/actions/gradient-editor-actions.c:611 +#: app/actions/gradient-editor-actions.c:618 msgid "_Replicate Selection..." msgstr "_Replikovať výber..." -#: app/actions/gradient-editor-actions.c:613 +#: app/actions/gradient-editor-actions.c:620 msgid "Split Segments at _Midpoints" msgstr "Rozdeliť seg_menty v stredných bodoch" -#: app/actions/gradient-editor-actions.c:615 +#: app/actions/gradient-editor-actions.c:622 msgid "Split Segments _Uniformly..." msgstr "Ro_vnomerne rozdeliť segmenty..." -#: app/actions/gradient-editor-actions.c:617 +#: app/actions/gradient-editor-actions.c:624 msgid "_Delete Selection" msgstr "_Zmazať výber" -#: app/actions/gradient-editor-actions.c:619 +#: app/actions/gradient-editor-actions.c:626 msgid "Re-_center Midpoints in Selection" msgstr "Opäť vy_centrovať riadiace body vo výbere" -#: app/actions/gradient-editor-actions.c:621 +#: app/actions/gradient-editor-actions.c:628 msgid "Re-distribute _Handles in Selection" msgstr "Opäť _rozložiť riadiace body vo výbere" -#: app/actions/gradient-editor-commands.c:84 +#: app/actions/gradient-editor-commands.c:85 msgid "Left Endpoint Color" msgstr "Farba ľavého koncového bodu" -#: app/actions/gradient-editor-commands.c:86 +#: app/actions/gradient-editor-commands.c:87 msgid "Gradient Segment's Left Endpoint Color" msgstr "Farba ľavého koncového bodu segmentu prechodu" -#: app/actions/gradient-editor-commands.c:186 +#: app/actions/gradient-editor-commands.c:189 msgid "Right Endpoint Color" msgstr "Farba pravého koncového bodu" -#: app/actions/gradient-editor-commands.c:188 +#: app/actions/gradient-editor-commands.c:191 msgid "Gradient Segment's Right Endpoint Color" msgstr "Farba pravého koncového bodu segmentu prechodu" -#: app/actions/gradient-editor-commands.c:353 +#: app/actions/gradient-editor-commands.c:358 msgid "Replicate Segment" msgstr "Replikovať segment" -#: app/actions/gradient-editor-commands.c:354 +#: app/actions/gradient-editor-commands.c:359 msgid "Replicate Gradient Segment" msgstr "Replikovať segment prechodu" -#: app/actions/gradient-editor-commands.c:358 +#: app/actions/gradient-editor-commands.c:363 msgid "Replicate Selection" msgstr "Replikovať výber" -#: app/actions/gradient-editor-commands.c:359 +#: app/actions/gradient-editor-commands.c:364 msgid "Replicate Gradient Selection" msgstr "Replikovať výber prechodu" -#: app/actions/gradient-editor-commands.c:371 +#: app/actions/gradient-editor-commands.c:376 msgid "Replicate" msgstr "Replikovať" -#: app/actions/gradient-editor-commands.c:386 +#: app/actions/gradient-editor-commands.c:391 msgid "" "Select the number of times\n" "to replicate the selected segment." @@ -1661,7 +1661,7 @@ "Zvoľte počet\n" "replikácií zvoleného segmentu." -#: app/actions/gradient-editor-commands.c:389 +#: app/actions/gradient-editor-commands.c:394 msgid "" "Select the number of times\n" "to replicate the selection." @@ -1669,27 +1669,27 @@ "Zvoľte počet\n" "replikácií zvoleného výberu." -#: app/actions/gradient-editor-commands.c:444 +#: app/actions/gradient-editor-commands.c:452 msgid "Split Segment Uniformly" msgstr "Rovnomerne rozdeliť segment" -#: app/actions/gradient-editor-commands.c:445 +#: app/actions/gradient-editor-commands.c:453 msgid "Split Gradient Segment Uniformly" msgstr "Rovnomerne rozdeliť segment prechodu" -#: app/actions/gradient-editor-commands.c:449 +#: app/actions/gradient-editor-commands.c:457 msgid "Split Segments Uniformly" msgstr "Rovnomerne rozdeliť segmenty" -#: app/actions/gradient-editor-commands.c:450 +#: app/actions/gradient-editor-commands.c:458 msgid "Split Gradient Segments Uniformly" msgstr "Rovnomerne rozdeliť segmenty prechodu" -#: app/actions/gradient-editor-commands.c:462 +#: app/actions/gradient-editor-commands.c:470 msgid "Split" msgstr "Rozdeliť" -#: app/actions/gradient-editor-commands.c:478 +#: app/actions/gradient-editor-commands.c:486 msgid "" "Select the number of uniform parts\n" "in which to split the selected segment." @@ -1697,7 +1697,7 @@ "Zvoľte počet jednotných častí\n" "na ktoré sa rozdelí zvolený segment." -#: app/actions/gradient-editor-commands.c:481 +#: app/actions/gradient-editor-commands.c:489 msgid "" "Select the number of uniform parts\n" "in which to split the segments in the selection." @@ -2134,7 +2134,7 @@ #: app/actions/layers-commands.c:232 app/actions/layers-commands.c:234 #: app/actions/layers-commands.c:291 app/actions/layers-commands.c:295 -#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:840 +#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:842 msgid "New Layer" msgstr "Nová vrstva" @@ -2146,7 +2146,7 @@ msgid "Set Layer Boundary Size" msgstr "Nastaviť okraj vrstvy" -#: app/actions/layers-commands.c:512 app/core/gimplayer.c:255 +#: app/actions/layers-commands.c:512 app/core/gimplayer.c:253 msgid "Scale Layer" msgstr "Veľkosť vrstvy" @@ -2158,7 +2158,7 @@ msgid "Layer Mask to Selection" msgstr "Masku vrstvy do výberu" -#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1085 +#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1066 #: app/dialogs/layer-add-mask-dialog.c:62 msgid "Add Layer Mask" msgstr "Pridať masku vrstvy" @@ -2703,7 +2703,7 @@ msgstr "Otvoriť textový súbor (UTF-8)" #: app/actions/text-editor-commands.c:132 app/config/gimpconfig-utils.c:552 -#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:393 +#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:396 #: app/core/gimpbrushgenerated.c:601 app/core/gimpbrushpipe.c:338 #: app/core/gimpgradient-load.c:63 app/core/gimppalette.c:360 #: app/core/gimppattern.c:328 app/tools/gimpimagemaptool.c:608 @@ -4542,7 +4542,7 @@ msgid "FG to Transparent" msgstr "Popredie do priesvitna" -#: app/core/gimp-gui.c:148 +#: app/core/gimp-gui.c:153 msgid "GIMP" msgstr "GIMP" @@ -4574,39 +4574,54 @@ msgid "Modules" msgstr "Moduly" -#: app/core/gimpbrush.c:531 +#: app/core/gimpbrush.c:534 #, c-format msgid "Could not read %d bytes from '%s': %s" msgstr "Nie je možné čítať %d bytov z '%s': %s" -#: app/core/gimpbrush.c:566 +#: app/core/gimpbrush.c:554 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Width = 0." +msgstr "Závažná chyba v súbore štetca '%s': Neznáma hĺbka %d." + +#: app/core/gimpbrush.c:563 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Height = 0." +msgstr "Závažná chyba v súbore štetca '%s': Súbor je poškodený." + +#: app/core/gimpbrush.c:572 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Bytes = 0." +msgstr "Závažná chyba v súbore štetca '%s': Súbor je poškodený." + +#: app/core/gimpbrush.c:596 #, c-format msgid "Fatal parse error in brush file '%s': Unknown depth %d." msgstr "Závažná chyba v súbore štetca '%s': Neznáma hĺbka %d." -#: app/core/gimpbrush.c:579 +#: app/core/gimpbrush.c:609 #, c-format msgid "Fatal parse error in brush file '%s': Unknown version %d." msgstr "Závažná chyba v súbore štetca '%s': Neznáma verzia %d." -#: app/core/gimpbrush.c:595 app/core/gimpbrush.c:715 +#: app/core/gimpbrush.c:625 app/core/gimpbrush.c:745 #, c-format msgid "Fatal parse error in brush file '%s': File appears truncated." msgstr "Závažná chyba v súbore štetca '%s': Súbor sa zdá byť skrátený." -#: app/core/gimpbrush.c:603 app/core/gimpbrushgenerated.c:648 +#: app/core/gimpbrush.c:633 app/core/gimpbrushgenerated.c:648 #: app/core/gimpbrushpipe.c:354 #, c-format msgid "Invalid UTF-8 string in brush file '%s'." msgstr "Nesprávny UTF-8 reťazec v súbore '%s'." -#: app/core/gimpbrush.c:610 app/core/gimpcontext.c:1299 -#: app/core/gimpitem.c:479 app/core/gimppattern.c:400 +#: app/core/gimpbrush.c:640 app/core/gimpcontext.c:1299 +#: app/core/gimpitem.c:480 app/core/gimppattern.c:400 #: app/dialogs/template-options-dialog.c:80 app/tools/gimpvectortool.c:339 msgid "Unnamed" msgstr "Nepomenovaný" -#: app/core/gimpbrush.c:704 +#: app/core/gimpbrush.c:734 #, c-format msgid "" "Fatal parse error in brush file '%s': Unsupported brush depth %d\n" @@ -4771,11 +4786,11 @@ "%s" #: app/core/gimpdatafactory.c:411 app/core/gimpdatafactory.c:414 -#: app/core/gimpitem.c:274 app/core/gimpitem.c:277 +#: app/core/gimpitem.c:275 app/core/gimpitem.c:278 msgid "copy" msgstr "kópia" -#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:286 +#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:287 #, c-format msgid "%s copy" msgstr "%s kópia" @@ -4838,7 +4853,7 @@ msgid "Rotate" msgstr "Otočenie" -#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:259 +#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:257 msgid "Transform Layer" msgstr "Transformácia vrstvy" @@ -5194,7 +5209,7 @@ #. pixel size #: app/core/gimpimagefile.c:624 app/dialogs/info-window.c:552 -#: app/widgets/gimpsizebox.c:552 app/widgets/gimptemplateeditor.c:637 +#: app/widgets/gimpsizebox.c:429 app/widgets/gimptemplateeditor.c:637 #: app/widgets/gimptemplateeditor.c:673 #, c-format msgid "%d x %d pixels" @@ -5214,15 +5229,15 @@ msgid "Could not open thumbnail '%s': %s" msgstr "Nie je možné otvoriť miniatúru '%s': %s" -#: app/core/gimpitem.c:1096 +#: app/core/gimpitem.c:1103 msgid "Attach Parasite" msgstr "Pripojiť parazita" -#: app/core/gimpitem.c:1106 +#: app/core/gimpitem.c:1113 msgid "Attach Parasite to Item" msgstr "Pripojiť parazita k položke" -#: app/core/gimpitem.c:1145 app/core/gimpitem.c:1152 +#: app/core/gimpitem.c:1152 app/core/gimpitem.c:1159 msgid "Remove Parasite from Item" msgstr "Odstrániť parazita z položky" @@ -5250,37 +5265,37 @@ msgid "Floating Selection to Layer" msgstr "Plávajúci výber do vrstvy" -#: app/core/gimplayer.c:252 app/pdb/internal_procs.c:152 +#: app/core/gimplayer.c:250 app/pdb/internal_procs.c:152 msgid "Layer" msgstr "Vrstva" -#: app/core/gimplayer.c:253 +#: app/core/gimplayer.c:251 msgid "Rename Layer" msgstr "Premenovať vrstvu" -#: app/core/gimplayer.c:254 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 +#: app/core/gimplayer.c:252 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 msgid "Move Layer" msgstr "Presunúť vrstvu" -#: app/core/gimplayer.c:256 +#: app/core/gimplayer.c:254 msgid "Resize Layer" msgstr "Zmeniť veľkosti vrstvy" -#: app/core/gimplayer.c:257 +#: app/core/gimplayer.c:255 msgid "Flip Layer" msgstr "Preklopiť vrstvu" -#: app/core/gimplayer.c:258 +#: app/core/gimplayer.c:256 msgid "Rotate Layer" msgstr "Otočiť vrstvu" -#: app/core/gimplayer.c:341 app/core/gimplayer.c:1129 +#: app/core/gimplayer.c:339 app/core/gimplayer.c:1110 #: app/core/gimplayermask.c:236 #, c-format msgid "%s mask" msgstr "%s maska" -#: app/core/gimplayer.c:387 +#: app/core/gimplayer.c:385 #, c-format msgid "" "Floating Selection\n" @@ -5289,40 +5304,40 @@ "Plávajúci výber\n" "(%s)" -#: app/core/gimplayer.c:1055 +#: app/core/gimplayer.c:1036 msgid "Cannot add layer mask to layer which is not part of an image." msgstr "" "Nie je možné pridať masku vrstvy k vrstve, ktorá nie je súčasťou obrázka." -#: app/core/gimplayer.c:1062 +#: app/core/gimplayer.c:1043 msgid "Unable to add a layer mask since the layer already has one." msgstr "Nie je možné pridať masku vrstvy pretože vrstva už masku má." -#: app/core/gimplayer.c:1069 +#: app/core/gimplayer.c:1050 msgid "Cannot add layer mask to a layer with no alpha channel." msgstr "Nie je možné pridať masku vrstvy do vrstvy bez alfa kanálu." -#: app/core/gimplayer.c:1079 +#: app/core/gimplayer.c:1060 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "Nie je možné pridať masku iných rozmerov, než má špecifikovaná vrstva." -#: app/core/gimplayer.c:1183 +#: app/core/gimplayer.c:1164 msgid "Transfer Alpha to Mask" msgstr "Presun alfy do masky" -#: app/core/gimplayer.c:1343 +#: app/core/gimplayer.c:1324 msgid "Apply Layer Mask" msgstr "Použiť masku vrstvy" -#: app/core/gimplayer.c:1344 +#: app/core/gimplayer.c:1325 msgid "Delete Layer Mask" msgstr "Zmazať masku vrstvy" -#: app/core/gimplayer.c:1445 +#: app/core/gimplayer.c:1426 msgid "Add Alpha Channel" msgstr "Pridať alfa kanál" -#: app/core/gimplayer.c:1467 +#: app/core/gimplayer.c:1448 msgid "Layer to Image Size" msgstr "Vrstva do veľkosti obrázka" @@ -6771,28 +6786,28 @@ msgstr "Veľkosť tlače:" #. the image size labels -#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:241 +#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:222 #: app/widgets/gimptemplateeditor.c:236 msgid "_Width:" msgstr "Ší_rka:" -#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:248 +#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:225 #: app/widgets/gimptemplateeditor.c:243 msgid "H_eight:" msgstr "_Výška:" #. the resolution labels -#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:338 +#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:273 #: app/widgets/gimptemplateeditor.c:363 msgid "_X resolution:" msgstr "_X rozlíšenie:" -#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:345 +#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:276 #: app/widgets/gimptemplateeditor.c:370 msgid "_Y resolution:" msgstr "_Y rozlíšenie:" -#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:357 +#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:269 #: app/widgets/gimptemplateeditor.c:383 #, c-format msgid "pixels/%a" @@ -7417,11 +7432,11 @@ msgid "%d minutes" msgstr "%d minút" -#: app/display/gimpdisplayshell-dnd.c:96 +#: app/display/gimpdisplayshell-dnd.c:98 msgid "Drop New Layer" msgstr "Pustiť novú vrstvu" -#: app/display/gimpdisplayshell-dnd.c:140 +#: app/display/gimpdisplayshell-dnd.c:142 msgid "Drop New Path" msgstr "Pustiť novú cestu" @@ -8881,12 +8896,12 @@ msgstr "_Štetec" #: app/tools/gimppaintoptions-gui.c:103 app/widgets/gimpbrushselect.c:201 -#: app/widgets/gimplayertreeview.c:330 +#: app/widgets/gimplayertreeview.c:332 msgid "Opacity:" msgstr "Krytie:" #: app/tools/gimppaintoptions-gui.c:108 app/tools/gimpselectionoptions.c:374 -#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:323 +#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:325 msgid "Mode:" msgstr "Režim:" @@ -10286,24 +10301,24 @@ msgid "Set Item Exclusive Linked" msgstr "Nastaviť položku exkluzívne pripojenú" -#: app/widgets/gimplayertreeview.c:250 +#: app/widgets/gimplayertreeview.c:252 msgid "Reorder Layer" msgstr "Preradiť vrstvu" -#: app/widgets/gimplayertreeview.c:311 +#: app/widgets/gimplayertreeview.c:313 msgid "Keep transparency" msgstr "Dodržať priesvitnosť" -#: app/widgets/gimplayertreeview.c:846 +#: app/widgets/gimplayertreeview.c:848 msgid "Empty Layer" msgstr "Prázdna vrstva" -#: app/widgets/gimpmessagebox.c:458 +#: app/widgets/gimpmessagebox.c:460 #, c-format msgid "Message repeated %d times." msgstr "Správa %d krát zopakovaná" -#: app/widgets/gimpmessagebox.c:460 +#: app/widgets/gimpmessagebox.c:462 msgid "Message repeated once." msgstr "Správa raz zopakovaná" @@ -10335,16 +10350,12 @@ msgid "Invalid UTF-8" msgstr "Neplatné UTF-8" -#: app/widgets/gimpsizebox.c:290 -msgid "Keep aspect ratio" -msgstr "Pevný pomer strán" - -#: app/widgets/gimpsizebox.c:574 +#: app/widgets/gimpsizebox.c:451 #, c-format msgid "%d x %d dpi" msgstr "%d x %d dpi" -#: app/widgets/gimpsizebox.c:578 +#: app/widgets/gimpsizebox.c:455 #, c-format msgid "%d dpi" msgstr "%d dpi" @@ -10786,6 +10797,9 @@ msgid "Image Editor" msgstr "Editor obrázkov" +#~ msgid "Keep aspect ratio" +#~ msgstr "Pevný pomer strán" + #~ msgid "Y:" #~ msgstr "Y:" diff -uraN gimp-2.2.0/po/sr.gmo gimp-2.2.1/po/sr.gmo --- gimp-2.2.0/po/sr.gmo 2004-12-19 03:11:56.000000000 +0100 +++ gimp-2.2.1/po/sr.gmo 2004-12-28 16:58:44.000000000 +0100 @@ -1,225 +1,219 @@ -L |Jm ܔ&kG:9GANFi<k<@2;PXO29,-f9;7 - BL -S ^ -h -s ~ - -0F0M~ -  -# -. 9 FR b nz  K.j1!8G^bu -  -  - /BZl~*65MVs#+Oi - - !11F3x -lw -"A3Ju<  ,<Um}  *B -KVg&$  %>EKe"m  -7G M Zhqx   m3 8 F T^g  C7=2@p6dMk3<#!*Li  (:Wt, - 8 Y!g %,3 9GZ iv.557'8_), #2@ sOA%]&41# 5C _ ku -  10C t  +%8KT dr { - $  ;\v" "2 ;GO 4T i"w" - -)&P,j!##!%=c. #%-Iw%' ,: -T -_ -ju  ) -<G-N|  ,<Of w %! "5&Mt     0=O ^jy - -- GS Zhp x -  &4N Wa q{:?8 T`i{  - - -  - *6 ?L` o>} "4CUu  1 AK^s - -  ) >K[v -*!#.:i#"&8 NZn,w# 'A'^FT6    -' 2@ ]~  ($8]=c6<?AU79c 9mB=f(>CJg]  - = GS e r -DTh1E Yg -z   -   -# +7G We}(    - 5 ;  -A OL   -  N -_ -x - +K tJm ̔&kG*9rGAN6i<k,@2; PHO29-V9;7 2< +C N +X +c nz + + 60=n +  + + ) 6B R ^j o {K.Z1! (7NRe +w  +  +2J\n}*6%=Fc#?Y +u !163h +\g +A#Je< ,E]muz  2 +;FWp&$ .5;U"]  +77 = JXah p }  m# ( 6 DNW t C7="@`6d=[3q<#!<Y s *Gd,  ( I!Wy # )7J Yf.|5578O),20 cOA %M&s41# %3 O [e} +  !03 d p} +(;D Tb ku +} $ +Lf" " +7?  $D Y"g" + + )@,Z!##! %-S.r #-9g%} * +D +O +Ze}   +,7->l s  ,?V gs %! %&=d x    -? NZi + +- 7C JX` hu +}  $> GQ akr:?8 DPYk | + + +  + & /<P _>m $3Eeu   ! 1;Nc~ + +   .;Kf u +*!.*Yu#~"&( >J^,g# ' 1'NvFT&{    + "0 Mn}  ($(M=S6<?AE79c9]B=f>CJgM    - 7C U b p~ 4DXt !5 IW +j u  +   + '7 GUm(     % +  +1 O<   +  > +O +h +  - - - - - -. -  2  -A  L  Z  f s x         u   f c, zr& !&2'Y        -+1IZ^x  - & + 8D_v -H - (8 -@HK!B1 >QV [ho -  `C10(Y _ ly - -  #(1 -Z -eHp -  -  0E T aot |   r~    K,3x6" +5Ma p$z   (+H)t*!/-4C*T' -+=Scu ,5D]p    !4 V r         !-!J"S"f"j" """" ""3"" ###3# K# -X# c# o#|#####$$ ,$:$Q$ X$d$y$$$@$$-$% ,%9% >% L% X%e%% %% % %%%%&& 0& :& F&R& i&w&& && -&&& '' &'2' -H'S'h'q'y'''''''' '' ($( -,(#7([(t((((((+()) &) 4) -@) K) X)f){)))) )) )**.*"E*h*q** *****$*++'+6+ E+Q+ Y+ g+s+ x+ ++ -+ + -++ +++ , ,,3,B,Y,o,,,,,, ,,,-- -"- --9-K-_-r- - --- - - ---.. &. -3. >.H. c. p.|. . . .,..!./0/G/)d/ // / ///// / 00B&0Ai0000 0011 1-1?1T1\1d111 -222 - 2+2 ?2M2d2 v2222"2!2!3;3S3l3 3 3 3333 33V3+64 b4(l44"44 4 445%5 -D5 O5Y5a5p55 -55 55 55 5 5566 -6 96 E6S6&m6,6 666 -6 -66747S7k7~74777 -777 -8 88'8 08>8F8M8 j8v8 8!88 88 88 9$9 49>9O9 a9n9u9?}999999:2:4: ;;-; H<R<[< -k< v<#<<-< <<= =%=-=D=M= -V= a=m=>'>;> D>Q>Z>b>h>~> -> ->>> -> > >>>? $? .?!8?Z? ^?l?? ? ???? ??? @@ -+@6@H@ [@i@ ~@@ -@@@@@@ @! A-A!KA#mAA A -A9AUA=OB<B=B"C?+CkC}C CCCC(C,CCD D1D -BDMDcDxDJD DDD E &E 3E@E[E uE EEEEE;E'FAF PF ]FiFF F FF F F FFF GG1GNG`GtGGGGGGGGH+(HTHlHHH H H HH H HH# -I .I:I LIXImII6IIIII J7!JYJwJJJJJJ J JJ -K K+K IKUKjKpK -wK -K KKK KK -KKK KL -L%LEL bLnLLLL LLLMM+M4@MuMMMMMMM.NEFNN N NN N NNO O O 'O -3O>O OO -[OfOuO OOOOONgP -PPPPP PP Q%Q;Q#UQyQQ QQQQQ#R9RWR kRxRRRR$RRS 3S=SMSgS{S!SSSS -SS -T T'TFTaTxTTT TTTT U*UAU ZUhU{U UUUUUUVV -+V6VFV"`VVV VVVV -W#W=3W6qWSWJWGX`XsX XXXXXXX Y Y+Y:YOYbY vYYYY YYYZZ9ZTZlZ ZZZZZZZZ)[N[(\K<]=]]*J^u^_3_T_?F```2`aaLc4Od/dd oe{eeeeeeeeeeeff8f Mf Yfff;off fff ff gg)g#=g agng g g&gg -gggh h"2hUhmh}hhhhhhhii (i5iNi binisiii+iiii ii i j j -'j2j8j?jGj Pj \j8ijvjk k8k Pk ]kik ok!kkkkll7lTl[ljlqlzlll l l l llll l mm +m7m Hm Tm`m}m!mmm(mn# n 1n ?nLnSn -Yn dn qn{nnnn -n n -n nnnKo1So7o1o5oH%pAnpp;;q!wqq [r|r cspt}u*uBvww xxy y$y)+y5Uyy1;z0mz0z1z({C*{n{S{,C|2p| |A}A~*H~s~  8G$lU2Ex - -ʈՈ %.4FY r  ҉ۉ  -< >L cmNj#=M \i} -3;;-i F Yc h u ďˏӏ܏33#gƐ !-JSF\ -Ñ -Αّ ޑ     "!0!R t +K0Q5 $Ô5PGo-Oj5oejv~p`oљwA<?>6tut`_Jʝ0Н 5 FT6Vo4#CgG0XxUѠO'w -  ȡҡ ۡ#$ ,:CIX_h{ Ţ ʢ آ  "5P o  ңߣ    )=D -KV ^ks ޤ  -  .<K [i }  ɥߥ  *9B \ f -s~Ц%7 G h r|  ħ ʧا  ( 2 -< -GRkt | ɨ ܨ  $+2:Tc -  ȩЩة  - #(.A\em  êѪת -  $ 2 -@ K Y f p }   -īϫ ث   %3CJ S ` n{   άԬ׬ܬ   . ANT]n(έ֭߭ 491n/Ю +1E#V zѯ" - ):AJ` q}ð -ܰ - - '-4 -T_pv -ɱر   -"-495=s  !ֲ  : -Z eqx|   ijҳ.1+C.rM|cj{θJWй(gG(_poлi@ANN;RNݽT,  Ͼ -#&;C '9׿ 'g4!% -$+ < -I -T_ u   - -  #   &>afC0  3O3m -(>W*o$)#+(O x)(  ?.Wn%& 2.A7p(  7(K t C3,.[p # -90CWobL'S{ *(* ,6K k-x%#$v%f6*09 Ye:n5' 6Ww0' 0(Y'v^IGN_t 0I*N: - $  )#Jjn -".,6 c -oz  - -@ &M!t }Z;krVuId2Q'3y[SH)8r=.6G(\/".*,28_3"2D"/g -84G#]%+88  E Q^t0  64S9mkw|\TP>?0YIy4WPuLULmg]P</l." 2 MW`3v"Zt $ - -+G6~" ,?@O?"3'7[*.*.6De!'%4I^ -oz23<.+kEE7?w=\ 0}c.MAHDROpBc gu8$" $,;QO$O)R-|+%1 -.-9Ag< &2 F!R't "/%Kq^!,AN - -  (Cb!!.IY ht\J%<0b7b1.`v#-0H`v"- (E *n   1  - -h/ - - - - - -" -   - $: "_ /  # ! # ) #D  -h s    7   Zs&%  /+<h 7 -S^v"b>;z%.C(r *"=+`+( " *C1n)*'/@p(*' *4_{%XB T1u&U9$!^@4.*%LP+0 e< ! )9;=u-I0+(\A. $3"L#o7(. -9.N\}d6? 6v + + $!*!9!M!e!8v!!H!F"V"e""}#$$~4%~%2&''v8((qo))r*+++,,4,S,8d,*,,,&-+-C-^-"v-,-$-(-).1>.p..#.".2.)#/+M/-y///A/@ -0.K01z0'0101#1!C1>e1 1111*1$20D2,u22'2223 3>3"Z38}3)3304F14 -x444.4,4 5 -5*5B5>56/647*H7s7+7777 -8(8778o88888#8939<9X94p999$996:O:g:2 ;S;<^>?2? @ -@@*@2 A?ARAlA A"A*A2AMBOgB0B BBC!"CDCbCkC C C -CCCCC D2!DTDtDxD>D0DEE5&E*\EEEEE E E -EEF85F3nF!F FFQF:3GnG~GHH#+HOHbH|uH8H+II#IZI$5JZJcJrJ JJJJ -JJKKKLjM`M -SN^NxN$NNN5NO&5OG\O&O-OOCP\PxPPQ*Q@Q -VQaQzQQQ&Q Q -R"R:RVR fRtRR R$R RRR6SLS,:TgT4TT*TUU2URUnUUUfVgVVW>%W dW*qW!WW W/WX5XQXGoX@XZX]SYRYZZ/_Z$ZkZ [1[M[Uc[[/[G[!G\#i\\!\\\\]-]!I]k]]#]5]']+'^5S^/^%^^^1_#K_'o_1_+_!_`!3`3U`%`)`3`- a#;a_a#}a5a'a+a5+b/ab%bbd&dd-de /e&r$&?;%!a($ƪ(2$Fk0|,ګ2L;l"/ˬ 3+P]|8ڭ>R,r**ʮ,A"*d0Fbj#ð#!x)9 -ܱ"6P2+GgLx>ų6,R") *:Ud&{ ܵ& 4CRK?<&V8}:1#!=&_"!&˸\FO(*B!-O'iJtܺQo0ӻ. <+M+y),ϼ>;Uu>/ =Wۿ  -DWf)#'1+H!t%#-2'`'!%&/L)|)#*'N1v+!=YtH?4AJA; -?$?d?>-#SQ6<37O#0'+"%Nt.K."5Q34+ -+6;bS</.Q& -(/1a.y ''@1U"2 9*8@c;=9(X%("*$.C4rwZzxb^[)0'Zh}^&n%qs@j - - #0'8`s$$)**UgP$-#Qp'%'3P'k%E'D,_(28R!;t-J2c,5)?)X%2^1; -S -^ i v!X "3AR; ??.]1/.37Q#. +7Tn*1K)gRa;-8O T-a(  . 8 G'h, -'-Uv^_c5ccyauQn'!^3K2 1 - -  ( & B/ Yr q [>YJS?RiWIt.yE5sq[(4.+0Z ! -E#P$q$K&X (*d((N((& )10)0b))))))/)0*0K*|*%*+***)+?+Z+#k+ -+++-1-.#1.%U.!{.%.6.A.!;T;f;&u;&;;;;<O-<Q}<<<W<mO=h=&>>?P@k7AA4B-BDEQFGGHIJ`KteL|LvWMMNO6P%Q -R_R sR R%R7RR S'So)SS`TbT kTLuTOT)U{rzrrr$rrVrLMsEss/s"tNBtt ttt tt* -u,5ubu vuu'u+u.uv5vNv]v mvyvvv v v.vv-wHwXwkw~www1w wwx%x9xRxVxjxmxxxxxxxx7Pyy"yyyy#y! -zJ,zBwzIz7{<{O{ -b{m{ -s{ ~{ { -{ {{{{#{|#|o2|J|7|pe <}qwm -zb]& 56@~SMH$ HK: =_ >e{X?3W9 >BL{J3|9']Hq*$li =4xc*iZVkO*s).k# h4+ bdeycWQbnG Z1 ph&Y5E[ 6R4uq"fW5+!`?o  21t)$70Me {`bU@!} 0+' %w /KDFv@J[,Nf{cfFd A oDsS:q=E! E2sQs2E ?<j:sVA4p1 L~M)Srga3pu? |ly4 da.;>BHg"Akv} eu  yN I `x  %b6 S'*" #D2) j]!QV_S\%d #TU, ?/[ am1 V.DF 7viT<- v/: 7 \g$?l~!Qanx  .UEH6JQ]0^ '4@F^,*  P9$ ff 5 &X_kyL(# ' ( 5N:?8`k#B+(2 wg} +6 oi4<^CT Q; z mv d9A6}4 BLI5;yz/v oRg8-P)*Wy$&(Jc>$@*N{> PA2XH.r G=Ec s^zz/2E$3fENC;Gqu7|9"% /L(0Gt=Y/j!,q6zPf'r9+%O+ -T{7?HOe<xCo' -Io-Ot8_vbthw-LDfSB_[bj00Yu2R?6o& ],l.BbZ{J|8.)D GMw\x6 '@4X]=0hIK q4p>S~3J TR`1:.VK9R35Fm( #70 m=/ uPb;sHlYMjjq["\Ng8^#|haE_>dvPt]JQ\~FP <hDXX,H & -p (8G! hDxUF^R-k] -K ZJ*uWeBgT\_lU0X7B<8 ;OvSj --9C3lCa = Q'`r,8=Kr>i"Z +% c, C0 nAz@~N7V(In%Mw.W;~ UH &wu< 1$FM. oIKn1AJ -D )#/g32aFm&:pG\{3 9r P(p%Wz)O+U wI@ ~  ;YI][dtkzL3Y_r >Ui:@+mO)xC^A,aRrKATjCnc -\7y8|nZ"!VPVcAY5MC W}r  p["(kyGK`Nt`B W R1 > 1|hml|}I|sLLQ - `;c" q#K@&X-}G~N RG ymTxe;IdUL n&[/V8 *Yi71ghFwJ Z_jB#:Zx%D5neS}9a  -O {Z'2-6): X<^!5k=M ltY",^fs TE%io[u d* -\O-i?t$<C! + + + + + +. + + "  +1  <  J  V c h  w        u w  V c zr&"'I q }      !9JNh  +   (4Ofv +{H + ( +0H;!B1.AF KX_o +  `C10I O \i +{ + (! +J +UH` +  +   + 5 D Q_d l y  bn    K3h6" %=Q `$j   (+8)d*!/$3*Do' + 1ASbkz  +";N e ! 4 P b  i v      - ("1"D"H" b"l"r"" ""3"""## )# +6# A# M#Z#x###### +$$/$ 6$B$W$k$z$@$$-$$ +%% % *% 6%C%a% h%t% y% %%%%%% & & $&0& G&U&m& && +&&& && '' +&'1'F'O'W'j'o'w''''' '''( + +(#(9(R(k(((((+((( ) ) +) )) 6)D)Y)m))) )) ))) *"#*F*O*e* *****$***++ #+/+ 7+ E+Q+ V+ c+p+ ++ + +++ +++ + ++, ,7,M,k,,,,, ,,,,, +- --)-=-P- c- m-w-- - - ----- . +. .&. A. N.Z. t. . .,..!../%/)B/ l/y/ / ///// / //B0AG0000 0000 0 1121:1B111111 +1 2 2+2B2 T2a2s22"2!2!2313J3 b3 l3 v3333 33V3+4 @4(J4s4"y44 4 444%4 +"5 -575?5N5b5 +r5}5 55 55 5 5555 6 6 #616&K6,r6 666 +6 +666717I7\74n777 +777 +7 778 88$8+8 H8T8 i8!u88 88 8889 99-9 ?9L9S9?[9999999:4:::-: &<0<9< +I< T<#^<<-< <<< <= ="=+= +4= ?=K==>> ">/>8>@>F>\> +t> +>>> +> > >>>> ? ?!?8? GRGeGvGGGGGGG+H2HJHjHqH H H HH H HH#H II *I6IKIbI6zIIIII I7I7JUJjJzJJJJ J JJJ J K 'K3KHKNK +UK +`K kKxKK KK +KKK KK +KL#L @LLL^LyLL LLLLL M4MSMpMMMMMM.ME$NjN {N NN N NNN N N O +OO -O +9ODOSO bOoOOOONEP +PPPPP PPPQQ#3QWQuQ QQQQQ#QR5R IRVRiRRR$RRR SS+SESYS!qSSSS +SSS ST$T?TVTjTT TTTTTUU 8UFUYU lUyUUUUUUU + VV$V">VaV{V VVVVVW=W6OWSWJW%X>XQX dXnXXXXXXX X YY-Y@Y TY`YyYY YYYYYZ2ZJZ ^ZjZZZZZZZ)[N[\K]=f]]*(^S^^3_T_?$``d`2``za*c4-d/bdd MeYeaegeneeeeeeeeeef +f 7fDf;Mff fff ff ffg#g ?gLg ag og&|gg +ggggg"h3hKh[hkh|hhhhhhh ii,i @iLiQiaivi+|iiii ii ii i +jjjj%j .j :j8Gjvjjjk .k ;kGk Mk!nkkkkkkl2l9lHlOlXllll l l l llll lll mm &m 2m>m[m!jmmm(mm#m n n*n1n +7n Bn OnYnhn|nn +n n +n nnnKn11o7co1o5oHpALpp;q!Uqwq 9rZr AsNt}t*uuBvvwwkxx xy) y53yiy1z0Kz0|z1z(zC{L{S{,!|2N| |A}A}*&~Q~~ ǁkfiGJ32#V p-z +ƈ؈ $7 P]o   Ή +ԉ<߉ * AK]qϋދ+ :G[ +kv{3;ό; GF 7A F Sago ؏3#EiԐ  (1F: + +  ʑ ؑ   !!0 R ^+jK0Qe$5ƔPGM-OÖjo~ejT~p>ow<?Ԛ>tStț`=(0ߝ $264ok۞ݞ4#!EGXVUOUlu~ +   á̡#ޡ +!'6=FYlu   Ģ ۢ . Mn t  ţϣ   " +)4 <IQq z ˤפ +ߤ ) 9G [ iw ͥߥ    : D +Q\bqȦ٦ % F PZ bl r~ Ƨͧӧڧ    + +%0IR Zd jw}  ƨӨ  2A +al  ̩ ۩   :CK^t  Ū˪Ҫ +ڪ    + ) 7 D N [h y  + «˫ ګ  !( 1 > LY b p~ ¬ Ѭ ެ   ,2;L_q(ӭ41L/~ĮԮ  ##4 Xy" +(> O[bjz + +Ű +а۰   +2=NT +]hnw| ˱ڱޱ + 5Q cm} ! ֲ  +8 COVZbgms z  .ó+C PM}|˷cH{(WgG_NoiANʼNRhNT +_ r |ξ +;!]m '9 g!z% +$   +' +2= S a m +{ +  #  af!0  3-3K +(5*M$x)# (- V)w(  ? WL%&.7N(  7() R sC3, 9N l#z +9!5MkbL'1Yb yw*(* +) I-V%#$vj%f{*0 7C:L5' 5U0t' 07'T^|I%,=R d0nINg +w $ #(jL +"., A +MXq  + +@&+!R t}ZktrVSIB2Q'y9SH8P=.%(:/c".*,8=3v"2D/E +u84%#;%_+88 # /<R0n  619Kkw|i\jTP?m0YIW4W.uL3Lmg;P< Jf."  +5>3T"ZRf }$  + G\r"  +@-?n"379*q.*.DC!'%'< +MXgz23< +IuEE7Ud=\0[c.MHmDRONBc ES8h$" $ +;/Ok$O)0-Z+%1 + -AE<  $!0'Rz  %)Oi^x! +A, +ny + !@_!~! '7 FR\rJ%0@7qb1 >T#j-&>Tn"-(# *L w  1   h +v +  + + + +" + + + $ "= /`  # ! #  #"  +F Q e   7  k Z Qb&s%  +F^t  +1<Tt"b>Xs.!(Py *"+>+j( "*!1L)~*/N(f*'*=Yq%X  21S&U9!<@^4.*L.+{0e<b ! )9=S-I0 (:Ac.^ "*#M7q(..,\[d6 6T + + $ !!+!C!8T!!H!F!4"C""[##$~%~%&&v'v((qM))P**++++,1,8B,*{,,,&, -!-<-"T-,w-$-(-)-1.N.k.#.".2.)/++/-W///A/@/.)01X0'01001!!1>C1 1111*120"2,S22'222223"838[3)3303F4 +V4a4|4.4,4 4 +45 5>55 67*&7Q7+q77777878M8k8888#8899694N999$9969-:E:2:1;<<>>?? +??*@2@A0AJA iA"vA*A2AMAOEB0B BBB!C"C@CIC _C lC +zCCCCC C2C2DRDVD>pD0DDD5E*:EeE{EEE E E +EEE8F3LF!F FFQF:GLG~cGGG# H-H@H|SH8H II#IZI$J8JAJPJ jJvJJJ +JJJJKLjeM`M +1NW BW*OW!zWW W/WWX/XGMX@XZX]1YRYZY/=Z$mZkZZ[+[UA[[/[G[!%\#G\k\!}\\\\\! ]-]I]#g]5]']+]5^/K^%{^^^1^# _'1_1Y_+_!__!_3`%K`)q`3`-`#`!a#?a5ca'a+a5a/#b%Sbybod&dd-dd dde/eMeeVee.e&f#.fRfjfff6f2f!g#@g<dgg*gggh'h5?h)uhh hh +ki]vi ii j j&jAj7Yjjj jjj1jJ/kFzk-k#k ll8l3Nll#l$ll!lm%5m&[mm#mm!mm%n 6n Dn"Rn unnn nn:n2o$8o1]o5oooWo5Jp)p=p p p+q+/qJ[qq qq(q&r/rIr(er&r,r,r's7sQsms,s-s6sOtit6t=t +t u +u u&'uBNuuu,u#uv 8vEv]vsvvv*vvvw"0wSwmw.w"ww/w+x&Gx*nx7x7x! y+y =yJy^y$ty=yyyyy z$0z(Uz5~zzzz'z{.{B{DV{{'{4{|%|7|@I|||F||}+}MC}$}6}"}.~2?~Hr~~H~&A +Xc*z x20F_ +ny # -Ng '΃=&D1c66̄::>8y&/م3 =L_qˆV ؇w +^Ci1߈9"REu + Ɖ ԉ (0+.\ Ċъ#! +>I&c&ʋA43h Ȍ:6#%Z'čKߍ+ FS i0v.#֎  5 C(Py,GϏ 1+R~"'""#?c  |1$@0e??֒DW[   ͔ז,&I-pU$%*Pb$r֘ !2T e r0,њ$.Sp֛ !'$.#S'w/͜  +"%<&b#ŝ'( 2%Lr#'ʞ/=" ` m,{GH:96t1ݠmuk(meZhTã+*Do   ;TF^z'ǥ21"lTۦ'*F`-v3ا& *0![&}[3&4$[&?;!#E(_$(֪$-0>,oث;."j/ 3ެ+]>8>խ,4*a*,A*&0QFbɯ,#Ko#!ɰx9d +"6۱2+ݲ )L:>Ƴ,"Ad)~ ۴&&=d &ϵCXKr?&8?:x1!&!"H!k&\F(X*B!'+JSt1O0d.ϻ++;)g,>7Tq>/Ͻ  +ɿDԿ(B)b#'1+ +!6Xn%#-'"Jh'!%/)>h)#'18+j!=6HN?4A AN;??&?f>-Sg6<7I#g0'+%6L.iK.5I3c4++;$S`<.&Bi +(/#.;j '1"I2l 9*@%;f=9(%C(i"*$.44wiZ<xb [)'hD}G^a&nV3s@,m + + #0'"5Oi$x$)*)CPR$-2'M%u'3'-%U{E',!(N2w8R;6r-J2%,X5)D_w%2^R[u + +  + 8F!\X~ "A;V ??.1N/.37KZt#. 0G*` ))SoRa-_8O -#Q(l  . '*,R +'v _cc[cy#un!X^z3 2VVT1n + +  (  B Y4 q [Y\JSRU+Itey^Ee5sUq(4.0 M! +#$q$ &X'*&(Q(Nf((&(1(0$)U)e)n)))/)0)0 *>*%V*+|***)*++#-+ +Q+\+r+-1--#-%.!=.%_.6.A.!.% /#F/j/-////#/0 +;0 +F0Q0&`0c0R0>1S13555)5*56+6(>6?g6"666J6IB7;7d7<-8+j80818@8::9!u99999<9-:=:zN:6:;;(;&7;&^;;;;;O;Q?<<<W<m=h==>?P@k@eAA-BDKEFFGtH^IVJ"Kt'L|LvMMVNQOOPQ_Q 5R BR%PR7vRRRRoR[S"T$T -TL7TOT)T{UzV'WW1jXXXXXXYY )Y 7YCY#WYT{Y YY +YZZ1ZFZ*VZ)ZZZZ Z[ [ $[)E[o[ [ [[[[+[4[/4\ d\r\ \ \+\\ \\\]"] :]H]7c]]]] ]] ]5^>^P^ m^#{^7^.^__-_@_$`______``5`P`k`+````aa/aJa0`aaaaaa.b4bNb,jbb.bbbcB9c"|cc cccc(d+d HdVdrdd dddddde e*e:e9Qee ee eeee e f f !f -f7fSf#nf!f ff f ff-f!,g;Ngg!g gggh h/'hWhphhh h h hh"h i i i'@iKhii*i i$j)j;jDjTjij~jjjjjjkk8kOkik kkk kkkkll2l Rl ^l llxl!l l ll lm m"&mIm!hmm#m mmmmmnn;n.Znn"n nnno o;oNVooo"oo)p29plp\poLqq#q;r2V8 =AKzI3{9&]Gp)$li =3wc)hYVkO*r(.k# h3* addxbWQbmGZ0 og&X4DZ5R4uq!fV4+ _>n  11s)#70Le z`aT@ } 0*& $v~/KDEu?J[,NezceFc @ oDrR:p<D ! E2sPs1D ?<i9sUA4p1L}M(Rrg`2 pu> |ky3 d`.:=BGg"@jv} eu  yMH _w  $a5 R&)! "D1( i\!PV_R[$d #SU, >/[ `m1 V-CE 6viT;, v.9 6 [f$>k~!Panw + -TDH5JQ]/] '3?E]+)  P8# ee +4 %X_jxL'" & ( 4M:>7_j"B*(1 vg| *6 oh4;]CT P: y lu c8A6|3 AKH4:xz.u nQg7,O()Vy#%'Ic>#@*Mz= O@1XH-qG<Db s]zz.1D#3fENB:Fqu7{8"$ .L(0Fs<Y/j!,q5yPf'r8*%N+ S{6?~GOd<xBo& +Hn,Ns7^ubthw,LDeSA^Zaj/0Xt2Q?5n& \+k-AaY{I|8.(CFMw\x6 '@3W\=/gIJ +q4o>S}2I TR`0:.UK 9R~35Em' "7/ m<. tPb;rHlXLjipZ"\Mf8^#|h`E^>cvOt\IQ[~EO +;gCWW+G % o'8G hCwTE^Q-k] +J YI*tVdBfS[_lU/X7B<7 :~NuRi -9C3kCa < Q'_q+7=Kq=i!Z +% b+ C/ n@y@~N6U'Hm$Mv~-W:~ UG %wt; 1$FL- nIKn0@ J-C )"/f22`Fl&9pF[{2 8r P(o%Vy)N+T vI? }  + ;YH\ZctjzK2X_q >Uh9?*lO)xB]@,aQrJASjBmb +\6y8{mZ! UOUbAX5LB W|q  p[!'jxGJ`Nt`A W Q0 = 0{gmk|}H{rKKP _;c!p#J?%W-|F}M RF xlSwe;IdTK n&[.V7 )Yh60fgFvJZ^iA"9Yx$C5meS|9a  O {Y&2,5(: X;^ 4k<L +lsY"+^fr TE%ioZt c* +\N,h?s$;B  Invalid option "%s" Usage: %s [option ... ] [file ... ] @@ -263,7 +257,7 @@ Make sure a proper setup for your display environment exists.GIMP help browserGIMP is not properly installed for the current user. User installation was skipped because the '--no-interface' flag was used. To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Generate optimum paletteGet Monitor ResolutionGiganticGimprc proceduresGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient:GradientsGradients MenuGrain extractGrain mergeGrayGrayscaleGreenGreen:GridGrid line spacingGrow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_counter-clockwise hue)HSV (clockwise _hue)HTML notation:H_eight:H_elp browser to use:Handle position: %0.6fHard edgeHard lightHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHelp proceduresHex:HighlightsHint for the _docks:Hint for the _toolbox:HintingHinting alters the font outline to produce a crisp bitmap at small sizesHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB color layers.Hue-_Saturation...Hue:HugeI_con & TextI_mageI_mport Path...I_nterpolation:I_nterval:IconIcon & descIcon & textIf available, hints from the font are used but you may prefer to always use the automatic hinterIf enabled, the move tool changes the active layer or path when a layer or path is being picked. This used to be the default behaviour in older versions.If you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.Illegal variable name in environment file %s: %sImageImage + GridImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage ThumbnailsImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage maskImage resolution is out of bounds, using the default resolution instead.Image sizeImage sourceImage typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport paletteImport pathsImported PathIn_kIn_vertIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorIndexed Color ConversionIndexed color layers are always scaled without interpolation. The chosen interpolation type will affect channels and masks only.Info WindowInitial zoom _ratio:Initialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' -InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratioKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine +InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine spacing:Line Width:Line _Style:Line style used for the grid.LinearLinked itemLoadLoad CurvesLoad LevelsLoad Right Color Fr_omLoad curves settings from fileLoad levels settings from fileLoad text from fileLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower Path to _BottomLower channelLower channel to bottomLower layerLower layer to bottomLower pathLower path to bottomM_agnifyM_asterM_ove to Screen...Ma_pMagentaMagenta:MagnifyMake _transparentManage Loadable ModulesMarching _ants speed:Mask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:Max Depth:Maximum _filesize for thumbnailing:Maximum _new image size:Maximum color differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMeasure the rulers and enter their lengths:Median:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMerge vectorsMessage proceduresMessage repeated %d times.Message repeated once.Messages are redirected to stderr.MidtonesMigrate User SettingsMinimal number of _undo levels:MiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMouse WheelMoveMove AnchorsMove ChannelMove Floating SelectionMove GuideMove Guide: Move LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove ToolMove itemMove layers & selectionsMove selectionMove the current layerMove the current pathMove the selected filter downMove the selected filter upMove to Screen...Move: MultiplyN_umber of colors:Na_vigationNa_vigation WindowNa_vigation preview size:NameName:NavigationNew ChannelNew Channel ColorNew Channel OptionsNew Color from _BGNew Color from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channelNew channel with last valuesNew channel...New color from BGNew color from FGNew gradientNew importNew layerNew layer with last valuesNew layer...New paletteNew path with last valuesNew path...New patternNew vectorsNo brushes available for use with this tool.No filter selectedNo linear gradients found in '%s'No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of _processors to use:Number of grid linesNumber of layers:O_ther...OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset by x/_2, y/2Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the palette selection dialogOpen the pattern selection dialogOpen the selected entryOpening '%s' failed: %sOpening '%s' failed: %sOptions: @@ -315,7 +309,7 @@ did not save indexed colormaps correctly. Substituting grayscale map.YYellowYellow:You are trying to create an image with a size of %s.You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your input device settings will be reset to default values the next time you start GIMP.Your keyboard shortcuts will be reset to default values the next time you start GIMP.Your window setup will be reset to default values the next time you start GIMP.Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_All_Anchor Layer_Antialiasing_Arbitrary Rotation..._Artistic_Aspect_Auto_B_BG Color_Background color:_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Bucket Fill_Buffer_By Color_By Color Select_C_Cap style:_Channels_Clear Errors_Clear Undo History_Clone_Close_Close Tab_Clouds_Color Tools_Colors_Configure Color and Opacity..._Context_Context Help_Copy_Copy Named..._Create Image from Template..._Crop & Resize_Crop Image_Curved_Curves..._Dark Check Color_Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Desaturate_Detach Tab_Device Status_Dialogs_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Ellipse Select_Enable layer & channel previews_Enormous_Equalize_Eraser_FG Color_File_Fill with:_Fit Image in Window_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground color:_Free Select_G_Generic_Gigantic_Gradient_Gradients_Grayscale_Grayscale copy of layer_Grow..._Guides_Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Info Window_Intersect with Selection_Invert_Join style:_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Left Neighbor's Right Endpoint_Levels..._Light Check Color_Light Effects_Lightness:_Line Style_Linear_Linked_Load Left Color From_Lower Channel_Lower Layer_Lower Path_M_Manually_Map_Mask_Mask to Selection_Maximum number of colors:_Measure_Medium_Merge Palettes..._Merge imported paths_Migrate GIMP 2.0 user settings_Misc. Stuff_Miter limit:_Mode_Module Manager_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._Padding Color_Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preferences_Preview_Preview Size_Previous tip_Print Size..._Properties_Quick Mask Active_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Reassign shortcut_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Remove unused colors from final palette_Render_Replace_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Order & Visibility_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Right Endpoint_Right Neighbor's Left Endpoint_Rotate_Saturation:_Save_Save Left Color To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Scale imported paths to fit image_Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Show Image Selection_Show in Toolbox_Sinusoidal_Small_Smudge_Snap distance:_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tool_Tools_Transfer layer's alpha channel_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Visible_Web_Web browser to use:_White (full opacity)_White Balance_Width:_Wrap around_X resolution:_X:_Xtns_Y_Y resolution:_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for icon typeinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetermillimetersminuten/apercentpicapicaspixelpixelspixels/%apixels/%spointpointssecondtips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: GIMP 2.2 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-19 03:11+0100 +POT-Creation-Date: 2004-12-28 16:58+0100 PO-Revision-Date: 2004-11-18 20:06+0100 Last-Translator: Бранко Ивановић Language-Team: Serbian (sr) @@ -368,7 +362,7 @@ Проверите да ли су исправна подешавања екранског приказа.Претраживач Гимпове помоћиГИМП није ваљано инсталиран за тренутног корисника. Инсталација за корисника је прескочена јер је коришћена „--no-interface“ заставица. Да би обавили инсталацију за корисника, покрените ГИМП без „--no-interface“ заставице.Гимп користи ограничену количину меморије за складиштење података о сликама, тзв. „оставу за делиће“. Подесите њену величину како би стала у меморију. Мислите и на меморију потребну за остале процесе на систему.ГИМП користи додатну gtkrc датотеку тако да можете подесити да изгледа другачије од осталих ГТК програма.Гимп издањеГИМП ће упозорити корисника ако покуша да направи слику која би узела више меморије од велишине која је одређена овде.ГамаОпштеУопштено се односи само на 8-битне приказе, ово подешава минимални борј системских боја одређених за ГИМП.Састави најбољу палетуУтврди резолуцију монитораГигантскоGimprc процедуре_Стаклени ефектиПреливУредник за преливеМени уређивача преливаДиректоријуми са преливимаБоје крајње леве тачке преливног сегментаБоја крајње десне тачке преливног сегментаКОрисничко сучеље преливаПрелив:ПреливиМени за преливеЗрнасто извлачењеЗрнасто спајањеСиваСиви тоновиЗеленаЗелена:МрежаРазмак вођицаПрошири каналПовећај изборПовећај избор заВођицеПријањање уз вођице и мрежуПроцедуре вођицаHSVHSV (%0.3f, %0.3f, %0.3f)HSV (супротно смеру казаљке на сату)HSV (у смеру казаљке на сату)ХТМЛ запис:_Висина:Који читач _помоћи користити:Руководи положајем: %0.6fТврда ивицаЈако светлоТврдоћаТврдоћа:ВисинаВисина:ПомоћРазгледач помоћиСистем за помоћРазгледач помоћи се не покрећеРазгледач помоћи није нађенПомоћне процедуреХекс:НаглашеноОзнака врсте прозора за _прилепљене прозоре:Ознака врсте прозора за _алатке:НаглашавањеНаговештавање мења границе писма да би дало лепа слова мале величине_ХистограмХистограмРазмера хистограмаИсторијатВодоравноВодоравни померај прве линије мреже; ово може бити и негативан број.Водоравни размак линија мреже.Колико назива датотека скоро отвараних слика ће бити у Датотека менију.ТипНијанса-засићеностТип-засићеност раде само на слојевима у RGB бојама.Нијанса-_засићеностНиј.:Огромно_Иконе и текст_СликаУ_вези путању...И_нтерполација:И_нтервал:ИконаИкона и описИкона и текстАко је доступно, наговештавање писма се користи, али можда ћете радије увеккористити аутоматски наговештајУколико је укључено, алат за премештање мења активни слој или путању када се бира слој или путања. Ово је било подразумевано понашање у старијим издањима.Уколико не сачувате слику, измене учињене у последњих %s ће бити изгубљене.Уколико сада затворите Гимп, ове измене ће бити изгубљене.Неисправан назив променљиве у датотеци окружења %s: %sСликаСлика + вођицеОбрада сликаИнформације о слициМени сликеВеличина сликеФормат статусне линије сликеШаблони сликаСличице са прегледомФормат наслова слике и статусне линијеФормат наслова сликеИзглед прозора са сликомПрозори за сликеСлика не садржи ниједан видљиви слојДатотека сликеМаска сликеРезолуција слике је изван опсега, користим подразумевану резолуцију.Величина сликеИзвор сликеВрста сликеСликеМени за сликеОпције увозаУвези палетуУвези путањеУвези путању из СВГ-аУвези нову палетуУвези палетуУвези путањеУвезена путањаМасти_лоИз_врниИнвертуј маскуРастућеУвуци:Увлачење првог редаИндекс:ИндексиранаИндексиране бојеПребацивање индексиране бојеСлојеви индексираних боја се увек увећавају без интерполације. Изабрана врста интерполације ће утицати једино на канале и маске.Прозор са информацијамаПочетна _размера:Иницијализуј маску слоја на:Покрећем додаткеПокрећем додатак: „%s“ -МастилоУграђена сликаУлазни управљачиУлазни уређајиУлазни нивоиУбаци везуНаправи личну мапу боја; може бити корисно код 8-битних (256 боја) приказа.Неуспешна инсталација. Позовите систем администратора.Успешна инсталација. Кликните на „Настави“ за даљи рад.Брзо ажурирање_Паметне маказеИнтензитет: %0.3f Непровидност: %0.3fСучељеИнтерна ГИМП процедураИнтерне процедуреИнтерполација:ПресекПресек са текућим изборомПресеци (нишани)Пресеци (тачке)Неисправан УТФ-8Неисправни УТФ-8 подаци у датотеци „%s“Неисправна УТФ-8 ниска у XCF датотециНеисправна УТФ-8 ниска у датотеци са четкама „%s“.Неисправна УТФ-8 ниска у датотеци са преливима „%s“Неисправна УТФ-8 ниска у датотеци палете „%s“Неисправна УТФ-8 ниска у датотеци са мустром „%s“.Неисправан словни део у URIНеисправна пречица.Неисправна ширина или висина. Обоје морају бити позитивни.ИнвертујИнвертуј каналОбрни изборОбртање боја не ради код индексираних слојева.Обрни изборДа ли је то оно што желите?Чини се да сте раније користили Гимп 2.0.Својства предметаВидљивост предметаПоравнај:Задржи провидностДржи изнадЧувај размеру %sОчувај размеруЧувај размеру %sЧувај висину %sЗадржи провидностЧувај ширину %sСтрелица надолеСтрелица надоле (Alt)Стрелица надоле (Shift + Control + Alt)Стрелица надоле (Control)Стрелица надоле (Shift + Alt)Стрелица надоле (Shift + Control + Alt)Стрелица надоле (Shift + Control)Стрелица надоле (Shift)Стрелица левоСтрелица лево (Alt)Стрелица лево (Shift + Control + Alt)Стрелица лево (Control)Стрелица лево (Shift + Alt)Стрелица лево (Shift + Control + Alt)Стрелица лево (Shift + Control)Стрелица лево (Shift)Стрелица десноСтрелица десно (Alt)Стрелица десно (Shift + Control + Alt)Стрелица десно (Control)Стрелица десно (Shift + Alt)Стрелица десно (Shift + Control + Alt)Стрелица десно (Shift + Control)Стрелица десно (Shift)Стрелица нагореСтрелица нагоре (Alt)Стрелица нагоре (Shift + Control + Alt)Стрелица нагоре (Control)Стрелица нагоре (Shift + Alt)Стрелица нагоре (Shift + Control + Alt)Стрелица нагоре (Shift + Control)Стрелица нагоре (Shift)Кључне пречице могу се динамички подесити у ГИМПу. Датотека menurc је скуп ваших подешавања, па се може сачувати за следећу сесију. Можете мењати ову датотеку по жељи, али је много лакше подесити пречице из ГИМПа. Брисање ове датотеке ће вратити у употребу подразмеване пречице.ТастатураПречице са тастатуреЛНДБоја _леве крајње тачке...ВодоравноВеликоВелико (256x256)Већи прегледиПоследња грешкаСлојСлој „%s“ нема алфа канал. Слој је постављен изнад њега.Својства слојаВеличина _граница слоја...Тип попуњавања слојаМаска слоја у изборИзабери слојВеличина слоја_Режим слојаНазив слоја:Слој се не може спустити ниже.Слој се не може подићи више.Слој је већ на дну.Слој је већ на врху.Изједначи величину слоја и сликеСлој на _дноСлој на _величину сликеСлој на _врх_Алфа канал слојаСлојевиМени слојеваОпције за повезивање слојеваБоја крајње леве тачкеПоравнато улевоДужинаДа ли ГИМП треба да приликом подизања покуша да опорави учита последњу снимљену сесију.НивоиНе могу се прилагодити нивои индексираних слојева.Боја светлих пољаСамо светлиЛинијаПроред:Ширина линије:_Стил линије:Стил линија коришћен за мрежу.ЛинијскиВезан предметУчитајУчитај кривуљеУчитај нивоеУчитај боју _десне тачке изПрочитај подешавања кривуља из датотекеПрочитај подешавања нивоа из датотекеУчитај текст из датотекеУчитавам преглед ...Место:ЛогаритамскоДуге цртицеТражим датотеке са подацимаСпусти каналСпусти канал на дноСпусти канал на _дноСпусти слојСпусти слој на дноСпусти путањуСпусти путању на дноСпусти путању на _дноСпусти каналСпусти канал на дноСпусти слојСпусти слој на дноСпусти путањуСпусти путању на дноУ_већај_ГлавниПребаци на _екран...Ма_паМагентаМагента:Увећај_Учини провиднимРуковање учитавајућим модулимаБрзина _марширајућих мрава:Непровидност маске:Маскирај _изабране областиМаскирај _неизабране областиМатрица:Највећа дубина:Највећа величина _датотека за прављење сличица:Највећа величина _нове слике:Највећа разлика у бојиНајвећи број _поништавања корака:Значај:МерењеМери растојање и угловеМери растојања и угловеИзмерите лењире и унесите њихове дужине:Медијана:СредњеСредње цртицеСпоји са слојем _исподСпоји са слојем ниже.Споји слојевеСастави палетеСпоји видљиве слојевеСпоји видљиве путањеСпоји _видљиве слојеве...Споји _видљиве слојеве...Споји _видљиве путањеСпоји слојевеСастави палетеСпоји вектореПроцедуре за обавештењаПорука поновљена пута: %d.Порука поновљена само једном.Порука се преусмеравају на излаз за грешке.Средњи тоновиПренеси подешавања корисникаНајмањи број _поништавања корака:РазноУгаоноРежимРежим:Измени изабрану бојуИзмени нивое изабраног распона бојаИзмени све бојеИзмени проредДиректоријуми за модулеПретраживач модулаПутања до модулаМодулиКурзори мишаТочкић мишаПреместиПремести везеПомери каналУклони плутајући изборПомери вођицеПремести вођицу:Помери слојПомери маску слојаПомери путањуПремести изборПремести текстуални слојАлат за премештањеПремести предметПремести слојеве и избореПремести изборПремести текући слојПремести текућу путањуПомери изабрани филтер нанижеПомери изабрани филтер навишеПребаци на екран...Премести:УмножиБрој _боја:На_вигација_Навигациони прозорВеличина прегледа за _навигацију:ИмеИме:НавигацијаНови каналБоја новог каналаОпције новог каналаНова боја са по_задинеНова боја из боје _исцртавањаНова сликаНови слојНова ПутањаОпције за нову путањуНови шаблонНова четкаНови каналНови канал са претходним вредностимаНови канал...Нова боја са позадинеНова боја из боје исцртавањаНови преливНови увозНови слојНови слој са последњим вредностимаНови слој...Нова палетаНова путања са претходним вредностимаНова путања...Нова мустраНови векториНиједна четка није доступна за ову алатку.Филтер није изабранНема линијских прелива у „%s“Није више доступноПутање нису нађене у „%s“Путање нису нађене у баферуНема доступних мустри за ову операцију.Нема избораНема избора који би био узет за контуру.Без умањеног приказаНепоравнатоНиштаНишта (најбрже)НормалноНормално (128х128)Обичне тачкеОбичан прозорНије исправна датотекаНема довољно видљивих слојева за спајање. Мора их бити најмање два.Нема довољно видљивих путања за спајање. Мора их бити најмање две.Број _коришћених процесора:Број вођицаБрој слојева:_Друга...ОфсетОфсет КаналПомерај ЦртежаОфсет слојОфсет маска слојаПомерено за x/_2,y/2Одступање:На дискуНа вишепроцесорским машинама, ако је ГИМП преведен са опциом --enable-mp ово одређује колико процесора ће ГИМП истовремено користити.Само у меморијиО_твори као слој...НепровидностНепровидност:ОтвориОтвори сликуОтвори слику као слојОтвори путањуОтвори текстуалну датотеку (УТФ-8)Отвори _путању...Отвори ско_рашњеПрозорче за отварање сликаОтвори прозор за одабир четкеОтвори прозор за одабир писмаОтвори прозор за одабир преливаОтвори прозорче за избор палетеОтвори прозор за одабир мустреОтвори изабрани уносОтварање „%s“ неуспело: +МастилоУграђена сликаУлазни управљачиУлазни уређајиУлазни нивоиУбаци везуНаправи личну мапу боја; може бити корисно код 8-битних (256 боја) приказа.Неуспешна инсталација. Позовите систем администратора.Успешна инсталација. Кликните на „Настави“ за даљи рад.Брзо ажурирање_Паметне маказеИнтензитет: %0.3f Непровидност: %0.3fСучељеИнтерна ГИМП процедураИнтерне процедуреИнтерполација:ПресекПресек са текућим изборомПресеци (нишани)Пресеци (тачке)Неисправан УТФ-8Неисправни УТФ-8 подаци у датотеци „%s“Неисправна УТФ-8 ниска у XCF датотециНеисправна УТФ-8 ниска у датотеци са четкама „%s“.Неисправна УТФ-8 ниска у датотеци са преливима „%s“Неисправна УТФ-8 ниска у датотеци палете „%s“Неисправна УТФ-8 ниска у датотеци са мустром „%s“.Неисправан словни део у URIНеисправна пречица.Неисправна ширина или висина. Обоје морају бити позитивни.ИнвертујИнвертуј каналОбрни изборОбртање боја не ради код индексираних слојева.Обрни изборДа ли је то оно што желите?Чини се да сте раније користили Гимп 2.0.Својства предметаВидљивост предметаПоравнај:Задржи провидностДржи изнадЧувај размеру %sЧувај размеру %sЧувај висину %sЗадржи провидностЧувај ширину %sСтрелица надолеСтрелица надоле (Alt)Стрелица надоле (Shift + Control + Alt)Стрелица надоле (Control)Стрелица надоле (Shift + Alt)Стрелица надоле (Shift + Control + Alt)Стрелица надоле (Shift + Control)Стрелица надоле (Shift)Стрелица левоСтрелица лево (Alt)Стрелица лево (Shift + Control + Alt)Стрелица лево (Control)Стрелица лево (Shift + Alt)Стрелица лево (Shift + Control + Alt)Стрелица лево (Shift + Control)Стрелица лево (Shift)Стрелица десноСтрелица десно (Alt)Стрелица десно (Shift + Control + Alt)Стрелица десно (Control)Стрелица десно (Shift + Alt)Стрелица десно (Shift + Control + Alt)Стрелица десно (Shift + Control)Стрелица десно (Shift)Стрелица нагореСтрелица нагоре (Alt)Стрелица нагоре (Shift + Control + Alt)Стрелица нагоре (Control)Стрелица нагоре (Shift + Alt)Стрелица нагоре (Shift + Control + Alt)Стрелица нагоре (Shift + Control)Стрелица нагоре (Shift)Кључне пречице могу се динамички подесити у ГИМПу. Датотека menurc је скуп ваших подешавања, па се може сачувати за следећу сесију. Можете мењати ову датотеку по жељи, али је много лакше подесити пречице из ГИМПа. Брисање ове датотеке ће вратити у употребу подразмеване пречице.ТастатураПречице са тастатуреЛНДБоја _леве крајње тачке...ВодоравноВеликоВелико (256x256)Већи прегледиПоследња грешкаСлојСлој „%s“ нема алфа канал. Слој је постављен изнад њега.Својства слојаВеличина _граница слоја...Тип попуњавања слојаМаска слоја у изборИзабери слојВеличина слоја_Режим слојаНазив слоја:Слој се не може спустити ниже.Слој се не може подићи више.Слој је већ на дну.Слој је већ на врху.Изједначи величину слоја и сликеСлој на _дноСлој на _величину сликеСлој на _врх_Алфа канал слојаСлојевиМени слојеваОпције за повезивање слојеваБоја крајње леве тачкеПоравнато улевоДужинаДа ли ГИМП треба да приликом подизања покуша да опорави учита последњу снимљену сесију.НивоиНе могу се прилагодити нивои индексираних слојева.Боја светлих пољаСамо светлиЛинијаПроред:Ширина линије:_Стил линије:Стил линија коришћен за мрежу.ЛинијскиВезан предметУчитајУчитај кривуљеУчитај нивоеУчитај боју _десне тачке изПрочитај подешавања кривуља из датотекеПрочитај подешавања нивоа из датотекеУчитај текст из датотекеУчитавам преглед ...Место:ЛогаритамскоДуге цртицеТражим датотеке са подацимаСпусти каналСпусти канал на дноСпусти канал на _дноСпусти слојСпусти слој на дноСпусти путањуСпусти путању на дноСпусти путању на _дноСпусти каналСпусти канал на дноСпусти слојСпусти слој на дноСпусти путањуСпусти путању на дноУ_већај_ГлавниПребаци на _екран...Ма_паМагентаМагента:Увећај_Учини провиднимРуковање учитавајућим модулимаБрзина _марширајућих мрава:Непровидност маске:Маскирај _изабране областиМаскирај _неизабране областиМатрица:Највећа дубина:Највећа величина _датотека за прављење сличица:Највећа величина _нове слике:Највећа разлика у бојиНајвећи број _поништавања корака:Значај:МерењеМери растојање и угловеМери растојања и угловеИзмерите лењире и унесите њихове дужине:Медијана:СредњеСредње цртицеСпоји са слојем _исподСпоји са слојем ниже.Споји слојевеСастави палетеСпоји видљиве слојевеСпоји видљиве путањеСпоји _видљиве слојеве...Споји _видљиве слојеве...Споји _видљиве путањеСпоји слојевеСастави палетеСпоји вектореПроцедуре за обавештењаПорука поновљена пута: %d.Порука поновљена само једном.Порука се преусмеравају на излаз за грешке.Средњи тоновиПренеси подешавања корисникаНајмањи број _поништавања корака:РазноУгаоноРежимРежим:Измени изабрану бојуИзмени нивое изабраног распона бојаИзмени све бојеИзмени проредДиректоријуми за модулеПретраживач модулаПутања до модулаМодулиКурзори мишаТочкић мишаПреместиПремести везеПомери каналУклони плутајући изборПомери вођицеПремести вођицу:Помери слојПомери маску слојаПомери путањуПремести изборПремести текстуални слојАлат за премештањеПремести предметПремести слојеве и избореПремести изборПремести текући слојПремести текућу путањуПомери изабрани филтер нанижеПомери изабрани филтер навишеПребаци на екран...Премести:УмножиБрој _боја:На_вигација_Навигациони прозорВеличина прегледа за _навигацију:ИмеИме:НавигацијаНови каналБоја новог каналаОпције новог каналаНова боја са по_задинеНова боја из боје _исцртавањаНова сликаНови слојНова ПутањаОпције за нову путањуНови шаблонНова четкаНови каналНови канал са претходним вредностимаНови канал...Нова боја са позадинеНова боја из боје исцртавањаНови преливНови увозНови слојНови слој са последњим вредностимаНови слој...Нова палетаНова путања са претходним вредностимаНова путања...Нова мустраНови векториНиједна четка није доступна за ову алатку.Филтер није изабранНема линијских прелива у „%s“Није више доступноПутање нису нађене у „%s“Путање нису нађене у баферуНема доступних мустри за ову операцију.Нема избораНема избора који би био узет за контуру.Без умањеног приказаНепоравнатоНиштаНишта (најбрже)НормалноНормално (128х128)Обичне тачкеОбичан прозорНије исправна датотекаНема довољно видљивих слојева за спајање. Мора их бити најмање два.Нема довољно видљивих путања за спајање. Мора их бити најмање две.Број _коришћених процесора:Број вођицаБрој слојева:_Друга...ОфсетОфсет КаналПомерај ЦртежаОфсет слојОфсет маска слојаПомерено за x/_2,y/2Одступање:На дискуНа вишепроцесорским машинама, ако је ГИМП преведен са опциом --enable-mp ово одређује колико процесора ће ГИМП истовремено користити.Само у меморијиО_твори као слој...НепровидностНепровидност:ОтвориОтвори сликуОтвори слику као слојОтвори путањуОтвори текстуалну датотеку (УТФ-8)Отвори _путању...Отвори ско_рашњеПрозорче за отварање сликаОтвори прозор за одабир четкеОтвори прозор за одабир писмаОтвори прозор за одабир преливаОтвори прозорче за избор палетеОтвори прозор за одабир мустреОтвори изабрани уносОтварање „%s“ неуспело: %sОтварање „%s“ није успело: %sОпције: Полазно Х:Полазно Y:Изворна ширина:Друга (%s) ...ОквирноИзлазни нивоиПреклапањеPDB позивна грешка за процедуру „%s“: diff -uraN gimp-2.2.0/po/sr@Latn.gmo gimp-2.2.1/po/sr@Latn.gmo --- gimp-2.2.0/po/sr@Latn.gmo 2004-12-19 03:11:56.000000000 +0100 +++ gimp-2.2.1/po/sr@Latn.gmo 2004-12-28 16:58:44.000000000 +0100 @@ -1,248 +1,246 @@ -L |Jm ܔ&kG:9GANFi<k<@2;PXO29,-f9;7 - BL -S ^ -h -s ~ - -0F0M~ -  -# -. 9 FR b nz  K.j1!8G^bu -  -  - /BZl~*65MVs#+Oi - - !11F3x -lw -"A3Ju<  ,<Um}  *B -KVg&$  %>EKe"m  -7G M Zhqx   m3 8 F T^g  C7=2@p6dMk3<#!*Li  (:Wt, - 8 Y!g %,3 9GZ iv.557'8_), #2@ sOA%]&41# 5C _ ku -  10C t  +%8KT dr { - $  ;\v" "2 ;GO 4T i"w" - -)&P,j!##!%=c. #%-Iw%' ,: -T -_ -ju  ) -<G-N|  ,<Of w %! "5&Mt     0=O ^jy - -- GS Zhp x -  &4N Wa q{:?8 T`i{  - - -  - *6 ?L` o>} "4CUu  1 AK^s - -  ) >K[v -*!#.:i#"&8 NZn,w# 'A'^FT6    -' 2@ ]~  ($8]=c6<?AU79c 9mB=f(>CJg]  - = GS e r -DTh1E Yg -z   -   -# +7G We}(    - 5 ;  -A OL   -  N -_ -x - +K tJm ̔&kG*9rGAN6i<k,@2; PHO29-V9;7 2< +C N +X +c nz + + 60=n +  + + ) 6B R ^j o {K.Z1! (7NRe +w  +  +2J\n}*6%=Fc#?Y +u !163h +\g +A#Je< ,E]muz  2 +;FWp&$ .5;U"]  +77 = JXah p }  m# ( 6 DNW t C7="@`6d=[3q<#!<Y s *Gd,  ( I!Wy # )7J Yf.|5578O),20 cOA %M&s41# %3 O [e} +  !03 d p} +(;D Tb ku +} $ +Lf" " +7?  $D Y"g" + + )@,Z!##! %-S.r #-9g%} * +D +O +Ze}   +,7->l s  ,?V gs %! %&=d x    -? NZi + +- 7C JX` hu +}  $> GQ akr:?8 DPYk | + + +  + & /<P _>m $3Eeu   ! 1;Nc~ + +   .;Kf u +*!.*Yu#~"&( >J^,g# ' 1'NvFT&{    + "0 Mn}  ($(M=S6<?AE79c9]B=f>CJgM    - 7C U b p~ 4DXt !5 IW +j u  +   + '7 GUm(     % +  +1 O<   +  > +O +h +  - - - - - -. -  2  -A  L  Z  f s x         u   f c, zr& !&2'Y        -+1IZ^x  - & + 8D_v -H - (8 -@HK!B1 >QV [ho -  `C10(Y _ ly - -  #(1 -Z -eHp -  -  0E T aot |   r~    K,3x6" +5Ma p$z   (+H)t*!/-4C*T' -+=Scu ,5D]p    !4 V r         !-!J"S"f"j" """" ""3"" ###3# K# -X# c# o#|#####$$ ,$:$Q$ X$d$y$$$@$$-$% ,%9% >% L% X%e%% %% % %%%%&& 0& :& F&R& i&w&& && -&&& '' &'2' -H'S'h'q'y'''''''' '' ($( -,(#7([(t((((((+()) &) 4) -@) K) X)f){)))) )) )**.*"E*h*q** *****$*++'+6+ E+Q+ Y+ g+s+ x+ ++ -+ + -++ +++ , ,,3,B,Y,o,,,,,, ,,,-- -"- --9-K-_-r- - --- - - ---.. &. -3. >.H. c. p.|. . . .,..!./0/G/)d/ // / ///// / 00B&0Ai0000 0011 1-1?1T1\1d111 -222 - 2+2 ?2M2d2 v2222"2!2!3;3S3l3 3 3 3333 33V3+64 b4(l44"44 4 445%5 -D5 O5Y5a5p55 -55 55 55 5 5566 -6 96 E6S6&m6,6 666 -6 -66747S7k7~74777 -777 -8 88'8 08>8F8M8 j8v8 8!88 88 88 9$9 49>9O9 a9n9u9?}999999:2:4: ;;-; H<R<[< -k< v<#<<-< <<= =%=-=D=M= -V= a=m=>'>;> D>Q>Z>b>h>~> -> ->>> -> > >>>? $? .?!8?Z? ^?l?? ? ???? ??? @@ -+@6@H@ [@i@ ~@@ -@@@@@@ @! A-A!KA#mAA A -A9AUA=OB<B=B"C?+CkC}C CCCC(C,CCD D1D -BDMDcDxDJD DDD E &E 3E@E[E uE EEEEE;E'FAF PF ]FiFF F FF F F FFF GG1GNG`GtGGGGGGGGH+(HTHlHHH H H HH H HH# -I .I:I LIXImII6IIIII J7!JYJwJJJJJJ J JJ -K K+K IKUKjKpK -wK -K KKK KK -KKK KL -L%LEL bLnLLLL LLLMM+M4@MuMMMMMMM.NEFNN N NN N NNO O O 'O -3O>O OO -[OfOuO OOOOONgP -PPPPP PP Q%Q;Q#UQyQQ QQQQQ#R9RWR kRxRRRR$RRS 3S=SMSgS{S!SSSS -SS -T T'TFTaTxTTT TTTT U*UAU ZUhU{U UUUUUUVV -+V6VFV"`VVV VVVV -W#W=3W6qWSWJWGX`XsX XXXXXXX Y Y+Y:YOYbY vYYYY YYYZZ9ZTZlZ ZZZZZZZZ)[N[(\K<]=]]*J^u^_3_T_?F```2`aaLc4Od/dd oe{eeeeeeeeeeeff8f Mf Yfff;off fff ff gg)g#=g agng g g&gg -gggh h"2hUhmh}hhhhhhhii (i5iNi binisiii+iiii ii i j j -'j2j8j?jGj Pj \j8ijvjk k8k Pk ]kik ok!kkkkll7lTl[ljlqlzlll l l l llll l mm +m7m Hm Tm`m}m!mmm(mn# n 1n ?nLnSn -Yn dn qn{nnnn -n n -n nnnKo1So7o1o5oH%pAnpp;;q!wqq [r|r cspt}u*uBvww xxy y$y)+y5Uyy1;z0mz0z1z({C*{n{S{,C|2p| |A}A~*H~s~  8G$lU2Ex - -ʈՈ %.4FY r  ҉ۉ  -< >L cmNj#=M \i} -3;;-i F Yc h u ďˏӏ܏33#gƐ !-JSF\ -Ñ -Αّ ޑ     "!0!R t +K0Q5 $Ô5PGo-Oj5oejv~p`oљwA<?>6tut`_Jʝ0Н 5 FT6Vo4#CgG0XxUѠO'w -  ȡҡ ۡ#$ ,:CIX_h{ Ţ ʢ آ  "5P o  ңߣ    )=D -KV ^ks ޤ  -  .<K [i }  ɥߥ  *9B \ f -s~Ц%7 G h r|  ħ ʧا  ( 2 -< -GRkt | ɨ ܨ  $+2:Tc -  ȩЩة  - #(.A\em  êѪת -  $ 2 -@ K Y f p }   -īϫ ث   %3CJ S ` n{   άԬ׬ܬ   . ANT]n(έ֭߭ 491n/Ю +1E#V zѯ" - ):AJ` q}ð -ܰ - - '-4 -T_pv -ɱر   -"-495=s  !ֲ  : -Z eqx|   ijҳ.1-r?X4 U@DR۷g.:wѸGI5=ǹKIQ1:ͺ9:B8};  -   -& 1=M -]hk!|  !ּ:Re z -ýʽ ٽ   - -   $0 E Q]b qTԾ8=п.=CLSo -  ( ->I ` n{# -/.^q!AXj)|  = K -U -` kx85)$= BOU -7 =K^e~GOS:i  -9DUs .C4[( - -   -* >,H u <8?Sm  mSX gt}#E25<hA3T-p/C.H*w $  - +A[o  $&Kgm }!  >]d kw " ->-ElHJ4F1{,#5+)a1QD-)r)><,B o"} -% *6 S_s4   - $7*= h t  - -#%( :H\ y&6Jby - B JT\k ((@^fy+7 ;  \-}/+33;(o8 -? T+u*,Bbh%  - ! 2BRds4  &/V\lry - 6E V`ho1(6,c    " 1>Q`p!  -=%cho   '<O^x ~ OL!3n -    - ) 6 B O \jy6$.Scr  %4;Re}- <Jap     ,8G3\ 0 :#Lp* - -,87!p%*!*1L"~+ R -X]  5B -]h7;!!<Un -  - --?UHOYTHWLMBO\fGp H|XVzu  += Fg~  5Liy  %)%Ou#7 > KWf}  -  0Ff~)  ,2 8[E"  dp $"3 DN]l  .g=k {m /9J[bu+,  ' / ? S d  i u |          - -%" -H - g -s - | - - - - - - - - - - ! ? ^ q  -w -   H  -(  3 =  P  Z Fd  H   4, a v |      -    o XQ<O9  -5D&Z& DG W co u     (/E MYj #6Se  -M7#=[($+FXi+z%771<6n; */6 fr*   --@Rex''!&H `n%%"8G&\& ('>f'!) *4JN ku|>4 HU e s "  5BT \i\ 2 N  a m t |  !       +!(D!m!!! ! !! !!! ""/">"T" k"x" """""""""# ##!'#I#g#{####4#$"$$:$_$h$p$$+$ $$$$% %+%:%Q%h%%% %% %%%&,6&c&r&$&&&&&&#& ' ')'A'V'h' o'}'' ' '''' ''((&(?(T(e((((((( )) !) -)9)"M)p)t) -y) -))))) -) ) * * $* 1* -=*$H* m*{** * * *#* * +& +3+ C+ O++\++!++++', 8,(D,m, ,,,,,,,,G,GA-- - - -- -- --- . .,.5... . .. //(/"7/Z/m///// /0:0 O0"p00 -0 -0000 0 0e06Z11I11&12,2?2O2o2&22222223 3/3@3G3V3i3r333333 33#34.4=4E4V4e4#x4"44445/5A5Q5 Y5f5m555 55 5555 5 6 "6%.6T6c6w66666 -6667%7-7H67 7777"7#7 8/889' 9 -1:<:D: T:b:s::0:::: ;;;2;;;D;V;i;<<0< 9<F<N<W<_<z<< -<<< < <<<==.= -7=!B=d=h=== = === = =>> 2>?>S>c>z> >> >>>>>"?:?A?I?(c?(? ???@ "@B.@gq@A@BA@^A3A7A B#B:BJBQBYB!`B.BBBBB BBC0C>LCC CCCC CC -D&D 5DBDXDpDD1DDDDE"(EKEkE}EEEEE EEF F&F>FOF^F mF{FFFFFF G1#GUG"sGGGGGG# H/HGH'bH7HHH HHIIE1I!wIIIIITI!6JXJrJ J+J$J J JJ K!K 6KDK -[KfK xK KK -K KKKKK KL -L(L':LbL,qL$LLL L# M-MKM\MrMMMM4M)N-NFN&bNNNN.NBN6OHOYO"jOOOO OOOP!P#;P _PmP~PPP"P PPPIQQQR$R+R3RBRWRvRR&R RR SS)SES[S#uSSS SSSTT$:T_T~TTTTTT& U 3UTUkU sU!UU U)U#U V"+V"NVqVV!V!V!V!W(W,AW nW|WWWWWW -X'X>XVX kXwXX)XXXYY,YHY`YxY,Y YOYN6ZZZZZZZZ[ [,[H[X[ _[l[ [ [ [[[[[ \&\#>\"b\$\ \\\\ ] ]7]L]e]]6^^N^^C`7H``5aSaa<bVbH8cVc4c dd fJgAhCh hiiii)iEi -\igiviiiiii -i ij:jKj`jrjjjjjjjk#k4kKkak(skkkkkk l.5l"dllll*ll m'mFm -Vm amnm~mmm mmm -m9m8n=n Ln Yngn mn{nn nnnnn nn2noooo%o"op!!p!Cpep~pppppqq q -)q4q Jqkqsqq qqq qqqq rr#r:rIr,Yrr3rr r.s7s>sXsgs}sssssssst + + + + + +. + + "  +1  <  J  V c h  w        u w  V c zr&"'I q }      !9JNh  +   (4Ofv +{H + ( +0H;!B1.AF KX_o +  `C10I O \i +{ + (! +J +UH` +  +   + 5 D Q_d l y  bn    K3h6" %=Q `$j   (+8)d*!/$3*Do' + 1ASbkz  +";N e ! 4 P b  i v      - ("1"D"H" b"l"r"" ""3"""## )# +6# A# M#Z#x###### +$$/$ 6$B$W$k$z$@$$-$$ +%% % *% 6%C%a% h%t% y% %%%%%% & & $&0& G&U&m& && +&&& && '' +&'1'F'O'W'j'o'w''''' '''( -tt 't5tDtYtB^t6t6t7u6GuD~uGu vCvvvwwxyvoz&zI |W|B}]}}~~~&~4~ 32)H.r-LπP)?*jBNǃ&=zLjlQ ̌4֍  #+/ [hŎʎ -ڎ  , IVk  ɏҏ 6 /;Vey"Ց ! 5C[ m -w - ’<ؒ/IE"TOw Ǖӕܕ   #6Z m y,)"ܖ8"8[s"̗ $#3W`Ei Θ ژ  '4D/U0  Ù3Й?=D`|.BNVRH;WxܞzUhП}9?zСKDH+Dtu/a¤$176nvǦڦCܦs ,-ЧEͨd]x\֩3 R ^j y  ª/ت! -(3 EQZr  «ϫ '7Pn   ˬ٬   % FP Ygo~ ǭ ݭ  & 0=Pdt  ®Ю -; L Xe v   ǯԯ"<Miz&İ װ  )9A P ]jp y  - ñ б    $.7>FMTZk{ IJͲ" *> -P [ is{  óƳγԳ۳$,< iw  ƴ Ӵߴ  -   $ 1? P] n{    -ʵյ  3< DQ fpxжض۶   -GYl -t-  +BI_4=޸."Dg p ~2+' -8Ca.uǺغ ߺ -) -/:Sk    -ѻ ܻ8 A -MX akp  ȼ׼ ۼ - 'U+ Ž -˽ֽ,),+V#  ľʾѾؾ߾ - -%-E<-#pe <}qwm -zb]& 56@~SMH$ HK: =_ >e{X?3W9 >BL{J3|9']Hq*$li =4xc*iZVkO*s).k# h4+ bdeycWQbnG Z1 ph&Y5E[ 6R4uq"fW5+!`?o  21t)$70Me {`bU@!} 0+' %w /KDFv@J[,Nf{cfFd A oDsS:q=E! E2sQs2E ?<j:sVA4p1 L~M)Srga3pu? |ly4 da.;>BHg"Akv} eu  yN I `x  %b6 S'*" #D2) j]!QV_S\%d #TU, ?/[ am1 V.DF 7viT<- v/: 7 \g$?l~!Qanx  .UEH6JQ]0^ '4@F^,*  P9$ ff 5 &X_kyL(# ' ( 5N:?8`k#B+(2 wg} +6 oi4<^CT Q; z mv d9A6}4 BLI5;yz/v oRg8-P)*Wy$&(Jc>$@*N{> PA2XH.r G=Ec s^zz/2E$3fENC;Gqu7|9"% /L(0Gt=Y/j!,q6zPf'r9+%O+ -T{7?HOe<xCo' -Io-Ot8_vbthw-LDfSB_[bj00Yu2R?6o& ],l.BbZ{J|8.)D GMw\x6 '@4X]=0hIK q4p>S~3J TR`1:.VK9R35Fm( #70 m=/ uPb;sHlYMjjq["\Ng8^#|haE_>dvPt]JQ\~FP <hDXX,H & -p (8G! hDxUF^R-k] -K ZJ*uWeBgT\_lU0X7B<8 ;OvSj --9C3lCa = Q'`r,8=Kr>i"Z +% c, C0 nAz@~N7V(In%Mw.W;~ UH &wu< 1$FM. oIKn1AJ -D )#/g32aFm&:pG\{3 9r P(p%Wz)O+U wI@ ~  ;YI][dtkzL3Y_r >Ui:@+mO)xC^A,aRrKATjCnc -\7y8|nZ"!VPVcAY5MC W}r  p["(kyGK`Nt`B W R1 > 1|hml|}I|sLLQ - `;c" q#K@&X-}G~N RG ymTxe;IdUL n&[/V8 *Yi71ghFwJ Z_jB#:Zx%D5neS}9a  -O {Z'2-6): X<^!5k=M ltY",^fs TE%io[u d* -\O-i?t$<C! +(#(9(R(k(((((+((( ) ) +) )) 6)D)Y)m))) )) ))) *"#*F*O*e* *****$***++ #+/+ 7+ E+Q+ V+ c+p+ ++ + +++ +++ + ++, ,7,M,k,,,,, ,,,,, +- --)-=-P- c- m-w-- - - ----- . +. .&. A. N.Z. t. . .,..!../%/)B/ l/y/ / ///// / //B0AG0000 0000 0 1121:1B111111 +1 2 2+2B2 T2a2s22"2!2!2313J3 b3 l3 v3333 33V3+4 @4(J4s4"y44 4 444%4 +"5 -575?5N5b5 +r5}5 55 55 5 5555 6 6 #616&K6,r6 666 +6 +666717I7\74n777 +777 +7 778 88$8+8 H8T8 i8!u88 88 8889 99-9 ?9L9S9?[9999999:4:::-: &<0<9< +I< T<#^<<-< <<< <= ="=+= +4= ?=K==>> ">/>8>@>F>\> +t> +>>> +> > >>>> ? ?!?8? GRGeGvGGGGGGG+H2HJHjHqH H H HH H HH#H II *I6IKIbI6zIIIII I7I7JUJjJzJJJJ J JJJ J K 'K3KHKNK +UK +`K kKxKK KK +KKK KK +KL#L @LLL^LyLL LLLLL M4MSMpMMMMMM.ME$NjN {N NN N NNN N N O +OO -O +9ODOSO bOoOOOONEP +PPPPP PPPQQ#3QWQuQ QQQQQ#QR5R IRVRiRRR$RRR SS+SESYS!qSSSS +SSS ST$T?TVTjTT TTTTTUU 8UFUYU lUyUUUUUUU + VV$V">VaV{V VVVVVW=W6OWSWJW%X>XQX dXnXXXXXXX X YY-Y@Y TY`YyYY YYYYYZ2ZJZ ^ZjZZZZZZZ)[N[\K]=f]]*(^S^^3_T_?$``d`2``za*c4-d/bdd MeYeaegeneeeeeeeeeef +f 7fDf;Mff fff ff ffg#g ?gLg ag og&|gg +ggggg"h3hKh[hkh|hhhhhhh ii,i @iLiQiaivi+|iiii ii ii i +jjjj%j .j :j8Gjvjjjk .k ;kGk Mk!nkkkkkkl2l9lHlOlXllll l l l llll lll mm &m 2m>m[m!jmmm(mm#m n n*n1n +7n Bn OnYnhn|nn +n n +n nnnKn11o7co1o5oHpALpp;q!Uqwq 9rZr AsNt}t*uuBvvwwkxx xy) y53yiy1z0Kz0|z1z(zC{L{S{,!|2N| |A}A}*&~Q~~ ǁkfiGJ32#V p-z +ƈ؈ $7 P]o   Ή +ԉ<߉ * AK]qϋދ+ :G[ +kv{3;ό; GF 7A F Sago ؏3#EiԐ  (1F: + +  ʑ ؑ   !!0 R ^+jK0Qe$5ƔPGM-OÖjo~ejT~p>ow<?Ԛ>tStț`=(0ߝ $264ok۞ݞ4#!EGXVUOUlu~ +   á̡#ޡ +!'6=FYlu   Ģ ۢ . Mn t  ţϣ   " +)4 <IQq z ˤפ +ߤ ) 9G [ iw ͥߥ    : D +Q\bqȦ٦ % F PZ bl r~ Ƨͧӧڧ    + +%0IR Zd jw}  ƨӨ  2A +al  ̩ ۩   :CK^t  Ū˪Ҫ +ڪ    + ) 7 D N [h y  + «˫ ګ  !( 1 > LY b p~ ¬ Ѭ ެ   ,2;L_q(ӭ41L/~ĮԮ  ##4 Xy" +(> O[bjz + +Ű +а۰   +2=NT +]hnw| ˱ڱޱ + 5Q cm} ! ֲ  +8 COVZbgms z  .óӵ-rX4UDtRg :twG'5o=KI/1y:9: 8[; лܻ +   + + +;FI!Z | !ּ:0C Xem +  Ž ѽ +߽ +   # /;@ OT]8u= !*1M]z +   +' > LYm#/ <Oe6H)Z   ) +3 +> IV8i5) -3 + )<C\qGO1:G +"3Qhz  !49(n + +  * ,& S]cjp <1Kgov  m16 ER[#dE2<FA3T-N|/C.&*U $  + 9Mf} $)EK [!i  ;B IUg "> EJHJ4$1Y,#5 )?i1QD )P)z><,  M"[~ +  1=Qe4u   + * F R ^h} + +#% &: Wx&(@W +f q~  (2:Ie ((<DW+i7 ; :-[/+33(M8v   2+S* + @F%`  + !  0BQbiz4 & 4:JPWhx +# 4>FM1a(6 +A ] jw   />N]x!  +=AFM] fs -<V \h zOL3L +       - :HWgy6$ 1AP `n~ 0C[s  (?N jw    +%3: nz0 #*Nl* + + +8!Npx%*!1*"\+ RX;    +;F7b;!!3L +a lz + --U&O|YT&W{LM nO\DGpHZXVzS   $E\k| *GWf{ %%-So#  )5D[o  + $D\n)   + [#"  BNh $ ",;J^mr   gkk {`eml (9@Sl+,   1 B  G S Z b i x        % +& + E +Q + Z +{ + + + + + + + + + +! + < O  +U -`   H  +     .  8 FB  H   4 + ? T Z b q x   +    o 6Q<-9j  +"&8_t& D% 5 AM S a n {   # +7Hf1C`hx  +M7=9w( $6G+X%7716L; / DP*n   3FV'l'! .<%Pv%&*Qj& ' 4N'l!)  9CJ[j|> # 3 A No"  " *7Un~\2  / ; B J  Z !h       + (!;!U!k! r! !! !!! !!! """ 9"F" Z"f"y""""""""""!"#5#I#d###4###$$-$6$>$W$+p$ $$$$$ $$%%6%Q%l% %% %%%%,&1&@&$_&&&&&&#&& &&'$'6' ='K'Z' c' q'~''' ''''' ("(3(M(\(r(((( (( ( ()")>)B) +G) +R)])o))) +) ) )) ) ) + *$* ;*I*_* }* * *#* * *&*+ + ++*+V+!j++++'+ ,(,;, Q,],d,v,,,,,G,G-W- u- - -- -- +--- --... . .. ..."/(/;/N/k/// //0 0">0a0 +j0 +u0000 0 0e06(1_1Ig11&111 22=2&Q2x22222222233$373@3U3[3j333 33#333 44$434#F4"j44444/455 '545;5U5q5 55 5555 55 5%5"616E6^6n666 +666666H7 M7[7c7y7"7#77/888'8 +9 +:: ":0:A:X:0t:::: :::; ;;$;7;;;; <<<%<-<H<e< +v<<< < <<<<<< +=!=2=6=O=c= y= === = === > >!>1>H> `>n> >>>>>">???(1?(Z? ???? ?B?g?@A@B@@,A3mA7AAABBB'B!.B.PBBBBB BBBB>CYC hCuCCC CCCC DD&D>DPD1eDDDDD"DE9EKEZEqEEE EEEEE FF,F ;FIFZFzFFFFF1F#G"AGdGvGGGG#GGH'0H7XHHH HHHHEH!EIgImIuIITI!J&J@J QJ+[J$J J JJJJ KK +)K4K FK PKZK +kK vKKKKK KKKK'L0L,?L$lLLL L#LLM*M@MVMkMM4M)MMN&0NWNlN{N.NBNOO'O"8O[OjO{O OOOOO# P -P;PLP_PrP"{P PPPIiQQQQ$QQRR%RDR]R&zR RR RRRS)S#CSgSS SSSSS$T-TLTaTpTTTT&T U"U9U AU!MUoU U)U#UU"U"V?V_V!nV!V!V!VV,W  GUe h +u   ˱ Աޱ   "(9I]p w"˲   + ) 7AI f tͳֳ߳, + 7E]e {   ̴ +ٴ     + <IRbh p |  +ɵѵٵ  +  4>FZk  ˶ٶ': +BM]n~-  ɷӷI-4w="5 > LVl2+'޹ +/.Cr{ Һ + +!9T f t ~ + ûݻ  +& /9>\o   ȼ +̼׼UO o{ +,ͽ)+$#P t ~ + +˾޾E +-P#~od <}pwl yb]% 56?}SMH # GJ9 =^ =dzW>2V8 =AKzI3{9&]Gp)$li =3wc)hYVkO*r(.k# h3* addxbWQbmGZ0 og&X4DZ5R4uq!fV4+ _>n  11s)#70Le z`aT@ } 0*& $v~/KDEu?J[,NezceFc @ oDrR:p<D ! E2sPs1D ?<i9sUA4p1L}M(Rrg`2 pu> |ky3 d`.:=BGg"@jv} eu  yMH _w  $a5 R&)! "D1( i\!PV_R[$d #SU, >/[ `m1 V-CE 6viT;, v.9 6 [f$>k~!Panw + -TDH5JQ]/] '3?E]+)  P8# ee +4 %X_jxL'" & ( 4M:>7_j"B*(1 vg| *6 oh4;]CT P: y lu c8A6|3 AKH4:xz.u nQg7,O()Vy#%'Ic>#@*Mz= O@1XH-qG<Db s]zz.1D#3fENB:Fqu7{8"$ .L(0Fs<Y/j!,q5yPf'r8*%N+ S{6?~GOd<xBo& +Hn,Ns7^ubthw,LDeSA^Zaj/0Xt2Q?5n& \+k-AaY{I|8.(CFMw\x6 '@3W\=/gIJ +q4o>S}2I TR`0:.UK 9R~35Em' "7/ m<. tPb;rHlXLjipZ"\Mf8^#|h`E^>cvOt\IQ[~EO +;gCWW+G % o'8G hCwTE^Q-k] +J YI*tVdBfS[_lU/X7B<7 :~NuRi -9C3kCa < Q'_q+7=Kq=i!Z +% b+ C/ n@y@~N6U'Hm$Mv~-W:~ UG %wt; 1$FL- nIKn0@ J-C )"/f22`Fl&9pF[{2 8r P(o%Vy)N+T vI? }  + ;YH\ZctjzK2X_q >Uh9?*lO)xB]@,aQrJASjBmb +\6y8{mZ! UOUbAX5LB W|q  p[!'jxGJ`Nt`A W Q0 = 0{gmk|}H{rKKP _;c!p#J?%W-|F}M RF xlSwe;IdTK n&[.V7 )Yh60fgFvJZ^iA"9Yx$C5meS|9a  O {Y&2,5(: X;^ 4k<L +lsY"+^fr TE%ioZt c* +\N,h?s$;B  Invalid option "%s" Usage: %s [option ... ] [file ... ] @@ -286,7 +284,7 @@ Make sure a proper setup for your display environment exists.GIMP help browserGIMP is not properly installed for the current user. User installation was skipped because the '--no-interface' flag was used. To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Generate optimum paletteGet Monitor ResolutionGiganticGimprc proceduresGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient:GradientsGradients MenuGrain extractGrain mergeGrayGrayscaleGreenGreen:GridGrid line spacingGrow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_counter-clockwise hue)HSV (clockwise _hue)HTML notation:H_eight:H_elp browser to use:Handle position: %0.6fHard edgeHard lightHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHelp proceduresHex:HighlightsHint for the _docks:Hint for the _toolbox:HintingHinting alters the font outline to produce a crisp bitmap at small sizesHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB color layers.Hue-_Saturation...Hue:HugeI_con & TextI_mageI_mport Path...I_nterpolation:I_nterval:IconIcon & descIcon & textIf available, hints from the font are used but you may prefer to always use the automatic hinterIf enabled, the move tool changes the active layer or path when a layer or path is being picked. This used to be the default behaviour in older versions.If you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.Illegal variable name in environment file %s: %sImageImage + GridImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage ThumbnailsImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage maskImage resolution is out of bounds, using the default resolution instead.Image sizeImage sourceImage typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport paletteImport pathsImported PathIn_kIn_vertIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorIndexed Color ConversionIndexed color layers are always scaled without interpolation. The chosen interpolation type will affect channels and masks only.Info WindowInitial zoom _ratio:Initialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' -InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratioKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine +InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine spacing:Line Width:Line _Style:Line style used for the grid.LinearLinked itemLoadLoad CurvesLoad LevelsLoad Right Color Fr_omLoad curves settings from fileLoad levels settings from fileLoad text from fileLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower Path to _BottomLower channelLower channel to bottomLower layerLower layer to bottomLower pathLower path to bottomM_agnifyM_asterM_ove to Screen...Ma_pMagentaMagenta:MagnifyMake _transparentManage Loadable ModulesMarching _ants speed:Mask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:Max Depth:Maximum _filesize for thumbnailing:Maximum _new image size:Maximum color differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMeasure the rulers and enter their lengths:Median:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMerge vectorsMessage proceduresMessage repeated %d times.Message repeated once.Messages are redirected to stderr.MidtonesMigrate User SettingsMinimal number of _undo levels:MiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMouse WheelMoveMove AnchorsMove ChannelMove Floating SelectionMove GuideMove Guide: Move LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove ToolMove itemMove layers & selectionsMove selectionMove the current layerMove the current pathMove the selected filter downMove the selected filter upMove to Screen...Move: MultiplyN_umber of colors:Na_vigationNa_vigation WindowNa_vigation preview size:NameName:NavigationNew ChannelNew Channel ColorNew Channel OptionsNew Color from _BGNew Color from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channelNew channel with last valuesNew channel...New color from BGNew color from FGNew gradientNew importNew layerNew layer with last valuesNew layer...New paletteNew path with last valuesNew path...New patternNew vectorsNo brushes available for use with this tool.No filter selectedNo linear gradients found in '%s'No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of _processors to use:Number of grid linesNumber of layers:O_ther...OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset by x/_2, y/2Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the palette selection dialogOpen the pattern selection dialogOpen the selected entryOpening '%s' failed: %sOpening '%s' failed: %sOptions: @@ -338,7 +336,7 @@ did not save indexed colormaps correctly. Substituting grayscale map.YYellowYellow:You are trying to create an image with a size of %s.You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your input device settings will be reset to default values the next time you start GIMP.Your keyboard shortcuts will be reset to default values the next time you start GIMP.Your window setup will be reset to default values the next time you start GIMP.Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_All_Anchor Layer_Antialiasing_Arbitrary Rotation..._Artistic_Aspect_Auto_B_BG Color_Background color:_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Bucket Fill_Buffer_By Color_By Color Select_C_Cap style:_Channels_Clear Errors_Clear Undo History_Clone_Close_Close Tab_Clouds_Color Tools_Colors_Configure Color and Opacity..._Context_Context Help_Copy_Copy Named..._Create Image from Template..._Crop & Resize_Crop Image_Curved_Curves..._Dark Check Color_Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Desaturate_Detach Tab_Device Status_Dialogs_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Ellipse Select_Enable layer & channel previews_Enormous_Equalize_Eraser_FG Color_File_Fill with:_Fit Image in Window_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground color:_Free Select_G_Generic_Gigantic_Gradient_Gradients_Grayscale_Grayscale copy of layer_Grow..._Guides_Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Info Window_Intersect with Selection_Invert_Join style:_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Left Neighbor's Right Endpoint_Levels..._Light Check Color_Light Effects_Lightness:_Line Style_Linear_Linked_Load Left Color From_Lower Channel_Lower Layer_Lower Path_M_Manually_Map_Mask_Mask to Selection_Maximum number of colors:_Measure_Medium_Merge Palettes..._Merge imported paths_Migrate GIMP 2.0 user settings_Misc. Stuff_Miter limit:_Mode_Module Manager_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._Padding Color_Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preferences_Preview_Preview Size_Previous tip_Print Size..._Properties_Quick Mask Active_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Reassign shortcut_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Remove unused colors from final palette_Render_Replace_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Order & Visibility_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Right Endpoint_Right Neighbor's Left Endpoint_Rotate_Saturation:_Save_Save Left Color To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Scale imported paths to fit image_Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Show Image Selection_Show in Toolbox_Sinusoidal_Small_Smudge_Snap distance:_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tool_Tools_Transfer layer's alpha channel_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Visible_Web_Web browser to use:_White (full opacity)_White Balance_Width:_Wrap around_X resolution:_X:_Xtns_Y_Y resolution:_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for icon typeinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetermillimetersminuten/apercentpicapicaspixelpixelspixels/%apixels/%spointpointssecondtips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: GIMP 2.2 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-19 03:11+0100 +POT-Creation-Date: 2004-12-28 16:58+0100 PO-Revision-Date: 2004-11-18 20:06+0100 Last-Translator: Branko Ivanović Language-Team: Serbian (sr) @@ -391,7 +389,7 @@ Proverite da li su ispravna podešavanja ekranskog prikaza.Pretraživač Gimpove pomoćiGIMP nije valjano instaliran za trenutnog korisnika. Instalacija za korisnika je preskočena jer je korišćena „--no-interface“ zastavica. Da bi obavili instalaciju za korisnika, pokrenite GIMP bez „--no-interface“ zastavice.Gimp koristi ograničenu količinu memorije za skladištenje podataka o slikama, tzv. „ostavu za deliće“. Podesite njenu veličinu kako bi stala u memoriju. Mislite i na memoriju potrebnu za ostale procese na sistemu.GIMP koristi dodatnu gtkrc datoteku tako da možete podesiti da izgleda drugačije od ostalih GTK programa.Gimp izdanjeGIMP će upozoriti korisnika ako pokuša da napravi sliku koja bi uzela više memorije od velišine koja je određena ovde.GamaOpšteUopšteno se odnosi samo na 8-bitne prikaze, ovo podešava minimalni borj sistemskih boja određenih za GIMP.Sastavi najbolju paletuUtvrdi rezoluciju monitoraGigantskoGimprc procedure_Stakleni efektiPrelivUrednik za preliveMeni uređivača prelivaDirektorijumi sa prelivimaBoje krajnje leve tačke prelivnog segmentaBoja krajnje desne tačke prelivnog segmentaKOrisničko sučelje prelivaPreliv:PreliviMeni za preliveZrnasto izvlačenjeZrnasto spajanjeSivaSivi tonoviZelenaZelena:MrežaRazmak vođicaProširi kanalPovećaj izborPovećaj izbor zaVođicePrijanjanje uz vođice i mrežuProcedure vođicaHSVHSV (%0.3f, %0.3f, %0.3f)HSV (suprotno smeru kazaljke na satu)HSV (u smeru kazaljke na satu)HTML zapis:_Visina:Koji čitač _pomoći koristiti:Rukovodi položajem: %0.6fTvrda ivicaJako svetloTvrdoćaTvrdoća:VisinaVisina:PomoćRazgledač pomoćiSistem za pomoćRazgledač pomoći se ne pokrećeRazgledač pomoći nije nađenPomoćne procedureHeks:NaglašenoOznaka vrste prozora za _prilepljene prozore:Oznaka vrste prozora za _alatke:NaglašavanjeNagoveštavanje menja granice pisma da bi dalo lepa slova male veličine_HistogramHistogramRazmera histogramaIstorijatVodoravnoVodoravni pomeraj prve linije mreže; ovo može biti i negativan broj.Vodoravni razmak linija mreže.Koliko naziva datoteka skoro otvaranih slika će biti u Datoteka meniju.TipNijansa-zasićenostTip-zasićenost rade samo na slojevima u RGB bojama.Nijansa-_zasićenostNij.:Ogromno_Ikone i tekst_SlikaU_vezi putanju...I_nterpolacija:I_nterval:IkonaIkona i opisIkona i tekstAko je dostupno, nagoveštavanje pisma se koristi, ali možda ćete radije uvekkoristiti automatski nagoveštajUkoliko je uključeno, alat za premeštanje menja aktivni sloj ili putanju kada se bira sloj ili putanja. Ovo je bilo podrazumevano ponašanje u starijim izdanjima.Ukoliko ne sačuvate sliku, izmene učinjene u poslednjih %s će biti izgubljene.Ukoliko sada zatvorite Gimp, ove izmene će biti izgubljene.Neispravan naziv promenljive u datoteci okruženja %s: %sSlikaSlika + vođiceObrada slikaInformacije o sliciMeni slikeVeličina slikeFormat statusne linije slikeŠabloni slikaSličice sa pregledomFormat naslova slike i statusne linijeFormat naslova slikeIzgled prozora sa slikomProzori za slikeSlika ne sadrži nijedan vidljivi slojDatoteka slikeMaska slikeRezolucija slike je izvan opsega, koristim podrazumevanu rezoluciju.Veličina slikeIzvor slikeVrsta slikeSlikeMeni za slikeOpcije uvozaUvezi paletuUvezi putanjeUvezi putanju iz SVG-aUvezi novu paletuUvezi paletuUvezi putanjeUvezena putanjaMasti_loIz_vrniInvertuj maskuRastućeUvuci:Uvlačenje prvog redaIndeks:IndeksiranaIndeksirane bojePrebacivanje indeksirane bojeSlojevi indeksiranih boja se uvek uvećavaju bez interpolacije. Izabrana vrsta interpolacije će uticati jedino na kanale i maske.Prozor sa informacijamaPočetna _razmera:Inicijalizuj masku sloja na:Pokrećem dodatkePokrećem dodatak: „%s“ -MastiloUgrađena slikaUlazni upravljačiUlazni uređajiUlazni nivoiUbaci vezuNapravi ličnu mapu boja; može biti korisno kod 8-bitnih (256 boja) prikaza.Neuspešna instalacija. Pozovite sistem administratora.Uspešna instalacija. Kliknite na „Nastavi“ za dalji rad.Brzo ažuriranje_Pametne makazeIntenzitet: %0.3f Neprovidnost: %0.3fSučeljeInterna GIMP proceduraInterne procedureInterpolacija:PresekPresek sa tekućim izboromPreseci (nišani)Preseci (tačke)Neispravan UTF-8Neispravni UTF-8 podaci u datoteci „%s“Neispravna UTF-8 niska u XCF datoteciNeispravna UTF-8 niska u datoteci sa četkama „%s“.Neispravna UTF-8 niska u datoteci sa prelivima „%s“Neispravna UTF-8 niska u datoteci palete „%s“Neispravna UTF-8 niska u datoteci sa mustrom „%s“.Neispravan slovni deo u URINeispravna prečica.Neispravna širina ili visina. Oboje moraju biti pozitivni.InvertujInvertuj kanalObrni izborObrtanje boja ne radi kod indeksiranih slojeva.Obrni izborDa li je to ono što želite?Čini se da ste ranije koristili Gimp 2.0.Svojstva predmetaVidljivost predmetaPoravnaj:Zadrži providnostDrži iznadČuvaj razmeru %sOčuvaj razmeruČuvaj razmeru %sČuvaj visinu %sZadrži providnostČuvaj širinu %sStrelica nadoleStrelica nadole (Alt)Strelica nadole (Shift + Control + Alt)Strelica nadole (Control)Strelica nadole (Shift + Alt)Strelica nadole (Shift + Control + Alt)Strelica nadole (Shift + Control)Strelica nadole (Shift)Strelica levoStrelica levo (Alt)Strelica levo (Shift + Control + Alt)Strelica levo (Control)Strelica levo (Shift + Alt)Strelica levo (Shift + Control + Alt)Strelica levo (Shift + Control)Strelica levo (Shift)Strelica desnoStrelica desno (Alt)Strelica desno (Shift + Control + Alt)Strelica desno (Control)Strelica desno (Shift + Alt)Strelica desno (Shift + Control + Alt)Strelica desno (Shift + Control)Strelica desno (Shift)Strelica nagoreStrelica nagore (Alt)Strelica nagore (Shift + Control + Alt)Strelica nagore (Control)Strelica nagore (Shift + Alt)Strelica nagore (Shift + Control + Alt)Strelica nagore (Shift + Control)Strelica nagore (Shift)Ključne prečice mogu se dinamički podesiti u GIMPu. Datoteka menurc je skup vaših podešavanja, pa se može sačuvati za sledeću sesiju. Možete menjati ovu datoteku po želji, ali je mnogo lakše podesiti prečice iz GIMPa. Brisanje ove datoteke će vratiti u upotrebu podrazmevane prečice.TastaturaPrečice sa tastatureLNDBoja _leve krajnje tačke...VodoravnoVelikoVeliko (256x256)Veći preglediPoslednja greškaSlojSloj „%s“ nema alfa kanal. Sloj je postavljen iznad njega.Svojstva slojaVeličina _granica sloja...Tip popunjavanja slojaMaska sloja u izborIzaberi slojVeličina sloja_Režim slojaNaziv sloja:Sloj se ne može spustiti niže.Sloj se ne može podići više.Sloj je već na dnu.Sloj je već na vrhu.Izjednači veličinu sloja i slikeSloj na _dnoSloj na _veličinu slikeSloj na _vrh_Alfa kanal slojaSlojeviMeni slojevaOpcije za povezivanje slojevaBoja krajnje leve tačkePoravnato ulevoDužinaDa li GIMP treba da prilikom podizanja pokuša da oporavi učita poslednju snimljenu sesiju.NivoiNe mogu se prilagoditi nivoi indeksiranih slojeva.Boja svetlih poljaSamo svetliLinijaProred:Širina linije:_Stil linije:Stil linija korišćen za mrežu.LinijskiVezan predmetUčitajUčitaj krivuljeUčitaj nivoeUčitaj boju _desne tačke izPročitaj podešavanja krivulja iz datotekePročitaj podešavanja nivoa iz datotekeUčitaj tekst iz datotekeUčitavam pregled ...Mesto:LogaritamskoDuge crticeTražim datoteke sa podacimaSpusti kanalSpusti kanal na dnoSpusti kanal na _dnoSpusti slojSpusti sloj na dnoSpusti putanjuSpusti putanju na dnoSpusti putanju na _dnoSpusti kanalSpusti kanal na dnoSpusti slojSpusti sloj na dnoSpusti putanjuSpusti putanju na dnoU_većaj_GlavniPrebaci na _ekran...Ma_paMagentaMagenta:Uvećaj_Učini providnimRukovanje učitavajućim modulimaBrzina _marširajućih mrava:Neprovidnost maske:Maskiraj _izabrane oblastiMaskiraj _neizabrane oblastiMatrica:Najveća dubina:Najveća veličina _datoteka za pravljenje sličica:Najveća veličina _nove slike:Najveća razlika u bojiNajveći broj _poništavanja koraka:Značaj:MerenjeMeri rastojanje i ugloveMeri rastojanja i ugloveIzmerite lenjire i unesite njihove dužine:Medijana:SrednjeSrednje crticeSpoji sa slojem _ispodSpoji sa slojem niže.Spoji slojeveSastavi paleteSpoji vidljive slojeveSpoji vidljive putanjeSpoji _vidljive slojeve...Spoji _vidljive slojeve...Spoji _vidljive putanjeSpoji slojeveSastavi paleteSpoji vektoreProcedure za obaveštenjaPoruka ponovljena puta: %d.Poruka ponovljena samo jednom.Poruka se preusmeravaju na izlaz za greške.Srednji tonoviPrenesi podešavanja korisnikaNajmanji broj _poništavanja koraka:RaznoUgaonoRežimRežim:Izmeni izabranu bojuIzmeni nivoe izabranog raspona bojaIzmeni sve bojeIzmeni proredDirektorijumi za modulePretraživač modulaPutanja do modulaModuliKurzori mišaTočkić mišaPremestiPremesti vezePomeri kanalUkloni plutajući izborPomeri vođicePremesti vođicu:Pomeri slojPomeri masku slojaPomeri putanjuPremesti izborPremesti tekstualni slojAlat za premeštanjePremesti predmetPremesti slojeve i izborePremesti izborPremesti tekući slojPremesti tekuću putanjuPomeri izabrani filter nanižePomeri izabrani filter navišePrebaci na ekran...Premesti:UmnožiBroj _boja:Na_vigacija_Navigacioni prozorVeličina pregleda za _navigaciju:ImeIme:NavigacijaNovi kanalBoja novog kanalaOpcije novog kanalaNova boja sa po_zadineNova boja iz boje _iscrtavanjaNova slikaNovi slojNova PutanjaOpcije za novu putanjuNovi šablonNova četkaNovi kanalNovi kanal sa prethodnim vrednostimaNovi kanal...Nova boja sa pozadineNova boja iz boje iscrtavanjaNovi prelivNovi uvozNovi slojNovi sloj sa poslednjim vrednostimaNovi sloj...Nova paletaNova putanja sa prethodnim vrednostimaNova putanja...Nova mustraNovi vektoriNijedna četka nije dostupna za ovu alatku.Filter nije izabranNema linijskih preliva u „%s“Nije više dostupnoPutanje nisu nađene u „%s“Putanje nisu nađene u baferuNema dostupnih mustri za ovu operaciju.Nema izboraNema izbora koji bi bio uzet za konturu.Bez umanjenog prikazaNeporavnatoNištaNišta (najbrže)NormalnoNormalno (128h128)Obične tačkeObičan prozorNije ispravna datotekaNema dovoljno vidljivih slojeva za spajanje. Mora ih biti najmanje dva.Nema dovoljno vidljivih putanja za spajanje. Mora ih biti najmanje dve.Broj _korišćenih procesora:Broj vođicaBroj slojeva:_Druga...OfsetOfset KanalPomeraj CrtežaOfset slojOfset maska slojaPomereno za x/_2,y/2Odstupanje:Na diskuNa višeprocesorskim mašinama, ako je GIMP preveden sa opciom --enable-mp ovo određuje koliko procesora će GIMP istovremeno koristiti.Samo u memorijiO_tvori kao sloj...NeprovidnostNeprovidnost:OtvoriOtvori slikuOtvori sliku kao slojOtvori putanjuOtvori tekstualnu datoteku (UTF-8)Otvori _putanju...Otvori sko_rašnjeProzorče za otvaranje slikaOtvori prozor za odabir četkeOtvori prozor za odabir pismaOtvori prozor za odabir prelivaOtvori prozorče za izbor paleteOtvori prozor za odabir mustreOtvori izabrani unosOtvaranje „%s“ neuspelo: +MastiloUgrađena slikaUlazni upravljačiUlazni uređajiUlazni nivoiUbaci vezuNapravi ličnu mapu boja; može biti korisno kod 8-bitnih (256 boja) prikaza.Neuspešna instalacija. Pozovite sistem administratora.Uspešna instalacija. Kliknite na „Nastavi“ za dalji rad.Brzo ažuriranje_Pametne makazeIntenzitet: %0.3f Neprovidnost: %0.3fSučeljeInterna GIMP proceduraInterne procedureInterpolacija:PresekPresek sa tekućim izboromPreseci (nišani)Preseci (tačke)Neispravan UTF-8Neispravni UTF-8 podaci u datoteci „%s“Neispravna UTF-8 niska u XCF datoteciNeispravna UTF-8 niska u datoteci sa četkama „%s“.Neispravna UTF-8 niska u datoteci sa prelivima „%s“Neispravna UTF-8 niska u datoteci palete „%s“Neispravna UTF-8 niska u datoteci sa mustrom „%s“.Neispravan slovni deo u URINeispravna prečica.Neispravna širina ili visina. Oboje moraju biti pozitivni.InvertujInvertuj kanalObrni izborObrtanje boja ne radi kod indeksiranih slojeva.Obrni izborDa li je to ono što želite?Čini se da ste ranije koristili Gimp 2.0.Svojstva predmetaVidljivost predmetaPoravnaj:Zadrži providnostDrži iznadČuvaj razmeru %sČuvaj razmeru %sČuvaj visinu %sZadrži providnostČuvaj širinu %sStrelica nadoleStrelica nadole (Alt)Strelica nadole (Shift + Control + Alt)Strelica nadole (Control)Strelica nadole (Shift + Alt)Strelica nadole (Shift + Control + Alt)Strelica nadole (Shift + Control)Strelica nadole (Shift)Strelica levoStrelica levo (Alt)Strelica levo (Shift + Control + Alt)Strelica levo (Control)Strelica levo (Shift + Alt)Strelica levo (Shift + Control + Alt)Strelica levo (Shift + Control)Strelica levo (Shift)Strelica desnoStrelica desno (Alt)Strelica desno (Shift + Control + Alt)Strelica desno (Control)Strelica desno (Shift + Alt)Strelica desno (Shift + Control + Alt)Strelica desno (Shift + Control)Strelica desno (Shift)Strelica nagoreStrelica nagore (Alt)Strelica nagore (Shift + Control + Alt)Strelica nagore (Control)Strelica nagore (Shift + Alt)Strelica nagore (Shift + Control + Alt)Strelica nagore (Shift + Control)Strelica nagore (Shift)Ključne prečice mogu se dinamički podesiti u GIMPu. Datoteka menurc je skup vaših podešavanja, pa se može sačuvati za sledeću sesiju. Možete menjati ovu datoteku po želji, ali je mnogo lakše podesiti prečice iz GIMPa. Brisanje ove datoteke će vratiti u upotrebu podrazmevane prečice.TastaturaPrečice sa tastatureLNDBoja _leve krajnje tačke...VodoravnoVelikoVeliko (256x256)Veći preglediPoslednja greškaSlojSloj „%s“ nema alfa kanal. Sloj je postavljen iznad njega.Svojstva slojaVeličina _granica sloja...Tip popunjavanja slojaMaska sloja u izborIzaberi slojVeličina sloja_Režim slojaNaziv sloja:Sloj se ne može spustiti niže.Sloj se ne može podići više.Sloj je već na dnu.Sloj je već na vrhu.Izjednači veličinu sloja i slikeSloj na _dnoSloj na _veličinu slikeSloj na _vrh_Alfa kanal slojaSlojeviMeni slojevaOpcije za povezivanje slojevaBoja krajnje leve tačkePoravnato ulevoDužinaDa li GIMP treba da prilikom podizanja pokuša da oporavi učita poslednju snimljenu sesiju.NivoiNe mogu se prilagoditi nivoi indeksiranih slojeva.Boja svetlih poljaSamo svetliLinijaProred:Širina linije:_Stil linije:Stil linija korišćen za mrežu.LinijskiVezan predmetUčitajUčitaj krivuljeUčitaj nivoeUčitaj boju _desne tačke izPročitaj podešavanja krivulja iz datotekePročitaj podešavanja nivoa iz datotekeUčitaj tekst iz datotekeUčitavam pregled ...Mesto:LogaritamskoDuge crticeTražim datoteke sa podacimaSpusti kanalSpusti kanal na dnoSpusti kanal na _dnoSpusti slojSpusti sloj na dnoSpusti putanjuSpusti putanju na dnoSpusti putanju na _dnoSpusti kanalSpusti kanal na dnoSpusti slojSpusti sloj na dnoSpusti putanjuSpusti putanju na dnoU_većaj_GlavniPrebaci na _ekran...Ma_paMagentaMagenta:Uvećaj_Učini providnimRukovanje učitavajućim modulimaBrzina _marširajućih mrava:Neprovidnost maske:Maskiraj _izabrane oblastiMaskiraj _neizabrane oblastiMatrica:Najveća dubina:Najveća veličina _datoteka za pravljenje sličica:Najveća veličina _nove slike:Najveća razlika u bojiNajveći broj _poništavanja koraka:Značaj:MerenjeMeri rastojanje i ugloveMeri rastojanja i ugloveIzmerite lenjire i unesite njihove dužine:Medijana:SrednjeSrednje crticeSpoji sa slojem _ispodSpoji sa slojem niže.Spoji slojeveSastavi paleteSpoji vidljive slojeveSpoji vidljive putanjeSpoji _vidljive slojeve...Spoji _vidljive slojeve...Spoji _vidljive putanjeSpoji slojeveSastavi paleteSpoji vektoreProcedure za obaveštenjaPoruka ponovljena puta: %d.Poruka ponovljena samo jednom.Poruka se preusmeravaju na izlaz za greške.Srednji tonoviPrenesi podešavanja korisnikaNajmanji broj _poništavanja koraka:RaznoUgaonoRežimRežim:Izmeni izabranu bojuIzmeni nivoe izabranog raspona bojaIzmeni sve bojeIzmeni proredDirektorijumi za modulePretraživač modulaPutanja do modulaModuliKurzori mišaTočkić mišaPremestiPremesti vezePomeri kanalUkloni plutajući izborPomeri vođicePremesti vođicu:Pomeri slojPomeri masku slojaPomeri putanjuPremesti izborPremesti tekstualni slojAlat za premeštanjePremesti predmetPremesti slojeve i izborePremesti izborPremesti tekući slojPremesti tekuću putanjuPomeri izabrani filter nanižePomeri izabrani filter navišePrebaci na ekran...Premesti:UmnožiBroj _boja:Na_vigacija_Navigacioni prozorVeličina pregleda za _navigaciju:ImeIme:NavigacijaNovi kanalBoja novog kanalaOpcije novog kanalaNova boja sa po_zadineNova boja iz boje _iscrtavanjaNova slikaNovi slojNova PutanjaOpcije za novu putanjuNovi šablonNova četkaNovi kanalNovi kanal sa prethodnim vrednostimaNovi kanal...Nova boja sa pozadineNova boja iz boje iscrtavanjaNovi prelivNovi uvozNovi slojNovi sloj sa poslednjim vrednostimaNovi sloj...Nova paletaNova putanja sa prethodnim vrednostimaNova putanja...Nova mustraNovi vektoriNijedna četka nije dostupna za ovu alatku.Filter nije izabranNema linijskih preliva u „%s“Nije više dostupnoPutanje nisu nađene u „%s“Putanje nisu nađene u baferuNema dostupnih mustri za ovu operaciju.Nema izboraNema izbora koji bi bio uzet za konturu.Bez umanjenog prikazaNeporavnatoNištaNišta (najbrže)NormalnoNormalno (128h128)Obične tačkeObičan prozorNije ispravna datotekaNema dovoljno vidljivih slojeva za spajanje. Mora ih biti najmanje dva.Nema dovoljno vidljivih putanja za spajanje. Mora ih biti najmanje dve.Broj _korišćenih procesora:Broj vođicaBroj slojeva:_Druga...OfsetOfset KanalPomeraj CrtežaOfset slojOfset maska slojaPomereno za x/_2,y/2Odstupanje:Na diskuNa višeprocesorskim mašinama, ako je GIMP preveden sa opciom --enable-mp ovo određuje koliko procesora će GIMP istovremeno koristiti.Samo u memorijiO_tvori kao sloj...NeprovidnostNeprovidnost:OtvoriOtvori slikuOtvori sliku kao slojOtvori putanjuOtvori tekstualnu datoteku (UTF-8)Otvori _putanju...Otvori sko_rašnjeProzorče za otvaranje slikaOtvori prozor za odabir četkeOtvori prozor za odabir pismaOtvori prozor za odabir prelivaOtvori prozorče za izbor paleteOtvori prozor za odabir mustreOtvori izabrani unosOtvaranje „%s“ neuspelo: %sOtvaranje „%s“ nije uspelo: %sOpcije: Polazno H:Polazno Y:Izvorna širina:Druga (%s) ...OkvirnoIzlazni nivoiPreklapanjePDB pozivna greška za proceduru „%s“: diff -uraN gimp-2.2.0/po/sr@Latn.po gimp-2.2.1/po/sr@Latn.po --- gimp-2.2.0/po/sr@Latn.po 2004-12-19 03:11:46.000000000 +0100 +++ gimp-2.2.1/po/sr@Latn.po 2004-12-28 16:58:38.000000000 +0100 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: GIMP 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-19 03:11+0100\n" +"POT-Creation-Date: 2004-12-28 16:58+0100\n" "PO-Revision-Date: 2004-11-18 20:06+0100\n" "Last-Translator: Branko Ivanović \n" "Language-Team: Serbian (sr) \n" @@ -1035,11 +1035,11 @@ msgid "Remove dangling entries" msgstr "Ukloni suvišne unose" -#: app/actions/documents-commands.c:252 app/actions/file-commands.c:163 +#: app/actions/documents-commands.c:251 app/actions/file-commands.c:163 #: app/dialogs/file-open-dialog.c:198 app/dialogs/file-open-dialog.c:249 #: app/dialogs/file-open-location-dialog.c:193 -#: app/display/gimpdisplayshell-dnd.c:332 app/widgets/gimplayertreeview.c:802 -#: app/widgets/gimptoolbox-dnd.c:123 +#: app/display/gimpdisplayshell-dnd.c:334 app/widgets/gimplayertreeview.c:804 +#: app/widgets/gimptoolbox-dnd.c:125 #, c-format msgid "" "Opening '%s' failed:\n" @@ -1550,115 +1550,115 @@ msgid "Zoom all" msgstr "Uvećaj sve" -#: app/actions/gradient-editor-actions.c:582 +#: app/actions/gradient-editor-actions.c:589 msgid "_Blending Function for Segment" msgstr "_Funkcija stapanja za segment" -#: app/actions/gradient-editor-actions.c:584 +#: app/actions/gradient-editor-actions.c:591 msgid "Coloring _Type for Segment" msgstr "Tip bojenja segmenta" -#: app/actions/gradient-editor-actions.c:587 +#: app/actions/gradient-editor-actions.c:594 msgid "_Flip Segment" msgstr "Okreni segment" -#: app/actions/gradient-editor-actions.c:589 +#: app/actions/gradient-editor-actions.c:596 msgid "_Replicate Segment..." msgstr "Dupliraj segment..." -#: app/actions/gradient-editor-actions.c:591 +#: app/actions/gradient-editor-actions.c:598 msgid "Split Segment at _Midpoint" msgstr "Podeli segment na sredini" -#: app/actions/gradient-editor-actions.c:593 +#: app/actions/gradient-editor-actions.c:600 msgid "Split Segment _Uniformly..." msgstr "Podeli segment istovetno..." -#: app/actions/gradient-editor-actions.c:595 +#: app/actions/gradient-editor-actions.c:602 msgid "_Delete Segment" msgstr "Obriši segment" -#: app/actions/gradient-editor-actions.c:597 +#: app/actions/gradient-editor-actions.c:604 msgid "Re-_center Segment's Midpoint" msgstr "Ponovo centriraj srednju tačku segmenta" -#: app/actions/gradient-editor-actions.c:599 +#: app/actions/gradient-editor-actions.c:606 msgid "Re-distribute _Handles in Segment" msgstr "Ponovo postavi ručke u segmentu" -#: app/actions/gradient-editor-actions.c:604 +#: app/actions/gradient-editor-actions.c:611 msgid "_Blending Function for Selection" msgstr "Funkcije stapanja za izbor" -#: app/actions/gradient-editor-actions.c:606 +#: app/actions/gradient-editor-actions.c:613 msgid "Coloring _Type for Selection" msgstr "Tip bojenja izbora" -#: app/actions/gradient-editor-actions.c:609 +#: app/actions/gradient-editor-actions.c:616 msgid "_Flip Selection" msgstr "Okreni izbor" -#: app/actions/gradient-editor-actions.c:611 +#: app/actions/gradient-editor-actions.c:618 msgid "_Replicate Selection..." msgstr "Dupliraj izbor..." -#: app/actions/gradient-editor-actions.c:613 +#: app/actions/gradient-editor-actions.c:620 msgid "Split Segments at _Midpoints" msgstr "Podeli segmente na polovinama" -#: app/actions/gradient-editor-actions.c:615 +#: app/actions/gradient-editor-actions.c:622 msgid "Split Segments _Uniformly..." msgstr "Podeli segmente istovetno..." -#: app/actions/gradient-editor-actions.c:617 +#: app/actions/gradient-editor-actions.c:624 msgid "_Delete Selection" msgstr "Obriši izbor" -#: app/actions/gradient-editor-actions.c:619 +#: app/actions/gradient-editor-actions.c:626 msgid "Re-_center Midpoints in Selection" msgstr "Ponovo centriraj srednje tačke u izboru" -#: app/actions/gradient-editor-actions.c:621 +#: app/actions/gradient-editor-actions.c:628 msgid "Re-distribute _Handles in Selection" msgstr "Ponovo postavi ručke u izboru" -#: app/actions/gradient-editor-commands.c:84 +#: app/actions/gradient-editor-commands.c:85 msgid "Left Endpoint Color" msgstr "Boja krajnje leve tačke" -#: app/actions/gradient-editor-commands.c:86 +#: app/actions/gradient-editor-commands.c:87 msgid "Gradient Segment's Left Endpoint Color" msgstr "Boje krajnje leve tačke prelivnog segmenta" -#: app/actions/gradient-editor-commands.c:186 +#: app/actions/gradient-editor-commands.c:189 msgid "Right Endpoint Color" msgstr "Boja krajnje desne tačke" -#: app/actions/gradient-editor-commands.c:188 +#: app/actions/gradient-editor-commands.c:191 msgid "Gradient Segment's Right Endpoint Color" msgstr "Boja krajnje desne tačke prelivnog segmenta" -#: app/actions/gradient-editor-commands.c:353 +#: app/actions/gradient-editor-commands.c:358 msgid "Replicate Segment" msgstr "Dupliraj segment" -#: app/actions/gradient-editor-commands.c:354 +#: app/actions/gradient-editor-commands.c:359 msgid "Replicate Gradient Segment" msgstr "Dupliraj prelivni segment" -#: app/actions/gradient-editor-commands.c:358 +#: app/actions/gradient-editor-commands.c:363 msgid "Replicate Selection" msgstr "Dupliraj izbor" -#: app/actions/gradient-editor-commands.c:359 +#: app/actions/gradient-editor-commands.c:364 msgid "Replicate Gradient Selection" msgstr "Dupliraj prelivni izbor" -#: app/actions/gradient-editor-commands.c:371 +#: app/actions/gradient-editor-commands.c:376 msgid "Replicate" msgstr "Dupliraj" -#: app/actions/gradient-editor-commands.c:386 +#: app/actions/gradient-editor-commands.c:391 msgid "" "Select the number of times\n" "to replicate the selected segment." @@ -1666,7 +1666,7 @@ "Izaberite broj duplikata\n" "izabranog segmenta." -#: app/actions/gradient-editor-commands.c:389 +#: app/actions/gradient-editor-commands.c:394 msgid "" "Select the number of times\n" "to replicate the selection." @@ -1674,27 +1674,27 @@ "Izaberite broj duplikata\n" "izbora." -#: app/actions/gradient-editor-commands.c:444 +#: app/actions/gradient-editor-commands.c:452 msgid "Split Segment Uniformly" msgstr "Podeli segment istovetno" -#: app/actions/gradient-editor-commands.c:445 +#: app/actions/gradient-editor-commands.c:453 msgid "Split Gradient Segment Uniformly" msgstr "Podeli prelivni segment istovetno" -#: app/actions/gradient-editor-commands.c:449 +#: app/actions/gradient-editor-commands.c:457 msgid "Split Segments Uniformly" msgstr "Podeli segment istovetno" -#: app/actions/gradient-editor-commands.c:450 +#: app/actions/gradient-editor-commands.c:458 msgid "Split Gradient Segments Uniformly" msgstr "Podeli prelivni segment istovetno" -#: app/actions/gradient-editor-commands.c:462 +#: app/actions/gradient-editor-commands.c:470 msgid "Split" msgstr "Podeli" -#: app/actions/gradient-editor-commands.c:478 +#: app/actions/gradient-editor-commands.c:486 msgid "" "Select the number of uniform parts\n" "in which to split the selected segment." @@ -1702,7 +1702,7 @@ "Izaberite broj istovetnih delova\n" "na koje želite da podelite izabrani segment." -#: app/actions/gradient-editor-commands.c:481 +#: app/actions/gradient-editor-commands.c:489 msgid "" "Select the number of uniform parts\n" "in which to split the segments in the selection." @@ -2139,7 +2139,7 @@ #: app/actions/layers-commands.c:232 app/actions/layers-commands.c:234 #: app/actions/layers-commands.c:291 app/actions/layers-commands.c:295 -#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:840 +#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:842 msgid "New Layer" msgstr "Novi sloj" @@ -2151,7 +2151,7 @@ msgid "Set Layer Boundary Size" msgstr "Podesi graničnu veličinu sloja" -#: app/actions/layers-commands.c:512 app/core/gimplayer.c:255 +#: app/actions/layers-commands.c:512 app/core/gimplayer.c:253 msgid "Scale Layer" msgstr "Povećaj ili smanji sloj" @@ -2163,7 +2163,7 @@ msgid "Layer Mask to Selection" msgstr "Maska sloja u izbor" -#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1085 +#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1066 #: app/dialogs/layer-add-mask-dialog.c:62 msgid "Add Layer Mask" msgstr "Dodaj masku za slojeve" @@ -2710,7 +2710,7 @@ msgstr "Otvori tekstualnu datoteku (UTF-8)" #: app/actions/text-editor-commands.c:132 app/config/gimpconfig-utils.c:552 -#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:393 +#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:396 #: app/core/gimpbrushgenerated.c:601 app/core/gimpbrushpipe.c:338 #: app/core/gimpgradient-load.c:63 app/core/gimppalette.c:360 #: app/core/gimppattern.c:328 app/tools/gimpimagemaptool.c:608 @@ -4551,7 +4551,7 @@ msgid "FG to Transparent" msgstr "Boja četke u providnost" -#: app/core/gimp-gui.c:148 +#: app/core/gimp-gui.c:153 msgid "GIMP" msgstr "GIMP" @@ -4583,42 +4583,59 @@ msgid "Modules" msgstr "Moduli" -#: app/core/gimpbrush.c:531 +#: app/core/gimpbrush.c:534 #, c-format msgid "Could not read %d bytes from '%s': %s" msgstr "Nisam mogao da pročitam %d bajtova iz „%s“: %s" -#: app/core/gimpbrush.c:566 +#: app/core/gimpbrush.c:554 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Width = 0." +msgstr "Kobna greška pri obradi datoteke sa četkama „%s“: nepoznata dubina %d." + +#: app/core/gimpbrush.c:563 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Height = 0." +msgstr "" +"Kobna greška pri obradi datoteke sa četkama „%s“: datoteka je neispravna." + +#: app/core/gimpbrush.c:572 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Bytes = 0." +msgstr "" +"Kobna greška pri obradi datoteke sa četkama „%s“: datoteka je neispravna." + +#: app/core/gimpbrush.c:596 #, c-format msgid "Fatal parse error in brush file '%s': Unknown depth %d." msgstr "Kobna greška pri obradi datoteke sa četkama „%s“: nepoznata dubina %d." -#: app/core/gimpbrush.c:579 +#: app/core/gimpbrush.c:609 #, c-format msgid "Fatal parse error in brush file '%s': Unknown version %d." msgstr "" "Kobna greška pri obradi datoteke sa četkama „%s“: nepoznato izdanje %d." -#: app/core/gimpbrush.c:595 app/core/gimpbrush.c:715 +#: app/core/gimpbrush.c:625 app/core/gimpbrush.c:745 #, c-format msgid "Fatal parse error in brush file '%s': File appears truncated." msgstr "" "Kobna greška pri obradi datoteke sa četkama „%s“: datoteka izgleda " "nedovršeno." -#: app/core/gimpbrush.c:603 app/core/gimpbrushgenerated.c:648 +#: app/core/gimpbrush.c:633 app/core/gimpbrushgenerated.c:648 #: app/core/gimpbrushpipe.c:354 #, c-format msgid "Invalid UTF-8 string in brush file '%s'." msgstr "Neispravna UTF-8 niska u datoteci sa četkama „%s“." -#: app/core/gimpbrush.c:610 app/core/gimpcontext.c:1299 -#: app/core/gimpitem.c:479 app/core/gimppattern.c:400 +#: app/core/gimpbrush.c:640 app/core/gimpcontext.c:1299 +#: app/core/gimpitem.c:480 app/core/gimppattern.c:400 #: app/dialogs/template-options-dialog.c:80 app/tools/gimpvectortool.c:339 msgid "Unnamed" msgstr "Neimenovano" -#: app/core/gimpbrush.c:704 +#: app/core/gimpbrush.c:734 #, c-format msgid "" "Fatal parse error in brush file '%s': Unsupported brush depth %d\n" @@ -4790,11 +4807,11 @@ "%s" #: app/core/gimpdatafactory.c:411 app/core/gimpdatafactory.c:414 -#: app/core/gimpitem.c:274 app/core/gimpitem.c:277 +#: app/core/gimpitem.c:275 app/core/gimpitem.c:278 msgid "copy" msgstr "umnožak" -#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:286 +#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:287 #, c-format msgid "%s copy" msgstr "Umnožak %s" @@ -4857,7 +4874,7 @@ msgid "Rotate" msgstr "Rotiranje" -#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:259 +#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:257 msgid "Transform Layer" msgstr "Transformiši sloj" @@ -5218,7 +5235,7 @@ # bug: plural-forms #. pixel size #: app/core/gimpimagefile.c:624 app/dialogs/info-window.c:552 -#: app/widgets/gimpsizebox.c:552 app/widgets/gimptemplateeditor.c:637 +#: app/widgets/gimpsizebox.c:429 app/widgets/gimptemplateeditor.c:637 #: app/widgets/gimptemplateeditor.c:673 #, c-format msgid "%d x %d pixels" @@ -5240,15 +5257,15 @@ msgid "Could not open thumbnail '%s': %s" msgstr "Nisam mogao da otvorim umanjeni prikaz „%s“: %s" -#: app/core/gimpitem.c:1096 +#: app/core/gimpitem.c:1103 msgid "Attach Parasite" msgstr "Prikači parazita" -#: app/core/gimpitem.c:1106 +#: app/core/gimpitem.c:1113 msgid "Attach Parasite to Item" msgstr "Prikači parazita predmetu" -#: app/core/gimpitem.c:1145 app/core/gimpitem.c:1152 +#: app/core/gimpitem.c:1152 app/core/gimpitem.c:1159 msgid "Remove Parasite from Item" msgstr "Skloni parazita sa predmeta" @@ -5276,37 +5293,37 @@ msgid "Floating Selection to Layer" msgstr "Plutajući izbor prebaci u sloj" -#: app/core/gimplayer.c:252 app/pdb/internal_procs.c:152 +#: app/core/gimplayer.c:250 app/pdb/internal_procs.c:152 msgid "Layer" msgstr "Sloj" -#: app/core/gimplayer.c:253 +#: app/core/gimplayer.c:251 msgid "Rename Layer" msgstr "Promeni naziv sloja" -#: app/core/gimplayer.c:254 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 +#: app/core/gimplayer.c:252 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 msgid "Move Layer" msgstr "Pomeri sloj" -#: app/core/gimplayer.c:256 +#: app/core/gimplayer.c:254 msgid "Resize Layer" msgstr "Promeni veličinu sloja" -#: app/core/gimplayer.c:257 +#: app/core/gimplayer.c:255 msgid "Flip Layer" msgstr "Okreni sloj" -#: app/core/gimplayer.c:258 +#: app/core/gimplayer.c:256 msgid "Rotate Layer" msgstr "Rotiraj sloj" -#: app/core/gimplayer.c:341 app/core/gimplayer.c:1129 +#: app/core/gimplayer.c:339 app/core/gimplayer.c:1110 #: app/core/gimplayermask.c:236 #, c-format msgid "%s mask" msgstr "%s maska" -#: app/core/gimplayer.c:387 +#: app/core/gimplayer.c:385 #, c-format msgid "" "Floating Selection\n" @@ -5315,39 +5332,39 @@ "Plutajući izbor\n" "(%s)" -#: app/core/gimplayer.c:1055 +#: app/core/gimplayer.c:1036 msgid "Cannot add layer mask to layer which is not part of an image." msgstr "Ne mogu da dodam masku sloju koji očigledno nije deo slike." -#: app/core/gimplayer.c:1062 +#: app/core/gimplayer.c:1043 msgid "Unable to add a layer mask since the layer already has one." msgstr "Ne mogu da dodam masku jer sloj već ima jednu." -#: app/core/gimplayer.c:1069 +#: app/core/gimplayer.c:1050 msgid "Cannot add layer mask to a layer with no alpha channel." msgstr "Ne mogu da dodam masku sloju koji nema alfa kanal." -#: app/core/gimplayer.c:1079 +#: app/core/gimplayer.c:1060 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "Ne mogu da dodam masku sa različitim dimenzijama od izabranog sloja." -#: app/core/gimplayer.c:1183 +#: app/core/gimplayer.c:1164 msgid "Transfer Alpha to Mask" msgstr "Prenesi providnost u masku" -#: app/core/gimplayer.c:1343 +#: app/core/gimplayer.c:1324 msgid "Apply Layer Mask" msgstr "Primeni Masku za slojeve" -#: app/core/gimplayer.c:1344 +#: app/core/gimplayer.c:1325 msgid "Delete Layer Mask" msgstr "Izbriši masku za slojeve" -#: app/core/gimplayer.c:1445 +#: app/core/gimplayer.c:1426 msgid "Add Alpha Channel" msgstr "Dodaj Alfa kanal" -#: app/core/gimplayer.c:1467 +#: app/core/gimplayer.c:1448 msgid "Layer to Image Size" msgstr "Izjednači veličinu sloja i slike" @@ -6802,28 +6819,28 @@ msgstr "Veličina štampe" #. the image size labels -#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:241 +#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:222 #: app/widgets/gimptemplateeditor.c:236 msgid "_Width:" msgstr "_Širina:" -#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:248 +#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:225 #: app/widgets/gimptemplateeditor.c:243 msgid "H_eight:" msgstr "_Visina:" #. the resolution labels -#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:338 +#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:273 #: app/widgets/gimptemplateeditor.c:363 msgid "_X resolution:" msgstr "_X rezolucija:" -#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:345 +#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:276 #: app/widgets/gimptemplateeditor.c:370 msgid "_Y resolution:" msgstr "_Y rezolucija:" -#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:357 +#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:269 #: app/widgets/gimptemplateeditor.c:383 #, c-format msgid "pixels/%a" @@ -7451,11 +7468,11 @@ msgid "%d minutes" msgstr "%d minuta" -#: app/display/gimpdisplayshell-dnd.c:96 +#: app/display/gimpdisplayshell-dnd.c:98 msgid "Drop New Layer" msgstr "Odbaci novi sloj" -#: app/display/gimpdisplayshell-dnd.c:140 +#: app/display/gimpdisplayshell-dnd.c:142 msgid "Drop New Path" msgstr "Odbaci novu putanju" @@ -8918,12 +8935,12 @@ msgstr "_Četka" #: app/tools/gimppaintoptions-gui.c:103 app/widgets/gimpbrushselect.c:201 -#: app/widgets/gimplayertreeview.c:330 +#: app/widgets/gimplayertreeview.c:332 msgid "Opacity:" msgstr "Neprovidnost:" #: app/tools/gimppaintoptions-gui.c:108 app/tools/gimpselectionoptions.c:374 -#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:323 +#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:325 msgid "Mode:" msgstr "Režim:" @@ -10324,24 +10341,24 @@ msgid "Set Item Exclusive Linked" msgstr "Učini predmet isključivo vezanim" -#: app/widgets/gimplayertreeview.c:250 +#: app/widgets/gimplayertreeview.c:252 msgid "Reorder Layer" msgstr "Ponovo poređaj sloj" -#: app/widgets/gimplayertreeview.c:311 +#: app/widgets/gimplayertreeview.c:313 msgid "Keep transparency" msgstr "Zadrži providnost" -#: app/widgets/gimplayertreeview.c:846 +#: app/widgets/gimplayertreeview.c:848 msgid "Empty Layer" msgstr "Prazan sloj" -#: app/widgets/gimpmessagebox.c:458 +#: app/widgets/gimpmessagebox.c:460 #, c-format msgid "Message repeated %d times." msgstr "Poruka ponovljena puta: %d." -#: app/widgets/gimpmessagebox.c:460 +#: app/widgets/gimpmessagebox.c:462 msgid "Message repeated once." msgstr "Poruka ponovljena samo jednom." @@ -10373,16 +10390,12 @@ msgid "Invalid UTF-8" msgstr "Neispravan UTF-8" -#: app/widgets/gimpsizebox.c:290 -msgid "Keep aspect ratio" -msgstr "Očuvaj razmeru" - -#: app/widgets/gimpsizebox.c:574 +#: app/widgets/gimpsizebox.c:451 #, c-format msgid "%d x %d dpi" msgstr "%d x %d tpi" -#: app/widgets/gimpsizebox.c:578 +#: app/widgets/gimpsizebox.c:455 #, c-format msgid "%d dpi" msgstr "%d tpi" @@ -10825,6 +10838,9 @@ msgid "Image Editor" msgstr "Obrada slika" +#~ msgid "Keep aspect ratio" +#~ msgstr "Očuvaj razmeru" + #~ msgid "Y:" #~ msgstr "Y:" diff -uraN gimp-2.2.0/po/sr.po gimp-2.2.1/po/sr.po --- gimp-2.2.0/po/sr.po 2004-12-19 03:11:45.000000000 +0100 +++ gimp-2.2.1/po/sr.po 2004-12-28 16:58:38.000000000 +0100 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: GIMP 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-19 03:11+0100\n" +"POT-Creation-Date: 2004-12-28 16:58+0100\n" "PO-Revision-Date: 2004-11-18 20:06+0100\n" "Last-Translator: Бранко Ивановић \n" "Language-Team: Serbian (sr) \n" @@ -1034,11 +1034,11 @@ msgid "Remove dangling entries" msgstr "Уклони сувишне уносе" -#: app/actions/documents-commands.c:252 app/actions/file-commands.c:163 +#: app/actions/documents-commands.c:251 app/actions/file-commands.c:163 #: app/dialogs/file-open-dialog.c:198 app/dialogs/file-open-dialog.c:249 #: app/dialogs/file-open-location-dialog.c:193 -#: app/display/gimpdisplayshell-dnd.c:332 app/widgets/gimplayertreeview.c:802 -#: app/widgets/gimptoolbox-dnd.c:123 +#: app/display/gimpdisplayshell-dnd.c:334 app/widgets/gimplayertreeview.c:804 +#: app/widgets/gimptoolbox-dnd.c:125 #, c-format msgid "" "Opening '%s' failed:\n" @@ -1549,115 +1549,115 @@ msgid "Zoom all" msgstr "Увећај све" -#: app/actions/gradient-editor-actions.c:582 +#: app/actions/gradient-editor-actions.c:589 msgid "_Blending Function for Segment" msgstr "_Функција стапања за сегмент" -#: app/actions/gradient-editor-actions.c:584 +#: app/actions/gradient-editor-actions.c:591 msgid "Coloring _Type for Segment" msgstr "Тип бојења сегмента" -#: app/actions/gradient-editor-actions.c:587 +#: app/actions/gradient-editor-actions.c:594 msgid "_Flip Segment" msgstr "Окрени сегмент" -#: app/actions/gradient-editor-actions.c:589 +#: app/actions/gradient-editor-actions.c:596 msgid "_Replicate Segment..." msgstr "Дуплирај сегмент..." -#: app/actions/gradient-editor-actions.c:591 +#: app/actions/gradient-editor-actions.c:598 msgid "Split Segment at _Midpoint" msgstr "Подели сегмент на средини" -#: app/actions/gradient-editor-actions.c:593 +#: app/actions/gradient-editor-actions.c:600 msgid "Split Segment _Uniformly..." msgstr "Подели сегмент истоветно..." -#: app/actions/gradient-editor-actions.c:595 +#: app/actions/gradient-editor-actions.c:602 msgid "_Delete Segment" msgstr "Обриши сегмент" -#: app/actions/gradient-editor-actions.c:597 +#: app/actions/gradient-editor-actions.c:604 msgid "Re-_center Segment's Midpoint" msgstr "Поново центрирај средњу тачку сегмента" -#: app/actions/gradient-editor-actions.c:599 +#: app/actions/gradient-editor-actions.c:606 msgid "Re-distribute _Handles in Segment" msgstr "Поново постави ручке у сегменту" -#: app/actions/gradient-editor-actions.c:604 +#: app/actions/gradient-editor-actions.c:611 msgid "_Blending Function for Selection" msgstr "Функције стапања за избор" -#: app/actions/gradient-editor-actions.c:606 +#: app/actions/gradient-editor-actions.c:613 msgid "Coloring _Type for Selection" msgstr "Тип бојења избора" -#: app/actions/gradient-editor-actions.c:609 +#: app/actions/gradient-editor-actions.c:616 msgid "_Flip Selection" msgstr "Окрени избор" -#: app/actions/gradient-editor-actions.c:611 +#: app/actions/gradient-editor-actions.c:618 msgid "_Replicate Selection..." msgstr "Дуплирај избор..." -#: app/actions/gradient-editor-actions.c:613 +#: app/actions/gradient-editor-actions.c:620 msgid "Split Segments at _Midpoints" msgstr "Подели сегменте на половинама" -#: app/actions/gradient-editor-actions.c:615 +#: app/actions/gradient-editor-actions.c:622 msgid "Split Segments _Uniformly..." msgstr "Подели сегменте истоветно..." -#: app/actions/gradient-editor-actions.c:617 +#: app/actions/gradient-editor-actions.c:624 msgid "_Delete Selection" msgstr "Обриши избор" -#: app/actions/gradient-editor-actions.c:619 +#: app/actions/gradient-editor-actions.c:626 msgid "Re-_center Midpoints in Selection" msgstr "Поново центрирај средње тачке у избору" -#: app/actions/gradient-editor-actions.c:621 +#: app/actions/gradient-editor-actions.c:628 msgid "Re-distribute _Handles in Selection" msgstr "Поново постави ручке у избору" -#: app/actions/gradient-editor-commands.c:84 +#: app/actions/gradient-editor-commands.c:85 msgid "Left Endpoint Color" msgstr "Боја крајње леве тачке" -#: app/actions/gradient-editor-commands.c:86 +#: app/actions/gradient-editor-commands.c:87 msgid "Gradient Segment's Left Endpoint Color" msgstr "Боје крајње леве тачке преливног сегмента" -#: app/actions/gradient-editor-commands.c:186 +#: app/actions/gradient-editor-commands.c:189 msgid "Right Endpoint Color" msgstr "Боја крајње десне тачке" -#: app/actions/gradient-editor-commands.c:188 +#: app/actions/gradient-editor-commands.c:191 msgid "Gradient Segment's Right Endpoint Color" msgstr "Боја крајње десне тачке преливног сегмента" -#: app/actions/gradient-editor-commands.c:353 +#: app/actions/gradient-editor-commands.c:358 msgid "Replicate Segment" msgstr "Дуплирај сегмент" -#: app/actions/gradient-editor-commands.c:354 +#: app/actions/gradient-editor-commands.c:359 msgid "Replicate Gradient Segment" msgstr "Дуплирај преливни сегмент" -#: app/actions/gradient-editor-commands.c:358 +#: app/actions/gradient-editor-commands.c:363 msgid "Replicate Selection" msgstr "Дуплирај избор" -#: app/actions/gradient-editor-commands.c:359 +#: app/actions/gradient-editor-commands.c:364 msgid "Replicate Gradient Selection" msgstr "Дуплирај преливни избор" -#: app/actions/gradient-editor-commands.c:371 +#: app/actions/gradient-editor-commands.c:376 msgid "Replicate" msgstr "Дуплирај" -#: app/actions/gradient-editor-commands.c:386 +#: app/actions/gradient-editor-commands.c:391 msgid "" "Select the number of times\n" "to replicate the selected segment." @@ -1665,7 +1665,7 @@ "Изаберите број дупликата\n" "изабраног сегмента." -#: app/actions/gradient-editor-commands.c:389 +#: app/actions/gradient-editor-commands.c:394 msgid "" "Select the number of times\n" "to replicate the selection." @@ -1673,27 +1673,27 @@ "Изаберите број дупликата\n" "избора." -#: app/actions/gradient-editor-commands.c:444 +#: app/actions/gradient-editor-commands.c:452 msgid "Split Segment Uniformly" msgstr "Подели сегмент истоветно" -#: app/actions/gradient-editor-commands.c:445 +#: app/actions/gradient-editor-commands.c:453 msgid "Split Gradient Segment Uniformly" msgstr "Подели преливни сегмент истоветно" -#: app/actions/gradient-editor-commands.c:449 +#: app/actions/gradient-editor-commands.c:457 msgid "Split Segments Uniformly" msgstr "Подели сегмент истоветно" -#: app/actions/gradient-editor-commands.c:450 +#: app/actions/gradient-editor-commands.c:458 msgid "Split Gradient Segments Uniformly" msgstr "Подели преливни сегмент истоветно" -#: app/actions/gradient-editor-commands.c:462 +#: app/actions/gradient-editor-commands.c:470 msgid "Split" msgstr "Подели" -#: app/actions/gradient-editor-commands.c:478 +#: app/actions/gradient-editor-commands.c:486 msgid "" "Select the number of uniform parts\n" "in which to split the selected segment." @@ -1701,7 +1701,7 @@ "Изаберите број истоветних делова\n" "на које желите да поделите изабрани сегмент." -#: app/actions/gradient-editor-commands.c:481 +#: app/actions/gradient-editor-commands.c:489 msgid "" "Select the number of uniform parts\n" "in which to split the segments in the selection." @@ -2138,7 +2138,7 @@ #: app/actions/layers-commands.c:232 app/actions/layers-commands.c:234 #: app/actions/layers-commands.c:291 app/actions/layers-commands.c:295 -#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:840 +#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:842 msgid "New Layer" msgstr "Нови слој" @@ -2150,7 +2150,7 @@ msgid "Set Layer Boundary Size" msgstr "Подеси граничну величину слоја" -#: app/actions/layers-commands.c:512 app/core/gimplayer.c:255 +#: app/actions/layers-commands.c:512 app/core/gimplayer.c:253 msgid "Scale Layer" msgstr "Повећај или смањи слој" @@ -2162,7 +2162,7 @@ msgid "Layer Mask to Selection" msgstr "Маска слоја у избор" -#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1085 +#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1066 #: app/dialogs/layer-add-mask-dialog.c:62 msgid "Add Layer Mask" msgstr "Додај маску за слојеве" @@ -2709,7 +2709,7 @@ msgstr "Отвори текстуалну датотеку (УТФ-8)" #: app/actions/text-editor-commands.c:132 app/config/gimpconfig-utils.c:552 -#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:393 +#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:396 #: app/core/gimpbrushgenerated.c:601 app/core/gimpbrushpipe.c:338 #: app/core/gimpgradient-load.c:63 app/core/gimppalette.c:360 #: app/core/gimppattern.c:328 app/tools/gimpimagemaptool.c:608 @@ -4547,7 +4547,7 @@ msgid "FG to Transparent" msgstr "Боја четке у провидност" -#: app/core/gimp-gui.c:148 +#: app/core/gimp-gui.c:153 msgid "GIMP" msgstr "ГИМП" @@ -4579,41 +4579,58 @@ msgid "Modules" msgstr "Модули" -#: app/core/gimpbrush.c:531 +#: app/core/gimpbrush.c:534 #, c-format msgid "Could not read %d bytes from '%s': %s" msgstr "Нисам могао да прочитам %d бајтова из „%s“: %s" -#: app/core/gimpbrush.c:566 +#: app/core/gimpbrush.c:554 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Width = 0." +msgstr "Кобна грешка при обради датотеке са четкама „%s“: непозната дубина %d." + +#: app/core/gimpbrush.c:563 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Height = 0." +msgstr "" +"Кобна грешка при обради датотеке са четкама „%s“: датотека је неисправна." + +#: app/core/gimpbrush.c:572 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Bytes = 0." +msgstr "" +"Кобна грешка при обради датотеке са четкама „%s“: датотека је неисправна." + +#: app/core/gimpbrush.c:596 #, c-format msgid "Fatal parse error in brush file '%s': Unknown depth %d." msgstr "Кобна грешка при обради датотеке са четкама „%s“: непозната дубина %d." -#: app/core/gimpbrush.c:579 +#: app/core/gimpbrush.c:609 #, c-format msgid "Fatal parse error in brush file '%s': Unknown version %d." msgstr "Кобна грешка при обради датотеке са четкама „%s“: непознато издање %d." -#: app/core/gimpbrush.c:595 app/core/gimpbrush.c:715 +#: app/core/gimpbrush.c:625 app/core/gimpbrush.c:745 #, c-format msgid "Fatal parse error in brush file '%s': File appears truncated." msgstr "" "Кобна грешка при обради датотеке са четкама „%s“: датотека изгледа " "недовршено." -#: app/core/gimpbrush.c:603 app/core/gimpbrushgenerated.c:648 +#: app/core/gimpbrush.c:633 app/core/gimpbrushgenerated.c:648 #: app/core/gimpbrushpipe.c:354 #, c-format msgid "Invalid UTF-8 string in brush file '%s'." msgstr "Неисправна УТФ-8 ниска у датотеци са четкама „%s“." -#: app/core/gimpbrush.c:610 app/core/gimpcontext.c:1299 -#: app/core/gimpitem.c:479 app/core/gimppattern.c:400 +#: app/core/gimpbrush.c:640 app/core/gimpcontext.c:1299 +#: app/core/gimpitem.c:480 app/core/gimppattern.c:400 #: app/dialogs/template-options-dialog.c:80 app/tools/gimpvectortool.c:339 msgid "Unnamed" msgstr "Неименовано" -#: app/core/gimpbrush.c:704 +#: app/core/gimpbrush.c:734 #, c-format msgid "" "Fatal parse error in brush file '%s': Unsupported brush depth %d\n" @@ -4785,11 +4802,11 @@ "%s" #: app/core/gimpdatafactory.c:411 app/core/gimpdatafactory.c:414 -#: app/core/gimpitem.c:274 app/core/gimpitem.c:277 +#: app/core/gimpitem.c:275 app/core/gimpitem.c:278 msgid "copy" msgstr "умножак" -#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:286 +#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:287 #, c-format msgid "%s copy" msgstr "Умножак %s" @@ -4852,7 +4869,7 @@ msgid "Rotate" msgstr "Ротирање" -#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:259 +#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:257 msgid "Transform Layer" msgstr "Трансформиши слој" @@ -5211,7 +5228,7 @@ # bug: plural-forms #. pixel size #: app/core/gimpimagefile.c:624 app/dialogs/info-window.c:552 -#: app/widgets/gimpsizebox.c:552 app/widgets/gimptemplateeditor.c:637 +#: app/widgets/gimpsizebox.c:429 app/widgets/gimptemplateeditor.c:637 #: app/widgets/gimptemplateeditor.c:673 #, c-format msgid "%d x %d pixels" @@ -5233,15 +5250,15 @@ msgid "Could not open thumbnail '%s': %s" msgstr "Нисам могао да отворим умањени приказ „%s“: %s" -#: app/core/gimpitem.c:1096 +#: app/core/gimpitem.c:1103 msgid "Attach Parasite" msgstr "Прикачи паразита" -#: app/core/gimpitem.c:1106 +#: app/core/gimpitem.c:1113 msgid "Attach Parasite to Item" msgstr "Прикачи паразита предмету" -#: app/core/gimpitem.c:1145 app/core/gimpitem.c:1152 +#: app/core/gimpitem.c:1152 app/core/gimpitem.c:1159 msgid "Remove Parasite from Item" msgstr "Склони паразита са предмета" @@ -5269,37 +5286,37 @@ msgid "Floating Selection to Layer" msgstr "Плутајући избор пребаци у слој" -#: app/core/gimplayer.c:252 app/pdb/internal_procs.c:152 +#: app/core/gimplayer.c:250 app/pdb/internal_procs.c:152 msgid "Layer" msgstr "Слој" -#: app/core/gimplayer.c:253 +#: app/core/gimplayer.c:251 msgid "Rename Layer" msgstr "Промени назив слоја" -#: app/core/gimplayer.c:254 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 +#: app/core/gimplayer.c:252 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 msgid "Move Layer" msgstr "Помери слој" -#: app/core/gimplayer.c:256 +#: app/core/gimplayer.c:254 msgid "Resize Layer" msgstr "Промени величину слоја" -#: app/core/gimplayer.c:257 +#: app/core/gimplayer.c:255 msgid "Flip Layer" msgstr "Окрени слој" -#: app/core/gimplayer.c:258 +#: app/core/gimplayer.c:256 msgid "Rotate Layer" msgstr "Ротирај слој" -#: app/core/gimplayer.c:341 app/core/gimplayer.c:1129 +#: app/core/gimplayer.c:339 app/core/gimplayer.c:1110 #: app/core/gimplayermask.c:236 #, c-format msgid "%s mask" msgstr "%s маска" -#: app/core/gimplayer.c:387 +#: app/core/gimplayer.c:385 #, c-format msgid "" "Floating Selection\n" @@ -5308,39 +5325,39 @@ "Плутајући избор\n" "(%s)" -#: app/core/gimplayer.c:1055 +#: app/core/gimplayer.c:1036 msgid "Cannot add layer mask to layer which is not part of an image." msgstr "Не могу да додам маску слоју који очигледно није део слике." -#: app/core/gimplayer.c:1062 +#: app/core/gimplayer.c:1043 msgid "Unable to add a layer mask since the layer already has one." msgstr "Не могу да додам маску јер слој већ има једну." -#: app/core/gimplayer.c:1069 +#: app/core/gimplayer.c:1050 msgid "Cannot add layer mask to a layer with no alpha channel." msgstr "Не могу да додам маску слоју који нема алфа канал." -#: app/core/gimplayer.c:1079 +#: app/core/gimplayer.c:1060 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "Не могу да додам маску са различитим димензијама од изабраног слоја." -#: app/core/gimplayer.c:1183 +#: app/core/gimplayer.c:1164 msgid "Transfer Alpha to Mask" msgstr "Пренеси провидност у маску" -#: app/core/gimplayer.c:1343 +#: app/core/gimplayer.c:1324 msgid "Apply Layer Mask" msgstr "Примени Маску за слојеве" -#: app/core/gimplayer.c:1344 +#: app/core/gimplayer.c:1325 msgid "Delete Layer Mask" msgstr "Избриши маску за слојеве" -#: app/core/gimplayer.c:1445 +#: app/core/gimplayer.c:1426 msgid "Add Alpha Channel" msgstr "Додај Алфа канал" -#: app/core/gimplayer.c:1467 +#: app/core/gimplayer.c:1448 msgid "Layer to Image Size" msgstr "Изједначи величину слоја и слике" @@ -6795,28 +6812,28 @@ msgstr "Величина штампе" #. the image size labels -#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:241 +#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:222 #: app/widgets/gimptemplateeditor.c:236 msgid "_Width:" msgstr "_Ширина:" -#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:248 +#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:225 #: app/widgets/gimptemplateeditor.c:243 msgid "H_eight:" msgstr "_Висина:" #. the resolution labels -#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:338 +#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:273 #: app/widgets/gimptemplateeditor.c:363 msgid "_X resolution:" msgstr "_X резолуција:" -#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:345 +#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:276 #: app/widgets/gimptemplateeditor.c:370 msgid "_Y resolution:" msgstr "_Y резолуција:" -#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:357 +#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:269 #: app/widgets/gimptemplateeditor.c:383 #, c-format msgid "pixels/%a" @@ -7443,11 +7460,11 @@ msgid "%d minutes" msgstr "%d минута" -#: app/display/gimpdisplayshell-dnd.c:96 +#: app/display/gimpdisplayshell-dnd.c:98 msgid "Drop New Layer" msgstr "Одбаци нови слој" -#: app/display/gimpdisplayshell-dnd.c:140 +#: app/display/gimpdisplayshell-dnd.c:142 msgid "Drop New Path" msgstr "Одбаци нову путању" @@ -8910,12 +8927,12 @@ msgstr "_Четка" #: app/tools/gimppaintoptions-gui.c:103 app/widgets/gimpbrushselect.c:201 -#: app/widgets/gimplayertreeview.c:330 +#: app/widgets/gimplayertreeview.c:332 msgid "Opacity:" msgstr "Непровидност:" #: app/tools/gimppaintoptions-gui.c:108 app/tools/gimpselectionoptions.c:374 -#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:323 +#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:325 msgid "Mode:" msgstr "Режим:" @@ -10316,24 +10333,24 @@ msgid "Set Item Exclusive Linked" msgstr "Учини предмет искључиво везаним" -#: app/widgets/gimplayertreeview.c:250 +#: app/widgets/gimplayertreeview.c:252 msgid "Reorder Layer" msgstr "Поново поређај слој" -#: app/widgets/gimplayertreeview.c:311 +#: app/widgets/gimplayertreeview.c:313 msgid "Keep transparency" msgstr "Задржи провидност" -#: app/widgets/gimplayertreeview.c:846 +#: app/widgets/gimplayertreeview.c:848 msgid "Empty Layer" msgstr "Празан слој" -#: app/widgets/gimpmessagebox.c:458 +#: app/widgets/gimpmessagebox.c:460 #, c-format msgid "Message repeated %d times." msgstr "Порука поновљена пута: %d." -#: app/widgets/gimpmessagebox.c:460 +#: app/widgets/gimpmessagebox.c:462 msgid "Message repeated once." msgstr "Порука поновљена само једном." @@ -10365,16 +10382,12 @@ msgid "Invalid UTF-8" msgstr "Неисправан УТФ-8" -#: app/widgets/gimpsizebox.c:290 -msgid "Keep aspect ratio" -msgstr "Очувај размеру" - -#: app/widgets/gimpsizebox.c:574 +#: app/widgets/gimpsizebox.c:451 #, c-format msgid "%d x %d dpi" msgstr "%d x %d тпи" -#: app/widgets/gimpsizebox.c:578 +#: app/widgets/gimpsizebox.c:455 #, c-format msgid "%d dpi" msgstr "%d тпи" @@ -10817,6 +10830,9 @@ msgid "Image Editor" msgstr "Обрада слика" +#~ msgid "Keep aspect ratio" +#~ msgstr "Очувај размеру" + #~ msgid "Y:" #~ msgstr "Y:" diff -uraN gimp-2.2.0/po/sv.gmo gimp-2.2.1/po/sv.gmo --- gimp-2.2.0/po/sv.gmo 2004-12-19 03:11:56.000000000 +0100 +++ gimp-2.2.1/po/sv.gmo 2004-12-28 16:58:44.000000000 +0100 @@ -1,273 +1,267 @@ -T Js \()&?kfG9GTANi-<k@@2;POA29-9,;f7  - - - "2 -ALO_ -w0':CK -bmt| - -    #K0|.11!c - *6 L -Xcx  -%*;6f *?Sg# -(9AS\| 13DX^qx -)?Y` o -|AJ X<k " <H^qz  -/&E$l " (49?D -T_n7    %1 9FK Pm]  *: ACN7=@6Id3M<a#! ' =GPh~ ),@m  !!<Rg|   .$5S578)0,Z2 ,GOcA%&4B1w#   %6<E -T_g m{ 0 % , 6 CPk+  -  -% 0:$Z ,?O"d  ir  ""2Unw - -),/!I#k#!%.I P\m#-%%Kaw  - - - %,; @ N[k{  -- (8O S]bhy  + 7 ERY_%e! & .=P bp    )Das - --    -% 0=Pc|   :8?s8  $. -=HN -d o } - -   > Tu  -: IV[s  & < -JU -mx     + -7B*S~!.#&"Jm& ,#<`g v'';QmFT#* 0=S f  -  %4FX ^js |($=69<p?A7/9gc9B?=f>'CfJg ]iy     - &:Qfy7T[d  - + 0 -= HR bp -   1 M a (z         - O 4 +S Js L&/kVG9 +GDANi<k@02q;PO129-9;V7  + + + " +1<?O +grz0*3; +R]dlt + +    K l.1!!Su + & < +HSh { +*+6V/CWv# + )1CLl 134HNah +/IP _ +lwAJH<[   ,8Naj  +&5$\ " $)/4 +DO^o7   ! )6; @mM  * 1C>7=@69dp3 =<Q#!  -7@Xn,0]w  !,BWlu ~   .5C5y78) ,Jw2 7OSA%& 421g#  &,5 +DOW ]k 0   & 3@[x+   + *$Jo /?"Tw  Ybs { """E^g +y +),!9#[#!%. +9 @L]q#-%;Qg  + + ++ 0 >K[k~  +- (? CMRXi|   ' 5BIO%U!{ & -@ R`o    4Qcr + +-    + -@Slt    +:(?c8   +-8> +T _ m y + +   > Deu * 9FKcv  , +:E +]h     +'2*Cnw!. #":]z& ,#,PW ft''+A]FwT -C Vw  +  $6H NZc lx($=6)<`?A79Wc9B/=rf>CVJg MYi {     *AVi} 'DKTs  +   +- 8B R`s +   ! = Q (j         + O $  -F -Q - - - '  -=  H  T `  i .u     -        ,  D  Q ^ o   u  1  c (z5r1Jaj|&'  % /9 H Vb gqw~ -BQZp  -    -#.CZHb -  -H!,BN1  -'2 7 C`OCJ10   -# -.9P`q ( - -H -Q \ -it {      !-5SZ bp -+E[w {   K36D{"  $7R g u (+) *6!a/*('Em} - %4M` w   @ [  l v    !   -!! #!0!G!X!m!!!-!"""## ,#6#<#L# \#h#3n##### # -$ $ $$$B$a$$$$$ $$$ % %!%5%D%@L%%-%% %% % % & &+& 2&>& C& O&[&r&&&& & & && ''7' P'\' -r'}'' '' '' -''((!(4(9(A(J(R(d(|( (((( -(#())5)K)Q)Y)v)+))) ) ) -) ) **#*7*P*i* ~** ****"*++/+ O+]+c+h+n+$+++++ ++ , ,,., 3, @,M, -e, p, -},, ,,, , ,,,,-*-H-d-v-}-- ----- -- --..-. @. J.T.]. n. {. ..... . -. ./ / +/7/ Q/ ]/ i/,u//!///0)0 I0V0 n0 |00000 0 00B0A$1f111 1111 11122222222 -22 233 13>3P3p3"3!3!334'4 ?4 I4 S4]4m4|4 44V4+4 5('5P5"V5y5 5 555%5 -5 -666+6?6 -O6Z6 i6w6 66 6 6666 6 6 77&(7,O7 |777 -7 -77778&8984K888 -888 -8 888 8899 %919 F9!R9t9 99 9999 99 -: :):0:;8:?t:::::: ;);4;< <-< ?=I=R= -b= m=#w==-= === >>$>;>D> -M> X>d> -??2? ;?H?Q?Y?_?u? -? -??? -? ? ??? -@ @ %@!/@Q@ U@c@w@ @ @@@@ @@@ AA -"A-A?A RA`A uAA -AAAAAA A!B$B!BB#dBB B -B9BUB=FC<C=CC"D?(DhDzD DDDD(D,DD EE.E -?EJE`EuEJE EEE F #F 0F=FXF rF ~FFFFF;F$G>G MG ZGfGG G GG G G GGG HH.HKH]HqHHHHHHHHI+%IQIiIII I I II I II#J +J7J IJUJjJJ6JJJJJ K7KVKtKKKKKK K KKL L(L FLRLgLmL -tL -LL LLL LL -LLL LM -M*MJM gMsMMMM MMM NN0N4ENzNNNNNNO.OEKOO O OO O OO P P P ,P -8PCP TP -`PkPzP PPPPPNlQ -QQQQQ QQR*R@R#ZR~RR RRRRS#S>S\S pS}SSSS$ST#T 8TBTRTlTT!TTTT -TTU U,UKUfU}UUU UUUUV/VFV _VmVV VVVVVVWW -0W;WKW"eWWW WWWWX(X=8X6vXSXJYLYeYxY YYYYYYYZ $Z0Z?ZTZgZ {ZZZZ ZZZ [$[>[Y[q[ [[[[[[[[)\N\-]KA^=^^*O_z_`3`T`?Ka`a2abbQd4Te/ee tffffffffffff g g=g Rg ^gkg;tgg ggg gg hh.h#Bh fhsh h h&hh -hhh i%i"7iZiriiiiiiii jj -j:jSj gjsjxjjj+jjjj jj kk k -,k7k=kDkLk Uk ak8nkvkl%l=lUl ]l jlvl |l!llllm'mDmamhmwm~mmmm m m m mmmn nn)n 8nDn Un anmnn!nnn(no#o >o LoYo`o -fo qo ~ooooo -o o -o oo pKp1`p7p1p5pH2qA{qq;Hr!rr hss pt}u}&v*vBwxxyyz #z1z)8z5bzz1H{0z{0{1{(|C7|{|S|,P}2}} }A~A*U, 'EG1yb2R - -׉#2;ASf   Ɗߊ  -< KY pzԌ !0JZ iv -3ʍ;;:vF fp u  ѐؐ'3@#tÑӑ!' .:W`Fi -В -ے     ! /!=!_  +Kœ0QB-$Е5P+G|-ĖOjBoej~pmoޚwN<ƛ?>Ctt`l͝Wמ0ݞ-B Sa6co - 4#PtG=%XUOZʢӢۢ -   !#3W _mv|ʣܣ    0:BH KUh ä ɤ֤ݤ  $5 8 D N\pw -~ ƥ ϥݥ , -4?Q ao~   ̦ ܦ"4 E Q]lu   -§ȧק.?Xi{    ȨҨ ب ,39@ S`c l v - - ʩ Щݩ   ,9S [hov~ -ǪҪ   2 A NZ ]glrīګ  +18 -@ KX h v -     ά ߬  - (1 @ MYb iw    ȭ ֭  ( 7 D P]r Ů׮(#9Qc4}1/*:Z bou# ߰"%H -P[m~ ȱб -  -+ -6A GU[kqx - -òβԲݲ  $1@DJM\` -fqx}5 ɳӳ ! < ]~ - ȴʹӴٴ   .)X1u)iqQ:÷JFINh߸@HvD2E<xeZ9v=6;%5a9Ѽڼ - -  * ?K N\ tϽ<*= -MX^ v    -Ⱦ -Ӿ ޾    $0M?|( -&3Zw  -  2 Cd}" .Nm-?8Mj&:Nc{ - - -4 ? M -Ze)v,36< - %2AJ^sCH-2Ex $6Rm -3H-['     ,%:`otz @7> O\w -   zB GU -d -o zU=4HrH8c=<L6$# , 8BXq" ! .0F!w  - -4J_t{     ?>VBB>4Z(#&)=-#k#+@c++=;:+v ! -'2IYb ht*  # -/:Id -- -   $ -. 9E)e#!E[n( - -z$   -$5N$^$ -! -*#N6h$() '3'[3 3#D'h+6LT)o   (  %4FUk|/ -/8KPVhy "0!Egpw#~ <=Vet    '6EYw , 3? FS[ -dot } /8A PZ!c@L* > JWiz    - -  - -' .8I[Fl-(9J]x   .F Yg| +C[k  - -" +8!Km;$(&>[+u  -&& . -:ET't&#?I_Q  0'Jr  -,@T Zfo x94A<_BBE":h=q@SJ@j >IMub  &* >LSd -w6I[ p~.!:Rf      %9 -JUt -}&(?hn s}   G  ) 7 ES [<g - $ )7Gdw buYt( w" (n2   - !9-J+x    !(0 -P[j }$ -  ! >  -V  -a l  u            - -( -C -SK - - - - - - -@ -, <F   -    -      % 1  6  C oO  @c 9 ,   -*: CO -do~  S V -bmu|  -&1 A N[w ~H]r P#;tD$ =Iat   )-E(s+6 2<L.^41A`|  !#<`~ (">az& ; R^p# 1= Tbf @ !=Qj s  0I\o u"M%/- ]k  ! "Be| -       3 @ W  o {      -    ! ! ! !2!R! o!}!!! !(!! -" "7">"C"]"*w""" """""##:#W#t#######$$ =$I$h$$$$$$-$$$ %% -%;% C%P%X%k% r% %%%% %% %% & & +&9&V&g&}& &#&&& &' ' '*5'`'e' -k'v' ''''' -' ''( ((!( >(J(\( n( |( -(( ( (( ( ( )8)I)&_))))0) -**6*J*Z*`*q*x****b*d!+"++ + ++ + + +,,',/,8,,,, ,, , - !-.-E-V-f-x-----.#."=. `.m.v..... .P../ A/7K//(/////#04(0]0 d0n0u00 00 0 -00 -00 1 -1 -1"181S1 f1t11#1!111 1 - 2 2&2D2a2|2229223 3&3/3>3 [3i3x3 3333 33 -3*3 4 4)4E4U4f44 -4444 4 4=48-5f5 x555&5%5666 6(6$8,858E8 T8&b885888899"9B9T9g9x995:I:]: f:r:y::: :: :: : ; ; %;2;6;P; a;k;!s;;;;;;;<$<,< -3<><U< -k<v< <<< -<< -<< ==+=F=e=l=t=!=="=$=%> 5> C>9P>T>8>8?GQ??+?3??@7@G@L@R@+Z@G@@@@ -A A)A AAbANA -A AABB 2B@B[BxB BBBBB=B)(CRCeCxC,CCC CCD D:DJDSD mDwD!DDDDDDE%E'DElEE#E9E E)FIFXFqFFFFFF& G90GjG}G GGGG;G$$HIHRH[HzHJH&HI I/I6IOI hI uI III II -IIJJ J J#J+J;J TJ`J tJ~JJJ JJ -J/JK K)KBK_K{K KKKKKK0 -L!;L]LpL"LLLL2LK'MsMM M'M M MMN N -NN .N;N -NN -YNdN~NNNNNNAO OOOOO O PP1  +" ' 3`?C:1~0   + +)@Pa ( + +H +A L +Yd kw     %CJ R`y 5Kg ky   K364kz"  $'B W e (+)*&!Qs/*'5]m} ++> Uv  9  J T d ~  !     !!%!6!K!j!!-!""""" +###*# :#F#3L##### # +# # #$ $?$_$x$$$ $$$ $$$%"%@*%k%-r%% %% % % %% & && !& -&9&P&o&&& & & && &&' .':' +P'['p' '' '' +'''''(((((0(B(Z( p(~((( +(#((()))/)7)T)+q))) ) ) +) ) ))**.*G* \*i* x****"*** + -+;+A+F+L+$b+++++ ++ + ++ , , ,+, +C, N, +[,f, v,,, , ,,,,,-&-B-T-[-d- w----- +- ---- . . (.2.;. L. Y. c.o.... . +. .. . // // ;/ G/,S//!////)/ '040 L0 Z0f0k0z00 0 00B0A1D1b1w1 1111 11111122222 +22 222 33.3N3"m3!3!3334 4 '4 14;4K4Z4 b4p4Vx4+4 4(5.5"45W5 m5 y555%5 +5 555 66 +-686 G6U6 ^6l6 6 6666 6 6 66&7,-7 Z7g7l7 +|7 +77777884)8^8p8 +v888 +8 888 8888 99 $9!09R9 a9o9 9999 999 9::;:?R:::::::;4;;;-; ='=0= +@= K=#U=y=-= === ==>>"> ++> 6>B>>>? ?&?/?7?=?S? +k? +v??? +? ? ???? ? @! @/@ 3@A@U@ d@ q@~@@@ @@@ @@ +A AA 0A>A SA_A +rA}AAAAA A!AB! B#BBfB |B +B9BUB=$C<bC=CC"C?DFDXD iDuDyD~D(D,DDDD E +E(E>ESEJgE EEEE F FF6F PF \FjFFFF;FGG +G 8GDG^G pG |GG G G GGG GG H)H;HOHbHsHHHHHHH+I/IGIgInI }I I II I II#I JJ 'J3JHJ_J6wJJJJJ J7J4KRKgKwK~KKK K KKK KL $L0LELKL +RL +]LhL pL}LL LL +LLL LL +LM(M EMQMcM~MM MMMMMN4#NXNuNNNNNN.NE)OoO O OO O OOO O O +P +P!P 2P +>PIPXP gPtPPPPNJQ +QQQQQ QQQRR#8R\RzR RRRRR#RS:S NS[SnSSS$SST T T0TJT^T!vTTTT +TTT T +U)UDU[UoUU UUUUU V$V =VKV^V qV~VVVVVVV +WW)W"CWfWW WWWWWX=X6TXSXJX*YCYVY iYsYYYYYYY ZZZ2ZEZ YZeZ~ZZ ZZZZ[[7[O[ c[o[[[[[[[)\N\ ]K^=k^^*-_X__3`T`?)a`ia2aab/d42e/gee Rf^ffflfsffffffffffg 0g qI^qGq}q>nrrrsstuJv'vNwAx7yQyycz -hzsz,yzMzz<{;{8&|9_|*|E| -}_}#}4"~-W~EF:Mׁăp#ͅwyYw~8g'Ȋ6׊4Me nz  ݋  3@ Z hv. эލ /BV!mɎ؎  - ->IMT:i<K- N  -Zel~ ǒ͒֒(ߒ )7Hӓ /DU\ dp=)ڔ  "4DUds0-  0B*2me&8+_\B8+Sddn^^gJcft}FI9H_̞g,gsp($+=L _m6on* &KrE6|rbbr"դ  -  - * 6 B L -Va(r ĥҥ ֥'= T^ dq  Ѧ$ . >KS"\ - -ɧԧ  "% HTgp ͨ -ը"1@ Wetũ֩    $: Ub -t ˪-CU/f -« -ɫԫ - 3 =GYh -k -v   - Ƭ Ӭݬ    -"- BPf -{ #ӭ    --8AJ h u  خޮ)E [ho -  ˯ گ - -  (4; BOU -\ g q -~ ðϰ  -=Rl ± ɱ ձ $5 >J]t9ֲ߲ .OO7<׳2#Dh -p{;(9@O0_ -˵ѵ &;Sm   ŶҶ۶ * -2 -=HNV\w - -ķǷ׷۷  BK d n|  "%ո!$ -B -MX^bkp v &ι9"/"n c~t h]/ IccM ^R [cP& ,2 kQdmm|M}R>^h\ f8 p$bb*sHJ~9K 3 d=#w{Ze0+ )5s[O~% T%;qw@PWvI9qT; u# 624/ WiOa:h!)5Q>[ *N5TNK~9 R Ezp(aNV1 z|7IsMv& K:_{2hbs-+Y{}\%+3-8UR$T-u n#P O1LB }D8# I?zl4vNo> F;LCL eut E*QYr!qC$ nC_O-8  d \ [AA\CS L_]?KyqEJ1"P1o*w052Dzu  -$L ;mDL'" |\ a -xO(]Ws4`(}9!""pX&nf:0K>!=YNe/v4iz6 nVT@[)U}PMXKfmntO :!e`.U D -z@ZlJ#w#_9jgL{v\TJq e6=i/<,@B/ ! N ?^b#FY9u;cb e P%@ XI -?;E [Axm ., A  r+QtvP^YAg:i9 > 8l 2D/KIn >IB( <rE{ ( j9UZ foBW  -x|@IZ}!ZB(?u" XdE`= i5[=:5d uB%~HH| - Dy_omG 7,.= 6@ HvZCB|)"q&H,3z7tG.Mx-Vs{%. < bKst~4{1/l_yx?FflN -yF!d-tM I - -G#8O&OvJ+scr[F]1o eg*aQ#4k )/VMkgM+~S6}vHJ C ' Shtn0.eT%50!"<' ( -hpFy:L j=5 kj[%&;+o hC?V -STNK)wV5AFJxXjx .}6qWO214<u 37? 2j7,$7|UM4A,U:Z8)x lNQGC Bq7R30oc;" {Xgwga^^30t7z: j~:-s] JGrSM.Z.Ga  o|@ ) k_;)<fk84 1mPR@wi`HY+E8'E&HCA1 Up{Y2>A'y| yR6 Ph 9w`k3<5'`W!6 9N ]S]kT > Q WV -L\2.c=0\rg' lI%dredCjw*^Up]PXJ^S},i+W yGnT? 'hpgQ)raDF>$b\0u;l< 3 3aRa=$3y# `EFKAGRg@f<X(pq"SWZj40 &*b+J7iH  *   bYf&UG$B] &6lH=(`p 8`%6 -, E7 DmB (/*_G^kQ,$F 2 YS RXD?1QSLx Vd'o_zr<Dfic>$*m/O~'V +kkk"k*k 3k ?k8Lkvkkll3l ;l HlTl Zl!{lllllm"m?mFmUm\memymm m m m mmmm mmn n"n 3n ?nKnhn!wnnn(nn#n o *o7o>o +Do Oo \ofouooo +o o +o oooKo1>p7pp1p5pHqAYqq;&r!brr Fsgs Nt[u}v*vBwwxxxyy zz)z5@zvz1&{0X{0{1{({C|Y|S|,.}2[} }A~A~*3^ + Ԃx#˄svGW@20c }- +Ӊ1D ]j|  Ɗ Ίۊ +< )7 NXj~̌܌(8 GTh +x3;܍;TF DN S `nt| ǐ3#Rvˑ 5>FG + +Ē ɒ ג    !!= _ k+wK0Q r $5ӕP GZ-OЗj oeja~̙pKow,<?>!t`t՜`J50   1?6Aox4#.RG%cXUO8 +¢ ͢ ٢ #5 =KTZipy ̣֣ ۣ   & )3Fa  Ĥ    " ,:NU +\g o| Х  + +/ ?M\ lz   Ǧڦ # /;JSd ~  +ѧ 6GY i    ¨ר  + 1>A J T +^ +it  ǩͩԩ۩  +1 9FMT\v +ê Ҫ ު  ,8 ;EJPc~ ث   + )6 F T +b m {    Ǭ Ϭ٬ +   +7@ GUel u    ­ ѭݭ  " .;P cpv(Ǯ/A4[1/¯8 @MSg#x ܰ"& +.9K\cl б + +  + %39IOV +v +ղ "(+:> +DOV[5_ Ƴͳ ճ!  ;\ +|   ȴҴشߴ .61S)iŶq/:JܷF'Nnh@&vgD޹2#<VeZ9T=6̻;5?9u +ʼ +Ӽ ޼  ) ,: R`iqý<˽ ++6< T^fnv ~   + +  ɾվ   M|k(&8Uks{  + !B["s ,Ke-?+Hfo,AYt + + +  + +8C)T,~3 + (<QjC~H 2#Vk 0K_v +&-9'g     +%>MRXg @ -:U] +ep u  z  %3 +B +M XyU=HPH8c<L$a# +  6Of}" ! 0$!Uw } + +(=RY a kx   ?>4BsB>48(m#&)= #I#m+@A++=;+T +'7@ FRfu*   + 'B +`-k +    +  #)Cm##9L(d +z }  +$,$<$a +! +*,6F}$()''9a3#"'Fn+*2)M w  (  $3IZiq/ + ).4FWm~ !#ENU#\ <4CRew    #7Uq ,  $19 +BMR [h}   .8!A@cL*  (5GX a n{  + +  +  '9FJ-(;Vk    $ 7EZr  !9Iav  + +" !)K;e$(&9+S  -&  +#2'Rz&#I=Q  '(P iu +2 8DM Vd}94A<=BzBE:F=q@1Jr@j>iIMu@   *1B +U`r'9 N\v.0D_s      +(3R +[fy(FL Q[ k x G    #1 9<E +  %BUfz @S7t {w n   +-(+V    +.9H [$g  +4  +? J  S ] c j  q          +! +S) + +} + + + + +@ +, +<$ a g -v    +           ! o-  @A 9 ,    +  !- +BM\{  S 4 +@KSZct +  ,9U \fw&;Pm P;RD$ '?R am  )-#(Q+z6 *.<k4>]n #"@Te |("#<K`&   2Nd#~  $(HQVf @ , 5 B NZw 1 7"AdM/ -AG V bn!"'> +\ g s      1 =  R ^  s   +         ! 1!?![!x! !(!!!!!"""*9"d"l" s""""""""#6#P#a#s####$# # $*$G$O$U$[$b$-{$$$ $$ $$ %%%-% 4% B%O%i%|% %% %%% % %%&)&?& U&#v&&& && &&*&"''' +-'8' A'O'k'~'' +' ''' ''' ( (( 0( >( +H(S( s( (( ( ( (8( )&!)H)b)|)0)))) **"*3*:*L*\*m*b*d*"H+k+ + ++ + + ++++++,,, ,, ,, ,,--(-:-T-q----#-"- "./.8.A.P._.d. v.P... /7 /E/(K/t////#/4/0 &00070H0 \0i0 0 +00 +00 0 0 +0001 (161I1#c1!111 1 +1 112#2>2Y2p29222 2223 3+3:3 C3P3W3]3 w33 +3*3 3 3344(4E4 +U4`4o44 4 4=484(5 :5H5\5&v5%5566 6(67778 8&$8K85a888888"899)9:9L99 :: (:4:;:D:K: k:: :: : : : :::; #;-;!5;W;[;k;;;;;;; +;<< +-<8< O<[<r< +<< +<< <<<='=.=6=!H=j="=$=%= = >9>TL>8>8>G?[?+`?3???? @@@+@GH@@@@@ @@ A$ANDA +A AAAA ABB:B IBWBpBBB=B)BC'C:C,NC{CC CCCCC DD /D9D!UDwDDDDDDD'E.EGE#bE9E E)E FF3FKFdF~FFF&F9F,G?G WGdGvGG;G$G HHHW\WnW WWWWWW"W!X 7XCXUXjX}X X#XXXX#X Y">YaYY!YYYYZZ.Z=ZQZiZ7P[S[[I\9>]x](]&^^<]_J_E_i+`;``qa;c;2d;ndd[edeleqeweee eeeeef$fBf[f df qf;ffffffg $g2gBg"Sgvgg gg.gg ghh2hIh,`hhhhh$hhi)i:i Qi^iniiiiiiii-j5j;jUjZjjj pj}jj +jjj j +j j j1j{%k +kkkkkkkl!#lEl[lullll lllmmm 7m Cm Qm^m mm {m +m mmm mmmmn("nKn+bnnnn nn oo/o8o >oKo^oeonooo oo o oooBo:+pBfp7p>pI qGjq}q>0rorrZswsgtVu v'vNwxxyy%z +*z5z,;zMhzz<o{;{8{9!|*[|E||_`}#}4}-~EGF:29;Y߇9@8)'b6Њ' 0< M Zdsϋ   *8JR.d  ƍٍ!/Qdx Ŏ Ҏގ + :+<fK N͑ +'.@S[ bp( ʒ7 +Bb Г &2LU=^) Ɣ Ҕߔ&50D-u  0B2/ebȖ_&+!\MB8S&dznߚ^N^g ctf؜t?FIHE_ggVs2( !/61nhס١ݡ*& 4E>r^bѣb4"  +ĤϤؤ +     +#(4]fv  إ   &3C [gou x$˦  "AG +P[nq + ʧ Чާ" +)2He  +èӨ '6FVk  © Ω ܩ $ +6 AK_zԪ/(X +_js +ī˫ޫ   * +- +8 C O +[f    ɬϬ֬ܬ + ( += HRX_f# ŭ ԭ  +  * 7 DR U_fl)ݮ *1AIP +W b ly  + +¯ ͯۯ   + ) 3 +@Kfu}  ǰ Ѱݰ.A Vbs|   ѱ  6J9^ز O7a<ֳ#* +2=D_;v(Ҵ0!R +Ydz ͵ڵ/ HRYag z  ƶԶ + + +9 +NY +al|  Bʷ  & 0>B F P^"t%!$߸ + + $-2 8 BN]lrz&9"!m c~s g]/ Ic bL ]Q [cO& +2 kPcmm|L|R=]h[ f7 o#ab*sGJ}9J 2 d<"wzZd/* (5rZO~$ S%:qv?OVuI8qT: t" 623/ WhN`:h (4Q=Z)M4TMK}8 R Ezo'aMU1 y{7IsMu% K9^~z1gbr,*Y{}\%+2,8UQ#S,t m#O O0LA}C8" H>zl4uNo> F;KBK eut E)PXq qB# nB^O-7  d [ ZA@[CR L_\>KxpDI1"O1o*v041Czt $K ;mCK'! |\ a xN'\Vs3_'|8 !!pW&ne90J=!=XNd/v4iy6 mUS@Z)U}OMWJflmtN : e`-U C ,y?ZkI"w#^9ifK{v\SJp e5<h/<+?A.  N >^a~#FY~8t;bad P$@ WI +>:D [@xl +-+ @  +q*PtuP]Y@f9h9 >7k 1C.JHn >HA' <rD{ ( i9TY fnBW  +w{@HZ|!YA'?t! XdD`< i5[<94c uB$}GH{ Dy_nlF 6,.= +6? GvYCB{)"p%G+2y7tF-Lw-Urz$- < aJrs}3z0.l_xw?EekN xE!c-sM H , -G#7O%NuI*sbqZE\0n dg)`Q"4j (.VLkfM*~R6|vGI B & Shsm0.dT$5/!";& +( +goEx9K j<4 ji[~%&:+nhC?V RTMK(vV5@FJxWjw.|5qWN104<u 36> 2j6,$6|UL3A+T:Y7)x kMQFB Ap7Q3/ob:! zWgvga^]2/s6z9 j}:,r\IGrSL.Y-F`  o{? ( j^;);ek73 0lPQ?vi`HX*E8'E%HC@0 To{Y1 =A'y| yR5 Pg 8w_j3;4&_V ~5 8M ]S]jS = P WU L[2-c=0[rf' lH%cqedBiw*^Tp]OXJ^S},i+V xGnS? &gogP(r`CE>#a \/u:k; 3 + 2`Ra=$2y" _DFJAFQf@e;X(pp"RVZi3/ &)b+I7hG  +)   bXf%TG#B\ %5lH<(_p 8`$5 +, D6 DmA '.*^F]kP+#E 1 XR QXD>1QRLw Uc&n_yq;Dehb=$)l.N~&V Invalid option "%s" Usage: %s [option ... ] [file ... ] @@ -311,7 +305,7 @@ Make sure a proper setup for your display environment exists.GIMP help browserGIMP is not properly installed for the current user. User installation was skipped because the '--no-interface' flag was used. To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Generate optimum paletteGet Monitor ResolutionGiganticGimprc proceduresGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient:GradientsGradients MenuGrain extractGrain mergeGrayGrayscaleGreenGreen:GridGrid line spacingGrow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_counter-clockwise hue)HSV (clockwise _hue)HTML notation:H_eight:H_elp browser to use:Handle position: %0.6fHard edgeHard lightHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHelp proceduresHex:HighlightsHint for the _docks:Hint for the _toolbox:HintingHinting alters the font outline to produce a crisp bitmap at small sizesHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB color layers.Hue-_Saturation...Hue:HugeI_con & TextI_mageI_mport Path...I_nterpolation:I_nterval:IconIcon & descIcon & textIf available, hints from the font are used but you may prefer to always use the automatic hinterIf enabled, the move tool changes the active layer or path when a layer or path is being picked. This used to be the default behaviour in older versions.If you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.Illegal variable name in environment file %s: %sImageImage + GridImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage ThumbnailsImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage maskImage resolution is out of bounds, using the default resolution instead.Image sizeImage sourceImage typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport paletteImport pathsImported PathIn_kIn_vertIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorIndexed Color ConversionIndexed color layers are always scaled without interpolation. The chosen interpolation type will affect channels and masks only.Info WindowInitial zoom _ratio:Initialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' -InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratioKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard EventsKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine +InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard EventsKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine spacing:Line Width:Line _Style:Line style used for the grid.LinearLinked itemLoadLoad CurvesLoad LevelsLoad Right Color Fr_omLoad curves settings from fileLoad levels settings from fileLoad text from fileLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower Path to _BottomLower channelLower channel to bottomLower layerLower layer to bottomLower pathLower path to bottomM_agnifyM_asterM_ove to Screen...Ma_pMagentaMagenta:MagnifyMake _transparentManage Loadable ModulesMarching _ants speed:Mask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:Max Depth:Maximum _filesize for thumbnailing:Maximum _new image size:Maximum color differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMeasure the rulers and enter their lengths:Median:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMerge vectorsMessage proceduresMessage repeated %d times.Message repeated once.Messages are redirected to stderr.MidtonesMigrate User SettingsMinimal number of _undo levels:MiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMouse WheelMouse Wheel EventsMoveMove AnchorsMove ChannelMove Floating SelectionMove GuideMove Guide: Move LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove ToolMove itemMove layers & selectionsMove selectionMove the current layerMove the current pathMove the selected filter downMove the selected filter upMove to Screen...Move: MultiplyN_umber of colors:Na_vigationNa_vigation WindowNa_vigation preview size:NameName:NavigationNew ChannelNew Channel ColorNew Channel OptionsNew Color from _BGNew Color from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channelNew channel with last valuesNew channel...New color from BGNew color from FGNew gradientNew importNew layerNew layer with last valuesNew layer...New paletteNew path with last valuesNew path...New patternNew vectorsNo brushes available for use with this tool.No filter selectedNo linear gradients found in '%s'No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of _processors to use:Number of grid linesNumber of layers:O_ther...OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset by x/_2, y/2Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the palette selection dialogOpen the pattern selection dialogOpen the selected entryOpening '%s' failed: %sOpening '%s' failed: %sOptions: @@ -363,7 +357,7 @@ did not save indexed colormaps correctly. Substituting grayscale map.YYellowYellow:You are trying to create an image with a size of %s.You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your GIMP installation is incomplete:Your input device settings will be reset to default values the next time you start GIMP.Your keyboard shortcuts will be reset to default values the next time you start GIMP.Your window setup will be reset to default values the next time you start GIMP.Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_All_Anchor Layer_Antialiasing_Arbitrary Rotation..._Artistic_Aspect_Auto_B_BG Color_Background color:_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Bucket Fill_Buffer_By Color_By Color Select_C_Cap style:_Channels_Clear Errors_Clear Undo History_Clone_Close_Close Tab_Clouds_Color Tools_Colors_Configure Color and Opacity..._Context_Context Help_Copy_Copy Named..._Create Image from Template..._Crop & Resize_Crop Image_Curved_Curves..._Dark Check Color_Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Desaturate_Detach Tab_Device Status_Dialogs_Discard Changes_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Ellipse Select_Enable layer & channel previews_Enormous_Equalize_Eraser_FG Color_File_Fill with:_Fit Image in Window_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground color:_Free Select_G_Generic_Gigantic_Gradient_Gradients_Grayscale_Grayscale copy of layer_Grow..._Guides_Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Info Window_Intersect with Selection_Invert_Join style:_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Left Neighbor's Right Endpoint_Levels..._Light Check Color_Light Effects_Lightness:_Line Style_Linear_Linked_Load Left Color From_Lower Channel_Lower Layer_Lower Path_M_Manually_Map_Mask_Mask to Selection_Maximum number of colors:_Measure_Medium_Merge Palettes..._Merge imported paths_Migrate GIMP 2.0 user settings_Misc. Stuff_Miter limit:_Mode_Module Manager_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._Padding Color_Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preferences_Preview_Preview Size_Previous tip_Print Size..._Properties_Quick Mask Active_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Reassign shortcut_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Remove unused colors from final palette_Render_Replace_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Order & Visibility_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Right Endpoint_Right Neighbor's Left Endpoint_Rotate_Saturation:_Save_Save Left Color To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Scale imported paths to fit image_Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Show Image Selection_Show in Toolbox_Sinusoidal_Small_Smudge_Snap distance:_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tool_Tools_Transfer layer's alpha channel_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Visible_Web_Web browser to use:_White (full opacity)_White Balance_Width:_Wrap around_X resolution:_X:_Xtns_Y_Y resolution:_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for icon typeinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetermillimetersminuten/apercentpicapicaspixelpixelspixels/%apixels/%spointpointssecondtips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: gimp Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-19 03:11+0100 +POT-Creation-Date: 2004-12-28 16:58+0100 PO-Revision-Date: 2004-12-03 14:39+0900 Last-Translator: Jan Morén Language-Team: Swedish @@ -416,7 +410,7 @@ Kontrollera att det finns en korrekt konfiguration för din displaymiljö.GIMP hjälpläsareGIMP är inte korrekt installerat för den aktuella användaren. Användarinstallationen hoppades över eftersom "--no-interface"-flaggan användes. Kör GIMP med flaggan "--no-interface" för att utföra användarinstallation.GIMP använder en begränsad mängd minne för att lagra bilddata, så kallad "block-cache". Du bör justera det så det får plats i minnet. Tänk på mängden minne som används av andra körande program.GIMP använder ytterligare en gtkrc-fil så att du kan få den att se annorlunda ut jämfört med andra GTK-program.GIMP versionGIMP kommer varna användaren vid försök att skapa en bild som skulle kräva mer minne än det som specifierats här.GammaGenerelltDetta bestämmer minimalt antal systemfärger att allokera till GIMP; detta gäller endast 8-bitars displayer.Generera optimal palettHämta bildskärmsupplösningGigantiskGimprc-procedurer_GlaseffekterFärgskalaFärgskaleredigerareFärgskaleredigerarmenyFärgskalemapparFärgskalesegmentets vänstra ändpunktsfärgFärgskalesegmentets högra ändpunktsfärgFärgskaleanvändargränssnittFärgskala:FärgskalorFärgskalemenyGrynextraheringGrynsammanfogningGråGråskalaGrönGrön:RutnätMellanrum mellan rutnätslinjerÖka kanalÖka markeringÖka markering medHjälplinjeFästa till hjälplinjer och rutnätHjälplinjeprocedurerHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_moturs nyans)HSV (m_edurs-nyans)HTML-notation:H_öjd:Hjälp_läsare att använda:Handtagsposition: %0.6fHård kantHårt ljusHårdhetHårdhet:HöjdHöjd:HjälpHjälpläsareHjälpsystemHjälp_läsaren startar inteHjälp_läsare hittades inteHjälpprocedurerHex:LjuspunkterHint för _dockningsfönster:Hint för _verktygslådan:HintingHinting ändrar typsnittets kanter för att ge en tydlig bitmap för små storlekarHistogra_mHistogramHistogramskalaHistorikHorisontellHorisontell början på första linjen; detta kan vara negativt.Horisontellt avstånd mellan rutnätslinjer.Hur många nyligen använda filer som ska finnas i filmenyn.NyansNyans-MättnadNyans-Mättnad fungerar endast på RGB-lager.Nyans-_Mättnad...Nyans:JättestorI_kon och text_Bild_Importera slinga...I_nterpolation:I_ntervall:IkonIkon & besk.Ikon & textOm dom finns, används hints från typsnittet men du kan föredra att alltid använda den automatiska hintaren.Om aktiverat ändrar flyttningsverktyget det aktiva lagret eller slingan när ett lager eller en slinga väljs. Detta var det normala beteendet i äldre versioner.Sparar du inte bilden förlorar du ändringar från de sista %s.Om du avslutar GIMP nu kommer dessa ändringar förloras.Otillåtet variabelnamn i miljöfilen %s: %sBildBild + rutnätBildeditorBildinformationBildmenyBildstorlekBildstatusradsformatBildmallarMiniatyrbilderBildtitel och statusradsformatBildtitelformatBildfönsterutseendeBildfönsterBilden har inga synliga lagerBildstorlekBildmaskBildupplösningen är utanför området, använder standardupplösningen istället.BildstorlekBildkällaBildtypBilderBildmenyImportalternativImportera palettImportera slingaImportera slinga från SVGImportera en ny palettImportera palettImportera slingaImporterad slingaBl_äckIn_verteraIn_vertera maskInkrementellIndentering:Indragning av första radenIndex:IndexeradIndexerad palettKonvertering av indexerad färgLager med indexerad färg skalas alltid utan interpolation. Den valda interpolationstypen kommer bara påverka skalning av kanaler och masker.InformationsfönsterInitial zoom_faktor:Initialisera lagermask till:Initierar insticksmodulerInitierar insticksmodul: "%s" -BläckInline pixbufInmatningsenheterInmatningsenheterInmatningsnivåerLägg in ankareAnvänd egen färgkarta; kan vara användbart på 8-bits (256 färger) skärmar.Installationen misslyckades. Kontakta systemadministratör.Installationen lyckades. Klicka på "Fortsätt" för att fortsätta.Direktuppdatering_Intelligent saxIntensitet: %0.3f Opacitet: %0.3fGränssnittInterna GIMP-procedurerInterna procedurerInterpolation:GränssnittSnitt med aktuell markeringSnitt (hårkors)Snitt (punkter)Ogiltig UTF-8Ogiltig UTF-8-data i filen "%s".Ogiltig UTF-8-sträng i XCF-filOgiltig UTF-8-sträng i penselfilen "%s".Ogiltig UTF-8-sträng i färgskalefilen "%s".Ogiltig UTF-8-sträng i palettfilen "%s"Ogiltig UTF_8-sträng i mönsterfilen "%s".Ogiltig teckensekvens i URIOgiltigt kortkommando.Ogiltig bredd eller höjd. Båda måste vara positiva.InverteraInvertera kanalOmvänd markeringKan inte använda invert på indexerade lager.Invertera markeringÄr detta vad du vill göra?Det verkar som att du har använt GIMP 2.0 tidigare.ObjektegenskaperObjektsynlighetJustera:Behåll transparensBehåll ovanpåBehåll aspektförhållande %sBehåll aspektförhållandeBehåll aspektförhållande %sBehåll höjd %sBehåll transparensBehåll bredd %sTangent NerTangent Ner (Alt)Tangent Ner (Control + Alt)Tangent Ner (Control)Tangent Ner (Shift + Alt)Tangent Ner (Shift + Control + Alt)Tangent Ner (Shift + Control)Tangent Ner (Shift)Tangent VänsterTangent Vänster (Alt)Tangent Vänster (Control + Alt)Tangent Vänster (Control)Tangent Vänster (Shift + Alt)Tangent Vänster (Shift + Control + Alt)Tangent Vänster (Shift + Control)Tangent Vänster (Shift)Tangent HögerTangent Höger (Alt)Tangent Höger (Control + Alt)Tangent Höger (Control)Tangent Höger (Shift + Alt)Tangent Höger (Shift + Control + Alt)Tangent Höger (Shift + Control)Tangent Höger (Shift)Tangent UppTangent Upp (Alt)Tangent Upp (Control + Alt)Tangent Upp (Control)Tangent Upp (Shift + Alt)Tangent Upp (Shift + Control + Alt)Tangent Upp (Shift + Control)Tangent Upp (Shift)Snabbtangenter kan dynamiskt defineras om i GIMP. 'menurc' är en dump av dina inställningar så att de sparas till nästa session. Du kan editera denna fil om du vill, men det är mycket enklare att ändra det inifrån GIMP. Om du tar bort denna fil så återställs standardvärdena.TangentbordTangentbordshändelserKortkommandonVTH_Vänstra ändpunktens färg...LiggandeStorStor (256×256)Större förhandsvisningarSenaste fel:LagerLagret "%s" har ingen alfakanal. Lagret placerades ovanför det.LagerattributSt_orlek på lagergräns...Lagrets fyllnadstypLagermask till markeringLagervalLagerstorlekLager_lägeLager_namn:Lagret kan inte sänkas mer.Lagret kan inte höjas mer.Lagret är redan underst.Lagret är redan överst.Lagerstorlek som bildenLager till _bottenLagerstorlek som _bilden_Lager till toppenLagrets _alfakanalLagerLagermenyAlternativ för lagersammanfogningVänstra ändpunktens färgVänsterjusteradLängd:Låt GIMP försöka återskapa din senast sparade session vid varje uppstart.NivåerKan inte justera nivåer för indexerade lager.Ljus rutfärgGör endast ljusareLinjeRad +BläckInline pixbufInmatningsenheterInmatningsenheterInmatningsnivåerLägg in ankareAnvänd egen färgkarta; kan vara användbart på 8-bits (256 färger) skärmar.Installationen misslyckades. Kontakta systemadministratör.Installationen lyckades. Klicka på "Fortsätt" för att fortsätta.Direktuppdatering_Intelligent saxIntensitet: %0.3f Opacitet: %0.3fGränssnittInterna GIMP-procedurerInterna procedurerInterpolation:GränssnittSnitt med aktuell markeringSnitt (hårkors)Snitt (punkter)Ogiltig UTF-8Ogiltig UTF-8-data i filen "%s".Ogiltig UTF-8-sträng i XCF-filOgiltig UTF-8-sträng i penselfilen "%s".Ogiltig UTF-8-sträng i färgskalefilen "%s".Ogiltig UTF-8-sträng i palettfilen "%s"Ogiltig UTF_8-sträng i mönsterfilen "%s".Ogiltig teckensekvens i URIOgiltigt kortkommando.Ogiltig bredd eller höjd. Båda måste vara positiva.InverteraInvertera kanalOmvänd markeringKan inte använda invert på indexerade lager.Invertera markeringÄr detta vad du vill göra?Det verkar som att du har använt GIMP 2.0 tidigare.ObjektegenskaperObjektsynlighetJustera:Behåll transparensBehåll ovanpåBehåll aspektförhållande %sBehåll aspektförhållande %sBehåll höjd %sBehåll transparensBehåll bredd %sTangent NerTangent Ner (Alt)Tangent Ner (Control + Alt)Tangent Ner (Control)Tangent Ner (Shift + Alt)Tangent Ner (Shift + Control + Alt)Tangent Ner (Shift + Control)Tangent Ner (Shift)Tangent VänsterTangent Vänster (Alt)Tangent Vänster (Control + Alt)Tangent Vänster (Control)Tangent Vänster (Shift + Alt)Tangent Vänster (Shift + Control + Alt)Tangent Vänster (Shift + Control)Tangent Vänster (Shift)Tangent HögerTangent Höger (Alt)Tangent Höger (Control + Alt)Tangent Höger (Control)Tangent Höger (Shift + Alt)Tangent Höger (Shift + Control + Alt)Tangent Höger (Shift + Control)Tangent Höger (Shift)Tangent UppTangent Upp (Alt)Tangent Upp (Control + Alt)Tangent Upp (Control)Tangent Upp (Shift + Alt)Tangent Upp (Shift + Control + Alt)Tangent Upp (Shift + Control)Tangent Upp (Shift)Snabbtangenter kan dynamiskt defineras om i GIMP. 'menurc' är en dump av dina inställningar så att de sparas till nästa session. Du kan editera denna fil om du vill, men det är mycket enklare att ändra det inifrån GIMP. Om du tar bort denna fil så återställs standardvärdena.TangentbordTangentbordshändelserKortkommandonVTH_Vänstra ändpunktens färg...LiggandeStorStor (256×256)Större förhandsvisningarSenaste fel:LagerLagret "%s" har ingen alfakanal. Lagret placerades ovanför det.LagerattributSt_orlek på lagergräns...Lagrets fyllnadstypLagermask till markeringLagervalLagerstorlekLager_lägeLager_namn:Lagret kan inte sänkas mer.Lagret kan inte höjas mer.Lagret är redan underst.Lagret är redan överst.Lagerstorlek som bildenLager till _bottenLagerstorlek som _bilden_Lager till toppenLagrets _alfakanalLagerLagermenyAlternativ för lagersammanfogningVänstra ändpunktens färgVänsterjusteradLängd:Låt GIMP försöka återskapa din senast sparade session vid varje uppstart.NivåerKan inte justera nivåer för indexerade lager.Ljus rutfärgGör endast ljusareLinjeRad Mellanrum:Linjebredd:Linje_stil:Linjestil för rutnätet.LinjärLänkat objektLäs inLäs in kurvorLäs in nivåer_Läs in höger färg frånLäs kurvinställningar från filLäs nivåinställningar från filLäs in text från filLäser in förhandsvisning...Placering:LogaritmiskLånga streckLetar efter datafilerSänk kanalSänk kanal till bottenFlytta kanal _understSänk lagerSänk lager till bottenSänk slingaFlytta slingan understFlytta slingan _understSänk kanalFlytta kanal understSänk lagerFlytta lager nederstSänk slingaFlytta slingan understF_örstora_HuvudFl_ytta till skärm..._MappaMagentaMagenta:FörstoraGör _transparentHantera inläsningsbara modulerVandrande _myrors hastighet:Maskopacitet:_Maskera markerade områdenMaskera _omarkerade områdenMatris:Max djup:Maximal _filstorlek för miniatyrbilder:Maximal _ny bildstorlek:Maximal färgskillnadMaximalt ångra_minne:Medel:MätMät avstånd och vinklarMät avstånd och vinklarMät linjalerna och mata in dess längder:Median:MellanMellanstreckSammanfoga _nedåtSammanfoga nedåtSammanfoga lagerSammanfoga palettSammanfoga synliga lagerSammanfoga synliga slingorSammanfoga _synliga lager...Sammanfoga _synliga lager...Sammanfoga _synliga lagerSammanfoga lagerSammanfoga palettSammanfoga vektorerMeddelandeprocedurerMeddelande upprepat %d gånger.Meddelande upprepat en gång.Meddelanden omdirigeras till stderr.MittentonerFlytta användarinställningarMinsta antal _ångranivåer:DiverseHörnLägeLäge:Modifiera markerad färgModifiera markerade intervallets färgnivåerModifiera alla färgerÄndra radmellanrumModulmapparModulhanterareModulsökvägModulerMusmarkörerMushjulMushjulshändelserFlyttaFlytta ankareFlytta kanalFlytta flytande markeringFlytta hjälplinjeFlytta hjälplinje: Flytta lagerFlytta lagermaskFlytta slingaFlytta markeringFlytta textlagerFlyttaverktygFlytta objektFlytta lager och markeringarFlytta markeringFlytta aktuellt lagerFlytta aktuell slingaFlytta det markerade filtret nedFlytta det markerade filtret uppåtFlytta till skärm...Flytta: Multiplicera_Antal färger:Na_vigationNa_vigeringsfönsterFörhandsvisningsstorlek för _navigering:NamnNamn:NavigationNy kanalNy kanalfärgAlternativ för nya kanalerNy färg från _BGNy färg från _FGNy bildNytt lagerNy slingaAlternativ för ny slingaNy mallNy penselny kanalNy kanal med idigare värdenNy kanal...Ny färg från BGNy färg från FGNy färgskalaNy importnytt lagerNytt lager med tidigare värdenNytt lager...Ny palettNy slinga med tidigare värdenNy slinga...Nytt mönsterNya vektorerDet finns inga penslar tillgängliga för detta verktyg.Inget filter markeratInga linjära färgskalor funna i "%s"Inte längre tillgängligInga slingor funna i "%s"Inga slingor funna i buffertenInga mönster tillgängliga för denna åtgärd.Ingen markeringIngen markering att stryka.Inga miniatyrbilderInte uppställdIngenIngen (snabbast)NormalNormal (128×128)Normala prickarNormalt fönsterInte en vanlig filDet finns inte tillräckligt många synliga lager för att sammanfoga. Det måste vara minst två.Det finns inte tillräckligt många synliga slingor för att sammanfoga. Det måste vara minst två.Antalet _processorer att använda:Antal rutnätslinjerAntal lager:A_nnat...OffsetOffsetkanalOffset ritytaOffsetlagerOffsetlagermaskOffset med x/_2, y/2Offset:På diskPå flerprocessormaskiner, om GIMP är kompilerad med --enable-mp, så bestämmer detta hur många processorer GIMP skall använda samtidigt.Endast i minnet_Nytt lager...OpacitetOpacitet:ÖppnaÖppna bildÖppna bild som lagerÖppna platsÖppna textfil (UTF-8)Öppna _plats...Öppna _senasteÖppna bilddialogÖppna penselvalsdialogenÖppna typsnittsvalsdialogenÖppna gradientvalsdialogenÖppna palettvalsdialogenÖppna mönstervalsdialogenÖppna den valda postenÖppnande av "%s" misslyckades: %sÖppnande av "%s" misslyckades: %sAlternativ: diff -uraN gimp-2.2.0/po/sv.po gimp-2.2.1/po/sv.po --- gimp-2.2.0/po/sv.po 2004-12-19 03:11:47.000000000 +0100 +++ gimp-2.2.1/po/sv.po 2004-12-28 16:58:38.000000000 +0100 @@ -4,13 +4,13 @@ # Christian Rose , 2000, 2001, 2002, 2003. # Jan Morén , 2003. # -# $Id: sv.po,v 1.226 2004/12/03 05:39:27 JanneM Exp $ +# $Id: sv.po,v 1.227 2004/12/19 02:37:08 neo Exp $ # msgid "" msgstr "" "Project-Id-Version: gimp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-19 03:11+0100\n" +"POT-Creation-Date: 2004-12-28 16:58+0100\n" "PO-Revision-Date: 2004-12-03 14:39+0900\n" "Last-Translator: Jan Morén \n" "Language-Team: Swedish \n" @@ -1030,11 +1030,11 @@ msgid "Remove dangling entries" msgstr "Ta bort hängande poster" -#: app/actions/documents-commands.c:252 app/actions/file-commands.c:163 +#: app/actions/documents-commands.c:251 app/actions/file-commands.c:163 #: app/dialogs/file-open-dialog.c:198 app/dialogs/file-open-dialog.c:249 #: app/dialogs/file-open-location-dialog.c:193 -#: app/display/gimpdisplayshell-dnd.c:332 app/widgets/gimplayertreeview.c:802 -#: app/widgets/gimptoolbox-dnd.c:123 +#: app/display/gimpdisplayshell-dnd.c:334 app/widgets/gimplayertreeview.c:804 +#: app/widgets/gimptoolbox-dnd.c:125 #, c-format msgid "" "Opening '%s' failed:\n" @@ -1542,115 +1542,115 @@ msgid "Zoom all" msgstr "Zooma allt" -#: app/actions/gradient-editor-actions.c:582 +#: app/actions/gradient-editor-actions.c:589 msgid "_Blending Function for Segment" msgstr "_Färgtoningstyp för segment" -#: app/actions/gradient-editor-actions.c:584 +#: app/actions/gradient-editor-actions.c:591 msgid "Coloring _Type for Segment" msgstr "Färgningstyp för segment" -#: app/actions/gradient-editor-actions.c:587 +#: app/actions/gradient-editor-actions.c:594 msgid "_Flip Segment" msgstr "_Vänd på segment" -#: app/actions/gradient-editor-actions.c:589 +#: app/actions/gradient-editor-actions.c:596 msgid "_Replicate Segment..." msgstr "_Replikera segment..." -#: app/actions/gradient-editor-actions.c:591 +#: app/actions/gradient-editor-actions.c:598 msgid "Split Segment at _Midpoint" msgstr "_Dela segment vid mittpunkt" -#: app/actions/gradient-editor-actions.c:593 +#: app/actions/gradient-editor-actions.c:600 msgid "Split Segment _Uniformly..." msgstr "Dela segment _uniformt..." -#: app/actions/gradient-editor-actions.c:595 +#: app/actions/gradient-editor-actions.c:602 msgid "_Delete Segment" msgstr "_Ta bort segment" -#: app/actions/gradient-editor-actions.c:597 +#: app/actions/gradient-editor-actions.c:604 msgid "Re-_center Segment's Midpoint" msgstr "_Centrera segmentets mittpunkt" -#: app/actions/gradient-editor-actions.c:599 +#: app/actions/gradient-editor-actions.c:606 msgid "Re-distribute _Handles in Segment" msgstr "_Återfördela handtagen i segment" -#: app/actions/gradient-editor-actions.c:604 +#: app/actions/gradient-editor-actions.c:611 msgid "_Blending Function for Selection" msgstr "_Färgtoningsfunktion för markering" -#: app/actions/gradient-editor-actions.c:606 +#: app/actions/gradient-editor-actions.c:613 msgid "Coloring _Type for Selection" msgstr "Färgnings_typ för markering" -#: app/actions/gradient-editor-actions.c:609 +#: app/actions/gradient-editor-actions.c:616 msgid "_Flip Selection" msgstr "_Vänd markering" -#: app/actions/gradient-editor-actions.c:611 +#: app/actions/gradient-editor-actions.c:618 msgid "_Replicate Selection..." msgstr "_Replikera markering..." -#: app/actions/gradient-editor-actions.c:613 +#: app/actions/gradient-editor-actions.c:620 msgid "Split Segments at _Midpoints" msgstr "_Dela segment vid mittpunkter" -#: app/actions/gradient-editor-actions.c:615 +#: app/actions/gradient-editor-actions.c:622 msgid "Split Segments _Uniformly..." msgstr "Dela segmenten _uniformt..." -#: app/actions/gradient-editor-actions.c:617 +#: app/actions/gradient-editor-actions.c:624 msgid "_Delete Selection" msgstr "_Ta bort markering" -#: app/actions/gradient-editor-actions.c:619 +#: app/actions/gradient-editor-actions.c:626 msgid "Re-_center Midpoints in Selection" msgstr "_Centrera mittpunkter i markering" -#: app/actions/gradient-editor-actions.c:621 +#: app/actions/gradient-editor-actions.c:628 msgid "Re-distribute _Handles in Selection" msgstr "_Återfördela handtagen i markering" -#: app/actions/gradient-editor-commands.c:84 +#: app/actions/gradient-editor-commands.c:85 msgid "Left Endpoint Color" msgstr "Vänstra ändpunktens färg" -#: app/actions/gradient-editor-commands.c:86 +#: app/actions/gradient-editor-commands.c:87 msgid "Gradient Segment's Left Endpoint Color" msgstr "Färgskalesegmentets vänstra ändpunktsfärg" -#: app/actions/gradient-editor-commands.c:186 +#: app/actions/gradient-editor-commands.c:189 msgid "Right Endpoint Color" msgstr "Högra ändpunktens färg" -#: app/actions/gradient-editor-commands.c:188 +#: app/actions/gradient-editor-commands.c:191 msgid "Gradient Segment's Right Endpoint Color" msgstr "Färgskalesegmentets högra ändpunktsfärg" -#: app/actions/gradient-editor-commands.c:353 +#: app/actions/gradient-editor-commands.c:358 msgid "Replicate Segment" msgstr "Replikera segment" -#: app/actions/gradient-editor-commands.c:354 +#: app/actions/gradient-editor-commands.c:359 msgid "Replicate Gradient Segment" msgstr "Replikera färgskalesegment" -#: app/actions/gradient-editor-commands.c:358 +#: app/actions/gradient-editor-commands.c:363 msgid "Replicate Selection" msgstr "Replikera markering" -#: app/actions/gradient-editor-commands.c:359 +#: app/actions/gradient-editor-commands.c:364 msgid "Replicate Gradient Selection" msgstr "Replikera markering av färgskala" -#: app/actions/gradient-editor-commands.c:371 +#: app/actions/gradient-editor-commands.c:376 msgid "Replicate" msgstr "Replikera" -#: app/actions/gradient-editor-commands.c:386 +#: app/actions/gradient-editor-commands.c:391 msgid "" "Select the number of times\n" "to replicate the selected segment." @@ -1658,7 +1658,7 @@ "Välj antalet gånger det\n" "markerade segmentet ska replikeras." -#: app/actions/gradient-editor-commands.c:389 +#: app/actions/gradient-editor-commands.c:394 msgid "" "Select the number of times\n" "to replicate the selection." @@ -1666,27 +1666,27 @@ "Välj antalet gånger som\n" "markeringen ska replikeras." -#: app/actions/gradient-editor-commands.c:444 +#: app/actions/gradient-editor-commands.c:452 msgid "Split Segment Uniformly" msgstr "Dela segment uniformt" -#: app/actions/gradient-editor-commands.c:445 +#: app/actions/gradient-editor-commands.c:453 msgid "Split Gradient Segment Uniformly" msgstr "Dela färgskalesegment uniformt" -#: app/actions/gradient-editor-commands.c:449 +#: app/actions/gradient-editor-commands.c:457 msgid "Split Segments Uniformly" msgstr "Dela segmenten uniformt" -#: app/actions/gradient-editor-commands.c:450 +#: app/actions/gradient-editor-commands.c:458 msgid "Split Gradient Segments Uniformly" msgstr "Dela färgskalesegmenten uniformt" -#: app/actions/gradient-editor-commands.c:462 +#: app/actions/gradient-editor-commands.c:470 msgid "Split" msgstr "Dela" -#: app/actions/gradient-editor-commands.c:478 +#: app/actions/gradient-editor-commands.c:486 msgid "" "Select the number of uniform parts\n" "in which to split the selected segment." @@ -1694,7 +1694,7 @@ "Välj antalet uniforma delar som du\n" "vill dela det markerade segmentet i." -#: app/actions/gradient-editor-commands.c:481 +#: app/actions/gradient-editor-commands.c:489 msgid "" "Select the number of uniform parts\n" "in which to split the segments in the selection." @@ -2131,7 +2131,7 @@ #: app/actions/layers-commands.c:232 app/actions/layers-commands.c:234 #: app/actions/layers-commands.c:291 app/actions/layers-commands.c:295 -#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:840 +#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:842 msgid "New Layer" msgstr "Nytt lager" @@ -2143,7 +2143,7 @@ msgid "Set Layer Boundary Size" msgstr "Ställ in storlek på lagergräns" -#: app/actions/layers-commands.c:512 app/core/gimplayer.c:255 +#: app/actions/layers-commands.c:512 app/core/gimplayer.c:253 msgid "Scale Layer" msgstr "Skala om lager" @@ -2155,7 +2155,7 @@ msgid "Layer Mask to Selection" msgstr "Lagermask till markering" -#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1085 +#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1066 #: app/dialogs/layer-add-mask-dialog.c:62 msgid "Add Layer Mask" msgstr "Lägg till lagermask" @@ -2699,7 +2699,7 @@ msgstr "Öppna textfil (UTF-8)" #: app/actions/text-editor-commands.c:132 app/config/gimpconfig-utils.c:552 -#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:393 +#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:396 #: app/core/gimpbrushgenerated.c:601 app/core/gimpbrushpipe.c:338 #: app/core/gimpgradient-load.c:63 app/core/gimppalette.c:360 #: app/core/gimppattern.c:328 app/tools/gimpimagemaptool.c:608 @@ -4527,7 +4527,7 @@ msgid "FG to Transparent" msgstr "FG till Transparent" -#: app/core/gimp-gui.c:148 +#: app/core/gimp-gui.c:153 msgid "GIMP" msgstr "GIMP" @@ -4559,39 +4559,54 @@ msgid "Modules" msgstr "Moduler" -#: app/core/gimpbrush.c:531 +#: app/core/gimpbrush.c:534 #, c-format msgid "Could not read %d bytes from '%s': %s" msgstr "Kunde inte läsa %d byte från \"%s\": %s" -#: app/core/gimpbrush.c:566 +#: app/core/gimpbrush.c:554 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Width = 0." +msgstr "Ödesdigert tolkningsfel i penselfil \"%s\": Okänt djup %d." + +#: app/core/gimpbrush.c:563 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Height = 0." +msgstr "Ödesdigert tolkningsfel i penselfil \"%s\": Filen är trasig." + +#: app/core/gimpbrush.c:572 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Bytes = 0." +msgstr "Ödesdigert tolkningsfel i penselfil \"%s\": Filen är trasig." + +#: app/core/gimpbrush.c:596 #, c-format msgid "Fatal parse error in brush file '%s': Unknown depth %d." msgstr "Ödesdigert tolkningsfel i penselfil \"%s\": Okänt djup %d." -#: app/core/gimpbrush.c:579 +#: app/core/gimpbrush.c:609 #, c-format msgid "Fatal parse error in brush file '%s': Unknown version %d." msgstr "Ödesdigert tolkningsfel i penselfil \"%s\": Okänd version %d." -#: app/core/gimpbrush.c:595 app/core/gimpbrush.c:715 +#: app/core/gimpbrush.c:625 app/core/gimpbrush.c:745 #, c-format msgid "Fatal parse error in brush file '%s': File appears truncated." msgstr "Ödesdigert tolkningsfel i penselfil \"%s\": Filen verkar avhuggen." -#: app/core/gimpbrush.c:603 app/core/gimpbrushgenerated.c:648 +#: app/core/gimpbrush.c:633 app/core/gimpbrushgenerated.c:648 #: app/core/gimpbrushpipe.c:354 #, c-format msgid "Invalid UTF-8 string in brush file '%s'." msgstr "Ogiltig UTF-8-sträng i penselfilen \"%s\"." -#: app/core/gimpbrush.c:610 app/core/gimpcontext.c:1299 -#: app/core/gimpitem.c:479 app/core/gimppattern.c:400 +#: app/core/gimpbrush.c:640 app/core/gimpcontext.c:1299 +#: app/core/gimpitem.c:480 app/core/gimppattern.c:400 #: app/dialogs/template-options-dialog.c:80 app/tools/gimpvectortool.c:339 msgid "Unnamed" msgstr "Namnlös" -#: app/core/gimpbrush.c:704 +#: app/core/gimpbrush.c:734 #, c-format msgid "" "Fatal parse error in brush file '%s': Unsupported brush depth %d\n" @@ -4756,11 +4771,11 @@ "%s" #: app/core/gimpdatafactory.c:411 app/core/gimpdatafactory.c:414 -#: app/core/gimpitem.c:274 app/core/gimpitem.c:277 +#: app/core/gimpitem.c:275 app/core/gimpitem.c:278 msgid "copy" msgstr "kopia" -#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:286 +#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:287 #, c-format msgid "%s copy" msgstr "%s-kopia" @@ -4823,7 +4838,7 @@ msgid "Rotate" msgstr "Rotera" -#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:259 +#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:257 msgid "Transform Layer" msgstr "Transformera lager" @@ -5184,7 +5199,7 @@ #. pixel size #: app/core/gimpimagefile.c:624 app/dialogs/info-window.c:552 -#: app/widgets/gimpsizebox.c:552 app/widgets/gimptemplateeditor.c:637 +#: app/widgets/gimpsizebox.c:429 app/widgets/gimptemplateeditor.c:637 #: app/widgets/gimptemplateeditor.c:673 #, c-format msgid "%d x %d pixels" @@ -5204,15 +5219,15 @@ msgid "Could not open thumbnail '%s': %s" msgstr "Kunde inte öppna miniatyrbild \"%s\": %s" -#: app/core/gimpitem.c:1096 +#: app/core/gimpitem.c:1103 msgid "Attach Parasite" msgstr "Koppla parasit" -#: app/core/gimpitem.c:1106 +#: app/core/gimpitem.c:1113 msgid "Attach Parasite to Item" msgstr "Koppla parasit till objekt" -#: app/core/gimpitem.c:1145 app/core/gimpitem.c:1152 +#: app/core/gimpitem.c:1152 app/core/gimpitem.c:1159 msgid "Remove Parasite from Item" msgstr "Ta bort parasit från objekt" @@ -5240,37 +5255,37 @@ msgid "Floating Selection to Layer" msgstr "Flytande markering till lager" -#: app/core/gimplayer.c:252 app/pdb/internal_procs.c:152 +#: app/core/gimplayer.c:250 app/pdb/internal_procs.c:152 msgid "Layer" msgstr "Lager" -#: app/core/gimplayer.c:253 +#: app/core/gimplayer.c:251 msgid "Rename Layer" msgstr "Byt namn på lager" -#: app/core/gimplayer.c:254 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 +#: app/core/gimplayer.c:252 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 msgid "Move Layer" msgstr "Flytta lager" -#: app/core/gimplayer.c:256 +#: app/core/gimplayer.c:254 msgid "Resize Layer" msgstr "Ändra storlek på lager" -#: app/core/gimplayer.c:257 +#: app/core/gimplayer.c:255 msgid "Flip Layer" msgstr "Vänd lager" -#: app/core/gimplayer.c:258 +#: app/core/gimplayer.c:256 msgid "Rotate Layer" msgstr "Rotera lager" -#: app/core/gimplayer.c:341 app/core/gimplayer.c:1129 +#: app/core/gimplayer.c:339 app/core/gimplayer.c:1110 #: app/core/gimplayermask.c:236 #, c-format msgid "%s mask" msgstr "%s-mask" -#: app/core/gimplayer.c:387 +#: app/core/gimplayer.c:385 #, c-format msgid "" "Floating Selection\n" @@ -5279,41 +5294,41 @@ "Flytande markering\n" "(%s)" -#: app/core/gimplayer.c:1055 +#: app/core/gimplayer.c:1036 msgid "Cannot add layer mask to layer which is not part of an image." msgstr "Kan inte lägga till lagermask till ett lager som inte tillhör en bild." -#: app/core/gimplayer.c:1062 +#: app/core/gimplayer.c:1043 msgid "Unable to add a layer mask since the layer already has one." msgstr "Kan inte lägga till lagermask eftersom lagret redan har en." -#: app/core/gimplayer.c:1069 +#: app/core/gimplayer.c:1050 msgid "Cannot add layer mask to a layer with no alpha channel." msgstr "Kan inte lägga till lagermask till ett lager utan alfakanal." -#: app/core/gimplayer.c:1079 +#: app/core/gimplayer.c:1060 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "" "Kan inte lägga till lagermask som har andra dimensioner än det specifierade " "lagret." -#: app/core/gimplayer.c:1183 +#: app/core/gimplayer.c:1164 msgid "Transfer Alpha to Mask" msgstr "Överför alfa till mask" -#: app/core/gimplayer.c:1343 +#: app/core/gimplayer.c:1324 msgid "Apply Layer Mask" msgstr "Applicera lagermask" -#: app/core/gimplayer.c:1344 +#: app/core/gimplayer.c:1325 msgid "Delete Layer Mask" msgstr "Ta bort lagermask" -#: app/core/gimplayer.c:1445 +#: app/core/gimplayer.c:1426 msgid "Add Alpha Channel" msgstr "Lägg till alfakanal" -#: app/core/gimplayer.c:1467 +#: app/core/gimplayer.c:1448 msgid "Layer to Image Size" msgstr "Lagerstorlek som bilden" @@ -6762,28 +6777,28 @@ msgstr "Utskriftsstorlek" #. the image size labels -#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:241 +#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:222 #: app/widgets/gimptemplateeditor.c:236 msgid "_Width:" msgstr "_Bredd:" -#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:248 +#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:225 #: app/widgets/gimptemplateeditor.c:243 msgid "H_eight:" msgstr "H_öjd:" #. the resolution labels -#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:338 +#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:273 #: app/widgets/gimptemplateeditor.c:363 msgid "_X resolution:" msgstr "_X upplösning:" -#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:345 +#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:276 #: app/widgets/gimptemplateeditor.c:370 msgid "_Y resolution:" msgstr "_Y upplösning:" -#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:357 +#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:269 #: app/widgets/gimptemplateeditor.c:383 #, c-format msgid "pixels/%a" @@ -7399,11 +7414,11 @@ msgid "%d minutes" msgstr "%d minuter" -#: app/display/gimpdisplayshell-dnd.c:96 +#: app/display/gimpdisplayshell-dnd.c:98 msgid "Drop New Layer" msgstr "Släpp nytt lager" -#: app/display/gimpdisplayshell-dnd.c:140 +#: app/display/gimpdisplayshell-dnd.c:142 msgid "Drop New Path" msgstr "Släpp ny slinga" @@ -8862,12 +8877,12 @@ msgstr "_Pensel" #: app/tools/gimppaintoptions-gui.c:103 app/widgets/gimpbrushselect.c:201 -#: app/widgets/gimplayertreeview.c:330 +#: app/widgets/gimplayertreeview.c:332 msgid "Opacity:" msgstr "Opacitet:" #: app/tools/gimppaintoptions-gui.c:108 app/tools/gimpselectionoptions.c:374 -#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:323 +#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:325 msgid "Mode:" msgstr "Läge:" @@ -10263,24 +10278,24 @@ msgid "Set Item Exclusive Linked" msgstr "Sätt objekt som ensamt länkad" -#: app/widgets/gimplayertreeview.c:250 +#: app/widgets/gimplayertreeview.c:252 msgid "Reorder Layer" msgstr "Ändra ordning på lager" -#: app/widgets/gimplayertreeview.c:311 +#: app/widgets/gimplayertreeview.c:313 msgid "Keep transparency" msgstr "Behåll transparens" -#: app/widgets/gimplayertreeview.c:846 +#: app/widgets/gimplayertreeview.c:848 msgid "Empty Layer" msgstr "Tomt lager" -#: app/widgets/gimpmessagebox.c:458 +#: app/widgets/gimpmessagebox.c:460 #, c-format msgid "Message repeated %d times." msgstr "Meddelande upprepat %d gånger." -#: app/widgets/gimpmessagebox.c:460 +#: app/widgets/gimpmessagebox.c:462 msgid "Message repeated once." msgstr "Meddelande upprepat en gång." @@ -10312,16 +10327,12 @@ msgid "Invalid UTF-8" msgstr "Ogiltig UTF-8" -#: app/widgets/gimpsizebox.c:290 -msgid "Keep aspect ratio" -msgstr "Behåll aspektförhållande" - -#: app/widgets/gimpsizebox.c:574 +#: app/widgets/gimpsizebox.c:451 #, c-format msgid "%d x %d dpi" msgstr "%d × %d dpi" -#: app/widgets/gimpsizebox.c:578 +#: app/widgets/gimpsizebox.c:455 #, c-format msgid "%d dpi" msgstr "%d dpi" @@ -10765,6 +10776,9 @@ msgid "Image Editor" msgstr "Bildeditor" +#~ msgid "Keep aspect ratio" +#~ msgstr "Behåll aspektförhållande" + #~ msgid "Y:" #~ msgstr "Y:" diff -uraN gimp-2.2.0/po/tr.gmo gimp-2.2.1/po/tr.gmo --- gimp-2.2.0/po/tr.gmo 2004-12-19 03:11:56.000000000 +0100 +++ gimp-2.2.1/po/tr.gmo 2004-12-28 16:58:44.000000000 +0100 @@ -165,7 +165,7 @@ did not save indexed colormaps correctly. Substituting grayscale map.YellowYellow:Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom inZoom in & outZoom outZoom:_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Anchor Layer_Antialiasing_Artistic_Aspect_Auto_B_BG Color_Blur_Brightness:_Brush_Brushes_C_Channels_Clear Errors_Clear Undo History_Close Tab_Clouds_Colors_Context_Copy_Copy Named..._Crop Image_Curved_Default Colors_Delete Brush_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Selection_Desaturate_Detach Tab_Device Status_Dialogs_Discard Text Information_Distorts_Duplicate_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Pattern..._Enormous_Equalize_FG Color_File_Flatten Image_Font_Fonts_G_Gigantic_Gradient_Gradients_Grayscale_Guides_Hardness_Help_Horizontal:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Intersect with Selection_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Light Effects_Lightness:_Linear_Linked_Lower Channel_Lower Layer_M_Manually_Map_Mask_Mask to Selection_Medium_Merge Palettes..._Mode_Module Manager_Name:_Nature_New Brush_New Channel_New Channel..._New Gradient_New Layer_New Layer..._New Palette_New Pattern_New View_New..._Noise_Offset..._Opacity_Open Image_Open..._Palette_Paste_Paste Buffer_Paths_Pattern_Preferences_Preview_Preview Size_Print Size..._Properties_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Views_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Patterns_Render_Right Endpoint_Right Neighbor's Left Endpoint_Saturation:_Save_Scale Image..._Scale Layer..._Selection_Selection Editor_Shape_Sinusoidal_Small_Subtract from Selection_Tab Style_Templates_Text_Tiny_Tip of the Day_Tool_Transform_Undo_Undo %s_Vertical:_Visible_Web_White Balance_X:_Xtns_Ycolorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'grayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%s' for token %smillimetermillimeterspercentpicapicaspixelpixelspixels/%apixels/%spointpointstranslator-creditsvalue for token %s is not a valid UTF-8 stringProject-Id-Version: gimp.gimp-2-0 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-19 03:11+0100 +POT-Creation-Date: 2004-12-28 16:58+0100 PO-Revision-Date: 2004-07-15 17:40+0300 Last-Translator: Görkem Çetin Language-Team: Türkçe diff -uraN gimp-2.2.0/po/tr.po gimp-2.2.1/po/tr.po --- gimp-2.2.0/po/tr.po 2004-12-19 03:11:48.000000000 +0100 +++ gimp-2.2.1/po/tr.po 2004-12-28 16:58:39.000000000 +0100 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: gimp.gimp-2-0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-19 03:11+0100\n" +"POT-Creation-Date: 2004-12-28 16:58+0100\n" "PO-Revision-Date: 2004-07-15 17:40+0300\n" "Last-Translator: Görkem Çetin \n" "Language-Team: Türkçe \n" @@ -1035,11 +1035,11 @@ msgid "Remove dangling entries" msgstr "Yüzen Seçim" -#: app/actions/documents-commands.c:252 app/actions/file-commands.c:163 +#: app/actions/documents-commands.c:251 app/actions/file-commands.c:163 #: app/dialogs/file-open-dialog.c:198 app/dialogs/file-open-dialog.c:249 #: app/dialogs/file-open-location-dialog.c:193 -#: app/display/gimpdisplayshell-dnd.c:332 app/widgets/gimplayertreeview.c:802 -#: app/widgets/gimptoolbox-dnd.c:123 +#: app/display/gimpdisplayshell-dnd.c:334 app/widgets/gimplayertreeview.c:804 +#: app/widgets/gimptoolbox-dnd.c:125 #, c-format msgid "" "Opening '%s' failed:\n" @@ -1584,184 +1584,184 @@ msgid "Zoom all" msgstr "Hepsine yakınlaş" -#: app/actions/gradient-editor-actions.c:582 +#: app/actions/gradient-editor-actions.c:589 #, fuzzy msgid "_Blending Function for Segment" msgstr "Parçanın renklendirme tipi" -#: app/actions/gradient-editor-actions.c:584 +#: app/actions/gradient-editor-actions.c:591 #, fuzzy msgid "Coloring _Type for Segment" msgstr "Parçanın renklendirme tipi" -#: app/actions/gradient-editor-actions.c:587 +#: app/actions/gradient-editor-actions.c:594 #, fuzzy msgid "_Flip Segment" msgstr "Parçayı çevir" -#: app/actions/gradient-editor-actions.c:589 +#: app/actions/gradient-editor-actions.c:596 #, fuzzy msgid "_Replicate Segment..." msgstr "Parçayı çoğalt" -#: app/actions/gradient-editor-actions.c:591 +#: app/actions/gradient-editor-actions.c:598 #, fuzzy msgid "Split Segment at _Midpoint" msgstr "Parçayı ortanoktadan böl" -#: app/actions/gradient-editor-actions.c:593 +#: app/actions/gradient-editor-actions.c:600 #, fuzzy msgid "Split Segment _Uniformly..." msgstr "Parçayı eşler olarak böl" -#: app/actions/gradient-editor-actions.c:595 +#: app/actions/gradient-editor-actions.c:602 #, fuzzy msgid "_Delete Segment" msgstr "Parçayı sil" -#: app/actions/gradient-editor-actions.c:597 +#: app/actions/gradient-editor-actions.c:604 #, fuzzy msgid "Re-_center Segment's Midpoint" msgstr "Parçanın ortanoktasını ortala" -#: app/actions/gradient-editor-actions.c:599 +#: app/actions/gradient-editor-actions.c:606 #, fuzzy msgid "Re-distribute _Handles in Segment" msgstr "Parçadaki tutacakları dağıt" -#: app/actions/gradient-editor-actions.c:604 +#: app/actions/gradient-editor-actions.c:611 #, fuzzy msgid "_Blending Function for Selection" msgstr "Seçimin renklendirme tipi" -#: app/actions/gradient-editor-actions.c:606 +#: app/actions/gradient-editor-actions.c:613 #, fuzzy msgid "Coloring _Type for Selection" msgstr "Seçimin renklendirme tipi" -#: app/actions/gradient-editor-actions.c:609 +#: app/actions/gradient-editor-actions.c:616 #, fuzzy msgid "_Flip Selection" msgstr "Seçimi çevir" -#: app/actions/gradient-editor-actions.c:611 +#: app/actions/gradient-editor-actions.c:618 #, fuzzy msgid "_Replicate Selection..." msgstr "Seçimi Yumuşat" -#: app/actions/gradient-editor-actions.c:613 +#: app/actions/gradient-editor-actions.c:620 #, fuzzy msgid "Split Segments at _Midpoints" msgstr "Parçaları ortanoktalardan böl" -#: app/actions/gradient-editor-actions.c:615 +#: app/actions/gradient-editor-actions.c:622 #, fuzzy msgid "Split Segments _Uniformly..." msgstr "Parçaları eşler olarak böl" -#: app/actions/gradient-editor-actions.c:617 +#: app/actions/gradient-editor-actions.c:624 msgid "_Delete Selection" msgstr "_Seçimi sil" -#: app/actions/gradient-editor-actions.c:619 +#: app/actions/gradient-editor-actions.c:626 #, fuzzy msgid "Re-_center Midpoints in Selection" msgstr "Seçimdeki ortanoktaları ortala" -#: app/actions/gradient-editor-actions.c:621 +#: app/actions/gradient-editor-actions.c:628 #, fuzzy msgid "Re-distribute _Handles in Selection" msgstr "Seçimdeki tutacakları dağıt" -#: app/actions/gradient-editor-commands.c:84 +#: app/actions/gradient-editor-commands.c:85 #, fuzzy msgid "Left Endpoint Color" msgstr "Sol bitimnoktasının rengi" -#: app/actions/gradient-editor-commands.c:86 +#: app/actions/gradient-editor-commands.c:87 #, fuzzy msgid "Gradient Segment's Left Endpoint Color" msgstr "Sol bitimnoktasının rengi" -#: app/actions/gradient-editor-commands.c:186 +#: app/actions/gradient-editor-commands.c:189 msgid "Right Endpoint Color" msgstr "Sağ Bitim Noktasının Rengi" -#: app/actions/gradient-editor-commands.c:188 +#: app/actions/gradient-editor-commands.c:191 #, fuzzy msgid "Gradient Segment's Right Endpoint Color" msgstr "Sağ bitimnoktasının rengi" -#: app/actions/gradient-editor-commands.c:353 +#: app/actions/gradient-editor-commands.c:358 #, fuzzy msgid "Replicate Segment" msgstr "Parçayı çoğalt" -#: app/actions/gradient-editor-commands.c:354 +#: app/actions/gradient-editor-commands.c:359 #, fuzzy msgid "Replicate Gradient Segment" msgstr "Parçayı çoğalt" -#: app/actions/gradient-editor-commands.c:358 +#: app/actions/gradient-editor-commands.c:363 #, fuzzy msgid "Replicate Selection" msgstr "Seçimi Yumuşat" -#: app/actions/gradient-editor-commands.c:359 +#: app/actions/gradient-editor-commands.c:364 #, fuzzy msgid "Replicate Gradient Selection" msgstr "Seçimi Yumuşat" -#: app/actions/gradient-editor-commands.c:371 +#: app/actions/gradient-editor-commands.c:376 msgid "Replicate" msgstr "Çoğalt" -#: app/actions/gradient-editor-commands.c:386 +#: app/actions/gradient-editor-commands.c:391 #, fuzzy msgid "" "Select the number of times\n" "to replicate the selected segment." msgstr "(parçanın tekrarlama sayısı)" -#: app/actions/gradient-editor-commands.c:389 +#: app/actions/gradient-editor-commands.c:394 #, fuzzy msgid "" "Select the number of times\n" "to replicate the selection." msgstr "Kaç kere olacağını belirleyin" -#: app/actions/gradient-editor-commands.c:444 +#: app/actions/gradient-editor-commands.c:452 #, fuzzy msgid "Split Segment Uniformly" msgstr "Parçayı eşler olarak böl" -#: app/actions/gradient-editor-commands.c:445 +#: app/actions/gradient-editor-commands.c:453 #, fuzzy msgid "Split Gradient Segment Uniformly" msgstr "Parçayı eşler olarak böl" -#: app/actions/gradient-editor-commands.c:449 +#: app/actions/gradient-editor-commands.c:457 #, fuzzy msgid "Split Segments Uniformly" msgstr "Parçaları eşler olarak böl" -#: app/actions/gradient-editor-commands.c:450 +#: app/actions/gradient-editor-commands.c:458 #, fuzzy msgid "Split Gradient Segments Uniformly" msgstr "Parçaları eşler olarak böl" -#: app/actions/gradient-editor-commands.c:462 +#: app/actions/gradient-editor-commands.c:470 msgid "Split" msgstr "Ayır" -#: app/actions/gradient-editor-commands.c:478 +#: app/actions/gradient-editor-commands.c:486 #, fuzzy msgid "" "Select the number of uniform parts\n" "in which to split the selected segment." msgstr "(bölmek istediğiniz parçada)" -#: app/actions/gradient-editor-commands.c:481 +#: app/actions/gradient-editor-commands.c:489 #, fuzzy msgid "" "Select the number of uniform parts\n" @@ -2202,7 +2202,7 @@ #: app/actions/layers-commands.c:232 app/actions/layers-commands.c:234 #: app/actions/layers-commands.c:291 app/actions/layers-commands.c:295 -#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:840 +#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:842 msgid "New Layer" msgstr "Yeni Katman" @@ -2214,7 +2214,7 @@ msgid "Set Layer Boundary Size" msgstr "Katman Sınırlarını Belirle" -#: app/actions/layers-commands.c:512 app/core/gimplayer.c:255 +#: app/actions/layers-commands.c:512 app/core/gimplayer.c:253 msgid "Scale Layer" msgstr "Katmanı Ölçekle" @@ -2226,7 +2226,7 @@ msgid "Layer Mask to Selection" msgstr "" -#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1085 +#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1066 #: app/dialogs/layer-add-mask-dialog.c:62 msgid "Add Layer Mask" msgstr "Katman Maskesi Ekle" @@ -2834,7 +2834,7 @@ msgstr "" #: app/actions/text-editor-commands.c:132 app/config/gimpconfig-utils.c:552 -#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:393 +#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:396 #: app/core/gimpbrushgenerated.c:601 app/core/gimpbrushpipe.c:338 #: app/core/gimpgradient-load.c:63 app/core/gimppalette.c:360 #: app/core/gimppattern.c:328 app/tools/gimpimagemaptool.c:608 @@ -4749,7 +4749,7 @@ msgid "FG to Transparent" msgstr "Önplandan Şeffafa" -#: app/core/gimp-gui.c:148 +#: app/core/gimp-gui.c:153 msgid "GIMP" msgstr "GIMP" @@ -4781,39 +4781,54 @@ msgid "Modules" msgstr "Modüller" -#: app/core/gimpbrush.c:531 +#: app/core/gimpbrush.c:534 #, fuzzy, c-format msgid "Could not read %d bytes from '%s': %s" msgstr "'%s' dosyası açılamıyor: %s" -#: app/core/gimpbrush.c:566 +#: app/core/gimpbrush.c:554 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Width = 0." +msgstr "GIMP desen dosyası kesilmiş gibi gözüküyor: \"%s\"." + +#: app/core/gimpbrush.c:563 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Height = 0." +msgstr "GIMP desen dosyası kesilmiş gibi gözüküyor: \"%s\"." + +#: app/core/gimpbrush.c:572 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Bytes = 0." +msgstr "GIMP desen dosyası kesilmiş gibi gözüküyor: \"%s\"." + +#: app/core/gimpbrush.c:596 #, fuzzy, c-format msgid "Fatal parse error in brush file '%s': Unknown depth %d." msgstr "GIMP desen dosyası kesilmiş gibi gözüküyor: \"%s\"." -#: app/core/gimpbrush.c:579 +#: app/core/gimpbrush.c:609 #, fuzzy, c-format msgid "Fatal parse error in brush file '%s': Unknown version %d." msgstr "GIMP desen dosyası kesilmiş gibi gözüküyor: \"%s\"." -#: app/core/gimpbrush.c:595 app/core/gimpbrush.c:715 +#: app/core/gimpbrush.c:625 app/core/gimpbrush.c:745 #, fuzzy, c-format msgid "Fatal parse error in brush file '%s': File appears truncated." msgstr "GIMP desen dosyası kesilmiş gibi gözüküyor: \"%s\"." -#: app/core/gimpbrush.c:603 app/core/gimpbrushgenerated.c:648 +#: app/core/gimpbrush.c:633 app/core/gimpbrushgenerated.c:648 #: app/core/gimpbrushpipe.c:354 #, c-format msgid "Invalid UTF-8 string in brush file '%s'." msgstr "" -#: app/core/gimpbrush.c:610 app/core/gimpcontext.c:1299 -#: app/core/gimpitem.c:479 app/core/gimppattern.c:400 +#: app/core/gimpbrush.c:640 app/core/gimpcontext.c:1299 +#: app/core/gimpitem.c:480 app/core/gimppattern.c:400 #: app/dialogs/template-options-dialog.c:80 app/tools/gimpvectortool.c:339 msgid "Unnamed" msgstr "Isimsiz" -#: app/core/gimpbrush.c:704 +#: app/core/gimpbrush.c:734 #, c-format msgid "" "Fatal parse error in brush file '%s': Unsupported brush depth %d\n" @@ -4976,11 +4991,11 @@ "%s" #: app/core/gimpdatafactory.c:411 app/core/gimpdatafactory.c:414 -#: app/core/gimpitem.c:274 app/core/gimpitem.c:277 +#: app/core/gimpitem.c:275 app/core/gimpitem.c:278 msgid "copy" msgstr "kopyala" -#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:286 +#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:287 #, c-format msgid "%s copy" msgstr "%s kopyası" @@ -5044,7 +5059,7 @@ msgid "Rotate" msgstr "Döndür" -#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:259 +#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:257 msgid "Transform Layer" msgstr "Katmanı Dönüştür" @@ -5424,7 +5439,7 @@ #. pixel size #: app/core/gimpimagefile.c:624 app/dialogs/info-window.c:552 -#: app/widgets/gimpsizebox.c:552 app/widgets/gimptemplateeditor.c:637 +#: app/widgets/gimpsizebox.c:429 app/widgets/gimptemplateeditor.c:637 #: app/widgets/gimptemplateeditor.c:673 #, c-format msgid "%d x %d pixels" @@ -5446,16 +5461,16 @@ "%s küçükresim dosyası açılamadı:\n" "%s" -#: app/core/gimpitem.c:1096 +#: app/core/gimpitem.c:1103 msgid "Attach Parasite" msgstr "Parazit İlişkile" -#: app/core/gimpitem.c:1106 +#: app/core/gimpitem.c:1113 #, fuzzy msgid "Attach Parasite to Item" msgstr "Parazit İlişkile" -#: app/core/gimpitem.c:1145 app/core/gimpitem.c:1152 +#: app/core/gimpitem.c:1152 app/core/gimpitem.c:1159 #, fuzzy msgid "Remove Parasite from Item" msgstr "Paraziti Kaldır" @@ -5490,88 +5505,88 @@ msgid "Floating Selection to Layer" msgstr "Katmana Yüzen Seçim" -#: app/core/gimplayer.c:252 app/pdb/internal_procs.c:152 +#: app/core/gimplayer.c:250 app/pdb/internal_procs.c:152 msgid "Layer" msgstr "Katman" -#: app/core/gimplayer.c:253 +#: app/core/gimplayer.c:251 msgid "Rename Layer" msgstr "Katmanın Adını Değiştir" -#: app/core/gimplayer.c:254 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 +#: app/core/gimplayer.c:252 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 msgid "Move Layer" msgstr "Katmanı Taşı" -#: app/core/gimplayer.c:256 +#: app/core/gimplayer.c:254 msgid "Resize Layer" msgstr "Katman Boyutunu Değiştir" -#: app/core/gimplayer.c:257 +#: app/core/gimplayer.c:255 msgid "Flip Layer" msgstr "Katmanı Çevir" -#: app/core/gimplayer.c:258 +#: app/core/gimplayer.c:256 msgid "Rotate Layer" msgstr "Katmanı Döndür" -#: app/core/gimplayer.c:341 app/core/gimplayer.c:1129 +#: app/core/gimplayer.c:339 app/core/gimplayer.c:1110 #: app/core/gimplayermask.c:236 #, c-format msgid "%s mask" msgstr "%s maskesi" -#: app/core/gimplayer.c:387 +#: app/core/gimplayer.c:385 #, fuzzy, c-format msgid "" "Floating Selection\n" "(%s)" msgstr "Yüzen Seçim" -#: app/core/gimplayer.c:1055 +#: app/core/gimplayer.c:1036 #, fuzzy msgid "Cannot add layer mask to layer which is not part of an image." msgstr "" "Bir resmin parçası olmayan bir katmana\n" "katman maskesi eklenemez." -#: app/core/gimplayer.c:1062 +#: app/core/gimplayer.c:1043 #, fuzzy msgid "Unable to add a layer mask since the layer already has one." msgstr "" "Katmanın çoktan maskesi olduğu için\n" "yeni maske eklenemiyor." -#: app/core/gimplayer.c:1069 +#: app/core/gimplayer.c:1050 #, fuzzy msgid "Cannot add layer mask to a layer with no alpha channel." msgstr "" "Alfa kanalı olmayan bir katmana\n" "katman maskesi eklenemez." -#: app/core/gimplayer.c:1079 +#: app/core/gimplayer.c:1060 #, fuzzy msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "" "Belirtilen katmandan farklı ölçülerde\n" "bir katman maskesi eklenemez." -#: app/core/gimplayer.c:1183 +#: app/core/gimplayer.c:1164 msgid "Transfer Alpha to Mask" msgstr "" -#: app/core/gimplayer.c:1343 +#: app/core/gimplayer.c:1324 msgid "Apply Layer Mask" msgstr "Katman Maskesini Uygula" -#: app/core/gimplayer.c:1344 +#: app/core/gimplayer.c:1325 msgid "Delete Layer Mask" msgstr "Katman Maskesini Sil" -#: app/core/gimplayer.c:1445 +#: app/core/gimplayer.c:1426 msgid "Add Alpha Channel" msgstr "Alfa Kanalı Ekle" -#: app/core/gimplayer.c:1467 +#: app/core/gimplayer.c:1448 #, fuzzy msgid "Layer to Image Size" msgstr "/Resim Boyutu" @@ -7128,32 +7143,32 @@ msgstr "Yazdırma Boyutu:" #. the image size labels -#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:241 +#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:222 #: app/widgets/gimptemplateeditor.c:236 #, fuzzy msgid "_Width:" msgstr "Genişlik:" -#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:248 +#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:225 #: app/widgets/gimptemplateeditor.c:243 #, fuzzy msgid "H_eight:" msgstr "Yükseklik:" #. the resolution labels -#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:338 +#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:273 #: app/widgets/gimptemplateeditor.c:363 #, fuzzy msgid "_X resolution:" msgstr "Çözünürlük:" -#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:345 +#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:276 #: app/widgets/gimptemplateeditor.c:370 #, fuzzy msgid "_Y resolution:" msgstr "Çözünürlük:" -#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:357 +#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:269 #: app/widgets/gimptemplateeditor.c:383 #, c-format msgid "pixels/%a" @@ -7848,11 +7863,11 @@ msgid "%d minutes" msgstr "" -#: app/display/gimpdisplayshell-dnd.c:96 +#: app/display/gimpdisplayshell-dnd.c:98 msgid "Drop New Layer" msgstr "Yeni Katmanı Düşür" -#: app/display/gimpdisplayshell-dnd.c:140 +#: app/display/gimpdisplayshell-dnd.c:142 msgid "Drop New Path" msgstr "" @@ -9409,12 +9424,12 @@ msgstr "Boya Fırçası" #: app/tools/gimppaintoptions-gui.c:103 app/widgets/gimpbrushselect.c:201 -#: app/widgets/gimplayertreeview.c:330 +#: app/widgets/gimplayertreeview.c:332 msgid "Opacity:" msgstr "Saydamsızlık:" #: app/tools/gimppaintoptions-gui.c:108 app/tools/gimpselectionoptions.c:374 -#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:323 +#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:325 msgid "Mode:" msgstr "Kip:" @@ -10883,26 +10898,26 @@ msgid "Set Item Exclusive Linked" msgstr "Yeni Katman Seçenekleri" -#: app/widgets/gimplayertreeview.c:250 +#: app/widgets/gimplayertreeview.c:252 msgid "Reorder Layer" msgstr "Katmanı Yeniden Sırala" -#: app/widgets/gimplayertreeview.c:311 +#: app/widgets/gimplayertreeview.c:313 #, fuzzy msgid "Keep transparency" msgstr "Şeffaflığı Koru" -#: app/widgets/gimplayertreeview.c:846 +#: app/widgets/gimplayertreeview.c:848 #, fuzzy msgid "Empty Layer" msgstr "Boş Metin Katmanı" -#: app/widgets/gimpmessagebox.c:458 +#: app/widgets/gimpmessagebox.c:460 #, fuzzy, c-format msgid "Message repeated %d times." msgstr "Mesaj %d kez tekrarlandı" -#: app/widgets/gimpmessagebox.c:460 +#: app/widgets/gimpmessagebox.c:462 #, fuzzy msgid "Message repeated once." msgstr "Mesaj bir kez tekrarlandı" @@ -10932,17 +10947,12 @@ msgid "Invalid UTF-8" msgstr "Geçersiz UTF-8" -#: app/widgets/gimpsizebox.c:290 -#, fuzzy -msgid "Keep aspect ratio" -msgstr "Sabit Görünüm Oranı" - -#: app/widgets/gimpsizebox.c:574 +#: app/widgets/gimpsizebox.c:451 #, fuzzy, c-format msgid "%d x %d dpi" msgstr "%d x %d piksel" -#: app/widgets/gimpsizebox.c:578 +#: app/widgets/gimpsizebox.c:455 #, fuzzy, c-format msgid "%d dpi" msgstr "DPI" @@ -11429,6 +11439,10 @@ msgid "Image Editor" msgstr "Palet Düzenleyici" +#, fuzzy +#~ msgid "Keep aspect ratio" +#~ msgstr "Sabit Görünüm Oranı" + #~ msgid "Y:" #~ msgstr "Y:" diff -uraN gimp-2.2.0/po/uk.gmo gimp-2.2.1/po/uk.gmo --- gimp-2.2.0/po/uk.gmo 2004-12-19 03:11:57.000000000 +0100 +++ gimp-2.2.1/po/uk.gmo 2004-12-28 16:58:45.000000000 +0100 @@ -191,7 +191,7 @@ did not save indexed colormaps correctly. Substituting grayscale map.YellowYellow:You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom factor: %d:1Zoom inZoom in & outZoom outZoom:[ Base Image ]_Antialiasing_Auto_B_Blending Function for Segment_Blending Function for Selection_Brightness:_Brush_C_Delete Segment_Delete Selection_Flip Segment_Flip Selection_G_Gradient_Horizontal:_Hue:_Icon:_Import_Lightness:_M_Manually_Name:_Pattern_Preview_R_Redo_Redo %s_Replicate Segment..._Replicate Selection..._Saturation:_Selection_Undo_Undo %s_Vertical:_X:_Y_Y:_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for token %sinvalid value '%s' for token %smillimetermillimetersn/apercentpicapicaspixelpixelspixels/%apixels/%spointpointstips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: gimp 2.0.0 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-19 03:11+0100 +POT-Creation-Date: 2004-12-28 16:58+0100 PO-Revision-Date: 2004-04-16 17:59+0200 Last-Translator: Maxim Dziumanenko Language-Team: Ukrainian diff -uraN gimp-2.2.0/po/uk.po gimp-2.2.1/po/uk.po --- gimp-2.2.0/po/uk.po 2004-12-19 03:11:49.000000000 +0100 +++ gimp-2.2.1/po/uk.po 2004-12-28 16:58:39.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: gimp 2.0.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-19 03:11+0100\n" +"POT-Creation-Date: 2004-12-28 16:58+0100\n" "PO-Revision-Date: 2004-04-16 17:59+0200\n" "Last-Translator: Maxim Dziumanenko \n" "Language-Team: Ukrainian \n" @@ -1163,11 +1163,11 @@ msgid "Remove dangling entries" msgstr "/Видалити застарілі е_лементи" -#: app/actions/documents-commands.c:252 app/actions/file-commands.c:163 +#: app/actions/documents-commands.c:251 app/actions/file-commands.c:163 #: app/dialogs/file-open-dialog.c:198 app/dialogs/file-open-dialog.c:249 #: app/dialogs/file-open-location-dialog.c:193 -#: app/display/gimpdisplayshell-dnd.c:332 app/widgets/gimplayertreeview.c:802 -#: app/widgets/gimptoolbox-dnd.c:123 +#: app/display/gimpdisplayshell-dnd.c:334 app/widgets/gimplayertreeview.c:804 +#: app/widgets/gimptoolbox-dnd.c:125 #, c-format msgid "" "Opening '%s' failed:\n" @@ -1752,115 +1752,115 @@ msgid "Zoom all" msgstr "Масштабувати до розміру вінка" -#: app/actions/gradient-editor-actions.c:582 +#: app/actions/gradient-editor-actions.c:589 msgid "_Blending Function for Segment" msgstr "Функція _змішування для сегмента" -#: app/actions/gradient-editor-actions.c:584 +#: app/actions/gradient-editor-actions.c:591 msgid "Coloring _Type for Segment" msgstr "_Тип фарбування для сегмента" -#: app/actions/gradient-editor-actions.c:587 +#: app/actions/gradient-editor-actions.c:594 msgid "_Flip Segment" msgstr "_Віддзеркалити сегмент" -#: app/actions/gradient-editor-actions.c:589 +#: app/actions/gradient-editor-actions.c:596 msgid "_Replicate Segment..." msgstr "_Розмножити сегмент..." -#: app/actions/gradient-editor-actions.c:591 +#: app/actions/gradient-editor-actions.c:598 msgid "Split Segment at _Midpoint" msgstr "Розділити сегмент по _центру" -#: app/actions/gradient-editor-actions.c:593 +#: app/actions/gradient-editor-actions.c:600 msgid "Split Segment _Uniformly..." msgstr "Розділити сегмент на _рівні частини..." -#: app/actions/gradient-editor-actions.c:595 +#: app/actions/gradient-editor-actions.c:602 msgid "_Delete Segment" msgstr "В_идалити сегмент" -#: app/actions/gradient-editor-actions.c:597 +#: app/actions/gradient-editor-actions.c:604 msgid "Re-_center Segment's Midpoint" msgstr "Від_центрувати середню точку сегмента" -#: app/actions/gradient-editor-actions.c:599 +#: app/actions/gradient-editor-actions.c:606 msgid "Re-distribute _Handles in Segment" msgstr "Перерозподілити _напрямні в сегменті" -#: app/actions/gradient-editor-actions.c:604 +#: app/actions/gradient-editor-actions.c:611 msgid "_Blending Function for Selection" msgstr "Функція _змішування для виділеної ділянки" -#: app/actions/gradient-editor-actions.c:606 +#: app/actions/gradient-editor-actions.c:613 msgid "Coloring _Type for Selection" msgstr "_Тип фарбування виділеної ділянки" -#: app/actions/gradient-editor-actions.c:609 +#: app/actions/gradient-editor-actions.c:616 msgid "_Flip Selection" msgstr "_Віддзеркалити виділене" -#: app/actions/gradient-editor-actions.c:611 +#: app/actions/gradient-editor-actions.c:618 msgid "_Replicate Selection..." msgstr "_Розмножити виділене..." -#: app/actions/gradient-editor-actions.c:613 +#: app/actions/gradient-editor-actions.c:620 msgid "Split Segments at _Midpoints" msgstr "Розділити сегменти по _центрах" -#: app/actions/gradient-editor-actions.c:615 +#: app/actions/gradient-editor-actions.c:622 msgid "Split Segments _Uniformly..." msgstr "Розділити сегменти на _рівні частини..." -#: app/actions/gradient-editor-actions.c:617 +#: app/actions/gradient-editor-actions.c:624 msgid "_Delete Selection" msgstr "В_идалити виділене" -#: app/actions/gradient-editor-actions.c:619 +#: app/actions/gradient-editor-actions.c:626 msgid "Re-_center Midpoints in Selection" msgstr "Від_центрувати середні точки виділеного" -#: app/actions/gradient-editor-actions.c:621 +#: app/actions/gradient-editor-actions.c:628 msgid "Re-distribute _Handles in Selection" msgstr "Перерозподілити _напрямні у виділеному" -#: app/actions/gradient-editor-commands.c:84 +#: app/actions/gradient-editor-commands.c:85 msgid "Left Endpoint Color" msgstr "Колір крайньої лівої точки" -#: app/actions/gradient-editor-commands.c:86 +#: app/actions/gradient-editor-commands.c:87 msgid "Gradient Segment's Left Endpoint Color" msgstr "Колір крайньої лівої точки сегменту градієнта" -#: app/actions/gradient-editor-commands.c:186 +#: app/actions/gradient-editor-commands.c:189 msgid "Right Endpoint Color" msgstr "Колір крайньої правої точки" -#: app/actions/gradient-editor-commands.c:188 +#: app/actions/gradient-editor-commands.c:191 msgid "Gradient Segment's Right Endpoint Color" msgstr "Колір крайньої правої точки сегменту градієнта" -#: app/actions/gradient-editor-commands.c:353 +#: app/actions/gradient-editor-commands.c:358 msgid "Replicate Segment" msgstr "Розмноження сегмента" -#: app/actions/gradient-editor-commands.c:354 +#: app/actions/gradient-editor-commands.c:359 msgid "Replicate Gradient Segment" msgstr "Створення копії сегмента градієнта" -#: app/actions/gradient-editor-commands.c:358 +#: app/actions/gradient-editor-commands.c:363 msgid "Replicate Selection" msgstr "Розмноження виділеного" -#: app/actions/gradient-editor-commands.c:359 +#: app/actions/gradient-editor-commands.c:364 msgid "Replicate Gradient Selection" msgstr "Створення копії виділеної ділянки градієнта" -#: app/actions/gradient-editor-commands.c:371 +#: app/actions/gradient-editor-commands.c:376 msgid "Replicate" msgstr "Розмножити" -#: app/actions/gradient-editor-commands.c:386 +#: app/actions/gradient-editor-commands.c:391 msgid "" "Select the number of times\n" "to replicate the selected segment." @@ -1868,7 +1868,7 @@ "Виберіть кількість створюваних\n" "копій виділеного сегмента." -#: app/actions/gradient-editor-commands.c:389 +#: app/actions/gradient-editor-commands.c:394 msgid "" "Select the number of times\n" "to replicate the selection." @@ -1876,27 +1876,27 @@ "Виберіть кількість створюваних\n" "копій виділеної ділянки." -#: app/actions/gradient-editor-commands.c:444 +#: app/actions/gradient-editor-commands.c:452 msgid "Split Segment Uniformly" msgstr "Рівномірний розподіл сегменту" -#: app/actions/gradient-editor-commands.c:445 +#: app/actions/gradient-editor-commands.c:453 msgid "Split Gradient Segment Uniformly" msgstr "Розділення сегменту градієнта на рівні частини" -#: app/actions/gradient-editor-commands.c:449 +#: app/actions/gradient-editor-commands.c:457 msgid "Split Segments Uniformly" msgstr "Розділення сегментів на рівні частини" -#: app/actions/gradient-editor-commands.c:450 +#: app/actions/gradient-editor-commands.c:458 msgid "Split Gradient Segments Uniformly" msgstr "Розділення сегментів градієнта на рівні частини" -#: app/actions/gradient-editor-commands.c:462 +#: app/actions/gradient-editor-commands.c:470 msgid "Split" msgstr "Розділити" -#: app/actions/gradient-editor-commands.c:478 +#: app/actions/gradient-editor-commands.c:486 msgid "" "Select the number of uniform parts\n" "in which to split the selected segment." @@ -1904,7 +1904,7 @@ "Виберіть кількість частин\n" "на яку слід розділити вибраний сегмент" -#: app/actions/gradient-editor-commands.c:481 +#: app/actions/gradient-editor-commands.c:489 msgid "" "Select the number of uniform parts\n" "in which to split the segments in the selection." @@ -2425,7 +2425,7 @@ #: app/actions/layers-commands.c:232 app/actions/layers-commands.c:234 #: app/actions/layers-commands.c:291 app/actions/layers-commands.c:295 -#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:840 +#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:842 msgid "New Layer" msgstr "Створення шару" @@ -2437,7 +2437,7 @@ msgid "Set Layer Boundary Size" msgstr "Встановлення меж шару" -#: app/actions/layers-commands.c:512 app/core/gimplayer.c:255 +#: app/actions/layers-commands.c:512 app/core/gimplayer.c:253 msgid "Scale Layer" msgstr "Масштабування шару" @@ -2449,7 +2449,7 @@ msgid "Layer Mask to Selection" msgstr "Маска шару -> Виділене" -#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1085 +#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1066 #: app/dialogs/layer-add-mask-dialog.c:62 msgid "Add Layer Mask" msgstr "Додавання маску шару" @@ -3083,7 +3083,7 @@ msgstr "Відкривання текстового файлу (UTF-8)" #: app/actions/text-editor-commands.c:132 app/config/gimpconfig-utils.c:552 -#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:393 +#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:396 #: app/core/gimpbrushgenerated.c:601 app/core/gimpbrushpipe.c:338 #: app/core/gimpgradient-load.c:63 app/core/gimppalette.c:360 #: app/core/gimppattern.c:328 app/tools/gimpimagemaptool.c:608 @@ -5095,7 +5095,7 @@ msgid "FG to Transparent" msgstr "Передній план до прозорого" -#: app/core/gimp-gui.c:148 +#: app/core/gimp-gui.c:153 msgid "GIMP" msgstr "GIMP" @@ -5127,39 +5127,54 @@ msgid "Modules" msgstr "Модулі" -#: app/core/gimpbrush.c:531 +#: app/core/gimpbrush.c:534 #, c-format msgid "Could not read %d bytes from '%s': %s" msgstr "Не вдається прочитати %d байт з '%s': %s" -#: app/core/gimpbrush.c:566 +#: app/core/gimpbrush.c:554 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Width = 0." +msgstr "Критична помилка аналізу файлу пензля '%s': невідома глибина %d." + +#: app/core/gimpbrush.c:563 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Height = 0." +msgstr "Критична помилка аналізу файла пензля '%s': файл пошкоджений." + +#: app/core/gimpbrush.c:572 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Bytes = 0." +msgstr "Критична помилка аналізу файла пензля '%s': файл пошкоджений." + +#: app/core/gimpbrush.c:596 #, c-format msgid "Fatal parse error in brush file '%s': Unknown depth %d." msgstr "Критична помилка аналізу файлу пензля '%s': невідома глибина %d." -#: app/core/gimpbrush.c:579 +#: app/core/gimpbrush.c:609 #, c-format msgid "Fatal parse error in brush file '%s': Unknown version %d." msgstr "Критична помилка аналізу файлу пензля '%s': невідома версія %d." -#: app/core/gimpbrush.c:595 app/core/gimpbrush.c:715 +#: app/core/gimpbrush.c:625 app/core/gimpbrush.c:745 #, c-format msgid "Fatal parse error in brush file '%s': File appears truncated." msgstr "Критична помилка аналізу файлу пензля '%s': файл ймовірно обірваний." -#: app/core/gimpbrush.c:603 app/core/gimpbrushgenerated.c:648 +#: app/core/gimpbrush.c:633 app/core/gimpbrushgenerated.c:648 #: app/core/gimpbrushpipe.c:354 #, c-format msgid "Invalid UTF-8 string in brush file '%s'." msgstr "Неправильний UTF-8 рядок у файлі пензля '%s'." -#: app/core/gimpbrush.c:610 app/core/gimpcontext.c:1299 -#: app/core/gimpitem.c:479 app/core/gimppattern.c:400 +#: app/core/gimpbrush.c:640 app/core/gimpcontext.c:1299 +#: app/core/gimpitem.c:480 app/core/gimppattern.c:400 #: app/dialogs/template-options-dialog.c:80 app/tools/gimpvectortool.c:339 msgid "Unnamed" msgstr "Неназваний" -#: app/core/gimpbrush.c:704 +#: app/core/gimpbrush.c:734 #, c-format msgid "" "Fatal parse error in brush file '%s': Unsupported brush depth %d\n" @@ -5327,11 +5342,11 @@ "%s" #: app/core/gimpdatafactory.c:411 app/core/gimpdatafactory.c:414 -#: app/core/gimpitem.c:274 app/core/gimpitem.c:277 +#: app/core/gimpitem.c:275 app/core/gimpitem.c:278 msgid "copy" msgstr "копія" -#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:286 +#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:287 #, c-format msgid "%s copy" msgstr "копія %s" @@ -5393,7 +5408,7 @@ msgid "Rotate" msgstr "Обертання" -#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:259 +#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:257 msgid "Transform Layer" msgstr "Перетворення шару" @@ -5763,7 +5778,7 @@ #. pixel size #: app/core/gimpimagefile.c:624 app/dialogs/info-window.c:552 -#: app/widgets/gimpsizebox.c:552 app/widgets/gimptemplateeditor.c:637 +#: app/widgets/gimpsizebox.c:429 app/widgets/gimptemplateeditor.c:637 #: app/widgets/gimptemplateeditor.c:673 #, c-format msgid "%d x %d pixels" @@ -5783,15 +5798,15 @@ msgid "Could not open thumbnail '%s': %s" msgstr "Не вдається відкрити файл мініатюри '%s': %s" -#: app/core/gimpitem.c:1096 +#: app/core/gimpitem.c:1103 msgid "Attach Parasite" msgstr "Долучення шуму" -#: app/core/gimpitem.c:1106 +#: app/core/gimpitem.c:1113 msgid "Attach Parasite to Item" msgstr "Долучення шуму до елемента" -#: app/core/gimpitem.c:1145 app/core/gimpitem.c:1152 +#: app/core/gimpitem.c:1152 app/core/gimpitem.c:1159 msgid "Remove Parasite from Item" msgstr "Видалення шуму з елемента" @@ -5819,77 +5834,77 @@ msgid "Floating Selection to Layer" msgstr "Плаваюче виділення у шар" -#: app/core/gimplayer.c:252 app/pdb/internal_procs.c:152 +#: app/core/gimplayer.c:250 app/pdb/internal_procs.c:152 msgid "Layer" msgstr "Шар" -#: app/core/gimplayer.c:253 +#: app/core/gimplayer.c:251 msgid "Rename Layer" msgstr "Перейменування шару" -#: app/core/gimplayer.c:254 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 +#: app/core/gimplayer.c:252 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 msgid "Move Layer" msgstr "Переміщення шару" -#: app/core/gimplayer.c:256 +#: app/core/gimplayer.c:254 msgid "Resize Layer" msgstr "Зміна розміру шару" -#: app/core/gimplayer.c:257 +#: app/core/gimplayer.c:255 msgid "Flip Layer" msgstr "Віддзеркалення шару" -#: app/core/gimplayer.c:258 +#: app/core/gimplayer.c:256 msgid "Rotate Layer" msgstr "Обертання шару" -#: app/core/gimplayer.c:341 app/core/gimplayer.c:1129 +#: app/core/gimplayer.c:339 app/core/gimplayer.c:1110 #: app/core/gimplayermask.c:236 #, c-format msgid "%s mask" msgstr "%s маска" -#: app/core/gimplayer.c:387 +#: app/core/gimplayer.c:385 #, fuzzy, c-format msgid "" "Floating Selection\n" "(%s)" msgstr "Плаваюче виділення" -#: app/core/gimplayer.c:1055 +#: app/core/gimplayer.c:1036 msgid "Cannot add layer mask to layer which is not part of an image." msgstr "Не можна додавати маску до шару, який не є частиною зображення." -#: app/core/gimplayer.c:1062 +#: app/core/gimplayer.c:1043 msgid "Unable to add a layer mask since the layer already has one." msgstr "Не вдається додати маску шару, бо шар вже має маску." -#: app/core/gimplayer.c:1069 +#: app/core/gimplayer.c:1050 msgid "Cannot add layer mask to a layer with no alpha channel." msgstr "Не можна додавати маску до шару, який не має альфа-каналу." -#: app/core/gimplayer.c:1079 +#: app/core/gimplayer.c:1060 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "" "Не можна додавати маску шару, яка відрізняється розмірами від вказаного шару." -#: app/core/gimplayer.c:1183 +#: app/core/gimplayer.c:1164 msgid "Transfer Alpha to Mask" msgstr "Перетворення альфа-каналу у маску" -#: app/core/gimplayer.c:1343 +#: app/core/gimplayer.c:1324 msgid "Apply Layer Mask" msgstr "Застосування маску шару" -#: app/core/gimplayer.c:1344 +#: app/core/gimplayer.c:1325 msgid "Delete Layer Mask" msgstr "Видалення маску шару" -#: app/core/gimplayer.c:1445 +#: app/core/gimplayer.c:1426 msgid "Add Alpha Channel" msgstr "Додавання альфа-каналу" -#: app/core/gimplayer.c:1467 +#: app/core/gimplayer.c:1448 msgid "Layer to Image Size" msgstr "Шар до розміру зображення" @@ -7440,32 +7455,32 @@ msgstr "Розмір при друкуванні:" #. the image size labels -#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:241 +#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:222 #: app/widgets/gimptemplateeditor.c:236 #, fuzzy msgid "_Width:" msgstr "Ширина:" -#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:248 +#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:225 #: app/widgets/gimptemplateeditor.c:243 #, fuzzy msgid "H_eight:" msgstr "Висота:" #. the resolution labels -#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:338 +#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:273 #: app/widgets/gimptemplateeditor.c:363 #, fuzzy msgid "_X resolution:" msgstr "Роздільна здатність:" -#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:345 +#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:276 #: app/widgets/gimptemplateeditor.c:370 #, fuzzy msgid "_Y resolution:" msgstr "Роздільна здатність:" -#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:357 +#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:269 #: app/widgets/gimptemplateeditor.c:383 #, c-format msgid "pixels/%a" @@ -8123,11 +8138,11 @@ msgid "%d minutes" msgstr "" -#: app/display/gimpdisplayshell-dnd.c:96 +#: app/display/gimpdisplayshell-dnd.c:98 msgid "Drop New Layer" msgstr "Опускання нового шару" -#: app/display/gimpdisplayshell-dnd.c:140 +#: app/display/gimpdisplayshell-dnd.c:142 msgid "Drop New Path" msgstr "Опускання нового контуру" @@ -9673,12 +9688,12 @@ msgstr "Пензель" #: app/tools/gimppaintoptions-gui.c:103 app/widgets/gimpbrushselect.c:201 -#: app/widgets/gimplayertreeview.c:330 +#: app/widgets/gimplayertreeview.c:332 msgid "Opacity:" msgstr "Непрозорість:" #: app/tools/gimppaintoptions-gui.c:108 app/tools/gimpselectionoptions.c:374 -#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:323 +#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:325 msgid "Mode:" msgstr "Режим:" @@ -11153,25 +11168,25 @@ msgid "Set Item Exclusive Linked" msgstr "Встановлення зв'язку з елементом" -#: app/widgets/gimplayertreeview.c:250 +#: app/widgets/gimplayertreeview.c:252 msgid "Reorder Layer" msgstr "Реорганізувати шар" -#: app/widgets/gimplayertreeview.c:311 +#: app/widgets/gimplayertreeview.c:313 #, fuzzy msgid "Keep transparency" msgstr "Зберігати прозорість" -#: app/widgets/gimplayertreeview.c:846 +#: app/widgets/gimplayertreeview.c:848 msgid "Empty Layer" msgstr "Порожній шар" -#: app/widgets/gimpmessagebox.c:458 +#: app/widgets/gimpmessagebox.c:460 #, c-format msgid "Message repeated %d times." msgstr "Повідомлення повторено %d разів." -#: app/widgets/gimpmessagebox.c:460 +#: app/widgets/gimpmessagebox.c:462 msgid "Message repeated once." msgstr "Повідомлення повторено один раз" @@ -11203,17 +11218,12 @@ msgid "Invalid UTF-8" msgstr "неправильний рядок UTF-8" -#: app/widgets/gimpsizebox.c:290 -#, fuzzy -msgid "Keep aspect ratio" -msgstr "Фіксоване відношення сторін %s" - -#: app/widgets/gimpsizebox.c:574 +#: app/widgets/gimpsizebox.c:451 #, fuzzy, c-format msgid "%d x %d dpi" msgstr "%d x %d точок" -#: app/widgets/gimpsizebox.c:578 +#: app/widgets/gimpsizebox.c:455 #, fuzzy, c-format msgid "%d dpi" msgstr "т/дюйм" @@ -11691,6 +11701,10 @@ msgid "Image Editor" msgstr "Редактор палітри" +#, fuzzy +#~ msgid "Keep aspect ratio" +#~ msgstr "Фіксоване відношення сторін %s" + #~ msgid "Y:" #~ msgstr "Y:" diff -uraN gimp-2.2.0/po/vi.gmo gimp-2.2.1/po/vi.gmo --- gimp-2.2.0/po/vi.gmo 2004-12-19 03:11:57.000000000 +0100 +++ gimp-2.2.1/po/vi.gmo 2004-12-28 16:58:45.000000000 +0100 @@ -108,7 +108,7 @@ did not save indexed colormaps correctly. Substituting grayscale map.YellowZoom 1:1Zoom AllZoom InZoom OutZoom factor: %d:1Zoom inZoom in & outZoom out_Auto_B_Brightness:_C_G_Gradient_Horizontal:_Hue:_Import_Lightness:_M_Manually_Preview_R_Saturation:_Vertical:_Y_Y:colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for token %sinvalid value '%s' for token %smillimetermillimeterspercentpicapicaspixelpixelspixels/%apointpointstips-locale:Cvalue for token %s is not a valid UTF-8 stringProject-Id-Version: GIMP for Gnome v.2.1.x Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-19 03:11+0100 +POT-Creation-Date: 2004-12-28 16:58+0100 PO-Revision-Date: 2003-01-27 22:22+0700 Last-Translator: Trinh Minh Thanh Language-Team: Gnome-Vi diff -uraN gimp-2.2.0/po/vi.po gimp-2.2.1/po/vi.po --- gimp-2.2.0/po/vi.po 2004-12-19 03:11:50.000000000 +0100 +++ gimp-2.2.1/po/vi.po 2004-12-28 16:58:40.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: GIMP for Gnome v.2.1.x\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-19 03:11+0100\n" +"POT-Creation-Date: 2004-12-28 16:58+0100\n" "PO-Revision-Date: 2003-01-27 22:22+0700\n" "Last-Translator: Trinh Minh Thanh \n" "Language-Team: Gnome-Vi \n" @@ -1176,11 +1176,11 @@ msgid "Remove dangling entries" msgstr "/Bỏ các Mục kèm theo" -#: app/actions/documents-commands.c:252 app/actions/file-commands.c:163 +#: app/actions/documents-commands.c:251 app/actions/file-commands.c:163 #: app/dialogs/file-open-dialog.c:198 app/dialogs/file-open-dialog.c:249 #: app/dialogs/file-open-location-dialog.c:193 -#: app/display/gimpdisplayshell-dnd.c:332 app/widgets/gimplayertreeview.c:802 -#: app/widgets/gimptoolbox-dnd.c:123 +#: app/display/gimpdisplayshell-dnd.c:334 app/widgets/gimplayertreeview.c:804 +#: app/widgets/gimptoolbox-dnd.c:125 #, fuzzy, c-format msgid "" "Opening '%s' failed:\n" @@ -1775,171 +1775,171 @@ msgid "Zoom all" msgstr "Phóng toàn bộ" -#: app/actions/gradient-editor-actions.c:582 +#: app/actions/gradient-editor-actions.c:589 #, fuzzy msgid "_Blending Function for Segment" msgstr "Kiểu phối màu cho Phần" -#: app/actions/gradient-editor-actions.c:584 +#: app/actions/gradient-editor-actions.c:591 #, fuzzy msgid "Coloring _Type for Segment" msgstr "Kiểu phối màu cho Phần" -#: app/actions/gradient-editor-actions.c:587 +#: app/actions/gradient-editor-actions.c:594 #, fuzzy msgid "_Flip Segment" msgstr "Xoá Phần" -#: app/actions/gradient-editor-actions.c:589 +#: app/actions/gradient-editor-actions.c:596 #, fuzzy msgid "_Replicate Segment..." msgstr "Sao phần..." -#: app/actions/gradient-editor-actions.c:591 +#: app/actions/gradient-editor-actions.c:598 #, fuzzy msgid "Split Segment at _Midpoint" msgstr "Tách phần tại điểm giữa" -#: app/actions/gradient-editor-actions.c:593 +#: app/actions/gradient-editor-actions.c:600 #, fuzzy msgid "Split Segment _Uniformly..." msgstr "Tách phần cùng kiểu..." -#: app/actions/gradient-editor-actions.c:595 +#: app/actions/gradient-editor-actions.c:602 #, fuzzy msgid "_Delete Segment" msgstr "Xoá Phần" -#: app/actions/gradient-editor-actions.c:597 +#: app/actions/gradient-editor-actions.c:604 #, fuzzy msgid "Re-_center Segment's Midpoint" msgstr "Tách phần tại điểm giữa" -#: app/actions/gradient-editor-actions.c:599 +#: app/actions/gradient-editor-actions.c:606 #, fuzzy msgid "Re-distribute _Handles in Segment" msgstr "Sao phần Gradient" -#: app/actions/gradient-editor-actions.c:604 +#: app/actions/gradient-editor-actions.c:611 #, fuzzy msgid "_Blending Function for Selection" msgstr "Kiểu phối màu cho phần chọn" -#: app/actions/gradient-editor-actions.c:606 +#: app/actions/gradient-editor-actions.c:613 #, fuzzy msgid "Coloring _Type for Selection" msgstr "Kiểu phối màu cho phần chọn" -#: app/actions/gradient-editor-actions.c:609 +#: app/actions/gradient-editor-actions.c:616 #, fuzzy msgid "_Flip Selection" msgstr "Sự chọn lựa" -#: app/actions/gradient-editor-actions.c:611 +#: app/actions/gradient-editor-actions.c:618 #, fuzzy msgid "_Replicate Selection..." msgstr "Sao Phần Chọn..." -#: app/actions/gradient-editor-actions.c:613 +#: app/actions/gradient-editor-actions.c:620 #, fuzzy msgid "Split Segments at _Midpoints" msgstr "Tách phần tại điểm giữa" -#: app/actions/gradient-editor-actions.c:615 +#: app/actions/gradient-editor-actions.c:622 #, fuzzy msgid "Split Segments _Uniformly..." msgstr "Tách các phần cùng dạng" -#: app/actions/gradient-editor-actions.c:617 +#: app/actions/gradient-editor-actions.c:624 #, fuzzy msgid "_Delete Selection" msgstr "Xoá Chọn Lựa" -#: app/actions/gradient-editor-actions.c:619 +#: app/actions/gradient-editor-actions.c:626 #, fuzzy msgid "Re-_center Midpoints in Selection" msgstr "Sao phần chọn Gradient" -#: app/actions/gradient-editor-actions.c:621 +#: app/actions/gradient-editor-actions.c:628 #, fuzzy msgid "Re-distribute _Handles in Selection" msgstr "Sao phần chọn Gradient" -#: app/actions/gradient-editor-commands.c:84 +#: app/actions/gradient-editor-commands.c:85 msgid "Left Endpoint Color" msgstr "" -#: app/actions/gradient-editor-commands.c:86 +#: app/actions/gradient-editor-commands.c:87 msgid "Gradient Segment's Left Endpoint Color" msgstr "" -#: app/actions/gradient-editor-commands.c:186 +#: app/actions/gradient-editor-commands.c:189 msgid "Right Endpoint Color" msgstr "" -#: app/actions/gradient-editor-commands.c:188 +#: app/actions/gradient-editor-commands.c:191 msgid "Gradient Segment's Right Endpoint Color" msgstr "" -#: app/actions/gradient-editor-commands.c:353 +#: app/actions/gradient-editor-commands.c:358 msgid "Replicate Segment" msgstr "Sao phần" -#: app/actions/gradient-editor-commands.c:354 +#: app/actions/gradient-editor-commands.c:359 msgid "Replicate Gradient Segment" msgstr "Sao phần Gradient" -#: app/actions/gradient-editor-commands.c:358 +#: app/actions/gradient-editor-commands.c:363 msgid "Replicate Selection" msgstr "Sao Phần chọn" -#: app/actions/gradient-editor-commands.c:359 +#: app/actions/gradient-editor-commands.c:364 msgid "Replicate Gradient Selection" msgstr "Sao phần chọn Gradient" -#: app/actions/gradient-editor-commands.c:371 +#: app/actions/gradient-editor-commands.c:376 msgid "Replicate" msgstr "Sao" -#: app/actions/gradient-editor-commands.c:386 +#: app/actions/gradient-editor-commands.c:391 msgid "" "Select the number of times\n" "to replicate the selected segment." msgstr "" -#: app/actions/gradient-editor-commands.c:389 +#: app/actions/gradient-editor-commands.c:394 msgid "" "Select the number of times\n" "to replicate the selection." msgstr "" -#: app/actions/gradient-editor-commands.c:444 +#: app/actions/gradient-editor-commands.c:452 msgid "Split Segment Uniformly" msgstr "Tách phần một cách đồng dạng" -#: app/actions/gradient-editor-commands.c:445 +#: app/actions/gradient-editor-commands.c:453 msgid "Split Gradient Segment Uniformly" msgstr "Tách phần gradient cùng kiểu" -#: app/actions/gradient-editor-commands.c:449 +#: app/actions/gradient-editor-commands.c:457 msgid "Split Segments Uniformly" msgstr "Tách thành các phần một cách đồng dạng" -#: app/actions/gradient-editor-commands.c:450 +#: app/actions/gradient-editor-commands.c:458 msgid "Split Gradient Segments Uniformly" msgstr "Tách các phần gradient cùng kiểu" -#: app/actions/gradient-editor-commands.c:462 +#: app/actions/gradient-editor-commands.c:470 msgid "Split" msgstr "Chia tách" -#: app/actions/gradient-editor-commands.c:478 +#: app/actions/gradient-editor-commands.c:486 msgid "" "Select the number of uniform parts\n" "in which to split the selected segment." msgstr "" -#: app/actions/gradient-editor-commands.c:481 +#: app/actions/gradient-editor-commands.c:489 msgid "" "Select the number of uniform parts\n" "in which to split the segments in the selection." @@ -2464,7 +2464,7 @@ #: app/actions/layers-commands.c:232 app/actions/layers-commands.c:234 #: app/actions/layers-commands.c:291 app/actions/layers-commands.c:295 -#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:840 +#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:842 msgid "New Layer" msgstr "Lớp Mới" @@ -2476,7 +2476,7 @@ msgid "Set Layer Boundary Size" msgstr "" -#: app/actions/layers-commands.c:512 app/core/gimplayer.c:255 +#: app/actions/layers-commands.c:512 app/core/gimplayer.c:253 msgid "Scale Layer" msgstr "Cân đối Lớp" @@ -2490,7 +2490,7 @@ msgid "Layer Mask to Selection" msgstr "/Lớp/Mask/Mask cho vào phần chọn" -#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1085 +#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1066 #: app/dialogs/layer-add-mask-dialog.c:62 msgid "Add Layer Mask" msgstr "Thêm Mặt Nạ Lớp" @@ -3151,7 +3151,7 @@ msgstr "Mở tập tin văn bản (UTF-8)" #: app/actions/text-editor-commands.c:132 app/config/gimpconfig-utils.c:552 -#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:393 +#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:396 #: app/core/gimpbrushgenerated.c:601 app/core/gimpbrushpipe.c:338 #: app/core/gimpgradient-load.c:63 app/core/gimppalette.c:360 #: app/core/gimppattern.c:328 app/tools/gimpimagemaptool.c:608 @@ -5079,7 +5079,7 @@ msgid "FG to Transparent" msgstr "FG thành Trong Suốt" -#: app/core/gimp-gui.c:148 +#: app/core/gimp-gui.c:153 #, fuzzy msgid "GIMP" msgstr "GIMP" @@ -5112,45 +5112,66 @@ msgid "Modules" msgstr "Modules" -#: app/core/gimpbrush.c:531 +#: app/core/gimpbrush.c:534 #, c-format msgid "Could not read %d bytes from '%s': %s" msgstr "Không thể đọc %d byte từ '%s': %s" -#: app/core/gimpbrush.c:566 +#: app/core/gimpbrush.c:554 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Width = 0." +msgstr "" +"Lỗi phân tích trầm trọng:\n" +"Tập tin bút vẽ '%s' hỏng." + +#: app/core/gimpbrush.c:563 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Height = 0." +msgstr "" +"Lỗi phân tích trầm trọng:\n" +"Tập tin bút vẽ '%s' hỏng." + +#: app/core/gimpbrush.c:572 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Bytes = 0." +msgstr "" +"Lỗi phân tích trầm trọng:\n" +"Tập tin bút vẽ '%s' hỏng." + +#: app/core/gimpbrush.c:596 #, fuzzy, c-format msgid "Fatal parse error in brush file '%s': Unknown depth %d." msgstr "" "Lỗi phân tích trầm trọng:\n" "Tập tin bút vẽ '%s' hỏng." -#: app/core/gimpbrush.c:579 +#: app/core/gimpbrush.c:609 #, fuzzy, c-format msgid "Fatal parse error in brush file '%s': Unknown version %d." msgstr "" "Lỗi phân tích trầm trọng:\n" "Tập tin vẽ '%s' bị cụt." -#: app/core/gimpbrush.c:595 app/core/gimpbrush.c:715 +#: app/core/gimpbrush.c:625 app/core/gimpbrush.c:745 #, fuzzy, c-format msgid "Fatal parse error in brush file '%s': File appears truncated." msgstr "" "Lỗi phân tích trầm trọng:\n" "Tập tin vẽ '%s' bị cụt." -#: app/core/gimpbrush.c:603 app/core/gimpbrushgenerated.c:648 +#: app/core/gimpbrush.c:633 app/core/gimpbrushgenerated.c:648 #: app/core/gimpbrushpipe.c:354 #, c-format msgid "Invalid UTF-8 string in brush file '%s'." msgstr "Chuỗi UTF-8 không hợp lệ trong tập tin vẽ '%s'" -#: app/core/gimpbrush.c:610 app/core/gimpcontext.c:1299 -#: app/core/gimpitem.c:479 app/core/gimppattern.c:400 +#: app/core/gimpbrush.c:640 app/core/gimpcontext.c:1299 +#: app/core/gimpitem.c:480 app/core/gimppattern.c:400 #: app/dialogs/template-options-dialog.c:80 app/tools/gimpvectortool.c:339 msgid "Unnamed" msgstr "Không có tên" -#: app/core/gimpbrush.c:704 +#: app/core/gimpbrush.c:734 #, fuzzy, c-format msgid "" "Fatal parse error in brush file '%s': Unsupported brush depth %d\n" @@ -5343,11 +5364,11 @@ "%s" #: app/core/gimpdatafactory.c:411 app/core/gimpdatafactory.c:414 -#: app/core/gimpitem.c:274 app/core/gimpitem.c:277 +#: app/core/gimpitem.c:275 app/core/gimpitem.c:278 msgid "copy" msgstr "sao chép" -#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:286 +#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:287 #, c-format msgid "%s copy" msgstr "sao chép %s" @@ -5411,7 +5432,7 @@ msgid "Rotate" msgstr "Xoay" -#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:259 +#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:257 #, fuzzy msgid "Transform Layer" msgstr "Biến đổi" @@ -5831,7 +5852,7 @@ #. pixel size #: app/core/gimpimagefile.c:624 app/dialogs/info-window.c:552 -#: app/widgets/gimpsizebox.c:552 app/widgets/gimptemplateeditor.c:637 +#: app/widgets/gimpsizebox.c:429 app/widgets/gimptemplateeditor.c:637 #: app/widgets/gimptemplateeditor.c:673 #, c-format msgid "%d x %d pixels" @@ -5851,16 +5872,16 @@ msgid "Could not open thumbnail '%s': %s" msgstr "Không mở được tập tin thumbnail '%s': %s" -#: app/core/gimpitem.c:1096 +#: app/core/gimpitem.c:1103 msgid "Attach Parasite" msgstr "Đính kèm Parasite" -#: app/core/gimpitem.c:1106 +#: app/core/gimpitem.c:1113 #, fuzzy msgid "Attach Parasite to Item" msgstr "Đính kèm Parasite" -#: app/core/gimpitem.c:1145 app/core/gimpitem.c:1152 +#: app/core/gimpitem.c:1152 app/core/gimpitem.c:1159 #, fuzzy msgid "Remove Parasite from Item" msgstr "Gỡ bỏ Parasite" @@ -5896,92 +5917,92 @@ msgid "Floating Selection to Layer" msgstr "Sự Chọn Lựa Nổi" -#: app/core/gimplayer.c:252 app/pdb/internal_procs.c:152 +#: app/core/gimplayer.c:250 app/pdb/internal_procs.c:152 msgid "Layer" msgstr "Lớp" -#: app/core/gimplayer.c:253 +#: app/core/gimplayer.c:251 #, fuzzy msgid "Rename Layer" msgstr "Đặt lại kích cỡ Lớp" -#: app/core/gimplayer.c:254 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 +#: app/core/gimplayer.c:252 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 msgid "Move Layer" msgstr "Di chuyển Lớp" -#: app/core/gimplayer.c:256 +#: app/core/gimplayer.c:254 msgid "Resize Layer" msgstr "Đặt lại kích cỡ Lớp" -#: app/core/gimplayer.c:257 +#: app/core/gimplayer.c:255 #, fuzzy msgid "Flip Layer" msgstr "1 Lớp" -#: app/core/gimplayer.c:258 +#: app/core/gimplayer.c:256 #, fuzzy msgid "Rotate Layer" msgstr "/Nâng Lớp" -#: app/core/gimplayer.c:341 app/core/gimplayer.c:1129 +#: app/core/gimplayer.c:339 app/core/gimplayer.c:1110 #: app/core/gimplayermask.c:236 #, c-format msgid "%s mask" msgstr "%s mask" -#: app/core/gimplayer.c:387 +#: app/core/gimplayer.c:385 #, fuzzy, c-format msgid "" "Floating Selection\n" "(%s)" msgstr "Sự Chọn Lựa Nổi" -#: app/core/gimplayer.c:1055 +#: app/core/gimplayer.c:1036 #, fuzzy msgid "Cannot add layer mask to layer which is not part of an image." msgstr "" "Không thể thêm mask cho lớp\n" "do nó không phải bộ phận ảnh." -#: app/core/gimplayer.c:1062 +#: app/core/gimplayer.c:1043 #, fuzzy msgid "Unable to add a layer mask since the layer already has one." msgstr "" "Không thể thêm mask lớp vì\n" "lớp đã có mask rồi." -#: app/core/gimplayer.c:1069 +#: app/core/gimplayer.c:1050 #, fuzzy msgid "Cannot add layer mask to a layer with no alpha channel." msgstr "" "Không thể thêm mask lớp vào một\n" "lớp không có kênh alpha." -#: app/core/gimplayer.c:1079 +#: app/core/gimplayer.c:1060 #, fuzzy msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "" "Không thể thêm mask lớp của các\n" "chiều khác ngoài lớp chỉ định." -#: app/core/gimplayer.c:1183 +#: app/core/gimplayer.c:1164 msgid "Transfer Alpha to Mask" msgstr "" -#: app/core/gimplayer.c:1343 +#: app/core/gimplayer.c:1324 msgid "Apply Layer Mask" msgstr "Áp dụng Mặt nạ Lớp" -#: app/core/gimplayer.c:1344 +#: app/core/gimplayer.c:1325 msgid "Delete Layer Mask" msgstr "Xoá Mặt Nạ Lớp" -#: app/core/gimplayer.c:1445 +#: app/core/gimplayer.c:1426 #, fuzzy msgid "Add Alpha Channel" msgstr "/Thêm Kênh Alpha" -#: app/core/gimplayer.c:1467 +#: app/core/gimplayer.c:1448 #, fuzzy msgid "Layer to Image Size" msgstr "Cỡ Ảnh" @@ -7561,32 +7582,32 @@ msgstr "X_em trước kích thước:" #. the image size labels -#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:241 +#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:222 #: app/widgets/gimptemplateeditor.c:236 #, fuzzy msgid "_Width:" msgstr "Rộng:" -#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:248 +#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:225 #: app/widgets/gimptemplateeditor.c:243 #, fuzzy msgid "H_eight:" msgstr "Cao:" #. the resolution labels -#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:338 +#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:273 #: app/widgets/gimptemplateeditor.c:363 #, fuzzy msgid "_X resolution:" msgstr "Độ phân giải:" -#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:345 +#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:276 #: app/widgets/gimptemplateeditor.c:370 #, fuzzy msgid "_Y resolution:" msgstr "Độ phân giải:" -#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:357 +#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:269 #: app/widgets/gimptemplateeditor.c:383 #, c-format msgid "pixels/%a" @@ -8186,12 +8207,12 @@ msgid "%d minutes" msgstr "%d Byte" -#: app/display/gimpdisplayshell-dnd.c:96 +#: app/display/gimpdisplayshell-dnd.c:98 #, fuzzy msgid "Drop New Layer" msgstr "Lớp Mới" -#: app/display/gimpdisplayshell-dnd.c:140 +#: app/display/gimpdisplayshell-dnd.c:142 #, fuzzy msgid "Drop New Path" msgstr "Đường dẫn Mới" @@ -9756,12 +9777,12 @@ msgstr "Bút vẽ" #: app/tools/gimppaintoptions-gui.c:103 app/widgets/gimpbrushselect.c:201 -#: app/widgets/gimplayertreeview.c:330 +#: app/widgets/gimplayertreeview.c:332 msgid "Opacity:" msgstr "Độ đục:" #: app/tools/gimppaintoptions-gui.c:108 app/tools/gimpselectionoptions.c:374 -#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:323 +#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:325 msgid "Mode:" msgstr "Chế độ:" @@ -11263,27 +11284,27 @@ msgid "Set Item Exclusive Linked" msgstr "Tùy Chọn Lớp Cân Chỉnh" -#: app/widgets/gimplayertreeview.c:250 +#: app/widgets/gimplayertreeview.c:252 #, fuzzy msgid "Reorder Layer" msgstr "/Hạ thấp Lớp" -#: app/widgets/gimplayertreeview.c:311 +#: app/widgets/gimplayertreeview.c:313 #, fuzzy msgid "Keep transparency" msgstr "Giữ tính Trong Suốt" -#: app/widgets/gimplayertreeview.c:846 +#: app/widgets/gimplayertreeview.c:848 #, fuzzy msgid "Empty Layer" msgstr "Lớp văn bản" -#: app/widgets/gimpmessagebox.c:458 +#: app/widgets/gimpmessagebox.c:460 #, c-format msgid "Message repeated %d times." msgstr "Thông điệp được nhắc lại %d lần." -#: app/widgets/gimpmessagebox.c:460 +#: app/widgets/gimpmessagebox.c:462 msgid "Message repeated once." msgstr "Thông điệp được nhắc lại một lần." @@ -11313,17 +11334,12 @@ msgid "Invalid UTF-8" msgstr "chuỗi UTF-8 không hợp lệ" -#: app/widgets/gimpsizebox.c:290 -#, fuzzy -msgid "Keep aspect ratio" -msgstr "Tỷ lệ hình thể cố định" - -#: app/widgets/gimpsizebox.c:574 +#: app/widgets/gimpsizebox.c:451 #, fuzzy, c-format msgid "%d x %d dpi" msgstr "%d x %d pixel" -#: app/widgets/gimpsizebox.c:578 +#: app/widgets/gimpsizebox.c:455 #, fuzzy, c-format msgid "%d dpi" msgstr "dpi" @@ -11826,6 +11842,10 @@ msgid "Image Editor" msgstr "Danh Sách Ảnh" +#, fuzzy +#~ msgid "Keep aspect ratio" +#~ msgstr "Tỷ lệ hình thể cố định" + #~ msgid "Y:" #~ msgstr "Y:" diff -uraN gimp-2.2.0/po/yi.gmo gimp-2.2.1/po/yi.gmo --- gimp-2.2.0/po/yi.gmo 2004-12-19 03:11:57.000000000 +0100 +++ gimp-2.2.1/po/yi.gmo 2004-12-28 16:58:45.000000000 +0100 @@ -9,7 +9,7 @@   $ . A P Y f '+ ( #*%$&.! "-) , (none)AdjustmentAlignmentAuthor:BackgroundCancelCenteredChange Background ColorClearColorColor:CutFoldersGammaGeneralGrayscaleHeightHeight:ImageModeNoneNormalPastePreferencesPreviewRedoSaveScreenSelect AllSelectionSelection: SizeSize:TextText ColorTypeUndoValueWidthWidth:_Hue:_Saturation:inchpicapointsProject-Id-Version: 1.0 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-19 03:11+0100 +POT-Creation-Date: 2004-12-28 16:58+0100 PO-Revision-Date: 2003-03-19 Last-Translator: Raphael Finkel Language-Team: Yiddish diff -uraN gimp-2.2.0/po/yi.po gimp-2.2.1/po/yi.po --- gimp-2.2.0/po/yi.po 2004-12-19 03:11:51.000000000 +0100 +++ gimp-2.2.1/po/yi.po 2004-12-28 16:58:40.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: 1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-19 03:11+0100\n" +"POT-Creation-Date: 2004-12-28 16:58+0100\n" "PO-Revision-Date: 2003-03-19\n" "Last-Translator: Raphael Finkel \n" "Language-Team: Yiddish \n" @@ -1085,11 +1085,11 @@ msgid "Remove dangling entries" msgstr "סעלעקציע" -#: app/actions/documents-commands.c:252 app/actions/file-commands.c:163 +#: app/actions/documents-commands.c:251 app/actions/file-commands.c:163 #: app/dialogs/file-open-dialog.c:198 app/dialogs/file-open-dialog.c:249 #: app/dialogs/file-open-location-dialog.c:193 -#: app/display/gimpdisplayshell-dnd.c:332 app/widgets/gimplayertreeview.c:802 -#: app/widgets/gimptoolbox-dnd.c:123 +#: app/display/gimpdisplayshell-dnd.c:334 app/widgets/gimplayertreeview.c:804 +#: app/widgets/gimptoolbox-dnd.c:125 #, c-format msgid "" "Opening '%s' failed:\n" @@ -1617,157 +1617,157 @@ msgid "Zoom all" msgstr "" -#: app/actions/gradient-editor-actions.c:582 +#: app/actions/gradient-editor-actions.c:589 msgid "_Blending Function for Segment" msgstr "" -#: app/actions/gradient-editor-actions.c:584 +#: app/actions/gradient-editor-actions.c:591 msgid "Coloring _Type for Segment" msgstr "" -#: app/actions/gradient-editor-actions.c:587 +#: app/actions/gradient-editor-actions.c:594 #, fuzzy msgid "_Flip Segment" msgstr "אױסגלײַכונג" -#: app/actions/gradient-editor-actions.c:589 +#: app/actions/gradient-editor-actions.c:596 msgid "_Replicate Segment..." msgstr "" -#: app/actions/gradient-editor-actions.c:591 +#: app/actions/gradient-editor-actions.c:598 msgid "Split Segment at _Midpoint" msgstr "" -#: app/actions/gradient-editor-actions.c:593 +#: app/actions/gradient-editor-actions.c:600 msgid "Split Segment _Uniformly..." msgstr "" -#: app/actions/gradient-editor-actions.c:595 +#: app/actions/gradient-editor-actions.c:602 msgid "_Delete Segment" msgstr "" -#: app/actions/gradient-editor-actions.c:597 +#: app/actions/gradient-editor-actions.c:604 msgid "Re-_center Segment's Midpoint" msgstr "" -#: app/actions/gradient-editor-actions.c:599 +#: app/actions/gradient-editor-actions.c:606 msgid "Re-distribute _Handles in Segment" msgstr "" -#: app/actions/gradient-editor-actions.c:604 +#: app/actions/gradient-editor-actions.c:611 msgid "_Blending Function for Selection" msgstr "" -#: app/actions/gradient-editor-actions.c:606 +#: app/actions/gradient-editor-actions.c:613 #, fuzzy msgid "Coloring _Type for Selection" msgstr "סעלעקציע" -#: app/actions/gradient-editor-actions.c:609 +#: app/actions/gradient-editor-actions.c:616 #, fuzzy msgid "_Flip Selection" msgstr "סעלעקציע" -#: app/actions/gradient-editor-actions.c:611 +#: app/actions/gradient-editor-actions.c:618 msgid "_Replicate Selection..." msgstr "" -#: app/actions/gradient-editor-actions.c:613 +#: app/actions/gradient-editor-actions.c:620 msgid "Split Segments at _Midpoints" msgstr "" -#: app/actions/gradient-editor-actions.c:615 +#: app/actions/gradient-editor-actions.c:622 msgid "Split Segments _Uniformly..." msgstr "" -#: app/actions/gradient-editor-actions.c:617 +#: app/actions/gradient-editor-actions.c:624 #, fuzzy msgid "_Delete Selection" msgstr "סעלעקציע" -#: app/actions/gradient-editor-actions.c:619 +#: app/actions/gradient-editor-actions.c:626 msgid "Re-_center Midpoints in Selection" msgstr "" -#: app/actions/gradient-editor-actions.c:621 +#: app/actions/gradient-editor-actions.c:628 msgid "Re-distribute _Handles in Selection" msgstr "" -#: app/actions/gradient-editor-commands.c:84 +#: app/actions/gradient-editor-commands.c:85 msgid "Left Endpoint Color" msgstr "" -#: app/actions/gradient-editor-commands.c:86 +#: app/actions/gradient-editor-commands.c:87 msgid "Gradient Segment's Left Endpoint Color" msgstr "" -#: app/actions/gradient-editor-commands.c:186 +#: app/actions/gradient-editor-commands.c:189 msgid "Right Endpoint Color" msgstr "" -#: app/actions/gradient-editor-commands.c:188 +#: app/actions/gradient-editor-commands.c:191 msgid "Gradient Segment's Right Endpoint Color" msgstr "" -#: app/actions/gradient-editor-commands.c:353 +#: app/actions/gradient-editor-commands.c:358 msgid "Replicate Segment" msgstr "" -#: app/actions/gradient-editor-commands.c:354 +#: app/actions/gradient-editor-commands.c:359 msgid "Replicate Gradient Segment" msgstr "" -#: app/actions/gradient-editor-commands.c:358 +#: app/actions/gradient-editor-commands.c:363 msgid "Replicate Selection" msgstr "" -#: app/actions/gradient-editor-commands.c:359 +#: app/actions/gradient-editor-commands.c:364 msgid "Replicate Gradient Selection" msgstr "" -#: app/actions/gradient-editor-commands.c:371 +#: app/actions/gradient-editor-commands.c:376 msgid "Replicate" msgstr "" -#: app/actions/gradient-editor-commands.c:386 +#: app/actions/gradient-editor-commands.c:391 msgid "" "Select the number of times\n" "to replicate the selected segment." msgstr "" -#: app/actions/gradient-editor-commands.c:389 +#: app/actions/gradient-editor-commands.c:394 msgid "" "Select the number of times\n" "to replicate the selection." msgstr "" -#: app/actions/gradient-editor-commands.c:444 +#: app/actions/gradient-editor-commands.c:452 msgid "Split Segment Uniformly" msgstr "" -#: app/actions/gradient-editor-commands.c:445 +#: app/actions/gradient-editor-commands.c:453 msgid "Split Gradient Segment Uniformly" msgstr "" -#: app/actions/gradient-editor-commands.c:449 +#: app/actions/gradient-editor-commands.c:457 msgid "Split Segments Uniformly" msgstr "" -#: app/actions/gradient-editor-commands.c:450 +#: app/actions/gradient-editor-commands.c:458 msgid "Split Gradient Segments Uniformly" msgstr "" -#: app/actions/gradient-editor-commands.c:462 +#: app/actions/gradient-editor-commands.c:470 msgid "Split" msgstr "" -#: app/actions/gradient-editor-commands.c:478 +#: app/actions/gradient-editor-commands.c:486 msgid "" "Select the number of uniform parts\n" "in which to split the selected segment." msgstr "" -#: app/actions/gradient-editor-commands.c:481 +#: app/actions/gradient-editor-commands.c:489 msgid "" "Select the number of uniform parts\n" "in which to split the segments in the selection." @@ -2261,7 +2261,7 @@ #: app/actions/layers-commands.c:232 app/actions/layers-commands.c:234 #: app/actions/layers-commands.c:291 app/actions/layers-commands.c:295 -#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:840 +#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:842 msgid "New Layer" msgstr "" @@ -2273,7 +2273,7 @@ msgid "Set Layer Boundary Size" msgstr "" -#: app/actions/layers-commands.c:512 app/core/gimplayer.c:255 +#: app/actions/layers-commands.c:512 app/core/gimplayer.c:253 msgid "Scale Layer" msgstr "" @@ -2286,7 +2286,7 @@ msgid "Layer Mask to Selection" msgstr "סעלעקציע" -#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1085 +#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1066 #: app/dialogs/layer-add-mask-dialog.c:62 msgid "Add Layer Mask" msgstr "" @@ -2894,7 +2894,7 @@ msgstr "" #: app/actions/text-editor-commands.c:132 app/config/gimpconfig-utils.c:552 -#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:393 +#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:396 #: app/core/gimpbrushgenerated.c:601 app/core/gimpbrushpipe.c:338 #: app/core/gimpgradient-load.c:63 app/core/gimppalette.c:360 #: app/core/gimppattern.c:328 app/tools/gimpimagemaptool.c:608 @@ -4712,7 +4712,7 @@ msgid "FG to Transparent" msgstr "" -#: app/core/gimp-gui.c:148 +#: app/core/gimp-gui.c:153 msgid "GIMP" msgstr "" @@ -4744,39 +4744,54 @@ msgid "Modules" msgstr "" -#: app/core/gimpbrush.c:531 +#: app/core/gimpbrush.c:534 #, c-format msgid "Could not read %d bytes from '%s': %s" msgstr "" -#: app/core/gimpbrush.c:566 +#: app/core/gimpbrush.c:554 +#, c-format +msgid "Fatal parse error in brush file '%s': Width = 0." +msgstr "" + +#: app/core/gimpbrush.c:563 +#, c-format +msgid "Fatal parse error in brush file '%s': Height = 0." +msgstr "" + +#: app/core/gimpbrush.c:572 +#, c-format +msgid "Fatal parse error in brush file '%s': Bytes = 0." +msgstr "" + +#: app/core/gimpbrush.c:596 #, c-format msgid "Fatal parse error in brush file '%s': Unknown depth %d." msgstr "" -#: app/core/gimpbrush.c:579 +#: app/core/gimpbrush.c:609 #, c-format msgid "Fatal parse error in brush file '%s': Unknown version %d." msgstr "" -#: app/core/gimpbrush.c:595 app/core/gimpbrush.c:715 +#: app/core/gimpbrush.c:625 app/core/gimpbrush.c:745 #, c-format msgid "Fatal parse error in brush file '%s': File appears truncated." msgstr "" -#: app/core/gimpbrush.c:603 app/core/gimpbrushgenerated.c:648 +#: app/core/gimpbrush.c:633 app/core/gimpbrushgenerated.c:648 #: app/core/gimpbrushpipe.c:354 #, c-format msgid "Invalid UTF-8 string in brush file '%s'." msgstr "" -#: app/core/gimpbrush.c:610 app/core/gimpcontext.c:1299 -#: app/core/gimpitem.c:479 app/core/gimppattern.c:400 +#: app/core/gimpbrush.c:640 app/core/gimpcontext.c:1299 +#: app/core/gimpitem.c:480 app/core/gimppattern.c:400 #: app/dialogs/template-options-dialog.c:80 app/tools/gimpvectortool.c:339 msgid "Unnamed" msgstr "" -#: app/core/gimpbrush.c:704 +#: app/core/gimpbrush.c:734 #, c-format msgid "" "Fatal parse error in brush file '%s': Unsupported brush depth %d\n" @@ -4938,11 +4953,11 @@ msgstr "" #: app/core/gimpdatafactory.c:411 app/core/gimpdatafactory.c:414 -#: app/core/gimpitem.c:274 app/core/gimpitem.c:277 +#: app/core/gimpitem.c:275 app/core/gimpitem.c:278 msgid "copy" msgstr "" -#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:286 +#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:287 #, c-format msgid "%s copy" msgstr "" @@ -5002,7 +5017,7 @@ msgid "Rotate" msgstr "" -#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:259 +#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:257 msgid "Transform Layer" msgstr "" @@ -5362,7 +5377,7 @@ #. pixel size #: app/core/gimpimagefile.c:624 app/dialogs/info-window.c:552 -#: app/widgets/gimpsizebox.c:552 app/widgets/gimptemplateeditor.c:637 +#: app/widgets/gimpsizebox.c:429 app/widgets/gimptemplateeditor.c:637 #: app/widgets/gimptemplateeditor.c:673 #, c-format msgid "%d x %d pixels" @@ -5382,15 +5397,15 @@ msgid "Could not open thumbnail '%s': %s" msgstr "" -#: app/core/gimpitem.c:1096 +#: app/core/gimpitem.c:1103 msgid "Attach Parasite" msgstr "" -#: app/core/gimpitem.c:1106 +#: app/core/gimpitem.c:1113 msgid "Attach Parasite to Item" msgstr "" -#: app/core/gimpitem.c:1145 app/core/gimpitem.c:1152 +#: app/core/gimpitem.c:1152 app/core/gimpitem.c:1159 msgid "Remove Parasite from Item" msgstr "" @@ -5417,78 +5432,78 @@ msgid "Floating Selection to Layer" msgstr "" -#: app/core/gimplayer.c:252 app/pdb/internal_procs.c:152 +#: app/core/gimplayer.c:250 app/pdb/internal_procs.c:152 msgid "Layer" msgstr "" -#: app/core/gimplayer.c:253 +#: app/core/gimplayer.c:251 msgid "Rename Layer" msgstr "" -#: app/core/gimplayer.c:254 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 +#: app/core/gimplayer.c:252 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 msgid "Move Layer" msgstr "" -#: app/core/gimplayer.c:256 +#: app/core/gimplayer.c:254 msgid "Resize Layer" msgstr "" -#: app/core/gimplayer.c:257 +#: app/core/gimplayer.c:255 #, fuzzy msgid "Flip Layer" msgstr "טעקסט פֿאַרב" -#: app/core/gimplayer.c:258 +#: app/core/gimplayer.c:256 #, fuzzy msgid "Rotate Layer" msgstr "טעקסט פֿאַרב" -#: app/core/gimplayer.c:341 app/core/gimplayer.c:1129 +#: app/core/gimplayer.c:339 app/core/gimplayer.c:1110 #: app/core/gimplayermask.c:236 #, c-format msgid "%s mask" msgstr "" -#: app/core/gimplayer.c:387 +#: app/core/gimplayer.c:385 #, fuzzy, c-format msgid "" "Floating Selection\n" "(%s)" msgstr "סעלעקציע" -#: app/core/gimplayer.c:1055 +#: app/core/gimplayer.c:1036 msgid "Cannot add layer mask to layer which is not part of an image." msgstr "" -#: app/core/gimplayer.c:1062 +#: app/core/gimplayer.c:1043 msgid "Unable to add a layer mask since the layer already has one." msgstr "" -#: app/core/gimplayer.c:1069 +#: app/core/gimplayer.c:1050 msgid "Cannot add layer mask to a layer with no alpha channel." msgstr "" -#: app/core/gimplayer.c:1079 +#: app/core/gimplayer.c:1060 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "" -#: app/core/gimplayer.c:1183 +#: app/core/gimplayer.c:1164 msgid "Transfer Alpha to Mask" msgstr "" -#: app/core/gimplayer.c:1343 +#: app/core/gimplayer.c:1324 msgid "Apply Layer Mask" msgstr "" -#: app/core/gimplayer.c:1344 +#: app/core/gimplayer.c:1325 msgid "Delete Layer Mask" msgstr "" -#: app/core/gimplayer.c:1445 +#: app/core/gimplayer.c:1426 msgid "Add Alpha Channel" msgstr "" -#: app/core/gimplayer.c:1467 +#: app/core/gimplayer.c:1448 msgid "Layer to Image Size" msgstr "" @@ -6968,32 +6983,32 @@ msgstr "פֿאָרױסװײַז" #. the image size labels -#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:241 +#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:222 #: app/widgets/gimptemplateeditor.c:236 #, fuzzy msgid "_Width:" msgstr "ברײט:" -#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:248 +#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:225 #: app/widgets/gimptemplateeditor.c:243 #, fuzzy msgid "H_eight:" msgstr "הײך: " #. the resolution labels -#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:338 +#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:273 #: app/widgets/gimptemplateeditor.c:363 #, fuzzy msgid "_X resolution:" msgstr "דורכװײק" -#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:345 +#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:276 #: app/widgets/gimptemplateeditor.c:370 #, fuzzy msgid "_Y resolution:" msgstr "דורכװײק" -#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:357 +#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:269 #: app/widgets/gimptemplateeditor.c:383 #, c-format msgid "pixels/%a" @@ -7534,11 +7549,11 @@ msgid "%d minutes" msgstr "" -#: app/display/gimpdisplayshell-dnd.c:96 +#: app/display/gimpdisplayshell-dnd.c:98 msgid "Drop New Layer" msgstr "" -#: app/display/gimpdisplayshell-dnd.c:140 +#: app/display/gimpdisplayshell-dnd.c:142 msgid "Drop New Path" msgstr "" @@ -9030,12 +9045,12 @@ msgstr "" #: app/tools/gimppaintoptions-gui.c:103 app/widgets/gimpbrushselect.c:201 -#: app/widgets/gimplayertreeview.c:330 +#: app/widgets/gimplayertreeview.c:332 msgid "Opacity:" msgstr "" #: app/tools/gimppaintoptions-gui.c:108 app/tools/gimpselectionoptions.c:374 -#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:323 +#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:325 msgid "Mode:" msgstr "" @@ -10465,25 +10480,25 @@ msgid "Set Item Exclusive Linked" msgstr "" -#: app/widgets/gimplayertreeview.c:250 +#: app/widgets/gimplayertreeview.c:252 msgid "Reorder Layer" msgstr "" -#: app/widgets/gimplayertreeview.c:311 +#: app/widgets/gimplayertreeview.c:313 msgid "Keep transparency" msgstr "" -#: app/widgets/gimplayertreeview.c:846 +#: app/widgets/gimplayertreeview.c:848 #, fuzzy msgid "Empty Layer" msgstr "טעקסט פֿאַרב" -#: app/widgets/gimpmessagebox.c:458 +#: app/widgets/gimpmessagebox.c:460 #, c-format msgid "Message repeated %d times." msgstr "" -#: app/widgets/gimpmessagebox.c:460 +#: app/widgets/gimpmessagebox.c:462 msgid "Message repeated once." msgstr "" @@ -10512,17 +10527,12 @@ msgid "Invalid UTF-8" msgstr "" -#: app/widgets/gimpsizebox.c:290 -#, fuzzy -msgid "Keep aspect ratio" -msgstr "סעלעקציע" - -#: app/widgets/gimpsizebox.c:574 +#: app/widgets/gimpsizebox.c:451 #, c-format msgid "%d x %d dpi" msgstr "" -#: app/widgets/gimpsizebox.c:578 +#: app/widgets/gimpsizebox.c:455 #, c-format msgid "%d dpi" msgstr "" @@ -10971,6 +10981,10 @@ msgstr "בילד" #, fuzzy +#~ msgid "Keep aspect ratio" +#~ msgstr "סעלעקציע" + +#, fuzzy #~ msgid "Inde_xed Palette" #~ msgstr "מעק אַרױס" diff -uraN gimp-2.2.0/po/zh_CN.gmo gimp-2.2.1/po/zh_CN.gmo --- gimp-2.2.0/po/zh_CN.gmo 2004-12-19 03:11:57.000000000 +0100 +++ gimp-2.2.1/po/zh_CN.gmo 2004-12-28 16:58:45.000000000 +0100 @@ -1,307 +1,297 @@ -: I[ ()&?kfG9GTANi-<k@@2;POA29-9,;f7  - - - "2 -AL\ -t0$7@H -_jqy - -    K-y.1.!` - - '3 I -U`u  -"*86c'<Pd# -%6>PYy 13 AU[nu - &<V] l -yAJ -U<h   -&=O `n -&$=D J Tbi"  - +?7S    m w |   C7>=v@6d,3< #J!n  *BZl~,3; N\ | !(1 : HUipw } .5557k8),3Og2 OA_%&41##U y  -  ' =Jcu0  4+=i|   - $+>Mb "3I Xfv / 7D_x ""# -5@ -_)j,!##;!_%. -@S#i-% #>Sk p~ - - - ':IX _m --   %8L]p   %!7 Yfy&  + ;H Wd t  . -G -R-]    - (0CW jx  :?8_   - -  , -9 D P -Z eqz >  -@Pbq   5I_ oy - - &4 JW ly -*!/Q.h#" &?f |,# -'Go'FTd   4> -U `n   4(=$f=6<?CA79c79B=fV>CJ@g  !/DI[ k u   #6I[r4K_s  -   -   -*5Q Yeu (9?F N[ci -oOz -| -   . : M `  -o  z           - -0 -u? - - - cZ  z F L rT    !*:O&`'        +8GY_w  -'2 ;ELT Y fr -H -A LVf -nHy!B'+1:l  -  `FC1$0V   - -&9 Q(_ - -H -  - - , ;H^s        # 1 >KL36"( KUm $   (?+h)*! /MTc*t' -0;K]s  ;LUd}  (<!Tv --<j s         3 !+!C!S! k! -x! ! !!!!!"&"7" L"Z"q" x"""""@"#- #:# L#Y# ^# l# x### ## # ### $($<$ P$ Z$ f$r$ $$$ $$ -$$ -% %.% F%R% -h%s%%%%%%%%%%% -&&-&D& -L&#W&{&&&&&&&+ '7'?' F' T' -`' k' x'''''' '( ( (3(N("e(((( ((((($(!)3)G)V) e)q) y) )) ) )) -) ) -)) )** &* 0*:*S*b*y******* * -++7+<+ -B+ M+Y+k+++ + +++ + + ++,",4, F, -S, ^,h, , ,, , , ,,,-!-<-P-g-)- -- - ---.. . %.3.BF.A.... //!/0/ @/M/_/t/|// 00*020;0 -@0K0 _0m00 0000"0!1!91[1s11 1 1 1111 11V1+V2 2(22"22 2 3 3&3%>3 -d3 o3y3333 -33 33 3 3444 /4 ;4 G4U4&o4,4 444 -4 -44565U5m554555 -555 -6 66)6 26@6H6O6 l6x6 6!66 66 66 7&7 67@7Q7 c7p7w7?77777784848 99-9 J:T:]: -m: x:#::-: ::; ;';/;F;O; -X; c;o;;; ;;;;;; -; -;<< -.< 9< C<Q<U<o< < <!<< <<< < <= ='= /===R= h=t= -=== == == -=>>2>O>T> Z>!g>>!>#>> ? -?9?UU?=?<?=&@"d@?@@@ @@@@(A,-AZAjA|AA -AAAAJA 3B@BOBhB B B B BBBB;C>CXC gC tCCC C CC C C CCD #D-DHDeDwDDDDDDDEE(E+?EkEEEE E E EE E E -F#!F EFQF cFoFFF6FFGGG +G78GpGGGGGGG G HH!H 5HBH `HlHHH -H -HH HHH HH -HHI I"I -9IDIdI IIIII II J&J6JJJ4_JJJJJJ KK.6KEeKK K KK K K L&L ,L :L FL -RL]L nL -zLLL LLLLLNM -MMMMN -NN(NDNZN#tNNN NNNOO#4OXOvO OOOOO$OP=P RP\PlPPP!PPPQ - QQ)Q 9QFQeQQQQQ QQQR*RIR`R yRRR RRRRRS!S8S -JSUSeS"SSS SSST)TBT=RT6TSTJUfUUU UUUUUUV,V >VJVYVnVV VVVV VV W#W>WXWsWW WWWWWWXX)XNXGYK[Z=ZZ*i[[9\3\T]?e]`]2^9^^4_/_#`````aa(a0a@aRaXaka~aa a aa;ab b+b;b LbYb nb|bb#b bb b b&c(c -;cFcYcicc"cccccd d6dFd[dkdzd ddd ddddd+e-e3eDe KeXe _ele |e -eeeee e e8evf|ffff f ff f!fg5gQglgggggggggh h 'h 3h AhOhXh ahnh~h hh h hhh!hi$i=i#Fi ji xiii -i i iiiii -i j -j j'j7jK@j1j7j1j5(kH^kAkk;tl!ll mm no}RpBpqqrrs $s2s)9s5css1It0{t0t1t(uC8u|uSu,Qv2~v vAwAx*Vxx-y z({{|F}}~G2zc2S - -؂$3<BTg   ǃ  -< LZ q{Յ"1K[ jw -3ˆ;;;wF  gq v  ҉ى(3A#uĊԊ"(/LUF^ -ŋ -Ћۋ      $!2!T v +K0Q7"$Ŏ5P Gq-Oj7oejx~pboӓwC<?>8twt`a–L̗0җ "7 HV6Xo4#EiG2XzUӚO)y -  ʛԛ ݛ#& .<EKZaj} ǜ ̜ ڜ   $7R q  ԝ    +?F -MX `mu   -  0>M ]k   ˟  ,;D ^ h -uҠ'9 I j t~  ơ ̡ڡ ! * 4 -> -ITmv ~ âˢ ޢ  &-4<Ve -  ʣңڣ   %*0C^go  ŤӤ٤ -  & 4 -B M [ h r    -ƥѥ ڥ    '5EL U b p}   Ц֦٦ަ   0 CPV_p(Чا!4;1p/Ҩ -3G#X |éө" -+<CLb sŪ -ު - - )/6 -Varx -˫ګ   -$/6;5?u  ì!ج  < -\ gsz~   ƭԭ.y3(į_FM7B̰9LI`<h4?1ݲ=RMI49.Y=4ƴ1 -: A M -Z -e p| - ʵԵݵ3-9g| ȶ ζ ڶ   -    ) -5 @ -M -Xc -hsF{ɷ(E.n&ĸ -ظ '=D\ p }ƹܹ   #0CYo$0$:T[qûܻ3L_ f s}ȼ ϼ ܼ!!$FV\lwu -  1 ; HU\o 8>߿-8 f s    !1 IW ^h{'!  1 BOo'    41fm}    rv {  -9:AB|</T,"*0%&*Lw  ,?Rn  " ;Hd   - / BO'e6-'-,H$u8$!F!_F:!'%/M/}!"  2E LVf -w  8 *7 G Q_s 5 / ? IW^ -oz $? R_+r s z  ,,@m 2 3!(;d~""(/ "<*_ $$I\{# 0 = JW s } -  $ 8E$L q{"  '8IZn     (;(Ox          (5 H U bo  25< CP Waqx    $.=DK3k99 ! 2? FSdk         -*-=k        - '4EL_r  - # 0= P] t       %+ -Q\o-''$7!\*~0 &-AQg&( (I>cG -*I \i |$$ - *8M`s""JA?JJJAbApAWJBr'HJM.r|   -  $18 R _l| %8L\l| -$,BXn        .; Q[ k x $ % /9I \f mPz v   * $ 1> N[ -l w    Zo=n fhrW@Sl s  * 1 > KX_f mw~     : I"Wz     +;%B%hE   -6HBa? % -9D X ft{c>8-3:J Z g t  $ + 8?E        , -< -GRc jt  ] )C_!u   ?-3C w&   - (08,i999 -9D~3  *  4A$]  %5 <H^n  1 IW ^j  !5S ky          9  0 -= -W -j - - - - - - - - ) ? V p        ? 0 !7 Y  o y  }           0 O h            ' >K ^k ~  - -   -,BY s}"  -''= eosz     # 0 = JWq"  !> Taq      , 9F Y fs    - +<V ]g n{      *FVf v     'D Tu'    ".5 E O\?o?  ,: A N [h{   (5 LYi p} -Ie -    !S(.| -(!+<O!k - (>E_''!4 ;HXi-%5 <IP` s   -      9  F S  l  y      <  ! !!)!B![!0"2"9"@" C#M#T#c# j##w##0# ##$ $$"$ 5$?$ F$S$c$s$$ $ $$$$$ $ $$% $% 1%>%N%R%l% -}%%!% %%%%% &&6& =& G&T&g& ~&& &&& && &' '"'5'N'm' t' ~''''''( &(=4(Nr(<(;(A:)*|);))) ** !*+*$2*$W* |* * * *****A -+ L+ Y+f+++ + ++++,0,G,`,p,,!,,, , , , , - -#-6-=-M- i-s-------..+.$D.i.$|. ....../&/9/+Y/// / / //,/0(0/060 V06c000 0000 1 1 -1:1M1 `1m11 11 -11 1 -111 2 2 !2 .282?2 \2i2 2"22 222"323O3`3t3333,3!34/4!J4l4 44)4;4 5525H5 d5 q5{55 5 5 5 55 5 5566-6C6 J6W6N607@7G7N7^7e7 l7x77777 77 7 88/8C8a8 y88 888888 -99 9+9A9Q9e99 99999 99::7:M:c: y::::::: ;;3; I;V;l;;;;;;;;<$%<J<]< s<}<<<<<%<+ =17=+i======= = > >+>G> W>a>q>>> >>>>>$?(?A?]?v???????@@1@D@*@TAXABGB*BB'7C_CC-D?D3D6/E$fEzEF0F-GIGGG H -HH(H7H >H KHXH_HnH}H HHH H?HII%I9IMIaIxIIIIIIIJ($JMJdJuJJJJ$JJ KK2K!FKhKKKK K K -KK K -LLL.L EL/OLL LL LL LLLLLLL L M M*MVHM MMM MMMMNN0N@NWNqNNNNN -NNNN O O (O5OEOUOeOlO}O O O O O OOOOP*PIPPP iPvP -P -PPPP P PPQ -QQ 'Q4Q DQQQ9ZQ.Q.Q.Q.!R0PRGRjR44SiSS8TQT,UVfV3WHW"Xx;XlX!Y(Y8Y(?Y3hYY*PZ*{Z'Z*Z'ZA![jc[E[*\3?\(s\9]9]*^;^^_`jabb5cc~d<Keeuf1gBg^g'eg gggg ggg g -hh&h=h Sh`hshh hh h hhh h h -jj'j .j ;j Hj Ujbjuj j j jj jj jjj j k k kk/3k0ck3kk`l8_m mm mmmmm!m -n n n%nEn_n*~nnnnnoo 0o =oJo Qo[o lovo6}ooooooop,pBpRp"bp"p p p(p<p5*qK`qqCr$r1rS,sJs#sKth;unuWvZkvtvn;whwnx<x<x<xh9ynyNze`ziz0{57{m{ t{ ~{{ {{{3{n{i|k| r|1||0||6}Q}H)~Kr~~ -~ ~~~   -. -9 DQ$e  - -& -7 -BM^o -  - ΀ -  -+ -6A^ r  -Ɂځ - - -# -4"? -bm -~Ԃ - ):N_pȃ܃  -/:K \j -  - -Ąބ 4Nbv - -Å ΅ -܅  -  +9 -J -U -`k| - - - - -̆   - -   & -4 -? J -X -c -ny  -ˇ߇ - - ( ?Mg x  - -ĈՈ - - - - 4 -NYau# - -҉݉ -  +9 I[ &/kVG9 +GDANi<k@02q;PO129-9;V7  + + + " +1<L +dow0'08 +OZaiq + +    Ki.1!Pr + # 9 +EPe x +*(6S,@Ts# -&7K_pˊ܊  -#. 6DU ft - - -ˋ -ߋ - -  -"->R -fq - -Ќ & -7 BPar4 -ɍ -ԍߍ!4A+v.ю  - - -&1K%_ -͏. -$ -/:N -_ -ju - -Đؐ % -3 -> I -Wb -s -~  - -Ƒ ё ߑ - - -!0 I W -ep - -ƒ֒ڒ>$7 ->IPW -^iד    '. 5 ?IM Q[m(ep- "*23%MaUMx!KW( M)-@-iW* ,yH\ -d-}GFGP&$z)9HsgKdYr\#/B -$*| -^7m >)TN-6IVoxW I:rA%+ P5 g7JMJ?o,!B1g<c'x/>y5 81@F1T<FMma -i&wz}=6VL$ LO2;la 1<j>gIWk {TD!CDB2 joY_E ?y ; q It4 3Cqcu}Ao 9  ^_(w l)pNCU&thf{zo'6 ! -i~E`0 ,_x: Gr*FC D $`^4nEV^] e89o;0:\r2'=qhuhwqUtURW? ; )@ E -Tv8 X]b"BwKgK(y=$$w3 Wb0V&5O Z@:M$E~QF[^VG 4!5V:(DyZ 0sL&nxa/LO+PRvX -~JI}`Zsh~ I#e,|4[} .+E%2b6>uH:[Bm2 ^"uS8ak@" =c z7Us9GRSNd/F 8}7 f/4 Y -='56 3'y(~uO,NH6T> jICG^\47v fOMuSdwBPd fl;)D$dStH& pn[R7g|CR>znYU pj:'.3Xbp!3t]w bJxm 7^qQA(s{& qt9!{e\voT Q2Y~0|@Q)Sr.Qk:;99 j D8GO. V}Yh9U|"qe`c,l - J cZ[hij3B4ZztA1.[5 |?Q7su5vkZDfW_ON_X ;3TNPx#@# #DSAOR*$r;~0[[P'{Bjh|(- M Xdw_ %Z<Le4Aj`c#szwq]]`0 )/iphPb+\8`?bz 0~g(rG %mqas bEJ#, 4 F{])+&|".Ng,dvFr>6 H06=Tea( @t5 #Jlpnf6idL  /  k?L"YX&7PH1-1 QA e%Rc   - x/1  jV !.iO6H y<;!u {L0,: #*lGxX=Q"Av*~\5Jk 3 f$n`".Z>{ -l}V222XR}A#@?{%1Jm -%?C=]\ 7nm|' ek8>KmSElzvZ:U.K"kgNKWa% nYHCs< <_5*NF) _3 ,+BYm4f<*yaDyS?rivu]SIEi` /k<^\ofUI8p(pRK' c&P/h8 Xb++9_]l'WCn1QM.c%+*+=T9o-t![LK  +&.@Ii} 131EK^e +,FM \ +itAJE<X   -? P^v +&$-4 : DRYry"  + +/7C{    mg l z   C7.=f@6d3<#:!^  2J\n, #+ >L l !! * 8EY`g m{ .55%7[8),#?W2t OAO%&41#E iw  +  -:Se0w  $+-Yl   + $.=R o"#9 HVf o{ '4Oh "" + +%0 +O)Z,!##+!O%q.  0C#Y-}%.C[ `n + + + *9H O] +p{-  (<M`p  %!' IVi&    +8 GT dq  +7 +B-M {   +  3G Zh  :?8O   + +    +) 4 @ +J Uaj~ >  0@Ras   %9O _i| + + $ :G \iy +* !A.X#"&/V lx,#  +'7_'|F TT   $. +E P^ {  $(-$V{=6<?3As79c'9B=fF>CJ0g{  49K [ eq   &9Kbr $;Oc w +   +    +%A IUe u()/6 >KSY +_Oj +l} +   .* = P  +_  j  x           + +u/ + + + cJ  z 6 < rD     *?&P'w        (7IOgx|  +" +5<D I Vb} +H +1 <FV +^Hi!B1*\ot y +  `6C10Fw }  + +) A(O +x +H +  +   +8Nc r       ! .K<36" ;E]q $   (/+X)*!/ =DS*d' + +;Qas *3B[n  !2Tp  -H Q d h       3   !!!1! I! +V! a! m!z!!!!!"" *"8"O" V"b"w"""@""-"# *#7# <# J# V#c## ## # ####$$ .$ 8$ D$P$ g$u$$ $$ +$$$ $ % $%0% +F%Q%f%o%w%%%%%%%% %% &"& +*&#5&Y&r&&&&&&+&'' $' 2' +>' I' V'd'y'''' '' ''(,("C(f(o(( ((((($(()%)4) C)O) W) e)q) v) )) +) ) +)) ))) * **1*@*W*m****** ***++ + + ++7+I+]+p+ + +++ + + +++,, $, +1, <,F, a, n,z, , , ,,,,!,-.-E-)b- -- - ----- - ..B$.Ag.... .../ /+/=/R/Z/b///000 +0)0 =0K0b0 t0000"0!0!191Q1j1 1 1 1111 11V1+42 `2(j22"22 2 223%3 +B3 M3W3_3n33 +33 33 3 3333 4 4 %434&M4,t4 444 +4 +444535K5^54p555 +555 +5 556 66&6-6 J6V6 k6!w66 66 6667 77/7 A7N7U7?]777777784888-8 (:2:;: +K: V:#`::-: ::: :; ;$;-; +6; A;M;a;u; ~;;;;;; +; +;;; + < < !</<3<M< ^< h<!r<< <<< < <<<= ==0= F=R= +e=p== == == +===>->2> 8>!E>g>!>#>> > +>9>U3?=?<?=@"B@?e@@@ @@@@(@, A8AHAZAkA +|AAAAJA BB-BFB `B mB zB BBBB;BC6C EC RC^CxC C CC C C CCC D D&DCDUDiD|DDDDDDDE+EIEaEEE E E EE E EE#E #F/F AFMFbFyF6FFFFF G7GNGlGGGGGG G GGG H H >HJH_HeH +lH +wHH HHH HH +HHH HI +I"IBI _IkI}III IIIJJ(J4=JrJJJJJJJ.KECKK K KK K KKL +L L $L +0L;L LL +XLcLrL LLLLLNdM +MMMMM MMN"N8N#RNvNN NNNNN#O6OTO hOuOOOO$OOP 0P:PJPdPxP!PPPP +PPQ Q$QCQ^QuQQQ QQQQR'R>R WReRxR RRRRRRRS +(S3SCS"]SSS SSSST T=0T6nTSTJTDU]UpU UUUUUUU +V V(V7VLV_V sVVVV VVVWW6WQWiW }WWWWWWWW)XNX%YK9Z=ZZ*G[r[\3\T\?C]`]2]^^4_/_```````aaa0a6aIa\aya a aa;aa a bb *b7b LbZbjb#~b bb b b&bc +c$c7cGcac"scccccccd$d9dIdXd idvdd ddddd+d ee"e )e6e =eJe Ze +heseyeee e e8eveZfafyff f ff f!ffg/gJgcggggggggg g h h h-h6h ?hLh\h khwh h hhh!hhii#$i Hi Viciji +pi {i iiiii +i i +i ijjKj1jj7j1j5kHtUtʕ`?*0 &466omݘߘ4##GGXXUOWnw +   śΛ# #)8?H[nw   Ɯ ݜ 0 Op v  ǝѝ    $ ++6 >KSs | ٞ͞ + + ;I ] ky ϟ   +" < F +S^dsʠ۠ ' H R\ dn t ȡϡաܡ    + +'2KT \f ly  Ȣբ  4C +cn  Σ ݣ  !<EM`v  ǤͤԤ +ܤ    +  + 9 F P ]j {  + ĥͥ ܥ  #* 3 @ N[ d r Ħ Ӧ   !.4=Nas(է41N/ƨ֨  %#6 Z{" + !*@ Q]dl| + +Ǫ +Ҫݪ   +4?PV +_jpy~ ͫܫ + 5S eo ! ج  +: EQX\diou |  .ŭy(_˯F+7rB9L'`t<ձh?{1=R+I~4ȳ9.7=f41ٴ   + +8 +C NZk +z ĵ޵-EZlu~    Ķ ζ +۶     +  ++ +6A +FQF`{(#.L&{ +Ѹظ ": N [h Թ  !7M]m$029Oh{ͻ*= D Q[kr  Ǽټ!!$4:JwS +˾־   &3:M dq8>- D Q ^ho    '5 <FYm'!   -M']   4DK[k ~   rT Yg x +9:BZ</T +"_*0%**Un   +0Lbx  &B^r   +   -'C6k-'-,&$Sx8$$!=F_:!'/+/[!"  # *4D +U` gt 8  % /=Qbv 5    '5< +MXq  0=+P| Q Xb iv ,,Kjq 2 3(B\"{"(/"*= hr$':Yo#   (5 Q [ +hs  #$* OYi"y  '8L b l y  (-V j w         & 3 @Mi  2 !. 5?OV ]gz    ")3I9}9   $1BI _ m w      -I b o |     + #*=Pcv    .; R_ r      %  +/:Mg-z''$!:*\0 /E&e( '>AG +' :G Zd$t$ +>Qg~""JAJ_JJA@ApA5JwBrHxJM rZ      0 =JZ jw*:JZq +$ + 6L bo       /9 I Vcs $  ' :D KPX T^q   *   ,9 +J Ub g s  ZMbn DhPW1J Q_pw    )6=D KU\ l y   '"5X mz     % %FlEs  6&B??  +" 6 DRYicy>k8-( 8 E R_ u $  ?# c p z      + + +%0A HR ku |] !=!Su|   ?-3! Ub&s   0,G9t999"\|3  * $; `m } +,<Pn   % ,8N^r  ! 9GP  W  a n       9   +% +8 + N + [ +h +y + + + + + + $ > U p  w     ?  ! '  = G  K  Y c t          6  M W ^ e  ~          ,9 LY l +z +   +' AK"[~ '  3=AH Y f s    %?"X { !  "/? O\ c p}     ' 4A Wdw  + +$ +5 <I\o      $4 D Q ^k   ' "CSn'      *?=?}    )6I \ fs  '7 >K an3Ob~ +   S.J +y(! +!9[ +bmt  -M^o'' &7Pi- +. A NX _ +lw~      !  :  G  Q ^  n x   <      !)!0!""" ##"#1# 8##E#i#0# ### ### $ $ $!$1$A$Q$ X$ b$l$s$z$$ $ $$$ $ $ %% %:% +K%V%!^% %%%%%%%& & &"&5& L&Y& l&y&& && && &&'';' B' L'Y'y''''' '=(N@(<(;(A)*J);u))) )) ))$*$%* J* W* d* q*~****A* + '+4+T+g+ w+ +++++0+,.,>,N,!^,,, , , , , , ,,- -- 7-A-T-d-t-------$.7.$J. o.|......./+'/S/i/ y/ / //,////0 $0610h00 0000 0 0 011 .1;1Q1 a1n1 +u11 1 +111 1 1 1 12 2 *272 V2"c22 222"233.3B3X3k33,3!333!4:4 M4Z4)s4;44455 25 ?5I5e5 l5 y5 5 55 5 555556 6%6N66777,737 :7F7\7l777 77 77778/8 G8U8 \8h8~8888 88 889939Q9 i9w9~999 9999::1: G:Q:g:}:::: ::; ;$;:;M;d;;;;;;;$;<+< A<K<^<q<<<%<+<1=+7=c=v===== == ==> %>/>?>O>_> o>y>>>>$>>?+?D?]?v????????@*@T@&ABB*XBB'C-CC-[D?D3D6D$4EzYEE0F-FGGG GGGGH H H&H-HRct ǃՃ + *8 +O Z +h +s~Ԅ0DU +u +  + Å݅ +  + +# +.9J[ +c +n +y + +  † +І +ۆ   + +   +& +1 +<G [iz + + +ˇ  5 F T +b +mxň +͈ +؈ + +'/C#] + + + ʉ +؉->Oct ϊ݊ + # 4BS +d +o +z + + +Ë΋  +   +4? +Vai +q|ڌ + /@Q4b + +ҍ4+D.p  +؎ +%-Sp +.Ï + + +- +8CZ +t +ː  + +   +%0 +A +L W +x +   + +Ƒ +ё!ܑ  % +3>Q +Zem +> + % +,7Qmȓ ϓٓ ݓ   );(Qzeo, "*22$LaTLx!KW( M)-@,hW) ,yH\ d,}FFGP&#y)8GsfJ~dYq[#.A +#){ +^6l =(SM-5IVnwW I9q@$* P5 g6JMI>o, B0f;c&x/>x5 80?F1S;EMl` +h%vy|<5UK# KO1;ka 0;i=gHVk {SC!BDB2 +jnX^D >y : +p Hs3 3Cqbu|@n 9  ]^(v k(pMCT%sgezzn&5 -h}E_/ +_w9 Gq)FB D +$`]4nEV]] d79o;~/9[r1&<phtgwpUtTRW? :(? D +Tu7X]a"AvJgK(y=$$w3 Vb/U%5N Z@:L$D~QEZ^VF 4 5V:(CxZ 0rK%mx`.LN*OQuX }II|_Zsh~ H"d,{4Z} .*E%1b6>tH:ZBm1 ^"tR8aj@! <bz6Ur8GRSNc.E7}6 e/3 X ='45 2'y'}uO+NG5T= iH CF^[37ueNLtScwAOc fk:(C#cRtG% pm[Q7f{BR>zmYT oj9&-3Wao!2s]w bJxl~ +6]pP@'sz% qs 8 {d[vnS P1X~/|?P)Rr-Pj9;88 jD7FN- U}Yg8U{!~qe_c,l , I bY[hhj2A3YysA0-[4 {>P7rt4ujYDfV^NM^W :3TM~Ow"?" "C RAOQ*#r:}0Z[P&zAig|', M Wcv_$Y<Le3@i_b#ryvp\\`0 )/ipgOa*[8`?by /~f'rG $lqas aDJ"+ 3 F{\(+&|!-Mf+dvEq>6 G05=Te`' ?t4 "Ikonf6hdL  +. k>L!XW&7OG1,0 Q@ d$Rc  w/0  iU  .iO6H + x;; u zK/+9 #)lFwX=Q!Au*}\4Jj 2 f#m`!-Z={ l|U221WQ|A#@>z%1Im %?B<]\ 6mm|& dj8=JlSDkzvY:U.K"kgNJV`$ nXHCr< <^4)NE( _2 ++BYm4e<*x`CxR?qivu\SIEi_ .k;]\oeTH7p'oQK' b&P.h7 Xa**9_\l'VBn1QL.c%+ )+<S9o-t!ZKJ  Invalid option "%s" Usage: %s [option ... ] [file ... ] @@ -345,7 +335,7 @@ Make sure a proper setup for your display environment exists.GIMP help browserGIMP is not properly installed for the current user. User installation was skipped because the '--no-interface' flag was used. To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Generate optimum paletteGet Monitor ResolutionGiganticGimprc proceduresGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient:GradientsGradients MenuGrain extractGrain mergeGrayGrayscaleGreenGreen:GridGrid line spacingGrow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_counter-clockwise hue)HSV (clockwise _hue)HTML notation:H_eight:H_elp browser to use:Handle position: %0.6fHard edgeHard lightHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHelp proceduresHex:HighlightsHint for the _docks:Hint for the _toolbox:HintingHinting alters the font outline to produce a crisp bitmap at small sizesHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB color layers.Hue-_Saturation...Hue:HugeI_con & TextI_mageI_mport Path...I_nterpolation:I_nterval:IconIcon & descIcon & textIf available, hints from the font are used but you may prefer to always use the automatic hinterIf enabled, the move tool changes the active layer or path when a layer or path is being picked. This used to be the default behaviour in older versions.If you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.Illegal variable name in environment file %s: %sImageImage + GridImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage ThumbnailsImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage maskImage resolution is out of bounds, using the default resolution instead.Image sizeImage sourceImage typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport paletteImport pathsImported PathIn_kIn_vertIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorIndexed Color ConversionIndexed color layers are always scaled without interpolation. The chosen interpolation type will affect channels and masks only.Info WindowInitial zoom _ratio:Initialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' -InkInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratioKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine +InkInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine spacing:Line Width:Line _Style:Line style used for the grid.LinearLinked itemLoadLoad CurvesLoad LevelsLoad Right Color Fr_omLoad curves settings from fileLoad levels settings from fileLoad text from fileLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower Path to _BottomLower channelLower channel to bottomLower layerLower layer to bottomLower pathLower path to bottomM_agnifyM_asterM_ove to Screen...Ma_pMagentaMagenta:MagnifyMake _transparentManage Loadable ModulesMarching _ants speed:Mask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:Max Depth:Maximum _filesize for thumbnailing:Maximum _new image size:Maximum color differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMeasure the rulers and enter their lengths:Median:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMerge vectorsMessage proceduresMessage repeated %d times.Message repeated once.Messages are redirected to stderr.MidtonesMigrate User SettingsMinimal number of _undo levels:MiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMouse WheelMoveMove AnchorsMove ChannelMove Floating SelectionMove GuideMove Guide: Move LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove ToolMove itemMove layers & selectionsMove selectionMove the current layerMove the current pathMove the selected filter downMove the selected filter upMove to Screen...Move: MultiplyN_umber of colors:Na_vigationNa_vigation WindowNa_vigation preview size:NameName:NavigationNew ChannelNew Channel ColorNew Channel OptionsNew Color from _BGNew Color from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channelNew channel with last valuesNew channel...New color from BGNew color from FGNew gradientNew importNew layerNew layer with last valuesNew layer...New paletteNew path with last valuesNew path...New patternNew vectorsNo brushes available for use with this tool.No filter selectedNo linear gradients found in '%s'No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of _processors to use:Number of grid linesNumber of layers:O_ther...OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset by x/_2, y/2Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the palette selection dialogOpen the pattern selection dialogOpen the selected entryOpening '%s' failed: %sOpening '%s' failed: %sOptions: @@ -394,7 +384,7 @@ did not save indexed colormaps correctly. Substituting grayscale map.YYellowYellow:You are trying to create an image with a size of %s.You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your input device settings will be reset to default values the next time you start GIMP.Your keyboard shortcuts will be reset to default values the next time you start GIMP.Your window setup will be reset to default values the next time you start GIMP.Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_All_Anchor Layer_Antialiasing_Arbitrary Rotation..._Artistic_Aspect_Auto_B_BG Color_Background color:_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Bucket Fill_Buffer_By Color_By Color Select_C_Cap style:_Channels_Clear Errors_Clear Undo History_Clone_Close_Close Tab_Clouds_Color Tools_Colors_Configure Color and Opacity..._Context_Context Help_Copy_Copy Named..._Create Image from Template..._Crop & Resize_Crop Image_Curved_Curves..._Dark Check Color_Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Desaturate_Detach Tab_Device Status_Dialogs_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Ellipse Select_Enable layer & channel previews_Enormous_Equalize_Eraser_FG Color_File_Fill with:_Fit Image in Window_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground color:_Free Select_G_Generic_Gigantic_Gradient_Gradients_Grayscale_Grayscale copy of layer_Grow..._Guides_Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Info Window_Intersect with Selection_Invert_Join style:_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Left Neighbor's Right Endpoint_Levels..._Light Check Color_Light Effects_Lightness:_Line Style_Linear_Linked_Load Left Color From_Lower Channel_Lower Layer_Lower Path_M_Manually_Map_Mask_Mask to Selection_Maximum number of colors:_Measure_Medium_Merge Palettes..._Merge imported paths_Migrate GIMP 2.0 user settings_Misc. Stuff_Miter limit:_Mode_Module Manager_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._Padding Color_Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preferences_Preview_Preview Size_Previous tip_Print Size..._Properties_Quick Mask Active_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Reassign shortcut_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Remove unused colors from final palette_Render_Replace_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Order & Visibility_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Right Endpoint_Right Neighbor's Left Endpoint_Rotate_Saturation:_Save_Save Left Color To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Scale imported paths to fit image_Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Show Image Selection_Show in Toolbox_Sinusoidal_Small_Smudge_Snap distance:_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tool_Tools_Transfer layer's alpha channel_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Visible_Web_Web browser to use:_White (full opacity)_White Balance_Width:_Wrap around_X resolution:_X:_Xtns_Y_Y resolution:_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for icon typeinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetermillimetersminuten/apercentpicapicaspixelpixelspixels/%apixels/%spointpointssecondtips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: gimp Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-19 03:11+0100 +POT-Creation-Date: 2004-12-28 16:58+0100 PO-Revision-Date: 2004-11-24 19:30+0800 Last-Translator: Yuheng Xie Language-Team: zh_CN @@ -446,7 +436,7 @@ 请确定您的显示环境已经正确安装。GIMP 帮助浏览器当前用户还没有正确安装 GIMP。 由于用了“--no-interface”标志,用户安装被跳过。 需要进行用户安装,请去掉“--no-interface”标志运行 GIMP。GIMP 使用有限的内存空间来储存图像数据,称为“平铺缓存”。您可以调整它的大小使内存能够容纳。请考虑其它执行进程的内存占用情况。GIMP 使用附加的 gtkrc 文件,您可以通过配置使它看起来跟别的 GTK 应用程序不一样。GIMP 版本如果试图创建一幅所需内存比此处指定的大小还要大的图像,GIMP 将警告用户。Gamma常规通常只对 8 位显示,此处设置分配给 GIMP 的系统颜色的最小数量。生成优化色板获取监视器分辨率极大Gimprc 过程玻璃效果(_S)渐变渐变编辑器渐变编辑器菜单渐变文件夹渐变段的左端点的颜色渐变段的右端点的颜色渐变用户界面渐变:渐变渐变菜单增益提取增益合并灰度灰度绿色绿色:网格网格线间距通道增长选区增长增长距离参考线参考线和网格吸附参考线过程HSVHSV (%0.3f, %0.3f, %0.3f)HSV (逆时针色调)(_C)HSV (顺时针色调)(_H)HTML 格式:高度(_E):要使用的帮助浏览器(_E):支点位置:%0.6f硬质边界硬光硬度硬度:高度高度:帮助帮助浏览器帮助系统帮助浏览器没有启动找不到帮助浏览器帮助过程十六进制:明亮停靠栏的窗口类型提示(_D):工具箱的窗口类型提示(_T):微调微调将修改字体的轮廓,使之产生清晰的小尺寸位图直方图(_M)直方图直方图尺度历史水平第一条网格线的水平位移;可以是负数。网格的水平间距。在文件菜单中保留多少个最近打开图像的文件名。色调色调-饱和度只有 RGB 颜色的图层可以进行色调-饱和度操作。色调-饱和度(_S)...色调:庞大图标和文字(_C)图像(_M)导入路径(_M)...插值(_N):间隔(_N):图标图标和描述图标和文字一般只在字体提供微调时才进行微调,但是您也可以首选总是使用自动微调如果启用,当拾取某个图层或路径时,移动工具将改变活动图层或路径。在旧的版本中,这是默认的行为。如果您不保存图像,%s前所作的修改将会丢失。如果您现在退出 GIMP,这些修改将会丢失。环境文件 %s 中含有非法变量名:%s图像图像 + 网格图像编辑器图像信息图像菜单图像大小图像状态栏格式图像模板图像缩略图图像标题和状态栏格式图像标题格式图像窗口外观图像窗口图像没有包含任何可见图层图像文件图像蒙板图像分辨率超出范围,使用默认的分辨率替代。图像大小图像源图像类型图像显示图像菜单导入选项导入色板导入路径从 SVG 导入路径导入新的色板导入色板导入路径导入的路径墨水(_K)反相(_V)反转蒙板(_V)增值缩进:第一行的缩进深度索引:索引索引颜色索引颜色转换索引颜色图层缩放时总不插值。所选的插值类型将只影响通道和蒙板。信息窗口初始缩放比率(_R):初始化图层蒙板为:正在初始化插件正在初始化插件:“%s” -墨水输入控制器输入设备输入色阶插入锚点安装私用颜色表;对 8 位(256 色)显示可能有用。安装失败。请与系统管理员联系。安装成功。点击“继续”进入下一步。立即更新智能剪刀(_S)强度:%0.3f 不透明度:%0.3f界面内部 GIMP 过程内部过程插值:相交与当前选区相交交叉(十字线)交叉(点)无效的 UTF-8文件“%s”中含有无效的 UTF-8 数据。XCF 文件中含有无效的 UTF-8 字符串画笔文件“%s”中含有无效的 UTF-8 字符串。渐变文件“%s”中含有无效的 UTF-8 字符串。色板文件“%s”中含有无效的 UTF-8 字符串。图案文件“%s”中含有无效的 UTF-8 字符串。URI 中有无效的字符序列无效的快捷键。无效的宽度或高度。两者都必须为正。反转反转通道反转选区不能对索引图层进行反相操作。反转选区这是您所希望的吗?您看来曾经使用过 GIMP 2.0。项目属性项目可见性对齐:保持透明部分保持在上方保持宽高比 %s保持宽高比保持宽高比 %s保持高度 %s保持透明部分保持宽度 %s下键下键(Alt)下键(Control + Alt)下键(Control)下键(Shift + Alt)下键(Shift + Control + Alt)下键(Shift + Control)下键(Shift)左键左键(Alt)左键(Control + Alt)左键(Control)左键(Shift + Alt)左键(Shift + Control + Alt)左键(Shift + Control)左键(Shift)右键右键(Alt)右键(Control + Alt)右键(Control)右键(Shift + Alt)右键(Shift + Control + Alt)右键(Shift + Control)右键(Shift)上键上键(Alt)上键(Control + Alt)上键(Control)上键(Shift + Alt)上键(Shift + Control + Alt)上键(Shift + Control)上键(Shift)GIMP 中的快捷键可以动态重定义。menurc 是您的当前设置的导出,以便下次会话时恢复。如果您愿意您也可以编辑这个文件,不过在 GIMP 中定义快捷键会更容易。删除这个文件将恢复默认的快捷键设置。键盘快捷键从左到右左端点的颜色(_E)...横向大大(256x256)增大预览上次出错:图层图层“%s”没有 alpha 。图层将放在它上面。图层属性图层边界大小(_O)...图层填充类型图层蒙板到选区图层选择图层大小图层模式(_M)图层名字(_N):图层无法再降低。图层无法再升高。图层已经位于底端。图层已经位于顶端。图层到图像大小图层降至底端(_B)图层到图像大小(_I)图层升至顶端(_T)图层的 Alpha 通道(_A)图层图层菜单图层合并选项左端点的颜色左对齐长度:每次启动时让 GIMP 尝试恢复您上次保存的会话。色阶索引图层不能调整色阶。浅色方格的颜色仅变亮线行 +墨水输入控制器输入设备输入色阶插入锚点安装私用颜色表;对 8 位(256 色)显示可能有用。安装失败。请与系统管理员联系。安装成功。点击“继续”进入下一步。立即更新智能剪刀(_S)强度:%0.3f 不透明度:%0.3f界面内部 GIMP 过程内部过程插值:相交与当前选区相交交叉(十字线)交叉(点)无效的 UTF-8文件“%s”中含有无效的 UTF-8 数据。XCF 文件中含有无效的 UTF-8 字符串画笔文件“%s”中含有无效的 UTF-8 字符串。渐变文件“%s”中含有无效的 UTF-8 字符串。色板文件“%s”中含有无效的 UTF-8 字符串。图案文件“%s”中含有无效的 UTF-8 字符串。URI 中有无效的字符序列无效的快捷键。无效的宽度或高度。两者都必须为正。反转反转通道反转选区不能对索引图层进行反相操作。反转选区这是您所希望的吗?您看来曾经使用过 GIMP 2.0。项目属性项目可见性对齐:保持透明部分保持在上方保持宽高比 %s保持宽高比 %s保持高度 %s保持透明部分保持宽度 %s下键下键(Alt)下键(Control + Alt)下键(Control)下键(Shift + Alt)下键(Shift + Control + Alt)下键(Shift + Control)下键(Shift)左键左键(Alt)左键(Control + Alt)左键(Control)左键(Shift + Alt)左键(Shift + Control + Alt)左键(Shift + Control)左键(Shift)右键右键(Alt)右键(Control + Alt)右键(Control)右键(Shift + Alt)右键(Shift + Control + Alt)右键(Shift + Control)右键(Shift)上键上键(Alt)上键(Control + Alt)上键(Control)上键(Shift + Alt)上键(Shift + Control + Alt)上键(Shift + Control)上键(Shift)GIMP 中的快捷键可以动态重定义。menurc 是您的当前设置的导出,以便下次会话时恢复。如果您愿意您也可以编辑这个文件,不过在 GIMP 中定义快捷键会更容易。删除这个文件将恢复默认的快捷键设置。键盘快捷键从左到右左端点的颜色(_E)...横向大大(256x256)增大预览上次出错:图层图层“%s”没有 alpha 。图层将放在它上面。图层属性图层边界大小(_O)...图层填充类型图层蒙板到选区图层选择图层大小图层模式(_M)图层名字(_N):图层无法再降低。图层无法再升高。图层已经位于底端。图层已经位于顶端。图层到图像大小图层降至底端(_B)图层到图像大小(_I)图层升至顶端(_T)图层的 Alpha 通道(_A)图层图层菜单图层合并选项左端点的颜色左对齐长度:每次启动时让 GIMP 尝试恢复您上次保存的会话。色阶索引图层不能调整色阶。浅色方格的颜色仅变亮线行 间距:线宽:线风格(_S):网格使用的线型。线性链接的项目加载加载曲线加载色阶右端颜色加载自(_O)从文件中加载曲线设置从文件中加载色阶设置从文件中加载文本正在加载预览 ...位置:对数长划正在查找数据文件降低通道通道移至底端通道降至底端(_B)降低图层图层移至底端降低路径路径移至底端路径降至底端(_B)降低通道通道降至底端降低图层图层降至底端降低路径路径降至底端放大镜(_A)主值(_A)移动至屏幕(_O)...映射(_P)品红品红:放大镜透明(_T)管理可加载模块蚂蚁线速度(_A):蒙板不透明度:掩蔽选中区域(_S)掩蔽非选中区域(_U)矩阵:最大深度:缩略图最大文件大小(_F):最大新建图像大小(_N):最大颜色差异最大撤销内存(_M):平均值:测量测量距离和角度测量距离和角度测量尺子并输入它们的长度:中值:中中划向下合并(_W)向下合并合并图层合并色板合并可见图层合并可见路径合并可见图层(_L)...合并可见图层(_V)...合并可见路径(_V)合并图层合并色板合并向量消息过程消息重复了 %d 次。消息重复了 1 次。消息已被重定向到 stderr。中等深浅移植用户设置最小撤销次数(_U):杂项斜接模式模式:修改选中的颜色修改选中范围的颜色色阶修改所有的颜色修改行距模块文件夹模块管理器模块路径模块鼠标光标鼠标滚轮移动移动多个锚点移动通道移动浮动选区移动参考线移动参考线:移动图层移动图层蒙板移动路径移动选区移动文字图层移动工具移动项目移动图层和选区移动选区移动当前图层移动当前路径选中的滤镜下移选中的滤镜上移移动至屏幕...移动:相乘颜色数量(_U):导航(_V)导航窗口(_V)导航预览大小(_V):名字名字:导航新建通道新建通道颜色新建通道选项添加背景色(_B)添加前景色(_F)新建图像新建图层新建路径新建路径选项新建模板新建画笔新建通道按上次的值新建通道新建通道...添加背景色添加前景色新建渐变新的导入新建图层按上次的值新建图层新建图层...新建色板按上次的值新建路径新建路径...新建图案新建向量没有可供此工具使用的画笔。未选择滤镜“%s”中未找到线性渐变已经不可用“%s”中未找到路径缓冲区中未找到路径没有可供此操作使用的图案。未选择没有选区可勾画。无缩略图不对齐无无(最快)正常普通(128x128)正常点普通窗口不是普通文件没有足够多的可见图层可合并。至少需要两个。没有足够多的可见路径可合并。至少需要两个。处理器使用数量(_P):网格线数量图层数量:其它(_T)...位移通道位移位移可绘图层位移图层蒙板位移位移 x/2,y/2(_2)位移:在磁盘上在多处理器的机器上,如果 GIMP 已经以 --enable-mp 编译,此处设置 GIMP 应该同时使用的处理器数目。仅在内存打开为图层(_E)...不透明度不透明度:打开打开图像打开图像为图层打开位置打开文本文件(UTF-8)打开位置(_L)...最近打开(_R)打开图像对话框打开画笔选择对话框打开字体选择对话框打开渐变选择对话框打开色板选择对话框打开图案选择对话框打开选中的项打开“%s”失败: %s打开“%s”失败:%s选项: diff -uraN gimp-2.2.0/po/zh_CN.po gimp-2.2.1/po/zh_CN.po --- gimp-2.2.0/po/zh_CN.po 2004-12-19 03:11:52.000000000 +0100 +++ gimp-2.2.1/po/zh_CN.po 2004-12-28 16:58:40.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: gimp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-19 03:11+0100\n" +"POT-Creation-Date: 2004-12-28 16:58+0100\n" "PO-Revision-Date: 2004-11-24 19:30+0800\n" "Last-Translator: Yuheng Xie \n" "Language-Team: zh_CN \n" @@ -1017,11 +1017,11 @@ msgid "Remove dangling entries" msgstr "删除已不存在的项目" -#: app/actions/documents-commands.c:252 app/actions/file-commands.c:163 +#: app/actions/documents-commands.c:251 app/actions/file-commands.c:163 #: app/dialogs/file-open-dialog.c:198 app/dialogs/file-open-dialog.c:249 #: app/dialogs/file-open-location-dialog.c:193 -#: app/display/gimpdisplayshell-dnd.c:332 app/widgets/gimplayertreeview.c:802 -#: app/widgets/gimptoolbox-dnd.c:123 +#: app/display/gimpdisplayshell-dnd.c:334 app/widgets/gimplayertreeview.c:804 +#: app/widgets/gimptoolbox-dnd.c:125 #, c-format msgid "" "Opening '%s' failed:\n" @@ -1529,115 +1529,115 @@ msgid "Zoom all" msgstr "完整显示" -#: app/actions/gradient-editor-actions.c:582 +#: app/actions/gradient-editor-actions.c:589 msgid "_Blending Function for Segment" msgstr "段混和函数(_B)" -#: app/actions/gradient-editor-actions.c:584 +#: app/actions/gradient-editor-actions.c:591 msgid "Coloring _Type for Segment" msgstr "段着色类型(_T)" -#: app/actions/gradient-editor-actions.c:587 +#: app/actions/gradient-editor-actions.c:594 msgid "_Flip Segment" msgstr "翻转段(_F)" -#: app/actions/gradient-editor-actions.c:589 +#: app/actions/gradient-editor-actions.c:596 msgid "_Replicate Segment..." msgstr "复制段(_R)..." -#: app/actions/gradient-editor-actions.c:591 +#: app/actions/gradient-editor-actions.c:598 msgid "Split Segment at _Midpoint" msgstr "在中点处分割段(_M)" -#: app/actions/gradient-editor-actions.c:593 +#: app/actions/gradient-editor-actions.c:600 msgid "Split Segment _Uniformly..." msgstr "等分切割段(_U)..." -#: app/actions/gradient-editor-actions.c:595 +#: app/actions/gradient-editor-actions.c:602 msgid "_Delete Segment" msgstr "删除段(_D)" -#: app/actions/gradient-editor-actions.c:597 +#: app/actions/gradient-editor-actions.c:604 msgid "Re-_center Segment's Midpoint" msgstr "重置段中点(_C)" -#: app/actions/gradient-editor-actions.c:599 +#: app/actions/gradient-editor-actions.c:606 msgid "Re-distribute _Handles in Segment" msgstr "重置段支点(_H)" -#: app/actions/gradient-editor-actions.c:604 +#: app/actions/gradient-editor-actions.c:611 msgid "_Blending Function for Selection" msgstr "选区的混和函数(_B)" -#: app/actions/gradient-editor-actions.c:606 +#: app/actions/gradient-editor-actions.c:613 msgid "Coloring _Type for Selection" msgstr "选区的着色类型(_T)" -#: app/actions/gradient-editor-actions.c:609 +#: app/actions/gradient-editor-actions.c:616 msgid "_Flip Selection" msgstr "翻转选区(_F)" -#: app/actions/gradient-editor-actions.c:611 +#: app/actions/gradient-editor-actions.c:618 msgid "_Replicate Selection..." msgstr "复制选区(_R)..." -#: app/actions/gradient-editor-actions.c:613 +#: app/actions/gradient-editor-actions.c:620 msgid "Split Segments at _Midpoints" msgstr "在中点处分割段(_M)" -#: app/actions/gradient-editor-actions.c:615 +#: app/actions/gradient-editor-actions.c:622 msgid "Split Segments _Uniformly..." msgstr "等分切割段(_U)..." -#: app/actions/gradient-editor-actions.c:617 +#: app/actions/gradient-editor-actions.c:624 msgid "_Delete Selection" msgstr "删除选中区域(_D)" -#: app/actions/gradient-editor-actions.c:619 +#: app/actions/gradient-editor-actions.c:626 msgid "Re-_center Midpoints in Selection" msgstr "重置选中区域的中点(_C)" -#: app/actions/gradient-editor-actions.c:621 +#: app/actions/gradient-editor-actions.c:628 msgid "Re-distribute _Handles in Selection" msgstr "重置选中区域的支点(_H)" -#: app/actions/gradient-editor-commands.c:84 +#: app/actions/gradient-editor-commands.c:85 msgid "Left Endpoint Color" msgstr "左端点的颜色" -#: app/actions/gradient-editor-commands.c:86 +#: app/actions/gradient-editor-commands.c:87 msgid "Gradient Segment's Left Endpoint Color" msgstr "渐变段的左端点的颜色" -#: app/actions/gradient-editor-commands.c:186 +#: app/actions/gradient-editor-commands.c:189 msgid "Right Endpoint Color" msgstr "右端点的颜色" -#: app/actions/gradient-editor-commands.c:188 +#: app/actions/gradient-editor-commands.c:191 msgid "Gradient Segment's Right Endpoint Color" msgstr "渐变段的右端点的颜色" -#: app/actions/gradient-editor-commands.c:353 +#: app/actions/gradient-editor-commands.c:358 msgid "Replicate Segment" msgstr "复制段" -#: app/actions/gradient-editor-commands.c:354 +#: app/actions/gradient-editor-commands.c:359 msgid "Replicate Gradient Segment" msgstr "复制渐变段" -#: app/actions/gradient-editor-commands.c:358 +#: app/actions/gradient-editor-commands.c:363 msgid "Replicate Selection" msgstr "复制选中区域" -#: app/actions/gradient-editor-commands.c:359 +#: app/actions/gradient-editor-commands.c:364 msgid "Replicate Gradient Selection" msgstr "复制渐变的选中区域" -#: app/actions/gradient-editor-commands.c:371 +#: app/actions/gradient-editor-commands.c:376 msgid "Replicate" msgstr "复制" -#: app/actions/gradient-editor-commands.c:386 +#: app/actions/gradient-editor-commands.c:391 msgid "" "Select the number of times\n" "to replicate the selected segment." @@ -1645,7 +1645,7 @@ "选择复制\n" "选中的段的次数。" -#: app/actions/gradient-editor-commands.c:389 +#: app/actions/gradient-editor-commands.c:394 msgid "" "Select the number of times\n" "to replicate the selection." @@ -1653,27 +1653,27 @@ "选择复制所有\n" "选中的段的次数。" -#: app/actions/gradient-editor-commands.c:444 +#: app/actions/gradient-editor-commands.c:452 msgid "Split Segment Uniformly" msgstr "等分切割段" -#: app/actions/gradient-editor-commands.c:445 +#: app/actions/gradient-editor-commands.c:453 msgid "Split Gradient Segment Uniformly" msgstr "等分切割渐变段" -#: app/actions/gradient-editor-commands.c:449 +#: app/actions/gradient-editor-commands.c:457 msgid "Split Segments Uniformly" msgstr "等分切割段" -#: app/actions/gradient-editor-commands.c:450 +#: app/actions/gradient-editor-commands.c:458 msgid "Split Gradient Segments Uniformly" msgstr "等分切割渐变段" -#: app/actions/gradient-editor-commands.c:462 +#: app/actions/gradient-editor-commands.c:470 msgid "Split" msgstr "分割" -#: app/actions/gradient-editor-commands.c:478 +#: app/actions/gradient-editor-commands.c:486 msgid "" "Select the number of uniform parts\n" "in which to split the selected segment." @@ -1681,7 +1681,7 @@ "选择等分切割\n" "选中的段的份数。" -#: app/actions/gradient-editor-commands.c:481 +#: app/actions/gradient-editor-commands.c:489 msgid "" "Select the number of uniform parts\n" "in which to split the segments in the selection." @@ -2118,7 +2118,7 @@ #: app/actions/layers-commands.c:232 app/actions/layers-commands.c:234 #: app/actions/layers-commands.c:291 app/actions/layers-commands.c:295 -#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:840 +#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:842 msgid "New Layer" msgstr "新建图层" @@ -2130,7 +2130,7 @@ msgid "Set Layer Boundary Size" msgstr "设置图层边界大小" -#: app/actions/layers-commands.c:512 app/core/gimplayer.c:255 +#: app/actions/layers-commands.c:512 app/core/gimplayer.c:253 msgid "Scale Layer" msgstr "缩放图层" @@ -2142,7 +2142,7 @@ msgid "Layer Mask to Selection" msgstr "图层蒙板到选区" -#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1085 +#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1066 #: app/dialogs/layer-add-mask-dialog.c:62 msgid "Add Layer Mask" msgstr "添加图层蒙板" @@ -2686,7 +2686,7 @@ msgstr "打开文本文件(UTF-8)" #: app/actions/text-editor-commands.c:132 app/config/gimpconfig-utils.c:552 -#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:393 +#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:396 #: app/core/gimpbrushgenerated.c:601 app/core/gimpbrushpipe.c:338 #: app/core/gimpgradient-load.c:63 app/core/gimppalette.c:360 #: app/core/gimppattern.c:328 app/tools/gimpimagemaptool.c:608 @@ -4448,7 +4448,7 @@ msgid "FG to Transparent" msgstr "前景到透明" -#: app/core/gimp-gui.c:148 +#: app/core/gimp-gui.c:153 msgid "GIMP" msgstr "GIMP" @@ -4480,39 +4480,54 @@ msgid "Modules" msgstr "模块" -#: app/core/gimpbrush.c:531 +#: app/core/gimpbrush.c:534 #, c-format msgid "Could not read %d bytes from '%s': %s" msgstr "无法从“%2$s”中读取 %1$d 字节:%3$s" -#: app/core/gimpbrush.c:566 +#: app/core/gimpbrush.c:554 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Width = 0." +msgstr "画笔文件“%s”出现严重解析错误:未知深度 %d。" + +#: app/core/gimpbrush.c:563 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Height = 0." +msgstr "画笔文件“%s”出现严重解析错误:文件已损坏。" + +#: app/core/gimpbrush.c:572 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Bytes = 0." +msgstr "画笔文件“%s”出现严重解析错误:文件已损坏。" + +#: app/core/gimpbrush.c:596 #, c-format msgid "Fatal parse error in brush file '%s': Unknown depth %d." msgstr "画笔文件“%s”出现严重解析错误:未知深度 %d。" -#: app/core/gimpbrush.c:579 +#: app/core/gimpbrush.c:609 #, c-format msgid "Fatal parse error in brush file '%s': Unknown version %d." msgstr "画笔文件“%s”出现严重解析错误:未知版本 %d。" -#: app/core/gimpbrush.c:595 app/core/gimpbrush.c:715 +#: app/core/gimpbrush.c:625 app/core/gimpbrush.c:745 #, c-format msgid "Fatal parse error in brush file '%s': File appears truncated." msgstr "画笔文件“%s”出现严重解析错误:文件看来已被截断。" -#: app/core/gimpbrush.c:603 app/core/gimpbrushgenerated.c:648 +#: app/core/gimpbrush.c:633 app/core/gimpbrushgenerated.c:648 #: app/core/gimpbrushpipe.c:354 #, c-format msgid "Invalid UTF-8 string in brush file '%s'." msgstr "画笔文件“%s”中含有无效的 UTF-8 字符串。" -#: app/core/gimpbrush.c:610 app/core/gimpcontext.c:1299 -#: app/core/gimpitem.c:479 app/core/gimppattern.c:400 +#: app/core/gimpbrush.c:640 app/core/gimpcontext.c:1299 +#: app/core/gimpitem.c:480 app/core/gimppattern.c:400 #: app/dialogs/template-options-dialog.c:80 app/tools/gimpvectortool.c:339 msgid "Unnamed" msgstr "未命名" -#: app/core/gimpbrush.c:704 +#: app/core/gimpbrush.c:734 #, c-format msgid "" "Fatal parse error in brush file '%s': Unsupported brush depth %d\n" @@ -4677,11 +4692,11 @@ "%s" #: app/core/gimpdatafactory.c:411 app/core/gimpdatafactory.c:414 -#: app/core/gimpitem.c:274 app/core/gimpitem.c:277 +#: app/core/gimpitem.c:275 app/core/gimpitem.c:278 msgid "copy" msgstr "副本" -#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:286 +#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:287 #, c-format msgid "%s copy" msgstr "%s副本" @@ -4744,7 +4759,7 @@ msgid "Rotate" msgstr "旋转" -#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:259 +#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:257 msgid "Transform Layer" msgstr "变换图层" @@ -5102,7 +5117,7 @@ #. pixel size #: app/core/gimpimagefile.c:624 app/dialogs/info-window.c:552 -#: app/widgets/gimpsizebox.c:552 app/widgets/gimptemplateeditor.c:637 +#: app/widgets/gimpsizebox.c:429 app/widgets/gimptemplateeditor.c:637 #: app/widgets/gimptemplateeditor.c:673 #, c-format msgid "%d x %d pixels" @@ -5122,15 +5137,15 @@ msgid "Could not open thumbnail '%s': %s" msgstr "无法打开缩略图文件“%s”:%s" -#: app/core/gimpitem.c:1096 +#: app/core/gimpitem.c:1103 msgid "Attach Parasite" msgstr "" -#: app/core/gimpitem.c:1106 +#: app/core/gimpitem.c:1113 msgid "Attach Parasite to Item" msgstr "" -#: app/core/gimpitem.c:1145 app/core/gimpitem.c:1152 +#: app/core/gimpitem.c:1152 app/core/gimpitem.c:1159 msgid "Remove Parasite from Item" msgstr "" @@ -5156,37 +5171,37 @@ msgid "Floating Selection to Layer" msgstr "浮动选区到图层" -#: app/core/gimplayer.c:252 app/pdb/internal_procs.c:152 +#: app/core/gimplayer.c:250 app/pdb/internal_procs.c:152 msgid "Layer" msgstr "图层" -#: app/core/gimplayer.c:253 +#: app/core/gimplayer.c:251 msgid "Rename Layer" msgstr "重命名图层" -#: app/core/gimplayer.c:254 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 +#: app/core/gimplayer.c:252 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 msgid "Move Layer" msgstr "移动图层" -#: app/core/gimplayer.c:256 +#: app/core/gimplayer.c:254 msgid "Resize Layer" msgstr "图层改变大小" -#: app/core/gimplayer.c:257 +#: app/core/gimplayer.c:255 msgid "Flip Layer" msgstr "翻转图层" -#: app/core/gimplayer.c:258 +#: app/core/gimplayer.c:256 msgid "Rotate Layer" msgstr "旋转图层" -#: app/core/gimplayer.c:341 app/core/gimplayer.c:1129 +#: app/core/gimplayer.c:339 app/core/gimplayer.c:1110 #: app/core/gimplayermask.c:236 #, c-format msgid "%s mask" msgstr "%s蒙板" -#: app/core/gimplayer.c:387 +#: app/core/gimplayer.c:385 #, c-format msgid "" "Floating Selection\n" @@ -5195,39 +5210,39 @@ "浮动选区\n" "(%s)" -#: app/core/gimplayer.c:1055 +#: app/core/gimplayer.c:1036 msgid "Cannot add layer mask to layer which is not part of an image." msgstr "无法给不属于图像的一部分的图层添加图层蒙板。" -#: app/core/gimplayer.c:1062 +#: app/core/gimplayer.c:1043 msgid "Unable to add a layer mask since the layer already has one." msgstr "无法添加图层蒙板,因为已有一个。" -#: app/core/gimplayer.c:1069 +#: app/core/gimplayer.c:1050 msgid "Cannot add layer mask to a layer with no alpha channel." msgstr "无法给没有 alpha 通道的图层添加图层蒙板。" -#: app/core/gimplayer.c:1079 +#: app/core/gimplayer.c:1060 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "无法添加跟指定图层尺寸不同的图层蒙板。" -#: app/core/gimplayer.c:1183 +#: app/core/gimplayer.c:1164 msgid "Transfer Alpha to Mask" msgstr "转移 Alpha 到蒙板" -#: app/core/gimplayer.c:1343 +#: app/core/gimplayer.c:1324 msgid "Apply Layer Mask" msgstr "应用图层蒙板" -#: app/core/gimplayer.c:1344 +#: app/core/gimplayer.c:1325 msgid "Delete Layer Mask" msgstr "删除图层蒙板" -#: app/core/gimplayer.c:1445 +#: app/core/gimplayer.c:1426 msgid "Add Alpha Channel" msgstr "添加 Alpha 通道" -#: app/core/gimplayer.c:1467 +#: app/core/gimplayer.c:1448 msgid "Layer to Image Size" msgstr "图层到图像大小" @@ -6660,28 +6675,28 @@ msgstr "打印大小" #. the image size labels -#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:241 +#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:222 #: app/widgets/gimptemplateeditor.c:236 msgid "_Width:" msgstr "宽度(_W):" -#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:248 +#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:225 #: app/widgets/gimptemplateeditor.c:243 msgid "H_eight:" msgstr "高度(_E):" #. the resolution labels -#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:338 +#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:273 #: app/widgets/gimptemplateeditor.c:363 msgid "_X resolution:" msgstr "X 分辨率(_X):" -#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:345 +#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:276 #: app/widgets/gimptemplateeditor.c:370 msgid "_Y resolution:" msgstr "Y 分辨率(_Y):" -#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:357 +#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:269 #: app/widgets/gimptemplateeditor.c:383 #, c-format msgid "pixels/%a" @@ -7270,11 +7285,11 @@ msgid "%d minutes" msgstr " %d 分钟" -#: app/display/gimpdisplayshell-dnd.c:96 +#: app/display/gimpdisplayshell-dnd.c:98 msgid "Drop New Layer" msgstr "拖放入新图层" -#: app/display/gimpdisplayshell-dnd.c:140 +#: app/display/gimpdisplayshell-dnd.c:142 msgid "Drop New Path" msgstr "拖放入新路径" @@ -8728,12 +8743,12 @@ msgstr "画笔(_P)" #: app/tools/gimppaintoptions-gui.c:103 app/widgets/gimpbrushselect.c:201 -#: app/widgets/gimplayertreeview.c:330 +#: app/widgets/gimplayertreeview.c:332 msgid "Opacity:" msgstr "不透明度:" #: app/tools/gimppaintoptions-gui.c:108 app/tools/gimpselectionoptions.c:374 -#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:323 +#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:325 msgid "Mode:" msgstr "模式:" @@ -10127,24 +10142,24 @@ msgid "Set Item Exclusive Linked" msgstr "设置项目唯一链接" -#: app/widgets/gimplayertreeview.c:250 +#: app/widgets/gimplayertreeview.c:252 msgid "Reorder Layer" msgstr "重排图层" -#: app/widgets/gimplayertreeview.c:311 +#: app/widgets/gimplayertreeview.c:313 msgid "Keep transparency" msgstr "保持透明部分" -#: app/widgets/gimplayertreeview.c:846 +#: app/widgets/gimplayertreeview.c:848 msgid "Empty Layer" msgstr "空白图层" -#: app/widgets/gimpmessagebox.c:458 +#: app/widgets/gimpmessagebox.c:460 #, c-format msgid "Message repeated %d times." msgstr "消息重复了 %d 次。" -#: app/widgets/gimpmessagebox.c:460 +#: app/widgets/gimpmessagebox.c:462 msgid "Message repeated once." msgstr "消息重复了 1 次。" @@ -10176,16 +10191,12 @@ msgid "Invalid UTF-8" msgstr "无效的 UTF-8" -#: app/widgets/gimpsizebox.c:290 -msgid "Keep aspect ratio" -msgstr "保持宽高比" - -#: app/widgets/gimpsizebox.c:574 +#: app/widgets/gimpsizebox.c:451 #, c-format msgid "%d x %d dpi" msgstr "%d x %d dpi" -#: app/widgets/gimpsizebox.c:578 +#: app/widgets/gimpsizebox.c:455 #, c-format msgid "%d dpi" msgstr "%d dpi" @@ -10627,6 +10638,9 @@ msgid "Image Editor" msgstr "图像编辑器" +#~ msgid "Keep aspect ratio" +#~ msgstr "保持宽高比" + #~ msgid "Y:" #~ msgstr "Y:" diff -uraN gimp-2.2.0/po/zh_TW.gmo gimp-2.2.1/po/zh_TW.gmo --- gimp-2.2.0/po/zh_TW.gmo 2004-12-19 03:11:57.000000000 +0100 +++ gimp-2.2.1/po/zh_TW.gmo 2004-12-28 16:58:45.000000000 +0100 @@ -315,7 +315,7 @@ did not save indexed colormaps correctly. Substituting grayscale map.YellowYellow:You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your input device settings will be reset to default values the next time you start GIMP.Your keyboard shortcuts will be reset to default values the next time you start GIMP.Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_All_Anchor Layer_Antialiasing_Arbitrary Rotation..._Artistic_Aspect_Auto_B_BG Color_Background color:_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes, Patterns & Gradients_Bucket Fill_By Color_C_Channels_Clear Errors_Clear Undo History_Clone_Close_Close Tab_Clouds_Color Tools_Colors_Configure Color and Opacity..._Context Help_Copy_Copy Named..._Create Image from Template..._Crop & Resize_Crop Image_Curved_Curves..._Dark Check Color_Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Desaturate_Detach Tab_Device Status_Dialogs_Discard Changes_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Ellipse Select_Enable layer & channel previews_Enormous_Equalize_Eraser_FG Color_File_Fit Image in Window_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground color:_Free Select_G_Generic_Gigantic_Gradient_Gradients_Grayscale_Grayscale copy of layer_Grow..._Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Info Window_Intersect with Selection_Invert_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Left Neighbor's Right Endpoint_Light Check Color_Light Effects_Lightness:_Linear_Load Left Color From_Lower Channel_Lower Layer_Lower Path_M_Manually_Map_Mask_Mask to Selection_Measure_Medium_Merge Palettes..._Misc. Stuff_Mode_Module Manager_Move_Name:_Nature_New Channel..._New Gradient_New Layer..._New Palette_New Path..._New Pattern_New Template..._New View_New..._Next tip_None_Offset..._Opacity_Open Image_Open..._Padding Color_Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preferences_Preview_Previous tip_Properties_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Render_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Restore Options from_Right Endpoint_Right Neighbor's Left Endpoint_Rotate_Saturation:_Save_Save Left Color To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Sinusoidal_Small_Smudge_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tools_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Web_White (full opacity)_X:_Xtns_Y_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for icon typeinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetermillimetersn/apercentpicapicaspixelpixelspixels/%apixels/%spointpointstips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: gimp 2.1.6 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-19 03:11+0100 +POT-Creation-Date: 2004-12-28 16:58+0100 PO-Revision-Date: 2004-09-27 02:33+0800 Last-Translator: Abel Cheung Language-Team: Chinese (traditional) diff -uraN gimp-2.2.0/po/zh_TW.po gimp-2.2.1/po/zh_TW.po --- gimp-2.2.0/po/zh_TW.po 2004-12-19 03:11:53.000000000 +0100 +++ gimp-2.2.1/po/zh_TW.po 2004-12-28 16:58:41.000000000 +0100 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: gimp 2.1.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-19 03:11+0100\n" +"POT-Creation-Date: 2004-12-28 16:58+0100\n" "PO-Revision-Date: 2004-09-27 02:33+0800\n" "Last-Translator: Abel Cheung \n" "Language-Team: Chinese (traditional) \n" @@ -1046,11 +1046,11 @@ msgid "Remove dangling entries" msgstr "移除已經不存在的項目(_N)" -#: app/actions/documents-commands.c:252 app/actions/file-commands.c:163 +#: app/actions/documents-commands.c:251 app/actions/file-commands.c:163 #: app/dialogs/file-open-dialog.c:198 app/dialogs/file-open-dialog.c:249 #: app/dialogs/file-open-location-dialog.c:193 -#: app/display/gimpdisplayshell-dnd.c:332 app/widgets/gimplayertreeview.c:802 -#: app/widgets/gimptoolbox-dnd.c:123 +#: app/display/gimpdisplayshell-dnd.c:334 app/widgets/gimplayertreeview.c:804 +#: app/widgets/gimptoolbox-dnd.c:125 #, c-format msgid "" "Opening '%s' failed:\n" @@ -1565,153 +1565,153 @@ msgid "Zoom all" msgstr "全部顯示" -#: app/actions/gradient-editor-actions.c:582 +#: app/actions/gradient-editor-actions.c:589 msgid "_Blending Function for Segment" msgstr "該區段中混色所用的函式(_B)" -#: app/actions/gradient-editor-actions.c:584 +#: app/actions/gradient-editor-actions.c:591 msgid "Coloring _Type for Segment" msgstr "區段的著色方式(_T)" -#: app/actions/gradient-editor-actions.c:587 +#: app/actions/gradient-editor-actions.c:594 msgid "_Flip Segment" msgstr "翻轉區段(_F)" -#: app/actions/gradient-editor-actions.c:589 +#: app/actions/gradient-editor-actions.c:596 msgid "_Replicate Segment..." msgstr "複製區段(_R)..." -#: app/actions/gradient-editor-actions.c:591 +#: app/actions/gradient-editor-actions.c:598 msgid "Split Segment at _Midpoint" msgstr "在中點分割區段(_M)" -#: app/actions/gradient-editor-actions.c:593 +#: app/actions/gradient-editor-actions.c:600 msgid "Split Segment _Uniformly..." msgstr "均勻地分割區段(_U)..." -#: app/actions/gradient-editor-actions.c:595 +#: app/actions/gradient-editor-actions.c:602 msgid "_Delete Segment" msgstr "刪除區段(_D)" -#: app/actions/gradient-editor-actions.c:597 +#: app/actions/gradient-editor-actions.c:604 msgid "Re-_center Segment's Midpoint" msgstr "重新將區段中心點置中(_C)" -#: app/actions/gradient-editor-actions.c:599 +#: app/actions/gradient-editor-actions.c:606 msgid "Re-distribute _Handles in Segment" msgstr "重新分配區段中的控制點(_H)" -#: app/actions/gradient-editor-actions.c:604 +#: app/actions/gradient-editor-actions.c:611 msgid "_Blending Function for Selection" msgstr "所有選定的區段中混色所用的函式(_B)" -#: app/actions/gradient-editor-actions.c:606 +#: app/actions/gradient-editor-actions.c:613 msgid "Coloring _Type for Selection" msgstr "所有選定的區段的著色方式(_T)" -#: app/actions/gradient-editor-actions.c:609 +#: app/actions/gradient-editor-actions.c:616 msgid "_Flip Selection" msgstr "翻轉所有選定的區段(_F)" -#: app/actions/gradient-editor-actions.c:611 +#: app/actions/gradient-editor-actions.c:618 msgid "_Replicate Selection..." msgstr "複製所有選定的區段(_R)..." -#: app/actions/gradient-editor-actions.c:613 +#: app/actions/gradient-editor-actions.c:620 msgid "Split Segments at _Midpoints" msgstr "在中點分割所有選定的區段(_M)" -#: app/actions/gradient-editor-actions.c:615 +#: app/actions/gradient-editor-actions.c:622 msgid "Split Segments _Uniformly..." msgstr "均勻地分割所有選定的區段(_U)..." -#: app/actions/gradient-editor-actions.c:617 +#: app/actions/gradient-editor-actions.c:624 msgid "_Delete Selection" msgstr "刪除所有選定的區段(_D)" -#: app/actions/gradient-editor-actions.c:619 +#: app/actions/gradient-editor-actions.c:626 msgid "Re-_center Midpoints in Selection" msgstr "重新將所有選定的區段的中心點置中(_C)" -#: app/actions/gradient-editor-actions.c:621 +#: app/actions/gradient-editor-actions.c:628 msgid "Re-distribute _Handles in Selection" msgstr "重新分配所有選定的區段的控制點(_H)" -#: app/actions/gradient-editor-commands.c:84 +#: app/actions/gradient-editor-commands.c:85 msgid "Left Endpoint Color" msgstr "左端點的顏色" -#: app/actions/gradient-editor-commands.c:86 +#: app/actions/gradient-editor-commands.c:87 msgid "Gradient Segment's Left Endpoint Color" msgstr "漸層區段的左端點顏色" -#: app/actions/gradient-editor-commands.c:186 +#: app/actions/gradient-editor-commands.c:189 msgid "Right Endpoint Color" msgstr "右端點顏色" -#: app/actions/gradient-editor-commands.c:188 +#: app/actions/gradient-editor-commands.c:191 msgid "Gradient Segment's Right Endpoint Color" msgstr "漸層區段的右端點顏色" -#: app/actions/gradient-editor-commands.c:353 +#: app/actions/gradient-editor-commands.c:358 msgid "Replicate Segment" msgstr "複製區段" -#: app/actions/gradient-editor-commands.c:354 +#: app/actions/gradient-editor-commands.c:359 msgid "Replicate Gradient Segment" msgstr "複製漸層區段" -#: app/actions/gradient-editor-commands.c:358 +#: app/actions/gradient-editor-commands.c:363 msgid "Replicate Selection" msgstr "複製選擇區域" -#: app/actions/gradient-editor-commands.c:359 +#: app/actions/gradient-editor-commands.c:364 msgid "Replicate Gradient Selection" msgstr "複製漸層選擇區域" -#: app/actions/gradient-editor-commands.c:371 +#: app/actions/gradient-editor-commands.c:376 msgid "Replicate" msgstr "複製" -#: app/actions/gradient-editor-commands.c:386 +#: app/actions/gradient-editor-commands.c:391 msgid "" "Select the number of times\n" "to replicate the selected segment." msgstr "請指定複製選定區段的次數。" -#: app/actions/gradient-editor-commands.c:389 +#: app/actions/gradient-editor-commands.c:394 msgid "" "Select the number of times\n" "to replicate the selection." msgstr "請指定複製選擇區域的次數。" -#: app/actions/gradient-editor-commands.c:444 +#: app/actions/gradient-editor-commands.c:452 msgid "Split Segment Uniformly" msgstr "均勻地分割區段" -#: app/actions/gradient-editor-commands.c:445 +#: app/actions/gradient-editor-commands.c:453 msgid "Split Gradient Segment Uniformly" msgstr "均勻地分割漸層區段" -#: app/actions/gradient-editor-commands.c:449 +#: app/actions/gradient-editor-commands.c:457 msgid "Split Segments Uniformly" msgstr "均勻地分割所有區段" -#: app/actions/gradient-editor-commands.c:450 +#: app/actions/gradient-editor-commands.c:458 msgid "Split Gradient Segments Uniformly" msgstr "均勻地分割所有漸層區段" -#: app/actions/gradient-editor-commands.c:462 +#: app/actions/gradient-editor-commands.c:470 msgid "Split" msgstr "分割" -#: app/actions/gradient-editor-commands.c:478 +#: app/actions/gradient-editor-commands.c:486 msgid "" "Select the number of uniform parts\n" "in which to split the selected segment." msgstr "請指定您選定的區段應該分為多少等份。" -#: app/actions/gradient-editor-commands.c:481 +#: app/actions/gradient-editor-commands.c:489 msgid "" "Select the number of uniform parts\n" "in which to split the segments in the selection." @@ -2157,7 +2157,7 @@ #: app/actions/layers-commands.c:232 app/actions/layers-commands.c:234 #: app/actions/layers-commands.c:291 app/actions/layers-commands.c:295 -#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:840 +#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:842 msgid "New Layer" msgstr "新增圖層" @@ -2169,7 +2169,7 @@ msgid "Set Layer Boundary Size" msgstr "設定圖層邊界尺寸" -#: app/actions/layers-commands.c:512 app/core/gimplayer.c:255 +#: app/actions/layers-commands.c:512 app/core/gimplayer.c:253 msgid "Scale Layer" msgstr "圖層尺寸" @@ -2181,7 +2181,7 @@ msgid "Layer Mask to Selection" msgstr "圖層遮罩轉換為選擇區域" -#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1085 +#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1066 #: app/dialogs/layer-add-mask-dialog.c:62 msgid "Add Layer Mask" msgstr "新增圖層遮罩" @@ -2737,7 +2737,7 @@ msgstr "開啟文字檔 (UTF-8)" #: app/actions/text-editor-commands.c:132 app/config/gimpconfig-utils.c:552 -#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:393 +#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:396 #: app/core/gimpbrushgenerated.c:601 app/core/gimpbrushpipe.c:338 #: app/core/gimpgradient-load.c:63 app/core/gimppalette.c:360 #: app/core/gimppattern.c:328 app/tools/gimpimagemaptool.c:608 @@ -4533,7 +4533,7 @@ msgid "FG to Transparent" msgstr "前景色至透明" -#: app/core/gimp-gui.c:148 +#: app/core/gimp-gui.c:153 msgid "GIMP" msgstr "GIMP" @@ -4565,39 +4565,54 @@ msgid "Modules" msgstr "模組" -#: app/core/gimpbrush.c:531 +#: app/core/gimpbrush.c:534 #, c-format msgid "Could not read %d bytes from '%s': %s" msgstr "無法從‘%2$s’讀取 %1$d 位元組:%3$s" -#: app/core/gimpbrush.c:566 +#: app/core/gimpbrush.c:554 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Width = 0." +msgstr "分析 GIMP 筆刷檔‘%s’時出現嚴重錯誤:色彩深度數目 %d 不明。" + +#: app/core/gimpbrush.c:563 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Height = 0." +msgstr "分析 GIMP 筆刷檔‘%s’時出現嚴重錯誤:檔案內容已經損壞。" + +#: app/core/gimpbrush.c:572 +#, fuzzy, c-format +msgid "Fatal parse error in brush file '%s': Bytes = 0." +msgstr "分析 GIMP 筆刷檔‘%s’時出現嚴重錯誤:檔案內容已經損壞。" + +#: app/core/gimpbrush.c:596 #, c-format msgid "Fatal parse error in brush file '%s': Unknown depth %d." msgstr "分析 GIMP 筆刷檔‘%s’時出現嚴重錯誤:色彩深度數目 %d 不明。" -#: app/core/gimpbrush.c:579 +#: app/core/gimpbrush.c:609 #, c-format msgid "Fatal parse error in brush file '%s': Unknown version %d." msgstr "分析 GIMP 筆刷檔‘%s’時出現嚴重錯誤:版本 %d 不明。" -#: app/core/gimpbrush.c:595 app/core/gimpbrush.c:715 +#: app/core/gimpbrush.c:625 app/core/gimpbrush.c:745 #, c-format msgid "Fatal parse error in brush file '%s': File appears truncated." msgstr "分析 GIMP 筆刷檔‘%s’時出現嚴重錯誤:檔案似乎被截短了。" -#: app/core/gimpbrush.c:603 app/core/gimpbrushgenerated.c:648 +#: app/core/gimpbrush.c:633 app/core/gimpbrushgenerated.c:648 #: app/core/gimpbrushpipe.c:354 #, c-format msgid "Invalid UTF-8 string in brush file '%s'." msgstr "筆刷檔案‘%s’中含有無效的 UTF-8 字串。" -#: app/core/gimpbrush.c:610 app/core/gimpcontext.c:1299 -#: app/core/gimpitem.c:479 app/core/gimppattern.c:400 +#: app/core/gimpbrush.c:640 app/core/gimpcontext.c:1299 +#: app/core/gimpitem.c:480 app/core/gimppattern.c:400 #: app/dialogs/template-options-dialog.c:80 app/tools/gimpvectortool.c:339 msgid "Unnamed" msgstr "未命名" -#: app/core/gimpbrush.c:704 +#: app/core/gimpbrush.c:734 #, c-format msgid "" "Fatal parse error in brush file '%s': Unsupported brush depth %d\n" @@ -4762,11 +4777,11 @@ "%s" #: app/core/gimpdatafactory.c:411 app/core/gimpdatafactory.c:414 -#: app/core/gimpitem.c:274 app/core/gimpitem.c:277 +#: app/core/gimpitem.c:275 app/core/gimpitem.c:278 msgid "copy" msgstr "複製本" -#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:286 +#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:287 #, c-format msgid "%s copy" msgstr "%s 複製本" @@ -4829,7 +4844,7 @@ msgid "Rotate" msgstr "旋轉" -#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:259 +#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:257 msgid "Transform Layer" msgstr "變換圖層" @@ -5190,7 +5205,7 @@ #. pixel size #: app/core/gimpimagefile.c:624 app/dialogs/info-window.c:552 -#: app/widgets/gimpsizebox.c:552 app/widgets/gimptemplateeditor.c:637 +#: app/widgets/gimpsizebox.c:429 app/widgets/gimptemplateeditor.c:637 #: app/widgets/gimptemplateeditor.c:673 #, c-format msgid "%d x %d pixels" @@ -5210,15 +5225,15 @@ msgid "Could not open thumbnail '%s': %s" msgstr "無法開啟縮圖‘%s’:%s" -#: app/core/gimpitem.c:1096 +#: app/core/gimpitem.c:1103 msgid "Attach Parasite" msgstr "連上附帶物件" -#: app/core/gimpitem.c:1106 +#: app/core/gimpitem.c:1113 msgid "Attach Parasite to Item" msgstr "" -#: app/core/gimpitem.c:1145 app/core/gimpitem.c:1152 +#: app/core/gimpitem.c:1152 app/core/gimpitem.c:1159 msgid "Remove Parasite from Item" msgstr "" @@ -5244,37 +5259,37 @@ msgid "Floating Selection to Layer" msgstr "浮動選擇區域轉換為圖層" -#: app/core/gimplayer.c:252 app/pdb/internal_procs.c:152 +#: app/core/gimplayer.c:250 app/pdb/internal_procs.c:152 msgid "Layer" msgstr "圖層" -#: app/core/gimplayer.c:253 +#: app/core/gimplayer.c:251 msgid "Rename Layer" msgstr "更改圖層名稱" -#: app/core/gimplayer.c:254 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 +#: app/core/gimplayer.c:252 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 msgid "Move Layer" msgstr "移動圖層" -#: app/core/gimplayer.c:256 +#: app/core/gimplayer.c:254 msgid "Resize Layer" msgstr "調整圖層尺寸" -#: app/core/gimplayer.c:257 +#: app/core/gimplayer.c:255 msgid "Flip Layer" msgstr "翻轉圖層" -#: app/core/gimplayer.c:258 +#: app/core/gimplayer.c:256 msgid "Rotate Layer" msgstr "旋轉圖層" -#: app/core/gimplayer.c:341 app/core/gimplayer.c:1129 +#: app/core/gimplayer.c:339 app/core/gimplayer.c:1110 #: app/core/gimplayermask.c:236 #, c-format msgid "%s mask" msgstr "%s 遮罩" -#: app/core/gimplayer.c:387 +#: app/core/gimplayer.c:385 #, c-format msgid "" "Floating Selection\n" @@ -5283,39 +5298,39 @@ "浮動選擇區域\n" "(%s)" -#: app/core/gimplayer.c:1055 +#: app/core/gimplayer.c:1036 msgid "Cannot add layer mask to layer which is not part of an image." msgstr "無法在不屬於任何影像的圖層中加上圖層遮罩。" -#: app/core/gimplayer.c:1062 +#: app/core/gimplayer.c:1043 msgid "Unable to add a layer mask since the layer already has one." msgstr "無法新增圖層遮罩,因為該圖層已經有一個遮罩了。" -#: app/core/gimplayer.c:1069 +#: app/core/gimplayer.c:1050 msgid "Cannot add layer mask to a layer with no alpha channel." msgstr "無法在沒有透明色版的圖層中加上圖層遮罩。" -#: app/core/gimplayer.c:1079 +#: app/core/gimplayer.c:1060 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "無法新增圖層遮罩,因為遮罩的尺寸和指定圖層的尺寸不同。" -#: app/core/gimplayer.c:1183 +#: app/core/gimplayer.c:1164 msgid "Transfer Alpha to Mask" msgstr "" -#: app/core/gimplayer.c:1343 +#: app/core/gimplayer.c:1324 msgid "Apply Layer Mask" msgstr "套用圖層遮罩" -#: app/core/gimplayer.c:1344 +#: app/core/gimplayer.c:1325 msgid "Delete Layer Mask" msgstr "刪除圖層遮罩" -#: app/core/gimplayer.c:1445 +#: app/core/gimplayer.c:1426 msgid "Add Alpha Channel" msgstr "新增透明色版" -#: app/core/gimplayer.c:1467 +#: app/core/gimplayer.c:1448 msgid "Layer to Image Size" msgstr "令圖層尺寸符合影像尺寸" @@ -6779,32 +6794,32 @@ msgstr "預覽圖尺寸(_Z)" #. the image size labels -#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:241 +#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:222 #: app/widgets/gimptemplateeditor.c:236 #, fuzzy msgid "_Width:" msgstr "寬度:" -#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:248 +#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:225 #: app/widgets/gimptemplateeditor.c:243 #, fuzzy msgid "H_eight:" msgstr "高度:" #. the resolution labels -#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:338 +#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:273 #: app/widgets/gimptemplateeditor.c:363 #, fuzzy msgid "_X resolution:" msgstr "水平解析度:" -#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:345 +#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:276 #: app/widgets/gimptemplateeditor.c:370 #, fuzzy msgid "_Y resolution:" msgstr "垂直解析度:" -#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:357 +#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:269 #: app/widgets/gimptemplateeditor.c:383 #, c-format msgid "pixels/%a" @@ -7401,11 +7416,11 @@ msgid "%d minutes" msgstr "" -#: app/display/gimpdisplayshell-dnd.c:96 +#: app/display/gimpdisplayshell-dnd.c:98 msgid "Drop New Layer" msgstr "" -#: app/display/gimpdisplayshell-dnd.c:140 +#: app/display/gimpdisplayshell-dnd.c:142 msgid "Drop New Path" msgstr "" @@ -8872,12 +8887,12 @@ msgstr "畫筆(_P)" #: app/tools/gimppaintoptions-gui.c:103 app/widgets/gimpbrushselect.c:201 -#: app/widgets/gimplayertreeview.c:330 +#: app/widgets/gimplayertreeview.c:332 msgid "Opacity:" msgstr "透明度:" #: app/tools/gimppaintoptions-gui.c:108 app/tools/gimpselectionoptions.c:374 -#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:323 +#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:325 msgid "Mode:" msgstr "模式:" @@ -10276,24 +10291,24 @@ msgid "Set Item Exclusive Linked" msgstr "" -#: app/widgets/gimplayertreeview.c:250 +#: app/widgets/gimplayertreeview.c:252 msgid "Reorder Layer" msgstr "重新編排圖層次序" -#: app/widgets/gimplayertreeview.c:311 +#: app/widgets/gimplayertreeview.c:313 msgid "Keep transparency" msgstr "保留透明度" -#: app/widgets/gimplayertreeview.c:846 +#: app/widgets/gimplayertreeview.c:848 msgid "Empty Layer" msgstr "空白圖層" -#: app/widgets/gimpmessagebox.c:458 +#: app/widgets/gimpmessagebox.c:460 #, c-format msgid "Message repeated %d times." msgstr "訊息已重複 %d 次。" -#: app/widgets/gimpmessagebox.c:460 +#: app/widgets/gimpmessagebox.c:462 msgid "Message repeated once." msgstr "訊息已重複 1 次。" @@ -10325,17 +10340,12 @@ msgid "Invalid UTF-8" msgstr "無效的 UTF-8 字串" -#: app/widgets/gimpsizebox.c:290 -#, fuzzy -msgid "Keep aspect ratio" -msgstr "固定長寬比 %s" - -#: app/widgets/gimpsizebox.c:574 +#: app/widgets/gimpsizebox.c:451 #, fuzzy, c-format msgid "%d x %d dpi" msgstr "%d×%d 像素" -#: app/widgets/gimpsizebox.c:578 +#: app/widgets/gimpsizebox.c:455 #, fuzzy, c-format msgid "%d dpi" msgstr "dpi" @@ -10784,6 +10794,10 @@ msgid "Image Editor" msgstr "色盤編輯程序" +#, fuzzy +#~ msgid "Keep aspect ratio" +#~ msgstr "固定長寬比 %s" + #~ msgid "Y:" #~ msgstr "Y:" diff -uraN gimp-2.2.0/po-libgimp/ca.gmo gimp-2.2.1/po-libgimp/ca.gmo --- gimp-2.2.0/po-libgimp/ca.gmo 2004-12-19 03:34:05.000000000 +0100 +++ gimp-2.2.1/po-libgimp/ca.gmo 2004-12-28 16:58:49.000000000 +0100 @@ -18,7 +18,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Profile:_R_Reset_Resize_Rotate_S_Scale_Shear_Transform_V_YpercentProject-Id-Version: gimp-libgimp Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-02-05 14:28+0100 Last-Translator: Xavier Conde Rueda Language-Team: Catalan diff -uraN gimp-2.2.0/po-libgimp/ca.po gimp-2.2.1/po-libgimp/ca.po --- gimp-2.2.0/po-libgimp/ca.po 2004-12-19 03:34:01.000000000 +0100 +++ gimp-2.2.1/po-libgimp/ca.po 2004-12-28 16:58:45.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: gimp-libgimp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-02-05 14:28+0100\n" "Last-Translator: Xavier Conde Rueda \n" "Language-Team: Catalan \n" diff -uraN gimp-2.2.0/po-libgimp/ChangeLog gimp-2.2.1/po-libgimp/ChangeLog --- gimp-2.2.0/po-libgimp/ChangeLog 2004-12-17 10:24:33.000000000 +0100 +++ gimp-2.2.1/po-libgimp/ChangeLog 2004-12-27 20:42:17.000000000 +0100 @@ -1,3 +1,7 @@ +2004-12-20 Jarkko Ranta + + * fi.po: Updated Finnish translation by Mikko Paananen. + 2004-12-17 Artur Flinta * pl.po: Updated Polish translation by GNOME PL Team. diff -uraN gimp-2.2.0/po-libgimp/cs.gmo gimp-2.2.1/po-libgimp/cs.gmo --- gimp-2.2.0/po-libgimp/cs.gmo 2004-12-19 03:34:05.000000000 +0100 +++ gimp-2.2.1/po-libgimp/cs.gmo 2004-12-28 16:58:49.000000000 +0100 @@ -30,7 +30,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Background Color_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_Foreground Color_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Preview_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Transform_V_White_YpercentProject-Id-Version: gimp-libgimp VERSION Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-11-09 14:54+0100 Last-Translator: Miloslav Trmač Language-Team: Czech diff -uraN gimp-2.2.0/po-libgimp/cs.po gimp-2.2.1/po-libgimp/cs.po --- gimp-2.2.0/po-libgimp/cs.po 2004-12-19 03:34:01.000000000 +0100 +++ gimp-2.2.1/po-libgimp/cs.po 2004-12-28 16:58:45.000000000 +0100 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: gimp-libgimp VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-11-09 14:54+0100\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: Czech \n" diff -uraN gimp-2.2.0/po-libgimp/da.gmo gimp-2.2.1/po-libgimp/da.gmo --- gimp-2.2.0/po-libgimp/da.gmo 2004-12-19 03:34:05.000000000 +0100 +++ gimp-2.2.1/po-libgimp/da.gmo 2004-12-28 16:58:49.000000000 +0100 @@ -25,7 +25,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Background Color_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_Foreground Color_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Preview_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Stroke_Transform_V_White_YpercentProject-Id-Version: GIMP libgimp /gnome-cvs Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-12-12 17:15+0100 Last-Translator: Ole Laursen Language-Team: Danish diff -uraN gimp-2.2.0/po-libgimp/da.po gimp-2.2.1/po-libgimp/da.po --- gimp-2.2.0/po-libgimp/da.po 2004-12-19 03:34:01.000000000 +0100 +++ gimp-2.2.1/po-libgimp/da.po 2004-12-28 16:58:45.000000000 +0100 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: GIMP libgimp /gnome-cvs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-12-12 17:15+0100\n" "Last-Translator: Ole Laursen \n" "Language-Team: Danish \n" diff -uraN gimp-2.2.0/po-libgimp/de.gmo gimp-2.2.1/po-libgimp/de.gmo --- gimp-2.2.0/po-libgimp/de.gmo 2004-12-19 03:34:05.000000000 +0100 +++ gimp-2.2.1/po-libgimp/de.gmo 2004-12-28 16:58:49.000000000 +0100 @@ -28,7 +28,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Background Color_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_Foreground Color_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Preview_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Stroke_Transform_V_White_YpercentProject-Id-Version: GIMP 2.2 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-11-17 11:42+0100 Last-Translator: Sven Neumann Language-Team: German diff -uraN gimp-2.2.0/po-libgimp/de.po gimp-2.2.1/po-libgimp/de.po --- gimp-2.2.0/po-libgimp/de.po 2004-12-19 03:34:01.000000000 +0100 +++ gimp-2.2.1/po-libgimp/de.po 2004-12-28 16:58:45.000000000 +0100 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: GIMP 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-11-17 11:42+0100\n" "Last-Translator: Sven Neumann \n" "Language-Team: German \n" diff -uraN gimp-2.2.0/po-libgimp/el.gmo gimp-2.2.1/po-libgimp/el.gmo --- gimp-2.2.0/po-libgimp/el.gmo 2004-12-19 03:34:05.000000000 +0100 +++ gimp-2.2.1/po-libgimp/el.gmo 2004-12-28 16:58:49.000000000 +0100 @@ -9,7 +9,7 @@ 9 D Y h        ' )" !&(%,+*$ #%d Bytes%d GB%d KB%d MB(Empty)BlackBlueBrush SelectionCMYKConfirmConfirm SaveContrastConvert to GrayscaleConvert to RGBExport FileFactorFolderFont SelectionGrayscaleGreenMediumMore...Pattern SelectionPressureRGBRGB colorRedSaturationSelect FileSelect FolderSmallTriangleUnitValueVisibleWatercolorYellow_Browse..._Edit_Export_Ignore_PreviewpercentProject-Id-Version: el Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-10-22 01:09+0300 Last-Translator: Nikos Charonitakis Language-Team: diff -uraN gimp-2.2.0/po-libgimp/el.po gimp-2.2.1/po-libgimp/el.po --- gimp-2.2.0/po-libgimp/el.po 2004-12-19 03:34:02.000000000 +0100 +++ gimp-2.2.1/po-libgimp/el.po 2004-12-28 16:58:45.000000000 +0100 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: el\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-10-22 01:09+0300\n" "Last-Translator: Nikos Charonitakis \n" "Language-Team: \n" diff -uraN gimp-2.2.0/po-libgimp/en_CA.gmo gimp-2.2.1/po-libgimp/en_CA.gmo --- gimp-2.2.0/po-libgimp/en_CA.gmo 2004-12-19 03:34:05.000000000 +0100 +++ gimp-2.2.1/po-libgimp/en_CA.gmo 2004-12-28 16:58:49.000000000 +0100 @@ -31,7 +31,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Background Color_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_Foreground Color_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Preview_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Stroke_Transform_V_White_YpercentProject-Id-Version: libgimp Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-11-18 20:02-0400 Last-Translator: Adam Weinberger Language-Team: English/Canada diff -uraN gimp-2.2.0/po-libgimp/en_CA.po gimp-2.2.1/po-libgimp/en_CA.po --- gimp-2.2.0/po-libgimp/en_CA.po 2004-12-19 03:34:02.000000000 +0100 +++ gimp-2.2.1/po-libgimp/en_CA.po 2004-12-28 16:58:46.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: libgimp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-11-18 20:02-0400\n" "Last-Translator: Adam Weinberger \n" "Language-Team: English/Canada \n" diff -uraN gimp-2.2.0/po-libgimp/en_GB.gmo gimp-2.2.1/po-libgimp/en_GB.gmo --- gimp-2.2.0/po-libgimp/en_GB.gmo 2004-12-19 03:34:05.000000000 +0100 +++ gimp-2.2.1/po-libgimp/en_GB.gmo 2004-12-28 16:58:49.000000000 +0100 @@ -31,7 +31,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Background Color_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_Foreground Color_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Preview_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Stroke_Transform_V_White_YpercentProject-Id-Version: gimp CVS Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-11-21 22:54+0100 Last-Translator: David Lodge Language-Team: diff -uraN gimp-2.2.0/po-libgimp/en_GB.po gimp-2.2.1/po-libgimp/en_GB.po --- gimp-2.2.0/po-libgimp/en_GB.po 2004-12-19 03:34:02.000000000 +0100 +++ gimp-2.2.1/po-libgimp/en_GB.po 2004-12-28 16:58:46.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: gimp CVS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-11-21 22:54+0100\n" "Last-Translator: David Lodge \n" "Language-Team: \n" diff -uraN gimp-2.2.0/po-libgimp/es.gmo gimp-2.2.1/po-libgimp/es.gmo --- gimp-2.2.0/po-libgimp/es.gmo 2004-12-19 03:34:05.000000000 +0100 +++ gimp-2.2.1/po-libgimp/es.gmo 2004-12-28 16:58:49.000000000 +0100 @@ -30,7 +30,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Background Color_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_Foreground Color_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Preview_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Stroke_Transform_V_White_YpercentProject-Id-Version: gimp-libgimp.HEAD Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-11-12 16:12-0300 Last-Translator: Pablo del Campo Language-Team: diff -uraN gimp-2.2.0/po-libgimp/es.po gimp-2.2.1/po-libgimp/es.po --- gimp-2.2.0/po-libgimp/es.po 2004-12-19 03:34:02.000000000 +0100 +++ gimp-2.2.1/po-libgimp/es.po 2004-12-28 16:58:46.000000000 +0100 @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: gimp-libgimp.HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-11-12 16:12-0300\n" "Last-Translator: Pablo del Campo \n" "Language-Team: \n" diff -uraN gimp-2.2.0/po-libgimp/eu.gmo gimp-2.2.1/po-libgimp/eu.gmo --- gimp-2.2.0/po-libgimp/eu.gmo 2004-12-19 03:34:05.000000000 +0100 +++ gimp-2.2.1/po-libgimp/eu.gmo 2004-12-28 16:58:49.000000000 +0100 @@ -26,7 +26,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Transform_V_YpercentProject-Id-Version: eu Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-04-06 17:16+0200 Last-Translator: Iñaki Larrañaga Murgoitio Language-Team: Basque diff -uraN gimp-2.2.0/po-libgimp/eu.po gimp-2.2.1/po-libgimp/eu.po --- gimp-2.2.0/po-libgimp/eu.po 2004-12-19 03:34:02.000000000 +0100 +++ gimp-2.2.1/po-libgimp/eu.po 2004-12-28 16:58:46.000000000 +0100 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: eu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-04-06 17:16+0200\n" "Last-Translator: Iñaki Larrañaga Murgoitio \n" "Language-Team: Basque \n" diff -uraN gimp-2.2.0/po-libgimp/fi.gmo gimp-2.2.1/po-libgimp/fi.gmo --- gimp-2.2.0/po-libgimp/fi.gmo 2004-12-19 03:34:05.000000000 +0100 +++ gimp-2.2.1/po-libgimp/fi.gmo 2004-12-28 16:58:49.000000000 +0100 @@ -1,40 +1,45 @@ -t            *2 (] 4 # . ! -0 ^ .z     $6<CU[`puV A7*y TM>% ' $39Tg"m   ' -/:%? -e p} -! -; ? KY7p"fOU -]h_PUI - -   -"-4<DGN -U`cfOn) :3<n)*=,>>k*K#!.E%t    %8^R  B%"HQ d -nyZgSl s}0  %9A\b s -}  - -"= M[jsy  0  " >9 x   A!F! O!Y!r! !c!P!KB"""""""""""""""" " -# # ## $# -1#<#?# -H#S#Z#]# -`#FV7l:D4].a|)' +%Ygc?TmsHwZC(!}ik;SGR,= UqL -pA3{xJQzrh6j2Xu-f&Kd> $Nn<e9o@5_#tOy0`1* [BIvEbP"W\^~M/ 8%.1f GB%.1f KB%.1f MB%.2f GB%.2f KB%.2f MB%d Bytes%d GB%d KB%d MB%s can only handle RGB images%s can only handle RGB or grayscale images%s can only handle RGB or indexed images%s can only handle bitmap (two color) indexed images%s can only handle grayscale images%s can only handle grayscale or indexed images%s can only handle indexed images%s can only handle layers as animation frames%s can't handle layer masks%s can't handle layer offsets, size or opacity%s can't handle layers%s can't handle transparency%s needs an alpha channel(invalid UTF-8 string)Absolute ColorimetricAdd Alpha ChannelAlphaAnchorApply Layer MasksBlackBlueBrush SelectionCMYKCMYK color selectorChoose an ICC Color ProfileClick the eyedropper, then click a color anywhere on your screen to select that color.Color Deficient VisionColor ProofColor _Deficiency Type:Color deficit simulation filter (Brettel-Vienot-Mollon algorithm)Color proof filter using ICC color profileConfirmConfirm SaveContrastContrast C_ycles:Convert to GrayscaleConvert to Indexed using bitmap default settings + *(E4n#.!-F.b&,3EL +R]mr + V- DPAh* TMo% % 7C'J r   2"Adh p ~     %5 P] +ep%u +  +!   %) +?J\;c  78G"Psxf + +'2;_BPUILOa +{ +   + %, +4?BIL4T):<9)v*=, >6*uK#.%?e n  +   - 6 D S ^m  B %>!d!m! ! +!!Z!g"o"&"" "" """#0# 9#G#N#a# g# u## # #######$ +$$$7$ G$Q$ b$l$r$ +$$$$$ $ $$$% +% +7% +B%M%T%o%% %%%%%% %%% % & &!&0*&[&l&{&&*&4&&& '%';''' '''( (c(Q(6( ) ) ))9)B)E)N)V) [)h)k)s)v)}))) ) ) +)) )) )))) +)))* +** +*2q:iaTn[`e%*{;v=I}W_\ !5 ('wux#R.p+V$sHP?8ZoCYXUrM +g]/bQzk0,K~ N )y@<DJ9SO4mc >f|th"1&EBjFL-l^37dGA6%.1f GB%.1f KB%.1f MB%.2f GB%.2f KB%.2f MB%d Bytes%d GB%d KB%d MB%s can only handle RGB images%s can only handle RGB or grayscale images%s can only handle RGB or indexed images%s can only handle bitmap (two color) indexed images%s can only handle grayscale images%s can only handle grayscale or indexed images%s can only handle indexed images%s can only handle layers as animation frames%s can't handle layer masks%s can't handle layer offsets, size or opacity%s can't handle layers%s can't handle transparency%s needs an alpha channel(Empty)(invalid UTF-8 string)Absolute ColorimetricAdd Alpha ChannelAlphaAnchorApply Layer MasksBlac_kBlackBlack OnlyBlack _Pullout:BlueBrush SelectionCMYKCMYK color selectorC_enterCheck SizeCheck StyleChoose an ICC Color ProfileClick the eyedropper, then click a color anywhere on your screen to select that color.Color Deficient VisionColor ProofColor _Deficiency Type:Color deficit simulation filter (Brettel-Vienot-Mollon algorithm)Color proof filter using ICC color profileConfirmConfirm SaveContrastContrast C_ycles:Convert to GrayscaleConvert to Indexed using bitmap default settings (Do it manually to tune the result)Convert to Indexed using default settings -(Do it manually to tune the result)Convert to RGBCropCurrent:CyanDeuteranopia (insensitivity to green)Export FileFactorFailed to create thumbnail folder '%s'.Flatten ImageFolderFont SelectionGammaGamma color display filterGradient SelectionGreenHigh Contrast color display filterHueL_etter SpacingL_ine SpacingLinkedLoad failedLoadedLoading module: '%s' -MagentaMerge Visible LayersModule '%s' load error: %sModule errorMore...Not loadedOld:Painter-style triangle color selectorPaste IntoPaste as NewPattern SelectionPerceptualPressureProtanopia (insensitivity to red)RedRelative ColorimetricSaturationSave as AnimationScalesSeed random number generator with a generated random numberSelect FileSelect FolderSkipping module: '%s' -The export conversion won't modify your original image.TriangleTritanopia (insensitivity to blue)UnitUnit SelectionUse this value for random number generator seed - this allows you to repeat a given "random" operationValueVisibleWatercolorWatercolor style color selectorWritableYellowYou are about to save a channel (saved selection) as %s. +(Do it manually to tune the result)Convert to RGBCould not create thumbnail for %s: %sCropCurrent:CyanDark ChecksDeuteranopia (insensitivity to green)Export FileFactorFailed to create thumbnail folder '%s'.Flatten ImageFolderFont SelectionGammaGamma color display filterGigabytesGradient SelectionGray OnlyGrayscaleGrayscale-alphaGreenHTML _Notation:Hexadecimal color notation as used in HTML and CSSHigh Contrast color display filterHueIndexedIndexed colorIndexed-alphaKilobytesL_etter SpacingL_ine SpacingLargeLight ChecksLinkedLoad failedLoadedLoading module: '%s' +MagentaMediumMegabytesMerge Visible LayersMid-Tone ChecksModule '%s' load error: %sModule errorMore...Not loadedOld:Painter-style triangle color selectorPalette SelectionPaste IntoPaste as NewPattern SelectionPerceptualPressureProtanopia (insensitivity to red)RGBRGB colorRGB-alphaRedRelative ColorimetricSaturationSave as AnimationScalesSeed random number generator with a generated random numberSelect FileSelect FolderSkipping module: '%s' +SmallThe export conversion won't modify your original image.The percentage of black to pull out of the colored inks.TriangleTritanopia (insensitivity to blue)UnitUnit SelectionUse this value for random number generator seed - this allows you to repeat a given "random" operationValueVisibleWatercolorWatercolor style color selectorWhite OnlyWritableYellowYou are about to save a channel (saved selection) as %s. This will not save the visible layers.You are about to save a layer mask as %s. -This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Transform_V_YpercentProject-Id-Version: GIMP 2.0 +This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Background Color_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_Foreground Color_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Preview_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Stroke_Transform_V_White_YpercentProject-Id-Version: GIMP 2.0 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 -PO-Revision-Date: 2004-03-18 02:16+0200 +POT-Creation-Date: 2004-12-28 15:41+0100 +PO-Revision-Date: 2004-12-17 04:32+0200 Last-Translator: Mikko Paananen -Language-Team: Finnish +Language-Team: Finnish MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit -%.1f GB%.1f KB%.1f MB%.2f GB%.2f KB%.2f MB%d tavua%d GB%d KB%d MB%s käsittelee ainoastaan täysvärikuvia%s käsittelee ainoastaan täysväri- tai harmaasävykuvia%s käsittelee ainoastaan täysväri- tai indeksoituja kuvia%s käsittelee ainoastaan mustavalkokuvia%s käsittelee ainoastaan harmaasävykuvia%s käsittelee ainoastaan harmaasävy- tai indeksoituja kuvia%s käsittelee ainoastaan indeksoituja kuvia%s pystyy käyttämään tasoja ainoastaan animaation ruutuina%s ei pysty käsittelemään tasos maskeja%s ei pysty käsittelemään tason siirtymää, kokoa tai läpinäkyvyyttä%s ei pysty käsittelemään tasoja%s ei pysty käsittelemään läpinäkyvyyttä%s vaatii että kuvassa on alfakanava(Kelpaamaton unicode merkkijono)AbsoluuttinenLisää alfakanavaAlfaAnkkuriSovella tason maskejaMustaSininenSiveltimen valintaCMYKCMYK värivalitsinValitse ICC-väriprofiiliNapsauta värivalitsinta, sen jälkeen napsauta missä tahansa näytöllä valitaksesi värin.VärisokeusVärikorjausVärisokeuden tyyppiVärisokeus simulaatio -suodatin (Brettel-Vienot-Mollon algoritmi)Värikorjaussuodatin ICC profiileilleVahvistaVahvista tallennusKontrastiKontrasti:Muunna harmaasävyihinMuunna indeksoiduksi käyttäen oletusasetuksia +%.1f GB%.1f KB%.1f MB%.2f GB%.2f KB%.2f MB%d tavua%d GB%d KB%d MB%s käsittelee ainoastaan täysvärikuvia%s käsittelee ainoastaan täysväri- tai harmaasävykuvia%s käsittelee ainoastaan täysväri- tai indeksoituja kuvia%s käsittelee ainoastaan mustavalkokuvia%s käsittelee ainoastaan harmaasävykuvia%s käsittelee ainoastaan harmaasävy- tai indeksoituja kuvia%s käsittelee ainoastaan indeksoituja kuvia%s pystyy käyttämään tasoja ainoastaan animaation ruutuina%s ei pysty käsittelemään tasos maskeja%s ei pysty käsittelemään tason siirtymää, kokoa tai läpinäkyvyyttä%s ei pysty käsittelemään tasoja%s ei pysty käsittelemään läpinäkyvyyttä%s vaatii että kuvassa on alfakanava(tyhjä)(Kelpaamaton unicode merkkijono)AbsoluuttinenLisää alfakanavaAlfaAnkkuriSovella tason maskeja_MustaMustaVain mustaMustan poisto:SininenSiveltimen valintaCMYKCMYK värivalitsinKeskitäTarkista kokoTarkista tyyliValitse ICC-väriprofiiliNapsauta värivalitsinta, sen jälkeen napsauta missä tahansa näytöllä valitaksesi värin.VärisokeusVärikorjausVärisokeuden tyyppi:Värisokeus simulaatio -suodatin (Brettel-Vienot-Mollon algoritmi)Värikorjaussuodatin ICC profiileilleVahvistaVahvista tallennusKontrastiKontrasti:Muunna harmaasävyihinMuunna indeksoiduksi käyttäen oletusasetuksia (Tee käsin jos haluat säätää tulosta)Muunna indeksoiduksi käyttäen oletusasetuksia -(Tee käsin jos haluat käyttää muita kuin oletuksia)Muunna täysvärikuvaksiR_ajaaNykyinen:SyaaniDeuteranopia (vihersokeus)Tiedoston vientiKerroinEi voinut luoda esikatselukuville kansiota '%s'.Yhdistä kuvaKansioKirjasimen valintaGammaGammasuodatinVäriliu'un valintaVihreäSuurikontrastinen suodatinSävyKirjainvälistysRiviväliLinkitettyLataus epäonnistuiLadattuLadataan moduli: '%s' -MagentaYhdistä näkyvät tasotModulin '%s' latausvirhe: %sModulivirheLisää...Ei ladattuVanha:Kolmiomainen värivalitsinLiitä johonkinLiitä uutenaKuvion valintaHavaittuPaineProtanopia (punasokeus)PunainenSuhteellinenKylläisyysTallenna animaationaAsteikotAlusta satunnaisluvut luodulla satunnaisluvulla.Valitse tiedostoValitse kansioOhitetaan moduli '%s' -Muokkaus ulosvientiä varten ei vaikuta alkuperäiseen kuvaan.KolmioTritanopia (sinisokeus)MittayksikköMittayksikön valintaKäytetään tätä arvoa satunnaislukujen siemenenä. Tämä mahdollistaa näennäisesti satunnaisen toiminnon toiston samanlaisena.ArvoNäkyväVesiväriVesiväri -värivalitsinKirjoitettavissaKeltainenOlet tallentamassa kanavaa (tallennettu valintana) nimellä %s -Tämä ei tallenna näkyviä tasoja.Olet tallentamassa tason maskia nimellä %s -Tämä ei tallenna näkyviä tasoja.Kuvasi pitää viedä tallennusta %s:ksi muokata ulosvientiä varten koska:_A_B_Mustan pisteen kompensaatioSelaa..._CKahdennaMuokkaaVie_G_Gamma:_HOhita_Aiottu:_K_M_Siemenluku_Profiili:_RS_atunnaista_NollaaMuuta _kokoa_Pyöritä_S_Skaalaa_VäännäMuunna_V_Yprosenttia \ No newline at end of file +(Tee käsin jos haluat käyttää muita kuin oletuksia)Muunna täysvärikuvaksiEi voinut luoda esikatselukuvaa %s: %sRajaaNykyinen:SyaaniTummat ruudutDeuteranopia (vihersokeus)Tiedoston vientiKerroinEi voinut luoda esikatselukuville kansiota '%s'.Yhdistä kuvaKansioKirjasimen valintaGammaGammasuodatingigatavuaVäriliu'un valintaVain harmaaHarmaasävyHarmaasävy+alfaVihreäHTML-merkintä:HTML-kielen heksadesimaalimerkintäSuurikontrastinen suodatinSävyIndeksoituIndeksoitu palettiIndeksoitu+alfakilotavuaKirjainvälistysRiviväliSuuriVaaleat ruudutLinkitettyLataus epäonnistuiLadattuLadataan moduli: '%s' +MagentaKeskikokoinenmegatavuaYhdistä näkyvät tasotKeskisävyiset ruudutModulin '%s' latausvirhe: %sModulivirheLisää...Ei ladattuVanha:Kolmiomainen värivalitsinPaletin valintaLiitä johonkinLiitä uutenaKuvion valintaHavaittuPaineProtanopia (punasokeus)RGBRGB-väriRGB+alfaPunainenSuhteellinenKylläisyysTallenna animaationaAsteikotAlusta satunnaisluvut luodulla satunnaisluvulla.Valitse tiedostoValitse kansioOhitetaan moduli '%s' +PieniMuokkaus ei vaikuta alkuperäiseen kuvaan.Mustan poisto prosentteina värillisistä musteista.KolmioTritanopia (sinisokeus)MittayksikköMittayksikön valintaKäytetään tätä arvoa satunnaislukujen siemenenä. Tämä mahdollistaa näennäisesti satunnaisen toiminnon toiston samanlaisena.ArvoNäkyväVesiväriVesiväri -värivalitsinVain valkoinenKirjoitettavissaKeltainenOlet tallentamassa kanavaa (tallennettu valintana) nimellä %s +Tämä ei tallenna näkyviä tasoja.Olet tallentamassa tason maskia nimellä %s. +Tämä ei tallenna näkyviä tasoja.Kuvaasi pitää muokata muotoon %s tallennusta varten:_A_B_Taustaväri_Mustan pisteen kompensaatioSelaa..._CKahdennaMuokkaa_Vie_Edustaväri_G_Gamma:_H_Ohita_Aiottu:_K_M_Siemenluku_Esikatselu_Profiili:_RS_atunnaista_NollaaMuuta _kokoa_Kierrä_S_Skaalaa_Väännä_Piirrä_Muunna_V_Valkoinen_Yprosenttia \ No newline at end of file diff -uraN gimp-2.2.0/po-libgimp/fi.po gimp-2.2.1/po-libgimp/fi.po --- gimp-2.2.0/po-libgimp/fi.po 2004-12-19 03:34:02.000000000 +0100 +++ gimp-2.2.1/po-libgimp/fi.po 2004-12-28 16:58:46.000000000 +0100 @@ -7,10 +7,10 @@ msgstr "" "Project-Id-Version: GIMP 2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" -"PO-Revision-Date: 2004-03-18 02:16+0200\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" +"PO-Revision-Date: 2004-12-17 04:32+0200\n" "Last-Translator: Mikko Paananen \n" -"Language-Team: Finnish \n" +"Language-Team: Finnish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -146,11 +146,11 @@ #: libgimp/gimpexport.c:458 msgid "_Ignore" -msgstr "Ohita" +msgstr "_Ohita" #: libgimp/gimpexport.c:460 msgid "_Export" -msgstr "Vie" +msgstr "_Vie" #. the headline #: libgimp/gimpexport.c:482 @@ -158,13 +158,12 @@ msgid "" "Your image should be exported before it can be saved as %s for the following " "reasons:" -msgstr "" -"Kuvasi pitää viedä tallennusta %s:ksi muokata ulosvientiä varten koska:" +msgstr "Kuvaasi pitää muokata muotoon %s tallennusta varten:" #. the footline #: libgimp/gimpexport.c:553 msgid "The export conversion won't modify your original image." -msgstr "Muokkaus ulosvientiä varten ei vaikuta alkuperäiseen kuvaan." +msgstr "Muokkaus ei vaikuta alkuperäiseen kuvaan." #: libgimp/gimpexport.c:653 #, c-format @@ -172,7 +171,7 @@ "You are about to save a layer mask as %s.\n" "This will not save the visible layers." msgstr "" -"Olet tallentamassa tason maskia nimellä %s\n" +"Olet tallentamassa tason maskia nimellä %s.\n" "Tämä ei tallenna näkyviä tasoja." #: libgimp/gimpexport.c:659 @@ -194,12 +193,11 @@ #: libgimp/gimpmenu.c:406 libgimpwidgets/gimpintstore.c:181 msgid "(Empty)" -msgstr "" +msgstr "(tyhjä)" #: libgimp/gimppalettemenu.c:91 -#, fuzzy msgid "Palette Selection" -msgstr "Kuvion valinta" +msgstr "Paletin valinta" #: libgimp/gimppatternmenu.c:113 msgid "Pattern Selection" @@ -211,73 +209,71 @@ #: libgimpbase/gimpbaseenums.c:23 msgid "Small" -msgstr "" +msgstr "Pieni" #: libgimpbase/gimpbaseenums.c:24 msgid "Medium" -msgstr "" +msgstr "Keskikokoinen" #: libgimpbase/gimpbaseenums.c:25 msgid "Large" -msgstr "" +msgstr "Suuri" #: libgimpbase/gimpbaseenums.c:57 msgid "Light Checks" -msgstr "" +msgstr "Vaaleat ruudut" #: libgimpbase/gimpbaseenums.c:58 msgid "Mid-Tone Checks" -msgstr "" +msgstr "Keskisävyiset ruudut" #: libgimpbase/gimpbaseenums.c:59 msgid "Dark Checks" -msgstr "" +msgstr "Tummat ruudut" #: libgimpbase/gimpbaseenums.c:60 msgid "White Only" -msgstr "" +msgstr "Vain valkoinen" #: libgimpbase/gimpbaseenums.c:61 msgid "Gray Only" -msgstr "" +msgstr "Vain harmaa" #: libgimpbase/gimpbaseenums.c:62 -#, fuzzy msgid "Black Only" -msgstr "Musta" +msgstr "Vain musta" #: libgimpbase/gimpbaseenums.c:91 msgid "RGB color" -msgstr "" +msgstr "RGB-väri" #: libgimpbase/gimpbaseenums.c:92 libgimpbase/gimpbaseenums.c:127 -#, fuzzy msgid "Grayscale" -msgstr "Muunna harmaasävyihin" +msgstr "Harmaasävy" #: libgimpbase/gimpbaseenums.c:93 msgid "Indexed color" -msgstr "" +msgstr "Indeksoitu paletti" #: libgimpbase/gimpbaseenums.c:125 msgid "RGB" -msgstr "" +msgstr "RGB" #: libgimpbase/gimpbaseenums.c:126 msgid "RGB-alpha" -msgstr "" +msgstr "RGB+alfa" #: libgimpbase/gimpbaseenums.c:128 msgid "Grayscale-alpha" -msgstr "" +msgstr "Harmaasävy+alfa" #: libgimpbase/gimpbaseenums.c:129 msgid "Indexed" -msgstr "" +msgstr "Indeksoitu" #: libgimpbase/gimpbaseenums.c:130 msgid "Indexed-alpha" -msgstr "" +msgstr "Indeksoitu+alfa" #: libgimpbase/gimpmemsize.c:177 #, c-format @@ -372,29 +368,25 @@ msgstr "Ei voinut luoda esikatselukuville kansiota '%s'." #: libgimpthumb/gimpthumbnail.c:919 -#, fuzzy, c-format +#, c-format msgid "Could not create thumbnail for %s: %s" -msgstr "Ei voinut luoda esikatselukuville kansiota '%s'." +msgstr "Ei voinut luoda esikatselukuvaa %s: %s" #: libgimpwidgets/gimpcolorbutton.c:99 -#, fuzzy msgid "_Foreground Color" -msgstr "/Edustaväri" +msgstr "_Edustaväri" #: libgimpwidgets/gimpcolorbutton.c:103 -#, fuzzy msgid "_Background Color" -msgstr "/Taustaväri" +msgstr "_Taustaväri" #: libgimpwidgets/gimpcolorbutton.c:107 -#, fuzzy msgid "Blac_k" -msgstr "/Musta" +msgstr "_Musta" #: libgimpwidgets/gimpcolorbutton.c:111 -#, fuzzy msgid "_White" -msgstr "/Valkoinen" +msgstr "_Valkoinen" #: libgimpwidgets/gimpcolorscales.c:133 msgid "Scales" @@ -458,13 +450,12 @@ msgstr "Alfa" #: libgimpwidgets/gimpcolorscales.c:243 -#, fuzzy msgid "Hexadecimal color notation as used in HTML and CSS" -msgstr "HTML-kielen heksadesimaaliarvo" +msgstr "HTML-kielen heksadesimaalimerkintä" #: libgimpwidgets/gimpcolorscales.c:248 msgid "HTML _Notation:" -msgstr "" +msgstr "HTML-merkintä:" #: libgimpwidgets/gimpcolorselection.c:203 msgid "Current:" @@ -483,17 +474,14 @@ msgstr "Valitse tiedosto" #: libgimpwidgets/gimpmemsizeentry.c:232 -#, fuzzy msgid "Kilobytes" msgstr "kilotavua" #: libgimpwidgets/gimpmemsizeentry.c:233 -#, fuzzy msgid "Megabytes" msgstr "megatavua" #: libgimpwidgets/gimpmemsizeentry.c:234 -#, fuzzy msgid "Gigabytes" msgstr "gigatavua" @@ -515,16 +503,16 @@ #: libgimpwidgets/gimppreviewarea.c:126 msgid "Check Size" -msgstr "" +msgstr "Tarkista koko" #: libgimpwidgets/gimppreviewarea.c:133 msgid "Check Style" -msgstr "" +msgstr "Tarkista tyyli" #. toggle button to (des)activate the instant preview #: libgimpwidgets/gimppreview.c:240 msgid "_Preview" -msgstr "" +msgstr "_Esikatselu" #: libgimpwidgets/gimpstock.c:113 msgid "Anchor" @@ -532,7 +520,7 @@ #: libgimpwidgets/gimpstock.c:114 msgid "C_enter" -msgstr "" +msgstr "Keskitä" #: libgimpwidgets/gimpstock.c:115 msgid "_Duplicate" @@ -564,7 +552,7 @@ #: libgimpwidgets/gimpstock.c:154 libgimpwidgets/gimpstock.c:158 msgid "_Stroke" -msgstr "" +msgstr "_Piirrä" #: libgimpwidgets/gimpstock.c:170 msgid "L_etter Spacing" @@ -584,15 +572,15 @@ #: libgimpwidgets/gimpstock.c:271 msgid "Crop" -msgstr "R_ajaa" +msgstr "Rajaa" #: libgimpwidgets/gimpstock.c:288 msgid "_Transform" -msgstr "Muunna" +msgstr "_Muunna" #: libgimpwidgets/gimpstock.c:291 msgid "_Rotate" -msgstr "_Pyöritä" +msgstr "_Kierrä" #: libgimpwidgets/gimpstock.c:293 msgid "_Shear" @@ -656,7 +644,7 @@ #: modules/cdisplay_colorblind.c:540 msgid "Color _Deficiency Type:" -msgstr "Värisokeuden tyyppi" +msgstr "Värisokeuden tyyppi:" #: modules/cdisplay_gamma.c:105 msgid "Gamma color display filter" @@ -759,13 +747,12 @@ msgstr "Musta" #: modules/colorsel_cmyk.c:191 -#, fuzzy msgid "Black _Pullout:" -msgstr "Mustan poisto (%):" +msgstr "Mustan poisto:" #: modules/colorsel_cmyk.c:208 msgid "The percentage of black to pull out of the colored inks." -msgstr "" +msgstr "Mustan poisto prosentteina värillisistä musteista." #: modules/colorsel_triangle.c:104 msgid "Painter-style triangle color selector" diff -uraN gimp-2.2.0/po-libgimp/fr.gmo gimp-2.2.1/po-libgimp/fr.gmo --- gimp-2.2.0/po-libgimp/fr.gmo 2004-12-19 03:34:05.000000000 +0100 +++ gimp-2.2.1/po-libgimp/fr.gmo 2004-12-28 16:58:49.000000000 +0100 @@ -32,7 +32,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Background Color_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_Foreground Color_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Preview_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Stroke_Transform_V_White_YpercentProject-Id-Version: gimp-libgimp 2.2.0pre1 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-11-13 17:46+0100 Last-Translator: Raymond Ostertag Language-Team: GNOME french Team diff -uraN gimp-2.2.0/po-libgimp/fr.po gimp-2.2.1/po-libgimp/fr.po --- gimp-2.2.0/po-libgimp/fr.po 2004-12-19 03:34:02.000000000 +0100 +++ gimp-2.2.1/po-libgimp/fr.po 2004-12-28 16:58:46.000000000 +0100 @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: gimp-libgimp 2.2.0pre1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-11-13 17:46+0100\n" "Last-Translator: Raymond Ostertag \n" "Language-Team: GNOME french Team \n" diff -uraN gimp-2.2.0/po-libgimp/ga.gmo gimp-2.2.1/po-libgimp/ga.gmo --- gimp-2.2.0/po-libgimp/ga.gmo 2004-12-19 03:34:05.000000000 +0100 +++ gimp-2.2.1/po-libgimp/ga.gmo 2004-12-28 16:58:49.000000000 +0100 @@ -1,6 +1,6 @@ $,89Project-Id-Version: gimp-libgimp VERSION Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2000-12-18 23:30-0800 Last-Translator: Nobody Language-Team: Irish diff -uraN gimp-2.2.0/po-libgimp/ga.po gimp-2.2.1/po-libgimp/ga.po --- gimp-2.2.0/po-libgimp/ga.po 2004-12-19 03:34:02.000000000 +0100 +++ gimp-2.2.1/po-libgimp/ga.po 2004-12-28 16:58:46.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: gimp-libgimp VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2000-12-18 23:30-0800\n" "Last-Translator: Nobody\n" "Language-Team: Irish\n" diff -uraN gimp-2.2.0/po-libgimp/gimp20-libgimp.pot gimp-2.2.1/po-libgimp/gimp20-libgimp.pot --- gimp-2.2.0/po-libgimp/gimp20-libgimp.pot 2004-12-18 01:47:52.000000000 +0100 +++ gimp-2.2.1/po-libgimp/gimp20-libgimp.pot 2004-12-28 15:41:40.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -uraN gimp-2.2.0/po-libgimp/gl.gmo gimp-2.2.1/po-libgimp/gl.gmo --- gimp-2.2.0/po-libgimp/gl.gmo 2004-12-19 03:34:05.000000000 +0100 +++ gimp-2.2.1/po-libgimp/gl.gmo 2004-12-28 16:58:49.000000000 +0100 @@ -3,7 +3,7 @@   Add Alpha ChannelConvert to GrayscaleConvert to Indexed using default settings (Do it manually to tune the result)Convert to RGBExport FileFactorFlatten ImageMerge Visible LayersMore...Save as AnimationSelect FileThe export conversion won't modify your original image.UnitUnit SelectionpercentProject-Id-Version: gimp cvs Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2000-07-07 16:33+0200 Last-Translator: Francisco Xosé Vázquez Grandal Language-Team: Galician diff -uraN gimp-2.2.0/po-libgimp/gl.po gimp-2.2.1/po-libgimp/gl.po --- gimp-2.2.0/po-libgimp/gl.po 2004-12-19 03:34:02.000000000 +0100 +++ gimp-2.2.1/po-libgimp/gl.po 2004-12-28 16:58:46.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: gimp cvs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2000-07-07 16:33+0200\n" "Last-Translator: Francisco Xosé Vázquez Grandal \n" "Language-Team: Galician \n" diff -uraN gimp-2.2.0/po-libgimp/he.gmo gimp-2.2.1/po-libgimp/he.gmo --- gimp-2.2.0/po-libgimp/he.gmo 2004-12-19 03:34:05.000000000 +0100 +++ gimp-2.2.1/po-libgimp/he.gmo 2004-12-28 16:58:49.000000000 +0100 @@ -36,7 +36,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers._A_B_C_Duplicate_Edit_G_H_K_M_R_Reset_Resize_Rotate_S_Scale_Shear_Transform_V_YpercentProject-Id-Version: gimp-libgimp.HEAD Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2003-08-13 22:08+0300 Last-Translator: Gil 'Dolfin' Osher Language-Team: Hebrew diff -uraN gimp-2.2.0/po-libgimp/he.po gimp-2.2.1/po-libgimp/he.po --- gimp-2.2.0/po-libgimp/he.po 2004-12-19 03:34:02.000000000 +0100 +++ gimp-2.2.1/po-libgimp/he.po 2004-12-28 16:58:46.000000000 +0100 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: gimp-libgimp.HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2003-08-13 22:08+0300\n" "Last-Translator: Gil 'Dolfin' Osher \n" "Language-Team: Hebrew \n" diff -uraN gimp-2.2.0/po-libgimp/hr.gmo gimp-2.2.1/po-libgimp/hr.gmo --- gimp-2.2.0/po-libgimp/hr.gmo 2004-12-19 03:34:05.000000000 +0100 +++ gimp-2.2.1/po-libgimp/hr.gmo 2004-12-28 16:58:49.000000000 +0100 @@ -23,7 +23,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Transform_V_YpercentProject-Id-Version: gimp-libgimp 0 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-03-20 14:49+CET Last-Translator: auto Language-Team: Croatian diff -uraN gimp-2.2.0/po-libgimp/hr.po gimp-2.2.1/po-libgimp/hr.po --- gimp-2.2.0/po-libgimp/hr.po 2004-12-19 03:34:03.000000000 +0100 +++ gimp-2.2.1/po-libgimp/hr.po 2004-12-28 16:58:46.000000000 +0100 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: gimp-libgimp 0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-03-20 14:49+CET\n" "Last-Translator: auto\n" "Language-Team: Croatian \n" diff -uraN gimp-2.2.0/po-libgimp/hu.gmo gimp-2.2.1/po-libgimp/hu.gmo --- gimp-2.2.0/po-libgimp/hu.gmo 2004-12-19 03:34:05.000000000 +0100 +++ gimp-2.2.1/po-libgimp/hu.gmo 2004-12-28 16:58:49.000000000 +0100 @@ -28,7 +28,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Background Color_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_Foreground Color_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Preview_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Stroke_Transform_V_White_YpercentProject-Id-Version: gimp-libgimp Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-12-02 10:49+0100 Last-Translator: Arpad Biro Language-Team: Hungarian diff -uraN gimp-2.2.0/po-libgimp/hu.po gimp-2.2.1/po-libgimp/hu.po --- gimp-2.2.0/po-libgimp/hu.po 2004-12-19 03:34:02.000000000 +0100 +++ gimp-2.2.1/po-libgimp/hu.po 2004-12-28 16:58:46.000000000 +0100 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: gimp-libgimp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-12-02 10:49+0100\n" "Last-Translator: Arpad Biro \n" "Language-Team: Hungarian \n" diff -uraN gimp-2.2.0/po-libgimp/id.gmo gimp-2.2.1/po-libgimp/id.gmo --- gimp-2.2.0/po-libgimp/id.gmo 2004-12-19 03:34:05.000000000 +0100 +++ gimp-2.2.1/po-libgimp/id.gmo 2004-12-28 16:58:49.000000000 +0100 @@ -3,7 +3,7 @@ EPVZ`iorux{~    %.1f MBAlphaBlueFont SelectionGreenHueRedSaturationValue_A_B_G_H_R_S_VProject-Id-Version: libgimp HEAD Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2003-06-28 22:03+0700 Last-Translator: Mohammad DAMT Language-Team: Indonesian diff -uraN gimp-2.2.0/po-libgimp/id.po gimp-2.2.1/po-libgimp/id.po --- gimp-2.2.0/po-libgimp/id.po 2004-12-19 03:34:03.000000000 +0100 +++ gimp-2.2.1/po-libgimp/id.po 2004-12-28 16:58:47.000000000 +0100 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: libgimp HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2003-06-28 22:03+0700\n" "Last-Translator: Mohammad DAMT \n" "Language-Team: Indonesian \n" diff -uraN gimp-2.2.0/po-libgimp/it.gmo gimp-2.2.1/po-libgimp/it.gmo --- gimp-2.2.0/po-libgimp/it.gmo 2004-12-19 03:34:05.000000000 +0100 +++ gimp-2.2.1/po-libgimp/it.gmo 2004-12-28 16:58:49.000000000 +0100 @@ -27,7 +27,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Background Color_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_Foreground Color_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Preview_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Stroke_Transform_V_White_YpercentProject-Id-Version: gimp 1.1.16 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-11-30 23:47+0100 Last-Translator: Marco Ciampa Language-Team: gimp.linux.it diff -uraN gimp-2.2.0/po-libgimp/it.po gimp-2.2.1/po-libgimp/it.po --- gimp-2.2.0/po-libgimp/it.po 2004-12-19 03:34:03.000000000 +0100 +++ gimp-2.2.1/po-libgimp/it.po 2004-12-28 16:58:47.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: gimp 1.1.16\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-11-30 23:47+0100\n" "Last-Translator: Marco Ciampa \n" "Language-Team: gimp.linux.it\n" diff -uraN gimp-2.2.0/po-libgimp/ja.gmo gimp-2.2.1/po-libgimp/ja.gmo --- gimp-2.2.0/po-libgimp/ja.gmo 2004-12-19 03:34:05.000000000 +0100 +++ gimp-2.2.1/po-libgimp/ja.gmo 2004-12-28 16:58:49.000000000 +0100 @@ -20,7 +20,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Transform_V_YpercentProject-Id-Version: gimp HEAD Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-03-23 20:38+0900 Last-Translator: SHIRASAKI Yasuhiro Language-Team: Japanese diff -uraN gimp-2.2.0/po-libgimp/ja.po gimp-2.2.1/po-libgimp/ja.po --- gimp-2.2.0/po-libgimp/ja.po 2004-12-19 03:34:03.000000000 +0100 +++ gimp-2.2.1/po-libgimp/ja.po 2004-12-28 16:58:47.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: gimp HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-03-23 20:38+0900\n" "Last-Translator: SHIRASAKI Yasuhiro \n" "Language-Team: Japanese \n" diff -uraN gimp-2.2.0/po-libgimp/ko.gmo gimp-2.2.1/po-libgimp/ko.gmo --- gimp-2.2.0/po-libgimp/ko.gmo 2004-12-19 03:34:05.000000000 +0100 +++ gimp-2.2.1/po-libgimp/ko.gmo 2004-12-28 16:58:49.000000000 +0100 @@ -25,7 +25,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Transform_V_YpercentProject-Id-Version: gimp-plug-ins 1.1.10 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2003-06-05 07:55+0800 Last-Translator: Dongsu Jang Language-Team: Korean diff -uraN gimp-2.2.0/po-libgimp/ko.po gimp-2.2.1/po-libgimp/ko.po --- gimp-2.2.0/po-libgimp/ko.po 2004-12-19 03:34:03.000000000 +0100 +++ gimp-2.2.1/po-libgimp/ko.po 2004-12-28 16:58:47.000000000 +0100 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: gimp-plug-ins 1.1.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2003-06-05 07:55+0800\n" "Last-Translator: Dongsu Jang \n" "Language-Team: Korean \n" diff -uraN gimp-2.2.0/po-libgimp/lt.gmo gimp-2.2.1/po-libgimp/lt.gmo --- gimp-2.2.0/po-libgimp/lt.gmo 2004-12-19 03:34:05.000000000 +0100 +++ gimp-2.2.1/po-libgimp/lt.gmo 2004-12-28 16:58:49.000000000 +0100 @@ -27,7 +27,7 @@ Merge Visible LayersModule '%s' load error: %sModule errorMore...Not loadedOld:Paste IntoPaste as NewPattern SelectionPressureRedSaturationSave as AnimationSelect FileSelect FolderSkipping module: '%s' The export conversion won't modify your original image.TriangleUnitUnit SelectionValueVisibleWatercolorWatercolor style color selectorWritableYellowYour image should be exported before it can be saved as %s for the following reasons:_A_B_Browse..._C_Duplicate_Edit_Export_G_H_Ignore_K_M_Profile:_R_Reset_Resize_Rotate_S_Scale_Shear_Transform_V_YpercentProject-Id-Version: GIMP (libgimp) HEAD Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-05-23 11:28+0300 Last-Translator: Žygimantas Beručka Language-Team: Lithuanian diff -uraN gimp-2.2.0/po-libgimp/lt.po gimp-2.2.1/po-libgimp/lt.po --- gimp-2.2.0/po-libgimp/lt.po 2004-12-19 03:34:03.000000000 +0100 +++ gimp-2.2.1/po-libgimp/lt.po 2004-12-28 16:58:47.000000000 +0100 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: GIMP (libgimp) HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-05-23 11:28+0300\n" "Last-Translator: Žygimantas Beručka \n" "Language-Team: Lithuanian \n" diff -uraN gimp-2.2.0/po-libgimp/ms.gmo gimp-2.2.1/po-libgimp/ms.gmo --- gimp-2.2.0/po-libgimp/ms.gmo 2004-12-19 03:34:05.000000000 +0100 +++ gimp-2.2.1/po-libgimp/ms.gmo 2004-12-28 16:58:49.000000000 +0100 @@ -21,7 +21,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers._A_B_Browse..._C_Duplicate_Edit_G_H_K_M_R_Reset_Resize_Rotate_S_Scale_Shear_Transform_V_YpercentProject-Id-Version: libgimp Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2003-10-30 08:00+0800 Last-Translator: Mimos Open Source Development Group Language-Team: Projek Gabai diff -uraN gimp-2.2.0/po-libgimp/ms.po gimp-2.2.1/po-libgimp/ms.po --- gimp-2.2.0/po-libgimp/ms.po 2004-12-19 03:34:03.000000000 +0100 +++ gimp-2.2.1/po-libgimp/ms.po 2004-12-28 16:58:47.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: libgimp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2003-10-30 08:00+0800\n" "Last-Translator: Mimos Open Source Development Group \n" "Language-Team: Projek Gabai \n" diff -uraN gimp-2.2.0/po-libgimp/nb.gmo gimp-2.2.1/po-libgimp/nb.gmo --- gimp-2.2.0/po-libgimp/nb.gmo 2004-12-19 03:34:05.000000000 +0100 +++ gimp-2.2.1/po-libgimp/nb.gmo 2004-12-28 16:58:49.000000000 +0100 @@ -28,7 +28,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Background Color_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_Foreground Color_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Preview_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Stroke_Transform_V_White_YpercentProject-Id-Version: GIMP HEAD Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-12-04 17:15+0100 Last-Translator: Sigurd Gartmann Language-Team: Norwegian Bokmål diff -uraN gimp-2.2.0/po-libgimp/nb.po gimp-2.2.1/po-libgimp/nb.po --- gimp-2.2.0/po-libgimp/nb.po 2004-12-19 03:34:03.000000000 +0100 +++ gimp-2.2.1/po-libgimp/nb.po 2004-12-28 16:58:47.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: GIMP HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-12-04 17:15+0100\n" "Last-Translator: Sigurd Gartmann \n" "Language-Team: Norwegian Bokmål\n" diff -uraN gimp-2.2.0/po-libgimp/nl.gmo gimp-2.2.1/po-libgimp/nl.gmo --- gimp-2.2.0/po-libgimp/nl.gmo 2004-12-19 03:34:05.000000000 +0100 +++ gimp-2.2.1/po-libgimp/nl.gmo 2004-12-28 16:58:49.000000000 +0100 @@ -28,7 +28,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Background Color_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_Foreground Color_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Preview_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Stroke_Transform_V_White_YpercentProject-Id-Version: GIMP 2.0 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-11-18 02:35+0100 Last-Translator: Tino Meinen Language-Team: Dutch diff -uraN gimp-2.2.0/po-libgimp/nl.po gimp-2.2.1/po-libgimp/nl.po --- gimp-2.2.0/po-libgimp/nl.po 2004-12-19 03:34:03.000000000 +0100 +++ gimp-2.2.1/po-libgimp/nl.po 2004-12-28 16:58:47.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: GIMP 2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-11-18 02:35+0100\n" "Last-Translator: Tino Meinen \n" "Language-Team: Dutch \n" diff -uraN gimp-2.2.0/po-libgimp/no.gmo gimp-2.2.1/po-libgimp/no.gmo --- gimp-2.2.0/po-libgimp/no.gmo 2004-12-19 03:34:05.000000000 +0100 +++ gimp-2.2.1/po-libgimp/no.gmo 2004-12-28 16:58:49.000000000 +0100 @@ -28,7 +28,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Background Color_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_Foreground Color_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Preview_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Stroke_Transform_V_White_YpercentProject-Id-Version: GIMP HEAD Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-12-04 17:15+0100 Last-Translator: Sigurd Gartmann Language-Team: Norwegian Bokmål diff -uraN gimp-2.2.0/po-libgimp/no.po gimp-2.2.1/po-libgimp/no.po --- gimp-2.2.0/po-libgimp/no.po 2004-12-19 03:34:03.000000000 +0100 +++ gimp-2.2.1/po-libgimp/no.po 2004-12-28 16:58:47.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: GIMP HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-12-04 17:15+0100\n" "Last-Translator: Sigurd Gartmann \n" "Language-Team: Norwegian Bokmål\n" diff -uraN gimp-2.2.0/po-libgimp/pa.gmo gimp-2.2.1/po-libgimp/pa.gmo --- gimp-2.2.0/po-libgimp/pa.gmo 2004-12-19 03:34:05.000000000 +0100 +++ gimp-2.2.1/po-libgimp/pa.gmo 2004-12-28 16:58:49.000000000 +0100 @@ -16,7 +16,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Transform_V_YpercentProject-Id-Version: pa Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-07-20 16:17+0530 Last-Translator: Amanpreet Singh Alam Language-Team: Punjabi diff -uraN gimp-2.2.0/po-libgimp/pa.po gimp-2.2.1/po-libgimp/pa.po --- gimp-2.2.0/po-libgimp/pa.po 2004-12-19 03:34:03.000000000 +0100 +++ gimp-2.2.1/po-libgimp/pa.po 2004-12-28 16:58:47.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: pa\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-07-20 16:17+0530\n" "Last-Translator: Amanpreet Singh Alam \n" "Language-Team: Punjabi \n" diff -uraN gimp-2.2.0/po-libgimp/pl.gmo gimp-2.2.1/po-libgimp/pl.gmo --- gimp-2.2.0/po-libgimp/pl.gmo 2004-12-19 03:34:05.000000000 +0100 +++ gimp-2.2.1/po-libgimp/pl.gmo 2004-12-28 16:58:49.000000000 +0100 @@ -26,7 +26,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Background Color_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_Foreground Color_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Preview_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Stroke_Transform_V_White_YpercentProject-Id-Version: gimp-libgimp Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-03-19 23:17+0100 Last-Translator: GNOME PL Team Language-Team: Polish diff -uraN gimp-2.2.0/po-libgimp/pl.po gimp-2.2.1/po-libgimp/pl.po --- gimp-2.2.0/po-libgimp/pl.po 2004-12-19 03:34:04.000000000 +0100 +++ gimp-2.2.1/po-libgimp/pl.po 2004-12-28 16:58:47.000000000 +0100 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: gimp-libgimp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-03-19 23:17+0100\n" "Last-Translator: GNOME PL Team \n" "Language-Team: Polish \n" diff -uraN gimp-2.2.0/po-libgimp/pt_BR.gmo gimp-2.2.1/po-libgimp/pt_BR.gmo --- gimp-2.2.0/po-libgimp/pt_BR.gmo 2004-12-19 03:34:05.000000000 +0100 +++ gimp-2.2.1/po-libgimp/pt_BR.gmo 2004-12-28 16:58:49.000000000 +0100 @@ -28,7 +28,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Preview_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Stroke_Transform_V_YpercentProject-Id-Version: pt_BR Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-10-26 10:59-0200 Last-Translator: Joao S. O. Bueno Calligaris Language-Team: Brazilian Portuguese <> diff -uraN gimp-2.2.0/po-libgimp/pt_BR.po gimp-2.2.1/po-libgimp/pt_BR.po --- gimp-2.2.0/po-libgimp/pt_BR.po 2004-12-19 03:34:04.000000000 +0100 +++ gimp-2.2.1/po-libgimp/pt_BR.po 2004-12-28 16:58:48.000000000 +0100 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: pt_BR\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-10-26 10:59-0200\n" "Last-Translator: Joao S. O. Bueno Calligaris \n" "Language-Team: Brazilian Portuguese <>\n" diff -uraN gimp-2.2.0/po-libgimp/pt.gmo gimp-2.2.1/po-libgimp/pt.gmo --- gimp-2.2.0/po-libgimp/pt.gmo 2004-12-19 03:34:05.000000000 +0100 +++ gimp-2.2.1/po-libgimp/pt.gmo 2004-12-28 16:58:49.000000000 +0100 @@ -20,7 +20,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Transform_V_YpercentProject-Id-Version: 2.6 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-03-21 20:20+0000 Last-Translator: Duarte Loreto Language-Team: Portuguese diff -uraN gimp-2.2.0/po-libgimp/pt.po gimp-2.2.1/po-libgimp/pt.po --- gimp-2.2.0/po-libgimp/pt.po 2004-12-19 03:34:04.000000000 +0100 +++ gimp-2.2.1/po-libgimp/pt.po 2004-12-28 16:58:48.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: 2.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-03-21 20:20+0000\n" "Last-Translator: Duarte Loreto \n" "Language-Team: Portuguese \n" diff -uraN gimp-2.2.0/po-libgimp/ro.gmo gimp-2.2.1/po-libgimp/ro.gmo --- gimp-2.2.0/po-libgimp/ro.gmo 2004-12-19 03:34:05.000000000 +0100 +++ gimp-2.2.1/po-libgimp/ro.gmo 2004-12-28 16:58:49.000000000 +0100 @@ -4,7 +4,7 @@ H F T b p ~  $3EU^bhqu }    !%.1f KB%.1f MB%.2f KB%.2f MB%d KBAlphaBlueBrush SelectionCropCyanGradient SelectionGray OnlyGreenHueIndexedLargeLoad failedMagentaMediumModule errorPaste IntoPaste as NewPattern SelectionPressureRGBRedSaturationSmallValueWhite OnlyYellowpercentProject-Id-Version: gimp-libgimp Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2000-11-24 15:46+0100 Last-Translator: Robert Claudiu Gheorghe Language-Team: Română diff -uraN gimp-2.2.0/po-libgimp/ro.po gimp-2.2.1/po-libgimp/ro.po --- gimp-2.2.0/po-libgimp/ro.po 2004-12-19 03:34:04.000000000 +0100 +++ gimp-2.2.1/po-libgimp/ro.po 2004-12-28 16:58:48.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: gimp-libgimp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2000-11-24 15:46+0100\n" "Last-Translator: Robert Claudiu Gheorghe \n" "Language-Team: Română \n" diff -uraN gimp-2.2.0/po-libgimp/ru.gmo gimp-2.2.1/po-libgimp/ru.gmo --- gimp-2.2.0/po-libgimp/ru.gmo 2004-12-19 03:34:05.000000000 +0100 +++ gimp-2.2.1/po-libgimp/ru.gmo 2004-12-28 16:58:49.000000000 +0100 @@ -25,7 +25,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Preview_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Stroke_Transform_V_YpercentProject-Id-Version: gimp.LIBGIMP.ru Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-11-13 00:02+0300 Last-Translator: AnatolyA. Yakushin Language-Team: russian diff -uraN gimp-2.2.0/po-libgimp/ru.po gimp-2.2.1/po-libgimp/ru.po --- gimp-2.2.0/po-libgimp/ru.po 2004-12-19 03:34:04.000000000 +0100 +++ gimp-2.2.1/po-libgimp/ru.po 2004-12-28 16:58:48.000000000 +0100 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: gimp.LIBGIMP.ru\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-11-13 00:02+0300\n" "Last-Translator: AnatolyA. Yakushin \n" "Language-Team: russian \n" diff -uraN gimp-2.2.0/po-libgimp/sk.gmo gimp-2.2.1/po-libgimp/sk.gmo --- gimp-2.2.0/po-libgimp/sk.gmo 2004-12-19 03:34:05.000000000 +0100 +++ gimp-2.2.1/po-libgimp/sk.gmo 2004-12-28 16:58:49.000000000 +0100 @@ -27,7 +27,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Background Color_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_Foreground Color_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Preview_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Stroke_Transform_V_White_YpercentProject-Id-Version: gimp-libgimp.HEAD.pot Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-11-30 18:27+0100 Last-Translator: Zdenko Podobný Language-Team: Slovak diff -uraN gimp-2.2.0/po-libgimp/sk.po gimp-2.2.1/po-libgimp/sk.po --- gimp-2.2.0/po-libgimp/sk.po 2004-12-19 03:34:04.000000000 +0100 +++ gimp-2.2.1/po-libgimp/sk.po 2004-12-28 16:58:48.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: gimp-libgimp.HEAD.pot\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-11-30 18:27+0100\n" "Last-Translator: Zdenko Podobný \n" "Language-Team: Slovak \n" diff -uraN gimp-2.2.0/po-libgimp/sr.gmo gimp-2.2.1/po-libgimp/sr.gmo --- gimp-2.2.0/po-libgimp/sr.gmo 2004-12-19 03:34:06.000000000 +0100 +++ gimp-2.2.1/po-libgimp/sr.gmo 2004-12-28 16:58:49.000000000 +0100 @@ -28,7 +28,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Background Color_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_Foreground Color_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Preview_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Stroke_Transform_V_White_YpercentProject-Id-Version: gimp-libgimp Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-11-18 18:56+0100 Last-Translator: Данило Шеган Language-Team: Serbian (sr) diff -uraN gimp-2.2.0/po-libgimp/sr@Latn.gmo gimp-2.2.1/po-libgimp/sr@Latn.gmo --- gimp-2.2.0/po-libgimp/sr@Latn.gmo 2004-12-19 03:34:06.000000000 +0100 +++ gimp-2.2.1/po-libgimp/sr@Latn.gmo 2004-12-28 16:58:49.000000000 +0100 @@ -25,7 +25,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Background Color_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_Foreground Color_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Preview_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Stroke_Transform_V_White_YpercentProject-Id-Version: gimp-libgimp Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-11-18 18:56+0100 Last-Translator: Danilo Šegan Language-Team: Serbian (sr) diff -uraN gimp-2.2.0/po-libgimp/sr@Latn.po gimp-2.2.1/po-libgimp/sr@Latn.po --- gimp-2.2.0/po-libgimp/sr@Latn.po 2004-12-19 03:34:04.000000000 +0100 +++ gimp-2.2.1/po-libgimp/sr@Latn.po 2004-12-28 16:58:48.000000000 +0100 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: gimp-libgimp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-11-18 18:56+0100\n" "Last-Translator: Danilo Šegan \n" "Language-Team: Serbian (sr) \n" diff -uraN gimp-2.2.0/po-libgimp/sr.po gimp-2.2.1/po-libgimp/sr.po --- gimp-2.2.0/po-libgimp/sr.po 2004-12-19 03:34:04.000000000 +0100 +++ gimp-2.2.1/po-libgimp/sr.po 2004-12-28 16:58:48.000000000 +0100 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: gimp-libgimp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-11-18 18:56+0100\n" "Last-Translator: Данило Шеган \n" "Language-Team: Serbian (sr) \n" diff -uraN gimp-2.2.0/po-libgimp/sv.gmo gimp-2.2.1/po-libgimp/sv.gmo --- gimp-2.2.0/po-libgimp/sv.gmo 2004-12-19 03:34:06.000000000 +0100 +++ gimp-2.2.1/po-libgimp/sv.gmo 2004-12-28 16:58:49.000000000 +0100 @@ -25,7 +25,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Background Color_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_Foreground Color_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Preview_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Stroke_Transform_V_White_YpercentProject-Id-Version: libgimp Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-11-15 10:32+0900 Last-Translator: Jan Morén Language-Team: Swedish diff -uraN gimp-2.2.0/po-libgimp/sv.po gimp-2.2.1/po-libgimp/sv.po --- gimp-2.2.0/po-libgimp/sv.po 2004-12-19 03:34:04.000000000 +0100 +++ gimp-2.2.1/po-libgimp/sv.po 2004-12-28 16:58:48.000000000 +0100 @@ -4,13 +4,13 @@ # Christian Rose , 2000, 2001, 2002, 2003. # Jan Morén (jan.moren@lucs.lu.se> 2003. # -# $Id: sv.po,v 1.83 2004/11/20 00:26:40 neo Exp $ +# $Id: sv.po,v 1.84 2004/12/19 02:37:12 neo Exp $ # msgid "" msgstr "" "Project-Id-Version: libgimp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-11-15 10:32+0900\n" "Last-Translator: Jan Morén \n" "Language-Team: Swedish \n" diff -uraN gimp-2.2.0/po-libgimp/tr.gmo gimp-2.2.1/po-libgimp/tr.gmo --- gimp-2.2.0/po-libgimp/tr.gmo 2004-12-19 03:34:06.000000000 +0100 +++ gimp-2.2.1/po-libgimp/tr.gmo 2004-12-28 16:58:49.000000000 +0100 @@ -3,7 +3,7 @@   Add Alpha ChannelConvert to GrayscaleConvert to Indexed using default settings (Do it manually to tune the result)Convert to RGBExport FileFactorFlatten ImageMerge Visible LayersMore...Save as AnimationSelect FileThe export conversion won't modify your original image.UnitUnit SelectionpercentProject-Id-Version: GIMP 1.2.1 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2001-07-16 06:51+0300 Last-Translator: Alper Ersoy Language-Team: Turkish diff -uraN gimp-2.2.0/po-libgimp/tr.po gimp-2.2.1/po-libgimp/tr.po --- gimp-2.2.0/po-libgimp/tr.po 2004-12-19 03:34:04.000000000 +0100 +++ gimp-2.2.1/po-libgimp/tr.po 2004-12-28 16:58:48.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: GIMP 1.2.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2001-07-16 06:51+0300\n" "Last-Translator: Alper Ersoy \n" "Language-Team: Turkish \n" diff -uraN gimp-2.2.0/po-libgimp/uk.gmo gimp-2.2.1/po-libgimp/uk.gmo --- gimp-2.2.0/po-libgimp/uk.gmo 2004-12-19 03:34:06.000000000 +0100 +++ gimp-2.2.1/po-libgimp/uk.gmo 2004-12-28 16:58:49.000000000 +0100 @@ -20,7 +20,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Transform_V_YpercentProject-Id-Version: GIMP 1.1.9 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-04-10 16:53+0200 Last-Translator: Maxim Dziumanenko Language-Team: Ukrainian diff -uraN gimp-2.2.0/po-libgimp/uk.po gimp-2.2.1/po-libgimp/uk.po --- gimp-2.2.0/po-libgimp/uk.po 2004-12-19 03:34:05.000000000 +0100 +++ gimp-2.2.1/po-libgimp/uk.po 2004-12-28 16:58:48.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: GIMP 1.1.9\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-04-10 16:53+0200\n" "Last-Translator: Maxim Dziumanenko \n" "Language-Team: Ukrainian \n" diff -uraN gimp-2.2.0/po-libgimp/vi.gmo gimp-2.2.1/po-libgimp/vi.gmo --- gimp-2.2.0/po-libgimp/vi.gmo 2004-12-19 03:34:06.000000000 +0100 +++ gimp-2.2.1/po-libgimp/vi.gmo 2004-12-28 16:58:49.000000000 +0100 @@ -25,7 +25,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers._A_B_Duplicate_Edit_G_H_R_Reset_Resize_Rotate_S_Scale_Shear_Transform_VpercentProject-Id-Version: Gimp-libgimp 1.3.x Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2003-01-30 23:28+0700 Last-Translator: Trinh Minh Thanh Language-Team: Gnome-Vi diff -uraN gimp-2.2.0/po-libgimp/vi.po gimp-2.2.1/po-libgimp/vi.po --- gimp-2.2.0/po-libgimp/vi.po 2004-12-19 03:34:05.000000000 +0100 +++ gimp-2.2.1/po-libgimp/vi.po 2004-12-28 16:58:49.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: Gimp-libgimp 1.3.x\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2003-01-30 23:28+0700\n" "Last-Translator: Trinh Minh Thanh \n" "Language-Team: Gnome-Vi \n" diff -uraN gimp-2.2.0/po-libgimp/yi.gmo gimp-2.2.1/po-libgimp/yi.gmo --- gimp-2.2.0/po-libgimp/yi.gmo 2004-12-19 03:34:06.000000000 +0100 +++ gimp-2.2.1/po-libgimp/yi.gmo 2004-12-28 16:58:50.000000000 +0100 @@ -1,6 +1,6 @@ T V&,04etSetAnchorClick the eyedropper, then click a color anywhere on your screen to select that color.GammaPressureValueVisibleProject-Id-Version: 1.0 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2003-03-19 Last-Translator: Raphael Finkel Language-Team: Yiddish diff -uraN gimp-2.2.0/po-libgimp/yi.po gimp-2.2.1/po-libgimp/yi.po --- gimp-2.2.0/po-libgimp/yi.po 2004-12-19 03:34:05.000000000 +0100 +++ gimp-2.2.1/po-libgimp/yi.po 2004-12-28 16:58:49.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: 1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2003-03-19\n" "Last-Translator: Raphael Finkel \n" "Language-Team: Yiddish \n" diff -uraN gimp-2.2.0/po-libgimp/zh_CN.gmo gimp-2.2.1/po-libgimp/zh_CN.gmo --- gimp-2.2.0/po-libgimp/zh_CN.gmo 2004-12-19 03:34:06.000000000 +0100 +++ gimp-2.2.1/po-libgimp/zh_CN.gmo 2004-12-28 16:58:50.000000000 +0100 @@ -34,7 +34,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Background Color_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_Foreground Color_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Preview_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Stroke_Transform_V_White_YpercentProject-Id-Version: gimp-libgimp Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-11-24 19:30+0800 Last-Translator: Yuheng Xie Language-Team: zh_CN diff -uraN gimp-2.2.0/po-libgimp/zh_CN.po gimp-2.2.1/po-libgimp/zh_CN.po --- gimp-2.2.0/po-libgimp/zh_CN.po 2004-12-19 03:34:05.000000000 +0100 +++ gimp-2.2.1/po-libgimp/zh_CN.po 2004-12-28 16:58:49.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: gimp-libgimp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-11-24 19:30+0800\n" "Last-Translator: Yuheng Xie \n" "Language-Team: zh_CN \n" diff -uraN gimp-2.2.0/po-libgimp/zh_TW.gmo gimp-2.2.1/po-libgimp/zh_TW.gmo --- gimp-2.2.0/po-libgimp/zh_TW.gmo 2004-12-19 03:34:06.000000000 +0100 +++ gimp-2.2.1/po-libgimp/zh_TW.gmo 2004-12-28 16:58:50.000000000 +0100 @@ -42,7 +42,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers._A_B_Browse..._C_Duplicate_Edit_Export_G_Gamma:_H_Ignore_K_M_New Seed_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Transform_V_YpercentProject-Id-Version: gimp-libgimp 2.0.0 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-03-23 22:13+0800 Last-Translator: Abel Cheung Language-Team: Chinese (traditional) diff -uraN gimp-2.2.0/po-libgimp/zh_TW.po gimp-2.2.1/po-libgimp/zh_TW.po --- gimp-2.2.0/po-libgimp/zh_TW.po 2004-12-19 03:34:05.000000000 +0100 +++ gimp-2.2.1/po-libgimp/zh_TW.po 2004-12-28 16:58:49.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: gimp-libgimp 2.0.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-03-23 22:13+0800\n" "Last-Translator: Abel Cheung \n" "Language-Team: Chinese (traditional) \n" diff -uraN gimp-2.2.0/po-plug-ins/ca.gmo gimp-2.2.1/po-plug-ins/ca.gmo --- gimp-2.2.0/po-plug-ins/ca.gmo 2004-12-19 03:34:21.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/ca.gmo 2004-12-28 16:59:05.000000000 +0100 @@ -1,159 +1,375 @@ -a$#,F]]] ]] ^^^ -^'^V_Q[________ `$`4`)=`g```` ``a</aClaaaa ab!b 6b@b%Ib obybbbb<bRb .c:cAcScjcc c2c1cd dd+d@dQdmd dddd d -ddddd deee4e -:eEeVe fe -re -}e -eee eeeeeeee e e fff .f :fHfMf\fdf hftf{fffffffff$f2 g@gGg [gegh|ghg)Nh'xh#h4h4h(.i)Wi'ili*j5Aj5wj,j*jk4k IkVknk4wk kk'Wll -llllll llllm!m:m -ImTmkm@mmmmmmn!n*n|U|u||| -||)||"}&}.}3}B}R}6Z} -}} } } }}}~ ~ -~&~ -+~ -6~A~G~N~S~ \~f~~~ ~ ~ ~~ ~~(~&.>R -b m{  #( 9 ESd} 2ڀ/ B== - Ɂ -Ձ $3D x ‚Ȃn΂=YŃv\Cw ąЅ - !:? S` hr6 Ć ܆  ! + 7D KX^ r -/ GBJNI܈&,%;$a%$%щ$$->C J T^z - ̊ -# , 6%C i -s~' Ë * 2< CPh - Ȍ Ќ݌ -  0 -H S`x   ˍ  #2Je  - ʎێ'7Uq ɏ %9AQ Xbkt#yÐې   & -:2Buđב  -( BOgw ~ - -Œ˒ -Ғݒ# -  %3': blr y  ɓғ8ۓ + L TauÔԔ  "<EI$Nsw~ -ȕ ؕ $6QX\%o Ȗ̖і֖ #CK ^ ӗ(0A"U -x 1,  ' .:B [gp ę Ιؙޙ4%*<L;T -  šК - . J Vdw ś՛     ) 5 A/M}  ƜҜ ٜ# 7+Eqw -~  ˝ם +#49 Lr`PaǛ ۛ ƜӜۜ1"7Zq *ʝ"8W +^'iVQ:PW \fk|  + ӟ  (ARar)̠L8Ss ɡ<C$b/'6}V&Ԥ"; +J U_z % إ<DRL Ӧ 2 1?q w$ѧA@ R`fl  +Ĩɨ 8 +>I[l | + + + +ҩ3ש !'.=DIO_p êʪ ܪ  (/4=MUh + ǫիݫ "%H?a$Ԭ2#,/P'&ϭJ &W'~ + +î*׮( I Q[hrhۯ)D'n#44($)M'wl* 575m,*в4 + ? L$Z4ճ ݳ'37Ur +y ¶ ̶ٶ +  .?N`{ +ŷ ڷ@ )6E +alø̸޸ !2 F S` t$+4%>R dn+wúAֺ! & 2@)O6y +л +ۻ(+!Bd}& # #&1J#|&ǽ/>0o8 + <|\'ٿ9! [i x   + +9J +S ^ +lw   .6 GUmy $$0U ]ix  !-IXo x    5> +E +P [ gq +  20=,1j=/ + %+1(]B )5 P\d   + 1:I)/#2(+[ "4 2?Xw %8'Px).-'M u#%25 ;I#P t$ 167'n  !7<CZz +)"+38GW6_ + ! +0; +@ +KV\ch q~  m { g +(()Q{ +  ,BK]m    ,: A KY] o { -2/:Bj= + +  +59@$`3   + n'Yvx\sC )0HX +h s" K`in  6   +(L*u  ] -9 =J Q^d x  + +/" ( 4G>BNIbh%w$%$% $3X`iz   +%= Ygy  +  + ) @LU] f p<}% + ' :[k    + (@X +` kx  +  -*?Rk ?ޞ)"%L<rE "'9aj  ͠Ԡ ڠ!#,1A -]hot} - ǡסݡ -)4 KUm -  $ ,9DP'@   1> E S`i 7ڤZ=D -J U b lv ĥѥ  7R5mFM -EXPK;>V<7Ҩ -!!Cb.))ڪ!3&ګ!0@4q~ج=W!J) -<G-Lz î̮Ю֮ ۮ  *Hagks ¯ ǯӯ &/ 6FB,QȰ:U*gϱױ RPa=.-'-U -  n!17>CKe}´ Ŵ&Ѵ%%DJP_bhnsxC:ԵFVeh϶׶ ܶ#(+07="Adm~  ·߷ - - -*5<8E~ -ù޺ -0YJ`  ?Wl.ռ/ڼ& -&1!X"z'&Ž#GLX2+ؾ  "? Yc0l  @ǿR[mtH/%U\o"'(.5; -OZa/f) -! - %3 -8 -C -NY jt  !&6 FSZjy 0&!&*-.D;sqqd(%%;>;z##&]%(::&"#Im4} -* #.'.>Eelsy !;OS' "'9U\ c -mx  9@]"e '(19?Oe1v, -<%E-dF --/GO^q.)+AIZp - -!6R -Xc {+.4C U_t+"*= h v    8@ V` -h -s ~ -  9Hf !E#"<!_ " &6,OC| K60=gF*&, <4]6A) *5<`4!4 ?BP/H^m )#M!h 9+0 8 BOaAi -1 9 GQ X ft| $! %8/O  2#G -k!v!+MS \jn8G]*G    ">;a  `<'vQ, -~  '7?V g -t@   - #- -L Wc" -, - 7APG_BPK;-,-,,-Y, -(<S d! "* 3=5P -4)'2Zs   -8C(S|  + 0>E^ bp""4W mw { - $$6Q+k&&& 34Ez  $ "#F NZ x  ?0$*$Ot#  - =$b q{  ' -3> EOf9n    %,K5 && - &.Gv* -$ 5?C-Hvz -! =L]nu}9$8 3=ENUp w . +Fd,t;#! ?` |5 - B=W   # !(!J!l D !57= -u $ ".Eet.=O^n~2    -& 1 @ O X  k x -   I - + ": R+`    $8GP_w  + I [e +v:0 +.EJQYhy  ;[ w    " A%Ms{   #&C7L      (5=2At  +'AHQ Yf~ + + +#"F +LW_ n|  +'  %+ 4BJS\8s + ):A'|  &@ [enr$w + + + 0 @M ]k% +59>M]l| "*= Efx  2I\nv" +# 01<,n  +  ' @LUq 4! +,; P ^hpv +  +; , +8C Ye j +x  + "*5` |   &2 A M Z g s /  /8A.J'y   +Llu + + &3EV ht   +#!6Ib0y]]'f  #"?F)%$<JE   /$*TC+!)K'f      ( /  5 !A #c         +  + + +  +" +' +0 +6  -4 -? -N - b - - - - - -  , !H j !     Z I !f  5 - F PP    # Q  L$X}     )JQ4k -  5;B GSf y - 1"T\dy -N-H? - -.KIOq  -) -4 ? Ij5s- - -'0E*`''U!1SSPKEDK<70hp#3+&-RBh+&37L "K-d c4p@ -%0J[uw *  !& H O S %[ $      ! ! ! !*!}`H2IJ)vf%f qtPQNoe;*L53s[88QH =#N,Hr3}?G=!ph 1o**JD"+&b>QM'[ >&x-R) S_1#TUV4`/@ V(:tQtKMZuea%7DuU,Tp47O`^'Cw7?N9P2YgTC]#3 Y(8SkO&6{W28 akq.LH`I-E=A\In$ 64cSK3dWjMy+#/hGjYB^;SR;=Rn@zz9x~wzB7f -ml !@gx=@P,~O5v;<]\enD/_G oU"IE[ -J$W!10]TcNKjh6B|69\(v}2^.'V{MkPW6@8mY!<#M;pj\ }0||X<A+J >~AyL 4.y<'Fc/Z{3"CHBtgb`LZZR?u*f -o Wl q m>hKEe-Jy$|Z0%R1-XXv( (Height Mismatch!) (Width Mismatch!) Rows of "Fix seed" button is an alias of me. -The same seed produces the same image, if (1) the widths of images are same (this is the reason why image on drawable is different from preview), and (2) all mutation rates equal to zero.# of Spikes:%s -- Print v%s(None)A bailout-value for adaptive selectionsA less-obsolete creation of Adam D. Moss / adam@gimp.org / adam@foxbox.org / 1998-2000A unit definition will only be saved before GIMP exits if this column is checked.AboutActionAdaptiveAdd FractalExplorer PathAdd new smvectorAdd new vectorAdding Blinds...Adding Checkerboard...Adding Noise...AdditionAdds a shadow effect to each brush strokeAdds random noise to the colorAdjust the Flare IntensityAdjust the Luminosity ThresholdAdjust the Number of SpikesAdjust the Opacity of the SpikesAdjust the Spike DensityAdjust the Spike LengthAdjust the Value how much the Hue should be changed randomlyAdjust the Value how much the Saturation should be changed randomlyAdjust the preview's brightnessAdvanced Filter Pack OptionsAffected RangeAlienMap2AlienMap2: Transforming...Align Visible LayersAll blackAll grayAll text fields must contain a value.All whiteAlphaAlpha ChannelsAlpha:Ambient:Amount of original color to show where no direct light fallsAn obsolete creation of Adam D. Moss / adam@gimp.org / adam@foxbox.org / 1998-2000Angle span:Angle:Angular Gradient:Angular Size Gradient:Animated GIF OptionsAnimation Playback:AntialiasingAntialiasing quality. Higher is better, but slowerApplies the paper as it is (without embossing it)ApplyApply CanvasApplying Canvas...Applying convolutionApplying lens...Applying the Filter Pack...Area #%d SettingsArea SettingsArea:ArrowAsciiAspect ratio:Asymmetry:Author:AutoAuto-Stretching Contrast...Auto-Stretching HSV...AutomaticAvailable Images:B/WBLANK/NaN Pixel ReplacementBack:BackgroundBackground ColorBackground TypeBackground:Barnsley 1Barnsley 2Barnsley 3Before and AfterBentBevel EdgesBlackBlack:Blend SettingsBlindsBlueBlue:Blur ParametersBlur RadiusBlur TypeBlurring...BorderBorder Average...Border SizeBorderaverageBothBottom Border:Bottom:BoxBrightness:BrowseBump MapBump-mapping...By DATAMIN/DATAMAXCML_explorer: evoluting...CMYCMYKCX:CY:Calculation SettingsCan't operate on unknown image typesCannot delete!! There must be at least one GFlare.CenterCenter of SuperNovaCenterizeChange order of arrowsChange the CX value (changes aspect of fractal, active with every fractal but Mandelbrot and Sierpinski)Change the CY value (changes aspect of fractal, active with every fractal but Mandelbrot and Sierpinski)Change the angle of the selected smvectorChange the angle of the selected vectorChange the exponent of the strengthChange the first (minimal) x-coordinate delimitationChange the first (minimal) y-coordinate delimitationChange the intensity of the blue channelChange the intensity of the green channelChange the intensity of the red channelChange the iteration value. The higher it is, the more details will be calculated, which will take more timeChange the number of colors in the mappingChange the second (maximal) x-coordinate delimitationChange the second (maximal) y-coordinate delimitationChange the strength of the selected smvectorChange the strength of the selected vectorChange to thisChanges the gamma (brightness) of the selected brushChannel #%d:Channel RepresentationsChannelsCheck if you would like to have the table captioned.CheckerboardChecking this tag will cause GTM to leave no whitespace between the TD tags and the cellcontent. This is only necessary for pixel level positioning control.Choose Fractal by double-clicking on itCircleCleanup...ClearClose curve on completionClosedCollectColorColor DensityColor Enhance...Color ExchangeColor Exchange...Color Exchange: From ColorColor Exchange: To ColorColor FunctionColor ModeColor Selection DialogColor TransformationColor is computed from the average of all pixels under the brushColor to AlphaColor to Alpha Color PickerColor:ColorifyColorify Custom ColorColorifying...ColoringColormap RotationColorsCommand:CommentComment:ComposeCompose ChannelsComposing Images...Composing...Composition:CompressionConstructing maze using Prim's Algorithm...Constructing tileable maze using Prim's Algorithm...ContextContinuous grad. w/o gapContinuous gradientContinuous updateContrast:ControlsControls how intense the highlights will beConvert the image to RGB first!Convolution MatrixConvolveCopyCopy GFlareCopy SettingsCopy an objectCopy the texture of the selected paper as a backgroundCopying IFS to image (%d/%d)...Copyright:CosineCouldn't load one brush in the pipe, giving up.Couldn't read file:Couldn't save file:Couldn't save resource file:Coupled-Map-Lattice ExplorerCreateCreate GuidesCreate a color-map using a gradient from the gradient editorCreate a color-map with the options you specified above (color density/function). The result is visible in the preview imageCreate a new image when applying filterCreate a new unit from scratch.Create bezier curve. Shift + Button ends object creation.Create circleCreate ellipseCreate lineCreate reg polygonCreate spiralCreate starCreateDIBSection failedCreated with The GIMPCreating diffraction pattern...Cropping...CubismCurl LayerCurl LocationCurl OrientationCurrent:Curve BendCurve Bend...Custom Color:CutCyanCyan:Cyan_KCylinderCylinder lengthCylinder radiusDarkerDarker:Data CompressionData FormattingDate:DecomposeDecomposing...DefaultDefault Map TypeDefine Circle/Oval areaDefine Polygon areaDefine Rectangle areaDeform ModeDegree of slope of each piece's edgeDegreesDeinterlaceDeinterlace...DeleteDelete FractalDelete GFlareDelete PointDelete an objectDelete currently selected fractalDelete selected areaDelete selected smvectorDelete selected vectorDeletes the selected PresetDelta functionDelta function steppedDensity:Depth MergeDepth-merging...Description:DespeckleDestination color rangeDestination:DestripeDestriping...DiamondDiffraction PatternsDiffuse:DigitsDimension:DimensionsDirectionDirection VectorDirectionalDirectionsDirections:DisplaceDisplacing...Display as:Dither Algorithm:DivisionDraw a Border of Spikes around the ImageDrawing Flame...Drawing Grid...Drawing Maze...Drawing SettingsDraws lines between the control points. Only during curve creationDrop ShadowEOF encountered on readingEach piece has curved sidesEach piece has straight sidesEdge AffectedEdge DetectionEdge Detection...Edge darken:EdgesEditEdit Area Info...Edit FlameEdit Map Info...Edit ObjectEdit fractal nameEdit selected area infoEditing read-only object - you will not be able to save itEffect ChannelEffect OperatorEmbossEnable/disable bump-mapping (image depth)Enable/disable environment-mapping (reflection)Enable/disable high quality previewEnable/disable jagged edges removal (antialiasing)Encapsulation:EndPage failedEngraveEngraving...Environment image to useError during open of FITS fileError during writing rgb imageError in GIMP brush pipe file.Error opening fileError reading fileError: failed to load parametersError: it's not CML parameter file.Evenly distributedExport PreviewFITS file keeps no displayable imagesFITS save cannot handle images with alpha channelsFactorFast IntegerFeatherFileFile "%s" saved.File '%s' is corrupt. -Line %d Option section incorrectFile '%s' is not a FractalExplorer fileFile already existsFilename:Fill (bottom to top)Fill (left to right)Fill (right to left)Fill (top to bottom)Fill with parameter kFilmFilterFilter Pack SimulationFinding Animation Background...Finding Edges...Finding XY gradient...First Destination ColorFirst GfigFirst Source ColorFixed-direction-vector map selection menuFlameFlame works only on RGB drawables.FlareFXFlipFloating-PointFlow Step %d...FlowingFocus the brush strokes around the center of the imageForegroundFractal ParametersFractal TraceFractal TypeFractal name:FractalExplorer GradientFractional PixelsFrame %dFrame %d of %dFrame (%i)FromFrom ColorFrom paperFrom:Front:FullFunctionGEE-SLIMEGFLI 1.3 - Load framestackGFLI 1.3 - Save framestackGFlareGFlare EditorGIF OptionsGIF WarningGIMP ExtensionGIMP Plug-InGIMP Table MagicGIMP brush file appears to be corrupted.Gamma:GeneralGeneral OptionsGeneral PreferencesGeneral optionsGlass TileGlass Tile...Glow Paint OptionsGrabGradientGradient Flare...Gradient Map...Gradient map selection menuGradientsGraph of the current settingsGrayGrayscaleGreenGreen:GreyGridGrid GranularityGrid OffsetGrid SettingsGrid Settings...Grid Visibility and TypeGuidesGuides...Guillotine...HSVHTML Page OptionsHeight:Hey where has the object gone ?Higher values increase the magnitude of the effectHigher values makes the highlights more focusedHigher values makes the object reflect more light (appear lighter)Higher values restrict the effect to fewer areas of the imageHighlight:Highlights:HorizontalHorizontal ColorHorseshoeHotHow many units make up an inch.How much to "darken" the drop shadowHow much to "darken" the edges of each brush strokeHow much to blur the drop shadowHueHue Rotation:Hue VariationsHue:IDITER:IWarpIf checked GTM will output a full HTML document with , , etc. tags instead of just the table html.If checked GTM will replace any rectangular sections of identically colored blocks with one large cell with ROWSPAN and COLSPAN values.If checked the mapping will begin at the right side, as opposed to beginning at the left.If unchecked the image will be circularly mapped onto a rectangle. If checked the image will be mapped onto a circle.If unchecked the mapping will put the bottom row in the middle and the top row on the outside. If checked it will be the opposite.If you enable this option higher color values will be swapped with lower ones and vice versaIf you enable this option the preview will be redrawn automaticallyIllusionIllusion...Image ComposingImage SelectionImage SizeImage dimensions: %d x %dImage name:Images for the Cap FacesInchInclude decorationsInsert PointIntegerIntensityIntensity LevelsIntensity of original color when lit by a light sourceInterlaceInternal GIMP procedureIntersectionIntersection ColorInversionInverts the Papers textureIsometricIterations:JPEG previewJigsawJigsaw StyleJuliaKeep image's valuesKeep originalKeep the first valueLZ77LambdaLandscapeLaplace...Layer %s doesn't have an alpha channel, skippedLeft:Lens EffectLess Sat:Let the direction from the center determine the direction of the strokeLet the direction from the center determine the size of the strokeLet the value (brightness) of the region determine the direction of the strokeLet the value (brightness) of the region determine the size of the strokeLightLight SettingsLight source X direction in XYZ spaceLight source X position in XYZ spaceLight source Y direction in XYZ spaceLight source Y position in XYZ spaceLight source Z direction in XYZ spaceLight source Z position in XYZ spaceLighterLighter:Lighting EffectsLineLinearLink TypeList ViewLoad Curve Points from fileLoad FITS FileLoad FlameLoad Fractal ParametersLoad ImagemapLoad KISS PaletteLoad Parameters fromLoad PostScriptLoad a fractal from fileLogarithmicLoopMagentaMagenta:Magenta_KMain OptionsMake image transparent outside objectMan'o'warMandelbrotMandelbrot ParametersManualManually specify the stroke orientationManually specify the stroke sizeMap Color RangeMap Images to Box FacesMap file formatMap to ObjectMap to:Mask FileMatrixMax (x+d, -)Max (x+d, -), (0.5 < x)Max (x+d, -), (x < 0.5)Max (x, -)Max (x-d, -)Max (x-d, -), (0.5 < x)Max (x-d, -), (x < 0.5)Max RGBMax. Memory:Maximum height for bumpsMerging...Midtones:Min (x+d, -)Min (x+d, -), (0.5 < x)Min (x+d, -), (x < 0.5)Min (x, -)Min (x-d, -)Min (x-d, -), (0.5 < x)Min (x-d, -), (x < 0.5)ModeMore Sat:MosaicMotion BlurMoveMove DownMove SashMove Selected ObjectsMove To FrontMove UpMove a single pointMove an objectMovementMultiple (57):Multiply gradient (0,1)Multiply rand. value (0,1)Multiply rand. value (0,2)My first fractalNL FilterNameNew FractalNew GFlareNew UnitNewsprintNo data capturedNo selection to convertNoneNormalNormal:Normalizing...Number of ColorsNumber of TilesNumber of pieces going acrossNumber of pieces going downNumber of times to apply filterNumberingObject DetailsObject X position in XYZ spaceObject Y position in XYZ spaceObject Z position in XYZ spaceOffset (1):Offset all vectors with a given angleOffset:Oil Painting...OilifyOn Edges:On Film:Opacity:OpenOpens up the Orientation Map EditorOpens up the Size Map EditorOptimizeOptimizing Animation...OptionsOrientationOrientation Map EditorOrientation:OriginalOriginal:OutputOutside TypeOverlayPNM save cannot handle images with alpha channels.PNM: Error reading file.PNM: Invalid X resolution.PNM: Invalid Y resolution.PNM: Invalid file.PNM: Invalid maximum value.PNM: Premature end of file.PPD File:PPIPS DiamondPS Square (Euclidean Dot)Page Curl...PageSetupDlg failed: %dPagecurl EffectPages:Paint Mode:Paint edgesPainting...Paper TileParameter k:ParametersPastePastedPasting...PercentPercentage of pixels to be filteredPhotographPieces:PixelizePixelizing...PixelsPlace strokes randomly around the imagePlacementPlanePlasmaPlasma...Play/StopPlayback:PluralPointPolarPolarizePolarizing...PolygonPortraitPositionPostScript save cannot handle images with alpha channelsPreferencesPreserve the original image as a backgroundPreviewPreview SizePreview as You DragPrint Color AdjustPrint and -Save SettingsPrintDlg failed: %dPrinter Model:Printer SettingsPrinter doesn't support bitmapsPrinting...Probability Gradient:ProgressivePropagating Value ChannelQuality:RGBRGBARGBA/GRAYA drawable is not selected.RLERadialRadial Gradient:RadiansRadians/PiRadiusRadius:RandomRandom Hurl 1.7Random Pick 1.7Random Seed:Random Slur 1.7Random sharedRandom, ch. independentRandomlyRandoms from seedRandoms from seed (shared)Ranks:RawRays Paint OptionsReads the selected Preset into memoryRealtime PreviewRecompute preview imageRectangleRedRed:RedoRedo last zoomRedrawRedraw previewReflectivityRefresh the Preview windowRegular Polygon Number of SidesRelief:Remap Colorized...Removing Animation Background...Removing color...Render Flare...RenderingRendering Blast...Rendering Fractal...Rendering IFS (%d/%d)...Rendering SuperNova...Rendering Tiles...Rendering Wind...ReplaceRescan GradientsRescan for FractalsReset parameters to default valuesResolutionResolution:Resulting Guide Bounds: %d,%d to %d,%d (%d areas)Resulting Guide Bounds: 0,0 to 0,0 (0 areas)Revert to the original imageRewindRight Border:Right:RippleRippling...RotatedRotating the colormap...Rotating...RotationRotation angle about X axisRotation angle about Y axisRotation angle about Z axisRotation:RoughnessRoundRunLength EncodedSUNRAS save cannot handle images with alpha channelsSameSample Analyze...Sample ColorizeSample:Samples the color from the pixel in the center of the brushSaturationSaturation VariationsSaturation:SaveSave -SettingsSave Curve Points to fileSave FlameSave Fractal ParametersSave ImagemapSave Parameters toSave active fractal to fileSave as BMPSave as BrushSave as Brush PipeSave as C-SourceSave as GIFSave as JPEGSave as PNGSave as PNMSave as PSPSave as PatternSave as PostScriptSave as SGISave as SUNRASSave as TGASave as TIFFSave as TextSave as XBMSave as XJTSave as XPMSave the current settings to the specified fileSavedScale Hue by:Scale Value by:Scale X:Scale:Scaling:Scatter HSVScatter RGBScreenScreen ShotSeascapeSecond Destination ColorSecond Flares Paint OptionsSecond Source ColorSeconds DelaySeed of Random (only for "From Seed" Modes)Seed:SelectSelect AllSelect ColorSelect Film ColorSelect HTML fileSelect Image FileSelect NextSelect Number ColorSelect Pixels bySelect RegionSelect allSelect existing areaSelect next smvectorSelect next vectorSelect previous smvectorSelect previous vectorSelect:Selected:SelectionSelection size is not even. -Tileable maze won't work perfectly.Selective Gaussian BlurSelective Load SettingsSelective Load fromSelects a random direction of each strokeSelects a random size for each strokeSelects if the resulting image should be seamlessly tileableSelects if to place strokes all the way out to the edges of the imageSend To BackSeparate to:September 31, 1999Set light source colorSetStretchBltMode failed (warning only)SettingsSettings for this MapfileShadow blur:Shadow depth:Shadows:Shape of Second FlaresSharpening...Shear:ShiftShifting...Should an Inverse Effect be done?Should the Luminosity be preserved?ShowShow Line FrameShow/hide preview wireframeSierpinskiSimpleSineSingularSinusSinus: rendering...SinusoidalSizeSize (%):Size Factor Gradient:Size Map EditorSize:Sizes:SmearSmooth PaletteSmoothing X gradient...Smoothing Y gradient...Smoothing:Smoothness of AliasingSmvectorsSobel Edge Detecting...Sobel Edge DetectionSolidSolid NoiseSolid Noise...Solid colored backgroundSorry, channels and masks can not be rotated.Source 1:Source 2:Source color rangeSource...Spacing:SparkleSparkling...Spatial TransformationSpecifies the amount of embossing to apply to the image (in percent)Specifies the aspect ratio of the brushSpecifies the scale of the texture (in percent of original file)Specular:SphereSphericalSpiderSpike Thickness:Spot Radius:SpreadSpread AmountSpreading...StandardStar Number of PointsStart angle:StartPage failedStepStop when pixel differences are smaller than this valueStretchStretchBlt (hDC, %d, %d, %d, %d, hdcMem, %d, 0, %d, 1, SRCCOPY) failed, error = %d, y = %dStrongStyleSubdivide:Subsampling:Substeps:SuperNovaSuperNova Color PickerSwirlSwitch to c/clockwiseSwitch to clockwiseSymbolTIFF ChannelTable Creation OptionsTable OptionsTargetTemporaryTemporary ProcedureThank you for choosing GIMPThe amount of cellpadding.The amount of cellspacing.The amount of highlighting on the edges of each pieceThe brush-size that matches the original image the closest is selectedThe colors are white and black.The depth of the drop shadow, i.e. how far apart from the object it should beThe direction that matches the original image the closest is selectedThe distance from the center of the image determines the direction of the strokeThe distance from the center of the image determines the size of the strokeThe first row of the imageThe height for each table cell. Can be a number or a percent.The hue of the region determines the direction of the strokeThe hue of the region determines the size of the strokeThe image which you are trying to save as a GIF +J +U + Z +d +z +' + + +Y +  + * 2 A Y  +q |          * /F -v /         # : DU ' @    $.5F MZ` g u 7 Zo +     + %2 ; +HS jx R&%LZ_S)5DFz0ME`PKC>^<7 !.&)U%)3q&0 4<qp~=%,$!J+ v) +- $ 6@CLPV [e     @Y_ck  % />F O \i&    . FF  , Q :!Y!n!*!!!!!!!!""&"5"E"M"V" +e"p" v" "R"P"3#;#D#M#S#[#j $At$$$=$.%-H%-v%%% +% %% %%U%nA&&&&,& ''' ':'R'j''''' '&'%'%'($(*(;(@(E(T(W(](c(h(m(t(|(S(C(:)FX)))))))))** ,* 6* @*J*Q*Y* b*n*v* ** * * +* ********+ + + +*+ 1+;+D+J+S+ [+ g+u+~++ +++++ +++ ++ +,,, +",-,4, ;,E, K,U,],f, n,x,,,,,,,,,, +, , ,,,,,- - --%-:-B- H-T-l-r-w----------- - - - - .. +. "... 4.A.G. +O. Z.f.o. +w..... .. ... ... +// / +$///5/ >/J/ +R/]/r/ y// / //// / ///// +000#0 +,0 +70B08K0 0 +0 00000 06011 1 '151 T1^1e1 m1y1 1 +1111 1 1 11 11112 22 22#2+2/252<2R2c2i2o2u2z2222222222"2233 3 (343 H3 +R3 ]3 +g3r3 z3 33333 33 33 44 + 4+4:4:O444 +4 +444E4699 +99:;;F%;l;/;;; ;$<3:<8n</</<= =2=YO=d=>+>4> =>G>L>^> e> +o>z>>> >> >>>> > >>'?FDF@MF +FRFFGGG/GIG `GBjG(GGG+GH"8H(wH<H!HHII$I=ICIWI +vIII +I/I)I +IJJ!J;JDJ IJUJ dJrJxJ +J +J +J +JJ J=JK *K4K:KAK WKdKiK oK}K KKKKKKL LL +L8LALILYLhL nLzLLL0LLL&LMMM"M&M,M5M>MRM[MlMtM MMM MM(M!MFNWN,wN.N;N&O76O.nO0O$O)OeP)P*PP +P +PP Q-Q)JQtQ|QQrQrR(R%RR;R;1S#mS#S&SbS(?T:hT:T*T# U-U4=U +rU}U5UUU-UVV+V+WC-WSqWmX3Y:YJYQYpYwY~YY Y YYY +Y YYYY Z!Z0ZBZ`ZyZ ZZZZQZ5[F['Y[[[[ ["[[ +\\8\?\G\ O\[\ b\ +l\w\\ \\ \\ \(\]<;]Dx]]"]]] ^^'%^'M^u^K^^^^^_$_1D_+v__ +__4_+_/)`Y`=x`,`%`( a32a2fa5a.a0a&/b+Vb<bMb c-c-LcQzccccGcEd,d*eR;eeeeeee*e&f)=f gfqfffffff +f ffgg-g5g:g@gGgPgfg xg g +gggg +gg ggh#+hOhkhhh )i+7iciiixi iiiiii+i"j"Ajdj'j jj jjj"k $k 1k?k[kckskkkk kk +k +k k kl l +$l /l ;lEl \l,jl5lAl0m7@m2xmmmm*m2 n0@nqnn nnQn8oJo forozoo ooooop" p,p ;p\plp,p@p pqq4q6Lq8qAq4q3r*Brmrsr&r#r>r ss2+Cj  +׌` COSjq"֍ڍ ߍ +  +# .+8 dn}GB׎PKk-ӏ,-.,\-,  + #*: S_n.~(֑#&"If}В+ & +, 7 +C NZt C3 3 +=Hb4i)Ȕ* & 9C`gw ~  ʕؕ + + #3 M[jz  Ė ݖ  )&7^cksח ۗ   ':IRb"{" ט   + '$PL ę$ՙVLQ51'Bj|'ț+)EV +fq z  + &˜&&@-R( ʝם +  $3G$^ ;"  ! =I gt } ğ>ȟ0$8$]#Ġ  + +-8'Ow ҡ  ,>FO d'p +Ǣ ܢ 9 MZ^ eo# ף9?,l &Ʀ !=@5~&ۧ*9N +hs  ¨ƨ.˨ +# +, +7BIZ +bmrxǩܩ '7_fj3Ū& '8J[ m!y īݫ $CT\ +|+Ѭ0  #0 Bc"­! # @(Lu,ڮ +& @8L3ԯ ݯ + />M#SwҰ  D $e   ̱ +ֱ +   #DJ`t0|   +Ųв +  L$Z  ͳ4Ggvƴִ$:Ie~е2-GMd s   3Ŷ,&.7F`i}"/ط*3K-fL  +!,; Opֹ,>\<x ֺ ;3)oV`vQ(ȼ   -[Cѽ!60/gFL޾+C S]$t/+ɿU$K"p7$"A U#c   & 3=Q m!" +< +GR Zgmv|    +f~  ##  +1J]m t1-2([ck!'L,HHu + "(0DY +juKp  + + &4=Zs +{ +3<^E2cfM*'7Y?$7TUKKE3KP<7#34+h%-<) #+D4p: "|$K[&3-*dF  4@Hg +x& (4H _m*s$(%0&V} 38 ISh)( +8 +P[q&G"8;^tE96R*@HQ `m ta[O X blrxu;k*5H6~88'$-R kw|\pew# 2QW^nq245%+GLQadjpuzsA9BM|' +(&O)d  +   + +# +) 4> +EPYagnu      +    *18 HT\s +    "(/5< EOV[ +b m z   +  + +*5: C Q[nt|      .3; K +Xc +ju ~ . 5 +A LV f +p{    +  +$* IU] fpy D  :, g s    + ")< MW^m v + +    ) 6DGLSgl0o   + + + ' 1 ?`h} + + N0  W d,XG:'z'n8 +**k^+T.8J?NwX\(lSt^&tM>Mc<#-;yXZx +lL 3N^1{ ~U-L gd G'Xa| +{E,j*Tsz" m( +u2TTjHfDVS#l,R>ep"-ew?sqHZ+`?hF^:H=%)5XaIuiwHj2!sO)Dqn1;ZCB}*2Bdb g= mjnO:_u(67@YF> oz!_efLV9$YPS"vIF4:?cei< 0]+n6}}7u0K0^qql `4`cI;i P`&wL- +pHNAgB~gv)a@]MZ'"DIp/mxxPGr<fO?}SbQ}_%,0$r?_$1(b)9K!*Ycc;~tr . ZEf  [5ym7 nHk[9ks0!.L'v*4XuJ9R$ 5,IJa&N[)%{I62skmy&(kGV{ ]U : /z' | Nf A#@ 7\V}wB~;J4|.JrXr3C" + ]CiL}1d3z,/tmUB-V.h.ne %"Y0hKyKM8v:7<\bArF3WQ&WZ 2y^29hAG[>Tyk"QU&!x70C\x[ p#D S4\ O>]I +qQj[,87@=M@VKSg4t%R 9m p)E[whVi6P@R #6ld1i<JRLt]#p5?nu+DC@s#`-xE]AeP`;M-!/NB+o5"oja8|u$_z1:eNOg!Rzkh^tF(6D9G{6!5x.EUYPQFla&Y`=%Ev~a+8Wqy/\8_<oj C>W{v Y {odh%copb=F;_3fKA~ fqT(Q>A#D =2)b =53ZO/cRWs/r|lHC*S<w~\o'QU +14|+MdbO3J$|TBKPWG$UgEiv + +Copyright (C) 1997-2001 Michael Sweet, Robert Krawitz, +and the rest of the Gimp-Print Development Team. + +Please visit our web site at http://gimp-print.sourceforge.net. + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + (Height Mismatch!) (Width Mismatch!) Rows of "Fix seed" button is an alias of me. +The same seed produces the same image, if (1) the widths of images are same (this is the reason why image on drawable is different from preview), and (2) all mutation rates equal to zero.# of Spikes:%d x %d%s -- Print v%s'%s' is corrupt. Line %d Option section incorrect'%s' is not a DICOM file.'%s' is not a FractalExplorer file'%s' is not a PCX file'%s' is not a regular file'%s' is not a valid BMP file'%s' is not a valid GFlare file.'%s': +Could not read header (ftell == %ld)'%s': +No image data type specified'%s': +No image height specified'%s': +No image width specified(None)A bailout-value for adaptive selectionsA less-obsolete creation of Adam D. Moss / adam@gimp.org / adam@foxbox.org / 1998-2000A unit definition will only be saved before GIMP exits if this column is checked.ALT te_xt: (optional)A_boutA_ddA_dvancedA_llA_lpha-weightingA_lpha:A_mbient:A_mplitude:A_ngle:A_nimateA_ppendA_utomaticA_verage under brushAbbreviationAboutAbout Gimp-Print ActionAd_vancedAdaptiveAdd Additional GuidesAdd FractalExplorer PathAdd new smvectorAdd new vectorAdding Blinds...Adding Checkerboard...Adding Noise...AdditionAdds a shadow effect to each brush strokeAdds random noise to the colorAdjust color balance, brightness, contrast, saturation, and dither algorithmAdjust the Flare IntensityAdjust the Luminosity ThresholdAdjust the Number of SpikesAdjust the Opacity of the SpikesAdjust the Spike DensityAdjust the Spike LengthAdjust the Value how much the Hue should be changed randomlyAdjust the Value how much the Saturation should be changed randomlyAdjust the cyan balance of the printAdjust the density (amount of ink) of the print. Reduce the density if the ink bleeds through the paper or smears; increase the density if black regions are not solid.Adjust the gamma of the print. Larger values will produce a generally brighter print, while smaller values will produce a generally darker print. Black and white will remain the same, unlike with the brightness adjustment.Adjust the magenta balance of the printAdjust the preview's brightnessAdjust the saturation (color balance) of the print +Use zero saturation to produce grayscale output using color and black inksAdjust the yellow balance of the printAdjusting Foreground/Background...Advanced Filter Pack OptionsAffected RangeAl_ternateAlienMap2AlienMap2: Transforming...Align Visible LayersAll JNGAll PNGAll blackAll grayAll text fields must contain a value.All whiteAlphaAlpha ChannelsAlpha:Ambient:Amount of original color to show where no direct light fallsAmount:An obsolete creation of Adam D. Moss / adam@gimp.org / adam@foxbox.org / 1998-2000Ang_le offset:Angle span:Angle:Angular Gradient:Angular Size Gradient:Animated GIF OptionsAntialiasingAntialiasing quality. Higher is better, but slowerApplies the paper as it is (without embossing it)ApplyApply CanvasApply active gradient to final imageApplying Canvas...Applying convolutionApplying lens...Applying the Filter Pack...Are you sure you want to delete "%s" from the list and from disk?Area #%d SettingsArea SettingsArea:ArrowAs specified aboveAsciiAspect ratio:Assembling Jigsaw...Asymmetry:Aut_hor:Author:AutoAuto-Stretching Contrast...Auto-Stretching HSV...AutomaticAvailable Images:B/WBLANK/NaN Pixel ReplacementBack:BackgroundBackground (%d%s)Background ColorBackground TypeBackground:Bad colormapBarnsley 1Barnsley 2Barnsley 3Base _URL:Before and AfterBentBest for images dominated by regions of solid colorBevel EdgesBili_nearBlackBlack:Blend SettingsBlindsBlueBlue:Blueness_cb470:Blueness_cb470f:Blueness_cb709:Blueness_cb709f:Blur ParametersBlur RadiusBlur TypeBlurring...BorderBorder Average...Border SizeBorderaverageBot_hBothBottom Border:Bottom:BoxBrightness:BrowseBumpBump MapBump-mapping...BumpmapBy DATAMIN/DATAMAXCML_explorer: evoluting...CMYCMYKCX:CY:C_MYKC_ameraC_aptionC_enter of brushC_enteringC_hoose here:C_ircleC_reate New ImageC_rossesC_urvedC_yanC_ylinderCalculation SettingsCan only operate on RGB drawables.Can only save drawables!Can operate on layers only (but was called on channel or mask).Can't create a new imageCan't get Clipboard data.Can't operate on unknown image typesCannot delete!! There must be at least one GFlare.Cannot operate on empty selections.Cannot operate on gray or indexed color images.Cannot operate on indexed color images.Cannot operate on unknown image types.Cannot read extension from '%s'Cannot read footer from '%s'Cannot save RGB color images. Convert to indexed color or grayscale first.Cannot save images with alpha channel.Cannot save images with alpha channels.CenterCenter _x:Center _y:Center of SuperNovaCenter the image horizontally on the paperCenter the image on the paperCenter the image vertically on the paperCenter:CenterizeChange order of arrowsChange the CX value (changes aspect of fractal, active with every fractal but Mandelbrot and Sierpinski)Change the CY value (changes aspect of fractal, active with every fractal but Mandelbrot and Sierpinski)Change the angle of the selected smvectorChange the angle of the selected vectorChange the exponent of the strengthChange the first (minimal) x-coordinate delimitationChange the first (minimal) y-coordinate delimitationChange the intensity of the blue channelChange the intensity of the green channelChange the intensity of the red channelChange the iteration value. The higher it is, the more details will be calculated, which will take more timeChange the number of colors in the mappingChange the second (maximal) x-coordinate delimitationChange the second (maximal) y-coordinate delimitationChange the strength of the selected smvectorChange the strength of the selected vectorChange to thisChanges the gamma (brightness) of the selected brushChannel #%d:Channel MixerChannel Mixer File Operation WarningChannel RepresentationsChannelsCheck if you would like to have the table captioned.CheckerCheckerboardChecking this tag will cause GTM to leave no whitespace between the TD tags and the cellcontent. This is only necessary for pixel level positioning control.Choose Fractal by double-clicking on itChoose a high compression level for small file sizeChoose the dither algorithm to be used. +Adaptive Hybrid usually produces the best all-around quality. +Ordered is faster and produces almost as good quality on photographs. +Fast and Very Fast are considerably faster, and work well for text and line art. +Hybrid Floyd-Steinberg generally produces inferior output.Choose the printer model, PPD file, and command that is used to print to this printerCircleCleanup...ClearClose curve on completionClosedCo_lorCo_lor:Co_lorsCo_mment:Co_mplexity:Co_mpress TD tagsCo_ntiguous RegionCo_ntrast:Col_umn:CollectColorColor DensityColor Enhance...Color ExchangeColor Exchange...Color Exchange: From ColorColor Exchange: To ColorColor FunctionColor ModeColor Selection DialogColor TransformationColor _noise:Color is computed from the average of all pixels under the brushColor outputColor to AlphaColor to Alpha Color PickerColor_map:Colorcube AnalysisColorcube Analysis...ColorifyColorify Custom ColorColorifying...ColoringColormap RotationColorsColors:CombineComm_ent:Command:CommentComment:ComposeCompose ChannelsComposing Images...Composing...Composition:Compressed size: %sCompressionCompression ratio (approx.): %d to 1Constrain aspect ratioConstructing maze using Prim's Algorithm...Constructing tileable maze using Prim's Algorithm...ContextContinuous grad. w/o gapContinuous gradientContinuous updateContrast:ControlsControls how intense the highlights will beConvert the image to RGB first!Convolution MatrixConvolution Matrix does not work on layers smaller than 3 pixels.ConvolveCopyCopy GFlareCopy SettingsCopy an objectCopy the active curve to the other borderCopy the texture of the selected paper as a backgroundCopying IFS to image (%d/%d)...Copying...Copyright:CosineCould not create working folder '%s': %sCould not execute specified web browser: +%sCould not get layers for image %dCould not interpret '%s'Could not load PNG defaultsCould not open '%s' as SUN-raster-fileCould not open '%s' for reading.Could not open '%s' for reading: %sCould not open '%s' for writing.Could not open '%s' for writing: %sCould not parse specified web browser command: +%sCould not read XWD header from '%s'Could not read color entries from '%s'Could not read header from '%s'Could not write '%s': %sCouldn't load one brush in the pipe, giving up.Couldn't losslessly save transparency, saving opacity instead.Couldn't read file:Couldn't save file:Couldn't save resource file:Couldn't simply reduce colors further. Saving as opaque.Coupled-Map-Lattice ExplorerCreateCreate GuidesCreate a color-map using a gradient from the gradient editorCreate a color-map with the options you specified above (color density/function). The result is visible in the preview imageCreate a new image when applying filterCreate a new unit from scratch.Create bezier curve. Shift + Button ends object creation.Create circleCreate ellipseCreate lineCreate reg polygonCreate spiralCreate starCreateDIBSection failedCreated with The GIMPCreating diffraction pattern...Cro_pCropping...Cu_rve:CubismCurl LayerCurl LocationCurl OrientationCurrent:Curve BendCurve Bend...Curve TypeCurve for BorderCustom Color:CutCyanCyan:Cyan_KCylinderCylinder lengthCylinder radiusD_ivisor:DarkerDarker:Data CompressionData FormattingDate:DecomposeDecomposing...DefaultDefault Map TypeDefault _URL:Define Circle/Oval areaDefine New PrinterDefine Polygon areaDefine Rectangle areaDefine a new logical printer. This can be used to name a collection of settings that you wish to remember for future use.Deform ModeDegree of slope of each piece's edgeDegreesDeinterlaceDeinterlace...DeleteDelete AreaDelete FractalDelete GFlareDelete PointDelete an objectDelete currently selected fractalDelete selected areaDelete selected smvectorDelete selected vectorDeletes the selected PresetDelta functionDelta function steppedDensity:Depth MergeDepth-merging...Deriving Smooth Palette...Description:DespeckleDestination color rangeDestination:DestripeDestriping...Deviation threshold:DiamondDiffraction PatternsDiffuse:DigitsDimension:DimensionsDimensions:DirectionDirection VectorDirectionalDirectionsDirections:DisplaceDisplacing...Display as:Distance from the bottom of the paper to the imageDistance from the left of the paper to the imageDistance from the left of the paper to the right of the imageDistance from the right of the paper to the imageDistance from the top of the paper to the bottom of the imageDistance from the top of the paper to the imageDither Algorithm:DivisionDo _PreviewDo you really want to discard your changes?Draw a Border of Spikes around the ImageDrawables have different sizeDrawing Flame...Drawing Grid...Drawing Maze...Drawing SettingsDraws lines between the control points. Only during curve creationDrop ShadowEOF encountered on readingE_levation:E_xtendEach piece has curved sidesEach piece has straight sidesEdge AffectedEdge DetectionEdge Detection...Edge darken:EdgesEditEdit Area Info...Edit FlameEdit Map Info...Edit ObjectEdit fractal nameEdit selected area infoEditing read-only object - you will not be able to save itEffect ChannelEffect OperatorEmbossEnable/disable bump-mapping (image depth)Enable/disable environment-mapping (reflection)Enable/disable high quality previewEnable/disable jagged edges removal (antialiasing)Enable/disable real time preview of changesEncapsulation:EndPage failedEngraveEngraving...Enter a name for the copied GFlareEnter a name for the new GFlareEnter the name you wish to give this logical printerEntire LayerEnvironment image to useError during open of FITS fileError during writing rgb imageError grabbing the pointerError in GIMP brush file '%s'Error in GIMP brush pipe file.Error in getting layer IDsError obtaining Screen ShotError opening fileError opening file '%s'Error reading BMP file header from '%s'Error reading fileError starting ghostscript (%s)Error while reading '%s'. File corrupted?Error while saving '%s'. Could not save image.Error writing output file.Error: Could not read XJT property file '%s'.Error: XJT property file '%s' is empty.Error: failed to load parametersError: it's not CML parameter file.Evenly distributedExport PreviewFITS file keeps no displayable imagesFITS save cannot handle images with alpha channelsF_ileF_irst Color:FactorFailed to open GFlare file '%s': %sFailed to save PPM file '%s': %sFailed to write GFlare file '%s': %sFast IntegerFastest and brightest color for text and line artFeatherFileFile "%s" saved.File '%s' exists. +Overwrite it?File '%s' is corrupt. +Line %d Option section incorrectFile '%s' is not a FractalExplorer fileFile not in a supported format.Filename:Filename: %sFill (bottom to top)Fill (left to right)Fill (right to left)Fill (top to bottom)Fill with parameter kFilmFilterFilter Pack SimulationFinding Animation Background...Finding Edges...Finding XY gradient...First Destination ColorFirst GfigFirst Source ColorFixed-direction-vector map selection menuFlameFlame works only on RGB drawables.FlareFXFlipFloating-PointFlow Step %d...FlowingFocus the brush strokes around the center of the imageForegroundFractal ParametersFractal TraceFractal TypeFractal name:FractalExplorer GradientFractional PixelsFrame %dFrame %d (%d%s)Frame %d of %dFrame (%i)FromFrom ColorFrom paperFrom:Front:FullFunctionFuzzy SelectG-QbistGEE-SLIMEGFLI 1.3 - Load framestackGFLI 1.3 - Save framestackGFlareGFlare '%s' is not saved. If you add a new entry in '%s', like: +(gflare-path "%s") +and make a folder '%s', then you can save your own GFlares into that folder.GFlare EditorGIF OptionsGIF WarningGIF: Undocumented GIF composite type %d is not handled. Animation might not play or re-save perfectly.GIMP ExtensionGIMP Plug-InGIMP Table MagicGIMP brush file appears to be corrupted.GIMP brushes are either GRAYSCALE or RGBAG_lowGamma:General OptionsGeneral PreferencesGfigGimp-Print Version GimpressionistGlass TileGlass Tile...Glow Paint OptionsGr_eyGrabGrab _AfterGrab a single windowGrab the whole screenGradientGradient Flare...Gradient Map...Gradient map selection menuGradientsGraph of the current settingsGrayGrayscaleGreenGreen:GreyGridGrid GranularityGrid OffsetGrid SettingsGrid Settings...Grid Visibility and TypeGrid spacing:GuidesGuides...Guillotine...HSVHTML Page OptionsH_ighlight:H_ighlightsH_ueH_ue:He_xagonsHeight of the paper that you wish to print toHeight:Help ID '%s' unknownHey where has the object gone ?Higher values increase the magnitude of the effectHigher values makes the highlights more focusedHigher values makes the object reflect more light (appear lighter)Higher values restrict the effect to fewer areas of the imageHighlight:Highlights:HorizontalHorizontal ColorHorizontallyHorseshoeHotHot...How many units make up an inch.How much to "darken" the drop shadowHow much to "darken" the edges of each brush strokeHow much to blur the drop shadowHueHue Rotation:Hue VariationsHue:IDITER:IWarpI_ntensityI_nteractiveIf checked GTM will output a full HTML document with , , etc. tags instead of just the table html.If checked GTM will replace any rectangular sections of identically colored blocks with one large cell with ROWSPAN and COLSPAN values.If checked the mapping will begin at the right side, as opposed to beginning at the left.If unchecked the image will be circularly mapped onto a rectangle. If checked the image will be mapped onto a circle.If unchecked the mapping will put the bottom row in the middle and the top row on the outside. If checked it will be the opposite.If you enable this option higher color values will be swapped with lower ones and vice versaIf you enable this option the preview will be redrawn automaticallyIllusionIllusion...Im_ageImage / Output SettingsImage ComposingImage SelectionImage SizeImage TypesImage dimensions: %d x %dImage is not a gray image (bpp=%d)Image name:Image size has changed.Images for the Cap FacesImages have different sizeImport path elements of the SVG so they can be used with the GIMP path toolIn_verseInchInclude decorationsInsert PointIntegerIntensityIntensity LevelsIntensity of original color when lit by a light sourceInterlaceInternal GIMP procedureIntersectionIntersection ColorInvalid UTF-8 string in PSD fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in pattern file '%s'.InversionInverts the Papers textureIsometricIt is highly recommended to add + (gimpressionist-path "%s") +(or similar) to your gimprc file.Iterations:JNGJPEG previewJigsawJigsaw StyleJuliaKeep image's valuesKeep originalKeep the first valueLABLZ77L_eadingL_eft BorderL_ength:L_inearLambdaLandscapeLaplace...Larg_e 3x3Layer %s doesn't have an alpha channel, skippedLeft:Lens EffectLess Sat:Let the direction from the center determine the direction of the strokeLet the direction from the center determine the size of the strokeLet the value (brightness) of the region determine the direction of the strokeLet the value (brightness) of the region determine the size of the strokeLightLight SettingsLight source X direction in XYZ spaceLight source X position in XYZ spaceLight source Y direction in XYZ spaceLight source Y position in XYZ spaceLight source Z direction in XYZ spaceLight source Z position in XYZ spaceLighterLighter:Lighting EffectsLighting Effects...LineLinearLink TypeList ViewLizardLo_ng-staggeredLo_wer BorderLoad Channel Mixer SettingsLoad Curve Points from fileLoad FITS FileLoad FlameLoad Fractal ParametersLoad Gfig object collectionLoad ImagemapLoad KISS PaletteLoad Parameters fromLoad PostScriptLoad a fractal from fileLoad the curves from a fileLoading Screen Shot...LogarithmicLoopLuma_y470:Luma_y470f:Luma_y709:Luma_y709f:Luminosity _Threshold:MNG OptionsMagen_taMagentaMagenta:Magenta_KMain OptionsMake destination image transparent where bump height is zeroMake image transparent outside objectMan'o'warMandelbrotMandelbrot ParametersManualManually specify the stroke orientationManually specify the stroke sizeMap Color RangeMap Images to Box FacesMap file formatMap to ObjectMap to:Mapping colors...MarbleMask FileMatrixMax (x+d, -)Max (x+d, -), (0.5 < x)Max (x+d, -), (x < 0.5)Max (x, -)Max (x-d, -)Max (x-d, -), (0.5 < x)Max (x-d, -), (x < 0.5)Max RGBMax RGB...Max. Memory:Maximum height for bumpsMaximum size:Menu PathMenu Path/NameMerging...Midtones:Min (x+d, -)Min (x+d, -), (0.5 < x)Min (x+d, -), (x < 0.5)Min (x, -)Min (x-d, -)Min (x-d, -), (0.5 < x)Min (x-d, -), (x < 0.5)Minimum size:Mirror the active curve to the other borderModeMode _1Mode _2Modify CurvesMore Sat:MosaicMotion BlurMotion Blurring...MoveMove DownMove SashMove Selected ObjectsMove To FrontMove UpMove a single pointMove an objectMovementMultiple (57):Multiply gradient (0,1)Multiply rand. value (0,1)Multiply rand. value (0,2)My first fractalNL FilterNL Filter...NameNew FractalNew GFlareNew UnitNewsprintNewsprint...No %s in gimprc: +You need to add an entry like +(%s "%s") +to your %s file.No colorsNo data capturedNo matchesNo selection to convertNo sensible extension, attempting to load with file magic.No sensible extension, saving as compressed XCF.No. _Down:NoiseNon-square pixels. Image might look squashed.NoneNormalNormal:Normalizing...Nothing to crop.Number of ColorsNumber of M_RU entries (1 - 16):Number of TilesNumber of _Frames:Number of _Undo levels (1 - 99):Number of colors:Number of pieces going acrossNumber of pieces going downNumber of times to apply filterNumber of unique colors: %dNumberingO_ffset:O_pacity:O_ptionsO_rientationO_thersO_utput LPI:O_verlayO_versample:Object DetailsObject X position in XYZ spaceObject Y position in XYZ spaceObject Z position in XYZ spaceOffset (1):Offset all vectors with a given angleOffset:Oil Painting...OilifyOn Edges:On Film:Only one unique colorOp_acity:Op_tionsOpacity:OpenOpen FileOpen failedOpening '%s'...Opens up the Orientation Map EditorOpens up the Size Map EditorOptimizeOptimize the output for the type of image being printedOptimizing Animation...OptionsOr_ientationOr_igin at bottom leftOrientationOrientation Map EditorOrientation:OriginalOriginal:Ot_herOutputOutput Levels:Outside TypeOverlayPNGPNM save cannot handle images with alpha channels.PNM: Error reading file.PNM: Invalid X resolution.PNM: Invalid Y resolution.PNM: Invalid file.PNM: Invalid maximum value.PNM: Premature end of file.PPD File:PPIPS DiamondPS Square (Euclidean Dot)P_aperP_reviewPage %dPage Curl...PageSetupDlg failed: %dPagecurl EffectPages:Paint Mode:Paint edgesPainting...Paper TilePaper Tile...Parameter k:ParametersParse error in '%s': +%sPastePastedPasting...PercentPercentage of pixels to be filteredPhongPhotographPieces:Pixel _Height:Pixel _Width:PixelizePixelizing...PixelsPl_acementPlace strokes randomly around the imagePlacementPlanePlasmaPlasma...Play/StopPlease check your installation.PluralPointPolarPolarizePolarizing...PolygonPortraitPositionPosition the image on the page. +Click and drag with the primary button to position the image. +Click and drag with the second button to move the image with finer precision; each unit of motion moves the image one point (1/72") +Click and drag with the third (middle) button to move the image in units of the image size. +Holding down the shift key while clicking and dragging constrains the image to only horizontal or vertical motion. +If you click another button while dragging the mouse, the image will return to its original position.PostScript save cannot handle images with alpha channelsPre_viewPreferencesPreserve the original image as a backgroundPreviewPreview SizePreview as You DragPrint Color AdjustPrint and +Save SettingsPrint in black and white (no color, and no shades of gray)Print in shades of gray using black inkPrintDlg failed: %dPrinter Model:Printer SettingsPrinter doesn't support bitmapsPrinting...Probability Gradient:ProgressivePropagating Value ChannelPropagating _Alpha ChannelQbist ...Quality:RGBRGBARGBA/GRAYA drawable is not selected.RLER_adius:R_andomization (%):R_ecursiveR_edR_epeat:R_everseRadialRadial Gradient:RadiansRadians/PiRadiusRadius:RandomRandom Hurl 1.7Random Pick 1.7Random Seed:Random Slur 1.7Random sharedRandom, ch. independentRandomlyRandoms from seedRandoms from seed (shared)Ranks:RawRays Paint OptionsRe_dReads the selected Preset into memoryRealtime PreviewRecompute preview imageRectangleRedRed:Redness_cr470:Redness_cr470f:Redness_cr709:Redness_cr709f:RedoRedo last zoomRedrawRedraw previewReduce _LuminanceReduce _SaturationReflectivityRefresh the Preview windowRegular Polygon Number of SidesRelati_ve linkRelief:Remap Colorized...Remo_veRemoving Animation Background...Removing color...Render Flare...Render Scalable Vector GraphicsRendered SVGRendered WMFRenderingRendering Blast...Rendering Fractal...Rendering IFS (%d/%d)...Rendering SVG...Rendering Sphere...Rendering SuperNova...Rendering Tiles...Rendering Wind...ReplaceReread the folder of PresetsRescan GradientsRescan for FractalsReset parameters to default valuesReset the active curveResize area's?ResolutionResolution and quality of the printResolution:Resulting Guide Bounds: %d,%d to %d,%d (%d areas)Resulting Guide Bounds: 0,0 to 0,0 (0 areas)Revert to the original imageRewindRight Border:Right:RippleRippling...Ro_tation:Ro_w:Rotat_e:Rotate X:Rotate Y:Rotate Z:RotatedRotating the colormap...Rotating...RotationRotation angle about X axisRotation angle about Y axisRotation angle about Z axisRotation:RoughnessRoundRunLength EncodedSUNRAS save cannot handle images with alpha channelsSVG file does not +specify a size!S_econd Color:S_elect Window AfterS_elect here:S_electorS_hrinkS_ineS_trength exp.:S_trength:S_tripedS_ubject:S_wapS_wirl CCWSameSample Analyze...Sample ColorizeSample:Samples the color from the pixel in the center of the brushSat_urationSatu_rationSaturationSaturation VariationsSaturation:SaveSave +SettingsSave BrushSave Channel Mixer SettingsSave CurrentSave Curve Points to fileSave EXIF dataSave FileSave FlameSave Fractal ParametersSave Gfig DrawingSave ImagemapSave Parameters toSave _color values from transparent pixelsSave active fractal to fileSave as BMPSave as BrushSave as Brush PipeSave as C-SourceSave as GIFSave as JPEGSave as MNGSave as PNGSave as PNMSave as PSPSave as PatternSave as PostScriptSave as SGISave as SUNRASSave as TGASave as TIFFSave as TextSave as XBMSave as XJTSave as XPMSave current...Save the current settings to the specified fileSave the curves to a fileSavedSaving '%s'...Saw_toothSc_attering:Scale Hue by:Scale Value by:Scale X:Scale Y:Scale Z:Scale the print to the number of dots per inchScale the print to the size of the pageScale:Scaling:Scatter HSVScattering HSV...ScreenScreen ShotSe_lection OnlySearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeascapeSecond Destination ColorSecond Flares Paint OptionsSecond Source ColorSeconds DelaySeed of Random (only for "From Seed" Modes)Seed:Selec_tion In ContextSelectSelect AllSelect ColorSelect Film ColorSelect HTML fileSelect Image FileSelect NextSelect Number ColorSelect Pixels bySelect PreviousSelect RegionSelect _AllSelect allSelect contiguous regionsSelect existing areaSelect folder and rescan collectionSelect next smvectorSelect next vectorSelect previous smvectorSelect previous vectorSelect the base unit of measurement for printingSelect the desired output typeSelect the name of the printer (not the type, or model, of printer) that you wish to print toSelect the orientation: portrait, landscape, upside down, or seascape (upside down landscape)Select whether scaling is measured as percent of available page size or number of output dots per inchSelect your printer modelSelect:Selected:SelectionSelection To Path Advanced SettingsSelection size is not even. +Tileable maze won't work perfectly.Selection to Path...Selective Gaussian BlurSelective Gaussian Blur...Selective Load SettingsSelective Load fromSelects a random direction of each strokeSelects a random size for each strokeSelects if the resulting image should be seamlessly tileableSelects if to place strokes all the way out to the edges of the imageSemi-Flattening...Send To BackSeparate to:September 31, 1999Set light source colorSet the base unit of measurement to centimetresSet the base unit of measurement to inchesSet the brightness of the print. +0 is solid black, 2 is solid whiteSet the contrast of the printSet the height of the printSet the print size to the size of the imageSet the scale (size) of the imageSet the width of the printSetStretchBltMode failed (warning only)SettingsSettings for this MapfileSetup PrinterSha_dowsShadow blur:Shadow darken:Shadow depth:Shadows:Shape of Second FlaresSharpenSharpening...Shear:ShiftShifting...Should an Inverse Effect be done?Should the Luminosity be preserved?ShowShow Line FrameShow all objectsShow area URL _tipShow area _handlesShow next objectShow previous objectSi_ngular:SierpinskiSimpleSin_usoidalSineSingularSinusSinus: rendering...SinusoidalSizeSize (%):Size Factor Gradient:Size Map EditorSize of paper that you wish to print toSize:Sizes:Slowest, but most accurate and smoothest color for continuous tone images and photographsSmearSmoo_thingSmoot_hSmooth PaletteSmoothing X gradient...Smoothing Y gradient...Smoothing:Smoothness of AliasingSmvectorsSobel Edge Detecting...Sobel Edge DetectionSobel _HorizontallySobel _VerticallySolidSolid NoiseSolid Noise...Solid colored backgroundSome data has been changed!Sorry, I can save only INDEXED and GRAY images.Sorry, channels and masks can not be rotated.Source (input slot) of media you're printing toSource 1:Source 2:Source color rangeSource...Spacing:SparkleSparkling...Spatial TransformationSpecified window not foundSpecifies the amount of embossing to apply to the image (in percent)Specifies the aspect ratio of the brushSpecifies the scale of the texture (in percent of original file)Specular:SphereSphere DesignerSphericalSpiderSpike Thickness:SpiralSpot Radius:SpotsSpreadSpread AmountSpreading...St_rength exp.:StandardStar Number of PointsStart angle:StartPage failedStepStop when pixel differences are smaller than this valueStretchStretchBlt (hDC, %d, %d, %d, %d, hdcMem, %d, 0, %d, 1, SRCCOPY) failed, error = %d, y = %dStroke _density:StrongStyleSubdivide:Subsampling:Substeps:SuperNovaSuperNova Color PickerSw_irl CWSwap the two curvesSwirlSwitch to c/clockwiseSwitch to clockwiseSymbolTIFF ChannelT_ilableT_urbulence:T_urbulentTable Creation OptionsTable OptionsTargetTel_netTemporaryTemporary ProcedureTextureTexture PropertiesTexture:TexturesThe GIF format only supports comments in 7bit ASCII encoding. No comment is saved.The GIMP help files are not installed.The GIMPressionistThe PNG file specifies an offset that caused the layer to be positioned outside the image.The TIFF format only supports comments in +7bit ASCII encoding. No comment is saved.The amount of cellpadding.The amount of cellspacing.The amount of highlighting on the edges of each pieceThe brush-size that matches the original image the closest is selectedThe colors are white and black.The default comment is limited to %d characters.The depth of the drop shadow, i.e. how far apart from the object it should beThe direction that matches the original image the closest is selectedThe distance from the center of the image determines the direction of the strokeThe distance from the center of the image determines the size of the strokeThe first row of the imageThe height for each table cell. Can be a number or a percent.The hue of the region determines the direction of the strokeThe hue of the region determines the size of the strokeThe image which you are trying to save as a GIF contains layers which extend beyond the actual borders of the image. This isn't allowed in GIFs, I'm afraid. You may choose whether to crop all of the layers to -the image borders, or cancel this save.The largest brush to createThe layer preserves transparency.The name '%s' is used already!The name `%s' is used already!The number of directions (i.e. brushes) to useThe number of pixels in the table border.The relative density of the brush strokesThe smallest brush to createThe smvector-field. Left-click to move selected smvector, Right-click to point it towards mouse, Middle-click to add a new smvector.The strokes are evenly distributed across the imageThe strokes follow a "flowing" patternThe text for the table caption.The text to go into each cell.The type of this SUN-rasterfile is not supportedThe unit's abbreviation (e.g. "cm" for centimeters).The unit's plural form.The unit's singular form.The vector-field. Left-click to move selected vector, Right-click to point it towards mouse, Middle-click to add a new vector.The width for each table cell. Can be a number or a percent.This image depth is not supportedThis string will be used to identify a unit in GIMP's configuration files.Threshold AlphaThreshold Alpha: Coloring Transparency...Threshold:TileTile source image: useful for infinite planesTile to New SizeTileItTileableTiler...Tiling PrimitivesTiling...ToTo ColorTo:ToolsTop:TransparentTreat as thisTry Bounding BoxTypeType of colormap not supportedType of light source to applyType of object to map toType:URLURL: %sUnOptimizing Animation...Unable to add additional point. -UndoUndo last zoomUnitUnit EditorUnit factor must not be 0.UnitsUnits:UnnamedUnselectUnselect AllUnsharp MaskUntitledUpdateUpside downUse a transparent background; Only the strokes painted will be visibleUse average valueUse cosine-function for this color componentUse linear mapping instead of any trigonometrical function for this color channelUse log log smoothing to eliminate "banding" in the resultUse reverse valueUse sine-function for this color componentValueValue PropagateValue VariationsValue:Van Gogh (LIC)VectorsVerticalVertical ColorVideoVideo/RGB...View SourceVoronoi-mode makes only the smvector closest to the given point have any influenceVoronoi-mode makes only the vector closest to the given point have any influenceWarningWarning: the source and the destination are the same channel.Warning: unsupported layermode %d saved to XJTWarning: unsupported pathtype %d saved to XJTWarning: unsupported unittype %d saved to XJTWarpWarping...Wave TypeWavesWaving...WeakWhen toggled, the resulting image will be scaled to fit into the given size without changing the aspect ratio.Whirl and PinchWhiteWidth:WindWindowsWith gradient power (0,1)With p and random (0,1)With random power (0,1)With random power (0,10)WrapX scale (size)X:XBM OptionsXJT file contains unknown layermode %dXJT file contains unknown pathtype %dXJT file contains unknown unittype %dXMAX:XMIN:Y scale (size)Y:YMAX:YMIN:Y_1:Y_2:YellowYellow:Yellow_KYou can not rotate the whole image if there's a floating selection.You can not rotate the whole image if there's a selection.You cannot save a cursor mask for an image -which has no alpha channel.Z scale (size)Z:ZealousCropping(tm)...ZoomZoom inZoom in (make image bigger)Zoom outZoom out (make image smaller)_Angle:_Box_Guillotine_Van Gogh (LIC)...`Default' is created.afteralphablackbluecmcyancyan_kgreenhueinvalid formatted GFlare file: %s -k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedmagentamagenta_knot found %s in gflares_listpixelsredsaturationsin^p, steppedsin^p-based functionvaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: gimp-plugins 1.2.2 +the image borders, or cancel this save.The image which you are trying to save as an XBM contains more than two colors. + +Please convert it to a black and white (1-bit) indexed image and try again.The largest brush to createThe layer preserves transparency.The name '%s' is used already!The name `%s' is used already!The number of directions (i.e. brushes) to useThe number of pixels in the table border.The number of sizes of brushes to useThe relative density of the brush strokesThe smallest brush to createThe smvector-field. Left-click to move selected smvector, Right-click to point it towards mouse, Middle-click to add a new smvector.The strokes are evenly distributed across the imageThe strokes follow a "flowing" patternThe text for the table caption.The text to go into each cell.The type of this SUN-rasterfile is not supportedThe unit's abbreviation (e.g. "cm" for centimeters).The unit's plural form.The unit's singular form.The unit's symbol if it has one (e.g. "'" for inches). The unit's abbreviation is used if doesn't have a symbol.The vector-field. Left-click to move selected vector, Right-click to point it towards mouse, Middle-click to add a new vector.The width for each table cell. Can be a number or a percent.There are not enough layers to align.There is a problem with the GIMP help files.This field is a hint for numerical input fields. It specifies how many decimal digits the input field should provide to get approximately the same accuracy as an "inch" input field with two decimal digits.This image depth is not supportedThis is not a GIF fileThis string will be used to identify a unit in GIMP's configuration files.Thresho_ld:Threshold AlphaThreshold Alpha: Coloring Transparency...Threshold:TileTile source image: useful for infinite planesTile to New SizeTileItTileableTiler...Tiling PrimitivesTiling...ToTo ColorTo:ToolsTop:Tr_ailingTransferring TWAIN data...Transformation %sTransparentTreat as thisTree ViewTurbulence:TypeType of colormap not supportedType of ink in the printerType of light source to applyType of media you're printing toType of object to map toType:URLURL: %sUnOptimizing Animation...Unable to add additional point. +Uncompressed size: %sUndoUndo last zoomUnitUnit EditorUnit factor must not be 0.UnitsUnits:Unknown color model in PNG file '%s'.Unknown reasonUnnamedUnselectUnselect AllUnsharp MaskUnsupported bit depth (%d)!Unsupported brush formatUnsupported format or Clipboard empty!UntitledUnusual PCX flavour, giving upUpdateUpper left _x:Upper left _y:Upside downUse Gimp GuidesUse Original +Image SizeUse a transparent background; Only the strokes painted will be visibleUse average valueUse cosine-function for this color componentUse linear mapping instead of any trigonometrical function for this color channelUse log log smoothing to eliminate "banding" in the resultUse loglog smoothingUse reverse valueUse sine-function for this color componentV_alueValueValue Invert...Value PropagateValue Propagating...Value VariationsValue:Van Gogh (LIC)Van Gogh (LIC)...Vector _Angle:Vector _Length:VectorsVerticalVertical ColorVerticallyVideoVideo/RGB...View SourceVoronoi-mode makes only the smvector closest to the given point have any influenceVoronoi-mode makes only the vector closest to the given point have any influenceVorte_xVortex_2Vortex_3WAI_SWarningWarning: +The image you are loading has 16 bits per channel. GIMP can only handle 8 bit, so it will be converted for you. Information will be lost because of this conversion.Warning: +Transparent color in written file might be incorrect on viewers which don't support transparency.Warning: '%s' is a parameter file for newer CML_explorer than me.Warning: '%s' is an old format file.Warning: the source and the destination are the same channel.Warning: unsupported layermode %d saved to XJTWarning: unsupported pathtype %d saved to XJTWarning: unsupported unittype %d saved to XJTWarpWarping Frame No. %d...Warping...Wave TypeWavesWaving...WeakWeb browser not specified. +Please specify a web browser using the Preferences Dialog.When toggled, the resulting image will be scaled to fit into the given size without changing the aspect ratio.Whirl and PinchWhirling and Pinching...WhiteWidth of the paper that you wish to print toWidth:WindWindowsWith gradient power (0,1)With p and random (0,1)With random power (0,1)With random power (0,10)WoodWrapX scale (size)X:XBM OptionsXJT file contains unknown layermode %dXJT file contains unknown pathtype %dXJT file contains unknown unittype %dXMAX:XMIN:XPM file invalidX_1:X_2:Y scale (size)Y:YMAX:YMIN:Y_1:Y_2:YellowYellow:Yellow_KYou are about to create a huge +HTML file which will most likely +crash your browser.You can not rotate the whole image if there's a floating selection.You can not rotate the whole image if there's a selection.You cannot save a cursor mask for an image +which has no alpha channel.Z scale (size)Z:ZealousCropping(tm)...ZoomZoom inZoom in (make image bigger)Zoom outZoom out (make image smaller)_3x3_Abbreviation:_Adaptive_Additive_Advanced_Alpha_Alpha:_Amount:_Amplitude:_Angle:_Animate_Antialiasing_Automatically convert_Azimuth:_Background_Base URL:_Bilinear_Black_Blacken_Blast_Blend_Blue_Blue:_Border:_Bottom:_Box_Brightness_Brightness:_Brush_Bump Map_Bumpmap_Copy_Deflate_Depth:_Derivative_Description:_Detail:_Digits:_Displacement:_Distorted_Dots_Edit_Effect Image:_Elevation:_Emboss_Encapsulated PostScript_Entire Image_Environment Map_Exponent:_Factor:_File_Filename:_Font:_Force_Fractals_Free_Ftp Site_Gamma:_General_Gopher_Gradient_Gray:_Green_Green:_Grey_Grow_Height_Height:_Help_Hex_Hidden_Holdness:_Horizontal_Horizontal:_Horz. Spacing:_Hue_ID:_Ideal_Ignore_Inch_Input SPI:_Insert_Interlacing (Adam7)_Invert_JPEG_JavaScript_Keep NCSA circles true_Kill_LZW_Laplace_Large staggered_Left_Left Start at:_Light_Linear_Lines_Link_Lower_MIME_Mapping_Material_Max (%):_Max Depth:_Midtones_Millimeter_Mirror_Misc Ops._Monochrome_Move_No. Across:_None_Normal_Pack Bits_Parameters_Period:_Phase:_Ping Pong_Plural:_Polygon_Presets_Preview_Preview!_Prompt for area info_Psychobilly_RGB_RLE compression_RLE encoded_Radial_Radius:_Randomize_Rays_Recipient:_Rectangle_Red:_Redo %s_Reflective_Remove_Rendering_Require default URL_Right_Right Border_Rotated_Saturation_Saturation:_Search:_Second Flares_Sender:_Settings_Sharpness:_Size_Size:_Smear_Snap-To Grid Enabled_Speed:_Spokes:_Square_Squares_Staggered_Strength:_Symbol:_Target frame name/ID: (optional - used for FRAMES only)_Thickness:_Threshold_Threshold:_Title:_Tools_Top Start at:_Top:_Transparent_URL to activate when this area is clicked: (required)_Undo %s_Update_Upper_Upper Border_Use double-sized grab handles_Uuencode_Value_Value:_Variation:_Vert. Spacing:_Vertical_Vertical:_View_Voronoi_Warp_Waterlevel:_Wavelength:_Web Site_White_Wide-striped_Width_Width:_Wind_Wrap_X Scale:_X:_Y Scale:_Y:_Yellow_Z:_Zoom_Zoom:`Default' is created.a _Single Windowafteralphablackblueblueness_cb470blueness_cb470fblueness_cb709blueness_cb709fcmcyancyan_ke-_mailgreenhueinvalid formatted GFlare file: %s +k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftpixels/%aredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsin^p, steppedsin^p-based functionsome sort of error with the file extension or lack thereofthe _Whole Screenvaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: gimp-plugins Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 -PO-Revision-Date: 2002-05-29 23:44+0200 -Last-Translator: Softcatalà -Language-Team: Catalan +POT-Creation-Date: 2004-12-28 15:41+0100 +PO-Revision-Date: 2004-05-21 17:59+0100 +Last-Translator: Xavier Beà +Language-Team: Catalan MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - (L'alçada no coincideix!) (L'amplada no coincideix!) Files de El botó "Fixeu l'inici" és un àlies meu. -El mateix inici produeix la mateixa imatge, si (1) les amplades de les imatges són les mateixes (aquesta és la raó per la qual la imatge dibuixada és diferent de la previsualitzada) i (2) tots els valors de mutació són igual a zero.Nombre de puntes:%s -- Imprimeix v%s(Cap)Un valor de seguretat per seleccions adaptativesUna creació no tan obsoleta d'Adam D. Moss / adam@gimp.org / adam@foxbox.org / 1998-2000Una definició d'unitat només es desarà si abans de sortir del GIMP es revisa aquesta columna.Quant aAccióAdaptableAfegeix el camí FractalExplorerAfegiu un vector sm nouAfegiu un vector nouS'estan afegint angles morts...S'està afegint una targeta de comprovació...S'està afegint soroll...SumaAfegiu un efecte d'ombra a cada traç de pizellAfegeix aleatòriament soroll al colorAjusta la intensitat del reflex internAjusta el llindar de lluminositatAjusta el nombre de pertorbacions:Ajusteu l'opacitat de les pertorbacionsAjusteu la densitat de la pertorbacióAjusta la durada de la pertorbacióAjusteu el valor en el qual la tinta s'hauria de canviar aleatòriamentAjusteu el valor en el qual la saturació s'hauria de canviar aleatòriamentAjusteu la brillantor de la visualització prèviaOpcions avançades de filtratge del paquet:Abast afectatAlienMap2AlienMap2: s'està transformant...Alinea les capes visiblesTot negreTot grisTots els camps de text han de contenir un valor.Tot blancAlfaCanals alfaAlfa:Ambient:Quantitat de color original per mostrar on no hi ha llum directauna creació obsoleta d'Adam D. Moss / adam@gimp.org / adam@foxbox.org / 1998-2000Interval d'angle:Angle:Gradació angular:Gradació de mida angular:Opcions del GIF animatAnimació Playback:ContrarèplicaQualitat de la contrarèplica. Com més alta millor, però va més lentaAplica el paper com aquest (sense difuminar-lo)AplicaAplica el canemàsS'està aplicant el canemàs...S'està aplicant la circumvolucióS'està aplicant la lent...S'està aplicant el paquet de filtratgeParàmetres de l'àrea #%dParàmetres de l'àreaÀreaFletxaAsciiRàtio de l'aspecteAsimetria:Autor:AutoS'està ampliant el contrast automàticament...S'està ampliant automàticament l'HSV...AutomàticImatges disponibles:N/BSubstitució de píxels BLANK/NaNEndarrere:FonsColor del fonsTipus de fonsFonsBarnsley 1Barnsley 2Barnsley 3Abans i desprésCorbaturaBiaix de les voresNegraNegre:Barreja els paràmetresAngles mortsBlauBlau:Paràmetres de difuminacióRadi de difuminacióTipus de difuminacióS'està difuminant...VoraVora mitjana...Mida de la voraVora mitjanaAmbdosMarge superior:Part inferior:QuadreBrillantor:NavegadorMapa de la memòria annexaS'està fent el mapatge de la memòria annexa...Per DATAMIN/DATAMAXCML_explorer: s'està desenvolupant...CMYCMYKCX:CYParàmetres de càlculNo es pot operar en tipus d'imatge desconegutsNo es pot suprimir! Cal que hi hagi un GFlare com a mínim.CentreCentre de la supernovaCentraCanvia l'ordre de les fletxesCanvia el valor CX (canvia l'aspecte del fractal, actiu amb tots els fractals tret del Mandelbrot i l'Spierinski)Canvia el valor CX (canvia l'aspecte del fractal, actiu amb tots els fractals tret del Mandelbrot i l'Spierinski)Canvia l'angle del vector sm seleccionatCanvia l'angle del vector seleccionatCanvia l'exponent del toCanvia la primera (mínima) delimitació de la coordenada xCanvia la primera (mínima) delimitació de la coordenada yCanvia la intensitat del canal blauCanvia la intensitat del canal verdCanvia la intensitat del canal vermellCanvia el valor de la iteració. Com més alt sigui, calcularà més detalls i trigarà més.Canvia el nombre de colors en el mapatgeCanvia la segona (màxima) delimitació de la coordenada xCanvia la segona (màxima) delimitació de la coordenada yCanvia el to del vector sm seleccionatCanvia el to del vector seleccionatCanvia a aquestCanvia la gamma (brillantor) del pinzell seleccionatCanal #%d:Representacions dels canalsCanalsConfirmeu que voleu tenir un peu de taula.Targeta de comprovacióEl fet de comprovar aquest marcador provocarà que el GTM no deixi espai en blanc entre els marcadors TD i el contingut de la cel·la. Només és necessari per al posicionament del nivell de control dels píxels.Trieu el fractal fent-hi un doble clic a sobreCercleRecuperació...NetejaTanca la corba en la complecióTancatRecullColorDensitat del colorMillora del color...Canvi de colorCanvi de color...Canvi de color: des del colorCanvi de color: al colorFunció del colorMode de colorDiàleg de la selecció del colorTransformació de colorEl color es calcula amb la mitja de tots els píxels que hi han sota el pinzellAcoloreix a l'AlfaColoreix al seleccionador de color alfaColor:AcoloreixAcoloreix amb el color per defecteS'està acolorint...S'està acolorintRotació del mapa de colorsColorsOrdre:ComentariComentari:ComposaComposa els canalsS'estan composant les imatges...S'està composant...Composició:CompressióS'està construint un laberint amb l'algoritme de Prim...S'està construint el mosaic laberint amb l'algoritme de Prim...ContextGradient continuat amb/sense buitsGradient continuatActualització contínuaContrast:ControlsControla la intensitat del ressaltamentAbans, convertiu la imatge a format RGB!Matriu de circumvolucióTorsióCopiaCopia el GFlareCopia els paràmetresCopia un objecteCopia la textura del paper seleccionat com a fonsS'esta copiant el IFS a la imatge (%d/%d)...Copyright:CosinusNo s'ha pogut carregar un pinzell al conducte, renuncieu-hi.No s'ha pogut llegir el fitxer:No s'ha pogut desar el fitxer:No s'han pogut desar els fitxers de recursos:Coupled-Map-Lattice ExplorerCreaCrea les guiesCrea un mapa de color fent servir un gradient de l'editor de gradientsCrea un mapa de color amb les opcions que heu especificat abans (densitat/funciódel colr). El resultat es pot veure com a imatge de la visualització prèviaCrea una imatge nova quant s'aplica el filtreCrea una unitat nova des del fitxer de treball.Crea una corba de Bezier. Maj + botó acaben la creació de l’objecte.Crea un cercleCrea una el·lipseCrea una líniaCrea un polígon regularCrea un espiralCrea un estrellaS'ha produït un error en crear la secció DIBS'ha creat amb el GIMPS'està creant un patró de difracció...S'està escapçant...CubismeCapa del RínxolUbicació del rínxolOrientació del rínxolActual:Curve BendAplica la corba...Color per defecte:RetallaCianCian:Cian_KCilindreLongitud del cilindreRadi del cilindreMés foscMés fosc:Compressió de dadesS'estan formatant les dadesData:DescomposaS'està descomposant...Per defecteTipus de mapa per defecteDefineix l'àrea cercle/ovalDefineix l'àrea polígonDefineix l'àrea rectangleCanvia el modeGrau d'inclinació de la vora de cada peçaGrausDesentrellaçaDesentrellaça...SuprimeixSuprimeix el fractalSuprimeix el GFlareSuprimeix el puntSuprimeix un objecteSuprimeix el fractal seleccionat actualmentSuprimeix l'àrea seleccionadaSuprimeix el vector sm seleccionatSuprimeix el vector seleccionatSuprimeix la preconfiguració seleccionadaFunció deltaLa funció delta s'ha desplaçatDensitat:Fusió profundaFusió profunda...Descripció:Elimina els picsAbast del color destinacióDestinació:Treu les bandesS'estan treient les bandes…DiamantPatrons de difraccióDifusió:DígitsDimensió:DimensionsDireccióVector de direccióDireccionalDireccionsDireccions:DesplaçaS'està desplaçant...Mostra com a:Algoritme de la trama:DivisióDibuixa una vora de pertorbacions al voltant de la imatgeS'està dibuixant la flama...S'està dibuixant la graella...S'està dibuixant el laberint...S'estan dibuixant els paràmetresDibuixa línies entre els punts de control. Només durant la creacióOmbrejarS'ha trobat que l'EOF està llegintCada peça té els costats corbatsCada peça té els costats rectesVora afectadaDetecció de voraDetecció de vora...Marge enfosquit:VoresEditaEdita la informació de l'àrea...Edita la flamaEdita la informació del mapa...Edita l'objecteEdita el nom del fractalEdita la informació de l'àrea seleccionadaS’està editant un objecte de només lectura – no podreu desar-loEfecte canalEfecte operadorRelleuHabilita/inhabilita el mapatge de la memòria annexa (profunditat d'imatge)Habilita/inhabilita el mapatge de l'entorn (reflexió)Habilita/inhabilita la visualització prèvia d'alta qualitatHabilita/inhabilita la supressió d'arestes irregulars(contrarèplica)Encapsulació:S'ha produït un error al final de pàginaGravaS'està gravantImatge de l'entorn per utilitzarS'ha produït un error mentre s'obria el fitxer FITSS'ha produït un error mentre s'escrivia la imatge rgbS'ha produït un error en el fitxer conducte del pinzell del GIMPS'ha produït un error en obrir el fitxerS'ha produït un error en llegir el fitxerS'ha produït un error: no es poden carregar els paràmetresS'ha produït un error: aquest no és un fitxer CML.Distribuït uniformementExporta la visualització prèviaEl fitxer FITS conseva les imatges no visualitzablesEn desar el FITS, no es poden gestionar imatges amb canals alfaFactorNombre enter ràpidPlomallFitxerS'ha desat el fitxer "%s".El fitxer '%s' és corrupte. -L'opció de la línia %d és una secció incorrectaEl fitxer '%s' no és un fitxer FractalExplorerEl fitxer ja existeixNom de fitxer:Omple (de baix a dalt)Omple (d'esquerra a dreta)Omple (de dreta a esquerra)Omple (de dalt a baix)Omple-ho amb el paràmetre kPel·lículaFiltreFiltra la simulació del paquetS'està cercant el fons de l'animació...S'estan cercant els margesS'està cercant el gradient XY...Primer color de destinacióPrimer GfigPrimer color fontMenú de selecció del mapa de vector de direcció fixadaFlamaLa flama només funciona amb el format RGB.FlareFXInverteixPunt flotantFlux de pas %d...FlotantEnfoca els traços del pinzell al voltant del centre de la imatgePrimer plaParàmetres fractalsTraça del fractalTipus de fractalNom del fractal:Gradient del FractalExplorerPíxels fraccionalsMarc %dMarc %d de %dMarc (%i)Des deDes del colorDes del paperDes de:Davant:OmpleFuncióGEE-SLIMEGFLI 1.3 – Carrega la pila de marcsGFLI 1.3 – Desa la pila de marcsGFlareEditor del GFlareOpcions del GIFAvís GIFExtensió GIMPConnector del GIMPTaula màgica del GIMPSembla ser corrupte el fitxer pinzell del GIMP.Gamma:GeneralOpcions generalsPreferències generalsOpcions generalsMosaic òpticMosaic òptic...Opcions de pintura fosforescentAdquisicióGradientReflex del gradient...Mapa amb gradient...Menú de selecció del mapa graduatGradacionsGràfica dels paràmteres actualsGrisEscala de grisosVerdVerd:GrisGraellaGraella granulosaDesplaçament de la graellaParàmetres de la graellaParàmetres de la graella...Tipus i visibilitat de la graellaGuiesGuies...Guillotina...HSVOpcions de la pàgina HTMLAlçada:On ha anat l’objecte?Els valors més alts incrementen la magnitud de l'efecteUns valors més alts fan que el que es ressalta estigui més focalitzatUns valors més alts fan que l'objecte es reflecteixi de manera més clara (sembla més clar)Els valors més alts restringeixen l'efecte a menys àrees de la imatgeRessaltament:Ressaltaments:HoritzontalColor horitzontalFerraduraCàlidsQuantes unitats fan una polzada.Quan s'ha d'"enfosquir" l'ombrejatQuan s'ha d'"enfosquir" els marges de cada traç de pinzellQuan s'ha de difuminar l'ombraTintaRotació del to de color:Variacions de tintaTinta:IdentificadorITER:IWarpSi comproveu el GTM sortirà sols un document HTML sencer amb els marcadors , , etc... en comptes de la taula html.Si comproveu el GTM substituireu les seccions rectangulars dels blocs de color idèntic per una cel·la gran amb els valors de les FILES DE LLUM i el COL·LECTOR DE LLUM.Si heu comprovat el mapatge, començarà a la banda dreta, oposada al començament a l'esquerra.Si no heu comprovat la imatge, se'n farà un mapatge circular dins un rectangle. Si l'heu comprovada, el mapatge es farà dins un cercle.Si no heu comprovat el mapatge, la fila inferior es col·locarà al mig i la superior, fora dels límits. Si ho comproveu passarà al revés.Si habiliteu aquesta opció, els colors de valors més alts s'intercanviaran amb els de valors més baixos i viceversaSi habiliteu aquesta opció, la visualització prèvia es refarà automàticamentIl·lusióIl·lusió...S'està composant la imatgeSelecció de la imatgeMida de la imatgeDimensions de la imatge: %d x %dNom de la imatge:Imatges de la part de dalt de les caresPolzadaInclou les decoracionsInsereix un puntNombre enterIntensitatNivells d'intensitatIntensitat del color original quan l'il·lumina una font de llumEntrellaçaProcediment intern del GIMPInterseccióColor de la interseccióInversióInverteix la textura del paperIsomètricIteracions:Visualització prèvia JPEGEncaixEstil d'enllaçJuliaConserva els valors de les imatgesManté l'originalConserva el primer valorLZ77LambdaApaïsatLaplace...La capa %s no té un canal alfa, s'han omèsEsquerra:Efecte de lentMenys estable:Permet la direcció des del centre que determini la direcció del traçPermet que la direcció des del centre determini la mida del traçPermet el valor (lluminositat) de la regió que determini la direcció del traçPermet el valor (lluminositat) de la regió que determini la mida del traçLlumParàmetres de la llumDirecció de la font de llum X en l'espai XYZPosició de la font de llum X en l'espai XYZDirecció de la font de llum Y en l'espai XYZPosició de la font de llum Y en l'espai XYZDirecció de la font de llum Z en l'espai XYZPosició de la font de llum Z en l'espai XYZMés clarMés clar:Efectes de llumLíniaLinealTipus d'enllaçVisualització de la llistaCarrega els punts de la corba del fitxerCarrega el fitxer FITSCarrega la flamaCarrega els paràmetres fractalsCarrega el mapa de la imatgeCarrega la paleta KissCarrega els paràmetres des deCarrega el PostScriptCarrega un fractal des del fitxerLogarítmicBucleMagentaMagenta:Magenta_KOpcions principalsFes que la imatge sigui transparent tret de l'objecteGuerrerMandelbrotParàmetres de MandelbrotManualS'especifica l'orientació del traç de forma manualS'especifica manualment la mida del traçAbast del mapa de colorsImatges del mapa a les cares del quadreFormat de fitxer de mapaMapa de l'objecteFes un mapa de:Fitxer màscaraMatriuMàx (x+d, -)Màx (x+d, -), (0.5 < x)Màx (x+d, -), (x < 0.5)Màx (x, -)Màx (x-d, -)Màx (x-d, -), (0.5 < x)Màx (x-d, -), (x < 0.5)RGB màximMemòria màx.:Alçada màxima de les memòries annexesS'està combinant...Tons mitjans:Mín (x+d, -)Mín (x+d, -), (0.5 < x)Mín (x+d, -), (x < 0.5)Mín (x, -)Mín (x-d, -)Mín (x-d, -), (0.5 < x)Mín (x-d, -), (x < 0.5)ModeMés estable:MosaicMoviment de difuminacióMouMou cap avallMou a la bandaMou els objectes seleccionatsCau cap endavantMou cap a daltMou només un puntMou un objecteMovimentMúltiple (57):Multiplica el grau (0,1)Multiplica el valor aleatori (0,1)Multiplica el valor aleatori (0,2)El meu primer fractalFiltre NLNomNou fractalGFlare nouUnitat novaFull de màNo s'a capturat cap dadaNo hi ha cap selecció per convertirCapNormalNormal:S'està normalitzant...Nombre de colorsNombre de mosaicsNombre de peces que passenNombre de peces que cauenNombre de vegades que cal aplicar el filtreS'està numerantDetalls de l’objectePosició de l'objecte X en l'espai XYZPosició de l'objecte Y en l'espai XYZPosició de l'objecte Z en l'espai XYZDesplaçament (1)Desplaçament de tots els vectors amb un angle donatDesplaçament:Pintura a l'oli...OlificaA les vores:En la pel·lícula:Opacitat:ObreObre l'editor de mapes d'orientacióObre l'editor del mapa de midesOptimitzaS'està optimitzant l'animació...OpcionsOrientacióEditor de mapes d'orientacióOrientació:OriginalOriginal:SortidaTipus exteriorSuperposaEn desar amb PNM no es poden gestionar imatges amb canals alfa.PNM: S'ha produït un error en llegir el fitxer.PNM: la resolució X no és vàlida.PNM: la resolució Y no és vàlida.PNM: el fitxer no és vàlid.PNM: el valor màxim no és vàlid.PNM: final prematur del fitxer.Fitxer PPD:PPPPS diamantPS quadrat (punt euclidià)Pàgina del rínxol...S'ha produït un error en la configuració de pàgina Dlg: %dEfecte rínxolPàgines:Mode de pintura:Marges pintatsS'està pintant...Mosaic del paperParàmetre k:ParàmetresEnganxaEnganxatS'està enganxant...PercentatgePercentatge de píxels que es filtraranFotografiaPeces:PixelitzaS'està pixelitzant...PíxelsSitúa els traços aleatòriament al voltant de la imatgeEmplaçamentPlànolPlasmaPlasma...Reprodueix/AturaPlayback:PluralPuntPolarPolaritzaS'està polaritzant...PolígonRetratPosicióLa funció de desar del PostScript no pot gestionar imatges amb canals alfaPreferènciesConserva la imatge original com a fonsVisualització prèviaPrevisualitza la midaPrevisualitza així que ho arrosseguisImprimeix l'ajust del colorImprimeix i -desa els paràmetresS'ha produit un error un error en PrintDlg: %dModel d'impressora:Paràmetres de la impressoraLa impressora no accepta els mapes de bitsS'està imprimint...Gradació de la probabilitat:ProgressiuS'està propagant el canal del valorQualitat:RGBRGBAL'RGBA/GRAYA dibuixable no està seleccionat.RLERadialGradació radial:RadiansRadians/PiRadiRadi:AleatoriRandom Hurl 1.7Random Pick 1.7Inici de la generació aleatòriaRandom Slur 1.7Prova aleatòriaAleatori, caràcter independentAleatòriamentAleatoris des deAleatoris des deRangs:En brutOpcions de pintura dels raigsLlegeix la Preconfiguració seleccionada dins la memòriaVisualització prèvia en temps realTornar a calcular la imatge de la visualització prèviaRectangleVermellVermell:RefésTorna a fer el darrer zoomRefésRefés la visualització prèviaReflexióRefresca la finestra de visualització prèviaPolígon regular Nombre de caresRelleu:Torna a fer el mapa acolorit...S'està suprimint el fons de l'animació...S'està suprimint el color...Genera el FlareS'està generant una visualització realistaS'està generant una ventada...S'està generant una visualització realista del fractal...S'està executant el IFS (%d/%d)...S'està generant la SupernovaS'estan executant els mosaics...S'està generant el vent...SubstitueixTorna a explorar les gradacionsTorna a escanejar els fractalsFes que els paràmetres tornin als valors per defecteResolucióResolució:S'estan resolent el límit de les guies: %d,%d a %d,%d (%d àrees)S'estan resolent el límit de les guies: 0,0 a 0,0 (0 àrees)Torna a la imatge originalRebobinaMarge dret:Dreta:So de marSo de mar...RotatS'està rotant el mapa de colors...S'està rotant...RotacióRotació de l'angle sobre l'eix XRotació de l'angle sobre l'eix YRotació de l'angle sobre l'eix ZRotació:AsprorGiraS'ha codificat el RunLenghtEn desar, el SUNRAS no pot gestionar les imatges amb els canals alfaIgualAnalitza la mostra...Acoloreix la mostraMostra:Exemples de color des del píxel del centre del pinzellSaturacióVariacions de saturacióSaturació:DesaDesa -els paràmtresDesa els punts de la corba al fitxerDesa la flamaDesa els paràmetres dels fractalsDesa el mapa de la imatgeDesa els paràmetres aDesa el fractal actiu al fitxerDesa com a BMPDesa com a escombraDesa com a conducte pinzellDesa com a Font-CDesa en format GIFDesa com a JPEGDesa com a PNGDesa com a PNMDesa com a PSPDesa com a patróDesa com a PostScriptDesa com a SGIDesa com a SUNRASDesa com a TGADesa com a TIFFDesa com a textDesa com a XBMDesa com a XJTDesa com a XPMDesa la configuració actual al fitxer especificatDesatEscala el to de color per:Escala el valor per:Escala X:Escala:Escalatge:Dispersió HSVDispersió RGBPantallaMostra la pantallaVista marinaSegon color de destinacióOpcions de pintura de les flames secundàriesSegon color fontSegons de retardInici de la generació aleatòria (només per als modes "Des de l'inici")Inici:SeleccionaSelecciona totSelecciona el colorTria el color de la pel·lículaSelecciona el fitxer htmlSelecciona el fitxer imatgeSelecciona la següentTria el color del nombreSeleccioneu els píxels perSelecciona la regióSelecciona-ho totSelecciona l'àrea existentSeleccioneu el vector sm següentSeleccioneu el vector següentSeleccioneu el vector sm anteriorSeleccioneu el vector anteriorSeleccioneu:Seleccionat:SeleccióNo s'ha donat la mida de la selecció. -El laberint de mosaic no s'executarà perfectament.Difusió gaussiana selectivaParàmetres de càrrega selectivaCarrega selectivament des deSelecciona aleatòriamnet una direcció de cada traçSelecciona una mida aleatòria per cada traçSeleccioneu-lo si la imatge resultant hauria de semblar-se a un mosaicSeleccioneu-lo per situar tots els traços a l'exterior dels marges de la imatgeEnvia cap endarrereSepara a:31 de setembre de 1999Definiu la font de color de la llumS'ha produït un error en establir el mode d'ampliació Blt (només és un avís)ParàmetresParàmetres d'aquest fitxer de mapesDifuminar l'ombraProfunditat de l'ombra:Ombres:Forma de les flames secundàriesS'està afilant...Desproveir:DecalatgeS'està decalant...Voleu fer un efecte invers?Voleu preservar la lluminositat?MostraMostra la línia del marcMostra/amaga la visualització prèvia del WireframeSierpinskiSenzillSinusSingularSinusSinus: s'està generant...SinusoïdalMidaMida (%):Gradació del factor de mida:Editor del mapa de midesMida:Mides:TacaPaleta suauGradient X suau...Gradient Y suau...Suavitat:Suavitat de la contrarèplicaVectors smDetecció de vores Sobel...Detecció de vores SobelSòlidSoroll sòlidSoroll sòlid...Fons acolorit com a sòlidEls canals i les màscares no es poden fer rotar.Font 1:Font 2:Abast del color fontFont...Espaiat:CentelleigEstà centellejant...Transformació espaialEspecifica la mitjana de difuminació a aplicar a la imatge (en tant per cent)Especifica la ràtio de l'aspecte del pinzellEspecifica l'escala de la textura (en tant per cent del fitxer original)Especular:EsferaEsfèricAranyaGruix de les puntes:Radi del focus:EscampaVolum escampatS'està escampant...EstàndardEstrella Nombre de puntsAngle inicial:Ha fallat la pàgina inicialPasAtura't quan les diferències de píxels són més altes que aquest valorAmpliaS'ha produït un error en l'ampliació Blt (hDC, %d, %d, %d, %d, hdcMem, %d, 0, %d, 1, SRCCOPY)error = %d, y = %dFortEstilSubdivideixSubmostra:Subpassos:SupernovaSeleccionador de color supernovaMovimentCommuta al sentit contrari a les agulles del rellotgeCommuta al sentit de les agulles del rellotgeSímbolCanal TIFFOpcions de creació d'una taulaOpcions de la taulaObjectiuTemporalProcediment temporalGràcies per triar el GIMPLa quantitat de farciment de les cel·les.La quantitat d'espaiat de les cel·les.Ressaltament de les vores de cada peçaEs selecciona la mida del pinzell que coincideixi amb la imatge original més properaEls colors són en blanc i negre.La profunditat de l'ombreig, p.e. quina distància s'hauria d'allunyar de l'objecteLa direcció que coincideix amb la imatge original es selecciona la més properaDistància des del centre de la imatge que determina la direcció del traçLa distància des del centre de la imatge determina la mida del traçLa primera fila de la imatgeL'alçada de cada cel·la de la taula. Pot ser un número o un percentatge.El to de color de la regió determina la direcció del traçEl to de color de la regió determina la mida del traçLa imatge que esteu intentant desar en format GIF -Conté capes que s'estenen més enllà de les vores + + +Copyright (C) 1997-2001 Michael Sweet, Robert Krawitz, +i la resta de l'equip de desenvolupament del Gimp-Print. + +Visiteu el nostre lloc web a http://gimp-print.sourceforge.net. + +Això és programari lliure; podeu redistribuir-lo i/o +modificar-lo sota els termes de la Llicència Pública General GNU tal i +com ha estat publicada per la Free Software Foundation; bé sota la +versió 2 de la Llicència. + +Aquest programa es distribueix amb l'expectativa de que serà útil +però SENSE CAP GARANTIA; ni tan sols la garantia implícita de +COMERCIABILITAT o ADEQUACIÓ PER UN PROPÒSIT PARTICULAR. Vegeu la +Llicència Pública General GNU per obtenir-ne +més detalls. + +Hauríeu d'haver rebut una còpia del la Llicència Pública General de GNU +juntament amb aquest programa. En cas contrari, podeu demanar-la a la +Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, +MA 02111-1307 USA. + (L'alçada no coincideix!) (L'amplada no coincideix!) Files de El botó "Fixeu llavor" és un àlies meu. +La mateixa llavor produeix la mateixa imatge, si (1) les amplades de les imatges són les mateixes (aquesta és la raó per la qual la imatge dibuixada és diferent de la previsualitzada) i (2) tots els valors de mutació són igual a zero.Nombre de puntes:%d x %d%s -- Impressió v%s'%s' és corrupte. L'opció de la línia %d és una secció incorrecta'%s': no és un fitxer DICOM.El '%s' no és un fitxer explorador de fractals'%s': no és un fitxer PCX'%s' no és un fitxer de dades'%s' no és un fitxer BMP vàlid'%s' no és un fitxer GFlare vàlid.'%s': +No es pot llegir la capçalera (ftell == %ld)'%s': +No s'ha especificat el tipus de dades de la imatge'%s' +No s'ha especificat l'alçada de la imatge'%s' +No s'ha especificat l'amplada de la imatge(Cap)Un valor de seguretat per a seleccions adaptativesUna creació no tan obsoleta d'Adam D. Moss / adam@gimp.org / adam@foxbox.org / 1998-2000Si s'habilita la columna, llavors la definició d'unitat només es desarà abans de sortir del GIMP.Te_xt alternatiu: (opcional)_Quant aA_fegeixAva_nçatT_otPonderació a_lfaA_lfa:A_mbient:A_mplitud:A_ngle:A_nimaAfe_geixA_utomàticMitjana sota el pin_zellAbreviaturaQuant aQuant al Gimp-PrintAccióA_vançatAdaptableAfegeix guies addicionalsAfegeix el camí explorador de fractalsAfegeix un vector sm nouAfegeix un vector nouS'estan afegint angles morts...S'està afegint un tauler d'escacs...S'està afegint soroll...SumaAfegiu un efecte d'ombra a cada traç de pizellAfegeix aleatòriament soroll al colorAjusteu el balanç de color, la brillantor, el contrast, la saturació i l'algorisme de tramaAjusta la intensitat del reflex internAjusta el llindar de lluminositatAjusta el nombre de les puntes:Ajusteu l'opacitat de les puntesAjusteu la densitat de les puntesAjusta la longitud de les puntesAjusteu el valor en el qual el to s'hauria de canviar aleatòriamentAjusteu el valor en el qual la saturació s'hauria de canviar aleatòriamentAjusteu el balanç cian de la impressióAjusteu la densitat (quantitat de tinta) de la impressió. Reduïu la densitat si la tinta traspassa el paper o taca. Incrementeu la densitat si les regions negres no són sòlides.Ajusteu la gamma de la impressió. Els valors més grans produeixen generalment una impressió més brillant, en canvi els valors més petits produeixen generalment una impressió més fosca. El blanc i el negre seran els mateixos, al contrari que amb l'ajustament de la brillantor.Ajusteu el balanç magenta de la impressióAjusta la brillantor de la previsualitzacióAjusteu la saturació (balanç de color) de la impressió. +Utilitzeu la saturació a zero per produir sortida en escala de grisos fent servir tintes negra i de colors.Ajusteu el balanç groc de la impressióS'està ajustant el primer pla i el fons...Opcions avançades del paquet de filtresAbast afectatAl_ternaMapa estrany 2Mapa estrany 2: s'està transformant...Alinea les capes visiblesTots els JNGTots els PNGTot negreTot grisTots els camps de text han de contenir un valor.Tot blancAlfaCanals alfaAlfa:Ambient:Quantitat de color original per mostrar on no hi ha llum directaQuantitat:Una creació obsoleta d'Adam D. Moss / adam@gimp.org / adam@foxbox.org / 1998-2000Desplaçament d'ang_le:Interval d'angle:Angle:Degradat angular:Degradat de mida angular:Opcions del GIF animatSuavitzatQualitat del suavitzat. Com més alta millor, però és més lentaAplica el paper com és (sense realçat)AplicaAplica el llençAplica el degradat actual a la imatge finalS'està aplicant el llenç...S'està aplicant la circumvolucióS'està aplicant la lent...S'està aplicant el paquet de filtres...Esteu segur que voleu suprimir "%s" de la llista i del disc?Paràmetres de l'àrea número %dParàmetres de l'àreaÀrea:FletxaCom s'especifica a sobreAsciiRelació d'aspecte:S'està assemblant l'encaix...Asimetria:Aut_or:Autor:AutomàticS'està ampliant el contrast automàticament...S'està ampliant automàticament l'HSV...AutomàticImatges disponibles:B/NSubstitució de píxels BLANK/NaNDarrere:FonsFons (%d%s)Color del fonsTipus de fonsFons:Mapa de colors incorrecteBarnsley 1Barnsley 2Barnsley 3_URL base:Abans i desprésCorbaturaMillor per a imatges on dominen les regions de colors sòlidsBiaix de les voresBili_nealNegreNegre:Paràmetres de mesclaAngles mortsBlauBlau:Blavor_cb470:Blavor_cb470f:Blavor_cb709:Blavor_cb709f:Paràmetres de difuminacióRadi de difuminacióTipus de difuminacióS'està difuminant...VoraVora mitjana...Mida de la voraVora mitjanaAmb_dòsAmbdòsMarge superior:Part inferior:CaixaBrillantor:NavegaBumpMapa de la memòria annexaS'està fent el mapatge de la memòria annexa...BumpmapPer DATAMIN/DATAMAXCML_explorer: s'està desenvolupant...CMYCMYKCX:CY:C_MYKCàmer_aC_apturaC_entre del pinzellC_entratEsco_lliu aquí:C_ercleC_rea una imatge novaC_reuamentsC_orbatC_ianC_ilindreParàmetres de càlculNomés es pot operar en dibuixables RGB.Només es poden desar dibuixablesNomés es pot operar en les capes (però es feia en canal o màscara).No es pot crear una imatge novaNo es poden obtenir dades del porta-retalls.No es pot operar en tipus d'imatge desconegutsNo es pot suprimir. Cal que hi hagi un GFlare com a mínim.No es pot operar en seleccions buides.No es pot operar amb imatges grises o de color indexat.No es pot operar amb imatges de color indexat.No es pot operar en tipus d'imatges desconeguts.No es pot llegir l'extensió de '%s'No es pot llegir el peu de pàgina de '%sNo es poden desar les imatges de color RGB. Convertiu-les primer a color indexat o a escala de grisosNo es poden desar imatges amb canal alfa.No es poden desar imatges amb canals alfa.CentreCentre _x:Centre _y:Centre de la supernovaCentra la imatge horitzontalmentCentra la imatge en el paperCentra la imatge verticalment en el paperCentre:CentraCanvia l'ordre de les fletxesCanvia el valor CX (canvia l'aspecte del fractal, actiu amb tots els fractals tret del Mandelbrot i el Sierpinski)Canvia el valor CY (canvia l'aspecte del fractal, actiu amb tots els fractals tret del Mandelbrot i el Sierpinski)Canvia l'angle del vector sm seleccionatCanvia l'angle del vector seleccionatCanvia l'exponent de la forçaCanvia la primera (mínima) delimitació de la coordenada xCanvia la primera (mínima) delimitació de la coordenada yCanvia la intensitat del canal blauCanvia la intensitat del canal verdCanvia la intensitat del canal vermellCanvia el valor de la iteració. Com més alt sigui, calcularà més detalls, però trigarà més.Canvia el nombre de colors en el mapatgeCanvia la segona (màxima) delimitació de la coordenada xCanvia la segona (màxima) delimitació de la coordenada yCanvia la força del vector sm seleccionatCanvia el to del vector seleccionatCanvia a aquestCanvia la gamma (brillantor) del pinzell seleccionatCanal #%d:Mesclador de canalAvís de l'operació amb el fitxer mesclador de canalRepresentacions del canalCanalsComproveu si voleu tenir una taula capturada.DamesTauler d'escacsEl fet de comprovar aquesta etiqueta provocarà que el GTM no deixi espai en blanc entre les etiquetes TD i el contingut de la cel·la. Només és necessari per al posicionament del nivell de control dels píxels.Trieu el fractal fent un doble clic a sobreEscull un nivell de compressió alt per a una mida de fitxer petitaEscolliu l'algorisme de trama que s'usarà. +Adaptive Hybrid normalment produeix la millor qualitat global. +Ordered és més ràpid i produeix almenys la mateixa qualitat que a les fotografies. +Fast i Very Fast són força més ràpids, i treballen bé amb text i art línial. +Hybrid Floyd-Steinberg generalment produeix una sortida pitjor.Escolliu el model d'impressora, fitxer PPD i l'ordre que s'ha de fer servir per imprimir a aquesta impressoraCercleRecuperació...NetejaTanca la corba en completar-seTancatCo_lorCo_lor:Co_lorsCo_mentari:Co_mplexitat:Co_mprimeix les etiquetes TDRegió co_ntíguaCo_ntrast:Col_umna:RecullColorDensitat del colorMillora del color...Canvi de colorCanvi de color...Canvi de color: des del colorCanvi de color: al colorFunció del colorMode de colorDiàleg de selecció del colorTransformació de colorSo_roll del color:El color es calcula amb la mitjana de tots els píxels que hi han sota el pinzellSortida de colorAcoloreix a l'AlfaColoreix al seleccionador de color alfa_Mapa de color:Anàlisi del cub de colorAnàlisi del cub de color...AcoloreixAcoloreix amb el color per defecteS'està acolorint...S'està acolorintRotació del mapa de colorsColorsColors:CombinaCom_entari:Ordre:ComentariComentari:ComposaComposa els canalsS'estan composant les imatges...S'està composant...Composició:Mida comprimida: %sCompressióRelació de compressió (aprox.): %d a 1Força la relació d'aspecteS'està construint un laberint segons l'algorisme de Prim...S'està construint el mosàic laberint segons l'algorisme de Prim...ContextDegradat continuat amb/sense buitsDegradat continuActualització contínuaContrast:ControlsControla la intensitat del ressaltamentConvertiu primer la imatge a format RGBMatriu de circumvolucióLa matriu de circumvolució no funciona en capes més petites de 3 píxels.EnvoltaCopiaCopia el GFlareCopia els paràmetresCopia un objecteCopia la corba activa a l'altra voraCopia la textura del paper seleccionat com a fonsS'esta copiant l'IFS a la imatge (%d/%d)...S'està copiant...Copyright:CosinusNo s'ha pogut crear el directori de treball '%s': %sNo s'ha pogut executar el navegador web: +%sNo s'han pogut obtenir capes per a la imatge %dNo s'ha pogut interpretar '%s'No s'ha pogut carregar la configuració predeterminada de PNGNo es pot obrir '%s' com a fitxer SUN-rasterNo es pot obrir '%s' per escriure-hi.No es pot obrir '%s' per llegir-hi: '%s'No s'ha pogut obrir el fitxer '%s' per escriure-hi.No es pot obrir el fitxer '%s' per escriure-hi: %sNo s'ha pogut analitzar l'ordre del navegador web: +%sNo s'ha pogut llegir la capçalera XWD de '%s'No es poden llegir les entrades de color de '%s'No es pot llegir la capçalera de '%s'S'ha produït un error en escriure '%s': %sNo s'ha pogut carregar un pinzell al conducte. Renuncieu-hi.No s'ha pogut desar la transparència sense pèrdues. Es desarà la opacitat.No s'ha pogut llegir el fitxer:No s'ha pogut desar el fitxer:No s'han pogut desar els fitxers de recursos:No s'ha pogut reduir els colors de manera més simple. S'està desant com a opac.Coupled-Map-Lattice ExplorerCreaCrea les guiesCrea un mapa de colors fent servir un degradat de l'editor de degradatsCrea un mapa de color amb les opcions que heu especificat a sobre (densitat/funció del color). El resultat es pot veure a la imatge de la previsualització.Crea una imatge nova quan s'aplica el filtreCrea una unitat nova des del començament.Crea una corba bezier. Tecla de majúscula + botó acaba la creació de l'objecte.Crea un cercleCrea una el·lipseCrea una líniaCrea un polígon regularCrea una espiralCrea un estrellaS'ha produït un error en CreateDIBSectionS'ha creat amb el GIMPS'està creant un patró de difracció...Esca_pçaS'està escapçant...Cor_ba:CubismeCapa del rínxolUbicació del rínxolOrientació del rínxolActual:Corba BendCorba Bend...Tipus de corbaCorba per a la voraColor per defecte:RetallaCianCian:Cian_KCilindreLongitud del cilindreRadi del cilindreD_ivisor:Més foscMés fosc:Compressió de dadesS'estan formatant les dadesData:DescomposaS'està descomposant...PredeterminatTipus de mapa per defecte_URL per defecte:Defineix una àrea circular/ovaladaDefiniu una nova impressoraDefineix una àrea poligonalDefineix una àrea rectangularDefiniu una nova impressora lògica. S'usa per donar nom a una col·lecció de configuracions que voleu recordar per a ús futur.Varia el modeGrau d'inclinació de la vora de cada peçaGrausDesentrellaçaDesentrellaça...SuprimeixSuprimeix l'àreaSuprimeix el fractalSuprimeix el GFlareSuprimeix el puntSuprimeix un objecteSuprimeix el fractal seleccionat actualmentSuprimeix l'àrea seleccionadaSuprimeix el vector sm seleccionatSuprimeix el vector seleccionatSuprimeix la predefinició seleccionadaFunció deltaFunció delta desplaçadaDensitat:Fusió profundaFusió profunda...S'està derivant la paleta suau...Descripció:Treu els picsAbast del color destinacióDestí:Treu les bandesS'estan treient les bandes...Llindar de desviació:DiamantPatrons de difraccióDifusió:DígitsDimensió:DimensionsDimensions:DireccióVector de direccióDireccionalDireccionsDireccions:DesplaçaS'està desplaçant...Mostra com a:Distància des d'abaix del paper a la imatgeLa distància des de l'esquerra del paper a la imatgeLa distància des de l'esquerra del paper a la dreta de la imatgeDistància des de la dreta del paper a la imatgeDistància des del damunt del paper a sota de la imatgeLa distància des del damunt del paper a la imatgeAlgorisme de trama:DivisióFes la _previsualitzacióEsteu segur de voler descartar els canvis?Dibuixa una vora de puntes al voltant de la imatgeEls elements dibuixables tenen una mida diferentS'està dibuixant la flama...S'està dibuixant la graella...S'està dibuixant el laberint...Paràmetres de dibuixDibuixa línies entre els punts de control. Només durant la creació de la corbaSombra descendentS'ha trobat l'EOF en llegirE_levació:E_sténCada peça té costats corbatsCada peça té costats rectesVora afectadaDetecció de voraDetecció de vora...Vora enfosquida:VoresEditaEdita la informació de l'àrea...Edita la flamaEdita la informació del mapa...Edita l'objecteEdita el nom del fractalEdita la informació de l'àrea seleccionadaS'està editant un objecte de només lectura. No podreu desar-loEfecte canalEfecte operadorRelleuActiva/desactiva mapatge bump (profunditat d'imatge)Habilita/inhabilita el mapatge de l'entorn (reflexió)Habilita/inhabilita la previsualització d'alta qualitatHabilita/inhabilita la supressió de vores irregulars (suavitzat)Habilita/inhabilita la previsualització dels canvisEncapsulació:S'ha produït un error en la pàgina finalGravaS'està gravant...Introduïu un nom per al GFlare copiatIntroduïu un nom per al GFlare nouIntroduïu el nom que voleu donar a aquesta impressora lògicaCapa senceraImatge de l'entorn a utilitzarS'ha produït un error quan s'obria el fitxer FITSS'ha produït un error quan s'escrivia la imatge rgbS'ha produït un error en obtenir el punterS'ha produït un error en el fitxer de pinzell del GIMP '%s'S'ha produït un error en el fitxer conducte del pinzell del GIMPS'ha produït un error en obtenir ID de capaS'ha produït un error en obtenir la captura de pantallaS'ha produït un error en obrir el fitxerS'ha produït un error en obrir el fitxer '%s'S'ha produït un error en llegir la capçalera del fitxer BMP des de '%s'S'ha produït un error en llegir el fitxerS'ha produït un error en iniciar el ghostscript (%s)S'ha produït un error en llegir '%s'. Potser el fitxer està corromput.S'ha produït un error en desar '%s'. No s'ha pogut desar la imatge.S'ha produït un error en escriure el fitxer de sortida.S'ha produït un error: no s'ha pogut llegir el fitxer de propietats XJT '%s'.S'ha produït un error: el fitxer de propietats XJT '%s' és buit.S'ha produït un error: no es poden carregar els paràmetresS'ha produït un error: aquest no és un fitxer CML.Distribuït uniformementExporta la previsualitzacióEl fitxer FITS conserva les imatges no visualitzablesEn desar, el FITS no pot gestionar imatges amb canals alfaF_itxerPr_imer color:FactorNo s'ha pogut obrir el fitxer del Gflare '%s': %sNo s'ha pogut desar el fitxer PPM '%s': %sS'ha produït un error en escriure el fitxer GFlare '%s': %sNombre enter ràpidMés ràpid, amb colors més brillants, per a text i líniesPlomaFitxerS'ha desat el fitxer "%s".El fitxer '%s' ja existeix. +El voleu sobreescriure?El fitxer '%s' està corromput. +L'opció de la línia %d és una secció incorrectaEl fitxer '%s' no és un fitxer explorador del fractalEl fitxer està en un format no permès.Nom de fitxer:Nom de fitxer: %sOmple (de baix a dalt)Omple (d'esquerra a dreta)Omple (de dreta a esquerra)Omple (de dalt a baix)Omple-ho amb el paràmetre kPel·lículaFiltreSimulació del paquet de filtresS'està cercant el fons de l'animació...S'estan cercant les vores...S'està cercant el degradat XY...Primer color de destinacióPrimer GfigPrimer color fontMenú de selecció del mapa de vector de direcció fixadaFlamaLa flama només funciona en els dibuixables RGB.FlareFXVoltejaPunt flotantPas de fluxe %d...FlotantEnfoca els traços del pinzell al voltant del centre de la imatgePrimer plaParàmetres del fractalTraç del fractalTipus de fractalNom del fractal:Degradat de l'explorador de fractalsPíxels fraccionalsMarc %dMarc %d (%d%s)Marc %d de %dMarc (%i)Des deDes del colorDes del paperDes de:Davant:PleFuncióSelecció difosaG-QbistGEE-SLIMEGFLI 1.3 - Carrega la pila de marcsGFLI 1.3 - Desa la pila de marcsGFlareEl GFlare '%s' no s'ha desat. Si afegiu una nova entrada a '%s', com: +(gflare-path "%s") +i creeu un directori '%s', podeu desar els vostre propis GFlare en aquest directori.Editor del GFlareOpcions del GIFAvís GIFGIF: No està gestionat el tipus %d de composició GIF indocumentat. Pot ser que l'animació no es reprodueixi o no es torni a desar perfectament.Extensió del GIMPConnector del GIMPTaula màgica del GIMP El fitxer de pinzell del GIMP sembla ser corrupte.Els pinzells GIMP són en escala de grisos o bé RGBA_FosforescènciaGamma:Opcions generalsPreferències generalsGfigVersió del Gimp-PrintGimpressionistMosaic òpticMosaic òptic...Opcions de pintura fosforescent_GrisObtéO_bté desprésObté una única finestraObté la pantalla senceraDegradatDegradat de flama...Mapa de degradat...Menú de selecció del mapa de degradatDegradatsGràfica dels paràmteres actualsGrisEscala de grisosVerdVerd:GrisGraellaGranularitat de la graellaDesplaçament de la graellaParàmetres de la graellaParàmetres de la graella...Tipus i visibilitat de la graellaEspaiat de la graella:GuiesGuies...Guillotina...HSVOpcions de la pàgina HTML_Ressaltament:Re_ssaltaments_To_To:He_xàgonsAlçada del paper on voleu imprimirAlçada:No es coneix l'identificador d'ajuda '%s'On ha anat l'objecte?Els valors més alts incrementen la magnitud de l'efecteUns valors més alts fan que el que es ressalta estigui més focalitzatUns valors més alts fan que l'objecte reflecteixi més llum (sembla més clar)Els valors més alts restringeixen l'efecte a menys àrees de la imatgeRessaltat:Ressaltaments:HoritzontalColor horitzontalHoritzontalmentFerraduraCàlidCàlid...Quantes unitats fan una polzada.Quant s'ha d'"enfosquir" l'ombra descendentQuant s'han d'"enfosquir" les vores de cada traç de pinzellQuant s'ha de difuminar l'ombra descendentToRotació del to:Variacions de toTo:IdentificadorITER:IWarpI_ntensitatI_nteractiuSi comproveu el GTM sortirà un document HTML sencer amb les etiquetes , , etc... en comptes de la taula html.Si comproveu el GTM substituireu les seccions rectangulars dels blocs de color idèntic per una cel·la gran amb els valors de les files de llum i el col·lector de llum..Si està habilitat, el mapatge començarà a la banda dreta,si no començarà a l'esquerra.Si no està habilitat, la imatge es mapejarà circularment dins d'un rectangle. Si està habilitat, es mapejarà dins d'un cercle.Si no està habilitat, el mapa posarà la fila inferior al mig i la superior fora dels límits. Si està habilitat, passarà a l'inrevés.Si habiliteu aquesta opció, els colors de valors més alts s'intercanviaran amb els de valors més baixos i viceversaSi habiliteu aquesta opció, la previsualització es redibuixarà automàticamentIl·lusióIl·lusió...Im_atgeConfiguració de la imatge / sortidaS'està composant la imatgeSelecció de la imatgeMida de la imatgeTipus d'imatgesDimensions de la imatge: %d x %dLa imatge no és una imatge grisa (bpp=%d)Nom de la imatge:Ha canviat la mida de la imatge.Imatges de la part de dalt de les caresLes imatges tenen una mida diferentImporta els elements de camins SVG perquè es puguin fer servir amb l'eina de camí del GIMPIn_versPolzadaInclou les decoracionsInsereix un puntNombre enterIntensitatNivells d'intensitatIntensitat del color original quan l'il·lumina una font de llumEntrellaçaProcediment intern del GIMPInterseccióColor de la interseccióHi ha una cadena UTF-8 no vàlida en el fitxer PSDHi ha una cadena UTF-8 invàlida en el fitxer de pinzell '%s'.S'ha trobat una cadena UTF-8 invàlida en el fitxer de patró '%s'.InversióInverteix la textura del paperIsomètricÉs altament recomenable afegir +(gimpressionist-path "%s") +(o semblant) al vostre fitxer gimprc.Iteracions:JNGPrevisualització JPEGEncaixEstil d'encaixJuliaConserva els valors de les imatgesConserva l'originalConserva el primer valorLABLZ77Com_ençamentMarge _esquerreLong_itud:L_inealLambdaHoritzontalLaplace...3x3 _granLa capa %s no té un canal alfa. S'ha omèsEsquerra:Efecte de lentMenys saturació:Permet que la direcció des del centre determini la direcció del traçPermet que la direcció des del centre determini la mida del traçPermet que el valor (lluminositat) de la regió determini la direcció del traçPermet que el valor (lluminositat) de la regió determini la mida del traçLlumParàmetres de la llumDirecció X de la font de llum en l'espai XYZPosició X de la font de llum en l'espai XYZDirecció Y de la font de llum en l'espai XYZPosició Y de la font de llum en l'espai XYZDirecció Z de la font de llum en l'espai XYZPosició Z de la font de llum en l'espai XYZMés clarMés clar:Efectes de llumEfectes de llum...LíniaLinealTipus d'enllaçVisualització de llistaLlangardaixGraons llar_gsMarge _inferiorCarrega els paràmetres del mesclador de canalCarrega els punts de la corba del fitxerCarrega el fitxer FITSCarrega la flamaCarrega els paràmetres del fractalCarrega la col·leció d'objectes GfigCarrega el mapa de la imatgeCarrega la paleta KissCarrega els paràmetres des deCarrega el PostScriptCarrega un fractal del fitxerCarrega les corbes del fitxerS'està carregant la captura de pantalla...LogarítmicBucleLuma_y470:Luma_y470f:Luma_y709:Luma_y709f:Llindar de lluminosi_tat:Opcions del MNGMagen_taMagentaMagenta:Magenta_KOpcions principalsFes transparent la imatge de destinació on l'alçada bump és zeroFes la imatge transparent a l'exterior de l'objecteMan'o'warMandelbrotParàmetres de MandelbrotManualS'especifica l'orientació del traç de forma manualS'especifica manualment la mida del traçAbast del mapa de colorsMapeja les imatges a les cares de la caixaFormat del fitxer de mapaMapeja a l'objecteMapeja a:S'estan mapant els colors...MarbreFitxer màscaraMatriuMàx (x+d, -)Màx (x+d, -), (0.5 < x)Màx (x+d, -), (x < 0.5)Màx (x, -)Màx (x-d, -)Màx (x-d, -), (0.5 < x)Màx (x-d, -), (x < 0.5)RGB màximRGB màxim...Memòria màx.:Alçada màxima per bumpsMida màxima:Camí de menúMenú camí/nomS'està fusionant...Tons mitjans:Mín (x+d, -)Mín (x+d, -), (0.5 < x)Mín (x+d, -), (x < 0.5)Mín (x, -)Mín (x-d, -)Mín (x-d, -), (0.5 < x)Mín (x-d, -), (x < 0.5)Mida mínima:Reflexa la corba activa a l'altra voraModeMode _1Mode _2Modifica les corbesMés saturació:MosaicDifuminació de movimentS'està difuminant el movimentMouMou avallMou la faixaMou els objectes seleccionatsMou endavantMou amuntMou només un puntMou un objecteMovimentMúltiple (57):Multiplica el grau (0,1)Multiplica el valor aleatori (0,1)Multiplica el valor aleatori (0,2)El meu primer fractalFiltre NLFiltre NL...NomNou fractalNou GFlareNova unitatPaper de diariS'està convertint en paper de diari...No hi ha cap %s al gimprc: +Us cal afegir una entrada com +(%s "%s") +al fitxer %s.Sense colorsNo s'ha capturat cap dadaCap concordançaNo hi ha cap selecció per convertirNo trova una extensió de fitxer reconeguda; s'intentarà esbrinar el tipus de fitxer.No trova una extensió de fitxer reconeguda; es desarà com a XCF comprimit.Nombre abai_x:SorollPíxels no quadrats. La imatge pot semblar aplastada.CapNormalNormal:S'està normalitzant...No hi ha res per escapçar.Nombre de colorsNombre d'entrades més _recents (1-16):Nombre de mosaicsNombre de _marcs:N_ombre de nivells per desfer (1 - 99):Nombre de colors:Nombre de peces que passenNombre de peces que cauenNombre de vegades que cal aplicar el filtreNombre de colors únics: %dS'està numerant_Desplaçament:O_pacitat:O_pcionsO_rientacióAl_tresS_ortida LPI:Su_perposaSo_bremostra:Detalls de l'objectePosició X de l'objecte en l'espai XYZPosició Y de l'objecte en l'espai XYZPosició Z de l'objecte en l'espai XYZDesplaçament (1)Desplaça tots els vectors amb un angle donatDesplaçament:S'està convertint en pintura a l'oli...Converteix en oliA les vores:En la pel·lícula:Només un únic colorOp_acitat:Op_cionsOpacitat:ObreObre el fitxerNo s'ha pogut obrirS'està obrint '%s'...Obre l'editor de mapes d'orientacióObre l'editor del mapa de midesOptimitzaOptimitza la sortida per al tipus d'imatge que s'imprimiràS'està optimitzant l'animació...OpcionsOr_ientacióOr_igen a baix a l'esquerraOrientacióEditor de mapes d'orientacióOrientació:OriginalOriginal:Al_tresSortidaNivells de sortida:Tipus exteriorSuperposaPNGEn desar en PNM no es poden gestionar imatges amb canals alfa.PNM: s'ha produït un error en llegir el fitxer.PNM: la resolució X no és vàlida.PNM: la resolució Y no és vàlida.PNM: el fitxer no és vàlid.PNM: el valor màxim no és vàlid.PNM: fi de fitxer prematur.Fitxer PPD:pppDiamant PSQuadrat PS (punt euclidià)P_aperP_revisualitzaPàgina %dPàgina del rínxol...S'ha produït un error PageSetupDlg: %dEfecte de rínxol de pàginaPàgines:Mode de pintura:Pinta les voresS'està pintant...Mosaic del paperMosaic del paper...Paràmetre k:ParàmetresS'ha produït un error en analitzar '%s': +%sEnganxaEnganxatS'està enganxant...PercentatgePercentatge de píxels que es filtraranPhongFotografiaTrossos:Al_çada del píxel:Am_plada del píxel:PixelitzaS'està pixelitzant...PíxelsEmpl_açamentSitúa els traços aleatòriament al voltant de la imatgeEmplaçamentPlaPlasmaPlasma...Reprodueix/AturaComproveu la vostra instal·lació.PluralPuntPolarPolaritzaS'està polaritzant...PolígonVerticalPosicióPosicioneu la imatge a la pàgina. +Cliqueu i arrossegueu amb el primer botó per posicionar la imatge. +Cliqueu i arrossegueu amb el segon botó per moure la imatge amb més precissió; cada unitat de moviment mou la imatge un punt (1/72 de polzada). +Cliqueu i arrossegueu amb el botó central per moure la imatge en unitats de la mida de la imatge. +Si premeu la tecla de majúscules mentre cliqueu i arrossegueu limitareu el moviment només en horizontal o vertical. +Si cliqueu un altre botó quan arrossegueu el ratolí, la imatge tornarà a la seva posició original.El desat en PostScript no pot gestionar imatges amb canals alfaPre_visualitzacióPreferènciesConserva la imatge original com a fonsPrevisualitzacióMida de previsualitzacióPrevisualitza mentre arrosseguisAjust del color d'impressióImprimeix i +desa la configuracióImprimeix en negre i blanc (sense color, sense ombres grises)Imprimeix en ombres de gris fent servir tintes negresS'ha produït un error en PrintDlg: %dModel d'impressora:Configuració de la impressoraLa impressora no accepta els mapes de bitsS'està imprimint...Degradat de probabilitat:ProgressiuPropagació del canal de valorProp_agació del canal alfaQbist ...Qualitat:RGBRGBAEl dibuixable RGBA/GRAYA no està seleccionat.RLER_adi:_Aleatorietat (%):R_ecurrentV_ermellR_epeteix:Invert_eixRadialDegradat radial:RadiansRadians/PiRadiRadi:AleatoriLlença aleatòriament 1.7Tria aleatòriament 1.7Llavor aleatòria:Murmuri aleatori 1.7Prova aleatòriaAleatori, caràcter independentAleatòriamentAleatoris des de la llavorAleatoris des de la llavor (compartida)Rangs:CruOpcions de pintura dels raigs_VermellLlegeix la predefinició seleccionada a la memòriaPrevisualització en temps realTornar a calcular la previsualitzacióRectangleVermellVermell:Vermellor_cr470:Vermellor_cr470f:Vermellor_cr709:Vermellor_cr709f:Torna a ferTorna a fer la darrera ampliacióRedibuixaRedibuixa la previsualitzacióRedueix la _lluminositatRedueix la _saturacióReflexióActualitza la previsualitzacióNombre de cares del polígon regularEnllaç relati_uRelleu:Torna a fer el mapa acolorit..._SuprimeixS'està suprimint el fons de l'animació...S'està suprimint el color...Composa el Flare...Composa els gràfics de vectors escalables (SVG)SVG composatWMF composatS'està composantS'està composant una ventada...S'està composant el fractal...S'està composant l'IFS (%d/%d)...S'està composant un SVG...S'està composant l'esfera...S'està composant la supernova...S'estan composant els mosaics...S'està composant el vent...SubstitueixTorna a llegir la carpeta de predefinitsActualitza els degradatsTorna a escanejar els fractalsTorna els paràmetres als valors per defecteReseta la corba activaVoleu redimensionar l'àrea?ResolucióResolució i qualitat de la impressióResolució:Límit de les guies resultant: %d,%d a %d,%d (%d àrees)Límit de les guies resultant: 0,0 a 0,0 (0 àrees)Torna a la imatge originalRebobinaMarge dret:Dreta:OnaS'està onejant...Ro_tació:_Fila:_Gira:Rotació en X:Rotació en Y:Rotació en Z:GiratS'està rotant el mapa de colors...S'està girant...RotacióAngle de rotació sobre l'eix XAngle de rotació sobre l'eix YAngle de rotació sobre l'eix ZRotació:AsprorRodóCodificat en RunLenghtEn desar, el SUNRAS no pot gestionar les imatges amb els canals alfaEl fitxer SVG no +especifica una midaS_egon color:S_elecciona la finestra desprésS_elecciona aquí:S_elector_EncongeixS_inusE_xp. de força:_Força:Ra_tllatAss_umpte:Interca_nviaArremolina en sentit _antihorariIgualAnalitza la mostra...Acoloreix la mostraMostra:Obté el color del píxel del centre del pinzell_SaturacióSatu_racióSaturacióVariacions de saturacióSaturació:DesaDesa +la configuracióDesa el pinzellDesa els paràmetres del mesclador de canalDesa l'actualDesa els punts de la corba al fitxerDesa dades EXIFDesa el fitxerDesa la flamaDesa els paràmetres del fractalDesa el dibuix GfigDesa el mapa de la imatgeDesa els paràmetres aDesa el valor dels _colors dels píxels transparentsDesa el fractal actiu al fitxerDesa com a BMPDesa com a pinzellDesa com a conducte pinzellDesa com a Font-CDesa com a GIFDesa com a JPEGDesa com a MNGDesa com a PNGDesa com a PNMDesa com a PSPDesa com a patróDesa com a PostScriptDesa com a SGIAnomena i desa com a SUNRASAnomena i desa com a TGAAnomena i desa com a TIFFDesa com a textAnomena i desa com a XBMDesa com a XJTAnomena i desa com a XPMDesa l'actual...Desa la configuració actual al fitxer especificatDesa les corbes al fitxerDesatS'està desant '%s'...Den_t de serraDis_persió:Escala el to per:Escala el valor per:Escala X:Escala Y:Escala Z:Escala la impressió al nombre de punts per polzadaEscala la impressió a la mida de la pàginaEscala:Escalat:Dispersió HSVS'està dispersant HSV...PantallaCaptura de pantallaNomés la se_leccióCerca per ressen_yaCerca per _nomS'està cercant, espereu un momentS'està cercant per ressenya, espereu un momentS'està cercant per nom, espereu un momentInvertit en horitzontalSegon color de destinacióOpcions de pintura de les flames secundàriesSegon color fontSegons de retardLlavor de la generació aleatòria (només per als modes "Des de la llavor")Llavor:Selecció en con_textSeleccionaSelecciona totSelecciona el colorTria el color de la pel·lículaSelecciona el fitxer HTMLSelecciona el fitxer imatgeSelecciona el següentTria el color del nombreSelecciona els píxels perSelecciona l'anteriorSelecciona la regióSeleccion_a totSelecciona-ho totSelecciona la regió següentSelecciona l'àrea existentSeleccioneu una carpeta i torneu a escanejar la col·leccióSelecciona el vector sm següentSelecciona el vector següentSelecciona el vector sm anteriorSelecciona el vector anteriorSeleccioneu la unitat bàsica de mesura per a la impressióSeleccioneu el tipus de sortida desitjadaSeleccioneu el nom de la impressora (no el tipus ni el model) en la que voleu imprimirSeleccioneu l'orientació: vertical, horitzontal, invertit en vertical o invertit en horitzontalSeleccioneu si l'escalat es mesura com a percentatge de la mida de pàgina disponible o el nombre de punts per polzadaSeleccioneu el vostre model d'impressoraSeleccioneu:Seleccionat:SeleccióParàmetres avançats de la selecció a camíLa mida de la selecció no és parella. +El laberint de mosaic no s'executarà perfectament.Selecció a camí...Desenfocat gaussià selectiuDesenfocat gaussià selectiu...Paràmetres de càrrega selectivaCarrega selectivament des deSelecciona aleatòriament una direcció per cada traçSelecciona una mida aleatòria per a cada traçSeleccioneu-lo si la imatge resultant hauria de semblar-se a un mosaicSeleccioneu-lo per situar els traços a l'exterior de les vores de la imatgeS'està semiaplanant...Envia endarrereSepara a:31 de setembre de 1999Defineix el color de la font de llumDefiniu els centímetres com a unitat de mesuraDefiniu les polzades com a unitat de mesuraDefiniu la brillantor de la impressió. +El 0 és negre sòlid, el 2 és blanc sòlid.Definiu el contrast de la impressióDefiniu l'alçada de la impressióDefiniu la mida de la impressió a la mida de la imatgeDefiniu l'escala (mida) de la imatgeDefiniu l'amplada de la impressióS'ha produït un error en SetStretchBltMode (només és un avís)ConfiguracióParàmetres d'aquest fitxer de mapaConfigura la impressoraOm_bresDifumina l'ombra:Foscor de l'ombra:Profunditat de l'ombra:Ombres:Forma de les flames secundàriesAfilaS'està afilant...Desproveeix:DecalatgeS'està decalant...Voleu fer un efecte invers?Voleu conservar la lluminositat?MostraMostra la línia del marcMostra tots els objectesMos_tra l'àrea consell de la URLMo_stra les nanses de l'àreaMostra l'objecte següentMostra l'objecte anteriorSi_ngular:SierpinskiSenzillSin_usoïdalSinusSingularSinusSinus: s'està composant...SinusoïdalMidaMida (%):Degradat del factor de mida:Editor del mapa de midesMida del paper on voleu imprimirMida:Mides:Més lent però amb més precissió i amb colors més suaus. Per a imatges de to continu i fotografiesTacaS_uavitzaS_uauPaleta suauS'està suavitzant el degradat X...S'està suavitzant el degradat Y...Suavitat:Nivell del suavitzatVectors smS'esta detectant vores Sobel...Detecció de vores SobelSobel _horitzontalSobel _verticalSòlidSoroll sòlidSoroll sòlid...Fons acolorit com a sòlidAlgunes dades han canviatNomés es poden desar imatges indexades i grises.Els canals i les màscares no es poden girar.Font (safata d'entrada) del medi on voleu imprimirFont 1:Font 2:Abast del color fontFont...Espaiat:GuspiresS'estan dibuixant les guspires...Transformació espaialNo s'ha trobat la finestra especificadaEspecifica la quantitat de realçat a aplicar a la imatge (en tant per cent)Especifica la relació d'aspecte del pinzellEspecifica l'escala de la textura (en tant per cent del fitxer original)Especular:EsferaDissenyador d'esferesEsfèricAranyaGruix de les puntes:EspiralRadi del punt:PuntsEscampaQuantitat escampadaS'està escampant...Exp. de fo_rça:EstàndardNombre de punts de l'estrellaAngle inicial:Ha fallat la pàgina d'iniciPasAtura't quan les diferències de píxels són més petites que aquest valorEsténS'ha produït un error SetStretchBltMode (hDC, %d, %d, %d, %d, hdcMem, %d, 0, %d, 1, SRCCOPY) error = %d, y = %d_Densitat de traços:FortEstilSubdivideix:Submostra:Subpassos:SupernovaSeleccionador de color de la supernovaArremolina en sentit _horariIntercanvia les dos corbesMovimentCommuta al sentit antihorariCommuta al sentit horariSímbolCanal TIFFFer un mosa_icT_urbulència:T_urbulentOpcions de creació d'una taulaOpcions de la taulaObjectiuTel_netTemporalProcediment temporalTexturaPropietats de la texturaTextura:TexturesEl format GIF només suporta comentaris codificats en 7bit ASCII. No s'ha desat cap comentari.No s'han instal·lat els fitxers d'ajuda del GIMP.El GIMPressionistEl fitxer PNG especifica un desplaçament que ha causat que la capa es posicioni fora de la imatge.El format TIFF només suporta comentaris en +codificació ASCII de 7 bits. No es desarà cap comentari.La quantitat de farciment de les cel·les.La quantitat d'espaiat de les cel·les.La quantitat de ressaltament de les vores de cada peçaEs selecciona la mida del pinzell que coincideixi més properament amb la imatge originalEls colors són el blanc i el negre.El comentari per defecte està limitat a %d caràcters.La profunditat de l'ombrejat, p.e. quina distància s'hauria d'allunyar de l'objecteEs seleccionarà la direcció que coincideixi més properament amb la imatge originalDistància des del centre de la imatge que determina la direcció del traçLa distància des del centre de la imatge determina la mida del traçLa primera fila de la imatgeL'alçada de cada cel·la de la taula. Pot ser un número o un percentatge.El to de color de la regió determina la direcció del traçEl to de color de la regió determina la mida del traçLa imatge que esteu intentant desar en format GIF +conté capes que s'estenen més enllà de les vores actuals de la imatge. Això no està permès en les imatges GIF. Podeu escollir entre escapçar totes les capes d'acord amb -les vores de les imatges o no desar.El pinzell més gran per crearLa capa preserva la transparència.El nom '%s' ja s'ha utilitzat!El nom '%s' ja està utilitzat!El nombre de direccions (p.e. pinzells) a utilitzarEl nombre de píxels a la vora de la taula.La densitat relativa dels traços del pinzellEl pinzell més petit per crearEl camp vector sm. Feu un clic al botó esquerra del ratolí per moures el vector sm seleccionat, el botó dret per apuntar cap a on bellugeu el ratolí i el botó del mig per afegir un vetor sm nou.Els traços són distribuïts uniformementa a través de la imatgeEls traços segueixen a un patró "flotant"El text del peu de taula.El text que ha d'anar en cada cel·la.El tipus d'aquest fitxer-trama SUN no està permèsL'abreviatura de la unitat (p.e. "cm" per centímetres.La forma en plural de la unitat.La forma en singular de la unitat.El camp vector. Feu un clic al botó esquerra del ratolí per moures el vector seleccionat, el botó dret per apuntar segons mogueu el ratolí i el botó del mig per afegir un vector nou.L'amplada de cada cel·la de la taula. Pot ser un número o un percentatge.Aquesta profunditat d'imatge no està permesaAquesta cadena es farà servir per identificar una unitat en la configuració dels fitxers del GIMP.Llindar alfaLlindar alfa: s'està acolorint la transparència...Llindar:MosaicMosaic de la imatge font: útil per a un nombre de plans infinitFes el mosaic d'una nova midaFes-ne un mosaicFer mosaicConstructor de mosaics...Mosaic primitiusS'està fent el mosaic...aAl colorA:EinesPart superior:TransparentTracta'l com aquestIntenta delimitar el quadreTipusEl tipus de mapa de color no està permèsFont del tipus de llum a aplicarTipus d'objecte per fer un mapa aTipus:URLURL: %sS'està desoptimitzant l'animació...No es pot afegir punts addicionals. -DesfésDesfés el darrer zoomUnitatEditor de l'unitat.El factor d'unitat no pot ser 0.UnitatsUnitats:Sense nomDesseleccionaDesselecciona totFes la màscara borrosaSense títolActualitzaCap per vallUtilitza un fons transparent; Només els traços pintats seran visiblesFes servir el valor mitjàFes servir la funció cosinus en l'element d'aquest colorFes servir un mapatge lineal en comptes d'una funció trigonomètrica en el canal d'aquest colorUtilitza la suavització 'log log' per eliminar les bandes del resultatFes servir el valor inversFes servir la funció sinus en l'element d'aquest colorValorPropaga el valorVariacions de valorValor:Van Gogh (LIC)VectorsVerticalColor verticalVídeoVídeo/RGB...Mostra la fontEl mode Voronoi només farà que el vector sm més proper al punt donat tingui alguna influència.El mode Voronoi només fa que el vector més proper al punt donat tingui alguna influènciaAvísAvís: la font i la destinació són el mateix canal.Atenció: s'ha desat a XJT un mode de capa %d que no és suportatAtenció: s'ha desat a XJT un tipus de camí %d que no és suportatAtenció: s'ha desat a XJT un tipus d'unitat %d que no és suportatTramaS'està fent la trama...Tipus d'onadaOnesS'estan fent ones...FebleEn commutar, la imatge resultant es reduirà per encaixar en la mida donada sense canviar l'aspecte amb la ràtio.Gira i contrauBlancaAmplada:VentFinestresD'intensitat graduada (0,1)Amb intensitat i aleatori (0,1)D'intensitat aleatòria (0,1)D'intensitat aleatòria (0,10)AjustaEscala X (mida)X:Opcions del XBMEl fitxer XJT conté un mode de capa %d que és desconegutEl fitxer XJT conté un tipus de camí %d que és desconegutEl fitxer XJT conté un tipus d'unitat %d que no és suportatXMAX:XMINEscala Y (mida)Y:YMAXYMIN:Y_1:Y_2:GrocGroc:Groc_KNo es pot rotar la imatge sencera si hi ha una selecció flotant.No es pot rotar la imatge sencera si hi ha una selecció.No podeu desar una màscara del cursor d'una imatge -que no té un canal alfa.Escala Z (mida)Z:S'està aplicant el ZealousCrop (tm)...ZoomAumenta el zoomAcosta el zoom (fa la imatge més gran)Disminueix el zoomAllunya el zoom (fa la imatge més petita)_Angle:_Quadre_Guillotina_Van Gogh (LIC)S'ha creat `Per defecte'.desprésalfanegreblaucmciancian_kverdtintafitxer del Gflare amb un format no válid: %s -k(1-x^p)k(1-x^p) s'ha desplaçatkx^pkx^p s'ha desplaçatk{x(1-x)}^pk{x(1-x)}^p s'ha desplaçatmagentamagenta_kno s'ha trobat %s a gflares_listpíxelsvermellsaturacióEl sinus de ^p s'ha desplaçatFunció basada en el sinus de ^pvalorx (píxels)y (píxels)grocgroc_k \ No newline at end of file +les vores de les imatges, o no desar.La imatge que esteu intentant desar com a XBM conté més de dos colors. + +Convertiu-la en una imatge indexada en blanc i negre (1-bit) i torneu-ho a provar.El pinzell més gran a crearLa capa conserva la transparència.El nom '%s' ja s'ha utilitzatEl nom '%s' ja s'ha utilitzatEl nombre de direccions (p.e. pinzells) a utilitzarEl nombre de píxels a la vora de la taula.El nombre de mides de pinzells a usarLa densitat relativa dels traços del pinzellEl pinzell més petit a crearEl camp vector sm. Cliqueu al botó esquerre del ratolí per moure el vector sm seleccionat, al botó dret per apuntar cap al ratolí i al botó del mig per afegir un vector sm nou.Els traços es distribueixen uniformement per tota la imatgeEls traços segueixen un patró "flotant"El text per la captura de taula.El text que ha d'anar dins de cada cel·la.El tipus d'aquest fitxer SUN-raster no està permèsL'abreviatura de la unitat (p.e. "cm" per a centímetres).La forma en plural de la unitat.La forma en singular de la unitat.El símbol de la unitat si en té (p.e. "'" per a les polzades). Feu servir l'abreviatura de la unitat si no té un símbol.El camp de vectors. Cliqueu al botó esquerre del ratolí per moure el vector seleccionat, al botó dret per apuntar segons moveu el ratolí i al botó del mig per afegir un vector nou.L'amplada de cada cel·la de la taula. Pot ser un número o un percentatge.No hi ha suficients capes per alinear.Hi ha un problema amb els fitxers d'ajuda del GIMP.Aquest camp és un suggeriment per a les entrades de camps numèrics. Especifica quants dígits decimals hauria de proveir el camp d'entrada per obtenir aproximadament la mateixa precisió que una entrada del camp "polzada" amb dos dígits decimals.Aquesta profunditat d'imatge no està permesaAquest no és un fitxer GIFAquesta cadena es farà servir per identificar una unitat en la configuració dels fitxers del GIMP._Llindar:Llindar alfaLlindar alfa: s'està acolorint la transparència...Llindar:MosaicMosaic de la imatge font: útil per a un nombre de plans infinitFes el mosaic en una nova midaFes-ne un mosaicFer mosaicConstructor de mosaics...Mosaic primitiusS'està fent el mosaic...AAl colorA:EinesPart superior:_FiS'estan transferint dades del TWAIN...Transformació %sTransparentTracta'l com aquestVisualització d'arbreTurbulència:TipusEl tipus de mapa de color no està permèsTipus de tinta de la impressoraTipus de font de llum a aplicarTipus de medi on voleu imprimirTipus d'objecte per mapejar-hiTipus:URLURL: %sS'està desoptimitzant l'animació...No es poden afegir punts addicionals. +Mida descomprimida: %sDesfésDesfés la darrera ampliacióUnitatEditor d'unitatsEl factor d'unitat no pot ser 0.UnitatsUnitats:No es coneix el model de color del fitxer PNG '%s'.Raó desconegudaSense nomDesfés la seleccióDesfés tota la seleccióMàscara per desafilarNo se suporta la profunditat de bits (%d)Format de pinzell no suportatFormat no suportat, o porta-retalls buitSense títolEl tipus de fitxer PCX no és el normal. No se seguirà.ActualitzaSuperior esquerra _x:Superior esquerra _y:Invertit en verticalUsa les guies del GimpUtilitza la mida +original de la imatgeUtilitza un fons transparent. Només els traços pintats seran visiblesUtilitza el valor mitjàUtilitza la funció cosinus pel component d'aquest colorUtilitza un mapatge lineal en comptes d'una funció trigonomètrica en el canal d'aquest colorUtilitza la suavització log log per eliminar les bandes del resultatUtilitza la suavització loglogUtilitza el valor inversUtilitza la funció sinus pel component d'aquest colorV_alorValorInversió de valor...Propaga el valorS'està propagant el valor...Variacions de valorValor:Van Gogh (LIC)Van Gogh (LIC)..._Angle del vector:_Longitud del vector:VectorsVerticalColor verticalVerticalmentVídeoVídeo/RGB...Mostra la fontEl mode Voronoi farà que només el vector sm més proper al punt donat tingui alguna influènciaEl mode Voronoi fa que només el vector més proper al punt donat tingui alguna influènciaVòrte_xVòrtex_2Vòrtex_3WAI_SAvísAvís: +la imatge que esteu carregant té 16 bits per canal. El GIMP només pot gestionar-ne de 8 bits, per tant es convertirà automàticament. Es perdrà informació degut a aquesta conversió.Avís: +El color transparent en el fitxer escrit pot ser incorrecte en visualitzadors que no suportin transparències.Avís: '%s' és un fitxer de paràmetres per a un explorador_CML més modern que el que esteu fent servir.Avís: '%s' és un fitxer en format antic.Avís: la font i la destinació són el mateix canal.Avís: s'ha desat a XJT un mode de capa %d no suportatAvís: s'ha desat a XJT un tipus de camí %d no suportatAvís: s'ha desat a XJT un tipus d'unitat %d no suportatTramaS'està fent la trama del marc %d...S'està fent la trama...Tipus d'onaOnesS'estan fent ones...FebleNo s'ha especificat cap navegador +Especifiqueu un navegador web en el diàleg preferències.En commutar, la imatge resultant es reduirà per encaixar en la mida donada sense canviar la relació d'aspecte.Gir i contraccióS'està girant i contraient...BlancAmplada del paper on voleu imprimirAmplada:VentFinestresD'intensitat graduada (0,1)Amb intensitat i aleatori (0,1)D'intensitat aleatòria (0,1)D'intensitat aleatòria (0,10)FustaAjustaEscala X (mida)X:Opcions del XBMEl fitxer XJT conté un mode de capa %d desconegutEl fitxer XJT conté un tipus de camí %d desconegutEl fitxer XJT conté un tipus d'unitat %d no suportatXMAX:XMIN:El fitxer XPM no és vàlidX_1:X_2:Escala Y (mida)Y:YMAX:YMIN:Y_1:Y_2:GrocGroc:Groc_KEsteu a punt de crear un enorme +fitxer HTML que molt probablement +farà que el vostre navegador deixi de funcionar.No es pot girar la imatge sencera si hi ha una selecció flotant.No es pot girar la imatge sencera si hi ha una selecció.No podeu desar una màscara del cursor d'una imatge +que no té un canal alfa.Escala Z (mida)Z:S'està aplicant el ZealousCrop (tm)...AmpliacióAugmenta l'ampliacióAugmenta l'ampliació (imatge més gran)Redueix l'ampliacióRedueix l'ampliació (imatge més petita)_3x3_Abreviatura:_Adaptable_Additiu_Avançat_Alfa_Alfa:Qu_antitat:_Amplitud:_Àngle:_Anima_SuavitzatConverteix _automàticament_Azimut:_FonsURL _base:_Bilineal_NegreEn_negreixVen_tada_Mescla_Blau_Blau:_Vora:Part in_ferior:Cai_xa_Brillantor_Brillantor:_Pinzell_Bump Map_Bumpmap_Copia_DesinflaProfun_ditat:_Derivatiu_Descripció:_Detall:_Dígits:_Desplaçament:_Distorsionat_Punts_Edita_Efecte imatge:_Elevació:R_elleuPostScript _encapsulatImatg_e senceraMapa de l'e_ntorn_Exponent:_Factor:_FitxerNom del _fitxer:_Tipus de lletra:For_ça_Fractals_LliureLloc _ftp_Gamma:_General_GopherDe_gradat_Gris:V_erd_Verd:_Gris_CreixAl_çadaAl_çada:_Ajuda_HexOcul_t_Retenció_Horitzontal_Horitzontal:Espaiat _horitzontal:_To_ID:_Ideal_Ignora_PolzadaEntrada SP_I:_Insereix_Entrellaçat (Adam7)_Inverteix_JPEG_JavaScript_Conserva cert els cercles NCSA_Suprimeix_LZW_LaplaceGraons gra_nsEs_querraInici es_querra a:_Llum_Lineal_LíniesEn_llaç_Inferior_MIME_Mapeja_Material_Màxim (%):Profunditat _màxima:Tons _mitjans_MilímetreRe_flexa_Opcions diverses_Monocrom_Mou_Nombre de creuaments:_Cap_Normal_Paquet de bits_Paràmetres_Període:_Fase:_Ping pong_Plural:_Polígon_Predefinits_Previsualització_PrevisualitzaDemana in_formació de l'àreaAmb _perspectiva_RGBCompressió _RLECodificat en _RLE_Radial_Radi:Aleatò_riament_Raigs_Recipient:_Rectangle_Vermell:To_rna a fer %s_ReflexiuSu_primeixCom_posaNecessita la U_RL per defecteD_retaMarge d_ret_Girat_Saturació_Saturació:_Cerca:Flames _secundàriesR_emitent:Paràmetre_sAfila_ment:_Mida:_Mida:_TacaHabilita l'aju_st a la graellaVelo_citat:Rajo_s:_Quadrat_Quadrats_Graonat_Força:_Símbol:Nom del marc objec_tiu/ID: (opcional - utilitzat només per a marcs)_Gruix:_LlindarLlinda_r:_Títol:Ei_nesInici supe_rior a:Par_t superior:_Transparent_URL per activar quan es cliqui aquesta àrea: (necessari)_Desfés %sAct_ualitzaS_uperiorMarge s_uperior_Utilitza nanses de mida dobleCodificació _uu_Valor:_Valor:_Variació:Espaiat _vertical:_Vertical_Vertical:_Visualitza_Voronoi_Trama_Nivell de l'aiguaLon_gitud d'ona:Lloc _web_BlancRatllat am_pleAm_pladaAm_plada:_Vent_AjustaEscala _X:_X:Escala _Y:_Y:Gr_oc_Z:_Zoom_Zoom:S'ha creat el 'Predeterminat'.una _sola finestradesprésalfanegreblaublavor_cb470blavor_cb470fblavor_cb709blavor_cb709fcmciancian_k_correu electrònicverdtoEl fitxer del Gflare té un format invàlid: %s +k(1-x^p)k(1-x^p) desplaçatkx^pkx^p desplaçatk{x(1-x)}^pk{x(1-x)}^p desplaçatluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmil·lisegonsno s'ha trobat %s a gflares_listpíxelspíxels des de dal_tpíxels des de l'_esquerrapíxels/%avermellvermellor_cr470vermellor_cr470fvermellor_cr709vermellor_cr709fsaturacióSinus de ^p desplaçatFunció basada en el sinus de ^pHi ha algun tipus d'error amb l'extensió dels fitxers o l'absència d'aquestsla pa_ntalla senceravalorx (píxels)y (píxels)grocgroc_k \ No newline at end of file diff -uraN gimp-2.2.0/po-plug-ins/ca.po gimp-2.2.1/po-plug-ins/ca.po --- gimp-2.2.0/po-plug-ins/ca.po 2004-12-19 03:34:06.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/ca.po 2004-12-28 16:58:50.000000000 +0100 @@ -1,31 +1,32 @@ -# Copyright (C) 2000 Free Software Foundation, Inc. -# Softcatala , 2000-2002 -# Jordi Jover, jordijn@softcatala.org +# Copyright (C) 2000,2004 Free Software Foundation, Inc. +# Softcatala , 2000-2004 +# Jordi Jover, jordijn@softcatala.org +# Xavier Conde Rueda , 2004 # msgid "" msgstr "" -"Project-Id-Version: gimp-plugins 1.2.2\n" +"Project-Id-Version: gimp-plugins\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" -"PO-Revision-Date: 2002-05-29 23:44+0200\n" -"Last-Translator: Softcatalà \n" -"Language-Team: Catalan\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" +"PO-Revision-Date: 2004-05-21 17:59+0100\n" +"Last-Translator: Xavier Beà \n" +"Language-Team: Catalan \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: plug-ins/FractalExplorer/Dialogs.c:523 plug-ins/gfig/gfig-dialog.c:283 #: plug-ins/gflare/gflare.c:891 -#, fuzzy, c-format +#, c-format msgid "" "No %s in gimprc:\n" "You need to add an entry like\n" "(%s \"%s\")\n" "to your %s file." msgstr "" -"No hi ha camí al gfig en gimprc:\n" +"No hi ha cap %s al gimprc:\n" "Us cal afegir una entrada com\n" -"(gfig-path \"%s\")\n" +"(%s \"%s\")\n" "al fitxer %s." #: plug-ins/FractalExplorer/Dialogs.c:543 @@ -36,46 +37,45 @@ #: plug-ins/FractalExplorer/Dialogs.c:608 msgid "Realtime Preview" -msgstr "Visualització prèvia en temps real" +msgstr "Previsualització en temps real" #: plug-ins/FractalExplorer/Dialogs.c:615 msgid "If you enable this option the preview will be redrawn automatically" msgstr "" -"Si habiliteu aquesta opció, la visualització prèvia es refarà automàticament" +"Si habiliteu aquesta opció, la previsualització es redibuixarà automàticament" #: plug-ins/FractalExplorer/Dialogs.c:618 msgid "Redraw" -msgstr "Refés" +msgstr "Redibuixa" #: plug-ins/FractalExplorer/Dialogs.c:624 msgid "Redraw preview" -msgstr "Refés la visualització prèvia" +msgstr "Redibuixa la previsualització" #. Zoom Options #: plug-ins/FractalExplorer/Dialogs.c:627 plug-ins/imagemap/imap_popup.c:146 msgid "Zoom" -msgstr "Zoom" +msgstr "Ampliació" #: plug-ins/FractalExplorer/Dialogs.c:655 msgid "Undo last zoom" -msgstr "Desfés el darrer zoom" +msgstr "Desfés la darrera ampliació" #: plug-ins/FractalExplorer/Dialogs.c:665 msgid "Redo last zoom" -msgstr "Torna a fer el darrer zoom" +msgstr "Torna a fer la darrera ampliació" #: plug-ins/FractalExplorer/Dialogs.c:680 -#, fuzzy msgid "_Parameters" -msgstr "Paràmetres" +msgstr "_Paràmetres" #: plug-ins/FractalExplorer/Dialogs.c:683 msgid "Fractal Parameters" -msgstr "Paràmetres fractals" +msgstr "Paràmetres del fractal" #: plug-ins/FractalExplorer/Dialogs.c:696 msgid "XMIN:" -msgstr "XMIN" +msgstr "XMIN:" #: plug-ins/FractalExplorer/Dialogs.c:699 msgid "Change the first (minimal) x-coordinate delimitation" @@ -99,7 +99,7 @@ #: plug-ins/FractalExplorer/Dialogs.c:729 msgid "YMAX:" -msgstr "YMAX" +msgstr "YMAX:" #: plug-ins/FractalExplorer/Dialogs.c:732 msgid "Change the second (maximal) y-coordinate delimitation" @@ -114,8 +114,8 @@ "Change the iteration value. The higher it is, the more details will be " "calculated, which will take more time" msgstr "" -"Canvia el valor de la iteració. Com més alt sigui, calcularà més detalls i " -"trigarà més." +"Canvia el valor de la iteració. Com més alt sigui, calcularà més detalls, " +"però trigarà més." #: plug-ins/FractalExplorer/Dialogs.c:752 msgid "CX:" @@ -127,27 +127,27 @@ "but Mandelbrot and Sierpinski)" msgstr "" "Canvia el valor CX (canvia l'aspecte del fractal, actiu amb tots els " -"fractals tret del Mandelbrot i l'Spierinski)" +"fractals tret del Mandelbrot i el Sierpinski)" #: plug-ins/FractalExplorer/Dialogs.c:764 msgid "CY:" -msgstr "CY" +msgstr "CY:" #: plug-ins/FractalExplorer/Dialogs.c:767 msgid "" "Change the CY value (changes aspect of fractal, active with every fractal " "but Mandelbrot and Sierpinski)" msgstr "" -"Canvia el valor CX (canvia l'aspecte del fractal, actiu amb tots els " -"fractals tret del Mandelbrot i l'Spierinski)" +"Canvia el valor CY (canvia l'aspecte del fractal, actiu amb tots els " +"fractals tret del Mandelbrot i el Sierpinski)" #: plug-ins/FractalExplorer/Dialogs.c:784 msgid "Load a fractal from file" -msgstr "Carrega un fractal des del fitxer" +msgstr "Carrega un fractal del fitxer" #: plug-ins/FractalExplorer/Dialogs.c:792 msgid "Reset parameters to default values" -msgstr "Fes que els paràmetres tornin als valors per defecte" +msgstr "Torna els paràmetres als valors per defecte" #: plug-ins/FractalExplorer/Dialogs.c:801 msgid "Save active fractal to file" @@ -184,7 +184,7 @@ #: plug-ins/FractalExplorer/Dialogs.c:829 msgid "Man'o'war" -msgstr "Guerrer" +msgstr "Man'o'war" #: plug-ins/FractalExplorer/Dialogs.c:831 msgid "Lambda" @@ -195,9 +195,8 @@ msgstr "Sierpinski" #: plug-ins/FractalExplorer/Dialogs.c:879 plug-ins/common/sinus.c:879 -#, fuzzy msgid "Co_lors" -msgstr "Colors" +msgstr "Co_lors" #. Number of Colors frame #: plug-ins/FractalExplorer/Dialogs.c:883 plug-ins/common/borderaverage.c:405 @@ -205,7 +204,6 @@ msgstr "Nombre de colors" #: plug-ins/FractalExplorer/Dialogs.c:895 -#, fuzzy msgid "Number of colors:" msgstr "Nombre de colors:" @@ -214,13 +212,12 @@ msgstr "Canvia el nombre de colors en el mapatge" #: plug-ins/FractalExplorer/Dialogs.c:905 -#, fuzzy msgid "Use loglog smoothing" -msgstr "Utilitza la suavització 'loglog'" +msgstr "Utilitza la suavització loglog" #: plug-ins/FractalExplorer/Dialogs.c:912 msgid "Use log log smoothing to eliminate \"banding\" in the result" -msgstr "Utilitza la suavització 'log log' per eliminar les bandes del resultat" +msgstr "Utilitza la suavització log log per eliminar les bandes del resultat" #. Color Density frame #: plug-ins/FractalExplorer/Dialogs.c:916 @@ -294,13 +291,13 @@ #: plug-ins/FractalExplorer/Dialogs.c:1020 #: plug-ins/FractalExplorer/Dialogs.c:1061 msgid "Use sine-function for this color component" -msgstr "Fes servir la funció sinus en l'element d'aquest color" +msgstr "Utilitza la funció sinus pel component d'aquest color" #: plug-ins/FractalExplorer/Dialogs.c:982 #: plug-ins/FractalExplorer/Dialogs.c:1023 #: plug-ins/FractalExplorer/Dialogs.c:1064 msgid "Use cosine-function for this color component" -msgstr "Fes servir la funció cosinus en l'element d'aquest color" +msgstr "Utilitza la funció cosinus pel component d'aquest color" #: plug-ins/FractalExplorer/Dialogs.c:985 #: plug-ins/FractalExplorer/Dialogs.c:1026 @@ -309,7 +306,7 @@ "Use linear mapping instead of any trigonometrical function for this color " "channel" msgstr "" -"Fes servir un mapatge lineal en comptes d'una funció trigonomètrica en el " +"Utilitza un mapatge lineal en comptes d'una funció trigonomètrica en el " "canal d'aquest color" #: plug-ins/FractalExplorer/Dialogs.c:994 @@ -346,36 +343,34 @@ msgstr "Mode de color" #: plug-ins/FractalExplorer/Dialogs.c:1098 -#, fuzzy msgid "As specified above" -msgstr "Com s'especificava abans" +msgstr "Com s'especifica a sobre" #: plug-ins/FractalExplorer/Dialogs.c:1110 msgid "" "Create a color-map with the options you specified above (color density/" "function). The result is visible in the preview image" msgstr "" -"Crea un mapa de color amb les opcions que heu especificat abans (densitat/" -"funciódel colr). El resultat es pot veure com a imatge de la visualització " -"prèvia" +"Crea un mapa de color amb les opcions que heu especificat a sobre (densitat/" +"funció del color). El resultat es pot veure a la imatge de la " +"previsualització." #: plug-ins/FractalExplorer/Dialogs.c:1120 -#, fuzzy msgid "Apply active gradient to final image" -msgstr "Aplica un gradient actiu a la imatge final" +msgstr "Aplica el degradat actual a la imatge final" #: plug-ins/FractalExplorer/Dialogs.c:1132 msgid "Create a color-map using a gradient from the gradient editor" -msgstr "Crea un mapa de color fent servir un gradient de l'editor de gradients" +msgstr "" +"Crea un mapa de colors fent servir un degradat de l'editor de degradats" #: plug-ins/FractalExplorer/Dialogs.c:1143 msgid "FractalExplorer Gradient" -msgstr "Gradient del FractalExplorer" +msgstr "Degradat de l'explorador de fractals" #: plug-ins/FractalExplorer/Dialogs.c:1173 -#, fuzzy msgid "_Fractals" -msgstr "Fractals" +msgstr "_Fractals" #: plug-ins/FractalExplorer/Dialogs.c:1796 #: plug-ins/Lighting/lighting_ui.c:1109 plug-ins/bmp/bmpwrite.c:198 @@ -398,22 +393,22 @@ #: plug-ins/gfli/gfli.c:715 plug-ins/ifscompose/ifscompose.c:2395 #: plug-ins/winicon/icosave.c:243 plug-ins/xjt/xjt.c:1263 #: plug-ins/xjt/xjt.c:1702 -#, fuzzy, c-format +#, c-format msgid "Could not open '%s' for writing: %s" -msgstr "No es pot obrir el fitxer per escriure-hi" +msgstr "No es pot obrir el fitxer '%s' per escriure-hi: %s" #: plug-ins/FractalExplorer/Dialogs.c:1810 -#, fuzzy, c-format +#, c-format msgid "Could not write '%s': %s" -msgstr "S'ha produït un error en escriure el fitxer\n" +msgstr "S'ha produït un error en escriure '%s': %s" #: plug-ins/FractalExplorer/Dialogs.c:1863 msgid "Load Fractal Parameters" -msgstr "Carrega els paràmetres fractals" +msgstr "Carrega els paràmetres del fractal" #: plug-ins/FractalExplorer/Dialogs.c:1894 msgid "Save Fractal Parameters" -msgstr "Desa els paràmetres dels fractals" +msgstr "Desa els paràmetres del fractal" #. Do not rely on librsvg setting GError on failure! #. stat error (file does not exist) @@ -438,38 +433,34 @@ #: plug-ins/gfig/gfig.c:431 plug-ins/gfli/gfli.c:424 plug-ins/gfli/gfli.c:460 #: plug-ins/help/domain.c:421 plug-ins/winicon/icoload.c:126 #: plug-ins/xjt/xjt.c:2526 plug-ins/xjt/xjt.c:2534 -#, fuzzy, c-format +#, c-format msgid "Could not open '%s' for reading: %s" -msgstr "No es pot obrir el fitxer per escriure-hi" +msgstr "No es pot obrir '%s' per llegir-hi: '%s'" #: plug-ins/FractalExplorer/Dialogs.c:2102 -#, fuzzy, c-format +#, c-format msgid "'%s' is not a FractalExplorer file" -msgstr "El fitxer '%s' no és un fitxer FractalExplorer" +msgstr "El '%s' no és un fitxer explorador de fractals" #: plug-ins/FractalExplorer/Dialogs.c:2108 -#, fuzzy, c-format +#, c-format msgid "'%s' is corrupt. Line %d Option section incorrect" -msgstr "" -"El fitxer '%s' és corrupte.\n" -"L'opció de la línia %d és una secció incorrecta" +msgstr "'%s' és corrupte. L'opció de la línia %d és una secció incorrecta" #: plug-ins/FractalExplorer/FractalExplorer.c:269 #, fuzzy msgid "_Fractal Explorer..." -msgstr "Afegeix el camí FractalExplorer" +msgstr "Afegeix el camí explorador de fractals" #: plug-ins/FractalExplorer/FractalExplorer.c:400 msgid "Rendering Fractal..." -msgstr "S'està generant una visualització realista del fractal..." +msgstr "S'està composant el fractal..." #: plug-ins/FractalExplorer/FractalExplorer.c:772 #: plug-ins/gflare/gflare.c:3128 -#, fuzzy, c-format +#, c-format msgid "Are you sure you want to delete \"%s\" from the list and from disk?" -msgstr "" -"Esteu segur que voleu suprimir\n" -"\"%s\" des de la llista i des del disc?" +msgstr "Esteu segur que voleu suprimir \"%s\" de la llista i del disc?" #: plug-ins/FractalExplorer/FractalExplorer.c:776 msgid "Delete Fractal" @@ -491,7 +482,7 @@ #: plug-ins/FractalExplorer/FractalExplorer.c:1181 #, c-format msgid "File '%s' is not a FractalExplorer file" -msgstr "El fitxer '%s' no és un fitxer FractalExplorer" +msgstr "El fitxer '%s' no és un fitxer explorador del fractal" #: plug-ins/FractalExplorer/FractalExplorer.c:1190 #, c-format @@ -499,7 +490,7 @@ "File '%s' is corrupt.\n" "Line %d Option section incorrect" msgstr "" -"El fitxer '%s' és corrupte.\n" +"El fitxer '%s' està corromput.\n" "L'opció de la línia %d és una secció incorrecta" #: plug-ins/FractalExplorer/FractalExplorer.c:1240 @@ -508,12 +499,11 @@ #: plug-ins/FractalExplorer/FractalExplorer.c:1256 msgid "Choose Fractal by double-clicking on it" -msgstr "Trieu el fractal fent-hi un doble clic a sobre" +msgstr "Trieu el fractal fent un doble clic a sobre" #: plug-ins/FractalExplorer/FractalExplorer.c:1293 -#, fuzzy msgid "Select folder and rescan collection" -msgstr "Selecciona un directori i torna a escanejar la col·lecció" +msgstr "Seleccioneu una carpeta i torneu a escanejar la col·lecció" #: plug-ins/FractalExplorer/FractalExplorer.c:1305 msgid "Delete currently selected fractal" @@ -525,52 +515,71 @@ #: plug-ins/FractalExplorer/FractalExplorer.c:1373 msgid "Add FractalExplorer Path" -msgstr "Afegeix el camí FractalExplorer" +msgstr "Afegeix el camí explorador de fractals" #: plug-ins/Lighting/lighting_apply.c:103 -#, fuzzy msgid "Lighting Effects..." -msgstr "Efectes de llum" +msgstr "Efectes de llum..." #: plug-ins/Lighting/lighting_main.c:197 #, fuzzy msgid "_Lighting Effects..." -msgstr "Efectes de llum" +msgstr "Efectes de llum..." +# General options #. General options #: plug-ins/Lighting/lighting_ui.c:261 msgid "General Options" msgstr "Opcions generals" +# toggle = gtk_check_button_new_with_label (_("Use Bump Mapping")); +# gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (toggle), +# mapvals.bump_mapped); +# gtk_box_pack_start (GTK_BOX (vbox), toggle, FALSE, FALSE, 0); +# g_signal_connect (toggle, "toggled", +# G_CALLBACK (togglebump_update), +# &mapvals.bump_mapped); +# gtk_widget_show (toggle); +# gimp_help_set_help_data (toggle, +# _("Enable/disable bump-mapping (image depth)"), +# NULL); +# toggle = gtk_check_button_new_with_label (_("Use Environment Mapping")); +# gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (toggle), +# mapvals.env_mapped); +# gtk_box_pack_start (GTK_BOX (vbox), toggle, FALSE, FALSE, 0); +# g_signal_connect (toggle, "toggled", +# G_CALLBACK (toggleenvironment_update), +# &mapvals.env_mapped); +# gtk_widget_show (toggle); +# gimp_help_set_help_data (toggle, +# _("Enable/disable environment mapping (reflection)"), +# NULL); #: plug-ins/Lighting/lighting_ui.c:269 #, fuzzy msgid "T_ransparent background" -msgstr "Fons transparent" +msgstr "Fons t_ransparent" #: plug-ins/Lighting/lighting_ui.c:279 -#, fuzzy msgid "Make destination image transparent where bump height is zero" -msgstr "" -"Fes que la imatge de destinació sigui transparent quan lamemòria annexa " -"sigui zero" +msgstr "Fes transparent la imatge de destinació on l'alçada bump és zero" #: plug-ins/Lighting/lighting_ui.c:282 #, fuzzy msgid "Cre_ate new image" -msgstr "Crea una imatge nova" +msgstr "Cre_a una imatge nova" #: plug-ins/Lighting/lighting_ui.c:292 plug-ins/MapObject/mapobject_ui.c:570 msgid "Create a new image when applying filter" -msgstr "Crea una imatge nova quant s'aplica el filtre" +msgstr "Crea una imatge nova quan s'aplica el filtre" #: plug-ins/Lighting/lighting_ui.c:294 #, fuzzy msgid "High _Quality preview" -msgstr "Visualització prèvia d'alta qualitat" +msgstr "Previsualització d'alta _qualitat" #: plug-ins/Lighting/lighting_ui.c:304 msgid "Enable/disable high quality preview" -msgstr "Habilita/inhabilita la visualització prèvia d'alta qualitat" +msgstr "Habilita/inhabilita la previsualització d'alta qualitat" #: plug-ins/Lighting/lighting_ui.c:331 plug-ins/MapObject/mapobject_ui.c:649 msgid "Light Settings" @@ -612,8 +621,9 @@ msgstr "Tipus:" #: plug-ins/Lighting/lighting_ui.c:363 +#, fuzzy msgid "Color:" -msgstr "Color:" +msgstr "Co_lor:" #: plug-ins/Lighting/lighting_ui.c:370 msgid "Directional" @@ -625,16 +635,16 @@ #: plug-ins/Lighting/lighting_ui.c:386 plug-ins/MapObject/mapobject_ui.c:677 msgid "Type of light source to apply" -msgstr "Font del tipus de llum a aplicar" +msgstr "Tipus de font de llum a aplicar" #: plug-ins/Lighting/lighting_ui.c:388 plug-ins/MapObject/mapobject_ui.c:679 #, fuzzy msgid "Select lightsource color" -msgstr "Seleccioneu el color de la font de llum" +msgstr "Selecciona el color de la font de llum" #: plug-ins/Lighting/lighting_ui.c:400 plug-ins/MapObject/mapobject_ui.c:692 msgid "Set light source color" -msgstr "Definiu la font de color de la llum" +msgstr "Defineix el color de la font de llum" #: plug-ins/Lighting/lighting_ui.c:408 #, fuzzy @@ -656,34 +666,31 @@ #: plug-ins/common/mblur.c:1001 plug-ins/common/nova.c:451 #: plug-ins/common/papertile.c:267 plug-ins/flame/flame.c:1207 #: plug-ins/gflare/gflare.c:2653 -#, fuzzy msgid "_X:" -msgstr "X:" +msgstr "_X:" #: plug-ins/Lighting/lighting_ui.c:432 plug-ins/MapObject/mapobject_ui.c:718 msgid "Light source X position in XYZ space" -msgstr "Posició de la font de llum X en l'espai XYZ" +msgstr "Posició X de la font de llum en l'espai XYZ" #: plug-ins/Lighting/lighting_ui.c:439 plug-ins/common/flarefx.c:761 #: plug-ins/common/mblur.c:1007 plug-ins/common/nova.c:456 #: plug-ins/common/papertile.c:276 plug-ins/flame/flame.c:1221 #: plug-ins/gflare/gflare.c:2657 -#, fuzzy msgid "_Y:" -msgstr "Y:" +msgstr "_Y:" #: plug-ins/Lighting/lighting_ui.c:445 plug-ins/MapObject/mapobject_ui.c:732 msgid "Light source Y position in XYZ space" -msgstr "Posició de la font de llum Y en l'espai XYZ" +msgstr "Posició Y de la font de llum en l'espai XYZ" #: plug-ins/Lighting/lighting_ui.c:452 -#, fuzzy msgid "_Z:" -msgstr "Z:" +msgstr "_Z:" #: plug-ins/Lighting/lighting_ui.c:458 plug-ins/MapObject/mapobject_ui.c:746 msgid "Light source Z position in XYZ space" -msgstr "Posició de la font de llum Z en l'espai XYZ" +msgstr "Posició Z de la font de llum en l'espai XYZ" #. ***************************************************** #. radio buttons for choosing LEFT or RIGHT @@ -693,6 +700,7 @@ msgid "Direction" msgstr "Direcció" +# X #. X #: plug-ins/Lighting/lighting_ui.c:469 plug-ins/MapObject/mapobject_ui.c:710 #: plug-ins/MapObject/mapobject_ui.c:764 @@ -703,8 +711,9 @@ #: plug-ins/Lighting/lighting_ui.c:475 plug-ins/MapObject/mapobject_ui.c:772 msgid "Light source X direction in XYZ space" -msgstr "Direcció de la font de llum X en l'espai XYZ" +msgstr "Direcció X de la font de llum en l'espai XYZ" +# Y #. Y #: plug-ins/Lighting/lighting_ui.c:481 plug-ins/MapObject/mapobject_ui.c:724 #: plug-ins/MapObject/mapobject_ui.c:777 @@ -716,7 +725,7 @@ #: plug-ins/Lighting/lighting_ui.c:487 plug-ins/MapObject/mapobject_ui.c:785 msgid "Light source Y direction in XYZ space" -msgstr "Direcció de la font de llum Y en l'espai XYZ" +msgstr "Direcció Y de la font de llum en l'espai XYZ" #: plug-ins/Lighting/lighting_ui.c:493 plug-ins/MapObject/mapobject_ui.c:738 #: plug-ins/MapObject/mapobject_ui.c:790 @@ -728,12 +737,12 @@ #: plug-ins/Lighting/lighting_ui.c:499 plug-ins/MapObject/mapobject_ui.c:798 msgid "Light source Z direction in XYZ space" -msgstr "Direcció de la font de llum Z en l'espai XYZ" +msgstr "Direcció Z de la font de llum en l'espai XYZ" #: plug-ins/Lighting/lighting_ui.c:502 #, fuzzy msgid "I_solate" -msgstr "Deflació" +msgstr "Insereix data" #: plug-ins/Lighting/lighting_ui.c:512 #, fuzzy @@ -741,8 +750,9 @@ msgstr "Efectes de llum" #: plug-ins/Lighting/lighting_ui.c:558 +#, fuzzy msgid "Material properties" -msgstr "" +msgstr "Propietats de la textura" #: plug-ins/Lighting/lighting_ui.c:576 #, fuzzy @@ -756,7 +766,7 @@ #: plug-ins/Lighting/lighting_ui.c:605 #, fuzzy msgid "_Bright:" -msgstr "Brillantor:" +msgstr "_Brillantor:" #: plug-ins/Lighting/lighting_ui.c:621 plug-ins/MapObject/mapobject_ui.c:888 msgid "Intensity of original color when lit by a light source" @@ -765,7 +775,7 @@ #: plug-ins/Lighting/lighting_ui.c:634 #, fuzzy msgid "_Shiny:" -msgstr "Sinus" +msgstr "_Sinus" #: plug-ins/Lighting/lighting_ui.c:650 plug-ins/MapObject/mapobject_ui.c:960 msgid "Controls how intense the highlights will be" @@ -787,17 +797,16 @@ #: plug-ins/Lighting/lighting_ui.c:723 #, fuzzy msgid "E_nable bump mapping" -msgstr "Habilita el mapatge de la memòria annexa" +msgstr "_Activa mapatge bump" #: plug-ins/Lighting/lighting_ui.c:737 msgid "Enable/disable bump-mapping (image depth)" -msgstr "" -"Habilita/inhabilita el mapatge de la memòria annexa (profunditat d'imatge)" +msgstr "Activa/desactiva mapatge bump (profunditat d'imatge)" #: plug-ins/Lighting/lighting_ui.c:755 #, fuzzy msgid "Bumpm_ap image:" -msgstr "Imatge del mapa de la memòria annexa:" +msgstr "Imatge bumpm_ap:" #. Map type menu #: plug-ins/Lighting/lighting_ui.c:758 plug-ins/common/bumpmap.c:896 @@ -820,23 +829,22 @@ msgstr "Esfèric" #: plug-ins/Lighting/lighting_ui.c:771 -#, fuzzy msgid "Cu_rve:" -msgstr "Corbat:" +msgstr "Cor_ba:" #: plug-ins/Lighting/lighting_ui.c:776 #, fuzzy msgid "Ma_ximum height:" -msgstr "Alçada màxima:" +msgstr "Alçada mà_xima:" #: plug-ins/Lighting/lighting_ui.c:786 msgid "Maximum height for bumps" -msgstr "Alçada màxima de les memòries annexes" +msgstr "Alçada màxima per bumps" #: plug-ins/Lighting/lighting_ui.c:811 #, fuzzy msgid "E_nable environment mapping" -msgstr "Habilita el mapatge de l'entorn" +msgstr "Habilita el mapatge de l'e_ntorn" #: plug-ins/Lighting/lighting_ui.c:825 msgid "Enable/disable environment-mapping (reflection)" @@ -845,36 +853,31 @@ #: plug-ins/Lighting/lighting_ui.c:847 #, fuzzy msgid "En_vironment image:" -msgstr "Imatge de l'entorn:" +msgstr "Imatge de l'e_ntorn:" #: plug-ins/Lighting/lighting_ui.c:849 msgid "Environment image to use" -msgstr "Imatge de l'entorn per utilitzar" +msgstr "Imatge de l'entorn a utilitzar" #: plug-ins/Lighting/lighting_ui.c:871 -#, fuzzy msgid "Op_tions" -msgstr "Opcions" +msgstr "Op_cions" #: plug-ins/Lighting/lighting_ui.c:875 plug-ins/MapObject/mapobject_ui.c:1326 -#, fuzzy msgid "_Light" -msgstr "Llum" +msgstr "_Llum" #: plug-ins/Lighting/lighting_ui.c:879 plug-ins/MapObject/mapobject_ui.c:1330 -#, fuzzy msgid "_Material" -msgstr "Material" +msgstr "_Material" #: plug-ins/Lighting/lighting_ui.c:883 -#, fuzzy msgid "_Bump Map" -msgstr "Mapa de la memòria annexa" +msgstr "_Bump Map" #: plug-ins/Lighting/lighting_ui.c:887 -#, fuzzy msgid "_Environment Map" -msgstr "Mapa de l'entorn" +msgstr "Mapa de l'e_ntorn" #: plug-ins/Lighting/lighting_ui.c:933 msgid "Lighting Effects" @@ -882,23 +885,20 @@ #: plug-ins/Lighting/lighting_ui.c:982 plug-ins/gimpressionist/preview.c:181 #: plug-ins/imagemap/imap_polygon.c:514 -#, fuzzy msgid "_Update" -msgstr "Actualitza" +msgstr "Act_ualitza" #: plug-ins/Lighting/lighting_ui.c:989 plug-ins/MapObject/mapobject_ui.c:1425 msgid "Recompute preview image" -msgstr "Tornar a calcular la imatge de la visualització prèvia" +msgstr "Tornar a calcular la previsualització" #: plug-ins/Lighting/lighting_ui.c:991 -#, fuzzy msgid "I_nteractive" -msgstr "Entrellaça" +msgstr "I_nteractiu" #: plug-ins/Lighting/lighting_ui.c:1005 -#, fuzzy msgid "Enable/disable real time preview of changes" -msgstr "Habilita/inhabilita la visualització prèvia d'alta qualitat" +msgstr "Habilita/inhabilita la previsualització dels canvis" #: plug-ins/Lighting/lighting_ui.c:1044 #, fuzzy @@ -916,14 +916,13 @@ msgstr "Laplace..." #: plug-ins/MapObject/mapobject_apply.c:276 -#, fuzzy msgid "Map to Sphere..." -msgstr "Més..." +msgstr "" #: plug-ins/MapObject/mapobject_apply.c:279 #, fuzzy msgid "Map to Box..." -msgstr "Informació del mapa..." +msgstr "RGB màxim..." #: plug-ins/MapObject/mapobject_apply.c:282 #, fuzzy @@ -933,31 +932,32 @@ #: plug-ins/MapObject/mapobject_main.c:199 #, fuzzy msgid "Map _Object..." -msgstr "Mapa de l'objecte" +msgstr "Mapeja a l'objecte" #: plug-ins/MapObject/mapobject_ui.c:248 #: plug-ins/MapObject/mapobject_ui.c:1340 msgid "_Box" -msgstr "_Quadre" +msgstr "Cai_xa" #: plug-ins/MapObject/mapobject_ui.c:266 #: plug-ins/MapObject/mapobject_ui.c:1346 -#, fuzzy msgid "C_ylinder" -msgstr "Cilindre" +msgstr "C_ilindre" +# General options #. General options #: plug-ins/MapObject/mapobject_ui.c:496 +#, fuzzy msgid "General options" msgstr "Opcions generals" #: plug-ins/MapObject/mapobject_ui.c:508 msgid "Map to:" -msgstr "Fes un mapa de:" +msgstr "Mapeja a:" #: plug-ins/MapObject/mapobject_ui.c:512 msgid "Plane" -msgstr "Plànol" +msgstr "Pla" #: plug-ins/MapObject/mapobject_ui.c:513 msgid "Sphere" @@ -965,7 +965,7 @@ #: plug-ins/MapObject/mapobject_ui.c:514 msgid "Box" -msgstr "Quadre" +msgstr "Caixa" #: plug-ins/MapObject/mapobject_ui.c:515 msgid "Cylinder" @@ -973,7 +973,7 @@ #: plug-ins/MapObject/mapobject_ui.c:530 msgid "Type of object to map to" -msgstr "Tipus d'objecte per fer un mapa a" +msgstr "Tipus d'objecte per mapejar-hi" #: plug-ins/MapObject/mapobject_ui.c:532 #, fuzzy @@ -982,7 +982,7 @@ #: plug-ins/MapObject/mapobject_ui.c:543 msgid "Make image transparent outside object" -msgstr "Fes que la imatge sigui transparent tret de l'objecte" +msgstr "Fes la imatge transparent a l'exterior de l'objecte" #: plug-ins/MapObject/mapobject_ui.c:545 #, fuzzy @@ -1001,32 +1001,31 @@ #: plug-ins/MapObject/mapobject_ui.c:578 #, fuzzy msgid "Enable _antialiasing" -msgstr "Habilita la contrarèplica" +msgstr "Habilita el su_avitzat" #: plug-ins/MapObject/mapobject_ui.c:585 msgid "Enable/disable jagged edges removal (antialiasing)" -msgstr "Habilita/inhabilita la supressió d'arestes irregulars(contrarèplica)" +msgstr "Habilita/inhabilita la supressió de vores irregulars (suavitzat)" #: plug-ins/MapObject/mapobject_ui.c:602 plug-ins/common/bumpmap.c:980 #: plug-ins/common/emboss.c:509 plug-ins/common/fractaltrace.c:791 #: plug-ins/common/struc.c:1318 -#, fuzzy msgid "_Depth:" -msgstr "Profunditat:" +msgstr "Profun_ditat:" #: plug-ins/MapObject/mapobject_ui.c:605 msgid "Antialiasing quality. Higher is better, but slower" -msgstr "Qualitat de la contrarèplica. Com més alta millor, però va més lenta" +msgstr "Qualitat del suavitzat. Com més alta millor, però és més lenta" -#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:720 +#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:691 #: plug-ins/common/wind.c:993 plug-ins/imagemap/imap_preferences.c:539 -#, fuzzy msgid "_Threshold:" -msgstr "Llindar:" +msgstr "Llinda_r:" #: plug-ins/MapObject/mapobject_ui.c:622 msgid "Stop when pixel differences are smaller than this value" -msgstr "Atura't quan les diferències de píxels són més altes que aquest valor" +msgstr "" +"Atura't quan les diferències de píxels són més petites que aquest valor" #: plug-ins/MapObject/mapobject_ui.c:658 #, fuzzy @@ -1076,8 +1075,7 @@ #: plug-ins/MapObject/mapobject_ui.c:931 msgid "Higher values makes the object reflect more light (appear lighter)" msgstr "" -"Uns valors més alts fan que l'objecte es reflecteixi de manera més clara " -"(sembla més clar)" +"Uns valors més alts fan que l'objecte reflecteixi més llum (sembla més clar)" #: plug-ins/MapObject/mapobject_ui.c:945 msgid "Specular:" @@ -1085,20 +1083,21 @@ #: plug-ins/MapObject/mapobject_ui.c:974 msgid "Highlight:" -msgstr "Ressaltament:" +msgstr "Ressaltat:" #: plug-ins/MapObject/mapobject_ui.c:1035 msgid "Object X position in XYZ space" -msgstr "Posició de l'objecte X en l'espai XYZ" +msgstr "Posició X de l'objecte en l'espai XYZ" #: plug-ins/MapObject/mapobject_ui.c:1048 msgid "Object Y position in XYZ space" -msgstr "Posició de l'objecte Y en l'espai XYZ" +msgstr "Posició Y de l'objecte en l'espai XYZ" #: plug-ins/MapObject/mapobject_ui.c:1061 msgid "Object Z position in XYZ space" -msgstr "Posició de l'objecte Z en l'espai XYZ" +msgstr "Posició Z de l'objecte en l'espai XYZ" +# Rotation #. Rotation #: plug-ins/MapObject/mapobject_ui.c:1070 plug-ins/common/postscript.c:3183 msgid "Rotation" @@ -1106,15 +1105,15 @@ #: plug-ins/MapObject/mapobject_ui.c:1084 msgid "Rotation angle about X axis" -msgstr "Rotació de l'angle sobre l'eix X" +msgstr "Angle de rotació sobre l'eix X" #: plug-ins/MapObject/mapobject_ui.c:1095 msgid "Rotation angle about Y axis" -msgstr "Rotació de l'angle sobre l'eix Y" +msgstr "Angle de rotació sobre l'eix Y" #: plug-ins/MapObject/mapobject_ui.c:1106 msgid "Rotation angle about Z axis" -msgstr "Rotació de l'angle sobre l'eix Z" +msgstr "Angle de rotació sobre l'eix Z" #: plug-ins/MapObject/mapobject_ui.c:1132 msgid "Front:" @@ -1122,7 +1121,7 @@ #: plug-ins/MapObject/mapobject_ui.c:1132 msgid "Back:" -msgstr "Endarrere:" +msgstr "Darrere:" #: plug-ins/MapObject/mapobject_ui.c:1133 #: plug-ins/print/gimp_main_window.c:523 @@ -1146,7 +1145,7 @@ #: plug-ins/MapObject/mapobject_ui.c:1140 msgid "Map Images to Box Faces" -msgstr "Imatges del mapa a les cares del quadre" +msgstr "Mapeja les imatges a les cares de la caixa" #: plug-ins/MapObject/mapobject_ui.c:1178 #: plug-ins/common/spheredesigner.c:2719 @@ -1166,14 +1165,12 @@ msgstr "Escala Z (mida)" #: plug-ins/MapObject/mapobject_ui.c:1228 -#, fuzzy msgid "_Top:" -msgstr "Part superior:" +msgstr "Par_t superior:" #: plug-ins/MapObject/mapobject_ui.c:1228 -#, fuzzy msgid "_Bottom:" -msgstr "Part inferior:" +msgstr "Part in_ferior:" #: plug-ins/MapObject/mapobject_ui.c:1233 msgid "Images for the Cap Faces" @@ -1185,67 +1182,61 @@ msgstr "Mida" #: plug-ins/MapObject/mapobject_ui.c:1273 -#, fuzzy msgid "R_adius:" -msgstr "Radi:" +msgstr "R_adi:" #: plug-ins/MapObject/mapobject_ui.c:1277 msgid "Cylinder radius" msgstr "Radi del cilindre" #: plug-ins/MapObject/mapobject_ui.c:1287 plug-ins/common/mblur.c:941 -#, fuzzy msgid "L_ength:" -msgstr "Longitud:" +msgstr "Long_itud:" #: plug-ins/MapObject/mapobject_ui.c:1291 msgid "Cylinder length" msgstr "Longitud del cilindre" #: plug-ins/MapObject/mapobject_ui.c:1322 -#, fuzzy msgid "O_ptions" -msgstr "Opcions" +msgstr "O_pcions" #: plug-ins/MapObject/mapobject_ui.c:1334 -#, fuzzy msgid "O_rientation" -msgstr "Orientació" +msgstr "O_rientació" #: plug-ins/MapObject/mapobject_ui.c:1370 msgid "Map to Object" -msgstr "Mapa de l'objecte" +msgstr "Mapeja a l'objecte" #: plug-ins/MapObject/mapobject_ui.c:1416 plug-ins/common/diffraction.c:474 -#, fuzzy msgid "_Preview!" -msgstr "Visualització prèvia!" +msgstr "_Previsualitza" #: plug-ins/MapObject/mapobject_ui.c:1439 msgid "Zoom out (make image smaller)" -msgstr "Allunya el zoom (fa la imatge més petita)" +msgstr "Redueix l'ampliació (imatge més petita)" #: plug-ins/MapObject/mapobject_ui.c:1453 msgid "Zoom in (make image bigger)" -msgstr "Acosta el zoom (fa la imatge més gran)" +msgstr "Augmenta l'ampliació (imatge més gran)" #: plug-ins/MapObject/mapobject_ui.c:1455 #, fuzzy msgid "Show preview _wireframe" -msgstr "Mostra la visualització prèvia del Wireframe" +msgstr "Mostra la línia del marc" #: plug-ins/MapObject/mapobject_ui.c:1464 msgid "Show/hide preview wireframe" -msgstr "Mostra/amaga la visualització prèvia del Wireframe" +msgstr "" #: plug-ins/bmp/bmp.c:120 plug-ins/bmp/bmp.c:139 msgid "Windows BMP image" msgstr "" #: plug-ins/bmp/bmpread.c:86 -#, fuzzy msgid "Bad colormap" -msgstr "%s: el color del mapa és erroni" +msgstr "Mapa de colors incorrecte" #. Set up progress display #. put up a progress bar @@ -1266,24 +1257,25 @@ #: plug-ins/common/xpm.c:342 plug-ins/common/xwd.c:475 #: plug-ins/faxg3/faxg3.c:203 plug-ins/gfli/gfli.c:465 plug-ins/sgi/sgi.c:323 #: plug-ins/winicon/icoload.c:505 plug-ins/xjt/xjt.c:3312 -#, fuzzy, c-format +#, c-format msgid "Opening '%s'..." -msgstr "S'està obrint %s" +msgstr "S'està obrint '%s'..." #: plug-ins/bmp/bmpread.c:170 plug-ins/bmp/bmpread.c:179 #: plug-ins/bmp/bmpread.c:185 plug-ins/bmp/bmpread.c:193 #: plug-ins/bmp/bmpread.c:207 plug-ins/bmp/bmpread.c:341 -#, fuzzy, c-format +#, c-format msgid "'%s' is not a valid BMP file" -msgstr "%s: %s no és un fitxer BMP vàlid" +msgstr "'%s' no és un fitxer BMP vàlid" #: plug-ins/bmp/bmpread.c:220 plug-ins/bmp/bmpread.c:239 #: plug-ins/bmp/bmpread.c:260 plug-ins/bmp/bmpread.c:279 #: plug-ins/bmp/bmpread.c:300 plug-ins/bmp/bmpread.c:306 #: plug-ins/bmp/bmpread.c:312 -#, fuzzy, c-format +#, c-format msgid "Error reading BMP file header from '%s'" -msgstr "%s: s'ha produït un error en llegir la capçalera del fitxer BMP" +msgstr "" +"S'ha produït un error en llegir la capçalera del fitxer BMP des de '%s'" #: plug-ins/bmp/bmpread.c:439 plug-ins/bmp/bmpread.c:474 msgid "Unrecognized or invalid BMP compression format." @@ -1313,16 +1305,14 @@ #: plug-ins/bmp/bmpwrite.c:136 plug-ins/common/dicom.c:617 #: plug-ins/common/pcx.c:579 -#, fuzzy msgid "Cannot save images with alpha channel." -msgstr "En desar amb PNM no es poden gestionar imatges amb canals alfa." +msgstr "No es poden desar imatges amb canal alfa." #: plug-ins/bmp/bmpwrite.c:182 plug-ins/common/dicom.c:632 #: plug-ins/common/postscript.c:1114 plug-ins/common/xwd.c:568 #: plug-ins/fits/fits.c:441 plug-ins/xjt/xjt.c:1677 -#, fuzzy msgid "Cannot operate on unknown image types." -msgstr "No es pot operar en tipus d'imatges desconegudes" +msgstr "No es pot operar en tipus d'imatges desconeguts." #. And let's begin the progress #. init the progress meter @@ -1339,63 +1329,62 @@ #: plug-ins/common/xpm.c:628 plug-ins/common/xwd.c:582 #: plug-ins/fits/fits.c:455 plug-ins/gfli/gfli.c:682 plug-ins/sgi/sgi.c:545 #: plug-ins/winicon/icosave.c:954 plug-ins/xjt/xjt.c:1682 -#, fuzzy, c-format +#, c-format msgid "Saving '%s'..." -msgstr "S'està carregant: %s" +msgstr "S'està desant '%s'..." #: plug-ins/bmp/bmpwrite.c:554 msgid "Save as BMP" msgstr "Desa com a BMP" #: plug-ins/bmp/bmpwrite.c:568 -#, fuzzy msgid "_RLE encoded" -msgstr "S'ha codificat RLE" +msgstr "Codificat en _RLE" #: plug-ins/common/AlienMap2.c:145 #, fuzzy msgid "_Modify red channel" -msgstr "Modifica el canal lluminositat/blava" +msgstr "_Modifica el canal to/vermell" #: plug-ins/common/AlienMap2.c:145 #, fuzzy msgid "_Modify hue channel" -msgstr "Modifica el canal lluminositat/blava" +msgstr "_Modifica el canal to/vermell" #: plug-ins/common/AlienMap2.c:146 #, fuzzy msgid "Mo_dify green channel" -msgstr "Modifica el canal saturació/verda" +msgstr "_Modifica el canal to/vermell" #: plug-ins/common/AlienMap2.c:146 #, fuzzy msgid "Mo_dify saturation channel" -msgstr "Modifica el canal saturació/verda" +msgstr "Mo_difica el canal saturació/verd" #: plug-ins/common/AlienMap2.c:147 #, fuzzy msgid "Mod_ify blue channel" -msgstr "Modifica el canal lluminositat/blava" +msgstr "_Modifica el canal to/vermell" #: plug-ins/common/AlienMap2.c:147 #, fuzzy msgid "Mod_ify luminosity channel" -msgstr "Modifica el canal lluminositat/blava" +msgstr "Mod_ifica el canal lluminositat/blau" #: plug-ins/common/AlienMap2.c:152 #, fuzzy msgid "Red _frequency:" -msgstr "Freqüència T-V:" +msgstr "_Freqüència R/H:" #: plug-ins/common/AlienMap2.c:152 #, fuzzy msgid "Hue _frequency:" -msgstr "Freqüència T-V:" +msgstr "_Freqüència R/H:" #: plug-ins/common/AlienMap2.c:153 #, fuzzy msgid "Green fr_equency:" -msgstr "Freqüència S/V:" +msgstr "Fr_eqüència G/S:" #: plug-ins/common/AlienMap2.c:153 #, fuzzy @@ -1405,55 +1394,55 @@ #: plug-ins/common/AlienMap2.c:154 #, fuzzy msgid "Blue freq_uency:" -msgstr "Freqüència Ll/B:" +msgstr "Freq_üència B/L:" #: plug-ins/common/AlienMap2.c:154 #, fuzzy msgid "Luminosity freq_uency:" -msgstr "Freqüència Ll/B:" +msgstr "Llindar de lluminosi_tat:" #: plug-ins/common/AlienMap2.c:156 #, fuzzy msgid "Red _phaseshift:" -msgstr "T\t/V fase de decalatge:" +msgstr "Fase de _decalatge R/H:" #: plug-ins/common/AlienMap2.c:156 #, fuzzy msgid "Hue _phaseshift:" -msgstr "T\t/V fase de decalatge:" +msgstr "Fase de _decalatge R/H:" #: plug-ins/common/AlienMap2.c:157 #, fuzzy msgid "Green ph_aseshift:" -msgstr "Canvi de fase S/V:" +msgstr "Canvi de f_ase G/S:" #: plug-ins/common/AlienMap2.c:157 #, fuzzy msgid "Saturation ph_aseshift:" -msgstr "Canvi de fase S/V:" +msgstr "Saturació:" #: plug-ins/common/AlienMap2.c:158 #, fuzzy msgid "Blue pha_seshift:" -msgstr "Canvi de fase Ll/B:" +msgstr "Canvi de fa_se B/L:" #: plug-ins/common/AlienMap2.c:158 #, fuzzy msgid "Luminosity pha_seshift:" -msgstr "Llindar de lluminositat:" +msgstr "Llindar de lluminosi_tat:" #: plug-ins/common/AlienMap2.c:193 #, fuzzy msgid "Alien Map _2..." -msgstr "AlienMap2" +msgstr "Mapa estrany 2" #: plug-ins/common/AlienMap2.c:325 msgid "AlienMap2: Transforming..." -msgstr "AlienMap2: s'està transformant..." +msgstr "Mapa estrany 2: s'està transformant..." #: plug-ins/common/AlienMap2.c:398 msgid "AlienMap2" -msgstr "AlienMap2" +msgstr "Mapa estrany 2" #: plug-ins/common/AlienMap2.c:438 plug-ins/common/AlienMap2.c:462 #: plug-ins/common/AlienMap2.c:486 @@ -1474,12 +1463,12 @@ #: plug-ins/common/AlienMap2.c:516 #, fuzzy msgid "_RGB color model" -msgstr "Model de color RGB" +msgstr "Model de color _RGB" #: plug-ins/common/AlienMap2.c:517 #, fuzzy msgid "_HSL color model" -msgstr "Mode de color" +msgstr "Model de color _HSL" #: plug-ins/common/CEL.c:112 plug-ins/common/CEL.c:130 msgid "KISS CEL" @@ -1490,14 +1479,13 @@ msgstr "Carrega la paleta Kiss" #: plug-ins/common/CEL.c:349 -#, fuzzy msgid "Can't create a new image" -msgstr "El CEL no pot crear una imatge nova" +msgstr "No es pot crear una imatge nova" #: plug-ins/common/CEL.c:438 -#, fuzzy, c-format +#, c-format msgid "Unsupported bit depth (%d)!" -msgstr "El nombre de colors (%d) no està implementat" +msgstr "No se suporta la profunditat de bits (%d)" #: plug-ins/common/CML_explorer.c:131 msgid "Keep image's values" @@ -1517,7 +1505,7 @@ #: plug-ins/common/CML_explorer.c:135 msgid "k{x(1-x)}^p stepped" -msgstr "k{x(1-x)}^p s'ha desplaçat" +msgstr "k{x(1-x)}^p desplaçat" #: plug-ins/common/CML_explorer.c:136 msgid "kx^p" @@ -1525,7 +1513,7 @@ #: plug-ins/common/CML_explorer.c:137 msgid "kx^p stepped" -msgstr "kx^p s'ha desplaçat" +msgstr "kx^p desplaçat" #: plug-ins/common/CML_explorer.c:138 msgid "k(1-x^p)" @@ -1533,7 +1521,7 @@ #: plug-ins/common/CML_explorer.c:139 msgid "k(1-x^p) stepped" -msgstr "k(1-x^p) s'ha desplaçat" +msgstr "k(1-x^p) desplaçat" #: plug-ins/common/CML_explorer.c:140 msgid "Delta function" @@ -1541,7 +1529,7 @@ #: plug-ins/common/CML_explorer.c:141 msgid "Delta function stepped" -msgstr "La funció delta s'ha desplaçat" +msgstr "Funció delta desplaçada" #: plug-ins/common/CML_explorer.c:142 msgid "sin^p-based function" @@ -1549,7 +1537,7 @@ #: plug-ins/common/CML_explorer.c:143 msgid "sin^p, stepped" -msgstr "El sinus de ^p s'ha desplaçat" +msgstr "Sinus de ^p desplaçat" #: plug-ins/common/CML_explorer.c:169 msgid "Max (x, -)" @@ -1614,11 +1602,11 @@ #: plug-ins/common/CML_explorer.c:203 msgid "Use average value" -msgstr "Fes servir el valor mitjà" +msgstr "Utilitza el valor mitjà" #: plug-ins/common/CML_explorer.c:204 msgid "Use reverse value" -msgstr "Fes servir el valor invers" +msgstr "Utilitza el valor invers" #: plug-ins/common/CML_explorer.c:205 msgid "With random power (0,10)" @@ -1666,11 +1654,11 @@ #: plug-ins/common/CML_explorer.c:229 msgid "Continuous gradient" -msgstr "Gradient continuat" +msgstr "Degradat continu" #: plug-ins/common/CML_explorer.c:230 msgid "Continuous grad. w/o gap" -msgstr "Gradient continuat amb/sense buits" +msgstr "Degradat continuat amb/sense buits" #: plug-ins/common/CML_explorer.c:231 msgid "Random, ch. independent" @@ -1682,17 +1670,17 @@ #: plug-ins/common/CML_explorer.c:233 msgid "Randoms from seed" -msgstr "Aleatoris des de" +msgstr "Aleatoris des de la llavor" #: plug-ins/common/CML_explorer.c:234 msgid "Randoms from seed (shared)" -msgstr "Aleatoris des de" +msgstr "Aleatoris des de la llavor (compartida)" #: plug-ins/common/CML_explorer.c:302 plug-ins/common/CML_explorer.c:310 #: plug-ins/common/decompose.c:143 plug-ins/gimpressionist/orientation.c:162 #: plug-ins/gimpressionist/size.c:165 msgid "Hue" -msgstr "Tinta" +msgstr "To" #: plug-ins/common/CML_explorer.c:303 plug-ins/common/CML_explorer.c:311 #: plug-ins/common/decompose.c:144 plug-ins/rcm/rcm_dialog.c:541 @@ -1725,38 +1713,34 @@ #: plug-ins/common/CML_explorer.c:1225 #, fuzzy msgid "New seed" -msgstr "Nou inici" +msgstr "Nova llavor" #: plug-ins/common/CML_explorer.c:1236 #, fuzzy msgid "Fix seed" -msgstr "Inici fix" +msgstr "Llavor fixa" #: plug-ins/common/CML_explorer.c:1247 #, fuzzy msgid "Random seed" -msgstr "Inici de la generació aleatòria" +msgstr "Llavor aleatòria" #: plug-ins/common/CML_explorer.c:1289 plug-ins/common/fp.c:663 #: plug-ins/common/lic.c:669 -#, fuzzy msgid "_Hue" -msgstr "Tinta" +msgstr "_To" #: plug-ins/common/CML_explorer.c:1293 -#, fuzzy msgid "Sat_uration" -msgstr "Saturació" +msgstr "_Saturació" #: plug-ins/common/CML_explorer.c:1297 plug-ins/common/fp.c:671 -#, fuzzy msgid "_Value" -msgstr "Valor:" +msgstr "_Valor:" #: plug-ins/common/CML_explorer.c:1301 -#, fuzzy msgid "_Advanced" -msgstr "Avançat" +msgstr "_Avançat" #: plug-ins/common/CML_explorer.c:1316 #, fuzzy @@ -1771,7 +1755,7 @@ #: plug-ins/common/CML_explorer.c:1344 #, fuzzy msgid "Zoom scale:" -msgstr "Escala del zoom:" +msgstr "Escala de l'ampliació:" #: plug-ins/common/CML_explorer.c:1353 #, fuzzy @@ -1781,16 +1765,16 @@ #: plug-ins/common/CML_explorer.c:1362 msgid "Seed of Random (only for \"From Seed\" Modes)" msgstr "" -"Inici de la generació aleatòria (només per als modes \"Des de l'inici\")" +"Llavor de la generació aleatòria (només per als modes \"Des de la llavor\")" #: plug-ins/common/CML_explorer.c:1373 plug-ins/maze/maze_face.c:277 msgid "Seed:" -msgstr "Inici:" +msgstr "Llavor:" #: plug-ins/common/CML_explorer.c:1386 #, fuzzy msgid "Switch to \"From seed\" with the last seed" -msgstr "Commuta a \"Des de l'inici\" amb l'últim inici" +msgstr "Commuta a \"Des de la llavor\" amb l'última llavor" #: plug-ins/common/CML_explorer.c:1398 msgid "" @@ -1799,16 +1783,15 @@ "(this is the reason why image on drawable is different from preview), and " "(2) all mutation rates equal to zero." msgstr "" -"El botó \"Fixeu l'inici\" és un àlies meu.\n" -"El mateix inici produeix la mateixa imatge, si (1) les amplades de les " +"El botó \"Fixeu llavor\" és un àlies meu.\n" +"La mateixa llavor produeix la mateixa imatge, si (1) les amplades de les " "imatges són les mateixes (aquesta és la raó per la qual la imatge dibuixada " "és diferent de la previsualitzada) i (2) tots els valors de mutació són " "igual a zero." #: plug-ins/common/CML_explorer.c:1406 -#, fuzzy msgid "O_thers" -msgstr "Altres" +msgstr "Al_tres" #: plug-ins/common/CML_explorer.c:1421 msgid "Copy Settings" @@ -1839,9 +1822,8 @@ msgstr "Canal font del fitxer:" #: plug-ins/common/CML_explorer.c:1509 -#, fuzzy msgid "_Misc Ops." -msgstr "Operacions diverses" +msgstr "_Opcions diverses" #: plug-ins/common/CML_explorer.c:1558 #, fuzzy @@ -1880,7 +1862,7 @@ #: plug-ins/common/CML_explorer.c:1629 #, fuzzy msgid "# of subranges:" -msgstr "# de sub-abastos:" +msgstr "nº de sub-abastos:" #: plug-ins/common/CML_explorer.c:1638 #, fuzzy @@ -1936,22 +1918,20 @@ #: plug-ins/common/CML_explorer.c:2056 plug-ins/common/channel_mixer.c:1052 #, fuzzy, c-format msgid "Parameters were saved to '%s'" -msgstr "" -"Els paràmetres s'han desat a\n" -"\"%s\"" +msgstr "Els paràmetres s'han desat a '%s'" #: plug-ins/common/CML_explorer.c:2077 msgid "CML Explorer: Overwrite File?" msgstr "" #: plug-ins/common/CML_explorer.c:2091 plug-ins/common/channel_mixer.c:1083 -#, fuzzy, c-format +#, c-format msgid "" "File '%s' exists.\n" "Overwrite it?" msgstr "" -"%s\n" -"ja existeix, el voleu sobreescriure?" +"El fitxer '%s' ja existeix.\n" +"El voleu sobreescriure?" #: plug-ins/common/CML_explorer.c:2140 msgid "Load Parameters from" @@ -1966,16 +1946,16 @@ msgstr "S'ha produït un error: aquest no és un fitxer CML." #: plug-ins/common/CML_explorer.c:2245 -#, fuzzy, c-format +#, c-format msgid "Warning: '%s' is an old format file." -msgstr "Avís: aquest és un fitxer en format antic." +msgstr "Avís: '%s' és un fitxer en format antic." #: plug-ins/common/CML_explorer.c:2248 -#, fuzzy, c-format +#, c-format msgid "Warning: '%s' is a parameter file for newer CML_explorer than me." msgstr "" -"Avís: aquest és un fitxer per a un CML_explorer més modern que el que esteu " -"fent servir." +"Avís: '%s' és un fitxer de paràmetres per a un explorador_CML més modern " +"que el que esteu fent servir." #: plug-ins/common/CML_explorer.c:2311 msgid "Error: failed to load parameters" @@ -1993,7 +1973,7 @@ #: plug-ins/common/aa.c:360 #, fuzzy msgid "_Format:" -msgstr "Format" +msgstr "_Tipus de lletra:" #: plug-ins/common/align_layers.c:135 #, fuzzy @@ -2002,7 +1982,7 @@ #: plug-ins/common/align_layers.c:173 msgid "There are not enough layers to align." -msgstr "" +msgstr "No hi ha suficients capes per alinear." #: plug-ins/common/align_layers.c:399 msgid "Align Visible Layers" @@ -2030,12 +2010,12 @@ #: plug-ins/common/align_layers.c:429 #, fuzzy msgid "_Horizontal style:" -msgstr "Estil horitzontal:" +msgstr "Estil _horitzontal:" #: plug-ins/common/align_layers.c:433 #, fuzzy msgid "Left edge" -msgstr "Marge esquerra" +msgstr "Vora esquerra" #: plug-ins/common/align_layers.c:434 plug-ins/common/align_layers.c:464 #: plug-ins/gflare/gflare.c:2641 @@ -2045,12 +2025,12 @@ #: plug-ins/common/align_layers.c:435 #, fuzzy msgid "Right edge" -msgstr "Marge dret" +msgstr "Vora dreta" #: plug-ins/common/align_layers.c:444 #, fuzzy msgid "Ho_rizontal base:" -msgstr "Base horitzontal:" +msgstr "Base ho_ritzontal:" #: plug-ins/common/align_layers.c:449 msgid "Fill (top to bottom)" @@ -2063,50 +2043,52 @@ #: plug-ins/common/align_layers.c:460 #, fuzzy msgid "_Vertical style:" -msgstr "Estil vertical:" +msgstr "Estil _vertical:" #: plug-ins/common/align_layers.c:463 #, fuzzy msgid "Top edge" -msgstr "Marge superior" +msgstr "Vora superior" #: plug-ins/common/align_layers.c:465 #, fuzzy msgid "Bottom edge" -msgstr "Marge inferior" +msgstr "Vora inferior" #: plug-ins/common/align_layers.c:474 #, fuzzy msgid "Ver_tical base:" -msgstr "Base vertical:" +msgstr "Base ver_tical:" #: plug-ins/common/align_layers.c:478 #, fuzzy msgid "_Grid size:" -msgstr "Mida de la graella:" +msgstr "Mida de la _graella:" #: plug-ins/common/align_layers.c:487 #, fuzzy msgid "_Ignore the bottom layer even if visible" -msgstr "Ignora la capa inferior fins i tot si és visible" +msgstr "_Ignora la capa inferior fins i tot si és visible" #: plug-ins/common/align_layers.c:497 #, fuzzy msgid "_Use the (invisible) bottom layer as the base" -msgstr "Fes servir la capa (invisible) inferior com a base" +msgstr "_Utilitza la capa (invisible) inferior com a base" #: plug-ins/common/animationplay.c:181 #, fuzzy msgid "_Playback..." -msgstr "Playback: " +msgstr "Reproducció:" #: plug-ins/common/animationplay.c:413 +#, fuzzy msgid "Animation Playback:" -msgstr "Animació Playback:" +msgstr "Reproducció de l'animació:" #: plug-ins/common/animationplay.c:431 +#, fuzzy msgid "Playback:" -msgstr "Playback:" +msgstr "Reproducció:" #: plug-ins/common/animationplay.c:457 msgid "Play/Stop" @@ -2130,8 +2112,9 @@ msgstr "" #: plug-ins/common/animoptimize.c:158 +#, fuzzy msgid "_Optimize (Difference)" -msgstr "" +msgstr "/Filtres/Animació/Optimitza (diferència)" #: plug-ins/common/animoptimize.c:175 #, fuzzy @@ -2141,7 +2124,7 @@ #: plug-ins/common/animoptimize.c:198 #, fuzzy msgid "_Remove Backdrop" -msgstr "Suprimeix" +msgstr "Su_primeix" #: plug-ins/common/animoptimize.c:214 msgid "_Find Backdrop" @@ -2179,37 +2162,37 @@ #: plug-ins/common/apply_lens.c:417 #, fuzzy msgid "_Keep original surroundings" -msgstr "Conserva els límits originals" +msgstr "_Conserva els límits originals" #: plug-ins/common/apply_lens.c:432 #, fuzzy msgid "_Set surroundings to index 0" -msgstr "Fes que els límits tinguin l'índex 0" +msgstr "_Defineix els límits a índex 0" #: plug-ins/common/apply_lens.c:433 #, fuzzy msgid "_Set surroundings to background color" -msgstr "Fes que els límits tinguin el color del fons" +msgstr "_Defineix els límits a color del fons" #: plug-ins/common/apply_lens.c:448 #, fuzzy msgid "_Make surroundings transparent" -msgstr "Fes transparent els límits" +msgstr "_Fes transparent els límits" #: plug-ins/common/apply_lens.c:465 #, fuzzy msgid "_Lens refraction index:" -msgstr "Índex de refracció de la lent:" +msgstr "Índex de refracció de la _lent:" #: plug-ins/common/autocrop.c:85 #, fuzzy msgid "_Autocrop Image" -msgstr "Imatge sencera" +msgstr "Imatg_e sencera" #: plug-ins/common/autocrop.c:99 #, fuzzy msgid "_Autocrop Layer" -msgstr "Capa del Rínxol" +msgstr "Capa del rínxol" #: plug-ins/common/autocrop.c:146 msgid "Cropping..." @@ -2218,7 +2201,7 @@ #: plug-ins/common/autostretch_hsv.c:80 #, fuzzy msgid "Stretch _HSV" -msgstr "Amplia" +msgstr "Estén" #: plug-ins/common/autostretch_hsv.c:116 msgid "Auto-Stretching HSV..." @@ -2247,39 +2230,36 @@ msgstr "Orientació" #: plug-ins/common/blinds.c:259 plug-ins/common/ripple.c:539 -#: plug-ins/common/tileit.c:419 plug-ins/pagecurl/pagecurl.c:530 -#, fuzzy +#: plug-ins/common/tileit.c:418 plug-ins/pagecurl/pagecurl.c:530 msgid "_Horizontal" -msgstr "Horitzontal" +msgstr "_Horitzontal" #: plug-ins/common/blinds.c:260 plug-ins/common/ripple.c:540 -#: plug-ins/common/tileit.c:429 plug-ins/pagecurl/pagecurl.c:529 -#, fuzzy +#: plug-ins/common/tileit.c:428 plug-ins/pagecurl/pagecurl.c:529 msgid "_Vertical" -msgstr "Vertical" +msgstr "_Vertical" #: plug-ins/common/blinds.c:277 plug-ins/common/fractaltrace.c:733 #: plug-ins/common/papertile.c:358 -#, fuzzy msgid "_Transparent" -msgstr "Transparent" +msgstr "_Transparent" #: plug-ins/common/blinds.c:303 -#, fuzzy msgid "_Displacement:" -msgstr "Desplaçament:" +msgstr "_Desplaçament:" #: plug-ins/common/blinds.c:315 #, fuzzy msgid "_Number of segments:" -msgstr "Nombre de segments:" +msgstr "_Nombre de segments:" #: plug-ins/common/blur.c:147 #, fuzzy msgid "_Blur" -msgstr "Ressenya:" +msgstr "Difumina" -#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:383 +# * JUST DO IT! +#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:432 msgid "Blurring..." msgstr "S'està difuminant..." @@ -2301,19 +2281,18 @@ msgstr "Mida de la vora" #: plug-ins/common/borderaverage.c:370 -#, fuzzy msgid "_Thickness:" -msgstr "Gruix:" +msgstr "_Gruix:" #: plug-ins/common/borderaverage.c:413 #, fuzzy msgid "_Bucket size:" -msgstr "Mida de la cistella:" +msgstr "Mida del cubell:" #: plug-ins/common/bumpmap.c:341 #, fuzzy msgid "_Bump Map..." -msgstr "Mapa de la memòria annexa" +msgstr "_Bump Map" #: plug-ins/common/bumpmap.c:490 msgid "Bump-mapping..." @@ -2326,7 +2305,7 @@ #: plug-ins/common/bumpmap.c:893 #, fuzzy msgid "_Bump map:" -msgstr "Mapa de la memòria annexa:" +msgstr "_Bump Map:" #: plug-ins/common/bumpmap.c:908 #, fuzzy @@ -2337,34 +2316,32 @@ #: plug-ins/common/bumpmap.c:913 #, fuzzy msgid "Co_mpensate for darkening" -msgstr "Compensa-ho per enfosquir-ho" +msgstr "Co_mpensa-ho per enfosquir-ho" #. Invert bumpmap #: plug-ins/common/bumpmap.c:927 #, fuzzy msgid "I_nvert bumpmap" -msgstr "Inverteix el mapa de la memòria annexa" +msgstr "I_nverteix el Bumpmap" #. Tile bumpmap #: plug-ins/common/bumpmap.c:941 #, fuzzy msgid "_Tile bumpmap" -msgstr "Fes un mosaic del mapa de la memòria annexa" +msgstr "_Fes un mosaic del bumpmap" #: plug-ins/common/bumpmap.c:956 plug-ins/common/emboss.c:485 -#, fuzzy msgid "_Azimuth:" -msgstr "Azimut:" +msgstr "_Azimut:" #: plug-ins/common/bumpmap.c:968 -#, fuzzy msgid "_Elevation:" -msgstr "Elevació:" +msgstr "_Elevació:" #: plug-ins/common/bumpmap.c:994 plug-ins/common/postscript.c:3137 #, fuzzy msgid "_X offset:" -msgstr "Desplaçament en X:" +msgstr "Desplaçament en _X:" #: plug-ins/common/bumpmap.c:997 plug-ins/common/bumpmap.c:1011 msgid "" @@ -2375,17 +2352,15 @@ #: plug-ins/common/bumpmap.c:1008 plug-ins/common/postscript.c:3146 #, fuzzy msgid "_Y offset:" -msgstr "Desplaçament en Y:" +msgstr "Desplaçament en _Y:" #: plug-ins/common/bumpmap.c:1022 -#, fuzzy msgid "_Waterlevel:" -msgstr "Nivell de l'aigua" +msgstr "_Nivell de l'aigua" #: plug-ins/common/bumpmap.c:1034 -#, fuzzy msgid "A_mbient:" -msgstr "Ambient:" +msgstr "A_mbient:" #: plug-ins/common/c_astretch.c:78 #, fuzzy @@ -2403,43 +2378,43 @@ #: plug-ins/common/cartoon.c:147 #, fuzzy msgid "Ca_rtoon..." -msgstr "Peu" +msgstr "S'està escapçant..." -#: plug-ins/common/cartoon.c:228 plug-ins/common/dog.c:246 -#: plug-ins/common/gauss.c:430 plug-ins/common/neon.c:222 -#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:203 +#: plug-ins/common/cartoon.c:229 plug-ins/common/dog.c:247 +#: plug-ins/common/gauss.c:431 plug-ins/common/neon.c:221 +#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:204 #: plug-ins/common/softglow.c:220 plug-ins/gflare/gflare.c:972 #: plug-ins/sgi/sgi.c:528 plug-ins/xjt/xjt.c:1673 -#, fuzzy msgid "Cannot operate on indexed color images." -msgstr "xjt: noes pot operar amb imatges de color indexat" +msgstr "No es pot operar amb imatges de color indexat." -#: plug-ins/common/cartoon.c:807 +#: plug-ins/common/cartoon.c:808 #, fuzzy msgid "Cartoon" -msgstr "Peu" +msgstr "C_aptura" -#: plug-ins/common/cartoon.c:837 plug-ins/common/photocopy.c:867 +#: plug-ins/common/cartoon.c:838 plug-ins/common/photocopy.c:867 #, fuzzy msgid "_Mask radius:" -msgstr "Radi de difuminació:" +msgstr "_Mida de la màscara:" -#: plug-ins/common/cartoon.c:851 +#: plug-ins/common/cartoon.c:852 #, fuzzy msgid "_Percent black:" msgstr "Percentatge" #: plug-ins/common/ccanalyze.c:110 +#, fuzzy msgid "Colorcube A_nalysis..." -msgstr "" +msgstr "Anàlisi del cub de color..." #: plug-ins/common/ccanalyze.c:200 msgid "Colorcube Analysis..." -msgstr "" +msgstr "Anàlisi del cub de color..." #: plug-ins/common/ccanalyze.c:358 msgid "Colorcube Analysis" -msgstr "" +msgstr "Anàlisi del cub de color" #. output results #: plug-ins/common/ccanalyze.c:384 plug-ins/imagemap/imap_cmd_guides.c:233 @@ -2448,127 +2423,116 @@ msgstr "Dimensions de la imatge: %d x %d" #: plug-ins/common/ccanalyze.c:387 -#, fuzzy msgid "No colors" -msgstr "Al color" +msgstr "Sense colors" #: plug-ins/common/ccanalyze.c:389 msgid "Only one unique color" -msgstr "" +msgstr "Només un únic color" #: plug-ins/common/ccanalyze.c:391 -#, fuzzy, c-format +#, c-format msgid "Number of unique colors: %d" -msgstr "Nombre de colors:" +msgstr "Nombre de colors únics: %d" #: plug-ins/common/ccanalyze.c:394 #, c-format msgid "Uncompressed size: %s" -msgstr "" +msgstr "Mida descomprimida: %s" #: plug-ins/common/ccanalyze.c:401 -#, fuzzy, c-format +#, c-format msgid "Filename: %s" -msgstr "Nom de fitxer:" +msgstr "Nom de fitxer: %s" #: plug-ins/common/ccanalyze.c:402 -#, fuzzy, c-format +#, c-format msgid "Compressed size: %s" -msgstr "Comprimeix els marcadors TD" +msgstr "Mida comprimida: %s" #: plug-ins/common/ccanalyze.c:403 #, c-format msgid "Compression ratio (approx.): %d to 1" -msgstr "" +msgstr "Relació de compressió (aprox.): %d a 1" #: plug-ins/common/channel_mixer.c:197 #, fuzzy msgid "Channel Mi_xer..." -msgstr "Canals" +msgstr "Mesclador de canal" #: plug-ins/common/channel_mixer.c:485 -#, fuzzy msgid "Channel Mixer" -msgstr "Canals" +msgstr "Mesclador de canal" #: plug-ins/common/channel_mixer.c:514 #, fuzzy msgid "O_utput channel:" -msgstr "Fora del nivell:" +msgstr "Canal de s_ortida:" #: plug-ins/common/channel_mixer.c:568 plug-ins/common/diffraction.c:498 #: plug-ins/common/diffraction.c:536 plug-ins/common/diffraction.c:574 #: plug-ins/common/exchange.c:397 plug-ins/common/noisify.c:526 #: plug-ins/common/noisify.c:533 -#, fuzzy msgid "_Red:" -msgstr "Vermell:" +msgstr "_Vermell:" #: plug-ins/common/channel_mixer.c:586 plug-ins/common/diffraction.c:507 #: plug-ins/common/diffraction.c:545 plug-ins/common/diffraction.c:583 #: plug-ins/common/exchange.c:457 plug-ins/common/noisify.c:527 #: plug-ins/common/noisify.c:534 -#, fuzzy msgid "_Green:" -msgstr "Verd:" +msgstr "_Verd:" #: plug-ins/common/channel_mixer.c:605 plug-ins/common/diffraction.c:516 #: plug-ins/common/diffraction.c:554 plug-ins/common/diffraction.c:592 #: plug-ins/common/exchange.c:519 plug-ins/common/noisify.c:528 #: plug-ins/common/noisify.c:535 -#, fuzzy msgid "_Blue:" -msgstr "Blau:" +msgstr "_Blau:" #. The monochrome toggle #: plug-ins/common/channel_mixer.c:616 -#, fuzzy msgid "_Monochrome" -msgstr "Monocrom" +msgstr "_Monocrom" #: plug-ins/common/channel_mixer.c:628 #, fuzzy msgid "Preserve _luminosity" -msgstr "Preserva la lluminositat" +msgstr "Conserva la _lluminositat" #: plug-ins/common/channel_mixer.c:857 -#, fuzzy msgid "Load Channel Mixer Settings" -msgstr "Representacions dels canals" +msgstr "Carrega els paràmetres del mesclador de canal" #: plug-ins/common/channel_mixer.c:989 -#, fuzzy msgid "Save Channel Mixer Settings" -msgstr "Paràmetres de la paleta i del tramat" +msgstr "Desa els paràmetres del mesclador de canal" #: plug-ins/common/channel_mixer.c:1068 -#, fuzzy msgid "Channel Mixer File Operation Warning" -msgstr "Avís de l'operació amb el fitxer CML" +msgstr "Avís de l'operació amb el fitxer mesclador de canal" #: plug-ins/common/checkerboard.c:93 #, fuzzy msgid "_Checkerboard..." -msgstr "Targeta de comprovació" +msgstr "Tauler d'escacs" #: plug-ins/common/checkerboard.c:161 msgid "Adding Checkerboard..." -msgstr "S'està afegint una targeta de comprovació..." +msgstr "S'està afegint un tauler d'escacs..." #: plug-ins/common/checkerboard.c:310 msgid "Checkerboard" -msgstr "Targeta de comprovació" +msgstr "Tauler d'escacs" #: plug-ins/common/checkerboard.c:332 -#, fuzzy msgid "_Psychobilly" -msgstr "Psichobilly" +msgstr "Amb _perspectiva" #: plug-ins/common/checkerboard.c:365 plug-ins/common/papertile.c:287 #: plug-ins/gimpressionist/sizemap.c:487 -#, fuzzy msgid "_Size:" -msgstr "Mida:" +msgstr "_Mida:" #: plug-ins/common/color_enhance.c:80 #, fuzzy @@ -2600,29 +2564,29 @@ msgid "Colorify Custom Color" msgstr "Acoloreix amb el color per defecte" -#: plug-ins/common/colortoalpha.c:105 +#: plug-ins/common/colortoalpha.c:104 #, fuzzy msgid "Color to _Alpha..." msgstr "Acoloreix a l'Alfa" -#: plug-ins/common/colortoalpha.c:183 +#: plug-ins/common/colortoalpha.c:181 msgid "Removing color..." msgstr "S'està suprimint el color..." -#: plug-ins/common/colortoalpha.c:364 +#: plug-ins/common/colortoalpha.c:377 msgid "Color to Alpha" msgstr "Acoloreix a l'Alfa" -#: plug-ins/common/colortoalpha.c:389 plug-ins/common/mapcolor.c:424 +#: plug-ins/common/colortoalpha.c:402 plug-ins/common/mapcolor.c:424 #: plug-ins/gfli/gfli.c:835 plug-ins/gfli/gfli.c:898 msgid "From:" msgstr "Des de:" -#: plug-ins/common/colortoalpha.c:393 +#: plug-ins/common/colortoalpha.c:406 msgid "Color to Alpha Color Picker" msgstr "Coloreix al seleccionador de color alfa" -#: plug-ins/common/colortoalpha.c:407 +#: plug-ins/common/colortoalpha.c:420 #, fuzzy msgid "to alpha" msgstr "a l'alfa" @@ -2645,10 +2609,11 @@ msgid "HSV" msgstr "HSV" +# Gray: Circle: Spinbutton 1 #. Gray: Circle: Spinbutton 1 #: plug-ins/common/compose.c:148 plug-ins/rcm/rcm_dialog.c:452 msgid "Hue:" -msgstr "Tinta:" +msgstr "To:" #. Gray: Circle: Spinbutton 2 #: plug-ins/common/compose.c:149 plug-ins/print/gimp_color_window.c:364 @@ -2689,55 +2654,55 @@ #: plug-ins/common/compose.c:168 plug-ins/common/decompose.c:161 msgid "LAB" -msgstr "" +msgstr "LAB" #: plug-ins/common/compose.c:176 msgid "Luma_y470:" -msgstr "" +msgstr "Luma_y470:" #: plug-ins/common/compose.c:177 msgid "Blueness_cb470:" -msgstr "" +msgstr "Blavor_cb470:" #: plug-ins/common/compose.c:178 msgid "Redness_cr470:" -msgstr "" +msgstr "Vermellor_cr470:" #: plug-ins/common/compose.c:183 msgid "Luma_y709:" -msgstr "" +msgstr "Luma_y709:" #: plug-ins/common/compose.c:184 msgid "Blueness_cb709:" -msgstr "" +msgstr "Blavor_cb709:" #: plug-ins/common/compose.c:185 msgid "Redness_cr709:" -msgstr "" +msgstr "Vermellor_cr709:" #: plug-ins/common/compose.c:190 msgid "Luma_y470f:" -msgstr "" +msgstr "Luma_y470f:" #: plug-ins/common/compose.c:191 msgid "Blueness_cb470f:" -msgstr "" +msgstr "Blavor_cb470f:" #: plug-ins/common/compose.c:192 msgid "Redness_cr470f:" -msgstr "" +msgstr "Vermellor_cr470f:" #: plug-ins/common/compose.c:197 msgid "Luma_y709f:" -msgstr "" +msgstr "Luma_y709f:" #: plug-ins/common/compose.c:198 msgid "Blueness_cb709f:" -msgstr "" +msgstr "Blavor_cb709f:" #: plug-ins/common/compose.c:199 msgid "Redness_cr709f:" -msgstr "" +msgstr "Vermellor_cr709f:" #: plug-ins/common/compose.c:294 #, fuzzy @@ -2745,33 +2710,30 @@ msgstr "S'està composant..." #: plug-ins/common/compose.c:360 -#, fuzzy, c-format +#, c-format msgid "Could not get layers for image %d" -msgstr "composa: no s'han pogut obtenir capes per a la imatge %d" +msgstr "No s'han pogut obtenir capes per a la imatge %d" #: plug-ins/common/compose.c:411 msgid "Composing..." msgstr "S'està composant..." #: plug-ins/common/compose.c:480 -#, fuzzy msgid "Drawables have different size" -msgstr "Composa: els elements dibuixables tenen una mida diferent" +msgstr "Els elements dibuixables tenen una mida diferent" #: plug-ins/common/compose.c:497 -#, fuzzy msgid "Images have different size" -msgstr "Composa: les imatges tenen una mida diferent" +msgstr "Les imatges tenen una mida diferent" #: plug-ins/common/compose.c:511 -#, fuzzy msgid "Error in getting layer IDs" -msgstr "Composa: s'ha produït un error en obtenir una capa ID" +msgstr "S'ha produït un error en obtenir ID de capa" #: plug-ins/common/compose.c:528 -#, fuzzy, c-format +#, c-format msgid "Image is not a gray image (bpp=%d)" -msgstr "Composa: la imatge no és una imatge grisa (bpp=%d)" +msgstr "La imatge no és una imatge grisa (bpp=%d)" #: plug-ins/common/compose.c:1103 msgid "Compose" @@ -2788,7 +2750,7 @@ #. Otherwise it can occur, that a non-existing label might be changed. #: plug-ins/common/compose.c:1130 msgid "Channel Representations" -msgstr "Representacions dels canals" +msgstr "Representacions del canal" #: plug-ins/common/compressor.c:153 msgid "gzip archive" @@ -2799,57 +2761,48 @@ msgstr "" #: plug-ins/common/compressor.c:367 -#, fuzzy msgid "No sensible extension, saving as compressed XCF." -msgstr "gz: no hi ha cap extensió sensible; s'està desant com a gzip'd xcf\n" +msgstr "" +"No trova una extensió de fitxer reconeguda; es desarà com a XCF comprimit." #: plug-ins/common/compressor.c:508 -#, fuzzy msgid "No sensible extension, attempting to load with file magic." msgstr "" -"gz: no hi ha cap extensió sensible; s'està intentant carregar amb el fitxer " -"màgic\n" +"No trova una extensió de fitxer reconeguda; s'intentarà esbrinar el tipus de " +"fitxer." #: plug-ins/common/convmatrix.c:87 -#, fuzzy msgid "Gr_ey" -msgstr "Gris" +msgstr "_Gris" #: plug-ins/common/convmatrix.c:88 -#, fuzzy msgid "Re_d" -msgstr "Vermell" +msgstr "_Vermell" #: plug-ins/common/convmatrix.c:89 plug-ins/common/newsprint.c:363 -#, fuzzy msgid "_Green" -msgstr "Verd" +msgstr "V_erd" #: plug-ins/common/convmatrix.c:90 plug-ins/common/newsprint.c:371 -#, fuzzy msgid "_Blue" -msgstr "Blau" +msgstr "_Blau" #: plug-ins/common/convmatrix.c:91 -#, fuzzy msgid "_Alpha" -msgstr "Alfa" +msgstr "_Alfa" #: plug-ins/common/convmatrix.c:96 -#, fuzzy msgid "E_xtend" -msgstr "Estén" +msgstr "E_stén" #: plug-ins/common/convmatrix.c:97 plug-ins/common/displace.c:394 #: plug-ins/common/edge.c:716 plug-ins/common/ripple.c:560 -#, fuzzy msgid "_Wrap" -msgstr "Ajusta" +msgstr "_Ajusta" #: plug-ins/common/convmatrix.c:98 -#, fuzzy msgid "Cro_p" -msgstr "Escapça" +msgstr "Esca_pça" #: plug-ins/common/convmatrix.c:195 #, fuzzy @@ -2857,11 +2810,9 @@ msgstr "Matriu de circumvolució" #: plug-ins/common/convmatrix.c:229 -#, fuzzy msgid "Convolution Matrix does not work on layers smaller than 3 pixels." msgstr "" -"La matriu de circumvolució no funciona\n" -"en capes més petites de 3 píxels." +"La matriu de circumvolució no funciona en capes més petites de 3 píxels." #: plug-ins/common/convmatrix.c:302 msgid "Applying convolution" @@ -2876,25 +2827,21 @@ msgstr "Matriu" #: plug-ins/common/convmatrix.c:936 -#, fuzzy msgid "D_ivisor:" -msgstr "Divisor:" +msgstr "D_ivisor:" #: plug-ins/common/convmatrix.c:957 plug-ins/common/depthmerge.c:748 #: plug-ins/common/raw.c:972 -#, fuzzy msgid "O_ffset:" -msgstr "Desplaçament:" +msgstr "_Desplaçament:" #: plug-ins/common/convmatrix.c:983 -#, fuzzy msgid "A_utomatic" -msgstr "Automàtic" +msgstr "A_utomàtic" #: plug-ins/common/convmatrix.c:992 -#, fuzzy msgid "A_lpha-weighting" -msgstr "Ponderació Alfa" +msgstr "Ponderació a_lfa" #: plug-ins/common/convmatrix.c:1008 msgid "Border" @@ -2916,78 +2863,76 @@ #: plug-ins/common/csource.c:659 #, fuzzy msgid "_Prefixed name:" -msgstr "Nom prefixat:" +msgstr "Nom _prefixat:" #: plug-ins/common/csource.c:668 -#, fuzzy msgid "Co_mment:" -msgstr "Comentari:" +msgstr "Co_mentari:" #. Use Comment #. #: plug-ins/common/csource.c:675 #, fuzzy msgid "_Save comment to file" -msgstr "Desa el comentari al fitxer" +msgstr "De_sa el comentari al fitxer" #. GLib types #. #: plug-ins/common/csource.c:687 #, fuzzy msgid "_Use GLib types (guint8*)" -msgstr "Fes servir el tipus GLib (guint8*)" +msgstr "_Utilitza els tipus GLib (guint8*)" #. Use Macros #. #: plug-ins/common/csource.c:699 #, fuzzy msgid "Us_e macros instead of struct" -msgstr "Fes servir macros en lloc d'estructures" +msgstr "Utilitza macros en lloc d'_estructures" #. Use RLE #. #: plug-ins/common/csource.c:711 #, fuzzy msgid "Use _1 byte Run-Length-Encoding" -msgstr "Fes servir la longitud de codificació de l'execució d'1 octet" +msgstr "Utilitza la longitud de codificació de l'execució d'_1 byte" #. Alpha #. #: plug-ins/common/csource.c:723 #, fuzzy msgid "Sa_ve alpha channel (RGBA/RGB)" -msgstr "Desa el canal Alfa (RGBA/RGB)" +msgstr "Desa el canal _alfa (RGBA/RGB)" #: plug-ins/common/csource.c:741 plug-ins/common/sparkle.c:427 -#, fuzzy msgid "Op_acity:" -msgstr "Opacitat:" +msgstr "Op_acitat:" #: plug-ins/common/cubism.c:156 #, fuzzy msgid "_Cubism..." msgstr "Cubisme" -#: plug-ins/common/cubism.c:267 +#: plug-ins/common/cubism.c:269 msgid "Cubism" msgstr "Cubisme" -#: plug-ins/common/cubism.c:296 +#: plug-ins/common/cubism.c:298 #, fuzzy msgid "_Tile size:" -msgstr "Mida del mosaic:" +msgstr "Mida del _mosaic:" -#: plug-ins/common/cubism.c:309 +#: plug-ins/common/cubism.c:311 #, fuzzy msgid "T_ile saturation:" -msgstr "Saturació del mosaic:" +msgstr "Saturació del mosa_ic:" -#: plug-ins/common/cubism.c:320 +#: plug-ins/common/cubism.c:322 #, fuzzy msgid "_Use background color" -msgstr "Fes servir el color del fons" +msgstr "_Utilitza el color de fons" -#: plug-ins/common/cubism.c:410 +#: plug-ins/common/cubism.c:412 #, fuzzy msgid "Cubistic Transformation..." msgstr "Transformació cubísta" @@ -2995,46 +2940,63 @@ #: plug-ins/common/curve_bend.c:572 #, fuzzy msgid "_Curve Bend..." -msgstr "Aplica la corba..." +msgstr "Corba Bend..." #: plug-ins/common/curve_bend.c:708 -#, fuzzy msgid "Can operate on layers only (but was called on channel or mask)." -msgstr "El CurveBend opera només en les capes (però se'n deia canal o màscara)" +msgstr "Només es pot operar en les capes (però es feia en canal o màscara)." #: plug-ins/common/curve_bend.c:726 #, fuzzy msgid "Cannot operate on layers with masks." -msgstr "xjt: noes pot operar amb imatges de color indexat" +msgstr "No es pot operar amb imatges de color indexat." #: plug-ins/common/curve_bend.c:741 -#, fuzzy msgid "Cannot operate on empty selections." -msgstr "No es pot operar en tipus d'imatges desconegudes" +msgstr "No es pot operar en seleccions buides." +# Possibly retrieve data from a previous run +# The shell and main vbox #. Possibly retrieve data from a previous run #. The shell and main vbox #: plug-ins/common/curve_bend.c:1244 msgid "Curve Bend" -msgstr "Curve Bend" +msgstr "Corba Bend" +# Preview +# Create the Preview +# ================== +# Create the Preview +# Preview area, top of column +# * Preview window... +# Preview +# hbox created and packed into the dialog +# make a nice frame +# Preview +# * Preview window... +# Preview +# * Preview +# Previews: frame +# * Misc: Preview settings * +# Misc: Preview settings: Continuous update ?! #. Preview area, top of column #: plug-ins/common/curve_bend.c:1273 plug-ins/gimpressionist/orientmap.c:567 #: plug-ins/gimpressionist/sizemap.c:437 msgid "Preview" -msgstr "Visualització prèvia" +msgstr "Previsualització" +# The preview button #. The preview button #: plug-ins/common/curve_bend.c:1307 #, fuzzy msgid "_Preview once" -msgstr "Previsualitza-ho una vegada" +msgstr "_Previsualitza-ho una vegada" #. The preview toggle #: plug-ins/common/curve_bend.c:1316 #, fuzzy msgid "Automatic pre_view" -msgstr "Previsualització de l'actualització automàtica" +msgstr "Pre_visualització automàtica" #. Options area, bottom of column #. the vertical box and its toggle buttons @@ -3046,108 +3008,93 @@ #. Rotate spinbutton #: plug-ins/common/curve_bend.c:1340 -#, fuzzy msgid "Rotat_e:" -msgstr "Rota:" +msgstr "_Gira:" #. The smoothing toggle #: plug-ins/common/curve_bend.c:1358 -#, fuzzy msgid "Smoo_thing" -msgstr "Suavitza" +msgstr "S_uavitza" #. The antialiasing toggle #: plug-ins/common/curve_bend.c:1368 plug-ins/common/gqbist.c:823 #: plug-ins/common/mosaic.c:535 plug-ins/common/ripple.c:510 -#, fuzzy msgid "_Antialiasing" -msgstr "Contrarèplica" +msgstr "_Suavitzat" #. The work_on_copy toggle #: plug-ins/common/curve_bend.c:1378 #, fuzzy msgid "Work on cop_y" -msgstr "Treballa amb la còpia" +msgstr "Treballa amb la còp_ia" #. The curves graph #: plug-ins/common/curve_bend.c:1388 -#, fuzzy msgid "Modify Curves" -msgstr "Carrega la corba" +msgstr "Modifica les corbes" #: plug-ins/common/curve_bend.c:1416 -#, fuzzy msgid "Curve for Border" -msgstr "Corba de la vora: " +msgstr "Corba per a la vora" #: plug-ins/common/curve_bend.c:1420 -#, fuzzy msgid "_Upper" -msgstr "Superior" +msgstr "S_uperior" #: plug-ins/common/curve_bend.c:1421 -#, fuzzy msgid "_Lower" -msgstr "Inferior" +msgstr "_Inferior" #: plug-ins/common/curve_bend.c:1431 -#, fuzzy msgid "Curve Type" -msgstr "Tipus de corba: " +msgstr "Tipus de corba" #: plug-ins/common/curve_bend.c:1435 -#, fuzzy msgid "Smoot_h" -msgstr "Suau" +msgstr "S_uau" #: plug-ins/common/curve_bend.c:1436 -#, fuzzy msgid "_Free" -msgstr "Lliure" +msgstr "_Lliure" #. The Copy button #: plug-ins/common/curve_bend.c:1451 -#, fuzzy msgid "_Copy" -msgstr "Copia" +msgstr "_Copia" #: plug-ins/common/curve_bend.c:1456 msgid "Copy the active curve to the other border" -msgstr "" +msgstr "Copia la corba activa a l'altra vora" #. The CopyInv button #: plug-ins/common/curve_bend.c:1463 -#, fuzzy msgid "_Mirror" -msgstr "Error" +msgstr "Re_flexa" #: plug-ins/common/curve_bend.c:1468 msgid "Mirror the active curve to the other border" -msgstr "" +msgstr "Reflexa la corba activa a l'altra vora" #. The Swap button #: plug-ins/common/curve_bend.c:1476 -#, fuzzy msgid "S_wap" -msgstr "Intercanvi" +msgstr "Interca_nvia" #: plug-ins/common/curve_bend.c:1481 msgid "Swap the two curves" -msgstr "" +msgstr "Intercanvia les dos corbes" #: plug-ins/common/curve_bend.c:1493 msgid "Reset the active curve" -msgstr "" +msgstr "Reseta la corba activa" #: plug-ins/common/curve_bend.c:1510 -#, fuzzy msgid "Load the curves from a file" -msgstr "Carrega els punts de la corba del fitxer" +msgstr "Carrega les corbes del fitxer" #: plug-ins/common/curve_bend.c:1522 -#, fuzzy msgid "Save the curves to a file" -msgstr "Desa els punts de la corba al fitxer" +msgstr "Desa les corbes al fitxer" #: plug-ins/common/curve_bend.c:2057 msgid "Load Curve Points from file" @@ -3159,7 +3106,7 @@ #: plug-ins/common/curve_bend.c:2969 msgid "Curve Bend..." -msgstr "Aplica la corba..." +msgstr "Corba Bend..." #: plug-ins/common/decompose.c:130 plug-ins/common/decompose.c:133 #: plug-ins/common/decompose.c:135 @@ -3182,7 +3129,7 @@ #: plug-ins/common/decompose.c:140 plug-ins/common/decompose.c:143 msgid "hue" -msgstr "tinta" +msgstr "to" #: plug-ins/common/decompose.c:141 plug-ins/common/decompose.c:144 msgid "saturation" @@ -3250,51 +3197,51 @@ #: plug-ins/common/decompose.c:166 msgid "luma_y470" -msgstr "" +msgstr "luma_y470" #: plug-ins/common/decompose.c:167 msgid "blueness_cb470" -msgstr "" +msgstr "blavor_cb470" #: plug-ins/common/decompose.c:168 msgid "redness_cr470" -msgstr "" +msgstr "vermellor_cr470" #: plug-ins/common/decompose.c:170 msgid "luma_y709" -msgstr "" +msgstr "luma_y709" #: plug-ins/common/decompose.c:171 msgid "blueness_cb709" -msgstr "" +msgstr "blavor_cb709" #: plug-ins/common/decompose.c:172 msgid "redness_cr709" -msgstr "" +msgstr "vermellor_cr709" #: plug-ins/common/decompose.c:174 msgid "luma_y470f" -msgstr "" +msgstr "luma_y470f" #: plug-ins/common/decompose.c:175 msgid "blueness_cb470f" -msgstr "" +msgstr "blavor_cb470f" #: plug-ins/common/decompose.c:176 msgid "redness_cr470f" -msgstr "" +msgstr "vermellor_cr470f" #: plug-ins/common/decompose.c:178 msgid "luma_y709f" -msgstr "" +msgstr "luma_y709f" #: plug-ins/common/decompose.c:179 msgid "blueness_cb709f" -msgstr "" +msgstr "blavor_cb709f" #: plug-ins/common/decompose.c:180 msgid "redness_cr709f" -msgstr "" +msgstr "vermellor_cr709f" #: plug-ins/common/decompose.c:245 #, fuzzy @@ -3318,7 +3265,7 @@ #: plug-ins/common/decompose.c:1242 #, fuzzy msgid "Decompose to _layers" -msgstr "Suprimeix la(es) capa(es)" +msgstr "Descomposa a _capes" #: plug-ins/common/deinterlace.c:99 #, fuzzy @@ -3336,12 +3283,12 @@ #: plug-ins/common/deinterlace.c:340 #, fuzzy msgid "Keep o_dd fields" -msgstr "Conserva els camps senars" +msgstr "Conserva els camps _senars" #: plug-ins/common/deinterlace.c:341 #, fuzzy msgid "Keep _even fields" -msgstr "Conserva els camps parells" +msgstr "Conserva els camps _parells" #: plug-ins/common/depthmerge.c:192 #, fuzzy @@ -3387,61 +3334,59 @@ #: plug-ins/common/despeckle.c:177 #, fuzzy msgid "Des_peckle..." -msgstr "Elimina els pics" +msgstr "Treu els pics" -#: plug-ins/common/despeckle.c:420 plug-ins/common/despeckle.c:642 +#: plug-ins/common/despeckle.c:418 plug-ins/common/despeckle.c:640 msgid "Despeckle" -msgstr "Elimina els pics" +msgstr "Treu els pics" #. #. * Filter type controls... #. -#: plug-ins/common/despeckle.c:446 plug-ins/gimpressionist/orientmap.c:616 +#: plug-ins/common/despeckle.c:444 plug-ins/gimpressionist/orientmap.c:616 msgid "Type" msgstr "Tipus" +# Misc: Used unit selection: 3 radio buttons #. parameter settings -#: plug-ins/common/despeckle.c:456 +#: plug-ins/common/despeckle.c:454 #, fuzzy msgid "Median" msgstr "Radians" -#: plug-ins/common/despeckle.c:462 -#, fuzzy +#: plug-ins/common/despeckle.c:460 msgid "_Adaptive" -msgstr "Adaptable" +msgstr "_Adaptable" -#: plug-ins/common/despeckle.c:472 -#, fuzzy +#: plug-ins/common/despeckle.c:470 msgid "R_ecursive" -msgstr "Recurrent" +msgstr "R_ecurrent" -#: plug-ins/common/despeckle.c:496 plug-ins/common/neon.c:728 +#: plug-ins/common/despeckle.c:494 plug-ins/common/neon.c:727 #: plug-ins/common/nlfilt.c:1083 plug-ins/common/nova.c:359 -#: plug-ins/common/unsharp.c:694 plug-ins/common/whirlpinch.c:588 +#: plug-ins/common/unsharp.c:665 plug-ins/common/whirlpinch.c:588 #: plug-ins/gflare/gflare.c:2686 plug-ins/imagemap/imap_circle.c:278 -#, fuzzy msgid "_Radius:" -msgstr "Radi:" +msgstr "_Radi:" -#: plug-ins/common/despeckle.c:512 +#: plug-ins/common/despeckle.c:510 #, fuzzy msgid "_Black level:" -msgstr "Nivell negre:" +msgstr "Nivell _negre:" -#: plug-ins/common/despeckle.c:528 +#: plug-ins/common/despeckle.c:526 #, fuzzy msgid "_White level:" -msgstr "Nivell blanc:" +msgstr "Nivell _blanc:" #: plug-ins/common/destripe.c:113 #, fuzzy msgid "Des_tripe..." -msgstr "S'estan treient les bandes…" +msgstr "S'estan treient les bandes..." #: plug-ins/common/destripe.c:276 msgid "Destriping..." -msgstr "S'estan treient les bandes…" +msgstr "S'estan treient les bandes..." #: plug-ins/common/destripe.c:442 msgid "Destripe" @@ -3452,28 +3397,26 @@ #: plug-ins/common/raw.c:985 plug-ins/common/smooth_palette.c:429 #: plug-ins/common/tile.c:417 plug-ins/imagemap/imap_cmd_guides.c:167 #: plug-ins/imagemap/imap_rectangle.c:403 -#, fuzzy msgid "_Width:" -msgstr "Amplada:" +msgstr "Am_plada:" #: plug-ins/common/destripe.c:480 #, fuzzy msgid "Create _histogram" -msgstr "Crea un histograma" +msgstr "Crea un _histograma" #: plug-ins/common/dicom.c:134 -#, fuzzy msgid "DICOM image" -msgstr "Imatge" +msgstr "" #: plug-ins/common/dicom.c:159 msgid "Digital Imaging and Communications in Medicine image" msgstr "" #: plug-ins/common/dicom.c:318 -#, fuzzy, c-format +#, c-format msgid "'%s' is not a DICOM file." -msgstr "%s: no és un fitxer regular" +msgstr "'%s': no és un fitxer DICOM." #: plug-ins/common/diffraction.c:177 #, fuzzy @@ -3491,45 +3434,43 @@ #: plug-ins/common/diffraction.c:524 #, fuzzy msgid "Frequencies" -msgstr "Freqüències" +msgstr "_Freqüències" #: plug-ins/common/diffraction.c:562 #, fuzzy msgid "Contours" -msgstr "Contorns" +msgstr "Co_ntorns" #: plug-ins/common/diffraction.c:600 #, fuzzy msgid "Sharp edges" -msgstr "Vores afilades" +msgstr "Afila vore_s" #: plug-ins/common/diffraction.c:612 plug-ins/common/softglow.c:673 #: plug-ins/flame/flame.c:1037 -#, fuzzy msgid "_Brightness:" -msgstr "Brillantor:" +msgstr "_Brillantor:" #: plug-ins/common/diffraction.c:621 -#, fuzzy msgid "Sc_attering:" -msgstr "Dispersió:" +msgstr "Dis_persió:" #: plug-ins/common/diffraction.c:630 #, fuzzy msgid "Po_larization:" -msgstr "Polarització:" +msgstr "Po_larització:" #: plug-ins/common/diffraction.c:638 #, fuzzy msgid "Other options" -msgstr "Altres opcions" +msgstr "Al_tres opcions" #: plug-ins/common/displace.c:154 #, fuzzy msgid "_Displace..." msgstr "S'està desplaçant..." -#: plug-ins/common/displace.c:228 +#: plug-ins/common/displace.c:231 msgid "Displacing..." msgstr "S'està desplaçant..." @@ -3541,70 +3482,74 @@ #: plug-ins/common/displace.c:297 #, fuzzy msgid "_X displacement:" -msgstr "Desplaçament en X:" +msgstr "Desplaçament en _X:" #. Y Options #: plug-ins/common/displace.c:344 #, fuzzy msgid "_Y displacement:" -msgstr "Desplaçament en Y:" +msgstr "Desplaçament en _Y:" +# ======================================================================= +# Displacement Type #: plug-ins/common/displace.c:390 msgid "On Edges:" msgstr "A les vores:" #: plug-ins/common/displace.c:396 plug-ins/common/edge.c:729 #: plug-ins/common/ripple.c:561 plug-ins/common/waves.c:274 -#, fuzzy msgid "_Smear" -msgstr "Taca" +msgstr "_Taca" #: plug-ins/common/displace.c:398 plug-ins/common/edge.c:742 #: plug-ins/common/fractaltrace.c:735 plug-ins/common/newsprint.c:408 #: plug-ins/common/ripple.c:562 -#, fuzzy msgid "_Black" -msgstr "Negra" +msgstr "_Negre" #: plug-ins/common/dog.c:139 #, fuzzy msgid "Difference of Gaussians..." -msgstr "Difusió gaussiana selectiva" +msgstr "Desenfocat gaussià selectiu..." -#: plug-ins/common/dog.c:222 plug-ins/common/dog.c:273 +#: plug-ins/common/dog.c:227 plug-ins/common/dog.c:274 #, fuzzy msgid "DoG Edge Detect" msgstr "Detecció de vora" -#: plug-ins/common/dog.c:294 +# if (display_diff_map) { +# gimp_display_new(new_image_id); +# } +# make sure layer is visible +#: plug-ins/common/dog.c:295 #, fuzzy msgid "Smoothing parameters" -msgstr "Copia els paràmetres" +msgstr "S'està suavitzant el degradat X..." -#: plug-ins/common/dog.c:308 +#: plug-ins/common/dog.c:309 #, fuzzy msgid "_Radius 1:" -msgstr "Radi:" +msgstr "_Radi:" -#: plug-ins/common/dog.c:312 +#: plug-ins/common/dog.c:313 #, fuzzy msgid "R_adius 2:" -msgstr "Radi:" +msgstr "R_adi:" -#: plug-ins/common/dog.c:324 plug-ins/common/normalize.c:88 +#: plug-ins/common/dog.c:325 plug-ins/common/normalize.c:88 #, fuzzy msgid "_Normalize" -msgstr "Normal" +msgstr "_Normal" -#: plug-ins/common/dog.c:335 plug-ins/gimpressionist/paper.c:149 -#, fuzzy +#: plug-ins/common/dog.c:336 plug-ins/gimpressionist/paper.c:149 msgid "_Invert" -msgstr "Inverteix" +msgstr "_Inverteix" +# Edges toggle box #: plug-ins/common/edge.c:162 #, fuzzy msgid "_Edge..." -msgstr "Edita..." +msgstr "Vores" #: plug-ins/common/edge.c:234 msgid "Edge Detection..." @@ -3617,36 +3562,36 @@ #: plug-ins/common/edge.c:675 #, fuzzy msgid "Sobel" -msgstr "Font..." +msgstr "Sòlid" #: plug-ins/common/edge.c:676 #, fuzzy msgid "Prewitt" -msgstr "Predefineix" +msgstr "_Predefineix" #: plug-ins/common/edge.c:677 plug-ins/common/sinus.c:897 msgid "Gradient" -msgstr "Gradient" +msgstr "Degradat" #: plug-ins/common/edge.c:678 #, fuzzy msgid "Roberts" -msgstr "Punts" +msgstr "_Roberts" #: plug-ins/common/edge.c:679 #, fuzzy msgid "Differential" -msgstr "Diferència" +msgstr "_Diferencial" #: plug-ins/common/edge.c:680 #, fuzzy msgid "Laplace" -msgstr "Laplace..." +msgstr "_Laplace" #: plug-ins/common/edge.c:689 #, fuzzy msgid "_Algorithm:" -msgstr "Algoritme de la trama:" +msgstr "Algoritme" #: plug-ins/common/edge.c:697 #, fuzzy @@ -3656,9 +3601,9 @@ #: plug-ins/common/emboss.c:133 #, fuzzy msgid "_Emboss..." -msgstr "Relleu" +msgstr "R_elleu" -#: plug-ins/common/emboss.c:374 plug-ins/common/emboss.c:439 +#: plug-ins/common/emboss.c:376 plug-ins/common/emboss.c:439 msgid "Emboss" msgstr "Relleu" @@ -3667,28 +3612,25 @@ msgstr "Funció" #: plug-ins/common/emboss.c:464 -#, fuzzy msgid "_Bumpmap" -msgstr "Mapa de la memòria annexa" +msgstr "_Bumpmap" #: plug-ins/common/emboss.c:465 -#, fuzzy msgid "_Emboss" -msgstr "Relleu" +msgstr "R_elleu" #: plug-ins/common/emboss.c:497 -#, fuzzy msgid "E_levation:" -msgstr "Elevació:" +msgstr "E_levació:" #: plug-ins/common/engrave.c:108 #, fuzzy msgid "En_grave..." -msgstr "S'està gravant" +msgstr "S'està gravant..." -#: plug-ins/common/engrave.c:181 +#: plug-ins/common/engrave.c:182 msgid "Engraving..." -msgstr "S'està gravant" +msgstr "S'està gravant..." #: plug-ins/common/engrave.c:211 msgid "Engrave" @@ -3700,14 +3642,13 @@ #: plug-ins/common/smooth_palette.c:434 plug-ins/common/tile.c:421 #: plug-ins/imagemap/imap_cmd_guides.c:177 #: plug-ins/imagemap/imap_rectangle.c:410 -#, fuzzy msgid "_Height:" -msgstr "Alçada:" +msgstr "Al_çada:" #: plug-ins/common/engrave.c:249 #, fuzzy msgid "_Limit line width" -msgstr "Amplada de la línia límit" +msgstr "Amplada de la línia _límit" #: plug-ins/common/exchange.c:133 #, fuzzy @@ -3726,7 +3667,7 @@ #: plug-ins/common/exchange.c:308 #, fuzzy msgid "Middle-click inside preview to pick \"From Color\"" -msgstr "Visualització prèvia: feu un clic a dins per triar \"Des del color\"" +msgstr "Previsualització: cliqueu a dins per triar \"Des del color\"" #: plug-ins/common/exchange.c:346 msgid "To Color" @@ -3747,22 +3688,22 @@ #: plug-ins/common/exchange.c:423 #, fuzzy msgid "R_ed threshold:" -msgstr "Llindar vermell:" +msgstr "Llindar _vermell:" #: plug-ins/common/exchange.c:484 #, fuzzy msgid "G_reen threshold:" -msgstr "Llindar verd:" +msgstr "Llindar v_erd:" #: plug-ins/common/exchange.c:545 #, fuzzy msgid "B_lue threshold:" -msgstr "Llindar blau:" +msgstr "Llindar _blau:" #: plug-ins/common/exchange.c:573 #, fuzzy msgid "Lock _thresholds" -msgstr "Bloca els llindars" +msgstr "Bloca els _llindars" #: plug-ins/common/film.c:240 #, fuzzy @@ -3806,7 +3747,7 @@ #: plug-ins/common/film.c:1185 #, fuzzy msgid "_Fit height to images" -msgstr "Ajusta l'alçada a les imatges" +msgstr "_Ajusta l'alçada a les imatges" #. Film color #: plug-ins/common/film.c:1221 @@ -3815,9 +3756,8 @@ #: plug-ins/common/film.c:1226 plug-ins/common/film.c:1277 #: plug-ins/common/nova.c:346 -#, fuzzy msgid "Co_lor:" -msgstr "Color:" +msgstr "Co_lor:" #. Film numbering: Startindex/Font/colour #: plug-ins/common/film.c:1235 @@ -3827,12 +3767,11 @@ #: plug-ins/common/film.c:1253 #, fuzzy msgid "Start _index:" -msgstr "Inicia l'índex:" +msgstr "Inicia l'_índex:" #: plug-ins/common/film.c:1267 -#, fuzzy msgid "_Font:" -msgstr "Font:" +msgstr "_Tipus de lletra:" #. Numbering color #: plug-ins/common/film.c:1272 @@ -3842,12 +3781,12 @@ #: plug-ins/common/film.c:1287 #, fuzzy msgid "At _bottom" -msgstr "A la part inferior" +msgstr "A la part _inferior" #: plug-ins/common/film.c:1288 #, fuzzy msgid "At _top" -msgstr "A la part superior" +msgstr "A la part _superior" #. ** The right frame keeps the image selection ** #: plug-ins/common/film.c:1301 @@ -3857,49 +3796,46 @@ #: plug-ins/common/film.c:1329 #, fuzzy msgid "All Values are Fractions of the Film Height" -msgstr "" -"Configuració avançada (tots els valors són fraccions de l'alçada de la " -"pel·lícula)" +msgstr "Tots els valors són fraccions de l'alçada de la pel·lícula" #: plug-ins/common/film.c:1332 -#, fuzzy msgid "Ad_vanced" -msgstr "Avançat" +msgstr "A_vançat" #: plug-ins/common/film.c:1351 #, fuzzy msgid "Image _height:" -msgstr "Alçada de la imatge:" +msgstr "Al_çada de la imatge:" #: plug-ins/common/film.c:1362 #, fuzzy msgid "Image spac_ing:" -msgstr "Espaiat de la imatge:" +msgstr "Espa_iat de la imatge:" #: plug-ins/common/film.c:1373 #, fuzzy msgid "_Hole offset:" -msgstr "Desplaçament del forat:" +msgstr "Desplaçament del _forat:" #: plug-ins/common/film.c:1384 #, fuzzy msgid "Ho_le width:" -msgstr "Amplada del forat:" +msgstr "Amp_lada del forat:" #: plug-ins/common/film.c:1395 #, fuzzy msgid "Hol_e height:" -msgstr "Alçada del forat" +msgstr "Alçada d_el forat" #: plug-ins/common/film.c:1406 #, fuzzy msgid "Hole sp_acing:" -msgstr "Espaiat del forat:" +msgstr "Espai_at del forat:" #: plug-ins/common/film.c:1417 #, fuzzy msgid "_Number height:" -msgstr "Alçada del nombre:" +msgstr "Alçada del _número:" #: plug-ins/common/flarefx.c:196 #, fuzzy @@ -3908,7 +3844,7 @@ #: plug-ins/common/flarefx.c:271 msgid "Render Flare..." -msgstr "Genera el Flare" +msgstr "Composa el Flare..." #: plug-ins/common/flarefx.c:308 msgid "FlareFX" @@ -3922,7 +3858,7 @@ #: plug-ins/common/flarefx.c:777 #, fuzzy msgid "_Show cursor" -msgstr "Mostra el cursor" +msgstr "_Mostra el cursor" #: plug-ins/common/fp.c:224 msgid "Darker:" @@ -3934,11 +3870,11 @@ #: plug-ins/common/fp.c:227 msgid "More Sat:" -msgstr "Més estable:" +msgstr "Més saturació:" #: plug-ins/common/fp.c:228 msgid "Less Sat:" -msgstr "Menys estable:" +msgstr "Menys saturació:" #. All the previews #: plug-ins/common/fp.c:230 plug-ins/common/fp.c:477 @@ -3948,15 +3884,15 @@ #: plug-ins/common/fp.c:321 #, fuzzy msgid "_Filter Pack..." -msgstr "S'està aplicant el paquet de filtratge" +msgstr "S'està aplicant el paquet de filtres..." #: plug-ins/common/fp.c:361 msgid "Convert the image to RGB first!" -msgstr "Abans, convertiu la imatge a format RGB!" +msgstr "Convertiu primer la imatge a format RGB" #: plug-ins/common/fp.c:366 msgid "Applying the Filter Pack..." -msgstr "S'està aplicant el paquet de filtratge" +msgstr "S'està aplicant el paquet de filtres..." #: plug-ins/common/fp.c:474 msgid "Before and After" @@ -3968,7 +3904,7 @@ #: plug-ins/common/fp.c:540 msgid "Hue Variations" -msgstr "Variacions de tinta" +msgstr "Variacions de to" #: plug-ins/common/fp.c:594 msgid "Roughness" @@ -3979,33 +3915,28 @@ msgstr "Abast afectat" #: plug-ins/common/fp.c:641 -#, fuzzy msgid "Sha_dows" -msgstr "Ombres" +msgstr "Om_bres" #: plug-ins/common/fp.c:642 -#, fuzzy msgid "_Midtones" -msgstr "Tons mitjans" +msgstr "Tons _mitjans" #: plug-ins/common/fp.c:643 -#, fuzzy msgid "H_ighlights" -msgstr "Ressaltaments" +msgstr "Re_ssaltaments" #: plug-ins/common/fp.c:657 msgid "Windows" msgstr "Finestres" #: plug-ins/common/fp.c:667 plug-ins/common/lic.c:670 -#, fuzzy msgid "_Saturation" -msgstr "Saturació" +msgstr "_Saturació" #: plug-ins/common/fp.c:675 -#, fuzzy msgid "A_dvanced" -msgstr "Avançat" +msgstr "Ava_nçat" #: plug-ins/common/fp.c:695 msgid "Value Variations" @@ -4017,45 +3948,39 @@ #: plug-ins/common/fp.c:791 msgid "Select Pixels by" -msgstr "Seleccioneu els píxels per" +msgstr "Selecciona els píxels per" #: plug-ins/common/fp.c:796 -#, fuzzy msgid "H_ue" -msgstr "Tinta:" +msgstr "_To" #: plug-ins/common/fp.c:797 -#, fuzzy msgid "Satu_ration" -msgstr "Saturació" +msgstr "Satu_ració" #: plug-ins/common/fp.c:798 -#, fuzzy msgid "V_alue" -msgstr "Valor" +msgstr "V_alor" #: plug-ins/common/fp.c:824 msgid "Show" msgstr "Mostra" #: plug-ins/common/fp.c:829 -#, fuzzy msgid "_Entire Image" -msgstr "Imatge sencera" +msgstr "Imatg_e sencera" #: plug-ins/common/fp.c:830 -#, fuzzy msgid "Se_lection Only" -msgstr "Només selecció" +msgstr "Només la se_lecció" #: plug-ins/common/fp.c:831 -#, fuzzy msgid "Selec_tion In Context" -msgstr "Selecció en context" +msgstr "Selecció en con_text" #: plug-ins/common/fp.c:1143 msgid "Filter Pack Simulation" -msgstr "Filtra la simulació del paquet" +msgstr "Simulació del paquet de filtres" #: plug-ins/common/fp.c:1253 msgid "Shadows:" @@ -4071,57 +3996,54 @@ #: plug-ins/common/fp.c:1267 msgid "Advanced Filter Pack Options" -msgstr "Opcions avançades de filtratge del paquet:" +msgstr "Opcions avançades del paquet de filtres" #: plug-ins/common/fp.c:1278 msgid "Smoothness of Aliasing" -msgstr "Suavitat de la contrarèplica" +msgstr "Nivell del suavitzat" #: plug-ins/common/fp.c:1378 msgid "Preview as You Drag" -msgstr "Previsualitza així que ho arrosseguis" +msgstr "Previsualitza mentre arrosseguis" #: plug-ins/common/fp.c:1382 msgid "Preview Size" -msgstr "Previsualitza la mida" +msgstr "Mida de previsualització" #: plug-ins/common/fractaltrace.c:126 #, fuzzy msgid "_Fractal Trace..." -msgstr "Traça del fractal" +msgstr "Traç del fractal" #: plug-ins/common/fractaltrace.c:466 plug-ins/common/fractaltrace.c:693 msgid "Fractal Trace" -msgstr "Traça del fractal" +msgstr "Traç del fractal" +# Settings #. Settings #: plug-ins/common/fractaltrace.c:726 msgid "Outside Type" msgstr "Tipus exterior" #: plug-ins/common/fractaltrace.c:731 -#, fuzzy msgid "_Warp" -msgstr "Trama" +msgstr "_Trama" #: plug-ins/common/fractaltrace.c:737 -#, fuzzy msgid "_White" -msgstr "Blanca" +msgstr "_Blanc" #: plug-ins/common/fractaltrace.c:744 msgid "Mandelbrot Parameters" msgstr "Paràmetres de Mandelbrot" #: plug-ins/common/fractaltrace.c:755 -#, fuzzy msgid "X_1:" -msgstr "X1:" +msgstr "X_1:" #: plug-ins/common/fractaltrace.c:764 -#, fuzzy msgid "X_2:" -msgstr "X2:" +msgstr "X_2:" #: plug-ins/common/fractaltrace.c:773 msgid "Y_1:" @@ -4132,46 +4054,46 @@ msgstr "Y_2:" #: plug-ins/common/gauss.c:157 +#, fuzzy msgid "_Gaussian Blur..." -msgstr "" +msgstr "Difuminació gaussiana RLE" -#: plug-ins/common/gauss.c:407 +#: plug-ins/common/gauss.c:413 #, fuzzy msgid "Gaussian Blur..." -msgstr "IIR difuminació gaussiana" +msgstr "Difuminació gaussiana RLE" -#: plug-ins/common/gauss.c:460 +#: plug-ins/common/gauss.c:461 #, fuzzy msgid "Gaussian Blur" -msgstr "IIR difuminació gaussiana" +msgstr "Difuminació gaussiana IIR" +# parameter settings #. parameter settings -#: plug-ins/common/gauss.c:483 +#: plug-ins/common/gauss.c:484 msgid "Blur Radius" msgstr "Radi de difuminació" -#: plug-ins/common/gauss.c:497 plug-ins/common/jigsaw.c:2456 -#: plug-ins/common/spread.c:378 -#, fuzzy +#: plug-ins/common/gauss.c:498 plug-ins/common/jigsaw.c:2456 +#: plug-ins/common/spread.c:379 msgid "_Horizontal:" -msgstr "Horitzontal:" +msgstr "_Horitzontal:" -#: plug-ins/common/gauss.c:501 plug-ins/common/jigsaw.c:2473 -#: plug-ins/common/spread.c:382 -#, fuzzy +#: plug-ins/common/gauss.c:502 plug-ins/common/jigsaw.c:2473 +#: plug-ins/common/spread.c:383 msgid "_Vertical:" -msgstr "Vertical:" +msgstr "_Vertical:" -#: plug-ins/common/gauss.c:524 +#: plug-ins/common/gauss.c:525 #, fuzzy msgid "Blur Method" msgstr "Tipus de difuminació" -#: plug-ins/common/gauss.c:528 +#: plug-ins/common/gauss.c:529 msgid "_IIR" msgstr "" -#: plug-ins/common/gauss.c:529 +#: plug-ins/common/gauss.c:530 #, fuzzy msgid "_RLE" msgstr "RLE" @@ -4181,19 +4103,18 @@ msgstr "" #: plug-ins/common/gbr.c:369 plug-ins/common/gbr.c:381 -#, fuzzy msgid "Unsupported brush format" -msgstr "El nombre de colors (%d) no està implementat" +msgstr "Format de pinzell no suportat" #: plug-ins/common/gbr.c:392 -#, fuzzy, c-format +#, c-format msgid "Error in GIMP brush file '%s'" -msgstr "S'ha produït un error en escombrar el fitxer GIMP \"%s\"." +msgstr "S'ha produït un error en el fitxer de pinzell del GIMP '%s'" #: plug-ins/common/gbr.c:400 #, c-format msgid "Invalid UTF-8 string in brush file '%s'." -msgstr "" +msgstr "Hi ha una cadena UTF-8 invàlida en el fitxer de pinzell '%s'." #: plug-ins/common/gbr.c:406 plug-ins/common/gih.c:497 #: plug-ins/common/gih.c:1154 plug-ins/gflare/gflare.c:2991 @@ -4201,13 +4122,12 @@ msgstr "Sense nom" #: plug-ins/common/gbr.c:578 -#, fuzzy msgid "GIMP brushes are either GRAYSCALE or RGBA" -msgstr "Les escombres GIMP són o bé GRAYSCALE o bé RGBA\n" +msgstr "Els pinzells GIMP són en escala de grisos o bé RGBA" #: plug-ins/common/gbr.c:663 msgid "Save as Brush" -msgstr "Desa com a escombra" +msgstr "Desa com a pinzell" #. attach labels #: plug-ins/common/gbr.c:683 plug-ins/common/grid.c:769 @@ -4228,8 +4148,9 @@ msgstr "GEE-SLIME" #: plug-ins/common/gee.c:158 plug-ins/common/gee_zoom.c:191 +#, fuzzy msgid "Thank you for choosing GIMP" -msgstr "Gràcies per triar el GIMP" +msgstr "** Gràcies per triar el GIMP **" #: plug-ins/common/gee.c:166 msgid "" @@ -4242,7 +4163,7 @@ #: plug-ins/common/gee_zoom.c:124 #, fuzzy msgid "Gee-_Zoom" -msgstr "Zoom" +msgstr "_Zoom" #: plug-ins/common/gee_zoom.c:185 msgid "GEE-ZOOM" @@ -4253,34 +4174,34 @@ "An obsolete creation of Adam D. Moss / adam@gimp.org / adam@foxbox.org / " "1998-2000" msgstr "" -"una creació obsoleta d'Adam D. Moss / adam@gimp.org / adam@foxbox.org / 1998-" +"Una creació obsoleta d'Adam D. Moss / adam@gimp.org / adam@foxbox.org / 1998-" "2000" #: plug-ins/common/gif.c:402 plug-ins/common/gifload.c:143 #, fuzzy msgid "GIF image" -msgstr "Imatge" +msgstr "Im_atge" #: plug-ins/common/gif.c:687 -#, fuzzy msgid "Couldn't simply reduce colors further. Saving as opaque." msgstr "" -"GIF: no s'ha pogut reduir els colors de manera més simple.\n" -"S'està desant com a opac.\n" +"No s'ha pogut reduir els colors de manera més simple. S'està desant com a " +"opac." #: plug-ins/common/gif.c:909 msgid "" "The GIF format only supports comments in 7bit ASCII encoding. No comment is " "saved." msgstr "" +"El format GIF només suporta comentaris codificats en 7bit ASCII. No s'ha " +"desat cap comentari." #: plug-ins/common/gif.c:970 -#, fuzzy msgid "" "Cannot save RGB color images. Convert to indexed color or grayscale first." msgstr "" -"GIF: no es poden desar les imatges RGB en el format GIF - convertiu-les " -"abans a INDEXED o GRAY.\n" +"No es poden desar les imatges de color RGB. Convertiu-les primer a color " +"indexat o a escala de grisos" #: plug-ins/common/gif.c:1113 msgid "" @@ -4288,6 +4209,9 @@ "Transparent color in written file might be incorrect on viewers which don't " "support transparency." msgstr "" +"Avís:\n" +"El color transparent en el fitxer escrit pot ser incorrecte en " +"visualitzadors que no suportin transparències." #: plug-ins/common/gif.c:1152 msgid "Delay inserted to prevent evil CPU-sucking anim." @@ -4308,15 +4232,15 @@ "the image borders, or cancel this save." msgstr "" "La imatge que esteu intentant desar en format GIF\n" -"Conté capes que s'estenen més enllà de les vores\n" +"conté capes que s'estenen més enllà de les vores\n" "actuals de la imatge. Això no està permès en les imatges GIF.\n" "\n" "Podeu escollir entre escapçar totes les capes d'acord amb\n" -"les vores de les imatges o no desar." +"les vores de les imatges, o no desar." #: plug-ins/common/gif.c:1254 msgid "Save as GIF" -msgstr "Desa en format GIF" +msgstr "Desa com a GIF" #. regular gif parameter settings #: plug-ins/common/gif.c:1269 @@ -4349,9 +4273,8 @@ msgstr "Retard entre marcs quan no estigui especificat:" #: plug-ins/common/gif.c:1380 plug-ins/common/mng.c:1522 -#, fuzzy msgid "milliseconds" -msgstr "Mil·lisegons" +msgstr "mil·lisegons" #: plug-ins/common/gif.c:1390 #, fuzzy @@ -4374,28 +4297,26 @@ msgstr "Un marc per capa (substitueix)" #: plug-ins/common/gif.c:2611 -#, fuzzy msgid "Error writing output file." -msgstr "GIF: s'ha produït un error en escriure el fitxer de sortida\n" +msgstr "S'ha produït un error en escriure el fitxer de sortida." #: plug-ins/common/gif.c:2681 #, c-format msgid "The default comment is limited to %d characters." -msgstr "" +msgstr "El comentari per defecte està limitat a %d caràcters." #: plug-ins/common/gifload.c:314 -#, fuzzy msgid "This is not a GIF file" -msgstr "%s: no és un fitxer regular" +msgstr "Aquest no és un fitxer GIF" #: plug-ins/common/gifload.c:352 msgid "Non-square pixels. Image might look squashed." -msgstr "" +msgstr "Píxels no quadrats. La imatge pot semblar aplastada." #: plug-ins/common/gifload.c:867 -#, fuzzy, c-format +#, c-format msgid "Background (%d%s)" -msgstr "Fons (%dms)" +msgstr "Fons (%d%s)" #: plug-ins/common/gifload.c:915 plug-ins/common/iwarp.c:783 #: plug-ins/common/iwarp.c:817 @@ -4404,9 +4325,9 @@ msgstr "Marc %d" #: plug-ins/common/gifload.c:917 -#, fuzzy, c-format +#, c-format msgid "Frame %d (%d%s)" -msgstr "Marc %d (%dms)" +msgstr "Marc %d (%d%s)" #: plug-ins/common/gifload.c:947 #, c-format @@ -4414,6 +4335,8 @@ "GIF: Undocumented GIF composite type %d is not handled. Animation might not " "play or re-save perfectly." msgstr "" +"GIF: No està gestionat el tipus %d de composició GIF indocumentat. Pot ser " +"que l'animació no es reprodueixi o no es torni a desar perfectament." #: plug-ins/common/gih.c:205 plug-ins/common/gih.c:226 msgid "GIMP brush (animated)" @@ -4422,7 +4345,7 @@ #: plug-ins/common/gih.c:319 #, c-format msgid "Layer %s doesn't have an alpha channel, skipped" -msgstr "La capa %s no té un canal alfa, s'han omès" +msgstr "La capa %s no té un canal alfa. S'ha omès" #: plug-ins/common/gih.c:490 msgid "Error in GIMP brush pipe file." @@ -4430,11 +4353,11 @@ #: plug-ins/common/gih.c:556 msgid "GIMP brush file appears to be corrupted." -msgstr "Sembla ser corrupte el fitxer pinzell del GIMP." +msgstr " El fitxer de pinzell del GIMP sembla ser corrupte." #: plug-ins/common/gih.c:704 msgid "Couldn't load one brush in the pipe, giving up." -msgstr "No s'ha pogut carregar un pinzell al conducte, renuncieu-hi." +msgstr "No s'ha pogut carregar un pinzell al conducte. Renuncieu-hi." #: plug-ins/common/gih.c:867 msgid "Save as Brush Pipe" @@ -4493,33 +4416,32 @@ msgid "_Glass Tile..." msgstr "Mosaic òptic..." -#: plug-ins/common/glasstile.c:208 +#: plug-ins/common/glasstile.c:209 msgid "Glass Tile..." msgstr "Mosaic òptic..." -#: plug-ins/common/glasstile.c:251 +#: plug-ins/common/glasstile.c:250 msgid "Glass Tile" msgstr "Mosaic òptic" -#: plug-ins/common/glasstile.c:282 +#: plug-ins/common/glasstile.c:281 #, fuzzy msgid "Tile _width:" -msgstr "Amplada del mosaic:" +msgstr "Am_plada del mosaic:" -#: plug-ins/common/glasstile.c:296 plug-ins/common/mosaic.c:621 +#: plug-ins/common/glasstile.c:295 plug-ins/common/mosaic.c:621 #, fuzzy msgid "Tile _height:" -msgstr "Alçada del mosaic:" +msgstr "Al_çada del mosaic:" #: plug-ins/common/gqbist.c:415 #, fuzzy msgid "_Qbist..." -msgstr "Qbist..." +msgstr "Qbist ..." #: plug-ins/common/gqbist.c:514 -#, fuzzy msgid "Qbist ..." -msgstr "Qbist..." +msgstr "Qbist ..." #: plug-ins/common/gqbist.c:695 #, fuzzy @@ -4532,18 +4454,17 @@ msgstr "Desa (transformació mitjana) com a fitxer QBE..." #: plug-ins/common/gqbist.c:781 -#, fuzzy msgid "G-Qbist" -msgstr "G-Qbist 1.12" +msgstr "G-Qbist" #: plug-ins/common/gradmap.c:86 #, fuzzy msgid "_Gradient Map" -msgstr "Mapa amb gradient..." +msgstr "Mapa de degradat..." #: plug-ins/common/gradmap.c:124 msgid "Gradient Map..." -msgstr "Mapa amb gradient..." +msgstr "Mapa de degradat..." #: plug-ins/common/grid.c:149 #, fuzzy @@ -4601,7 +4522,7 @@ #: plug-ins/common/gtm.c:154 #, fuzzy msgid "HTML table" -msgstr "Centelleig" +msgstr "Marbre" #: plug-ins/common/gtm.c:399 msgid "GIMP Table Magic" @@ -4612,17 +4533,14 @@ msgstr "Avís" #: plug-ins/common/gtm.c:430 -#, fuzzy msgid "" "You are about to create a huge\n" "HTML file which will most likely\n" "crash your browser." msgstr "" -"Què feu?\n" -"\n" "Esteu a punt de crear un enorme\n" "fitxer HTML que molt probablement\n" -"farà malbé el navegador." +"farà que el vostre navegador deixi de funcionar." #. HTML Page Options #: plug-ins/common/gtm.c:439 @@ -4632,14 +4550,14 @@ #: plug-ins/common/gtm.c:446 #, fuzzy msgid "_Generate full HTML document" -msgstr "Genera un document HTML sencer" +msgstr "_Genera un document HTML sencer" #: plug-ins/common/gtm.c:452 msgid "" "If checked GTM will output a full HTML document with , , etc. " "tags instead of just the table html." msgstr "" -"Si comproveu el GTM sortirà sols un document HTML sencer amb els marcadors " +"Si comproveu el GTM sortirà un document HTML sencer amb les etiquetes " ", , etc... en comptes de la taula html." #. HTML Table Creation Options @@ -4650,7 +4568,7 @@ #: plug-ins/common/gtm.c:473 #, fuzzy msgid "_Use cellspan" -msgstr "Fes servir l'obertura de la cel·la" +msgstr "_Utilitza l'obertura de la cel·la" #: plug-ins/common/gtm.c:479 msgid "" @@ -4658,13 +4576,12 @@ "blocks with one large cell with ROWSPAN and COLSPAN values." msgstr "" "Si comproveu el GTM substituireu les seccions rectangulars dels blocs de " -"color idèntic per una cel·la gran amb els valors de les FILES DE LLUM i el " -"COL·LECTOR DE LLUM." +"color idèntic per una cel·la gran amb els valors de les files de llum i el " +"col·lector de llum.." #: plug-ins/common/gtm.c:488 -#, fuzzy msgid "Co_mpress TD tags" -msgstr "Comprimeix els marcadors TD" +msgstr "Co_mprimeix les etiquetes TD" #: plug-ins/common/gtm.c:494 msgid "" @@ -4672,31 +4589,30 @@ "and the cellcontent. This is only necessary for pixel level positioning " "control." msgstr "" -"El fet de comprovar aquest marcador provocarà que el GTM no deixi espai en " -"blanc entre els marcadors TD i el contingut de la cel·la. Només és necessari " +"El fet de comprovar aquesta etiqueta provocarà que el GTM no deixi espai en " +"blanc entre les etiquetes TD i el contingut de la cel·la. Només és necessari " "per al posicionament del nivell de control dels píxels." #: plug-ins/common/gtm.c:504 -#, fuzzy msgid "C_aption" -msgstr "Peu" +msgstr "C_aptura" #: plug-ins/common/gtm.c:510 msgid "Check if you would like to have the table captioned." -msgstr "Confirmeu que voleu tenir un peu de taula." +msgstr "Comproveu si voleu tenir una taula capturada." #: plug-ins/common/gtm.c:525 msgid "The text for the table caption." -msgstr "El text del peu de taula." +msgstr "El text per la captura de taula." #: plug-ins/common/gtm.c:538 #, fuzzy msgid "C_ell content:" -msgstr "Contingut de la cel·la:" +msgstr "Contingut de la c_el·la:" #: plug-ins/common/gtm.c:542 msgid "The text to go into each cell." -msgstr "El text que ha d'anar en cada cel·la." +msgstr "El text que ha d'anar dins de cada cel·la." #. HTML Table Options #: plug-ins/common/gtm.c:552 @@ -4704,9 +4620,8 @@ msgstr "Opcions de la taula" #: plug-ins/common/gtm.c:563 -#, fuzzy msgid "_Border:" -msgstr "Vora:" +msgstr "_Vora:" #: plug-ins/common/gtm.c:567 msgid "The number of pixels in the table border." @@ -4725,7 +4640,7 @@ #: plug-ins/common/gtm.c:609 #, fuzzy msgid "Cell-_padding:" -msgstr "Farciment de les cel·les:" +msgstr "_Farciment de les cel·les:" #: plug-ins/common/gtm.c:613 msgid "The amount of cellpadding." @@ -4734,15 +4649,16 @@ #: plug-ins/common/gtm.c:622 #, fuzzy msgid "Cell-_spacing:" -msgstr "Espaiat de les cel·les:" +msgstr "_Espaiat de les cel·les:" #: plug-ins/common/gtm.c:626 msgid "The amount of cellspacing." msgstr "La quantitat d'espaiat de les cel·les." #: plug-ins/common/guillotine.c:72 +#, fuzzy msgid "_Guillotine" -msgstr "_Guillotina" +msgstr "Guillotina..." #: plug-ins/common/guillotine.c:104 msgid "Guillotine..." @@ -4755,40 +4671,36 @@ #: plug-ins/common/hot.c:217 #, fuzzy msgid "_Hot..." -msgstr "Quant a..." +msgstr "Càlid..." #: plug-ins/common/hot.c:379 -#, fuzzy msgid "Hot..." -msgstr "Quant a..." +msgstr "Càlid..." #: plug-ins/common/hot.c:570 msgid "Hot" -msgstr "Càlids" +msgstr "Càlid" #: plug-ins/common/hot.c:600 #, fuzzy msgid "Create _New layer" -msgstr "Crea una nova capa" +msgstr "Crea una _nova capa" #: plug-ins/common/hot.c:609 msgid "Action" msgstr "Acció" #: plug-ins/common/hot.c:613 -#, fuzzy msgid "Reduce _Luminance" -msgstr "Redueix la lluminositat" +msgstr "Redueix la _lluminositat" #: plug-ins/common/hot.c:614 -#, fuzzy msgid "Reduce _Saturation" -msgstr "Redueix la saturació" +msgstr "Redueix la _saturació" #: plug-ins/common/hot.c:615 plug-ins/common/waves.c:275 -#, fuzzy msgid "_Blacken" -msgstr "Ennegreix" +msgstr "En_negreix" #: plug-ins/common/illusion.c:101 #, fuzzy @@ -4806,17 +4718,15 @@ #: plug-ins/common/illusion.c:423 #, fuzzy msgid "_Divisions:" -msgstr "Divisió:" +msgstr "_Divisió:" #: plug-ins/common/illusion.c:433 -#, fuzzy msgid "Mode _1" -msgstr "Mode 1" +msgstr "Mode _1" #: plug-ins/common/illusion.c:448 -#, fuzzy msgid "Mode _2" -msgstr "Mode 2" +msgstr "Mode _2" #: plug-ins/common/iwarp.c:254 #, fuzzy @@ -4828,109 +4738,95 @@ msgstr "S'està fent la trama..." #: plug-ins/common/iwarp.c:793 plug-ins/common/iwarp.c:805 -#, fuzzy, c-format +#, c-format msgid "Warping Frame No. %d..." -msgstr "S'està fent la trama del marc NR %d..." +msgstr "S'està fent la trama del marc %d..." #: plug-ins/common/iwarp.c:806 #, fuzzy msgid "Ping pong" -msgstr "Ping Pong" +msgstr "Ping pong" #: plug-ins/common/iwarp.c:941 -#, fuzzy msgid "A_nimate" -msgstr "Anima" +msgstr "A_nima" #: plug-ins/common/iwarp.c:960 -#, fuzzy msgid "Number of _Frames:" -msgstr "Nombre de marcs:" +msgstr "Nombre de _marcs:" #: plug-ins/common/iwarp.c:969 -#, fuzzy msgid "R_everse" -msgstr "Inverteix" +msgstr "Invert_eix" #: plug-ins/common/iwarp.c:978 -#, fuzzy msgid "_Ping Pong" -msgstr "Ping Pong" +msgstr "_Ping pong" #: plug-ins/common/iwarp.c:991 -#, fuzzy msgid "_Animate" -msgstr "Anima" +msgstr "_Anima" #: plug-ins/common/iwarp.c:1012 msgid "Deform Mode" -msgstr "Canvia el mode" +msgstr "Varia el mode" #: plug-ins/common/iwarp.c:1025 -#, fuzzy msgid "_Move" -msgstr "Mou" +msgstr "_Mou" #: plug-ins/common/iwarp.c:1026 -#, fuzzy msgid "_Grow" -msgstr "Creix" +msgstr "_Creix" #: plug-ins/common/iwarp.c:1027 -#, fuzzy msgid "S_wirl CCW" -msgstr "Arremolina el CCW" +msgstr "Arremolina en sentit _antihorari" #: plug-ins/common/iwarp.c:1028 -#, fuzzy msgid "Remo_ve" -msgstr "Suprimeix" +msgstr "_Suprimeix" #: plug-ins/common/iwarp.c:1029 -#, fuzzy msgid "S_hrink" -msgstr "Encongeix" +msgstr "_Encongeix" #: plug-ins/common/iwarp.c:1030 -#, fuzzy msgid "Sw_irl CW" -msgstr "Arremolina el CW" +msgstr "Arremolina en sentit _horari" #: plug-ins/common/iwarp.c:1059 #, fuzzy msgid "_Deform radius:" -msgstr "Varia el radi:" +msgstr "Varia el _radi:" #: plug-ins/common/iwarp.c:1069 #, fuzzy msgid "D_eform amount:" -msgstr "Varia la quantitat:" +msgstr "Varia la _quantitat:" #: plug-ins/common/iwarp.c:1078 -#, fuzzy msgid "_Bilinear" -msgstr "Bilineal" +msgstr "_Bilineal" #: plug-ins/common/iwarp.c:1092 #, fuzzy msgid "Adaptive s_upersample" -msgstr "Supermostra adaptable" +msgstr "S_upermostra adaptable" #: plug-ins/common/iwarp.c:1112 #, fuzzy msgid "Ma_x depth:" -msgstr "Profunditat màxima:" +msgstr "Profunditat mà_xima:" #: plug-ins/common/iwarp.c:1122 -#, fuzzy msgid "Thresho_ld:" -msgstr "Llindar:" +msgstr "_Llindar:" #: plug-ins/common/iwarp.c:1135 plug-ins/common/sinus.c:764 #: plug-ins/gflare/gflare.c:2795 -#, fuzzy msgid "_Settings" -msgstr "Paràmetres" +msgstr "Paràmetre_s" #: plug-ins/common/iwarp.c:1151 msgid "IWarp" @@ -4942,9 +4838,8 @@ msgstr "Encaix" #: plug-ins/common/jigsaw.c:418 -#, fuzzy msgid "Assembling Jigsaw..." -msgstr "S'està assemblant l'encaix" +msgstr "S'està assemblant l'encaix..." #: plug-ins/common/jigsaw.c:2423 msgid "Jigsaw" @@ -4969,52 +4864,49 @@ #: plug-ins/common/jigsaw.c:2500 #, fuzzy msgid "_Bevel width:" -msgstr "Amplada del biaix:" +msgstr "Amplada del _biaix:" #: plug-ins/common/jigsaw.c:2504 msgid "Degree of slope of each piece's edge" msgstr "Grau d'inclinació de la vora de cada peça" #: plug-ins/common/jigsaw.c:2517 -#, fuzzy msgid "H_ighlight:" -msgstr "Ressaltament:" +msgstr "_Ressaltament:" #: plug-ins/common/jigsaw.c:2521 msgid "The amount of highlighting on the edges of each piece" -msgstr "Ressaltament de les vores de cada peça" +msgstr "La quantitat de ressaltament de les vores de cada peça" #. frame for primitive radio buttons #: plug-ins/common/jigsaw.c:2538 msgid "Jigsaw Style" -msgstr "Estil d'enllaç" +msgstr "Estil d'encaix" #: plug-ins/common/jigsaw.c:2542 -#, fuzzy msgid "_Square" -msgstr "Quadrat" +msgstr "_Quadrat" #: plug-ins/common/jigsaw.c:2543 -#, fuzzy msgid "C_urved" -msgstr "Corbat" +msgstr "C_orbat" #: plug-ins/common/jigsaw.c:2547 msgid "Each piece has straight sides" -msgstr "Cada peça té els costats rectes" +msgstr "Cada peça té costats rectes" #: plug-ins/common/jigsaw.c:2548 msgid "Each piece has curved sides" -msgstr "Cada peça té els costats corbats" +msgstr "Cada peça té costats corbats" #: plug-ins/common/jpeg.c:372 plug-ins/common/jpeg.c:410 #, fuzzy msgid "JPEG image" -msgstr "Visualització prèvia JPEG" +msgstr "Previsualització JPEG" #: plug-ins/common/jpeg.c:516 msgid "Export Preview" -msgstr "Exporta la visualització prèvia" +msgstr "Exporta la previsualització" #: plug-ins/common/jpeg.c:880 msgid "EXIF data will be ignored." @@ -5022,12 +4914,12 @@ #: plug-ins/common/jpeg.c:1094 msgid "JPEG preview" -msgstr "Visualització prèvia JPEG" +msgstr "Previsualització JPEG" #: plug-ins/common/jpeg.c:1356 #, fuzzy, c-format msgid "File size: %02.01f kB" -msgstr "Mida: %lu bytes (%02.01f kB)" +msgstr "Mida: %ld bytes (%02.01f kB)" #: plug-ins/common/jpeg.c:1809 plug-ins/common/jpeg.c:1909 #, fuzzy @@ -5046,17 +4938,17 @@ #: plug-ins/common/jpeg.c:1899 #, fuzzy msgid "JPEG quality parameter" -msgstr "Paràmetres" +msgstr "Omple-ho amb el paràmetre k" #: plug-ins/common/jpeg.c:1918 #, fuzzy msgid "Show _Preview in image window" -msgstr "Visualització prèvia (en la finestra d'imatge)" +msgstr "Obté una única finestra" #: plug-ins/common/jpeg.c:1931 #, fuzzy msgid "_Advanced Options" -msgstr "Paràmetres avançats" +msgstr "Opcions avançades del paquet de filtres" #: plug-ins/common/jpeg.c:1959 #, fuzzy @@ -5087,12 +4979,12 @@ #: plug-ins/common/jpeg.c:2050 msgid "Save EXIF data" -msgstr "" +msgstr "Desa dades EXIF" #: plug-ins/common/jpeg.c:2064 #, fuzzy msgid "Save thumbnail" -msgstr "Desa la flama" +msgstr "Desa el fitxer" #. Subsampling #: plug-ins/common/jpeg.c:2078 @@ -5123,12 +5015,11 @@ #: plug-ins/common/jpeg.c:2280 #, fuzzy, c-format msgid "Opening thumbnail for '%s'..." -msgstr "S'està obrint %s" +msgstr "S'està obrint '%s'..." #: plug-ins/common/laplace.c:95 -#, fuzzy msgid "_Laplace" -msgstr "Laplace..." +msgstr "_Laplace" #: plug-ins/common/laplace.c:228 msgid "Laplace..." @@ -5139,9 +5030,8 @@ msgstr "Recuperació..." #: plug-ins/common/lic.c:571 -#, fuzzy msgid "Van Gogh (LIC)..." -msgstr "Van Gogh (LIC)" +msgstr "Van Gogh (LIC)..." #: plug-ins/common/lic.c:646 msgid "Van Gogh (LIC)" @@ -5152,75 +5042,73 @@ msgstr "Efecte canal" #: plug-ins/common/lic.c:671 -#, fuzzy msgid "_Brightness" -msgstr "Brillantor" +msgstr "_Brillantor" #: plug-ins/common/lic.c:677 msgid "Effect Operator" msgstr "Efecte operador" #: plug-ins/common/lic.c:682 -#, fuzzy msgid "_Derivative" -msgstr "Derivatiu" +msgstr "_Derivatiu" #: plug-ins/common/lic.c:683 -#, fuzzy msgid "_Gradient" -msgstr "Gradient" +msgstr "De_gradat" #: plug-ins/common/lic.c:689 msgid "Convolve" -msgstr "Torsió" +msgstr "Envolta" #: plug-ins/common/lic.c:694 #, fuzzy msgid "_With white noise" -msgstr "Amb soroll blanc" +msgstr "Amb soroll _blanc" #: plug-ins/common/lic.c:695 #, fuzzy msgid "W_ith source image" -msgstr "Amb la imatge font" +msgstr "Amb la _imatge font" #: plug-ins/common/lic.c:714 -#, fuzzy msgid "_Effect Image:" -msgstr "Efecte imatge:" +msgstr "_Efecte imatge:" #: plug-ins/common/lic.c:725 #, fuzzy msgid "_Filter length:" -msgstr "Longitud del filtre:" +msgstr "Longitud del _filtre:" #: plug-ins/common/lic.c:734 #, fuzzy msgid "_Noise magnitude:" -msgstr "Magnitud del soroll:" +msgstr "Magnitud del _soroll:" #: plug-ins/common/lic.c:743 #, fuzzy msgid "In_tegration steps:" -msgstr "Passos d'integració:" +msgstr "Passos d'in_tegració:" #: plug-ins/common/lic.c:752 #, fuzzy msgid "_Minimum value:" -msgstr "Valor mínim:" +msgstr "Valor m_ínim:" #: plug-ins/common/lic.c:761 #, fuzzy msgid "M_aximum value:" -msgstr "Valor màxim:" +msgstr "Valor m_àxim:" #: plug-ins/common/lic.c:812 +#, fuzzy msgid "_Van Gogh (LIC)..." -msgstr "_Van Gogh (LIC)" +msgstr "Van Gogh (LIC)..." #: plug-ins/common/mail.c:253 +#, fuzzy msgid "_Mail Image..." -msgstr "" +msgstr "/Fitxer/Imatge de _correu..." #: plug-ins/common/mail.c:474 #, fuzzy @@ -5228,29 +5116,24 @@ msgstr "Envia al correu" #: plug-ins/common/mail.c:498 -#, fuzzy msgid "_Recipient:" -msgstr "Recipient:" +msgstr "_Recipient:" #: plug-ins/common/mail.c:510 -#, fuzzy msgid "_Sender:" -msgstr "Remitent:" +msgstr "R_emitent:" #: plug-ins/common/mail.c:522 -#, fuzzy msgid "S_ubject:" -msgstr "Assumpte:" +msgstr "Ass_umpte:" #: plug-ins/common/mail.c:534 -#, fuzzy msgid "Comm_ent:" -msgstr "Comentari:" +msgstr "Com_entari:" #: plug-ins/common/mail.c:546 -#, fuzzy msgid "_Filename:" -msgstr "Nom de fitxer:" +msgstr "Nom del _fitxer:" #. Encapsulation label #: plug-ins/common/mail.c:580 @@ -5258,21 +5141,17 @@ msgstr "Encapsulació:" #: plug-ins/common/mail.c:592 -#, fuzzy msgid "_Uuencode" -msgstr "Codificació uu" +msgstr "Codificació _uu" #: plug-ins/common/mail.c:593 -#, fuzzy msgid "_MIME" -msgstr "MIME" +msgstr "_MIME" #: plug-ins/common/mail.c:693 -#, fuzzy msgid "some sort of error with the file extension or lack thereof" msgstr "" -"correu: hi ha algun tipus d'error amb l'extensió dels fitxers o l'absència " -"d'aquests\n" +"Hi ha algun tipus d'error amb l'extensió dels fitxers o l'absència d'aquests" #: plug-ins/common/mapcolor.c:113 msgid "First Source Color" @@ -5300,19 +5179,16 @@ msgstr "Canvi de color..." #: plug-ins/common/mapcolor.c:219 plug-ins/common/mapcolor.c:507 -#, fuzzy msgid "Cannot operate on gray or indexed color images." -msgstr "xjt: noes pot operar amb imatges de color indexat" +msgstr "No es pot operar amb imatges grises o de color indexat." #: plug-ins/common/mapcolor.c:240 -#, fuzzy msgid "Adjusting Foreground/Background..." -msgstr "S'està ajustant el primer pla i el fons" +msgstr "S'està ajustant el primer pla i el fons..." #: plug-ins/common/mapcolor.c:282 -#, fuzzy msgid "Mapping colors..." -msgstr "S'estan mapant els colors" +msgstr "S'estan mapant els colors..." #: plug-ins/common/mapcolor.c:359 msgid "Map Color Range" @@ -5334,17 +5210,15 @@ #: plug-ins/common/max_rgb.c:106 #, fuzzy msgid "_Max RGB..." -msgstr "RGB màxim" +msgstr "RGB màxim..." #: plug-ins/common/max_rgb.c:145 -#, fuzzy msgid "Can only operate on RGB drawables." -msgstr "RGB màxim: només es pot operar en els dibuixables RGB." +msgstr "Només es pot operar en dibuixables RGB." #: plug-ins/common/max_rgb.c:245 -#, fuzzy msgid "Max RGB..." -msgstr "RGB màxim" +msgstr "RGB màxim..." #: plug-ins/common/max_rgb.c:270 msgid "Max RGB" @@ -5353,45 +5227,41 @@ #: plug-ins/common/max_rgb.c:295 #, fuzzy msgid "_Hold the maximal channels" -msgstr "Disposeu els canals màxims" +msgstr "Retingueu els canals m_àxims" #: plug-ins/common/max_rgb.c:298 #, fuzzy msgid "Ho_ld the minimal channels" -msgstr "Disposeu els canals mínims" +msgstr "Retingueu els canals m_ínims" #: plug-ins/common/mblur.c:176 #, fuzzy msgid "_Motion Blur..." -msgstr "Moviment de difuminació" +msgstr "S'està difuminant el moviment" #: plug-ins/common/mblur.c:796 -#, fuzzy msgid "Motion Blurring..." -msgstr "Moviment de difuminació" +msgstr "S'està difuminant el moviment" #: plug-ins/common/mblur.c:893 msgid "Motion Blur" -msgstr "Moviment de difuminació" +msgstr "Difuminació de moviment" #: plug-ins/common/mblur.c:915 msgid "Blur Type" msgstr "Tipus de difuminació" #: plug-ins/common/mblur.c:919 -#, fuzzy msgid "_Linear" -msgstr "Lineal" +msgstr "_Lineal" #: plug-ins/common/mblur.c:920 -#, fuzzy msgid "_Radial" -msgstr "Radial" +msgstr "_Radial" #: plug-ins/common/mblur.c:921 -#, fuzzy msgid "_Zoom" -msgstr "Zoom" +msgstr "_Zoom" #: plug-ins/common/mblur.c:930 msgid "Blur Parameters" @@ -5399,7 +5269,7 @@ #: plug-ins/common/mblur.c:956 plug-ins/common/newsprint.c:1012 msgid "_Angle:" -msgstr "_Angle:" +msgstr "_Àngle:" #: plug-ins/common/mblur.c:969 #, fuzzy @@ -5411,16 +5281,15 @@ #: plug-ins/common/mng.c:494 plug-ins/common/png.c:1562 msgid "Couldn't losslessly save transparency, saving opacity instead." msgstr "" +"No s'ha pogut desar la transparència sense pèrdues. Es desarà la opacitat." #: plug-ins/common/mng.c:1309 -#, fuzzy msgid "Save as MNG" -msgstr "Desa com a PNG" +msgstr "Desa com a MNG" #: plug-ins/common/mng.c:1322 -#, fuzzy msgid "MNG Options" -msgstr "Opcions del GIF" +msgstr "Opcions del MNG" #: plug-ins/common/mng.c:1328 msgid "Interlace" @@ -5448,37 +5317,38 @@ #: plug-ins/common/mng.c:1391 msgid "PNG" -msgstr "" +msgstr "PNG" #: plug-ins/common/mng.c:1392 msgid "JNG" -msgstr "" +msgstr "JNG" #: plug-ins/common/mng.c:1395 +#, fuzzy msgid "PNG + delta PNG" -msgstr "" +msgstr "PNG + Delta PNG" #: plug-ins/common/mng.c:1396 +#, fuzzy msgid "JNG + delta PNG" -msgstr "" +msgstr "JNG + Delta PNG" #: plug-ins/common/mng.c:1397 msgid "All PNG" -msgstr "" +msgstr "Tots els PNG" #: plug-ins/common/mng.c:1398 msgid "All JNG" -msgstr "" +msgstr "Tots els JNG" #: plug-ins/common/mng.c:1410 #, fuzzy msgid "Default chunks type:" -msgstr "Tipus de mapa per defecte" +msgstr "Tipus de bocí per defecte" #: plug-ins/common/mng.c:1413 -#, fuzzy msgid "Combine" -msgstr "Cosinus" +msgstr "Combina" #: plug-ins/common/mng.c:1414 msgid "Replace" @@ -5487,31 +5357,31 @@ #: plug-ins/common/mng.c:1425 #, fuzzy msgid "Default frame disposal:" -msgstr "Tipus de mapa per defecte" +msgstr "Dsisposició del marc per defecte:" #: plug-ins/common/mng.c:1437 #, fuzzy msgid "PNG compression level:" -msgstr "Nivell de compressió:" +msgstr "Nivell de compressió PNG:" #: plug-ins/common/mng.c:1445 plug-ins/common/png.c:1703 msgid "Choose a high compression level for small file size" -msgstr "" +msgstr "Escull un nivell de compressió alt per a una mida de fitxer petita" #: plug-ins/common/mng.c:1459 #, fuzzy msgid "JPEG compression quality:" -msgstr "Compressió RLE" +msgstr "Qualitat de compressió JPEG:" #: plug-ins/common/mng.c:1476 #, fuzzy msgid "JPEG smoothing factor:" -msgstr "Suavitat:" +msgstr "Factor de suavitzat JPEG:" #: plug-ins/common/mng.c:1486 #, fuzzy msgid "Animated MNG options" -msgstr "Opcions del GIF animat" +msgstr "Opcions del MNG animat" #: plug-ins/common/mng.c:1492 msgid "Loop" @@ -5520,27 +5390,29 @@ #: plug-ins/common/mng.c:1506 #, fuzzy msgid "Default frame delay:" -msgstr "Tipus de mapa per defecte" +msgstr "Retard del marc per defecte:" #: plug-ins/common/mng.c:1584 #, fuzzy msgid "MNG animation" -msgstr "Opcions del GIF" +msgstr "Opcions del MNG" #: plug-ins/common/mosaic.c:309 #, fuzzy msgid "_Mosaic..." msgstr "Mosaic" +# progress bar for gradient finding #. progress bar for gradient finding #: plug-ins/common/mosaic.c:435 msgid "Finding Edges..." -msgstr "S'estan cercant els marges" +msgstr "S'estan cercant les vores..." +# Progress bar for rendering tiles #. Progress bar for rendering tiles #: plug-ins/common/mosaic.c:483 msgid "Rendering Tiles..." -msgstr "S'estan executant els mosaics..." +msgstr "S'estan composant els mosaics..." #: plug-ins/common/mosaic.c:509 msgid "Mosaic" @@ -5549,100 +5421,98 @@ #: plug-ins/common/mosaic.c:544 #, fuzzy msgid "Co_lor averaging" -msgstr "Color promig" +msgstr "Co_lor promig" #: plug-ins/common/mosaic.c:554 #, fuzzy msgid "Allo_w tile splitting" -msgstr "Tots els mosaics" +msgstr "Per_met la divisió dels mosaics" #: plug-ins/common/mosaic.c:564 #, fuzzy msgid "_Pitted surfaces" -msgstr "Superfícies picades" +msgstr "Superfícies _picades" #: plug-ins/common/mosaic.c:574 #, fuzzy msgid "_FG/BG lighting" -msgstr "Lluminositat FG/BG" +msgstr "Lluminositat _primer pla/fons" +# tiling primitive #. tiling primitive #: plug-ins/common/mosaic.c:588 msgid "Tiling Primitives" msgstr "Mosaic primitius" #: plug-ins/common/mosaic.c:592 -#, fuzzy msgid "_Squares" -msgstr "Quadrats" +msgstr "_Quadrats" #: plug-ins/common/mosaic.c:593 -#, fuzzy msgid "He_xagons" -msgstr "Hexàgons" +msgstr "He_xàgons" #: plug-ins/common/mosaic.c:594 #, fuzzy msgid "Oc_tagons & squares" -msgstr "Octàgons i quadrats" +msgstr "Oc_tàgons i quadrats" #. parameter settings #: plug-ins/common/mosaic.c:603 msgid "Settings" -msgstr "Paràmetres" +msgstr "Configuració" #: plug-ins/common/mosaic.c:612 #, fuzzy msgid "T_ile size:" -msgstr "Mida del mosaic:" +msgstr "M_ida del mosaic:" #: plug-ins/common/mosaic.c:630 #, fuzzy msgid "Til_e spacing:" -msgstr "Espaiat del mosaic:" +msgstr "_Espaiat del mosaic:" #: plug-ins/common/mosaic.c:639 #, fuzzy msgid "Tile _neatness:" -msgstr "Neteja del mosaic:" +msgstr "Bo_na proporció del mosaic:" #: plug-ins/common/mosaic.c:649 #, fuzzy msgid "Light _direction:" -msgstr "Direcció de la llum:" +msgstr "_Direcció de la llum:" #: plug-ins/common/mosaic.c:658 #, fuzzy msgid "Color _variation:" -msgstr "Variació del color:" +msgstr "_Variació del color:" #: plug-ins/common/mosaic.c:2392 msgid "Unable to add additional point.\n" -msgstr "No es pot afegir punts addicionals.\n" +msgstr "No es poden afegir punts addicionals.\n" #: plug-ins/common/neon.c:135 #, fuzzy msgid "_Neon..." -msgstr "Vídeo/RGB..." +msgstr "_Cap" -#: plug-ins/common/neon.c:204 +#: plug-ins/common/neon.c:207 #, fuzzy msgid "Neon..." -msgstr "Obre..." +msgstr "S'està convertint en paper de diari..." -#: plug-ins/common/neon.c:698 +#: plug-ins/common/neon.c:697 #, fuzzy msgid "Neon Detection" msgstr "Detecció de vora" -#: plug-ins/common/neon.c:743 plug-ins/common/unsharp.c:707 -#, fuzzy +#: plug-ins/common/neon.c:742 plug-ins/common/unsharp.c:678 msgid "_Amount:" -msgstr "Quantitat:" +msgstr "Qu_antitat:" #: plug-ins/common/newsprint.c:135 msgid "Round" -msgstr "Gira" +msgstr "Rodó" #: plug-ins/common/newsprint.c:144 msgid "Line" @@ -5654,36 +5524,31 @@ #: plug-ins/common/newsprint.c:161 msgid "PS Square (Euclidean Dot)" -msgstr "PS quadrat (punt euclidià)" +msgstr "Quadrat PS (punt euclidià)" #: plug-ins/common/newsprint.c:170 msgid "PS Diamond" -msgstr "PS diamant" +msgstr "Diamant PS" #: plug-ins/common/newsprint.c:342 -#, fuzzy msgid "_Grey" -msgstr "Gris" +msgstr "_Gris" #: plug-ins/common/newsprint.c:355 -#, fuzzy msgid "R_ed" -msgstr "Vermell" +msgstr "V_ermell" #: plug-ins/common/newsprint.c:384 -#, fuzzy msgid "C_yan" -msgstr "Cian" +msgstr "C_ian" #: plug-ins/common/newsprint.c:392 -#, fuzzy msgid "Magen_ta" -msgstr "Magenta" +msgstr "Magen_ta" #: plug-ins/common/newsprint.c:400 -#, fuzzy msgid "_Yellow" -msgstr "Groc" +msgstr "Gr_oc" #: plug-ins/common/newsprint.c:421 msgid "Intensity" @@ -5692,21 +5557,20 @@ #: plug-ins/common/newsprint.c:537 #, fuzzy msgid "Newsprin_t..." -msgstr "Full de mà" +msgstr "S'està convertint en paper de diari..." #: plug-ins/common/newsprint.c:638 -#, fuzzy msgid "Newsprint..." -msgstr "Full de mà" +msgstr "S'està convertint en paper de diari..." #: plug-ins/common/newsprint.c:1042 #, fuzzy msgid "_Spot function:" -msgstr "Funció de projecció:" +msgstr "Fun_ció de punt:" #: plug-ins/common/newsprint.c:1199 msgid "Newsprint" -msgstr "Full de mà" +msgstr "Paper de diari" #. resolution settings #: plug-ins/common/newsprint.c:1243 @@ -5714,19 +5578,17 @@ msgstr "Resolució" #: plug-ins/common/newsprint.c:1262 -#, fuzzy msgid "_Input SPI:" -msgstr "Entrada SPI:" +msgstr "Entrada SP_I:" #: plug-ins/common/newsprint.c:1276 -#, fuzzy msgid "O_utput LPI:" -msgstr "Sortida LPI:" +msgstr "S_ortida LPI:" #: plug-ins/common/newsprint.c:1289 #, fuzzy msgid "C_ell size:" -msgstr "Mida de la cel·la:" +msgstr "Mida de la c_el·la:" #. screen settings #: plug-ins/common/newsprint.c:1302 plug-ins/gflare/gflare.c:562 @@ -5736,56 +5598,51 @@ #: plug-ins/common/newsprint.c:1321 #, fuzzy msgid "B_lack pullout (%):" -msgstr "Treu-ne el negre (%):" +msgstr "T_reure negre (%):" #: plug-ins/common/newsprint.c:1343 msgid "Separate to:" msgstr "Separa a:" #: plug-ins/common/newsprint.c:1347 -#, fuzzy msgid "_RGB" -msgstr "RGB" +msgstr "_RGB" #: plug-ins/common/newsprint.c:1364 -#, fuzzy msgid "C_MYK" -msgstr "CMYK" +msgstr "C_MYK" #: plug-ins/common/newsprint.c:1381 -#, fuzzy msgid "I_ntensity" -msgstr "Intensitat" +msgstr "I_ntensitat" #: plug-ins/common/newsprint.c:1406 #, fuzzy msgid "_Lock channels" -msgstr "Bloca els canals" +msgstr "B_loca els canals" #: plug-ins/common/newsprint.c:1419 #, fuzzy msgid "_Factory defaults" -msgstr "Configuració original" +msgstr "Con_figuració original" #. anti-alias control #: plug-ins/common/newsprint.c:1445 plug-ins/gfig/gfig-dialog.c:1258 msgid "Antialiasing" -msgstr "Contrarèplica" +msgstr "Suavitzat" #: plug-ins/common/newsprint.c:1453 -#, fuzzy msgid "O_versample:" -msgstr "Sobremostra:" +msgstr "So_bremostra:" #: plug-ins/common/nlfilt.c:126 #, fuzzy msgid "_NL Filter..." -msgstr "Filtre NL" +msgstr "Filtre NL..." #: plug-ins/common/nlfilt.c:954 -#, fuzzy msgid "NL Filter..." -msgstr "Filtre NL" +msgstr "Filtre NL..." #: plug-ins/common/nlfilt.c:1017 msgid "NL Filter" @@ -5796,37 +5653,36 @@ msgstr "Filtre" #: plug-ins/common/nlfilt.c:1042 -#, fuzzy msgid "_Alpha trimmed mean" -msgstr "El retallat Alfa vol dir" +msgstr "" #: plug-ins/common/nlfilt.c:1044 #, fuzzy msgid "Op_timal estimation" -msgstr "Estimació òptima" +msgstr "Estimació òp_tima" #: plug-ins/common/nlfilt.c:1046 #, fuzzy msgid "_Edge enhancement" -msgstr "Millora de les vores" +msgstr "Millora de les vor_es" #: plug-ins/common/nlfilt.c:1071 -#, fuzzy msgid "A_lpha:" -msgstr "Alfa:" +msgstr "A_lfa:" #: plug-ins/common/noisify.c:157 #, fuzzy msgid "_Scatter RGB..." -msgstr "Dispersió HSV" +msgstr "S'està dispersant HSV..." -#: plug-ins/common/noisify.c:284 +#: plug-ins/common/noisify.c:285 msgid "Adding Noise..." msgstr "S'està afegint soroll..." #: plug-ins/common/noisify.c:451 +#, fuzzy msgid "Scatter RGB" -msgstr "Dispersió RGB" +msgstr "Dispersió HSV" #: plug-ins/common/noisify.c:477 #, fuzzy @@ -5836,17 +5692,15 @@ #: plug-ins/common/noisify.c:492 #, fuzzy msgid "_Independent RGB" -msgstr "Independent" +msgstr "_Independent" #: plug-ins/common/noisify.c:516 plug-ins/common/noisify.c:520 -#, fuzzy msgid "_Gray:" -msgstr "Gris:" +msgstr "_Gris:" #: plug-ins/common/noisify.c:521 plug-ins/common/noisify.c:536 -#, fuzzy msgid "_Alpha:" -msgstr "Alfa:" +msgstr "_Alfa:" #: plug-ins/common/noisify.c:546 #, c-format @@ -5864,7 +5718,7 @@ #: plug-ins/common/nova.c:262 msgid "Rendering SuperNova..." -msgstr "S'està generant la Supernova" +msgstr "S'està composant la supernova..." #: plug-ins/common/nova.c:305 msgid "SuperNova" @@ -5872,17 +5726,16 @@ #: plug-ins/common/nova.c:342 msgid "SuperNova Color Picker" -msgstr "Seleccionador de color supernova" +msgstr "Seleccionador de color de la supernova" #: plug-ins/common/nova.c:371 -#, fuzzy msgid "_Spokes:" -msgstr "Raigs:" +msgstr "Rajo_s:" #: plug-ins/common/nova.c:386 #, fuzzy msgid "R_andom hue:" -msgstr "Tinta aleatòria:" +msgstr "To _aleatori:" #: plug-ins/common/nova.c:438 msgid "Center of SuperNova" @@ -5891,30 +5744,30 @@ #: plug-ins/common/nova.c:472 #, fuzzy msgid "S_how cursor" -msgstr "Mostra el cursor" +msgstr "_Mostra el cursor" #: plug-ins/common/oilify.c:111 #, fuzzy msgid "Oili_fy..." -msgstr "Olifica" +msgstr "Converteix en oli" -#: plug-ins/common/oilify.c:188 +#: plug-ins/common/oilify.c:189 msgid "Oil Painting..." -msgstr "Pintura a l'oli..." +msgstr "S'està convertint en pintura a l'oli..." #: plug-ins/common/oilify.c:477 msgid "Oilify" -msgstr "Olifica" +msgstr "Converteix en oli" #: plug-ins/common/oilify.c:504 #, fuzzy msgid "_Mask size:" -msgstr "Mida de la màscara:" +msgstr "_Mida de la màscara:" #: plug-ins/common/oilify.c:515 #, fuzzy msgid "_Use intensity algorithm" -msgstr "Fes servir l'algoritme d'intensitat" +msgstr "Utilitza l'alg_oritme d'intensitat" #: plug-ins/common/papertile.c:235 msgid "Paper Tile" @@ -5929,38 +5782,33 @@ msgstr "Píxels fraccionals" #: plug-ins/common/papertile.c:298 -#, fuzzy msgid "_Background" -msgstr "Fons" +msgstr "_Fons" #: plug-ins/common/papertile.c:300 -#, fuzzy msgid "_Ignore" -msgstr "Ignora" +msgstr "_Ignora" #: plug-ins/common/papertile.c:302 -#, fuzzy msgid "_Force" -msgstr "Força" +msgstr "For_ça" #: plug-ins/common/papertile.c:309 -#, fuzzy msgid "C_entering" -msgstr "Centrat" +msgstr "C_entrat" #: plug-ins/common/papertile.c:324 msgid "Movement" msgstr "Moviment" #: plug-ins/common/papertile.c:337 -#, fuzzy msgid "_Max (%):" -msgstr "Màxim (%):" +msgstr "_Màxim (%):" #: plug-ins/common/papertile.c:343 #, fuzzy msgid "_Wrap around" -msgstr "Ajusta l'entorn" +msgstr "_Ajusta l'entorn" #: plug-ins/common/papertile.c:353 msgid "Background Type" @@ -5969,36 +5817,33 @@ #: plug-ins/common/papertile.c:360 #, fuzzy msgid "I_nverted image" -msgstr "Imatge invertida" +msgstr "Imatge i_nvertida" #: plug-ins/common/papertile.c:362 -#, fuzzy msgid "Im_age" -msgstr "Imatge" +msgstr "Im_atge" #: plug-ins/common/papertile.c:364 #, fuzzy msgid "Fo_reground color" -msgstr "Color del primer pla" +msgstr "Colo_r del primer pla" #: plug-ins/common/papertile.c:366 #, fuzzy msgid "Bac_kground color" -msgstr "Color del fons" +msgstr "Co_lor del fons" #: plug-ins/common/papertile.c:368 -#, fuzzy msgid "S_elect here:" -msgstr "Caràcter seleccionat:" +msgstr "S_elecciona aquí:" #: plug-ins/common/papertile.c:375 msgid "Background Color" msgstr "Color del fons" #: plug-ins/common/papertile.c:527 -#, fuzzy msgid "Paper Tile..." -msgstr "Mosaic del paper" +msgstr "Mosaic del paper..." #: plug-ins/common/papertile.c:815 msgid "September 31, 1999" @@ -6007,7 +5852,7 @@ #: plug-ins/common/papertile.c:816 #, fuzzy msgid "_Paper Tile..." -msgstr "Mosaic del paper" +msgstr "Mosaic del paper..." #: plug-ins/common/pat.c:104 plug-ins/common/pat.c:126 #, fuzzy @@ -6017,7 +5862,7 @@ #: plug-ins/common/pat.c:343 #, c-format msgid "Invalid UTF-8 string in pattern file '%s'." -msgstr "" +msgstr "S'ha trobat una cadena UTF-8 invàlida en el fitxer de patró '%s'." #: plug-ins/common/pat.c:501 msgid "Save as Pattern" @@ -6028,34 +5873,32 @@ msgstr "" #: plug-ins/common/pcx.c:314 -#, fuzzy, c-format +#, c-format msgid "Could not read header from '%s'" -msgstr "TGA: no es pot llegir el peu de pàgina de \"%s\"\n" +msgstr "No es pot llegir la capçalera de '%s'" #: plug-ins/common/pcx.c:321 -#, fuzzy, c-format +#, c-format msgid "'%s' is not a PCX file" -msgstr "%s: no és un fitxer regular" +msgstr "'%s': no és un fitxer PCX" #: plug-ins/common/pcx.c:375 msgid "Unusual PCX flavour, giving up" -msgstr "" +msgstr "El tipus de fitxer PCX no és el normal. No se seguirà." #: plug-ins/common/photocopy.c:158 -#, fuzzy msgid "_Photocopy..." -msgstr "Quant a..." +msgstr "" #: plug-ins/common/photocopy.c:837 #, fuzzy msgid "Photocopy" msgstr "Fotografia" -#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:513 +#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:509 #: plug-ins/common/softglow.c:687 -#, fuzzy msgid "_Sharpness:" -msgstr "Afilament:" +msgstr "Afila_ment:" #: plug-ins/common/photocopy.c:895 #, fuzzy @@ -6085,14 +5928,12 @@ msgstr "Pixelitza" #: plug-ins/common/pixelize.c:337 -#, fuzzy msgid "Pixel _Width:" -msgstr "Amplada del píxel:" +msgstr "Am_plada del píxel:" #: plug-ins/common/pixelize.c:342 -#, fuzzy msgid "Pixel _Height:" -msgstr "Alçada del mosaic:" +msgstr "Al_çada del píxel:" #: plug-ins/common/plasma.c:185 #, fuzzy @@ -6110,12 +5951,11 @@ #: plug-ins/common/plasma.c:334 #, fuzzy msgid "Random _seed:" -msgstr "Inici de la generació aleatòria" +msgstr "_Llavor aleatòria:" #: plug-ins/common/plasma.c:345 -#, fuzzy msgid "T_urbulence:" -msgstr "Turbulència:" +msgstr "T_urbulència:" #: plug-ins/common/png.c:249 plug-ins/common/png.c:266 #: plug-ins/common/png.c:281 plug-ins/common/png.c:295 @@ -6125,24 +5965,26 @@ #: plug-ins/common/png.c:657 #, c-format msgid "Error while reading '%s'. File corrupted?" -msgstr "" +msgstr "S'ha produït un error en llegir '%s'. Potser el fitxer està corromput." #. Aie! Unknown type #: plug-ins/common/png.c:791 #, c-format msgid "Unknown color model in PNG file '%s'." -msgstr "" +msgstr "No es coneix el model de color del fitxer PNG '%s'." #: plug-ins/common/png.c:846 msgid "" "The PNG file specifies an offset that caused the layer to be positioned " "outside the image." msgstr "" +"El fitxer PNG especifica un desplaçament que ha causat que la capa es " +"posicioni fora de la imatge." #: plug-ins/common/png.c:1163 #, c-format msgid "Error while saving '%s'. Could not save image." -msgstr "" +msgstr "S'ha produït un error en desar '%s'. No s'ha pogut desar la imatge." #: plug-ins/common/png.c:1591 msgid "Save as PNG" @@ -6151,94 +5993,91 @@ #: plug-ins/common/png.c:1595 #, fuzzy msgid "_Load defaults" -msgstr "Configuració original" +msgstr "Carrega e_ls predeterminats" #: plug-ins/common/png.c:1596 #, fuzzy msgid "_Save defaults" -msgstr "Paràmetres per defecte" +msgstr "De_sa els predeterminats" #: plug-ins/common/png.c:1617 -#, fuzzy msgid "_Interlacing (Adam7)" -msgstr "S'està entrellaçant(Adam7)" +msgstr "_Entrellaçat (Adam7)" #: plug-ins/common/png.c:1628 #, fuzzy msgid "Save _background color" -msgstr "Desa el color de fons" +msgstr "Desa el color de _fons" #: plug-ins/common/png.c:1636 #, fuzzy msgid "Save _gamma" -msgstr "Desa el gamma" +msgstr "Desa la _gamma" #: plug-ins/common/png.c:1645 #, fuzzy msgid "Save layer o_ffset" -msgstr "Desa la capa Desplaçament" +msgstr "Desa el des_plaçament de la capa" #: plug-ins/common/png.c:1654 #, fuzzy msgid "Save _resolution" -msgstr "Desa la resolució" +msgstr "Desa la _resolució" #: plug-ins/common/png.c:1663 #, fuzzy msgid "Save creation _time" -msgstr "Desa el moment de creació" +msgstr "Desa el momen_t de creació" #: plug-ins/common/png.c:1671 #, fuzzy msgid "Save comme_nt" -msgstr "Desa l'actual" +msgstr "Desa el come_ntari" #: plug-ins/common/png.c:1686 +#, fuzzy msgid "Save color _values from transparent pixels" -msgstr "" +msgstr "Desa el valor dels _colors dels píxels transparents" #: plug-ins/common/png.c:1699 #, fuzzy msgid "Co_mpression level:" -msgstr "Nivell de compressió:" +msgstr "Nivell de co_mpressió:" #: plug-ins/common/png.c:1819 msgid "Could not load PNG defaults" -msgstr "" +msgstr "No s'ha pogut carregar la configuració predeterminada de PNG" #: plug-ins/common/pnm.c:228 #, fuzzy msgid "PNM Image" -msgstr "Imatge" +msgstr "Im_atge" #: plug-ins/common/pnm.c:248 msgid "PNM image" msgstr "" #: plug-ins/common/pnm.c:260 -#, fuzzy msgid "PGM image" -msgstr "Visualització prèvia JPEG" +msgstr "" #: plug-ins/common/pnm.c:272 -#, fuzzy msgid "PPM image" -msgstr "Imatge" +msgstr "" #: plug-ins/common/pnm.c:465 plug-ins/common/pnm.c:486 #: plug-ins/common/pnm.c:493 plug-ins/common/pnm.c:502 #: plug-ins/common/pnm.c:577 plug-ins/common/pnm.c:633 msgid "PNM: Premature end of file." -msgstr "PNM: final prematur del fitxer." +msgstr "PNM: fi de fitxer prematur." #: plug-ins/common/pnm.c:467 msgid "PNM: Invalid file." msgstr "PNM: el fitxer no és vàlid." #: plug-ins/common/pnm.c:480 -#, fuzzy msgid "File not in a supported format." -msgstr "PNM: el fitxer està en un format no permès." +msgstr "El fitxer està en un format no permès." #: plug-ins/common/pnm.c:489 msgid "PNM: Invalid X resolution." @@ -6254,11 +6093,11 @@ #: plug-ins/common/pnm.c:684 msgid "PNM: Error reading file." -msgstr "PNM: S'ha produït un error en llegir el fitxer." +msgstr "PNM: s'ha produït un error en llegir el fitxer." #: plug-ins/common/pnm.c:800 msgid "PNM save cannot handle images with alpha channels." -msgstr "En desar amb PNM no es poden gestionar imatges amb canals alfa." +msgstr "En desar en PNM no es poden gestionar imatges amb canals alfa." #: plug-ins/common/pnm.c:949 msgid "Save as PNM" @@ -6272,7 +6111,7 @@ #: plug-ins/common/pnm.c:963 msgid "Raw" -msgstr "En brut" +msgstr "Cru" #: plug-ins/common/pnm.c:964 msgid "Ascii" @@ -6293,85 +6132,84 @@ #: plug-ins/common/polar.c:620 #, fuzzy msgid "Circle _depth in percent:" -msgstr "Encercla la profunditat en percentage:" +msgstr "Profun_ditat circular en percentatge:" #: plug-ins/common/polar.c:632 #, fuzzy msgid "Offset _angle:" -msgstr "Angle de desplaçament:" +msgstr "_Angle de desplaçament:" #: plug-ins/common/polar.c:647 #, fuzzy msgid "_Map backwards" -msgstr "Mapa Endarrere" +msgstr "_Mapa endarrere" #: plug-ins/common/polar.c:653 msgid "" "If checked the mapping will begin at the right side, as opposed to beginning " "at the left." msgstr "" -"Si heu comprovat el mapatge, començarà a la banda dreta, oposada al " -"començament a l'esquerra." +"Si està habilitat, el mapatge començarà a la banda dreta,si no començarà a " +"l'esquerra." #: plug-ins/common/polar.c:664 #, fuzzy msgid "Map from _top" -msgstr "Mapa des de dalt" +msgstr "_Mapa des del capdamunt" #: plug-ins/common/polar.c:670 msgid "" "If unchecked the mapping will put the bottom row in the middle and the top " "row on the outside. If checked it will be the opposite." msgstr "" -"Si no heu comprovat el mapatge, la fila inferior es col·locarà al mig i la " -"superior, fora dels límits. Si ho comproveu passarà al revés." +"Si no està habilitat, el mapa posarà la fila inferior al mig i la superior " +"fora dels límits. Si està habilitat, passarà a l'inrevés." #: plug-ins/common/polar.c:682 #, fuzzy msgid "To _polar" -msgstr "A polar" +msgstr "A _polar" #: plug-ins/common/polar.c:688 msgid "" "If unchecked the image will be circularly mapped onto a rectangle. If " "checked the image will be mapped onto a circle." msgstr "" -"Si no heu comprovat la imatge, se'n farà un mapatge circular dins un " -"rectangle. Si l'heu comprovada, el mapatge es farà dins un cercle." +"Si no està habilitat, la imatge es mapejarà circularment dins d'un " +"rectangle. Si està habilitat, es mapejarà dins d'un cercle." #: plug-ins/common/postscript.c:576 plug-ins/common/postscript.c:662 #, fuzzy msgid "PostScript document" -msgstr "PostScript Nivell 2" +msgstr "_PostScript nivell 2" #: plug-ins/common/postscript.c:595 plug-ins/common/postscript.c:677 #, fuzzy msgid "Encapsulated PostScript image" -msgstr "PostScript encapsulat" +msgstr "PostScript _encapsulat" #: plug-ins/common/postscript.c:614 msgid "PDF document" msgstr "" #: plug-ins/common/postscript.c:1005 -#, fuzzy, c-format +#, c-format msgid "Could not interpret '%s'" -msgstr "no s'ha pogut obrir \"%s\"" +msgstr "No s'ha pogut interpretar '%s'" #: plug-ins/common/postscript.c:1103 msgid "PostScript save cannot handle images with alpha channels" -msgstr "" -"La funció de desar del PostScript no pot gestionar imatges amb canals alfa" +msgstr "El desat en PostScript no pot gestionar imatges amb canals alfa" #: plug-ins/common/postscript.c:1622 #, c-format msgid "Error starting ghostscript (%s)" -msgstr "" +msgstr "S'ha produït un error en iniciar el ghostscript (%s)" #: plug-ins/common/postscript.c:1652 #, fuzzy, c-format msgid "Error starting ghostscript: %s" -msgstr "GIF: s'ha produït un error en escriure el fitxer de sortida\n" +msgstr "S'ha produït un error en iniciar el ghostscript (%s)" #: plug-ins/common/postscript.c:2472 plug-ins/common/postscript.c:2605 #: plug-ins/common/postscript.c:2757 plug-ins/common/postscript.c:2886 @@ -6385,10 +6223,11 @@ msgid "Load PostScript" msgstr "Carrega el PostScript" +# Rendering #. Rendering #: plug-ins/common/postscript.c:2933 msgid "Rendering" -msgstr "S'està generant una visualització realista" +msgstr "S'està composant" #. Resolution #: plug-ins/common/postscript.c:2949 plug-ins/common/svg.c:882 @@ -6406,7 +6245,7 @@ #: plug-ins/common/postscript.c:2985 msgid "Try Bounding Box" -msgstr "Intenta delimitar el quadre" +msgstr "" #. Colouring #: plug-ins/common/postscript.c:2998 @@ -6415,7 +6254,7 @@ #: plug-ins/common/postscript.c:3002 msgid "B/W" -msgstr "N/B" +msgstr "B/N" #: plug-ins/common/postscript.c:3003 plug-ins/rcm/rcm_dialog.c:404 msgid "Gray" @@ -6434,7 +6273,7 @@ #: plug-ins/common/postscript.c:3015 #, fuzzy msgid "Text antialiasing" -msgstr "Text de contrarèplica" +msgstr "Text suavitzat" #: plug-ins/common/postscript.c:3020 plug-ins/common/postscript.c:3032 msgid "Weak" @@ -6447,7 +6286,7 @@ #: plug-ins/common/postscript.c:3027 #, fuzzy msgid "Graphic antialiasing" -msgstr "Gràfica de contrarèplica" +msgstr "Imatge suavitzada" #: plug-ins/common/postscript.c:3079 msgid "Save as PostScript" @@ -6461,7 +6300,7 @@ #: plug-ins/common/postscript.c:3152 #, fuzzy msgid "_Keep aspect ratio" -msgstr "Conserva l'aspecte amb la ràtio" +msgstr "_Conserva la relació d'aspecte" #: plug-ins/common/postscript.c:3158 msgid "" @@ -6469,7 +6308,7 @@ "without changing the aspect ratio." msgstr "" "En commutar, la imatge resultant es reduirà per encaixar en la mida donada " -"sense canviar l'aspecte amb la ràtio." +"sense canviar la relació d'aspecte." #. Unit #: plug-ins/common/postscript.c:3167 @@ -6477,14 +6316,12 @@ msgstr "Unitat" #: plug-ins/common/postscript.c:3171 -#, fuzzy msgid "_Inch" -msgstr "Polzada" +msgstr "_Polzada" #: plug-ins/common/postscript.c:3172 -#, fuzzy msgid "_Millimeter" -msgstr "Mil·límetre" +msgstr "_Milímetre" #. Format #: plug-ins/common/postscript.c:3198 @@ -6494,26 +6331,24 @@ #: plug-ins/common/postscript.c:3204 #, fuzzy msgid "_PostScript level 2" -msgstr "PostScript Nivell 2" +msgstr "_PostScript nivell 2" #: plug-ins/common/postscript.c:3213 -#, fuzzy msgid "_Encapsulated PostScript" -msgstr "PostScript encapsulat" +msgstr "PostScript _encapsulat" #: plug-ins/common/postscript.c:3222 -#, fuzzy msgid "P_review" -msgstr "Visualització prèvia" +msgstr "P_revisualitza" #: plug-ins/common/postscript.c:3243 #, fuzzy msgid "Preview _size:" -msgstr "Previsualitza la mida:" +msgstr "Mida de previ_sualització:" #: plug-ins/common/psd.c:489 msgid "Invalid UTF-8 string in PSD file" -msgstr "" +msgstr "Hi ha una cadena UTF-8 no vàlida en el fitxer PSD" #: plug-ins/common/psd_save.c:181 msgid "Photoshop image" @@ -6556,20 +6391,20 @@ #: plug-ins/common/randomize.c:107 msgid "Random Hurl 1.7" -msgstr "Random Hurl 1.7" +msgstr "Llença aleatòriament 1.7" #: plug-ins/common/randomize.c:108 msgid "Random Pick 1.7" -msgstr "Random Pick 1.7" +msgstr "Tria aleatòriament 1.7" #: plug-ins/common/randomize.c:109 msgid "Random Slur 1.7" -msgstr "Random Slur 1.7" +msgstr "Murmuri aleatori 1.7" #: plug-ins/common/randomize.c:244 #, fuzzy msgid "_Hurl..." -msgstr "Ajuda..." +msgstr "Pàgina del rínxol..." #: plug-ins/common/randomize.c:256 msgid "_Pick..." @@ -6583,39 +6418,37 @@ #: plug-ins/common/randomize.c:756 plug-ins/common/snoise.c:614 #, fuzzy msgid "_Random seed:" -msgstr "Inici de la generació aleatòria" +msgstr "Llavo_r aleatòria:" #: plug-ins/common/randomize.c:765 -#, fuzzy msgid "R_andomization (%):" -msgstr "Aleació (%):" +msgstr "_Aleatorietat (%):" #: plug-ins/common/randomize.c:768 msgid "Percentage of pixels to be filtered" msgstr "Percentatge de píxels que es filtraran" #: plug-ins/common/randomize.c:777 -#, fuzzy msgid "R_epeat:" -msgstr "Repeteix:" +msgstr "R_epeteix:" #: plug-ins/common/randomize.c:780 msgid "Number of times to apply filter" msgstr "Nombre de vegades que cal aplicar el filtre" #: plug-ins/common/raw.c:166 plug-ins/common/raw.c:181 +#, fuzzy msgid "Raw Image Data" -msgstr "" +msgstr "Actualitza la imatge" #: plug-ins/common/raw.c:915 -#, fuzzy msgid "Raw Image Loader" -msgstr "/Capa" +msgstr "" #: plug-ins/common/raw.c:943 #, fuzzy msgid "Image" -msgstr "Imatge" +msgstr "Im_atge" #: plug-ins/common/raw.c:955 msgid "Planar RGB" @@ -6624,7 +6457,7 @@ #: plug-ins/common/raw.c:956 #, fuzzy msgid "Indexed" -msgstr "Índex" +msgstr "_Independent" #: plug-ins/common/raw.c:961 #, fuzzy @@ -6634,7 +6467,7 @@ #: plug-ins/common/raw.c:1011 #, fuzzy msgid "Palette" -msgstr "Paleta web" +msgstr "Patró" #: plug-ins/common/raw.c:1021 plug-ins/common/raw.c:1109 msgid "R, G, B (normal)" @@ -6647,7 +6480,7 @@ #: plug-ins/common/raw.c:1027 #, fuzzy msgid "_Palette Type:" -msgstr "Tipus de paleta" +msgstr "Tipus de patró RGB" #: plug-ins/common/raw.c:1038 #, fuzzy @@ -6662,12 +6495,12 @@ #: plug-ins/common/raw.c:1053 #, fuzzy msgid "Pal_ette File:" -msgstr "Tipus de paleta" +msgstr "Desa el fitxer" #: plug-ins/common/raw.c:1081 #, fuzzy msgid "Raw Image Save" -msgstr "Configura l'escala de la imatge" +msgstr "Mida de la imatge" #: plug-ins/common/raw.c:1095 #, fuzzy @@ -6686,17 +6519,17 @@ #: plug-ins/common/raw.c:1105 #, fuzzy msgid "Indexed Palette Type" -msgstr "Tipus de paleta" +msgstr "Tipus de patró RGB" #: plug-ins/common/retinex.c:167 #, fuzzy msgid "_Retinex..." -msgstr "So de mar..." +msgstr "S'està girant..." #: plug-ins/common/retinex.c:250 #, fuzzy msgid "Retinex..." -msgstr "S'està rotant..." +msgstr "S'està girant..." #: plug-ins/common/retinex.c:252 msgid "Retinex (4/4): updated..." @@ -6705,26 +6538,25 @@ #: plug-ins/common/retinex.c:289 #, fuzzy msgid "Retinex Image Enhancement" -msgstr "Millora de les vores" +msgstr "Millora de les vor_es" #: plug-ins/common/retinex.c:310 msgid "Level" msgstr "" #: plug-ins/common/retinex.c:314 -#, fuzzy msgid "_Uniform" -msgstr "Editor de l'unitat." +msgstr "" #: plug-ins/common/retinex.c:316 #, fuzzy msgid "_Low" -msgstr "Inferior" +msgstr "_Inferior" #: plug-ins/common/retinex.c:318 #, fuzzy msgid "_High" -msgstr "Alçada" +msgstr "Al_çada" #: plug-ins/common/retinex.c:343 #, fuzzy @@ -6734,7 +6566,7 @@ #: plug-ins/common/retinex.c:358 #, fuzzy msgid "_Scale division:" -msgstr "Divisió:" +msgstr "_Divisió:" #: plug-ins/common/retinex.c:373 msgid "_Dynamic:" @@ -6743,26 +6575,27 @@ #: plug-ins/common/retinex.c:647 #, fuzzy msgid "Retinex: Filtering..." -msgstr "Moviment de difuminació" +msgstr "S'està difuminant el moviment" #: plug-ins/common/ripple.c:138 #, fuzzy msgid "_Ripple..." -msgstr "So de mar..." +msgstr "S'està onejant..." -#: plug-ins/common/ripple.c:219 +#: plug-ins/common/ripple.c:222 msgid "Rippling..." -msgstr "So de mar..." +msgstr "S'està onejant..." #: plug-ins/common/ripple.c:472 msgid "Ripple" -msgstr "So de mar" +msgstr "Ona" #: plug-ins/common/ripple.c:522 #, fuzzy msgid "_Retain tilability" -msgstr "Retenir el mosaic" +msgstr "Es pot fe_r mosaic" +# Edges toggle box #. Edges toggle box #: plug-ins/common/ripple.c:556 msgid "Edges" @@ -6771,43 +6604,39 @@ #. Wave toggle box #: plug-ins/common/ripple.c:584 msgid "Wave Type" -msgstr "Tipus d'onada" +msgstr "Tipus d'ona" #: plug-ins/common/ripple.c:588 -#, fuzzy msgid "Saw_tooth" -msgstr "Dent de serra" +msgstr "Den_t de serra" #: plug-ins/common/ripple.c:589 -#, fuzzy msgid "S_ine" -msgstr "Sinus" +msgstr "S_inus" #: plug-ins/common/ripple.c:612 -#, fuzzy msgid "_Period:" -msgstr "Període:" +msgstr "_Període:" #: plug-ins/common/ripple.c:625 -#, fuzzy msgid "A_mplitude:" -msgstr "Amplitud:" +msgstr "A_mplitud:" #: plug-ins/common/rotate.c:421 msgid "You can not rotate the whole image if there's a selection." -msgstr "No es pot rotar la imatge sencera si hi ha una selecció." +msgstr "No es pot girar la imatge sencera si hi ha una selecció." #: plug-ins/common/rotate.c:428 msgid "You can not rotate the whole image if there's a floating selection." -msgstr "No es pot rotar la imatge sencera si hi ha una selecció flotant." +msgstr "No es pot girar la imatge sencera si hi ha una selecció flotant." #: plug-ins/common/rotate.c:439 msgid "Sorry, channels and masks can not be rotated." -msgstr "Els canals i les màscares no es poden fer rotar." +msgstr "Els canals i les màscares no es poden girar." #: plug-ins/common/rotate.c:445 msgid "Rotating..." -msgstr "S'està rotant..." +msgstr "S'està girant..." #: plug-ins/common/sample_colorize.c:296 #, fuzzy @@ -6821,7 +6650,7 @@ #: plug-ins/common/sample_colorize.c:1315 #, fuzzy msgid "Get sample colors" -msgstr "Obtingues els colors de mostra" +msgstr "Obté colors de mostra" #: plug-ins/common/sample_colorize.c:1317 msgid "Apply" @@ -6830,22 +6659,24 @@ #. layer combo_box (Dst) #: plug-ins/common/sample_colorize.c:1335 msgid "Destination:" -msgstr "Destinació:" +msgstr "Destí:" #. layer combo_box (Sample) #: plug-ins/common/sample_colorize.c:1351 msgid "Sample:" msgstr "Mostra:" +# Add extra menu items for Inverted Gradient #: plug-ins/common/sample_colorize.c:1361 #, fuzzy msgid "From reverse gradient" -msgstr "Torna a explorar les gradacions" +msgstr "D'un degradat invers" +# Add extra menu items for Gradient #: plug-ins/common/sample_colorize.c:1366 #, fuzzy msgid "From gradient" -msgstr "Gradient personalitzat" +msgstr "D'un degradat" #. check button #: plug-ins/common/sample_colorize.c:1387 @@ -6864,18 +6695,17 @@ #: plug-ins/common/sample_colorize.c:1538 #, fuzzy msgid "Input levels:" -msgstr "En el nivell:" +msgstr "Nivells d'entrada:" #: plug-ins/common/sample_colorize.c:1588 -#, fuzzy msgid "Output Levels:" -msgstr "Fora del nivell:" +msgstr "Nivells de sortida:" #. check button #: plug-ins/common/sample_colorize.c:1628 #, fuzzy msgid "Hold intensity" -msgstr "Retenir la intensitat" +msgstr "Reté intensitat" #. check button #: plug-ins/common/sample_colorize.c:1639 @@ -6887,13 +6717,13 @@ #: plug-ins/common/sample_colorize.c:1657 #, fuzzy msgid "Use subcolors" -msgstr "Fes servir subcolors" +msgstr "Utilitza subcolors" #. check button #: plug-ins/common/sample_colorize.c:1668 #, fuzzy msgid "Smooth samples" -msgstr "Colors de mostra suaus" +msgstr "Mostres suaus" #: plug-ins/common/sample_colorize.c:2632 msgid "Sample Analyze..." @@ -6906,128 +6736,114 @@ #: plug-ins/common/scatter_hsv.c:113 #, fuzzy msgid "S_catter HSV..." -msgstr "Dispersió HSV" +msgstr "S'està dispersant HSV..." #: plug-ins/common/scatter_hsv.c:208 -#, fuzzy msgid "Scattering HSV..." -msgstr "Dispersió HSV" +msgstr "S'està dispersant HSV..." #: plug-ins/common/scatter_hsv.c:344 msgid "Scatter HSV" msgstr "Dispersió HSV" #: plug-ins/common/scatter_hsv.c:372 -#, fuzzy msgid "_Holdness:" -msgstr "Disposició:" +msgstr "_Retenció" #: plug-ins/common/scatter_hsv.c:384 -#, fuzzy msgid "H_ue:" -msgstr "Tinta:" +msgstr "_To:" #: plug-ins/common/scatter_hsv.c:396 -#, fuzzy msgid "_Saturation:" -msgstr "Saturació:" +msgstr "_Saturació:" #: plug-ins/common/scatter_hsv.c:408 -#, fuzzy msgid "_Value:" -msgstr "Valor:" +msgstr "_Valor:" #: plug-ins/common/screenshot.c:257 plug-ins/winsnap/winsnap.c:990 #, fuzzy msgid "_Screen Shot..." -msgstr "Mostra la pantalla" +msgstr "Captura de pantalla" #: plug-ins/common/screenshot.c:395 -#, fuzzy msgid "Error grabbing the pointer" -msgstr "S'ha produït un error en llegir el fitxer" +msgstr "S'ha produït un error en obtenir el punter" #: plug-ins/common/screenshot.c:471 -#, fuzzy msgid "Loading Screen Shot..." -msgstr "Mostra la pantalla" +msgstr "S'està carregant la captura de pantalla..." #: plug-ins/common/screenshot.c:478 plug-ins/common/screenshot.c:638 msgid "Screen Shot" -msgstr "Mostra la pantalla" +msgstr "Captura de pantalla" #: plug-ins/common/screenshot.c:586 msgid "Specified window not found" -msgstr "" +msgstr "No s'ha trobat la finestra especificada" #: plug-ins/common/screenshot.c:609 -#, fuzzy msgid "Error obtaining Screen Shot" -msgstr "S'ha produït un error en obrir: %s" +msgstr "S'ha produït un error en obtenir la captura de pantalla" #. single window #: plug-ins/common/screenshot.c:643 plug-ins/common/screenshot.c:673 #: plug-ins/winsnap/winsnap.c:866 msgid "Grab" -msgstr "Adquisició" +msgstr "Obté" #: plug-ins/common/screenshot.c:680 -#, fuzzy msgid "a _Single Window" -msgstr "Finestra sola" +msgstr "una _sola finestra" #: plug-ins/common/screenshot.c:698 -#, fuzzy msgid "S_elect Window After" -msgstr "Selector" +msgstr "S_elecciona la finestra després" #: plug-ins/common/screenshot.c:713 plug-ins/common/screenshot.c:755 msgid "Seconds Delay" msgstr "Segons de retard" #: plug-ins/common/screenshot.c:719 -#, fuzzy msgid "the _Whole Screen" -msgstr "Pantalla sencera" +msgstr "la pa_ntalla sencera" #: plug-ins/common/screenshot.c:740 -#, fuzzy msgid "Grab _After" -msgstr "després" +msgstr "O_bté després" #: plug-ins/common/sel_gauss.c:107 #, fuzzy msgid "_Selective Gaussian Blur..." -msgstr "Difusió gaussiana selectiva" +msgstr "Desenfocat gaussià selectiu..." -#: plug-ins/common/sel_gauss.c:186 -#, fuzzy +#: plug-ins/common/sel_gauss.c:187 msgid "Selective Gaussian Blur..." -msgstr "Difusió gaussiana selectiva" +msgstr "Desenfocat gaussià selectiu..." -#: plug-ins/common/sel_gauss.c:224 +#: plug-ins/common/sel_gauss.c:225 msgid "Selective Gaussian Blur" -msgstr "Difusió gaussiana selectiva" +msgstr "Desenfocat gaussià selectiu" -#: plug-ins/common/sel_gauss.c:256 +#: plug-ins/common/sel_gauss.c:257 #, fuzzy msgid "_Blur radius:" -msgstr "Radi de difuminació:" +msgstr "Radi de desen_focat:" -#: plug-ins/common/sel_gauss.c:266 +#: plug-ins/common/sel_gauss.c:267 #, fuzzy msgid "_Max. delta:" -msgstr "Màx. Delta:" +msgstr "Delta _màxim:" #: plug-ins/common/semiflatten.c:77 #, fuzzy msgid "_Semi-Flatten" -msgstr "Mig pla..." +msgstr "S'està semiaplanant..." #: plug-ins/common/semiflatten.c:122 -#, fuzzy msgid "Semi-Flattening..." -msgstr "Mig pla..." +msgstr "S'està semiaplanant..." #: plug-ins/common/sharpen.c:124 #, fuzzy @@ -7037,21 +6853,20 @@ #. #. * Let the user know what we're doing... #. -#: plug-ins/common/sharpen.c:315 +#: plug-ins/common/sharpen.c:311 msgid "Sharpening..." msgstr "S'està afilant..." -#: plug-ins/common/sharpen.c:484 -#, fuzzy +#: plug-ins/common/sharpen.c:480 msgid "Sharpen" -msgstr "Afila - %s" +msgstr "Afila" #: plug-ins/common/shift.c:113 #, fuzzy msgid "_Shift..." msgstr "S'està decalant..." -#: plug-ins/common/shift.c:191 +#: plug-ins/common/shift.c:194 msgid "Shifting..." msgstr "S'està decalant..." @@ -7062,17 +6877,17 @@ #: plug-ins/common/shift.c:373 #, fuzzy msgid "Shift _horizontally" -msgstr "Decala horitzontalment" +msgstr "Decala _horitzontalment" #: plug-ins/common/shift.c:374 #, fuzzy msgid "Shift _vertically" -msgstr "Decala verticalment" +msgstr "Decala _verticalment" #: plug-ins/common/shift.c:404 #, fuzzy msgid "Shift _amount:" -msgstr "Decala una quantitat:" +msgstr "Qu_antitat de decalatge:" #: plug-ins/common/sinus.c:191 #, fuzzy @@ -7081,7 +6896,7 @@ #: plug-ins/common/sinus.c:284 msgid "Sinus: rendering..." -msgstr "Sinus: s'està generant..." +msgstr "Sinus: s'està composant..." #. Create Main window with a vbox #. ============================== @@ -7091,22 +6906,19 @@ #: plug-ins/common/sinus.c:683 msgid "Drawing Settings" -msgstr "S'estan dibuixant els paràmetres" +msgstr "Paràmetres de dibuix" #: plug-ins/common/sinus.c:693 -#, fuzzy msgid "_X Scale:" -msgstr "Escala X" +msgstr "Escala _X:" #: plug-ins/common/sinus.c:702 -#, fuzzy msgid "_Y Scale:" -msgstr "Escala Y:" +msgstr "Escala _Y:" #: plug-ins/common/sinus.c:711 -#, fuzzy msgid "Co_mplexity:" -msgstr "Complexitat:" +msgstr "Co_mplexitat:" #: plug-ins/common/sinus.c:721 msgid "Calculation Settings" @@ -7115,22 +6927,20 @@ #: plug-ins/common/sinus.c:734 #, fuzzy msgid "R_andom seed:" -msgstr "Inici de la generació aleatòria" +msgstr "Llavor _aleatòria:" #: plug-ins/common/sinus.c:743 #, fuzzy msgid "_Force tiling?" -msgstr "Voleu fer un mosaic per força?" +msgstr "Voleu _fer-ho en mosaic igualment?" #: plug-ins/common/sinus.c:756 -#, fuzzy msgid "_Ideal" -msgstr "Ideal" +msgstr "_Ideal" #: plug-ins/common/sinus.c:757 -#, fuzzy msgid "_Distorted" -msgstr "Distorsionat" +msgstr "_Distorsionat" #: plug-ins/common/sinus.c:775 plug-ins/common/sinus.c:791 #: plug-ins/imagemap/imap_preferences.c:516 @@ -7140,22 +6950,21 @@ #. if in grey scale, the colors are necessarily black and white #: plug-ins/common/sinus.c:784 msgid "The colors are white and black." -msgstr "Els colors són en blanc i negre." +msgstr "Els colors són el blanc i el negre." #: plug-ins/common/sinus.c:795 #, fuzzy msgid "Bl_ack & white" -msgstr "Blanc i negre" +msgstr "Bl_anc i negre" #: plug-ins/common/sinus.c:797 #, fuzzy msgid "_Foreground & background" -msgstr "Primer pla i segon pla" +msgstr "Primer pla i _fons" #: plug-ins/common/sinus.c:799 -#, fuzzy msgid "C_hoose here:" -msgstr "Escolliu aquí:" +msgstr "Esco_lliu aquí:" #: plug-ins/common/sinus.c:812 #, fuzzy @@ -7172,48 +6981,40 @@ msgstr "Canals alfa" #: plug-ins/common/sinus.c:848 -#, fuzzy msgid "F_irst Color:" -msgstr "Primer color:" +msgstr "Pr_imer color:" #: plug-ins/common/sinus.c:863 -#, fuzzy msgid "S_econd Color:" -msgstr "Segon color:" +msgstr "S_egon color:" #: plug-ins/common/sinus.c:888 msgid "Blend Settings" -msgstr "Barreja els paràmetres" +msgstr "Paràmetres de mescla" #: plug-ins/common/sinus.c:901 -#, fuzzy msgid "L_inear" -msgstr "Lineal" +msgstr "L_ineal" #: plug-ins/common/sinus.c:902 -#, fuzzy msgid "Bili_near" -msgstr "Bilineal" +msgstr "Bili_neal" #: plug-ins/common/sinus.c:903 -#, fuzzy msgid "Sin_usoidal" -msgstr "Sinusoïdal" +msgstr "Sin_usoïdal" #: plug-ins/common/sinus.c:915 -#, fuzzy msgid "_Exponent:" -msgstr "Exponent:" +msgstr "_Exponent:" #: plug-ins/common/sinus.c:925 -#, fuzzy msgid "_Blend" -msgstr "Barreja" +msgstr "_Mescla" #: plug-ins/common/sinus.c:1042 -#, fuzzy msgid "Do _Preview" -msgstr "Fes la visualització prèvia" +msgstr "Fes la _previsualització" #: plug-ins/common/smooth_palette.c:88 #, fuzzy @@ -7221,7 +7022,6 @@ msgstr "Paleta suau" #: plug-ins/common/smooth_palette.c:180 -#, fuzzy msgid "Deriving Smooth Palette..." msgstr "S'està derivant la paleta suau..." @@ -7232,7 +7032,7 @@ #: plug-ins/common/smooth_palette.c:445 #, fuzzy msgid "_Search depth:" -msgstr "Temps de cerca:" +msgstr "Profundi_tat de cerca:" #: plug-ins/common/snoise.c:186 #, fuzzy @@ -7249,64 +7049,59 @@ msgstr "Soroll sòlid" #: plug-ins/common/snoise.c:627 -#, fuzzy msgid "_Detail:" -msgstr "Detall:" +msgstr "_Detall:" #. Turbulent #: plug-ins/common/snoise.c:637 -#, fuzzy msgid "T_urbulent" -msgstr "Turbulent" +msgstr "T_urbulent" #. Tilable #: plug-ins/common/snoise.c:651 -#, fuzzy msgid "T_ilable" -msgstr "Se'n pot fer un mosaic" +msgstr "Fer un mosa_ic" #: plug-ins/common/snoise.c:666 #, fuzzy msgid "_X size:" -msgstr "Mida X:" +msgstr "Mida _X:" #: plug-ins/common/snoise.c:679 #, fuzzy msgid "_Y size:" -msgstr "Mida Y:" +msgstr "Mida _Y:" #: plug-ins/common/sobel.c:119 #, fuzzy msgid "_Sobel..." msgstr "Font..." -#: plug-ins/common/sobel.c:226 +#: plug-ins/common/sobel.c:227 msgid "Sobel Edge Detection" msgstr "Detecció de vores Sobel" -#: plug-ins/common/sobel.c:248 -#, fuzzy +#: plug-ins/common/sobel.c:249 msgid "Sobel _Horizontally" -msgstr "Sobel horitzontal" +msgstr "Sobel _horitzontal" -#: plug-ins/common/sobel.c:260 -#, fuzzy +#: plug-ins/common/sobel.c:261 msgid "Sobel _Vertically" -msgstr "Sobel vertical" +msgstr "Sobel _vertical" -#: plug-ins/common/sobel.c:272 +#: plug-ins/common/sobel.c:273 #, fuzzy msgid "_Keep sign of result (one direction only)" -msgstr "Conserva el signe del resultat (només en una direcció)" +msgstr "_Conserva el signe del resultat (només en una direcció)" -#: plug-ins/common/sobel.c:358 +#: plug-ins/common/sobel.c:359 msgid "Sobel Edge Detecting..." -msgstr "Detecció de vores Sobel..." +msgstr "S'esta detectant vores Sobel..." #: plug-ins/common/softglow.c:138 #, fuzzy msgid "_Softglow..." -msgstr "Font..." +msgstr "S'està decalant..." #: plug-ins/common/softglow.c:629 msgid "Softglow" @@ -7315,25 +7110,24 @@ #: plug-ins/common/softglow.c:659 #, fuzzy msgid "_Glow radius:" -msgstr "Radi de difuminació:" +msgstr "Radi de desen_focat:" #: plug-ins/common/sparkle.c:186 #, fuzzy msgid "_Sparkle..." -msgstr "Està centellejant..." +msgstr "S'estan dibuixant les guspires..." #: plug-ins/common/sparkle.c:292 msgid "Sparkling..." -msgstr "Està centellejant..." +msgstr "S'estan dibuixant les guspires..." #: plug-ins/common/sparkle.c:343 msgid "Sparkle" -msgstr "Centelleig" +msgstr "Guspires" #: plug-ins/common/sparkle.c:366 -#, fuzzy msgid "Luminosity _Threshold:" -msgstr "Llindar de lluminositat:" +msgstr "Llindar de lluminosi_tat:" #: plug-ins/common/sparkle.c:369 msgid "Adjust the Luminosity Threshold" @@ -7342,7 +7136,7 @@ #: plug-ins/common/sparkle.c:376 #, fuzzy msgid "F_lare intensity:" -msgstr "Intensitat del reflex intern:" +msgstr "Intensitat del ref_lex intern:" #: plug-ins/common/sparkle.c:379 msgid "Adjust the Flare Intensity" @@ -7351,58 +7145,58 @@ #: plug-ins/common/sparkle.c:386 #, fuzzy msgid "_Spike length:" -msgstr "Durada de la pertorbació:" +msgstr "Longitut de les punte_s" #: plug-ins/common/sparkle.c:389 msgid "Adjust the Spike Length" -msgstr "Ajusta la durada de la pertorbació" +msgstr "Ajusta la longitud de les puntes" #: plug-ins/common/sparkle.c:396 #, fuzzy msgid "Sp_ike points:" -msgstr "Pertorba els punts:" +msgstr "Punts de les pun_tes:" #: plug-ins/common/sparkle.c:399 msgid "Adjust the Number of Spikes" -msgstr "Ajusta el nombre de pertorbacions:" +msgstr "Ajusta el nombre de les puntes:" #: plug-ins/common/sparkle.c:406 #, fuzzy msgid "Spi_ke angle (-1: random):" -msgstr "Angle de pertorbació (-1: aleatori):" +msgstr "An_gle de les puntes (-1: aleatori):" #: plug-ins/common/sparkle.c:409 #, fuzzy msgid "Adjust the Spike Angle (-1 means a Random Angle is chosen)" msgstr "" -"Ajusteu l'angle de pertorbació (-1 vol dir que heu triat l'angle aleatori)" +"Ajusteu l'angle de les puntes (-1 vol dir que heu triat l'angle aleatori)" #: plug-ins/common/sparkle.c:417 #, fuzzy msgid "Spik_e density:" -msgstr "Densitat de la pertorbació:" +msgstr "D_ensitat de les puntes:" #: plug-ins/common/sparkle.c:420 msgid "Adjust the Spike Density" -msgstr "Ajusteu la densitat de la pertorbació" +msgstr "Ajusteu la densitat de les puntes" #: plug-ins/common/sparkle.c:430 msgid "Adjust the Opacity of the Spikes" -msgstr "Ajusteu l'opacitat de les pertorbacions" +msgstr "Ajusteu l'opacitat de les puntes" #: plug-ins/common/sparkle.c:437 #, fuzzy msgid "_Random hue:" -msgstr "Tinta aleatòria:" +msgstr "To aleatò_ri:" #: plug-ins/common/sparkle.c:440 msgid "Adjust the Value how much the Hue should be changed randomly" -msgstr "Ajusteu el valor en el qual la tinta s'hauria de canviar aleatòriament" +msgstr "Ajusteu el valor en el qual el to s'hauria de canviar aleatòriament" #: plug-ins/common/sparkle.c:448 #, fuzzy msgid "Rando_m saturation:" -msgstr "Saturació aleatòria:" +msgstr "Saturació a_leatòria:" #: plug-ins/common/sparkle.c:451 msgid "Adjust the Value how much the Saturation should be changed randomly" @@ -7412,16 +7206,15 @@ #: plug-ins/common/sparkle.c:465 #, fuzzy msgid "_Preserve luminosity" -msgstr "Preserva la lluminositat" +msgstr "_Conserva la lluminositat" #: plug-ins/common/sparkle.c:472 msgid "Should the Luminosity be preserved?" -msgstr "Voleu preservar la lluminositat?" +msgstr "Voleu conservar la lluminositat?" #: plug-ins/common/sparkle.c:478 -#, fuzzy msgid "In_verse" -msgstr "Invers" +msgstr "In_vers" #: plug-ins/common/sparkle.c:484 msgid "Should an Inverse Effect be done?" @@ -7430,142 +7223,130 @@ #: plug-ins/common/sparkle.c:490 #, fuzzy msgid "A_dd border" -msgstr "Afegeix una vora" +msgstr "Afegeix una _vora" #: plug-ins/common/sparkle.c:496 msgid "Draw a Border of Spikes around the Image" -msgstr "Dibuixa una vora de pertorbacions al voltant de la imatge" +msgstr "Dibuixa una vora de puntes al voltant de la imatge" #: plug-ins/common/sparkle.c:507 #, fuzzy msgid "_Natural color" -msgstr "Color natural" +msgstr "Color _natural" #: plug-ins/common/sparkle.c:508 #, fuzzy msgid "_Foreground color" -msgstr "Color del primer pla" +msgstr "Color del _primer pla" #: plug-ins/common/sparkle.c:509 #, fuzzy msgid "_Background color" -msgstr "Color del fons" +msgstr "Color del _fons" #: plug-ins/common/sparkle.c:516 #, fuzzy msgid "Use the color of the image" -msgstr "Fes servir el color de la imatge" +msgstr "Utilitza el color de la imatge" #: plug-ins/common/sparkle.c:517 #, fuzzy msgid "Use the foreground color" -msgstr "Fes servir el color del primer pla" +msgstr "Utilitza el color del primer pla" #: plug-ins/common/sparkle.c:518 #, fuzzy msgid "Use the background color" -msgstr "Fes servir el color del fons" +msgstr "Utilitza el color del fons" #: plug-ins/common/spheredesigner.c:280 plug-ins/gimpressionist/general.c:147 msgid "Solid" msgstr "Sòlid" #: plug-ins/common/spheredesigner.c:281 -#, fuzzy msgid "Checker" -msgstr "Targeta de comprovació" +msgstr "Dames" #: plug-ins/common/spheredesigner.c:282 -#, fuzzy msgid "Marble" -msgstr "Centelleig" +msgstr "Marbre" #: plug-ins/common/spheredesigner.c:283 -#, fuzzy msgid "Lizard" -msgstr "Lineal" +msgstr "Llangardaix" #: plug-ins/common/spheredesigner.c:284 -#, fuzzy msgid "Phong" -msgstr "PingPong" +msgstr "Phong" #: plug-ins/common/spheredesigner.c:285 -#, fuzzy msgid "Noise" -msgstr "Fes soroll" +msgstr "Soroll" #: plug-ins/common/spheredesigner.c:286 msgid "Wood" -msgstr "" +msgstr "Fusta" #: plug-ins/common/spheredesigner.c:287 -#, fuzzy msgid "Spiral" -msgstr "Moviment" +msgstr "Espiral" #: plug-ins/common/spheredesigner.c:288 -#, fuzzy msgid "Spots" -msgstr "Llum blanca" +msgstr "Punts" #: plug-ins/common/spheredesigner.c:1741 plug-ins/common/spheredesigner.c:2615 msgid "Texture" -msgstr "" +msgstr "Textura" #: plug-ins/common/spheredesigner.c:1743 -#, fuzzy msgid "Bumpmap" -msgstr "Mapa de la memòria annexa" +msgstr "Bumpmap" #: plug-ins/common/spheredesigner.c:1745 plug-ins/common/spheredesigner.c:2617 msgid "Light" msgstr "Llum" #: plug-ins/common/spheredesigner.c:2164 -#, fuzzy msgid "Open File" -msgstr "En la pel·lícula:" +msgstr "Obre el fitxer" #: plug-ins/common/spheredesigner.c:2164 -#, fuzzy msgid "Save File" -msgstr "Desa la flama" +msgstr "Desa el fitxer" #: plug-ins/common/spheredesigner.c:2481 msgid "Sphere Designer" -msgstr "" +msgstr "Dissenyador d'esferes" #: plug-ins/common/spheredesigner.c:2518 #, fuzzy msgid "Update _Preview" -msgstr "Actualitza la visualització prèvia" +msgstr "Previs_ualització automàtica" #: plug-ins/common/spheredesigner.c:2572 msgid "Textures" -msgstr "" +msgstr "Textures" #: plug-ins/common/spheredesigner.c:2600 msgid "Texture Properties" -msgstr "" +msgstr "Propietats de la textura" #: plug-ins/common/spheredesigner.c:2616 -#, fuzzy msgid "Bump" -msgstr "Mapa de la memòria annexa" +msgstr "Bump" #: plug-ins/common/spheredesigner.c:2644 msgid "Texture:" -msgstr "" +msgstr "Textura:" #: plug-ins/common/spheredesigner.c:2649 -#, fuzzy msgid "Colors:" -msgstr "Colors" +msgstr "Colors:" #: plug-ins/common/spheredesigner.c:2652 plug-ins/common/spheredesigner.c:2663 msgid "Color Selection Dialog" -msgstr "Diàleg de la selecció del color" +msgstr "Diàleg de selecció del color" #. Scale #: plug-ins/common/spheredesigner.c:2674 plug-ins/gimpressionist/paper.c:176 @@ -7574,48 +7355,42 @@ msgstr "Escala:" #: plug-ins/common/spheredesigner.c:2682 -#, fuzzy msgid "Turbulence:" msgstr "Turbulència:" #: plug-ins/common/spheredesigner.c:2689 -#, fuzzy msgid "Amount:" msgstr "Quantitat:" #: plug-ins/common/spheredesigner.c:2696 +#, fuzzy msgid "Exp.:" -msgstr "" +msgstr "Exp:" #: plug-ins/common/spheredesigner.c:2703 #, fuzzy msgid "Texture Transformations" -msgstr "Transformació de color" +msgstr "Transformació %s" #: plug-ins/common/spheredesigner.c:2726 -#, fuzzy msgid "Scale Y:" -msgstr "Escala X:" +msgstr "Escala Y:" #: plug-ins/common/spheredesigner.c:2732 -#, fuzzy msgid "Scale Z:" -msgstr "Escala X:" +msgstr "Escala Z:" #: plug-ins/common/spheredesigner.c:2739 -#, fuzzy msgid "Rotate X:" -msgstr "Fes rotar: " +msgstr "Rotació en X:" #: plug-ins/common/spheredesigner.c:2746 -#, fuzzy msgid "Rotate Y:" -msgstr "Fes rotar: " +msgstr "Rotació en Y:" #: plug-ins/common/spheredesigner.c:2753 -#, fuzzy msgid "Rotate Z:" -msgstr "Fes rotar: " +msgstr "Rotació en Z:" #: plug-ins/common/spheredesigner.c:2760 #, fuzzy @@ -7633,81 +7408,81 @@ msgstr "Posició" #: plug-ins/common/spheredesigner.c:2922 -#, fuzzy msgid "Rendering Sphere..." -msgstr "S'està generant la Supernova" +msgstr "S'està composant l'esfera..." #: plug-ins/common/spheredesigner.c:2979 +#, fuzzy msgid "Sphere _Designer..." -msgstr "" +msgstr "Dissenyador d'esferes" #: plug-ins/common/spread.c:99 #, fuzzy msgid "Sp_read..." msgstr "S'està escampant..." -#: plug-ins/common/spread.c:179 +#: plug-ins/common/spread.c:182 msgid "Spreading..." msgstr "S'està escampant..." -#: plug-ins/common/spread.c:345 +#: plug-ins/common/spread.c:346 msgid "Spread" msgstr "Escampa" -#: plug-ins/common/spread.c:363 +#: plug-ins/common/spread.c:364 msgid "Spread Amount" -msgstr "Volum escampat" +msgstr "Quantitat escampada" #: plug-ins/common/struc.c:1146 #, fuzzy msgid "_Apply Canvas..." -msgstr "S'està aplicant el canemàs..." +msgstr "S'està aplicant el llenç..." #: plug-ins/common/struc.c:1227 msgid "Applying Canvas..." -msgstr "S'està aplicant el canemàs..." +msgstr "S'està aplicant el llenç..." #: plug-ins/common/struc.c:1264 msgid "Apply Canvas" -msgstr "Aplica el canemàs" +msgstr "Aplica el llenç" #: plug-ins/common/struc.c:1290 #, fuzzy msgid "_Top-right" -msgstr "Dalt a la dreta" +msgstr "Adal_t a la dreta" #: plug-ins/common/struc.c:1291 #, fuzzy msgid "Top-_left" -msgstr "Dalt a l'esquerra" +msgstr "Ada_lt a l'esquerra" #: plug-ins/common/struc.c:1292 #, fuzzy msgid "_Bottom-left" -msgstr "Baix a l'esquerra" +msgstr "A sota a l'es_querra" #: plug-ins/common/struc.c:1293 #, fuzzy msgid "Bottom-_right" -msgstr "Baix a la dreta" +msgstr "A sota a la d_reta" #: plug-ins/common/sunras.c:217 plug-ins/common/sunras.c:237 msgid "SUN Rasterfile image" msgstr "" #: plug-ins/common/sunras.c:392 -#, fuzzy, c-format +#, c-format msgid "Could not open '%s' as SUN-raster-file" -msgstr "No es pot obrir el fitxer com a fitxer-trama SUN" +msgstr "No es pot obrir '%s' com a fitxer SUN-raster" #: plug-ins/common/sunras.c:400 msgid "The type of this SUN-rasterfile is not supported" -msgstr "El tipus d'aquest fitxer-trama SUN no està permès" +msgstr "El tipus d'aquest fitxer SUN-raster no està permès" #: plug-ins/common/sunras.c:423 -#, fuzzy, c-format +#, c-format msgid "Could not read color entries from '%s'" -msgstr "No es poden llegir les entrades de color" +msgstr "No es poden llegir les entrades de color de '%s'" #: plug-ins/common/sunras.c:431 msgid "Type of colormap not supported" @@ -7731,11 +7506,11 @@ #: plug-ins/common/xwd.c:1572 plug-ins/common/xwd.c:1772 #: plug-ins/common/xwd.c:2029 plug-ins/fits/fits.c:673 msgid "EOF encountered on reading" -msgstr "S'ha trobat que l'EOF està llegint" +msgstr "S'ha trobat l'EOF en llegir" #: plug-ins/common/sunras.c:1579 msgid "Save as SUNRAS" -msgstr "Desa com a SUNRAS" +msgstr "Anomena i desa com a SUNRAS" #. file save type #: plug-ins/common/sunras.c:1589 @@ -7744,41 +7519,43 @@ #: plug-ins/common/sunras.c:1593 msgid "RunLength Encoded" -msgstr "S'ha codificat el RunLenght" +msgstr "Codificat en RunLenght" #: plug-ins/common/svg.c:136 #, fuzzy msgid "Scalable SVG image" -msgstr "Ajusta a la imatge" +msgstr "Escala a la imatge" #: plug-ins/common/svg.c:313 plug-ins/common/svg.c:696 msgid "Unknown reason" -msgstr "" +msgstr "Raó desconeguda" #: plug-ins/common/svg.c:317 -#, fuzzy msgid "Rendering SVG..." -msgstr "S'està generant una visualització realista" +msgstr "S'està composant un SVG..." #: plug-ins/common/svg.c:327 msgid "Rendered SVG" -msgstr "" +msgstr "SVG composat" #: plug-ins/common/svg.c:492 msgid "" "SVG file does not\n" "specify a size!" msgstr "" +"El fitxer SVG no\n" +"especifica una mida" #: plug-ins/common/svg.c:498 plug-ins/common/wmf.c:342 #, c-format msgid "%d x %d" -msgstr "" +msgstr "%d x %d" +# Scalable Vector Graphics is SVG, should perhaps not be translated #. Scalable Vector Graphics is SVG, should perhaps not be translated #: plug-ins/common/svg.c:703 msgid "Render Scalable Vector Graphics" -msgstr "" +msgstr "Composa els gràfics de vectors escalables (SVG)" #: plug-ins/common/svg.c:767 plug-ins/common/wmf.c:554 #: plug-ins/print/gimp_main_window.c:1009 @@ -7789,67 +7566,67 @@ #: plug-ins/common/svg.c:841 plug-ins/common/wmf.c:628 #, fuzzy msgid "_X ratio:" -msgstr "Ràtio X:" +msgstr "_Variació:" #: plug-ins/common/svg.c:863 plug-ins/common/wmf.c:650 #, fuzzy msgid "_Y ratio:" -msgstr "Ràtio Y:" +msgstr "_Variació:" #: plug-ins/common/svg.c:877 plug-ins/common/wmf.c:664 -#, fuzzy msgid "Constrain aspect ratio" -msgstr "Restringeix la ràtio" +msgstr "Força la relació d'aspecte" #: plug-ins/common/svg.c:888 plug-ins/common/wmf.c:675 -#, fuzzy, c-format +#, c-format msgid "pixels/%a" -msgstr "píxels" +msgstr "píxels/%a" #. Path Import #: plug-ins/common/svg.c:908 +#, fuzzy msgid "Import _paths" -msgstr "" +msgstr "Im_porta camins" #: plug-ins/common/svg.c:914 msgid "" "Import path elements of the SVG so they can be used with the GIMP path tool" msgstr "" +"Importa els elements de camins SVG perquè es puguin fer servir amb l'eina de " +"camí del GIMP" #: plug-ins/common/svg.c:927 +#, fuzzy msgid "Merge imported paths" -msgstr "" +msgstr "Fusiona els camins importats" #: plug-ins/common/tga.c:233 plug-ins/common/tga.c:249 -#, fuzzy msgid "TarGA image" -msgstr "S'està transferint la imatge" +msgstr "" #: plug-ins/common/tga.c:428 -#, fuzzy, c-format +#, c-format msgid "Cannot read footer from '%s'" -msgstr "TGA: no es pot llegir el peu de pàgina de \"%s\"\n" +msgstr "No es pot llegir el peu de pàgina de '%s" #: plug-ins/common/tga.c:444 -#, fuzzy, c-format +#, c-format msgid "Cannot read extension from '%s'" -msgstr "TGA: no es pot llegir l'extensió de \"%s\"\n" +msgstr "No es pot llegir l'extensió de '%s'" #: plug-ins/common/tga.c:1194 msgid "Save as TGA" -msgstr "Desa com a TGA" +msgstr "Anomena i desa com a TGA" #. rle #: plug-ins/common/tga.c:1209 -#, fuzzy msgid "_RLE compression" -msgstr "Compressió RLE" +msgstr "Compressió _RLE" #. origin #: plug-ins/common/tga.c:1219 -#, fuzzy msgid "Or_igin at bottom left" -msgstr "Origen a baix a l'esquerra" +msgstr "Or_igen a baix a l'esquerra" #: plug-ins/common/threshold_alpha.c:95 #, fuzzy @@ -7858,11 +7635,11 @@ #: plug-ins/common/threshold_alpha.c:134 msgid "The layer preserves transparency." -msgstr "La capa preserva la transparència." +msgstr "La capa conserva la transparència." #: plug-ins/common/threshold_alpha.c:140 msgid "RGBA/GRAYA drawable is not selected." -msgstr "L'RGBA/GRAYA dibuixable no està seleccionat." +msgstr "El dibuixable RGBA/GRAYA no està seleccionat." #: plug-ins/common/threshold_alpha.c:202 msgid "Threshold Alpha: Coloring Transparency..." @@ -7883,9 +7660,9 @@ msgstr "Canal TIFF" #: plug-ins/common/tiff.c:835 -#, fuzzy, c-format +#, c-format msgid "Page %d" -msgstr "Marc %d" +msgstr "Pàgina %d" #: plug-ins/common/tiff.c:850 msgid "TIFF Channel" @@ -7898,16 +7675,22 @@ "bit, so it will be converted for you. Information will be lost because of " "this conversion." msgstr "" +"Avís:\n" +"la imatge que esteu carregant té 16 bits per canal. El GIMP només pot " +"gestionar-ne de 8 bits, per tant es convertirà automàticament. Es perdrà " +"informació degut a aquesta conversió." #: plug-ins/common/tiff.c:1955 msgid "" "The TIFF format only supports comments in\n" "7bit ASCII encoding. No comment is saved." msgstr "" +"El format TIFF només suporta comentaris en\n" +"codificació ASCII de 7 bits. No es desarà cap comentari." #: plug-ins/common/tiff.c:2104 msgid "Save as TIFF" -msgstr "Desa com a TIFF" +msgstr "Anomena i desa com a TIFF" #. compression #: plug-ins/common/tiff.c:2118 @@ -7915,33 +7698,28 @@ msgstr "Compressió" #: plug-ins/common/tiff.c:2122 -#, fuzzy msgid "_None" -msgstr "Cap" +msgstr "_Cap" #: plug-ins/common/tiff.c:2123 -#, fuzzy msgid "_LZW" -msgstr "LZW" +msgstr "_LZW" #: plug-ins/common/tiff.c:2124 -#, fuzzy msgid "_Pack Bits" -msgstr "Paquet de bits" +msgstr "_Paquet de bits" #: plug-ins/common/tiff.c:2125 -#, fuzzy msgid "_Deflate" -msgstr "Deflació" +msgstr "_Desinfla" #: plug-ins/common/tiff.c:2126 -#, fuzzy msgid "_JPEG" -msgstr "JPEG" +msgstr "_JPEG" #: plug-ins/common/tiff.c:2135 msgid "Save _color values from transparent pixels" -msgstr "" +msgstr "Desa el valor dels _colors dels píxels transparents" #: plug-ins/common/tiff.c:2151 plug-ins/common/xbm.c:1201 msgid "Comment:" @@ -7952,7 +7730,8 @@ msgid "_Tile..." msgstr "Constructor de mosaics..." -#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:321 +#. Set the tile cache size +#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:320 msgid "Tiling..." msgstr "S'està fent el mosaic..." @@ -7962,64 +7741,60 @@ #: plug-ins/common/tile.c:408 msgid "Tile to New Size" -msgstr "Fes el mosaic d'una nova mida" +msgstr "Fes el mosaic en una nova mida" #: plug-ins/common/tile.c:430 -#, fuzzy msgid "C_reate New Image" -msgstr "Crea una imatge nova" +msgstr "C_rea una imatge nova" #: plug-ins/common/tileit.c:224 #, fuzzy msgid "_Small Tiles..." -msgstr "Tots els mosaics" +msgstr "Tots e_ls mosaics" #. Get the preview image -#: plug-ins/common/tileit.c:364 +#: plug-ins/common/tileit.c:363 msgid "TileIt" msgstr "Fes-ne un mosaic" #. Area for buttons etc #. Flip -#: plug-ins/common/tileit.c:407 plug-ins/ifscompose/ifscompose.c:628 +#: plug-ins/common/tileit.c:406 plug-ins/ifscompose/ifscompose.c:628 msgid "Flip" -msgstr "Inverteix" +msgstr "Volteja" -#: plug-ins/common/tileit.c:455 +#: plug-ins/common/tileit.c:454 #, fuzzy msgid "A_ll tiles" -msgstr "Tots els mosaics" +msgstr "Tots e_ls mosaics" -#: plug-ins/common/tileit.c:469 +#: plug-ins/common/tileit.c:468 #, fuzzy msgid "Al_ternate tiles" -msgstr "Alterna els mosaics" +msgstr "Al_terna els mosaics" -#: plug-ins/common/tileit.c:483 +#: plug-ins/common/tileit.c:482 #, fuzzy msgid "_Explicit tile" -msgstr "Mosaic explícit" +msgstr "Mosaic _explícit" -#: plug-ins/common/tileit.c:489 -#, fuzzy +#: plug-ins/common/tileit.c:488 msgid "Ro_w:" -msgstr "Fila:" +msgstr "_Fila:" -#: plug-ins/common/tileit.c:513 -#, fuzzy +#: plug-ins/common/tileit.c:512 msgid "Col_umn:" -msgstr "Columna:" +msgstr "Col_umna:" -#: plug-ins/common/tileit.c:565 -#, fuzzy +#: plug-ins/common/tileit.c:564 msgid "O_pacity:" -msgstr "Opacitat:" +msgstr "O_pacitat:" #. Lower frame saying howmany segments -#: plug-ins/common/tileit.c:574 +#: plug-ins/common/tileit.c:573 #, fuzzy msgid "Number of Segments" -msgstr "Nombre de segments:" +msgstr "_Nombre de segments:" #: plug-ins/common/tiler.c:66 msgid "_Make Seamless" @@ -8038,8 +7813,8 @@ "A unit definition will only be saved before GIMP exits if this column is " "checked." msgstr "" -"Una definició d'unitat només es desarà si abans de sortir del GIMP es revisa " -"aquesta columna." +"Si s'habilita la columna, llavors la definició d'unitat només es desarà " +"abans de sortir del GIMP." #: plug-ins/common/uniteditor.c:96 msgid "ID" @@ -8065,7 +7840,6 @@ msgstr "Dígits" #: plug-ins/common/uniteditor.c:99 -#, fuzzy msgid "" "This field is a hint for numerical input fields. It specifies how many " "decimal digits the input field should provide to get approximately the same " @@ -8081,7 +7855,6 @@ msgstr "Símbol" #: plug-ins/common/uniteditor.c:104 -#, fuzzy msgid "" "The unit's symbol if it has one (e.g. \"'\" for inches). The unit's " "abbreviation is used if doesn't have a symbol." @@ -8090,13 +7863,12 @@ "l'abreviatura de la unitat si no té un símbol." #: plug-ins/common/uniteditor.c:107 -#, fuzzy msgid "Abbreviation" -msgstr "Abreviatura:" +msgstr "Abreviatura" #: plug-ins/common/uniteditor.c:107 msgid "The unit's abbreviation (e.g. \"cm\" for centimeters)." -msgstr "L'abreviatura de la unitat (p.e. \"cm\" per centímetres." +msgstr "L'abreviatura de la unitat (p.e. \"cm\" per a centímetres)." #: plug-ins/common/uniteditor.c:109 msgid "Singular" @@ -8116,7 +7888,7 @@ #: plug-ins/common/uniteditor.c:121 msgid "Create a new unit from scratch." -msgstr "Crea una unitat nova des del fitxer de treball." +msgstr "Crea una unitat nova des del començament." #: plug-ins/common/uniteditor.c:127 #, fuzzy @@ -8127,46 +7899,39 @@ #: plug-ins/common/uniteditor.c:151 #, fuzzy msgid "_Unit Editor" -msgstr "Editor de l'unitat." +msgstr "Editor d'unitats" #: plug-ins/common/uniteditor.c:210 msgid "New Unit" -msgstr "Unitat nova" +msgstr "Nova unitat" #: plug-ins/common/uniteditor.c:234 -#, fuzzy msgid "_ID:" -msgstr "ID:" +msgstr "_ID:" #: plug-ins/common/uniteditor.c:245 -#, fuzzy msgid "_Factor:" -msgstr "Factor:" +msgstr "_Factor:" #: plug-ins/common/uniteditor.c:255 -#, fuzzy msgid "_Digits:" -msgstr "Dígits:" +msgstr "_Dígits:" #: plug-ins/common/uniteditor.c:267 -#, fuzzy msgid "_Symbol:" -msgstr "Símbol:" +msgstr "_Símbol:" #: plug-ins/common/uniteditor.c:279 -#, fuzzy msgid "_Abbreviation:" -msgstr "Abreviatura:" +msgstr "_Abreviatura:" #: plug-ins/common/uniteditor.c:291 -#, fuzzy msgid "Si_ngular:" -msgstr "Singular:" +msgstr "Si_ngular:" #: plug-ins/common/uniteditor.c:303 -#, fuzzy msgid "_Plural:" -msgstr "Plural:" +msgstr "_Plural:" #: plug-ins/common/uniteditor.c:339 msgid "Unit factor must not be 0." @@ -8178,69 +7943,60 @@ #: plug-ins/common/uniteditor.c:403 msgid "Unit Editor" -msgstr "Editor de l'unitat." +msgstr "Editor d'unitats" -#: plug-ins/common/unsharp.c:149 +#: plug-ins/common/unsharp.c:143 #, fuzzy msgid "_Unsharp Mask..." -msgstr "Fes la màscara borrosa" +msgstr "Màscara per desafilar" -#: plug-ins/common/unsharp.c:493 +#: plug-ins/common/unsharp.c:468 msgid "Merging..." -msgstr "S'està combinant..." +msgstr "S'està fusionant..." -#: plug-ins/common/unsharp.c:664 +#: plug-ins/common/unsharp.c:635 msgid "Unsharp Mask" -msgstr "Fes la màscara borrosa" +msgstr "Màscara per desafilar" #: plug-ins/common/url.c:85 plug-ins/imagemap/imap_selection.c:421 msgid "URL" msgstr "URL" #: plug-ins/common/video.c:44 -#, fuzzy msgid "_Staggered" -msgstr "Oscil·lant" +msgstr "_Graonat" #: plug-ins/common/video.c:45 -#, fuzzy msgid "_Large staggered" -msgstr "Oscil·lant molt" +msgstr "Graons gra_ns" #: plug-ins/common/video.c:46 -#, fuzzy msgid "S_triped" -msgstr "Amb ratlles" +msgstr "Ra_tllat" #: plug-ins/common/video.c:47 -#, fuzzy msgid "_Wide-striped" -msgstr "Amb ratlles amples" +msgstr "Ratllat am_ple" #: plug-ins/common/video.c:48 -#, fuzzy msgid "Lo_ng-staggered" -msgstr "Oscil·lant molta estona" +msgstr "Graons llar_gs" #: plug-ins/common/video.c:49 -#, fuzzy msgid "_3x3" -msgstr "3x3" +msgstr "_3x3" #: plug-ins/common/video.c:50 -#, fuzzy msgid "Larg_e 3x3" -msgstr "3x3 gran" +msgstr "3x3 _gran" #: plug-ins/common/video.c:51 -#, fuzzy msgid "_Hex" -msgstr "Hex" +msgstr "_Hex" #: plug-ins/common/video.c:52 -#, fuzzy msgid "_Dots" -msgstr "Punts" +msgstr "_Punts" #: plug-ins/common/video.c:1817 #, fuzzy @@ -8262,64 +8018,61 @@ msgstr "Patró" #: plug-ins/common/video.c:2079 -#, fuzzy msgid "_Additive" -msgstr "Augmentatiu" +msgstr "_Additiu" #: plug-ins/common/video.c:2089 -#, fuzzy msgid "_Rotated" -msgstr "Rotat" +msgstr "_Girat" #: plug-ins/common/vinvert.c:84 #, fuzzy msgid "_Value Invert" -msgstr "Valor invers..." +msgstr "Inversió de valor..." #: plug-ins/common/vinvert.c:126 -#, fuzzy msgid "Value Invert..." -msgstr "Valor invers..." +msgstr "Inversió de valor..." #: plug-ins/common/vpropagate.c:193 #, fuzzy msgid "More _white (larger value)" -msgstr "Més blanc (valor més alt)" +msgstr "Més _blanc (valor més alt)" #: plug-ins/common/vpropagate.c:196 #, fuzzy msgid "More blac_k (smaller value)" -msgstr "Més negre (valor més baix)" +msgstr "Més negre (valor més bai_x)" #: plug-ins/common/vpropagate.c:199 #, fuzzy msgid "_Middle value to peaks" -msgstr "Valor mitjà dels pics" +msgstr "Valor _mitjà a pics" #: plug-ins/common/vpropagate.c:202 #, fuzzy msgid "_Foreground to peaks" -msgstr "Primer pla als pics" +msgstr "_Primer pla a pics" #: plug-ins/common/vpropagate.c:205 #, fuzzy msgid "O_nly foreground" -msgstr "Només el primer pla" +msgstr "_Només el primer pla" #: plug-ins/common/vpropagate.c:208 #, fuzzy msgid "Only b_ackground" -msgstr "Només el fons" +msgstr "Només _el fons" #: plug-ins/common/vpropagate.c:211 #, fuzzy msgid "Mor_e opaque" -msgstr "Més opac" +msgstr "Més opa_c" #: plug-ins/common/vpropagate.c:214 #, fuzzy msgid "More t_ransparent" -msgstr "Més transparent" +msgstr "Més t_ransparent" #: plug-ins/common/vpropagate.c:242 #, fuzzy @@ -8334,10 +8087,9 @@ #: plug-ins/common/vpropagate.c:266 #, fuzzy msgid "_Dilate" -msgstr "Deflació" +msgstr "_Desinfla" #: plug-ins/common/vpropagate.c:476 -#, fuzzy msgid "Value Propagating..." msgstr "S'està propagant el valor..." @@ -8349,51 +8101,50 @@ #: plug-ins/common/vpropagate.c:1116 #, fuzzy msgid "Propagate" -msgstr "Propaga el mode" +msgstr "Mode de propagació" #: plug-ins/common/vpropagate.c:1129 #, fuzzy msgid "Lower t_hreshold:" -msgstr "Llindar més baix:" +msgstr "L_lindar més baix:" #: plug-ins/common/vpropagate.c:1141 #, fuzzy msgid "_Upper threshold:" -msgstr "Llindar més alt:" +msgstr "Llindar més al_t:" #: plug-ins/common/vpropagate.c:1153 #, fuzzy msgid "_Propagating rate:" -msgstr "Taxa de propagació:" +msgstr "Relació de _propagació:" #: plug-ins/common/vpropagate.c:1164 #, fuzzy msgid "To l_eft" -msgstr "A l'esquerra" +msgstr "A l'_esquerra" #: plug-ins/common/vpropagate.c:1167 #, fuzzy msgid "To _right" -msgstr "A la dreta" +msgstr "A la d_reta" #: plug-ins/common/vpropagate.c:1170 #, fuzzy msgid "To _top" -msgstr "A dalt" +msgstr "A dal_t" #: plug-ins/common/vpropagate.c:1173 #, fuzzy msgid "To _bottom" -msgstr "A baix" +msgstr "A _baix" #: plug-ins/common/vpropagate.c:1182 -#, fuzzy msgid "Propagating _Alpha Channel" -msgstr "S'està propagant el canal alfa" +msgstr "Prop_agació del canal alfa" #: plug-ins/common/vpropagate.c:1193 msgid "Propagating Value Channel" -msgstr "S'està propagant el canal del valor" +msgstr "Propagació del canal de valor" #: plug-ins/common/warp.c:247 #, fuzzy @@ -8424,6 +8175,8 @@ msgid "Displacement map:" msgstr "Mapa de desplaçament:" +# ======================================================================= +# Displacement Type #. ======================================================================= #. Displacement Type #: plug-ins/common/warp.c:468 @@ -8442,19 +8195,19 @@ #: plug-ins/common/warp.c:509 plug-ins/fits/fits.c:988 #: plug-ins/flame/flame.c:1131 plug-ins/gfig/gfig-dialog.c:1421 msgid "Black" -msgstr "Negra" +msgstr "Negre" #: plug-ins/common/warp.c:524 #, fuzzy msgid "FG color" -msgstr "Color FG:" +msgstr "Color del primer pla" #. -------------------------------------------------------------------- #. --------- The secondary table -------------------------- #: plug-ins/common/warp.c:544 #, fuzzy msgid "Advanced Options" -msgstr "Paràmetres avançats" +msgstr "Opcions avançades del paquet de filtres" #: plug-ins/common/warp.c:560 #, fuzzy @@ -8486,21 +8239,21 @@ #: plug-ins/common/warp.c:630 #, fuzzy msgid "More Advanced Options" -msgstr "Paràmetres avançats" +msgstr "Opcions principals" #: plug-ins/common/warp.c:647 #, fuzzy msgid "Gradient scale:" -msgstr "Escala graduada:" +msgstr "Escala del degradat:" #: plug-ins/common/warp.c:670 msgid "Gradient map selection menu" -msgstr "Menú de selecció del mapa graduat" +msgstr "Menú de selecció del mapa de degradat" #: plug-ins/common/warp.c:680 #, fuzzy msgid "Vector mag:" -msgstr "Magnetisme del vector:" +msgstr "Magnitut del vector:" #. Angle #: plug-ins/common/warp.c:695 plug-ins/ifscompose/ifscompose.c:586 @@ -8511,6 +8264,10 @@ msgid "Fixed-direction-vector map selection menu" msgstr "Menú de selecció del mapa de vector de direcció fixada" +# if (display_diff_map) { +# gimp_display_new(new_image_id); +# } +# make sure layer is visible #. #. if (display_diff_map) { #. gimp_display_new(new_image_id); @@ -8519,50 +8276,47 @@ #. make sure layer is visible #: plug-ins/common/warp.c:1175 msgid "Smoothing X gradient..." -msgstr "Gradient X suau..." +msgstr "S'està suavitzant el degradat X..." #: plug-ins/common/warp.c:1177 msgid "Smoothing Y gradient..." -msgstr "Gradient Y suau..." +msgstr "S'està suavitzant el degradat Y..." +# calculate new X,Y Displacement image maps #. calculate new X,Y Displacement image maps #: plug-ins/common/warp.c:1232 msgid "Finding XY gradient..." -msgstr "S'està cercant el gradient XY..." +msgstr "S'està cercant el degradat XY..." #: plug-ins/common/warp.c:1255 #, c-format msgid "Flow Step %d..." -msgstr "Flux de pas %d..." +msgstr "Pas de fluxe %d..." #: plug-ins/common/waves.c:127 #, fuzzy msgid "_Waves..." -msgstr "Desa..." +msgstr "Ones" #: plug-ins/common/waves.c:249 msgid "Waves" msgstr "Ones" #: plug-ins/common/waves.c:287 -#, fuzzy msgid "_Reflective" -msgstr "Reflexiu" +msgstr "_Reflexiu" #: plug-ins/common/waves.c:306 -#, fuzzy msgid "_Amplitude:" -msgstr "Amplitud:" +msgstr "_Amplitud:" #: plug-ins/common/waves.c:318 -#, fuzzy msgid "_Phase:" -msgstr "Fase:" +msgstr "_Fase:" #: plug-ins/common/waves.c:330 -#, fuzzy msgid "_Wavelength:" -msgstr "Longitud d'ona:" +msgstr "Lon_gitud d'ona:" #: plug-ins/common/waves.c:431 msgid "Waving..." @@ -8573,6 +8327,8 @@ "Web browser not specified.\n" "Please specify a web browser using the Preferences Dialog." msgstr "" +"No s'ha especificat cap navegador\n" +"Especifiqueu un navegador web en el diàleg preferències." #: plug-ins/common/webbrowser.c:161 #, c-format @@ -8580,6 +8336,8 @@ "Could not parse specified web browser command:\n" "%s" msgstr "" +"No s'ha pogut analitzar l'ordre del navegador web:\n" +"%s" #: plug-ins/common/webbrowser.c:174 #, c-format @@ -8587,38 +8345,41 @@ "Could not execute specified web browser:\n" "%s" msgstr "" +"No s'ha pogut executar el navegador web:\n" +"%s" #: plug-ins/common/whirlpinch.c:161 #, fuzzy msgid "W_hirl and Pinch..." -msgstr "Gira i contrau" +msgstr "Gir i contracció" #: plug-ins/common/whirlpinch.c:348 -#, fuzzy msgid "Whirling and Pinching..." msgstr "S'està girant i contraient..." #: plug-ins/common/whirlpinch.c:535 msgid "Whirl and Pinch" -msgstr "Gira i contrau" +msgstr "Gir i contracció" #: plug-ins/common/whirlpinch.c:564 #, fuzzy msgid "_Whirl angle:" -msgstr "Angle de gir:" +msgstr "An_gle de gir:" #: plug-ins/common/whirlpinch.c:576 #, fuzzy msgid "_Pinch amount:" -msgstr "Quantitat de contraccions:" +msgstr "_Quantitat de contraccions:" #: plug-ins/common/winclipboard.c:109 +#, fuzzy msgid "Copy to Clipboard" -msgstr "" +msgstr "/Edita/Copia al porta-retalls" #: plug-ins/common/winclipboard.c:121 +#, fuzzy msgid "Paste from Clipboard" -msgstr "" +msgstr "/Edita/Enganxa del porta-retalls" #: plug-ins/common/winclipboard.c:133 #, fuzzy @@ -8626,17 +8387,16 @@ msgstr "Des del color" #: plug-ins/common/winclipboard.c:331 -#, fuzzy msgid "Copying..." msgstr "S'està copiant..." #: plug-ins/common/winclipboard.c:494 msgid "Unsupported format or Clipboard empty!" -msgstr "" +msgstr "Format no suportat, o porta-retalls buit" #: plug-ins/common/winclipboard.c:505 msgid "Can't get Clipboard data." -msgstr "" +msgstr "No es poden obtenir dades del porta-retalls." #. ??? gimp_image_convert_rgb (image_ID); #. @@ -8655,11 +8415,11 @@ #: plug-ins/common/wind.c:315 msgid "Rendering Blast..." -msgstr "S'està generant una ventada..." +msgstr "S'està composant una ventada..." #: plug-ins/common/wind.c:438 msgid "Rendering Wind..." -msgstr "S'està generant el vent..." +msgstr "S'està composant el vent..." #: plug-ins/common/wind.c:873 msgid "Wind" @@ -8673,25 +8433,24 @@ msgstr "Estil" #: plug-ins/common/wind.c:910 -#, fuzzy msgid "_Wind" -msgstr "Vent" +msgstr "_Vent" #: plug-ins/common/wind.c:911 -#, fuzzy msgid "_Blast" -msgstr "Ventada" +msgstr "Ven_tada" #: plug-ins/common/wind.c:934 -#, fuzzy msgid "_Left" -msgstr "Esquerra" +msgstr "Es_querra" #: plug-ins/common/wind.c:935 -#, fuzzy msgid "_Right" -msgstr "Dreta" +msgstr "D_reta" +# **************************************************** +# radio buttons for choosing BOTH, LEADING, TRAILING +# ************************************************** #. **************************************************** #. radio buttons for choosing BOTH, LEADING, TRAILING #. ************************************************** @@ -8700,28 +8459,24 @@ msgstr "Vora afectada" #: plug-ins/common/wind.c:958 -#, fuzzy msgid "L_eading" -msgstr "Interlineat" +msgstr "Com_ençament" #: plug-ins/common/wind.c:959 -#, fuzzy msgid "Tr_ailing" -msgstr "Decreixent" +msgstr "_Fi" #: plug-ins/common/wind.c:960 -#, fuzzy msgid "Bot_h" -msgstr "Ambdos" +msgstr "Amb_dòs" #: plug-ins/common/wind.c:997 msgid "Higher values restrict the effect to fewer areas of the image" msgstr "Els valors més alts restringeixen l'efecte a menys àrees de la imatge" #: plug-ins/common/wind.c:1012 plug-ins/gimpressionist/orientmap.c:669 -#, fuzzy msgid "_Strength:" -msgstr "Força:" +msgstr "_Força:" #: plug-ins/common/wind.c:1016 msgid "Higher values increase the magnitude of the effect" @@ -8730,17 +8485,17 @@ #: plug-ins/common/winprint.c:224 #, fuzzy msgid "_Print" -msgstr "Imprimeix" +msgstr "Punt" #: plug-ins/common/winprint.c:236 #, fuzzy msgid "Page Setup" -msgstr "Configuració" +msgstr "/Fitxer/Configuració de la pàgina" #: plug-ins/common/winprint.c:341 #, c-format msgid "PrintDlg failed: %d" -msgstr "S'ha produit un error un error en PrintDlg: %d" +msgstr "S'ha produït un error en PrintDlg: %d" #: plug-ins/common/winprint.c:377 msgid "Printer doesn't support bitmaps" @@ -8748,7 +8503,7 @@ #: plug-ins/common/winprint.c:418 msgid "StartPage failed" -msgstr "Ha fallat la pàgina inicial" +msgstr "Ha fallat la pàgina d'inici" #: plug-ins/common/winprint.c:427 plug-ins/print/print-image-gimp.c:320 msgid "Printing..." @@ -8756,12 +8511,11 @@ #: plug-ins/common/winprint.c:459 msgid "CreateDIBSection failed" -msgstr "S'ha produït un error en crear la secció DIB" +msgstr "S'ha produït un error en CreateDIBSection" #: plug-ins/common/winprint.c:495 msgid "SetStretchBltMode failed (warning only)" -msgstr "" -"S'ha produït un error en establir el mode d'ampliació Blt (només és un avís)" +msgstr "S'ha produït un error en SetStretchBltMode (només és un avís)" #: plug-ins/common/winprint.c:558 #, c-format @@ -8769,41 +8523,44 @@ "StretchBlt (hDC, %d, %d, %d, %d, hdcMem, %d, 0, %d, 1, SRCCOPY) failed, " "error = %d, y = %d" msgstr "" -"S'ha produït un error en l'ampliació Blt (hDC, %d, %d, %d, %d, hdcMem, %d, " -"0, %d, 1, SRCCOPY)error = %d, y = %d" +"S'ha produït un error SetStretchBltMode (hDC, %d, %d, %d, %d, hdcMem, %d, 0, " +"%d, 1, SRCCOPY) error = %d, y = %d" #: plug-ins/common/winprint.c:587 msgid "EndPage failed" -msgstr "S'ha produït un error al final de pàgina" +msgstr "S'ha produït un error en la pàgina final" #: plug-ins/common/winprint.c:634 #, c-format msgid "PageSetupDlg failed: %d" -msgstr "S'ha produït un error en la configuració de pàgina Dlg: %d" +msgstr "S'ha produït un error PageSetupDlg: %d" #: plug-ins/common/wmf.c:131 msgid "Microsoft WMF file" msgstr "" #: plug-ins/common/wmf.c:336 +#, fuzzy msgid "" "WMF file does not\n" "specify a size!" msgstr "" +"El fitxer SVG no\n" +"especifica una mida" #: plug-ins/common/wmf.c:484 #, fuzzy msgid "Render Windows Metafile" -msgstr "Carrega el metafitxer del Windows" +msgstr "Carrega un metafitxer del Windows" #: plug-ins/common/wmf.c:947 plug-ins/sgi/sgi.c:318 -#, fuzzy, c-format +#, c-format msgid "Could not open '%s' for reading." -msgstr "No es pot obrir el fitxer per escriure-hi" +msgstr "No es pot obrir '%s' per escriure-hi." #: plug-ins/common/wmf.c:963 msgid "Rendered WMF" -msgstr "" +msgstr "WMF composat" #: plug-ins/common/xbm.c:169 plug-ins/common/xbm.c:187 msgid "X BitMap image" @@ -8814,47 +8571,53 @@ msgstr "S'ha creat amb el GIMP" #: plug-ins/common/xbm.c:804 -#, fuzzy, c-format +#, c-format msgid "" "'%s':\n" "Could not read header (ftell == %ld)" -msgstr "XBM: no es pot llegir la capçalera (ftell == %ld)\n" +msgstr "" +"'%s':\n" +"No es pot llegir la capçalera (ftell == %ld)" #: plug-ins/common/xbm.c:811 -#, fuzzy, c-format +#, c-format msgid "" "'%s':\n" "No image width specified" -msgstr "XBM: no heu especificat l'amplada de la imatge\n" +msgstr "" +"'%s'\n" +"No s'ha especificat l'amplada de la imatge" #: plug-ins/common/xbm.c:818 -#, fuzzy, c-format +#, c-format msgid "" "'%s':\n" "No image height specified" -msgstr "XBM: no heu especificat l'alçada de la imatge\n" +msgstr "" +"'%s'\n" +"No s'ha especificat l'alçada de la imatge" #: plug-ins/common/xbm.c:825 -#, fuzzy, c-format +#, c-format msgid "" "'%s':\n" "No image data type specified" -msgstr "XBM: no heu especificat el tipus de dades de la imatge\n" +msgstr "" +"'%s':\n" +"No s'ha especificat el tipus de dades de la imatge" #. The image is not black-and-white. #: plug-ins/common/xbm.c:960 -#, fuzzy msgid "" "The image which you are trying to save as an XBM contains more than two " "colors.\n" "\n" "Please convert it to a black and white (1-bit) indexed image and try again." msgstr "" -"La imatge que esteu intentant desar com a\n" -"XBM conté més de dos colors.\n" +"La imatge que esteu intentant desar com a XBM conté més de dos colors.\n" "\n" -"Si us plau, convertiu-la en una imatge indexada\n" -"en blanc i negre (1-bit) i torneu-ho a provar." +"Convertiu-la en una imatge indexada en blanc i negre (1-bit) i torneu-ho a " +"provar." #: plug-ins/common/xbm.c:971 msgid "" @@ -8866,7 +8629,7 @@ #: plug-ins/common/xbm.c:1148 msgid "Save as XBM" -msgstr "Desa com a XBM" +msgstr "Anomena i desa com a XBM" #. parameter settings #: plug-ins/common/xbm.c:1158 @@ -8877,28 +8640,28 @@ #: plug-ins/common/xbm.c:1167 #, fuzzy msgid "_X10 format bitmap" -msgstr "Format del mapa de bits X10" +msgstr "Format de mapa de bits _X10" #: plug-ins/common/xbm.c:1187 #, fuzzy msgid "_Identifier prefix:" -msgstr "Prefix de l'identificador:" +msgstr "Pref_ix de l'identificador:" #. hotspot toggle #: plug-ins/common/xbm.c:1209 #, fuzzy msgid "_Write hot spot values" -msgstr "Escriviu els valors dels punts calents" +msgstr "Escriu els _valors dels punts calents" #: plug-ins/common/xbm.c:1231 #, fuzzy msgid "Hot spot _X:" -msgstr "Punt calent X:" +msgstr "Punt calent _X:" #: plug-ins/common/xbm.c:1241 #, fuzzy msgid "Hot spot _Y:" -msgstr "Punt calent X:" +msgstr "Punt calent _X:" #. mask file #: plug-ins/common/xbm.c:1248 @@ -8908,49 +8671,48 @@ #: plug-ins/common/xbm.c:1258 #, fuzzy msgid "W_rite extra mask file" -msgstr "Escriu el fitxer de la màscara extra" +msgstr "Esc_riu el fitxer de màscara extra" #: plug-ins/common/xbm.c:1271 #, fuzzy msgid "_Mask file extension:" -msgstr "Extensió del fitxer màscara" +msgstr "Extensió del fitxer _màscara:" #: plug-ins/common/xpm.c:170 plug-ins/common/xpm.c:195 msgid "X PixMap image" msgstr "" #: plug-ins/common/xpm.c:354 -#, fuzzy, c-format +#, c-format msgid "Error opening file '%s'" -msgstr "S'ha produït un error en obrir el fitxer" +msgstr "S'ha produït un error en obrir el fitxer '%s'" #: plug-ins/common/xpm.c:359 msgid "XPM file invalid" -msgstr "" +msgstr "El fitxer XPM no és vàlid" #: plug-ins/common/xpm.c:780 msgid "Save as XPM" -msgstr "Desa com a XPM" +msgstr "Anomena i desa com a XPM" #: plug-ins/common/xpm.c:796 #, fuzzy msgid "_Alpha threshold:" -msgstr "Llindar alfa:" +msgstr "Llindar _alfa:" #: plug-ins/common/xwd.c:277 plug-ins/common/xwd.c:297 -#, fuzzy msgid "X window dump" -msgstr "Adjuntat a la imatge" +msgstr "" #: plug-ins/common/xwd.c:430 -#, fuzzy, c-format +#, c-format msgid "Could not read XWD header from '%s'" -msgstr "TGA: no es pot llegir el peu de pàgina de \"%s\"\n" +msgstr "No s'ha pogut llegir la capçalera XWD de '%s'" #: plug-ins/common/xwd.c:468 #, fuzzy msgid "Can't read color entries" -msgstr "no es poden llegir els registres de colors" +msgstr "no es poden llegir les entrades de color" #: plug-ins/common/xwd.c:527 #, fuzzy, c-format @@ -8959,23 +8721,22 @@ "and bits per pixel %d.\n" "Currently this is not supported." msgstr "" -"carrega la imatge (xwd): el fitxer XWD %s té el format %d, la profunditat %" -"d\n" -"i %d bits per píxel. Actualment, això no se us permet.\n" +"load_image (xwd): el fitxer XWD %s té el format %d, la profunditat %d\n" +"i %d bits per píxel. \n" +"Actualment, això no es permet.\n" #: plug-ins/common/xwd.c:557 -#, fuzzy msgid "Cannot save images with alpha channels." -msgstr "En desar amb PNM no es poden gestionar imatges amb canals alfa." +msgstr "No es poden desar imatges amb canals alfa." #: plug-ins/common/xwd.c:2160 #, fuzzy msgid "Error during writing indexed/gray image" -msgstr "S'ha produït un error mentre s'escrivia la imatge indexada/grisa" +msgstr "S'ha produït un error quan s'escrivia la imatge indexada/grisa" #: plug-ins/common/xwd.c:2258 msgid "Error during writing rgb image" -msgstr "S'ha produït un error mentre s'escrivia la imatge rgb" +msgstr "S'ha produït un error quan s'escrivia la imatge rgb" #: plug-ins/common/zealouscrop.c:85 #, fuzzy @@ -8987,9 +8748,8 @@ msgstr "S'està aplicant el ZealousCrop (tm)..." #: plug-ins/common/zealouscrop.c:234 -#, fuzzy msgid "Nothing to crop." -msgstr "S'està rotant el mapa de colors..." +msgstr "No hi ha res per escapçar." #: plug-ins/dbbrowser/gimpprocbrowser.c:128 #: plug-ins/dbbrowser/gimpprocbrowser.c:142 @@ -8999,36 +8759,31 @@ #: plug-ins/dbbrowser/gimpprocbrowser.c:132 #: plug-ins/dbbrowser/gimpprocbrowser.c:146 #: plug-ins/dbbrowser/plugin-browser.c:548 -#, fuzzy msgid "Search by _Name" -msgstr "Cerca per nom" +msgstr "Cerca per _nom" #: plug-ins/dbbrowser/gimpprocbrowser.c:133 #: plug-ins/dbbrowser/gimpprocbrowser.c:147 -#, fuzzy msgid "Search by _Blurb" -msgstr "Cerca per ressenya" +msgstr "Cerca per ressen_ya" #: plug-ins/dbbrowser/gimpprocbrowser.c:224 #: plug-ins/dbbrowser/plugin-browser.c:718 -#, fuzzy msgid "_Search:" -msgstr "Cerca:" +msgstr "_Cerca:" #: plug-ins/dbbrowser/gimpprocbrowser.c:386 #: plug-ins/dbbrowser/plugin-browser.c:397 -#, fuzzy msgid "Searching by name - please wait" -msgstr "Navegador DB (per nom - si us plau, espereu)" +msgstr "S'està cercant per nom, espereu un moment" #: plug-ins/dbbrowser/gimpprocbrowser.c:410 -#, fuzzy msgid "Searching by blurb - please wait" -msgstr "Navegador DB (per ressenya - si us plau, espereu)" +msgstr "S'està cercant per ressenya, espereu un moment" #: plug-ins/dbbrowser/gimpprocbrowser.c:421 msgid "Searching - please wait" -msgstr "" +msgstr "S'està cercant, espereu un moment" #: plug-ins/dbbrowser/gimpprocbrowser.c:428 #, fuzzy @@ -9043,7 +8798,7 @@ #: plug-ins/dbbrowser/gimpprocbrowser.c:476 #: plug-ins/dbbrowser/plugin-browser.c:516 msgid "No matches" -msgstr "" +msgstr "Cap concordança" #. #. * Scales @@ -9058,9 +8813,8 @@ msgstr "Paràmetres" #: plug-ins/dbbrowser/gimpprocview.c:146 -#, fuzzy msgid "Return Values" -msgstr "Entra els valors" +msgstr "" #: plug-ins/dbbrowser/gimpprocview.c:159 #, fuzzy @@ -9089,7 +8843,7 @@ #: plug-ins/dbbrowser/gimpprocview.c:321 msgid "GIMP Extension" -msgstr "Extensió GIMP" +msgstr "Extensió del GIMP" #: plug-ins/dbbrowser/gimpprocview.c:322 msgid "Temporary Procedure" @@ -9098,7 +8852,7 @@ #: plug-ins/dbbrowser/plugin-browser.c:151 #, fuzzy msgid "_Plug-In Browser" -msgstr "Base de dades del Navegador" +msgstr "Navegador de base de dades" #: plug-ins/dbbrowser/plugin-browser.c:418 #, fuzzy @@ -9113,7 +8867,7 @@ #: plug-ins/dbbrowser/plugin-browser.c:544 #, fuzzy msgid "Plug-In Browser" -msgstr "Fitxer del Navegador" +msgstr "Navegador de base de dades" #: plug-ins/dbbrowser/plugin-browser.c:595 msgid "Name" @@ -9123,32 +8877,28 @@ #: plug-ins/dbbrowser/plugin-browser.c:672 #, fuzzy msgid "Insertion Date" -msgstr "Insereix un punt" +msgstr "Insereix data" #: plug-ins/dbbrowser/plugin-browser.c:611 -#, fuzzy msgid "Menu Path" -msgstr "Camí del menú:" +msgstr "Camí de menú" #: plug-ins/dbbrowser/plugin-browser.c:619 #: plug-ins/dbbrowser/plugin-browser.c:681 -#, fuzzy msgid "Image Types" -msgstr "Tipus d'imatge:" +msgstr "Tipus d'imatges" #: plug-ins/dbbrowser/plugin-browser.c:643 msgid "List View" -msgstr "Visualització de la llista" +msgstr "Visualització de llista" #: plug-ins/dbbrowser/plugin-browser.c:663 -#, fuzzy msgid "Menu Path/Name" -msgstr "Camí/nom del menú" +msgstr "Menú camí/nom" #: plug-ins/dbbrowser/plugin-browser.c:704 -#, fuzzy msgid "Tree View" -msgstr "Visualització de l'arbre" +msgstr "Visualització d'arbre" #: plug-ins/dbbrowser/procedure-browser.c:89 msgid "Procedure _Browser" @@ -9164,15 +8914,15 @@ #: plug-ins/fits/fits.c:346 msgid "Error during open of FITS file" -msgstr "S'ha produït un error mentre s'obria el fitxer FITS" +msgstr "S'ha produït un error quan s'obria el fitxer FITS" #: plug-ins/fits/fits.c:351 msgid "FITS file keeps no displayable images" -msgstr "El fitxer FITS conseva les imatges no visualitzables" +msgstr "El fitxer FITS conserva les imatges no visualitzables" #: plug-ins/fits/fits.c:430 msgid "FITS save cannot handle images with alpha channels" -msgstr "En desar el FITS, no es poden gestionar imatges amb canals alfa" +msgstr "En desar, el FITS no pot gestionar imatges amb canals alfa" #: plug-ins/fits/fits.c:969 msgid "Load FITS File" @@ -9185,12 +8935,12 @@ #: plug-ins/fits/fits.c:989 plug-ins/gfig/gfig-dialog.c:1288 #: plug-ins/gfig/gfig-dialog.c:1422 msgid "White" -msgstr "Blanca" +msgstr "Blanc" #: plug-ins/fits/fits.c:996 #, fuzzy msgid "Pixel value scaling" -msgstr "Reducció dels valors dels píxels" +msgstr "Escalat del valor dels píxels" #: plug-ins/fits/fits.c:1001 msgid "By DATAMIN/DATAMAX" @@ -9211,12 +8961,12 @@ #: plug-ins/flame/flame.c:319 msgid "Flame works only on RGB drawables." -msgstr "La flama només funciona amb el format RGB." +msgstr "La flama només funciona en els dibuixables RGB." #: plug-ins/flame/flame.c:402 -#, fuzzy, c-format +#, c-format msgid "'%s' is not a regular file" -msgstr "%s: no és un fitxer regular" +msgstr "'%s' no és un fitxer de dades" #: plug-ins/flame/flame.c:637 msgid "Edit Flame" @@ -9231,14 +8981,12 @@ msgstr "Controls" #: plug-ins/flame/flame.c:705 -#, fuzzy msgid "_Speed:" -msgstr "Velocitat:" +msgstr "Velo_citat:" #: plug-ins/flame/flame.c:722 -#, fuzzy msgid "_Randomize" -msgstr "Genera'n aleatòriament" +msgstr "Aleatò_riament" #: plug-ins/flame/flame.c:731 msgid "Same" @@ -9266,9 +9014,8 @@ msgstr "Corbatura" #: plug-ins/flame/flame.c:752 -#, fuzzy msgid "_Variation:" -msgstr "Variació:" +msgstr "_Variació:" #: plug-ins/flame/flame.c:774 msgid "Load Flame" @@ -9283,87 +9030,82 @@ msgstr "Flama" #: plug-ins/flame/flame.c:1025 -#, fuzzy msgid "_Rendering" -msgstr "S'està generant una visualització realista" +msgstr "Com_posa" #: plug-ins/flame/flame.c:1051 -#, fuzzy msgid "Co_ntrast:" -msgstr "Contrast:" +msgstr "Co_ntrast:" #: plug-ins/flame/flame.c:1065 -#, fuzzy msgid "_Gamma:" -msgstr "Gamma:" +msgstr "_Gamma:" #: plug-ins/flame/flame.c:1079 #, fuzzy msgid "Sample _density:" -msgstr "Densitat de la mostra:" +msgstr "_Densitat de la mostra:" #: plug-ins/flame/flame.c:1090 #, fuzzy msgid "Spa_tial oversample:" -msgstr "Mostra espacial:" +msgstr "Sobremos_tra espacial:" #: plug-ins/flame/flame.c:1101 #, fuzzy msgid "Spatial _filter radius:" -msgstr "Radi del filtre espacial" +msgstr "Radi del _filtre espacial:" #: plug-ins/flame/flame.c:1120 -#, fuzzy msgid "Color_map:" -msgstr "Mapa de color:" +msgstr "_Mapa de color:" #: plug-ins/flame/flame.c:1162 #, fuzzy msgid "Custom gradient" -msgstr "Gradient personalitzat" +msgstr "Degradat personalitzat" #: plug-ins/flame/flame.c:1188 -#, fuzzy msgid "C_amera" -msgstr "Càmera" +msgstr "Càmer_a" #: plug-ins/flame/flame.c:1193 -#, fuzzy msgid "_Zoom:" -msgstr "Zoom:" +msgstr "_Zoom:" -#: plug-ins/gfig/gfig-bezier.c:452 +#: plug-ins/gfig/gfig-bezier.c:448 msgid "Closed" msgstr "Tancat" -#: plug-ins/gfig/gfig-bezier.c:457 +#: plug-ins/gfig/gfig-bezier.c:453 msgid "Close curve on completion" -msgstr "Tanca la corba en la compleció" +msgstr "Tanca la corba en completar-se" -#: plug-ins/gfig/gfig-bezier.c:462 +#: plug-ins/gfig/gfig-bezier.c:458 msgid "Show Line Frame" msgstr "Mostra la línia del marc" -#: plug-ins/gfig/gfig-bezier.c:467 +#: plug-ins/gfig/gfig-bezier.c:463 msgid "Draws lines between the control points. Only during curve creation" -msgstr "Dibuixa línies entre els punts de control. Només durant la creació" +msgstr "" +"Dibuixa línies entre els punts de control. Només durant la creació de la " +"corba" #. Start building the dialog up #: plug-ins/gfig/gfig-dialog.c:295 -#, fuzzy msgid "Gfig" -msgstr "GFig" +msgstr "Gfig" #. Tool options notebook #: plug-ins/gfig/gfig-dialog.c:341 #, fuzzy msgid "Tool options" -msgstr "Opcions del zoom" +msgstr "Opcions de l'ampliació" #: plug-ins/gfig/gfig-dialog.c:358 #, fuzzy msgid "_Stroke" -msgstr "Raigs:" +msgstr "Rajo_s:" #. Fill frame on right side #: plug-ins/gfig/gfig-dialog.c:405 @@ -9378,7 +9120,7 @@ #: plug-ins/gfig/gfig-dialog.c:420 #, fuzzy msgid "Color fill" -msgstr "Color" +msgstr "S'està acolorint" #: plug-ins/gfig/gfig-dialog.c:421 #, fuzzy @@ -9388,7 +9130,7 @@ #: plug-ins/gfig/gfig-dialog.c:422 #, fuzzy msgid "Gradient fill" -msgstr "Gradient" +msgstr "Degradat" #. "show image" checkbutton at bottom of style frame #: plug-ins/gfig/gfig-dialog.c:482 @@ -9400,17 +9142,15 @@ #: plug-ins/gfig/gfig-dialog.c:504 #, fuzzy msgid "Show grid" -msgstr "Mostra la imatge" +msgstr "Mostra la graella" #: plug-ins/gfig/gfig-dialog.c:639 -#, fuzzy msgid "Load Gfig object collection" -msgstr "Edita la col·leció d'objectes del Gfig" +msgstr "Carrega la col·leció d'objectes Gfig" #: plug-ins/gfig/gfig-dialog.c:683 -#, fuzzy msgid "Save Gfig Drawing" -msgstr "Suprimeix el dibuix Gfig" +msgstr "Desa el dibuix Gfig" #: plug-ins/gfig/gfig-dialog.c:820 msgid "First Gfig" @@ -9444,7 +9184,7 @@ #: plug-ins/gfig/gfig-dialog.c:883 #, fuzzy msgid "Raise selected object to top" -msgstr "Llegeix la Preconfiguració seleccionada dins la memòria" +msgstr "Llegeix la predefinició seleccionada a la memòria" #: plug-ins/gfig/gfig-dialog.c:887 #, fuzzy @@ -9452,19 +9192,16 @@ msgstr "Mou els objectes seleccionats" #: plug-ins/gfig/gfig-dialog.c:891 -#, fuzzy msgid "Show previous object" -msgstr "Seleccioneu el vector anterior" +msgstr "Mostra l'objecte anterior" #: plug-ins/gfig/gfig-dialog.c:895 -#, fuzzy msgid "Show next object" -msgstr "Copia un objecte" +msgstr "Mostra l'objecte següent" #: plug-ins/gfig/gfig-dialog.c:899 -#, fuzzy msgid "Show all objects" -msgstr "Copia un objecte" +msgstr "Mostra tots els objectes" #: plug-ins/gfig/gfig-dialog.c:905 msgid "Create line" @@ -9493,11 +9230,13 @@ #: plug-ins/gfig/gfig-dialog.c:923 msgid "Create spiral" -msgstr "Crea un espiral" +msgstr "Crea una espiral" #: plug-ins/gfig/gfig-dialog.c:926 msgid "Create bezier curve. Shift + Button ends object creation." -msgstr "Crea una corba de Bezier. Maj + botó acaben la creació de l’objecte." +msgstr "" +"Crea una corba bezier. Tecla de majúscula + botó acaba la creació de " +"l'objecte." #: plug-ins/gfig/gfig-dialog.c:930 msgid "Move an object" @@ -9538,7 +9277,7 @@ #: plug-ins/gfig/gfig-dialog.c:1276 #, fuzzy msgid "Max undo:" -msgstr "Desfés al màxim:" +msgstr "Accions a desfer (màx):" #: plug-ins/gfig/gfig-dialog.c:1285 plug-ins/gimpressionist/general.c:166 msgid "Transparent" @@ -9561,23 +9300,22 @@ "Layer background type. Copy causes the previous layer to be copied before " "the draw is performed." msgstr "" -"Tipus de capa de fons. El fet de copiar fa que la capa anterior es copiï " -"abans que el dibuix estigui acabat" +"Tipus de capa de fons. En copiar, la capa anterior es copia abans que el " +"dibuix estigui acabat" #: plug-ins/gfig/gfig-dialog.c:1304 msgid "Background:" -msgstr "Fons" +msgstr "Fons:" #: plug-ins/gfig/gfig-dialog.c:1307 msgid "Feather" -msgstr "Plomall" +msgstr "Ploma" #: plug-ins/gfig/gfig-dialog.c:1331 msgid "Radius:" msgstr "Radi:" #: plug-ins/gfig/gfig-dialog.c:1386 -#, fuzzy msgid "Grid spacing:" msgstr "Espaiat de la graella:" @@ -9593,7 +9331,7 @@ #: plug-ins/gfig/gfig-dialog.c:1413 #, fuzzy msgid "Grid type:" -msgstr "Tipus graella:" +msgstr "Tipus de graella:" #: plug-ins/gfig/gfig-dialog.c:1420 plug-ins/gflare/gflare.c:559 msgid "Normal" @@ -9629,12 +9367,12 @@ #: plug-ins/gfig/gfig-dialog.c:1648 #, fuzzy msgid "Right" -msgstr "Dreta" +msgstr "D_reta" #: plug-ins/gfig/gfig-dialog.c:1649 #, fuzzy msgid "Left" -msgstr "Esquerra" +msgstr "Es_querra" #: plug-ins/gfig/gfig-dialog.c:1659 plug-ins/gimpressionist/orientation.c:130 #: plug-ins/print/gimp_main_window.c:500 @@ -9643,7 +9381,7 @@ #: plug-ins/gfig/gfig-dobject.c:585 msgid "Hey where has the object gone ?" -msgstr "On ha anat l’objecte?" +msgstr "On ha anat l'objecte?" #: plug-ins/gfig/gfig-dobject.c:941 msgid "Error reading file" @@ -9651,15 +9389,15 @@ #: plug-ins/gfig/gfig-dobject.c:1030 msgid "Editing read-only object - you will not be able to save it" -msgstr "S’està editant un objecte de només lectura – no podreu desar-lo" +msgstr "S'està editant un objecte de només lectura. No podreu desar-lo" #: plug-ins/gfig/gfig-poly.c:56 msgid "Regular Polygon Number of Sides" -msgstr "Polígon regular Nombre de cares" +msgstr "Nombre de cares del polígon regular" #: plug-ins/gfig/gfig-preview.c:333 msgid "Object Details" -msgstr "Detalls de l’objecte" +msgstr "Detalls de l'objecte" #. Position labels #: plug-ins/gfig/gfig-preview.c:383 @@ -9670,16 +9408,16 @@ #: plug-ins/gfig/gfig-spiral.c:59 #, fuzzy msgid "Spiral Number of Turns" -msgstr "Espiral Nombre de punts" +msgstr "Nombre de punts de l'espiral" #: plug-ins/gfig/gfig-star.c:57 msgid "Star Number of Points" -msgstr "Estrella Nombre de punts" +msgstr "Nombre de punts de l'estrella" #: plug-ins/gfig/gfig.c:132 #, fuzzy msgid "_Gfig..." -msgstr "GFig" +msgstr "Gfig" #: plug-ins/gfig/gfig.c:726 msgid "" @@ -9707,40 +9445,39 @@ #: plug-ins/gflare/gflare.c:960 msgid "Gradient Flare..." -msgstr "Reflex del gradient..." +msgstr "Degradat de flama..." #: plug-ins/gflare/gflare.c:1262 -#, fuzzy, c-format +#, c-format msgid "Failed to open GFlare file '%s': %s" -msgstr "fitxer del Gflare amb un format no válid: %s\n" +msgstr "No s'ha pogut obrir el fitxer del Gflare '%s': %s" #: plug-ins/gflare/gflare.c:1270 -#, fuzzy, c-format +#, c-format msgid "'%s' is not a valid GFlare file." -msgstr "%s: no és un fitxer regular" +msgstr "'%s' no és un fitxer GFlare vàlid." #: plug-ins/gflare/gflare.c:1324 #, c-format msgid "invalid formatted GFlare file: %s\n" -msgstr "fitxer del Gflare amb un format no válid: %s\n" +msgstr "El fitxer del Gflare té un format invàlid: %s\n" #: plug-ins/gflare/gflare.c:1449 -#, fuzzy, c-format +#, c-format msgid "" "GFlare '%s' is not saved. If you add a new entry in '%s', like:\n" "(gflare-path \"%s\")\n" "and make a folder '%s', then you can save your own GFlares into that folder." msgstr "" -"El GFlare `%s' no s'ha desat.\n" -"Si afegiu una nova entrada a %s, com ara:\n" +"El GFlare '%s' no s'ha desat. Si afegiu una nova entrada a '%s', com:\n" "(gflare-path \"%s\")\n" -"i creeu un directori %s,\n" -"podeu desar els vostre propis GFlare's en aquest directori." +"i creeu un directori '%s', podeu desar els vostre propis GFlare en aquest " +"directori." #: plug-ins/gflare/gflare.c:1482 -#, fuzzy, c-format +#, c-format msgid "Failed to write GFlare file '%s': %s" -msgstr "S'ha produït un error en escriure el fitxer\n" +msgstr "S'ha produït un error en escriure el fitxer GFlare '%s': %s" #. #. * Dialog Shell @@ -9752,87 +9489,79 @@ #: plug-ins/gflare/gflare.c:2346 #, fuzzy msgid "A_uto update preview" -msgstr "Previsualització de l'actualització automàtica" +msgstr "Previs_ualització automàtica" #: plug-ins/gflare/gflare.c:2397 msgid "`Default' is created." -msgstr "S'ha creat `Per defecte'." +msgstr "S'ha creat el 'Predeterminat'." #: plug-ins/gflare/gflare.c:2398 msgid "Default" -msgstr "Per defecte" +msgstr "Predeterminat" #: plug-ins/gflare/gflare.c:2699 -#, fuzzy msgid "Ro_tation:" -msgstr "Rotació:" +msgstr "Ro_tació:" #: plug-ins/gflare/gflare.c:2711 #, fuzzy msgid "_Hue rotation:" -msgstr "Rotació del to de color:" +msgstr "Rota_ció del to:" #: plug-ins/gflare/gflare.c:2723 -#, fuzzy msgid "Vector _Angle:" -msgstr "Angle del vector:" +msgstr "_Angle del vector:" #: plug-ins/gflare/gflare.c:2735 -#, fuzzy msgid "Vector _Length:" -msgstr "Longitud del vector:" +msgstr "_Longitud del vector:" #: plug-ins/gflare/gflare.c:2756 #, fuzzy msgid "A_daptive supersampling" -msgstr "Supermostreig adaptable" +msgstr "Supermostreig a_daptable" #: plug-ins/gflare/gflare.c:2775 -#, fuzzy msgid "_Max Depth:" -msgstr "Profunditat màxima:" +msgstr "Profunditat _màxima:" #: plug-ins/gflare/gflare.c:2785 -#, fuzzy msgid "_Threshold" -msgstr "Llindar:" +msgstr "_Llindar" #: plug-ins/gflare/gflare.c:2923 -#, fuzzy msgid "S_elector" -msgstr "Selector" +msgstr "S_elector" #: plug-ins/gflare/gflare.c:2987 msgid "New GFlare" -msgstr "GFlare nou" +msgstr "Nou GFlare" #: plug-ins/gflare/gflare.c:2990 -#, fuzzy msgid "Enter a name for the new GFlare" -msgstr "Introduïu un nom per al GFlare nou:" +msgstr "Introduïu un nom per al GFlare nou" #: plug-ins/gflare/gflare.c:3010 #, c-format msgid "The name '%s' is used already!" -msgstr "El nom '%s' ja s'ha utilitzat!" +msgstr "El nom '%s' ja s'ha utilitzat" #: plug-ins/gflare/gflare.c:3066 msgid "Copy GFlare" msgstr "Copia el GFlare" #: plug-ins/gflare/gflare.c:3069 -#, fuzzy msgid "Enter a name for the copied GFlare" -msgstr "Introduïu un nom per al GFlare copiat:" +msgstr "Introduïu un nom per al GFlare copiat" #: plug-ins/gflare/gflare.c:3091 #, c-format msgid "The name `%s' is used already!" -msgstr "El nom '%s' ja està utilitzat!" +msgstr "El nom '%s' ja s'ha utilitzat" #: plug-ins/gflare/gflare.c:3122 msgid "Cannot delete!! There must be at least one GFlare." -msgstr "No es pot suprimir! Cal que hi hagi un GFlare com a mínim." +msgstr "No es pot suprimir. Cal que hi hagi un GFlare com a mínim." #: plug-ins/gflare/gflare.c:3132 msgid "Delete GFlare" @@ -9849,7 +9578,7 @@ #: plug-ins/gflare/gflare.c:3248 msgid "Rescan Gradients" -msgstr "Torna a explorar les gradacions" +msgstr "Actualitza els degradats" #. Glow #: plug-ins/gflare/gflare.c:3367 @@ -9877,30 +9606,30 @@ msgstr "Opcions de pintura de les flames secundàries" #: plug-ins/gflare/gflare.c:3450 plug-ins/gimpressionist/general.c:115 -#, fuzzy msgid "_General" -msgstr "General" +msgstr "_General" +# * Gradient Menus #. #. * Gradient Menus #. #: plug-ins/gflare/gflare.c:3476 plug-ins/gflare/gflare.c:3579 #: plug-ins/gflare/gflare.c:3718 msgid "Gradients" -msgstr "Gradacions" +msgstr "Degradats" #: plug-ins/gflare/gflare.c:3487 plug-ins/gflare/gflare.c:3592 #: plug-ins/gflare/gflare.c:3729 msgid "Radial Gradient:" -msgstr "Gradació radial:" +msgstr "Degradat radial:" #: plug-ins/gflare/gflare.c:3491 plug-ins/gflare/gflare.c:3596 msgid "Angular Gradient:" -msgstr "Gradació angular:" +msgstr "Degradat angular:" #: plug-ins/gflare/gflare.c:3495 plug-ins/gflare/gflare.c:3600 msgid "Angular Size Gradient:" -msgstr "Gradació de mida angular:" +msgstr "Degradat de mida angular:" #: plug-ins/gflare/gflare.c:3515 plug-ins/gflare/gflare.c:3620 #: plug-ins/gflare/gflare.c:3757 @@ -9915,12 +9644,11 @@ #: plug-ins/gflare/gflare.c:3539 plug-ins/gflare/gflare.c:3645 #: plug-ins/gflare/gflare.c:3782 msgid "Hue Rotation:" -msgstr "Rotació del to de color:" +msgstr "Rotació del to:" #: plug-ins/gflare/gflare.c:3553 -#, fuzzy msgid "G_low" -msgstr "Fosforescència" +msgstr "_Fosforescència" #: plug-ins/gflare/gflare.c:3657 msgid "# of Spikes:" @@ -9931,17 +9659,16 @@ msgstr "Gruix de les puntes:" #: plug-ins/gflare/gflare.c:3683 -#, fuzzy msgid "_Rays" -msgstr "Raigs" +msgstr "_Raigs" #: plug-ins/gflare/gflare.c:3733 msgid "Size Factor Gradient:" -msgstr "Gradació del factor de mida:" +msgstr "Degradat del factor de mida:" #: plug-ins/gflare/gflare.c:3737 msgid "Probability Gradient:" -msgstr "Gradació de la probabilitat:" +msgstr "Degradat de probabilitat:" #. #. * Shape Radio Button Frame @@ -9962,12 +9689,11 @@ #: plug-ins/gflare/gflare.c:3857 msgid "Random Seed:" -msgstr "Inici de la generació aleatòria" +msgstr "Llavor aleatòria:" #: plug-ins/gflare/gflare.c:3871 -#, fuzzy msgid "_Second Flares" -msgstr "Flamarades secundàries" +msgstr "Flames _secundàries" #: plug-ins/gfli/gfli.c:158 plug-ins/gfli/gfli.c:178 msgid "AutoDesk FLIC animation" @@ -9979,32 +9705,28 @@ msgstr "Marc (%i)" #: plug-ins/gfli/gfli.c:678 -#, fuzzy msgid "Sorry, I can save only INDEXED and GRAY images." -msgstr "FLI: Només es poden desar imatges INDEXADES I GRISES." +msgstr "Només es poden desar imatges indexades i grises." #: plug-ins/gfli/gfli.c:811 msgid "GFLI 1.3 - Load framestack" -msgstr "GFLI 1.3 – Carrega la pila de marcs" +msgstr "GFLI 1.3 - Carrega la pila de marcs" #: plug-ins/gfli/gfli.c:874 msgid "GFLI 1.3 - Save framestack" -msgstr "GFLI 1.3 – Desa la pila de marcs" +msgstr "GFLI 1.3 - Desa la pila de marcs" #: plug-ins/gimpressionist/brush.c:230 -#, fuzzy msgid "Can only save drawables!" -msgstr "GIMPressionist: només es poden desar els dibuixos!\n" +msgstr "Només es poden desar dibuixables" #: plug-ins/gimpressionist/brush.c:235 -#, fuzzy msgid "Save Brush" msgstr "Desa el pinzell" #: plug-ins/gimpressionist/brush.c:481 -#, fuzzy msgid "_Brush" -msgstr "Pinzell" +msgstr "_Pinzell" #: plug-ins/gimpressionist/brush.c:518 plug-ins/print/gimp_color_window.c:407 msgid "Gamma:" @@ -10020,11 +9742,11 @@ #: plug-ins/gimpressionist/brush.c:573 msgid "Aspect ratio:" -msgstr "Ràtio de l'aspecte" +msgstr "Relació d'aspecte:" #: plug-ins/gimpressionist/brush.c:577 msgid "Specifies the aspect ratio of the brush" -msgstr "Especifica la ràtio de l'aspecte del pinzell" +msgstr "Especifica la relació d'aspecte del pinzell" #: plug-ins/gimpressionist/brush.c:586 plug-ins/gimpressionist/paper.c:188 msgid "Relief:" @@ -10033,37 +9755,33 @@ #: plug-ins/gimpressionist/brush.c:590 plug-ins/gimpressionist/paper.c:192 msgid "Specifies the amount of embossing to apply to the image (in percent)" msgstr "" -"Especifica la mitjana de difuminació a aplicar a la imatge (en tant per cent)" +"Especifica la quantitat de realçat a aplicar a la imatge (en tant per cent)" #: plug-ins/gimpressionist/color.c:42 -#, fuzzy msgid "Co_lor" -msgstr "Color:" +msgstr "Co_lor" #: plug-ins/gimpressionist/color.c:52 -#, fuzzy msgid "A_verage under brush" -msgstr "Mitja de tot el que hi ha sota el pinzell" +msgstr "Mitjana sota el pin_zell" #: plug-ins/gimpressionist/color.c:54 -#, fuzzy msgid "C_enter of brush" -msgstr "Centre del pinzell" +msgstr "C_entre del pinzell" #: plug-ins/gimpressionist/color.c:61 msgid "Color is computed from the average of all pixels under the brush" msgstr "" -"El color es calcula amb la mitja de tots els píxels que hi han sota el " +"El color es calcula amb la mitjana de tots els píxels que hi han sota el " "pinzell" #: plug-ins/gimpressionist/color.c:65 msgid "Samples the color from the pixel in the center of the brush" -msgstr "Exemples de color des del píxel del centre del pinzell" +msgstr "Obté el color del píxel del centre del pinzell" #: plug-ins/gimpressionist/color.c:76 -#, fuzzy msgid "Color _noise:" -msgstr "Soroll del color:" +msgstr "So_roll del color:" #: plug-ins/gimpressionist/color.c:80 msgid "Adds random noise to the color" @@ -10071,7 +9789,7 @@ #: plug-ins/gimpressionist/general.c:131 msgid "Keep original" -msgstr "Manté l'original" +msgstr "Conserva l'original" #: plug-ins/gimpressionist/general.c:132 msgid "Preserve the original image as a background" @@ -10091,17 +9809,16 @@ #: plug-ins/gimpressionist/general.c:167 msgid "Use a transparent background; Only the strokes painted will be visible" -msgstr "Utilitza un fons transparent; Només els traços pintats seran visibles" +msgstr "Utilitza un fons transparent. Només els traços pintats seran visibles" #: plug-ins/gimpressionist/general.c:184 msgid "Paint edges" -msgstr "Marges pintats" +msgstr "Pinta les vores" #: plug-ins/gimpressionist/general.c:189 msgid "Selects if to place strokes all the way out to the edges of the image" msgstr "" -"Seleccioneu-lo per situar tots els traços a l'exterior dels marges de la " -"imatge" +"Seleccioneu-lo per situar els traços a l'exterior de les vores de la imatge" #. Tileable checkbox #: plug-ins/gimpressionist/general.c:194 plug-ins/maze/maze_face.c:264 @@ -10114,7 +9831,7 @@ #: plug-ins/gimpressionist/general.c:203 msgid "Drop Shadow" -msgstr "Ombrejar" +msgstr "Sombra descendent" #: plug-ins/gimpressionist/general.c:208 msgid "Adds a shadow effect to each brush stroke" @@ -10122,20 +9839,19 @@ #: plug-ins/gimpressionist/general.c:221 msgid "Edge darken:" -msgstr "Marge enfosquit:" +msgstr "Vora enfosquida:" #: plug-ins/gimpressionist/general.c:225 msgid "How much to \"darken\" the edges of each brush stroke" -msgstr "Quan s'ha d'\"enfosquir\" els marges de cada traç de pinzell" +msgstr "Quant s'han d'\"enfosquir\" les vores de cada traç de pinzell" #: plug-ins/gimpressionist/general.c:230 -#, fuzzy msgid "Shadow darken:" -msgstr "Profunditat de l'ombra:" +msgstr "Foscor de l'ombra:" #: plug-ins/gimpressionist/general.c:234 msgid "How much to \"darken\" the drop shadow" -msgstr "Quan s'ha d'\"enfosquir\" l'ombrejat" +msgstr "Quant s'ha d'\"enfosquir\" l'ombra descendent" #: plug-ins/gimpressionist/general.c:239 msgid "Shadow depth:" @@ -10145,54 +9861,49 @@ msgid "" "The depth of the drop shadow, i.e. how far apart from the object it should be" msgstr "" -"La profunditat de l'ombreig, p.e. quina distància s'hauria d'allunyar de " +"La profunditat de l'ombrejat, p.e. quina distància s'hauria d'allunyar de " "l'objecte" #: plug-ins/gimpressionist/general.c:248 msgid "Shadow blur:" -msgstr "Difuminar l'ombra" +msgstr "Difumina l'ombra:" #: plug-ins/gimpressionist/general.c:252 msgid "How much to blur the drop shadow" -msgstr "Quan s'ha de difuminar l'ombra" +msgstr "Quant s'ha de difuminar l'ombra descendent" #: plug-ins/gimpressionist/general.c:257 -#, fuzzy msgid "Deviation threshold:" msgstr "Llindar de desviació:" #: plug-ins/gimpressionist/general.c:261 msgid "A bailout-value for adaptive selections" -msgstr "Un valor de seguretat per seleccions adaptatives" +msgstr "Un valor de seguretat per a seleccions adaptatives" #: plug-ins/gimpressionist/gimp.c:79 #, fuzzy msgid "_GIMPressionist..." -msgstr "El GIMPressionist!" +msgstr "El GIMPressionist" #: plug-ins/gimpressionist/gimp.c:350 msgid "Painting..." msgstr "S'està pintant..." #: plug-ins/gimpressionist/gimpressionist.c:117 -#, fuzzy msgid "The GIMPressionist" -msgstr "El GIMPressionist!" +msgstr "El GIMPressionist" #: plug-ins/gimpressionist/gimpressionist.c:196 -#, fuzzy msgid "Gimpressionist" -msgstr "Compressió" +msgstr "Gimpressionist" #: plug-ins/gimpressionist/gimpressionist.c:200 -#, fuzzy msgid "A_bout" -msgstr "Quant a" +msgstr "_Quant a" #: plug-ins/gimpressionist/orientation.c:74 -#, fuzzy msgid "Or_ientation" -msgstr "Orientació" +msgstr "Or_ientació" #: plug-ins/gimpressionist/orientation.c:88 msgid "Directions:" @@ -10225,7 +9936,7 @@ "Let the value (brightness) of the region determine the direction of the " "stroke" msgstr "" -"Permet el valor (lluminositat) de la regió que determini la direcció del traç" +"Permet que el valor (lluminositat) de la regió determini la direcció del traç" #: plug-ins/gimpressionist/orientation.c:142 #: plug-ins/gimpressionist/size.c:145 @@ -10241,7 +9952,7 @@ #: plug-ins/gimpressionist/orientation.c:147 msgid "Selects a random direction of each stroke" -msgstr "Selecciona aleatòriamnet una direcció de cada traç" +msgstr "Selecciona aleatòriament una direcció per cada traç" #: plug-ins/gimpressionist/orientation.c:150 #: plug-ins/gimpressionist/size.c:153 @@ -10250,7 +9961,7 @@ #: plug-ins/gimpressionist/orientation.c:151 msgid "Let the direction from the center determine the direction of the stroke" -msgstr "Permet la direcció des del centre que determini la direcció del traç" +msgstr "Permet que la direcció des del centre determini la direcció del traç" #: plug-ins/gimpressionist/orientation.c:158 #: plug-ins/gimpressionist/size.c:161 @@ -10260,7 +9971,7 @@ #: plug-ins/gimpressionist/orientation.c:159 #: plug-ins/gimpressionist/size.c:162 msgid "The strokes follow a \"flowing\" pattern" -msgstr "Els traços segueixen a un patró \"flotant\"" +msgstr "Els traços segueixen un patró \"flotant\"" #: plug-ins/gimpressionist/orientation.c:163 msgid "The hue of the region determines the direction of the stroke" @@ -10274,8 +9985,8 @@ #: plug-ins/gimpressionist/orientation.c:167 msgid "The direction that matches the original image the closest is selected" msgstr "" -"La direcció que coincideix amb la imatge original es selecciona la més " -"propera" +"Es seleccionarà la direcció que coincideixi més properament amb la imatge " +"original" #: plug-ins/gimpressionist/orientation.c:174 #: plug-ins/gimpressionist/size.c:178 @@ -10303,126 +10014,114 @@ "The vector-field. Left-click to move selected vector, Right-click to point " "it towards mouse, Middle-click to add a new vector." msgstr "" -"El camp vector. Feu un clic al botó esquerra del ratolí per moures el vector " -"seleccionat, el botó dret per apuntar segons mogueu el ratolí i el botó del " +"El camp de vectors. Cliqueu al botó esquerre del ratolí per moure el vector " +"seleccionat, al botó dret per apuntar segons moveu el ratolí i al botó del " "mig per afegir un vector nou." #: plug-ins/gimpressionist/orientmap.c:565 #: plug-ins/gimpressionist/sizemap.c:435 msgid "Adjust the preview's brightness" -msgstr "Ajusteu la brillantor de la visualització prèvia" +msgstr "Ajusta la brillantor de la previsualització" #: plug-ins/gimpressionist/orientmap.c:587 msgid "Select previous vector" -msgstr "Seleccioneu el vector anterior" +msgstr "Selecciona el vector anterior" #: plug-ins/gimpressionist/orientmap.c:593 msgid "Select next vector" -msgstr "Seleccioneu el vector següent" +msgstr "Selecciona el vector següent" #: plug-ins/gimpressionist/orientmap.c:595 #: plug-ins/gimpressionist/sizemap.c:466 -#, fuzzy msgid "A_dd" -msgstr "Afegeix" +msgstr "A_fegeix" #: plug-ins/gimpressionist/orientmap.c:599 msgid "Add new vector" -msgstr "Afegiu un vector nou" +msgstr "Afegeix un vector nou" #: plug-ins/gimpressionist/orientmap.c:601 #: plug-ins/gimpressionist/sizemap.c:473 -#, fuzzy msgid "_Kill" -msgstr "Cancel·la" +msgstr "_Suprimeix" #: plug-ins/gimpressionist/orientmap.c:605 msgid "Delete selected vector" msgstr "Suprimeix el vector seleccionat" #: plug-ins/gimpressionist/orientmap.c:620 -#, fuzzy msgid "_Normal" -msgstr "Normal" +msgstr "_Normal" #: plug-ins/gimpressionist/orientmap.c:621 -#, fuzzy msgid "Vorte_x" -msgstr "Vòrtex" +msgstr "Vòrte_x" #: plug-ins/gimpressionist/orientmap.c:622 -#, fuzzy msgid "Vortex_2" -msgstr "Vòrtex2" +msgstr "Vòrtex_2" #: plug-ins/gimpressionist/orientmap.c:623 -#, fuzzy msgid "Vortex_3" -msgstr "Vòrtex3" +msgstr "Vòrtex_3" #: plug-ins/gimpressionist/orientmap.c:629 #: plug-ins/gimpressionist/sizemap.c:518 -#, fuzzy msgid "_Voronoi" -msgstr "Voronoi" +msgstr "_Voronoi" #: plug-ins/gimpressionist/orientmap.c:637 msgid "" "Voronoi-mode makes only the vector closest to the given point have any " "influence" msgstr "" -"El mode Voronoi només fa que el vector més proper al punt donat tingui " +"El mode Voronoi fa que només el vector més proper al punt donat tingui " "alguna influència" #: plug-ins/gimpressionist/orientmap.c:647 -#, fuzzy msgid "A_ngle:" -msgstr "Angle:" +msgstr "A_ngle:" #: plug-ins/gimpressionist/orientmap.c:651 msgid "Change the angle of the selected vector" msgstr "Canvia l'angle del vector seleccionat" #: plug-ins/gimpressionist/orientmap.c:658 -#, fuzzy msgid "Ang_le offset:" -msgstr "Desplaçament d'angle" +msgstr "Desplaçament d'ang_le:" #: plug-ins/gimpressionist/orientmap.c:662 msgid "Offset all vectors with a given angle" -msgstr "Desplaçament de tots els vectors amb un angle donat" +msgstr "Desplaça tots els vectors amb un angle donat" #: plug-ins/gimpressionist/orientmap.c:673 msgid "Change the strength of the selected vector" msgstr "Canvia el to del vector seleccionat" #: plug-ins/gimpressionist/orientmap.c:680 -#, fuzzy msgid "S_trength exp.:" -msgstr "To exposat:" +msgstr "E_xp. de força:" #: plug-ins/gimpressionist/orientmap.c:684 #: plug-ins/gimpressionist/sizemap.c:513 msgid "Change the exponent of the strength" -msgstr "Canvia l'exponent del to" +msgstr "Canvia l'exponent de la força" #: plug-ins/gimpressionist/paper.c:120 -#, fuzzy msgid "P_aper" -msgstr "Paper" +msgstr "P_aper" #: plug-ins/gimpressionist/paper.c:155 msgid "Inverts the Papers texture" msgstr "Inverteix la textura del paper" #: plug-ins/gimpressionist/paper.c:159 -#, fuzzy msgid "O_verlay" -msgstr "Superposa" +msgstr "Su_perposa" #: plug-ins/gimpressionist/paper.c:164 msgid "Applies the paper as it is (without embossing it)" -msgstr "Aplica el paper com aquest (sense difuminar-lo)" +msgstr "Aplica el paper com és (sense realçat)" #: plug-ins/gimpressionist/paper.c:180 msgid "Specifies the scale of the texture (in percent of original file)" @@ -10430,9 +10129,8 @@ "Especifica l'escala de la textura (en tant per cent del fitxer original)" #: plug-ins/gimpressionist/placement.c:49 -#, fuzzy msgid "Pl_acement" -msgstr "Emplaçament" +msgstr "Empl_açament" #: plug-ins/gimpressionist/placement.c:55 msgid "Placement" @@ -10452,12 +10150,11 @@ #: plug-ins/gimpressionist/placement.c:75 msgid "The strokes are evenly distributed across the image" -msgstr "Els traços són distribuïts uniformementa a través de la imatge" +msgstr "Els traços es distribueixen uniformement per tota la imatge" #: plug-ins/gimpressionist/placement.c:91 -#, fuzzy msgid "Stroke _density:" -msgstr "Densitat del traç" +msgstr "_Densitat de traços:" #: plug-ins/gimpressionist/placement.c:95 msgid "The relative density of the brush strokes" @@ -10476,29 +10173,26 @@ #. * that need not and should not be freed. So this call is OK. #. * #: plug-ins/gimpressionist/ppmtool.c:630 -#, fuzzy, c-format +#, c-format msgid "Failed to save PPM file '%s': %s" -msgstr "GIMPressionist: només es poden desar els dibuixos!\n" +msgstr "No s'ha pogut desar el fitxer PPM '%s': %s" #: plug-ins/gimpressionist/presets.c:621 -#, fuzzy msgid "Save Current" msgstr "Desa l'actual" #: plug-ins/gimpressionist/presets.c:863 #, fuzzy msgid "The Gimpressionist Defaults" -msgstr "Compressió" +msgstr "Gimpressionist" #: plug-ins/gimpressionist/presets.c:979 -#, fuzzy msgid "_Presets" -msgstr "Predefineix" +msgstr "_Predefinits" #: plug-ins/gimpressionist/presets.c:994 -#, fuzzy msgid "Save current..." -msgstr "Desa l'actual" +msgstr "Desa l'actual..." #: plug-ins/gimpressionist/presets.c:999 msgid "Save the current settings to the specified file" @@ -10506,20 +10200,19 @@ #: plug-ins/gimpressionist/presets.c:1027 msgid "Reads the selected Preset into memory" -msgstr "Llegeix la Preconfiguració seleccionada dins la memòria" +msgstr "Llegeix la predefinició seleccionada a la memòria" #: plug-ins/gimpressionist/presets.c:1033 msgid "Deletes the selected Preset" -msgstr "Suprimeix la preconfiguració seleccionada" +msgstr "Suprimeix la predefinició seleccionada" #: plug-ins/gimpressionist/presets.c:1039 -#, fuzzy msgid "Reread the folder of Presets" -msgstr "Torna a llegir el directori de preconfiguracions" +msgstr "Torna a llegir la carpeta de predefinits" #: plug-ins/gimpressionist/preview.c:187 msgid "Refresh the Preview window" -msgstr "Refresca la finestra de visualització prèvia" +msgstr "Actualitza la previsualització" #: plug-ins/gimpressionist/preview.c:195 msgid "Revert to the original image" @@ -10530,36 +10223,32 @@ msgstr "Actualitza" #: plug-ins/gimpressionist/size.c:77 -#, fuzzy msgid "_Size" -msgstr "Mida:" +msgstr "_Mida:" #: plug-ins/gimpressionist/size.c:91 msgid "Sizes:" msgstr "Mides:" #: plug-ins/gimpressionist/size.c:95 -#, fuzzy msgid "The number of sizes of brushes to use" msgstr "El nombre de mides de pinzells a usar" #: plug-ins/gimpressionist/size.c:103 -#, fuzzy msgid "Minimum size:" -msgstr "Mida mín.:" +msgstr "Mida mínima:" #: plug-ins/gimpressionist/size.c:107 msgid "The smallest brush to create" -msgstr "El pinzell més petit per crear" +msgstr "El pinzell més petit a crear" #: plug-ins/gimpressionist/size.c:115 -#, fuzzy msgid "Maximum size:" -msgstr "Mida màx.:" +msgstr "Mida màxima:" #: plug-ins/gimpressionist/size.c:119 msgid "The largest brush to create" -msgstr "El pinzell més gran per crear" +msgstr "El pinzell més gran a crear" #: plug-ins/gimpressionist/size.c:133 msgid "Size:" @@ -10569,7 +10258,7 @@ msgid "" "Let the value (brightness) of the region determine the size of the stroke" msgstr "" -"Permet el valor (lluminositat) de la regió que determini la mida del traç" +"Permet que el valor (lluminositat) de la regió determini la mida del traç" #: plug-ins/gimpressionist/size.c:146 msgid "" @@ -10578,7 +10267,7 @@ #: plug-ins/gimpressionist/size.c:150 msgid "Selects a random size for each stroke" -msgstr "Selecciona una mida aleatòria per cada traç" +msgstr "Selecciona una mida aleatòria per a cada traç" #: plug-ins/gimpressionist/size.c:154 msgid "Let the direction from the center determine the size of the stroke" @@ -10591,8 +10280,8 @@ #: plug-ins/gimpressionist/size.c:170 msgid "The brush-size that matches the original image the closest is selected" msgstr "" -"Es selecciona la mida del pinzell que coincideixi amb la imatge original més " -"propera" +"Es selecciona la mida del pinzell que coincideixi més properament amb la " +"imatge original" #: plug-ins/gimpressionist/size.c:179 msgid "Manually specify the stroke size" @@ -10615,21 +10304,21 @@ "The smvector-field. Left-click to move selected smvector, Right-click to " "point it towards mouse, Middle-click to add a new smvector." msgstr "" -"El camp vector sm. Feu un clic al botó esquerra del ratolí per moures el " -"vector sm seleccionat, el botó dret per apuntar cap a on bellugeu el ratolí " -"i el botó del mig per afegir un vetor sm nou." +"El camp vector sm. Cliqueu al botó esquerre del ratolí per moure el vector " +"sm seleccionat, al botó dret per apuntar cap al ratolí i al botó del mig per " +"afegir un vector sm nou." #: plug-ins/gimpressionist/sizemap.c:457 msgid "Select previous smvector" -msgstr "Seleccioneu el vector sm anterior" +msgstr "Selecciona el vector sm anterior" #: plug-ins/gimpressionist/sizemap.c:464 msgid "Select next smvector" -msgstr "Seleccioneu el vector sm següent" +msgstr "Selecciona el vector sm següent" #: plug-ins/gimpressionist/sizemap.c:471 msgid "Add new smvector" -msgstr "Afegiu un vector sm nou" +msgstr "Afegeix un vector sm nou" #: plug-ins/gimpressionist/sizemap.c:478 msgid "Delete selected smvector" @@ -10640,63 +10329,62 @@ msgstr "Canvia l'angle del vector sm seleccionat" #: plug-ins/gimpressionist/sizemap.c:498 -#, fuzzy msgid "S_trength:" -msgstr "Força:" +msgstr "_Força:" #: plug-ins/gimpressionist/sizemap.c:502 msgid "Change the strength of the selected smvector" -msgstr "Canvia el to del vector sm seleccionat" +msgstr "Canvia la força del vector sm seleccionat" #: plug-ins/gimpressionist/sizemap.c:509 -#, fuzzy msgid "St_rength exp.:" -msgstr "To exposat:" +msgstr "Exp. de fo_rça:" #: plug-ins/gimpressionist/sizemap.c:525 msgid "" "Voronoi-mode makes only the smvector closest to the given point have any " "influence" msgstr "" -"El mode Voronoi només farà que el vector sm més proper al punt donat tingui " -"alguna influència." +"El mode Voronoi farà que només el vector sm més proper al punt donat tingui " +"alguna influència" #. don't translate the gimprc entry #: plug-ins/gimpressionist/utils.c:135 -#, fuzzy, c-format +#, c-format msgid "" "It is highly recommended to add\n" " (gimpressionist-path \"%s\")\n" "(or similar) to your gimprc file." msgstr "" -"*** Atenció ***\n" "És altament recomenable afegir\n" -" (gimpressionist-path \"%s\")\n" -"(o semblant) al vostre fitxer gimprc.\n" +"(gimpressionist-path \"%s\")\n" +"(o semblant) al vostre fitxer gimprc." #: plug-ins/help/domain.c:175 msgid "The GIMP help files are not installed." -msgstr "" +msgstr "No s'han instal·lat els fitxers d'ajuda del GIMP." #: plug-ins/help/domain.c:177 msgid "There is a problem with the GIMP help files." -msgstr "" +msgstr "Hi ha un problema amb els fitxers d'ajuda del GIMP." #: plug-ins/help/domain.c:182 msgid "Please check your installation." -msgstr "" +msgstr "Comproveu la vostra instal·lació." #: plug-ins/help/domain.c:190 #, c-format msgid "Help ID '%s' unknown" -msgstr "" +msgstr "No es coneix l'identificador d'ajuda '%s'" #: plug-ins/help/domain.c:447 -#, fuzzy, c-format +#, c-format msgid "" "Parse error in '%s':\n" "%s" -msgstr "S'ha produït un error en obrir el fitxer" +msgstr "" +"S'ha produït un error en analitzar '%s':\n" +"%s" #: plug-ins/helpbrowser/dialog.c:157 #, fuzzy @@ -10704,8 +10392,9 @@ msgstr "Navegador de l'ajuda del GIMP" #: plug-ins/helpbrowser/dialog.c:409 +#, fuzzy msgid "Document not found" -msgstr "" +msgstr "No s'ha trobat el document" #: plug-ins/helpbrowser/dialog.c:411 msgid "The requested URL could not be loaded:" @@ -10714,7 +10403,7 @@ #: plug-ins/ifscompose/ifscompose.c:357 #, fuzzy msgid "_IFS Fractal..." -msgstr "Traça del fractal" +msgstr "_Fractals" #. Asym #: plug-ins/ifscompose/ifscompose.c:600 @@ -10724,7 +10413,7 @@ #. Shear #: plug-ins/ifscompose/ifscompose.c:614 msgid "Shear:" -msgstr "Desproveir:" +msgstr "Desproveeix:" #. Simple color control section #: plug-ins/ifscompose/ifscompose.c:659 @@ -10734,20 +10423,21 @@ #: plug-ins/ifscompose/ifscompose.c:668 #, fuzzy msgid "IFS Fractal: Target" -msgstr "Traça del fractal" +msgstr "Traç del fractal" #: plug-ins/ifscompose/ifscompose.c:674 msgid "Scale Hue by:" -msgstr "Escala el to de color per:" +msgstr "Escala el to per:" #: plug-ins/ifscompose/ifscompose.c:689 msgid "Scale Value by:" msgstr "Escala el valor per:" +# Full color control section #. Full color control section #: plug-ins/ifscompose/ifscompose.c:706 msgid "Full" -msgstr "Omple" +msgstr "Ple" #: plug-ins/ifscompose/ifscompose.c:713 #, fuzzy @@ -10757,7 +10447,7 @@ #: plug-ins/ifscompose/ifscompose.c:720 #, fuzzy msgid "IFS Fractal: Green" -msgstr "Traça del fractal" +msgstr "Traç del fractal" #: plug-ins/ifscompose/ifscompose.c:727 #, fuzzy @@ -10767,7 +10457,7 @@ #: plug-ins/ifscompose/ifscompose.c:734 #, fuzzy msgid "IFS Fractal: Black" -msgstr "Traça del fractal" +msgstr "Traç del fractal" #: plug-ins/ifscompose/ifscompose.c:784 #, fuzzy @@ -10788,24 +10478,23 @@ msgstr "Probabilitat relativa:" #: plug-ins/ifscompose/ifscompose.c:1063 -#, fuzzy msgid "Select _All" -msgstr "Selecciona tot" +msgstr "Seleccion_a tot" #: plug-ins/ifscompose/ifscompose.c:1067 #, fuzzy msgid "Re_center" -msgstr "al mig" +msgstr "Centre" #: plug-ins/ifscompose/ifscompose.c:1067 #, fuzzy msgid "Recompute Center" -msgstr "Centre de recomputació" +msgstr "Torna a _calcular el centre" #: plug-ins/ifscompose/ifscompose.c:1071 #, fuzzy msgid "Render options" -msgstr "Executa les opcions" +msgstr "Opcions de composició" #: plug-ins/ifscompose/ifscompose.c:1077 plug-ins/imagemap/imap_cmd_move.c:86 #: plug-ins/imagemap/imap_cmd_object_move.c:57 @@ -10815,21 +10504,21 @@ #: plug-ins/ifscompose/ifscompose.c:1080 #, fuzzy msgid "Rotate" -msgstr "Rotat" +msgstr "Girat" #: plug-ins/ifscompose/ifscompose.c:1080 #, fuzzy msgid "Rotate / Scale" -msgstr "Rota/Escala" +msgstr "Gira/Escala" #: plug-ins/ifscompose/ifscompose.c:1083 msgid "Stretch" -msgstr "Amplia" +msgstr "Estén" #: plug-ins/ifscompose/ifscompose.c:1180 #, fuzzy msgid "IFS Fractal Render Options" -msgstr "Executa les opcions" +msgstr "Opcions de composició" #: plug-ins/ifscompose/ifscompose.c:1201 msgid "Max. Memory:" @@ -10837,74 +10526,74 @@ #: plug-ins/ifscompose/ifscompose.c:1228 msgid "Subdivide:" -msgstr "Subdivideix" +msgstr "Subdivideix:" #: plug-ins/ifscompose/ifscompose.c:1241 msgid "Spot Radius:" -msgstr "Radi del focus:" +msgstr "Radi del punt:" #: plug-ins/ifscompose/ifscompose.c:1313 #, c-format msgid "Rendering IFS (%d/%d)..." -msgstr "S'està executant el IFS (%d/%d)..." +msgstr "S'està composant l'IFS (%d/%d)..." #. transfer the image to the drawable #: plug-ins/ifscompose/ifscompose.c:1333 #, c-format msgid "Copying IFS to image (%d/%d)..." -msgstr "S'esta copiant el IFS a la imatge (%d/%d)..." +msgstr "S'esta copiant l'IFS a la imatge (%d/%d)..." #: plug-ins/ifscompose/ifscompose.c:1476 -#, fuzzy, c-format +#, c-format msgid "Transformation %s" -msgstr "Transformació de color" +msgstr "Transformació %s" #: plug-ins/ifscompose/ifscompose.c:2400 #, fuzzy msgid "Save failed" -msgstr "Desa la flama" +msgstr "Desa el fitxer" #: plug-ins/ifscompose/ifscompose.c:2481 plug-ins/ifscompose/ifscompose.c:2494 -#, fuzzy msgid "Open failed" -msgstr "En la pel·lícula:" +msgstr "No s'ha pogut obrir" #: plug-ins/ifscompose/ifscompose.c:2489 #, fuzzy, c-format msgid "File '%s' doesn't seem to be an IFS Fractal file." -msgstr "El fitxer '%s' no és un fitxer FractalExplorer" +msgstr "El fitxer '%s' no sembla un fitxer IFS Compose." #: plug-ins/ifscompose/ifscompose.c:2529 #, fuzzy msgid "Save as IFS Fraktal file" -msgstr "Desa en format GIF" +msgstr "Desa com a fitxer IFS" #: plug-ins/ifscompose/ifscompose.c:2559 #, fuzzy msgid "Open IFS Fraktal file" -msgstr "En la pel·lícula:" +msgstr "Obre un fitxer IFS" #: plug-ins/imagemap/imap_about.c:43 +#, fuzzy msgid "Imagemap plug-in 2.2" -msgstr "" +msgstr "Connector Imagemap 2.0" #: plug-ins/imagemap/imap_about.c:44 +#, fuzzy msgid "Copyright(c) 1999-2004 by Maurits Rijk" -msgstr "" +msgstr "Copyright(c) 1999-2003 per en Maurits Rikj" #: plug-ins/imagemap/imap_about.c:46 +#, fuzzy msgid "Released under the GNU General Public License" -msgstr "" +msgstr " Alliberat sota la llicència pública general GNU " #: plug-ins/imagemap/imap_circle.c:64 -#, fuzzy msgid "C_ircle" -msgstr "Cercle" +msgstr "C_ercle" #: plug-ins/imagemap/imap_circle.c:264 -#, fuzzy msgid "Center _x:" -msgstr "Centre x:" +msgstr "Centre _x:" #: plug-ins/imagemap/imap_circle.c:269 plug-ins/imagemap/imap_circle.c:276 #: plug-ins/imagemap/imap_circle.c:282 plug-ins/imagemap/imap_grid.c:254 @@ -10917,9 +10606,8 @@ msgstr "píxels" #: plug-ins/imagemap/imap_circle.c:271 -#, fuzzy msgid "Center _y:" -msgstr "Centre y:" +msgstr "Centre _y:" #: plug-ins/imagemap/imap_cmd_clear.c:51 msgid "Clear" @@ -10955,48 +10643,40 @@ #: plug-ins/imagemap/imap_cmd_gimp_guides.c:117 #: plug-ins/imagemap/imap_cmd_gimp_guides.c:147 #: plug-ins/imagemap/imap_cmd_gimp_guides.c:251 -#, fuzzy msgid "Use Gimp Guides" -msgstr "Guies..." +msgstr "Usa les guies del Gimp" #: plug-ins/imagemap/imap_cmd_gimp_guides.c:160 -#, fuzzy msgid "Al_ternate" -msgstr "Alterna els mosaics" +msgstr "Al_terna" #: plug-ins/imagemap/imap_cmd_gimp_guides.c:165 -#, fuzzy msgid "A_ll" -msgstr "Cancel·la" +msgstr "T_ot" #: plug-ins/imagemap/imap_cmd_gimp_guides.c:169 msgid "Add Additional Guides" -msgstr "" +msgstr "Afegeix guies addicionals" #: plug-ins/imagemap/imap_cmd_gimp_guides.c:177 -#, fuzzy msgid "L_eft Border" -msgstr "Afegeix una vora" +msgstr "Marge _esquerre" #: plug-ins/imagemap/imap_cmd_gimp_guides.c:181 -#, fuzzy msgid "_Right Border" -msgstr "Marge dret:" +msgstr "Marge d_ret" #: plug-ins/imagemap/imap_cmd_gimp_guides.c:185 -#, fuzzy msgid "_Upper Border" -msgstr "Afegeix una vora" +msgstr "Marge s_uperior" #: plug-ins/imagemap/imap_cmd_gimp_guides.c:189 -#, fuzzy msgid "Lo_wer Border" -msgstr "Afegeix una vora" +msgstr "Marge _inferior" #: plug-ins/imagemap/imap_cmd_gimp_guides.c:197 -#, fuzzy msgid "_Base URL:" -msgstr "Base URL:" +msgstr "URL _base:" #: plug-ins/imagemap/imap_cmd_guides.c:72 #: plug-ins/imagemap/imap_cmd_guides.c:138 @@ -11006,7 +10686,7 @@ #: plug-ins/imagemap/imap_cmd_guides.c:111 #, c-format msgid "Resulting Guide Bounds: %d,%d to %d,%d (%d areas)" -msgstr "S'estan resolent el límit de les guies: %d,%d a %d,%d (%d àrees)" +msgstr "Límit de les guies resultant: %d,%d a %d,%d (%d àrees)" #: plug-ins/imagemap/imap_cmd_guides.c:142 #, fuzzy @@ -11018,47 +10698,40 @@ msgstr "" "Les guies són rectangles predefinits que cobreixen la imatge. Podeu\n" "definir-les per la seva amplada, alçada i espaiat d'una a l'altre.\n" -"Això us permet crear ràpidament el tipus d'imatge més comú -col·lecció\n" -"d'imatges de \"pàgina de miniatures\", habilitada amb barres de navegació." +"Això us permet crear ràpidament el tipus de mapa d'imatge més comú:\n" +"col·leccions d'imatges de \"miniatures\", per a barres de navegació." #: plug-ins/imagemap/imap_cmd_guides.c:172 -#, fuzzy msgid "_Left Start at:" -msgstr "Inici esquerra a" +msgstr "Inici es_querra a:" #: plug-ins/imagemap/imap_cmd_guides.c:182 -#, fuzzy msgid "_Top Start at:" -msgstr "Inici superior a" +msgstr "Inici supe_rior a:" #: plug-ins/imagemap/imap_cmd_guides.c:187 -#, fuzzy msgid "_Horz. Spacing:" -msgstr "Espaiat horitzontal" +msgstr "Espaiat _horitzontal:" #: plug-ins/imagemap/imap_cmd_guides.c:193 -#, fuzzy msgid "_No. Across:" -msgstr "Núm. de creauments" +msgstr "_Nombre de creuaments:" #: plug-ins/imagemap/imap_cmd_guides.c:199 -#, fuzzy msgid "_Vert. Spacing:" -msgstr "Espaiat vertical" +msgstr "Espaiat _vertical:" #: plug-ins/imagemap/imap_cmd_guides.c:205 -#, fuzzy msgid "No. _Down:" -msgstr "Núm. inferior" +msgstr "Nombre abai_x:" #: plug-ins/imagemap/imap_cmd_guides.c:214 -#, fuzzy msgid "Base _URL:" -msgstr "Base URL:" +msgstr "_URL base:" #: plug-ins/imagemap/imap_cmd_guides.c:238 msgid "Resulting Guide Bounds: 0,0 to 0,0 (0 areas)" -msgstr "S'estan resolent el límit de les guies: 0,0 a 0,0 (0 àrees)" +msgstr "Límit de les guies resultant: 0,0 a 0,0 (0 àrees)" #: plug-ins/imagemap/imap_cmd_guides.c:273 msgid "Guides" @@ -11074,11 +10747,11 @@ #: plug-ins/imagemap/imap_object_popup.c:109 #: plug-ins/imagemap/imap_selection.c:163 msgid "Move Down" -msgstr "Mou cap avall" +msgstr "Mou avall" #: plug-ins/imagemap/imap_cmd_move_sash.c:68 msgid "Move Sash" -msgstr "Mou a la banda" +msgstr "Mou la faixa" #: plug-ins/imagemap/imap_cmd_move_selected.c:56 msgid "Move Selected Objects" @@ -11087,14 +10760,14 @@ #: plug-ins/imagemap/imap_cmd_move_to_front.c:51 #: plug-ins/imagemap/imap_toolbar.c:151 msgid "Move To Front" -msgstr "Cau cap endavant" +msgstr "Mou endavant" #: plug-ins/imagemap/imap_cmd_move_up.c:53 #: plug-ins/imagemap/imap_cmd_object_up.c:55 #: plug-ins/imagemap/imap_object_popup.c:107 #: plug-ins/imagemap/imap_selection.c:159 msgid "Move Up" -msgstr "Mou cap a dalt" +msgstr "Mou amunt" #: plug-ins/imagemap/imap_cmd_paste.c:51 plug-ins/imagemap/imap_toolbar.c:129 msgid "Paste" @@ -11110,10 +10783,9 @@ #: plug-ins/imagemap/imap_cmd_select_next.c:51 msgid "Select Next" -msgstr "Selecciona la següent" +msgstr "Selecciona el següent" #: plug-ins/imagemap/imap_cmd_select_prev.c:51 -#, fuzzy msgid "Select Previous" msgstr "Selecciona l'anterior" @@ -11124,101 +10796,87 @@ #: plug-ins/imagemap/imap_cmd_send_to_back.c:51 #: plug-ins/imagemap/imap_toolbar.c:157 msgid "Send To Back" -msgstr "Envia cap endarrere" +msgstr "Envia endarrere" #: plug-ins/imagemap/imap_cmd_unselect.c:53 msgid "Unselect" -msgstr "Desselecciona" +msgstr "Desfés la selecció" #: plug-ins/imagemap/imap_cmd_unselect_all.c:53 msgid "Unselect All" -msgstr "Desselecciona tot" +msgstr "Desfés tota la selecció" #: plug-ins/imagemap/imap_edit_area_info.c:196 msgid "Link Type" msgstr "Tipus d'enllaç" #: plug-ins/imagemap/imap_edit_area_info.c:205 -#, fuzzy msgid "_Web Site" -msgstr "Lloc web" +msgstr "Lloc _web" #: plug-ins/imagemap/imap_edit_area_info.c:211 -#, fuzzy msgid "_Ftp Site" -msgstr "Lloc ftp" +msgstr "Lloc _ftp" #: plug-ins/imagemap/imap_edit_area_info.c:217 -#, fuzzy msgid "_Gopher" -msgstr "Gopher" +msgstr "_Gopher" #: plug-ins/imagemap/imap_edit_area_info.c:223 -#, fuzzy msgid "Ot_her" -msgstr "Altres" +msgstr "Al_tres" #: plug-ins/imagemap/imap_edit_area_info.c:229 -#, fuzzy msgid "F_ile" -msgstr "Fitxer" +msgstr "F_itxer" #: plug-ins/imagemap/imap_edit_area_info.c:235 -#, fuzzy msgid "WAI_S" -msgstr "WAIS" +msgstr "WAI_S" #: plug-ins/imagemap/imap_edit_area_info.c:241 -#, fuzzy msgid "Tel_net" -msgstr "Telnet" +msgstr "Tel_net" #: plug-ins/imagemap/imap_edit_area_info.c:247 -#, fuzzy msgid "e-_mail" -msgstr "correu electrònic" +msgstr "_correu electrònic" #: plug-ins/imagemap/imap_edit_area_info.c:253 -#, fuzzy msgid "_URL to activate when this area is clicked: (required)" -msgstr "URL per activar quan se seleccioni aquesta àrea: (necessari)" +msgstr "_URL per activar quan es cliqui aquesta àrea: (necessari)" #: plug-ins/imagemap/imap_edit_area_info.c:255 msgid "Select HTML file" -msgstr "Selecciona el fitxer html" +msgstr "Selecciona el fitxer HTML" #: plug-ins/imagemap/imap_edit_area_info.c:264 -#, fuzzy msgid "Relati_ve link" -msgstr "Enllaç relatiu" +msgstr "Enllaç relati_u" #: plug-ins/imagemap/imap_edit_area_info.c:270 -#, fuzzy msgid "_Target frame name/ID: (optional - used for FRAMES only)" -msgstr "Nom del marc objectiu/ID: (opcional - utilitzat només per MARCS)" +msgstr "Nom del marc objec_tiu/ID: (opcional - utilitzat només per a marcs)" #: plug-ins/imagemap/imap_edit_area_info.c:273 msgid "ALT te_xt: (optional)" -msgstr "" +msgstr "Te_xt alternatiu: (opcional)" #: plug-ins/imagemap/imap_edit_area_info.c:276 -#, fuzzy msgid "_Link" -msgstr "Enllaç" +msgstr "En_llaç" #: plug-ins/imagemap/imap_edit_area_info.c:310 msgid "Dimensions" msgstr "Dimensions" #: plug-ins/imagemap/imap_edit_area_info.c:314 -#, fuzzy msgid "Pre_view" -msgstr "Visualització prèvia" +msgstr "Pre_visualització" #: plug-ins/imagemap/imap_edit_area_info.c:352 -#, fuzzy msgid "_JavaScript" -msgstr "JavaScript" +msgstr "_JavaScript" #: plug-ins/imagemap/imap_edit_area_info.c:451 msgid "Area Settings" @@ -11227,7 +10885,7 @@ #: plug-ins/imagemap/imap_edit_area_info.c:493 #, c-format msgid "Area #%d Settings" -msgstr "Paràmetres de l'àrea #%d" +msgstr "Paràmetres de l'àrea número %d" #: plug-ins/imagemap/imap_file.c:49 plug-ins/imagemap/imap_menu.c:65 msgid "Error opening file" @@ -11238,6 +10896,7 @@ msgstr "Carrega el mapa de la imatge" #: plug-ins/imagemap/imap_file.c:114 +#, fuzzy msgid "File already exists" msgstr "El fitxer ja existeix" @@ -11246,7 +10905,7 @@ msgid "Do you really want to overwrite?" msgstr "" "El fitxer ja existeix.\n" -" Esteu segur que voleu sobreescriure'l?" +" Esteu segur que voleu sobreescriure'l?" #: plug-ins/imagemap/imap_file.c:166 msgid "Save Imagemap" @@ -11257,66 +10916,58 @@ msgstr "Paràmetres de la graella" #: plug-ins/imagemap/imap_grid.c:205 -#, fuzzy msgid "_Snap-To Grid Enabled" -msgstr "Captura a la graella habilitada" +msgstr "Habilita l'aju_st a la graella" #: plug-ins/imagemap/imap_grid.c:211 msgid "Grid Visibility and Type" msgstr "Tipus i visibilitat de la graella" #: plug-ins/imagemap/imap_grid.c:218 -#, fuzzy msgid "_Hidden" -msgstr "Ocult" +msgstr "Ocul_t" #: plug-ins/imagemap/imap_grid.c:226 -#, fuzzy msgid "_Lines" -msgstr "Línies" +msgstr "_Línies" #: plug-ins/imagemap/imap_grid.c:235 -#, fuzzy msgid "C_rosses" -msgstr "Creuaments" +msgstr "C_reuaments" #: plug-ins/imagemap/imap_grid.c:243 msgid "Grid Granularity" -msgstr "Graella granulosa" +msgstr "Granularitat de la graella" #: plug-ins/imagemap/imap_grid.c:250 -#, fuzzy msgid "_Width" -msgstr "Amplada" +msgstr "Am_plada" #: plug-ins/imagemap/imap_grid.c:256 -#, fuzzy msgid "_Height" -msgstr "Alçada" +msgstr "Al_çada" #: plug-ins/imagemap/imap_grid.c:270 msgid "Grid Offset" msgstr "Desplaçament de la graella" #: plug-ins/imagemap/imap_grid.c:277 -#, fuzzy msgid "pixels from l_eft" -msgstr "píxels des de l'esquerra" +msgstr "píxels des de l'_esquerra" #: plug-ins/imagemap/imap_grid.c:282 -#, fuzzy msgid "pixels from _top" -msgstr "píxels des de dalt" +msgstr "píxels des de dal_t" +# The preview toggle #: plug-ins/imagemap/imap_grid.c:293 -#, fuzzy msgid "_Preview" -msgstr "Visualització prèvia" +msgstr "_Previsualització" #: plug-ins/imagemap/imap_main.c:128 #, fuzzy msgid "_ImageMap..." -msgstr "Quant al mapa d'imatges" +msgstr "Quant a l'Imagemap..." #: plug-ins/imagemap/imap_main.c:594 plug-ins/imagemap/imap_settings.c:171 msgid "" @@ -11324,14 +10975,11 @@ #: plug-ins/imagemap/imap_main.c:746 msgid "Some data has been changed!" -msgstr "" +msgstr "Algunes dades han canviat" #: plug-ins/imagemap/imap_main.c:747 -#, fuzzy msgid "Do you really want to discard your changes?" -msgstr "" -"Alguna dada s'ha canviat.\n" -"Esteu segur de descartar els vostres canvis?" +msgstr "Esteu segur de voler descartar els canvis?" #: plug-ins/imagemap/imap_main.c:955 #, c-format @@ -11343,14 +10991,12 @@ msgstr "No s'ha pogut desar el fitxer:" #: plug-ins/imagemap/imap_main.c:985 -#, fuzzy msgid "Image size has changed." -msgstr "Ha canviat la mida de la imatge" +msgstr "Ha canviat la mida de la imatge." #: plug-ins/imagemap/imap_main.c:986 -#, fuzzy msgid "Resize area's?" -msgstr "Redimensiona" +msgstr "Voleu redimensionar l'àrea?" #: plug-ins/imagemap/imap_main.c:1014 msgid "Couldn't read file:" @@ -11362,29 +11008,27 @@ msgstr "URL: %s" #: plug-ins/imagemap/imap_menu.c:181 -#, fuzzy msgid "_File" -msgstr "Fitxer" +msgstr "_Fitxer" #: plug-ins/imagemap/imap_menu.c:187 #, fuzzy msgid "Open recent" -msgstr "Obre la URL" +msgstr "Obre el recent" #: plug-ins/imagemap/imap_menu.c:209 -#, fuzzy, c-format +#, c-format msgid "_Undo %s" -msgstr "Desfés %s" +msgstr "_Desfés %s" #: plug-ins/imagemap/imap_menu.c:225 -#, fuzzy, c-format +#, c-format msgid "_Redo %s" -msgstr "Refés %s" +msgstr "To_rna a fer %s" #: plug-ins/imagemap/imap_menu.c:253 -#, fuzzy msgid "_Edit" -msgstr "Edita" +msgstr "_Edita" #: plug-ins/imagemap/imap_menu.c:271 #, fuzzy @@ -11394,7 +11038,7 @@ #: plug-ins/imagemap/imap_menu.c:274 #, fuzzy msgid "Deselect _all" -msgstr "Selecciona tot" +msgstr "Desfés tot_a la selecció" #: plug-ins/imagemap/imap_menu.c:279 #, fuzzy @@ -11402,14 +11046,13 @@ msgstr "Edita la informació de l'àrea..." #: plug-ins/imagemap/imap_menu.c:294 -#, fuzzy msgid "_View" -msgstr "Visualitza" +msgstr "_Visualitza" #: plug-ins/imagemap/imap_menu.c:298 #, fuzzy msgid "Area list" -msgstr "Llista l'àrea" +msgstr "Llista de l'àrea" #: plug-ins/imagemap/imap_menu.c:302 msgid "Source..." @@ -11422,12 +11065,11 @@ #: plug-ins/imagemap/imap_menu.c:328 #, fuzzy msgid "Zoom to" -msgstr "Fes zoom a" +msgstr "Amplia a" #: plug-ins/imagemap/imap_menu.c:358 -#, fuzzy msgid "_Mapping" -msgstr "Mapeja" +msgstr "_Mapeja" #: plug-ins/imagemap/imap_menu.c:361 plug-ins/imagemap/imap_popup.c:134 msgid "Arrow" @@ -11436,12 +11078,11 @@ #: plug-ins/imagemap/imap_menu.c:365 #, fuzzy msgid "Select contiguous region" -msgstr "Selecciona la regió" +msgstr "Selecciona la regió següent" #: plug-ins/imagemap/imap_menu.c:384 -#, fuzzy msgid "_Tools" -msgstr "Eines" +msgstr "Ei_nes" #: plug-ins/imagemap/imap_menu.c:386 #, fuzzy @@ -11451,7 +11092,7 @@ #: plug-ins/imagemap/imap_menu.c:389 #, fuzzy msgid "Use GIMP guides..." -msgstr "Guies..." +msgstr "Usa les guies del GIMP..." #: plug-ins/imagemap/imap_menu.c:391 #, fuzzy @@ -11459,33 +11100,30 @@ msgstr "Crea guies..." #: plug-ins/imagemap/imap_menu.c:399 -#, fuzzy msgid "_Help" -msgstr "Ajuda" +msgstr "_Ajuda" #: plug-ins/imagemap/imap_menu.c:401 #, fuzzy msgid "_Contents" -msgstr "Continguts" +msgstr "Context" #: plug-ins/imagemap/imap_menu.c:405 #, fuzzy msgid "_About ImageMap" -msgstr "Quant al mapa d'imatges" +msgstr "Quant a l'Imagemap..." #: plug-ins/imagemap/imap_object_popup.c:103 msgid "Edit Area Info..." msgstr "Edita la informació de l'àrea..." #: plug-ins/imagemap/imap_object_popup.c:105 -#, fuzzy msgid "Delete Area" -msgstr "Suprimeix el GFlare" +msgstr "Suprimeix l'àrea" #: plug-ins/imagemap/imap_polygon.c:71 -#, fuzzy msgid "_Polygon" -msgstr "Polígon" +msgstr "_Polígon" #: plug-ins/imagemap/imap_polygon.c:473 msgid "x (pixels)" @@ -11496,19 +11134,16 @@ msgstr "y (píxels)" #: plug-ins/imagemap/imap_polygon.c:520 -#, fuzzy msgid "_Insert" -msgstr "Insereix" +msgstr "_Insereix" #: plug-ins/imagemap/imap_polygon.c:526 -#, fuzzy msgid "A_ppend" -msgstr "Afegeix" +msgstr "Afe_geix" #: plug-ins/imagemap/imap_polygon.c:532 -#, fuzzy msgid "_Remove" -msgstr "Suprimeix" +msgstr "Su_primeix" #: plug-ins/imagemap/imap_popup.c:133 msgid "Tools" @@ -11531,57 +11166,50 @@ msgstr "Selecciona el color" #: plug-ins/imagemap/imap_preferences.c:443 +#, fuzzy msgid "General" -msgstr "General" +msgstr "_General" #: plug-ins/imagemap/imap_preferences.c:447 msgid "Default Map Type" msgstr "Tipus de mapa per defecte" #: plug-ins/imagemap/imap_preferences.c:466 -#, fuzzy msgid "_Prompt for area info" -msgstr "Sol·licitud d'informació de l'àrea" +msgstr "Demana in_formació de l'àrea" #: plug-ins/imagemap/imap_preferences.c:468 -#, fuzzy msgid "_Require default URL" -msgstr "Necessita la URL per defecte" +msgstr "Necessita la U_RL per defecte" #: plug-ins/imagemap/imap_preferences.c:470 -#, fuzzy msgid "Show area _handles" -msgstr "Mostra l'àrea de manejament" +msgstr "Mo_stra les nanses de l'àrea" #: plug-ins/imagemap/imap_preferences.c:472 -#, fuzzy msgid "_Keep NCSA circles true" -msgstr "Manté cert els cercles NCSA" +msgstr "_Conserva cert els cercles NCSA" #: plug-ins/imagemap/imap_preferences.c:474 -#, fuzzy msgid "Show area URL _tip" -msgstr "Mostra l'àrea consell de la URL" +msgstr "Mos_tra l'àrea consell de la URL" #: plug-ins/imagemap/imap_preferences.c:477 -#, fuzzy msgid "_Use double-sized grab handles" -msgstr "Utilitza la mida doble en manejar" +msgstr "_Utilitza nanses de mida doble" #: plug-ins/imagemap/imap_preferences.c:484 #, fuzzy msgid "Menu" -msgstr "Menú" +msgstr "_Menú" #: plug-ins/imagemap/imap_preferences.c:488 -#, fuzzy msgid "Number of _Undo levels (1 - 99):" -msgstr "Número de novells Desfés (1 - 99):" +msgstr "N_ombre de nivells per desfer (1 - 99):" #: plug-ins/imagemap/imap_preferences.c:493 -#, fuzzy msgid "Number of M_RU entries (1 - 16):" -msgstr "Número d'entrades MRU(1-16):" +msgstr "Nombre d'entrades més _recents (1-16):" #: plug-ins/imagemap/imap_preferences.c:518 msgid "Normal:" @@ -11592,32 +11220,28 @@ msgstr "Seleccionat:" #: plug-ins/imagemap/imap_preferences.c:535 -#, fuzzy msgid "Co_ntiguous Region" -msgstr "Gradient continuat" +msgstr "Regió co_ntígua" #: plug-ins/imagemap/imap_preferences.c:541 msgid "_Automatically convert" -msgstr "" +msgstr "Converteix _automàticament" #: plug-ins/imagemap/imap_preferences.c:563 msgid "General Preferences" msgstr "Preferències generals" #: plug-ins/imagemap/imap_rectangle.c:69 -#, fuzzy msgid "_Rectangle" -msgstr "Rectangle" +msgstr "_Rectangle" #: plug-ins/imagemap/imap_rectangle.c:389 -#, fuzzy msgid "Upper left _x:" -msgstr "Superior esquerra x:" +msgstr "Superior esquerra _x:" #: plug-ins/imagemap/imap_rectangle.c:396 -#, fuzzy msgid "Upper left _y:" -msgstr "Superior esquerra y:" +msgstr "Superior esquerra _y:" #: plug-ins/imagemap/imap_selection.c:168 plug-ins/imagemap/imap_tools.c:169 msgid "Edit" @@ -11637,7 +11261,7 @@ #: plug-ins/imagemap/imap_settings.c:90 msgid "Settings for this Mapfile" -msgstr "Paràmetres d'aquest fitxer de mapes" +msgstr "Paràmetres d'aquest fitxer de mapa" #: plug-ins/imagemap/imap_settings.c:94 msgid "Filename:" @@ -11652,28 +11276,24 @@ msgstr "Selecciona el fitxer imatge" #: plug-ins/imagemap/imap_settings.c:102 -#, fuzzy msgid "_Title:" -msgstr "Títol:" +msgstr "_Títol:" #: plug-ins/imagemap/imap_settings.c:104 -#, fuzzy msgid "Aut_hor:" -msgstr "Autor:" +msgstr "Aut_or:" #: plug-ins/imagemap/imap_settings.c:106 -#, fuzzy msgid "Default _URL:" -msgstr "URL per defecte:" +msgstr "_URL per defecte:" #: plug-ins/imagemap/imap_settings.c:108 -#, fuzzy msgid "_Description:" -msgstr "Descripció:" +msgstr "_Descripció:" #: plug-ins/imagemap/imap_settings.c:130 msgid "Map file format" -msgstr "Format de fitxer de mapa" +msgstr "Format del fitxer de mapa" #: plug-ins/imagemap/imap_source.c:63 msgid "View Source" @@ -11701,15 +11321,15 @@ #: plug-ins/imagemap/imap_toolbar.c:116 msgid "Redo" -msgstr "Refés" +msgstr "Torna a fer" #: plug-ins/imagemap/imap_toolbar.c:137 msgid "Zoom in" -msgstr "Aumenta el zoom" +msgstr "Augmenta l'ampliació" #: plug-ins/imagemap/imap_toolbar.c:142 msgid "Zoom out" -msgstr "Disminueix el zoom" +msgstr "Redueix l'ampliació" #: plug-ins/imagemap/imap_toolbar.c:147 #, fuzzy @@ -11721,26 +11341,24 @@ msgstr "Selecciona l'àrea existent" #: plug-ins/imagemap/imap_tools.c:150 -#, fuzzy msgid "Fuzzy Select" -msgstr "Selecciona" +msgstr "Selecció difosa" #: plug-ins/imagemap/imap_tools.c:151 -#, fuzzy msgid "Select contiguous regions" -msgstr "Selecciona la regió" +msgstr "Selecciona la regió següent" #: plug-ins/imagemap/imap_tools.c:157 msgid "Define Rectangle area" -msgstr "Defineix l'àrea rectangle" +msgstr "Defineix una àrea rectangular" #: plug-ins/imagemap/imap_tools.c:161 msgid "Define Circle/Oval area" -msgstr "Defineix l'àrea cercle/oval" +msgstr "Defineix una àrea circular/ovalada" #: plug-ins/imagemap/imap_tools.c:165 msgid "Define Polygon area" -msgstr "Defineix l'àrea polígon" +msgstr "Defineix una àrea poligonal" #: plug-ins/imagemap/imap_tools.c:170 msgid "Edit selected area info" @@ -11752,16 +11370,16 @@ #: plug-ins/maze/algorithms.c:287 msgid "Constructing maze using Prim's Algorithm..." -msgstr "S'està construint un laberint amb l'algoritme de Prim..." +msgstr "S'està construint un laberint segons l'algorisme de Prim..." #: plug-ins/maze/algorithms.c:463 msgid "Constructing tileable maze using Prim's Algorithm..." -msgstr "S'està construint el mosaic laberint amb l'algoritme de Prim..." +msgstr "S'està construint el mosàic laberint segons l'algorisme de Prim..." #: plug-ins/maze/maze.c:163 #, fuzzy msgid "_Maze..." -msgstr "Més..." +msgstr "Marbre" #: plug-ins/maze/maze.c:450 msgid "Drawing Maze..." @@ -11770,8 +11388,9 @@ #: plug-ins/maze/maze.h:2 #, fuzzy msgid "Maze" -msgstr "Centelleig" +msgstr "Marbre" +# entscale == Entry and Scale pair function found in pixelize.c #. entscale == Entry and Scale pair function found in pixelize.c #: plug-ins/maze/maze_face.c:202 #, fuzzy @@ -11780,12 +11399,12 @@ #: plug-ins/maze/maze_face.c:214 plug-ins/maze/maze_face.c:230 msgid "Pieces:" -msgstr "Peces:" +msgstr "Trossos:" #: plug-ins/maze/maze_face.c:219 #, fuzzy msgid "Height (pixels):" -msgstr "Alçada (Píxels):" +msgstr "Alçada (píxels):" #: plug-ins/maze/maze_face.c:242 msgid "Multiple (57):" @@ -11798,19 +11417,19 @@ #: plug-ins/maze/maze_face.c:287 #, fuzzy msgid "Depth first" -msgstr "Profunditat del primer" +msgstr "Primer en profunditat" #: plug-ins/maze/maze_face.c:288 #, fuzzy msgid "Prim's algorithm" -msgstr "Algoritme de la trama:" +msgstr "Algorisme de Prim" #: plug-ins/maze/maze_face.c:397 msgid "" "Selection size is not even.\n" "Tileable maze won't work perfectly." msgstr "" -"No s'ha donat la mida de la selecció.\n" +"La mida de la selecció no és parella.\n" "El laberint de mosaic no s'executarà perfectament." #: plug-ins/pagecurl/pagecurl.c:224 @@ -11820,7 +11439,7 @@ #: plug-ins/pagecurl/pagecurl.c:443 msgid "Pagecurl Effect" -msgstr "Efecte rínxol" +msgstr "Efecte de rínxol de pàgina" #: plug-ins/pagecurl/pagecurl.c:458 msgid "Curl Location" @@ -11829,7 +11448,7 @@ #: plug-ins/pagecurl/pagecurl.c:477 #, fuzzy msgid "Lower right" -msgstr "Inferior dret" +msgstr "Inferior dreta" #: plug-ins/pagecurl/pagecurl.c:478 #, fuzzy @@ -11844,7 +11463,7 @@ #: plug-ins/pagecurl/pagecurl.c:480 #, fuzzy msgid "Upper right" -msgstr "Superior dret" +msgstr "Superior dreta" #: plug-ins/pagecurl/pagecurl.c:520 msgid "Curl Orientation" @@ -11862,12 +11481,12 @@ #: plug-ins/pagecurl/pagecurl.c:582 #, fuzzy msgid "Current gradient" -msgstr "Gradient personalitzat" +msgstr "Degradat personalitzat" #: plug-ins/pagecurl/pagecurl.c:587 #, fuzzy msgid "Foreground / background colors" -msgstr "Primer pla i segon pla" +msgstr "Primer pla i _fons" #: plug-ins/pagecurl/pagecurl.c:607 #, fuzzy @@ -11876,7 +11495,7 @@ #: plug-ins/pagecurl/pagecurl.c:730 msgid "Curl Layer" -msgstr "Capa del Rínxol" +msgstr "Capa del rínxol" #: plug-ins/pagecurl/pagecurl.c:1018 msgid "Page Curl..." @@ -11884,7 +11503,7 @@ #: plug-ins/print/gimp_color_window.c:208 msgid "Print Color Adjust" -msgstr "Imprimeix l'ajust del color" +msgstr "Ajust del color d'impressió" #: plug-ins/print/gimp_color_window.c:268 msgid "Brightness:" @@ -11895,36 +11514,37 @@ "Set the brightness of the print.\n" "0 is solid black, 2 is solid white" msgstr "" +"Definiu la brillantor de la impressió.\n" +"El 0 és negre sòlid, el 2 és blanc sòlid." #: plug-ins/print/gimp_color_window.c:288 msgid "Contrast:" msgstr "Contrast:" #: plug-ins/print/gimp_color_window.c:296 -#, fuzzy msgid "Set the contrast of the print" -msgstr "Canvia l'exponent del to" +msgstr "Definiu el contrast de la impressió" #: plug-ins/print/gimp_color_window.c:315 -#, fuzzy msgid "Adjust the cyan balance of the print" -msgstr "Ajusteu l'opacitat de les pertorbacions" +msgstr "Ajusteu el balanç cian de la impressió" #: plug-ins/print/gimp_color_window.c:334 -#, fuzzy msgid "Adjust the magenta balance of the print" -msgstr "Ajusteu l'opacitat de les pertorbacions" +msgstr "Ajusteu el balanç magenta de la impressió" #: plug-ins/print/gimp_color_window.c:353 -#, fuzzy msgid "Adjust the yellow balance of the print" -msgstr "Ajusteu l'opacitat de les pertorbacions" +msgstr "Ajusteu el balanç groc de la impressió" #: plug-ins/print/gimp_color_window.c:372 msgid "" "Adjust the saturation (color balance) of the print\n" "Use zero saturation to produce grayscale output using color and black inks" msgstr "" +"Ajusteu la saturació (balanç de color) de la impressió.\n" +"Utilitzeu la saturació a zero per produir sortida en escala de grisos fent " +"servir tintes negra i de colors." #: plug-ins/print/gimp_color_window.c:385 msgid "Density:" @@ -11936,6 +11556,9 @@ "ink bleeds through the paper or smears; increase the density if black " "regions are not solid." msgstr "" +"Ajusteu la densitat (quantitat de tinta) de la impressió. Reduïu la densitat " +"si la tinta traspassa el paper o taca. Incrementeu la densitat si les " +"regions negres no són sòlides." #: plug-ins/print/gimp_color_window.c:415 msgid "" @@ -11943,11 +11566,16 @@ "brighter print, while smaller values will produce a generally darker print. " "Black and white will remain the same, unlike with the brightness adjustment." msgstr "" +"Ajusteu la gamma de la impressió. Els valors més grans produeixen " +"generalment una impressió més brillant, en canvi els valors més petits " +"produeixen generalment una impressió més fosca. El blanc i el negre seran " +"els mateixos, al contrari que amb l'ajustament de la brillantor." #: plug-ins/print/gimp_color_window.c:432 msgid "Dither Algorithm:" -msgstr "Algoritme de la trama:" +msgstr "Algorisme de trama:" +# Sembla que el nom dels tramats no estan traduïts, per tant els deixo iguals #: plug-ins/print/gimp_color_window.c:440 msgid "" "Choose the dither algorithm to be used.\n" @@ -11957,14 +11585,22 @@ "art.\n" "Hybrid Floyd-Steinberg generally produces inferior output." msgstr "" +"Escolliu l'algorisme de trama que s'usarà.\n" +"Adaptive Hybrid normalment produeix la millor qualitat global.\n" +"Ordered és més ràpid i produeix almenys la mateixa qualitat que a les " +"fotografies.\n" +"Fast i Very Fast són força més ràpids, i treballen bé amb text i art " +"línial.\n" +"Hybrid Floyd-Steinberg generalment produeix una sortida pitjor." +# * Create the main dialog #. #. * Create the main dialog #. #: plug-ins/print/gimp_main_window.c:359 #, c-format msgid "%s -- Print v%s" -msgstr "%s -- Imprimeix v%s" +msgstr "%s -- Impressió v%s" #: plug-ins/print/gimp_main_window.c:368 msgid "" @@ -11972,7 +11608,7 @@ "Settings" msgstr "" "Desa\n" -"els paràmtres" +"la configuració" #: plug-ins/print/gimp_main_window.c:369 msgid "" @@ -11980,7 +11616,7 @@ "Save Settings" msgstr "" "Imprimeix i\n" -"desa els paràmetres" +"desa la configuració" #: plug-ins/print/gimp_main_window.c:438 msgid "" @@ -11995,109 +11631,110 @@ "If you click another button while dragging the mouse, the image will return " "to its original position." msgstr "" +"Posicioneu la imatge a la pàgina.\n" +"Cliqueu i arrossegueu amb el primer botó per posicionar la imatge.\n" +"Cliqueu i arrossegueu amb el segon botó per moure la imatge amb més " +"precissió; cada unitat de moviment mou la imatge un punt (1/72 de polzada).\n" +"Cliqueu i arrossegueu amb el botó central per moure la imatge en unitats de " +"la mida de la imatge.\n" +"Si premeu la tecla de majúscules mentre cliqueu i arrossegueu limitareu el " +"moviment només en horizontal o vertical.\n" +"Si cliqueu un altre botó quan arrossegueu el ratolí, la imatge tornarà a la " +"seva posició original." #: plug-ins/print/gimp_main_window.c:481 msgid "Auto" -msgstr "Auto" +msgstr "Automàtic" #: plug-ins/print/gimp_main_window.c:482 msgid "Portrait" -msgstr "Retrat" +msgstr "Vertical" #: plug-ins/print/gimp_main_window.c:483 msgid "Landscape" -msgstr "Apaïsat" +msgstr "Horitzontal" #: plug-ins/print/gimp_main_window.c:484 msgid "Upside down" -msgstr "Cap per vall" +msgstr "Invertit en vertical" #: plug-ins/print/gimp_main_window.c:485 msgid "Seascape" -msgstr "Vista marina" +msgstr "Invertit en horitzontal" #: plug-ins/print/gimp_main_window.c:495 msgid "" "Select the orientation: portrait, landscape, upside down, or seascape " "(upside down landscape)" msgstr "" +"Seleccioneu l'orientació: vertical, horitzontal, invertit en vertical o " +"invertit en horitzontal" #: plug-ins/print/gimp_main_window.c:514 -#, fuzzy msgid "Distance from the left of the paper to the image" -msgstr "La distància des del centre de la imatge determina la mida del traç" +msgstr "La distància des de l'esquerra del paper a la imatge" #: plug-ins/print/gimp_main_window.c:527 -#, fuzzy msgid "Distance from the top of the paper to the image" -msgstr "La distància des del centre de la imatge determina la mida del traç" +msgstr "La distància des del damunt del paper a la imatge" #: plug-ins/print/gimp_main_window.c:540 -#, fuzzy msgid "Distance from the left of the paper to the right of the image" -msgstr "La distància des del centre de la imatge determina la mida del traç" +msgstr "La distància des de l'esquerra del paper a la dreta de la imatge" #: plug-ins/print/gimp_main_window.c:550 msgid "Right Border:" msgstr "Marge dret:" #: plug-ins/print/gimp_main_window.c:554 -#, fuzzy msgid "Distance from the right of the paper to the image" -msgstr "La distància des del centre de la imatge determina la mida del traç" +msgstr "Distància des de la dreta del paper a la imatge" #: plug-ins/print/gimp_main_window.c:568 -#, fuzzy msgid "Distance from the top of the paper to the bottom of the image" -msgstr "" -"Distància des del centre de la imatge que determina la direcció del traç" +msgstr "Distància des del damunt del paper a sota de la imatge" #: plug-ins/print/gimp_main_window.c:578 msgid "Bottom Border:" msgstr "Marge superior:" #: plug-ins/print/gimp_main_window.c:582 -#, fuzzy msgid "Distance from the bottom of the paper to the image" -msgstr "La distància des del centre de la imatge determina la mida del traç" +msgstr "Distància des d'abaix del paper a la imatge" #: plug-ins/print/gimp_main_window.c:595 -#, fuzzy msgid "Center:" -msgstr "Centre" +msgstr "Centre:" #: plug-ins/print/gimp_main_window.c:599 -#, fuzzy msgid "Vertically" -msgstr "Vertical" +msgstr "Verticalment" #: plug-ins/print/gimp_main_window.c:604 msgid "Center the image vertically on the paper" -msgstr "" +msgstr "Centra la imatge verticalment en el paper" #: plug-ins/print/gimp_main_window.c:610 msgid "Both" -msgstr "Ambdos" +msgstr "Ambdòs" #: plug-ins/print/gimp_main_window.c:615 -#, fuzzy msgid "Center the image on the paper" -msgstr "Abans, convertiu la imatge a format RGB!" +msgstr "Centra la imatge en el paper" #: plug-ins/print/gimp_main_window.c:622 -#, fuzzy msgid "Horizontally" -msgstr "Horitzontal" +msgstr "Horitzontalment" #: plug-ins/print/gimp_main_window.c:627 msgid "Center the image horizontally on the paper" -msgstr "" +msgstr "Centra la imatge horitzontalment" #: plug-ins/print/gimp_main_window.c:643 -#, fuzzy msgid "Setup Printer" -msgstr "Impressora:" +msgstr "Configura la impressora" +# * Printer driver option menu. #. #. * Printer driver option menu. #. @@ -12107,8 +11744,9 @@ #: plug-ins/print/gimp_main_window.c:684 msgid "Select your printer model" -msgstr "" +msgstr "Seleccioneu el vostre model d'impressora" +# * PPD file. #. #. * PPD file. #. @@ -12117,17 +11755,20 @@ msgstr "Fitxer PPD:" #: plug-ins/print/gimp_main_window.c:739 +#, fuzzy msgid "Enter the PPD filename for your printer" -msgstr "" +msgstr "Introduïu el nom de fitxer PPD correcte per a la vostra impressora" #: plug-ins/print/gimp_main_window.c:742 msgid "Browse" -msgstr "Navegador" +msgstr "Navega" #: plug-ins/print/gimp_main_window.c:748 +#, fuzzy msgid "Choose the PPD file for your printer" -msgstr "" +msgstr "Escolliu el nom de fitxer PPD correcte per a la vostra impressora" +# * Print command. #. #. * Print command. #. @@ -12136,37 +11777,41 @@ msgstr "Ordre:" #: plug-ins/print/gimp_main_window.c:771 +#, fuzzy msgid "" "Enter the command to print to your printer. Note: Please do not remove the `-" "l' or `-oraw' from the command string, or printing will probably fail!" msgstr "" +"Introduïu l'ordre correcta per imprimir a la vostra impressora. Si suprimiu " +"les opcions '-l' o '-oraw' de la línia d'ordres probablement la impressió " +"fallarà." +# * PPD file selection dialog. #: plug-ins/print/gimp_main_window.c:781 #, fuzzy msgid "Choose PPD File" -msgstr "Fitxer PPD?" +msgstr "És un fitxer PPD?" #: plug-ins/print/gimp_main_window.c:802 -#, fuzzy msgid "Define New Printer" -msgstr "Suprimeix el punt" +msgstr "Definiu una nova impressora" #: plug-ins/print/gimp_main_window.c:825 plug-ins/print/gimp_main_window.c:920 #, fuzzy msgid "Printer name:" -msgstr "Impressora:" +msgstr "Nom de la impressora:" #: plug-ins/print/gimp_main_window.c:829 msgid "Enter the name you wish to give this logical printer" -msgstr "" +msgstr "Introduïu el nom que voleu donar a aquesta impressora lògica" #: plug-ins/print/gimp_main_window.c:842 msgid "About Gimp-Print " -msgstr "" +msgstr "Quant al Gimp-Print" #: plug-ins/print/gimp_main_window.c:855 msgid "Gimp-Print Version " -msgstr "" +msgstr "Versió del Gimp-Print" #: plug-ins/print/gimp_main_window.c:855 msgid "" @@ -12191,75 +11836,105 @@ "along with this program; if not, write to the Free Software\n" "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n" msgstr "" +"\n" +"\n" +"Copyright (C) 1997-2001 Michael Sweet, Robert Krawitz,\n" +"i la resta de l'equip de desenvolupament del Gimp-Print.\n" +"\n" +"Visiteu el nostre lloc web a http://gimp-print.sourceforge.net.\n" +"\n" +"Això és programari lliure; podeu redistribuir-lo i/o\n" +"modificar-lo sota els termes de la Llicència Pública General GNU tal i\n" +"com ha estat publicada per la Free Software Foundation; bé sota la\n" +"versió 2 de la Llicència.\n" +"\n" +"Aquest programa es distribueix amb l'expectativa de que serà útil\n" +"però SENSE CAP GARANTIA; ni tan sols la garantia implícita de\n" +"COMERCIABILITAT o ADEQUACIÓ PER UN PROPÒSIT PARTICULAR. Vegeu la\n" +"Llicència Pública General GNU per obtenir-ne \n" +"més detalls.\n" +"\n" +"Hauríeu d'haver rebut una còpia del la Llicència Pública General de GNU\n" +"juntament amb aquest programa. En cas contrari, podeu demanar-la a la\n" +"Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,\n" +"MA 02111-1307 USA.\n" #: plug-ins/print/gimp_main_window.c:903 msgid "Printer Settings" -msgstr "Paràmetres de la impressora" +msgstr "Configuració de la impressora" #: plug-ins/print/gimp_main_window.c:916 msgid "" "Select the name of the printer (not the type, or model, of printer) that you " "wish to print to" msgstr "" +"Seleccioneu el nom de la impressora (no el tipus ni el model) en la que " +"voleu imprimir" +# * Printer driver option menu. #: plug-ins/print/gimp_main_window.c:926 #, fuzzy msgid "Printer model:" msgstr "Model d'impressora:" +# * Setup printer button #. #. * Setup printer button #. #: plug-ins/print/gimp_main_window.c:937 #, fuzzy msgid "Setup printer..." -msgstr "Desentrellaça..." +msgstr "Configura la impressora..." #: plug-ins/print/gimp_main_window.c:939 msgid "" "Choose the printer model, PPD file, and command that is used to print to " "this printer" msgstr "" +"Escolliu el model d'impressora, fitxer PPD i l'ordre que s'ha de fer servir " +"per imprimir a aquesta impressora" +# * New printer button #. #. * New printer button #. #: plug-ins/print/gimp_main_window.c:954 #, fuzzy msgid "New printer..." -msgstr "S'està fent el full de mà..." +msgstr "Nova impressora..." #: plug-ins/print/gimp_main_window.c:956 msgid "" "Define a new logical printer. This can be used to name a collection of " "settings that you wish to remember for future use." msgstr "" +"Definiu una nova impressora lògica. S'usa per donar nom a una col·lecció de " +"configuracions que voleu recordar per a ús futur." #: plug-ins/print/gimp_main_window.c:977 msgid "Size of paper that you wish to print to" -msgstr "" +msgstr "Mida del paper on voleu imprimir" #: plug-ins/print/gimp_main_window.c:980 #, fuzzy msgid "Media size:" -msgstr "Mida del medi:" +msgstr "Mida:" #: plug-ins/print/gimp_main_window.c:989 -#, fuzzy msgid "Dimensions:" -msgstr "Dimensions" +msgstr "Dimensions:" #: plug-ins/print/gimp_main_window.c:1003 msgid "Width of the paper that you wish to print to" -msgstr "" +msgstr "Amplada del paper on voleu imprimir" #: plug-ins/print/gimp_main_window.c:1020 msgid "Height of the paper that you wish to print to" -msgstr "" +msgstr "Alçada del paper on voleu imprimir" #: plug-ins/print/gimp_main_window.c:1036 msgid "Type of media you're printing to" -msgstr "" +msgstr "Tipus de medi on voleu imprimir" #: plug-ins/print/gimp_main_window.c:1039 #, fuzzy @@ -12268,16 +11943,16 @@ #: plug-ins/print/gimp_main_window.c:1052 msgid "Source (input slot) of media you're printing to" -msgstr "" +msgstr "Font (safata d'entrada) del medi on voleu imprimir" #: plug-ins/print/gimp_main_window.c:1055 #, fuzzy msgid "Media source:" -msgstr "Font del medi" +msgstr "Font del medi:" #: plug-ins/print/gimp_main_window.c:1068 msgid "Type of ink in the printer" -msgstr "" +msgstr "Tipus de tinta de la impressora" #: plug-ins/print/gimp_main_window.c:1071 #, fuzzy @@ -12286,16 +11961,15 @@ #: plug-ins/print/gimp_main_window.c:1084 msgid "Resolution and quality of the print" -msgstr "" +msgstr "Resolució i qualitat de la impressió" #: plug-ins/print/gimp_main_window.c:1121 msgid "Scaling:" -msgstr "Escalatge:" +msgstr "Escalat:" #: plug-ins/print/gimp_main_window.c:1127 -#, fuzzy msgid "Set the scale (size) of the image" -msgstr "Fes servir el color de la imatge" +msgstr "Definiu l'escala (mida) de la imatge" #: plug-ins/print/gimp_main_window.c:1152 #, fuzzy @@ -12307,33 +11981,32 @@ "Select whether scaling is measured as percent of available page size or " "number of output dots per inch" msgstr "" +"Seleccioneu si l'escalat es mesura com a percentatge de la mida de pàgina " +"disponible o el nombre de punts per polzada" #: plug-ins/print/gimp_main_window.c:1162 msgid "Percent" msgstr "Percentatge" #: plug-ins/print/gimp_main_window.c:1169 -#, fuzzy msgid "Scale the print to the size of the page" -msgstr "El to de color de la regió determina la mida del traç" +msgstr "Escala la impressió a la mida de la pàgina" #: plug-ins/print/gimp_main_window.c:1175 msgid "PPI" -msgstr "PPP" +msgstr "ppp" #: plug-ins/print/gimp_main_window.c:1181 msgid "Scale the print to the number of dots per inch" -msgstr "" +msgstr "Escala la impressió al nombre de punts per polzada" #: plug-ins/print/gimp_main_window.c:1203 -#, fuzzy msgid "Set the width of the print" -msgstr "Ajusteu l'opacitat de les pertorbacions" +msgstr "Definiu l'amplada de la impressió" #: plug-ins/print/gimp_main_window.c:1216 -#, fuzzy msgid "Set the height of the print" -msgstr "Canvia l'exponent del to" +msgstr "Definiu l'alçada de la impressió" #: plug-ins/print/gimp_main_window.c:1237 msgid "Units:" @@ -12341,7 +12014,7 @@ #: plug-ins/print/gimp_main_window.c:1242 msgid "Select the base unit of measurement for printing" -msgstr "" +msgstr "Seleccioneu la unitat bàsica de mesura per a la impressió" #: plug-ins/print/gimp_main_window.c:1245 msgid "Inch" @@ -12349,7 +12022,7 @@ #: plug-ins/print/gimp_main_window.c:1252 msgid "Set the base unit of measurement to inches" -msgstr "" +msgstr "Definiu les polzades com a unitat de mesura" #: plug-ins/print/gimp_main_window.c:1258 msgid "cm" @@ -12357,27 +12030,27 @@ #: plug-ins/print/gimp_main_window.c:1264 msgid "Set the base unit of measurement to centimetres" -msgstr "" +msgstr "Definiu els centímetres com a unitat de mesura" +# * The "image size" button #. #. * The "image size" button #. #: plug-ins/print/gimp_main_window.c:1274 -#, fuzzy msgid "" "Use Original\n" "Image Size" -msgstr "Mida de la imatge" +msgstr "" +"Utilitza la mida\n" +"original de la imatge" #: plug-ins/print/gimp_main_window.c:1280 -#, fuzzy msgid "Set the print size to the size of the image" -msgstr "Desa la configuració actual al fitxer especificat" +msgstr "Definiu la mida de la impressió a la mida de la imatge" #: plug-ins/print/gimp_main_window.c:1303 -#, fuzzy msgid "Image / Output Settings" -msgstr "Paràmtres de la imatge" +msgstr "Configuració de la imatge / sortida" #: plug-ins/print/gimp_main_window.c:1317 #, fuzzy @@ -12386,16 +12059,16 @@ #: plug-ins/print/gimp_main_window.c:1325 msgid "Optimize the output for the type of image being printed" -msgstr "" +msgstr "Optimitza la sortida per al tipus d'imatge que s'imprimirà" #: plug-ins/print/gimp_main_window.c:1329 #, fuzzy msgid "Line art" -msgstr "Forma de la línia" +msgstr "Imatge lineal" #: plug-ins/print/gimp_main_window.c:1336 msgid "Fastest and brightest color for text and line art" -msgstr "" +msgstr "Més ràpid, amb colors més brillants, per a text i línies" #: plug-ins/print/gimp_main_window.c:1343 #, fuzzy @@ -12404,7 +12077,7 @@ #: plug-ins/print/gimp_main_window.c:1350 msgid "Best for images dominated by regions of solid color" -msgstr "" +msgstr "Millor per a imatges on dominen les regions de colors sòlids" #: plug-ins/print/gimp_main_window.c:1358 msgid "Photograph" @@ -12415,6 +12088,8 @@ "Slowest, but most accurate and smoothest color for continuous tone images " "and photographs" msgstr "" +"Més lent però amb més precissió i amb colors més suaus. Per a imatges de to " +"continu i fotografies" #: plug-ins/print/gimp_main_window.c:1389 #, fuzzy @@ -12423,16 +12098,15 @@ #: plug-ins/print/gimp_main_window.c:1396 msgid "Select the desired output type" -msgstr "" +msgstr "Seleccioneu el tipus de sortida desitjada" #: plug-ins/print/gimp_main_window.c:1405 -#, fuzzy msgid "Color output" -msgstr "Mode de color" +msgstr "Sortida de color" #: plug-ins/print/gimp_main_window.c:1417 msgid "Print in shades of gray using black ink" -msgstr "" +msgstr "Imprimeix en ombres de gris fent servir tintes negres" #: plug-ins/print/gimp_main_window.c:1424 #, fuzzy @@ -12441,24 +12115,29 @@ #: plug-ins/print/gimp_main_window.c:1431 msgid "Print in black and white (no color, and no shades of gray)" -msgstr "" +msgstr "Imprimeix en negre i blanc (sense color, sense ombres grises)" +# * Color adjust button #. #. * Color adjust button #. #: plug-ins/print/gimp_main_window.c:1442 +#, fuzzy msgid "Adjust output..." -msgstr "" +msgstr "Ajusteu la sortida..." #: plug-ins/print/gimp_main_window.c:1449 msgid "" "Adjust color balance, brightness, contrast, saturation, and dither algorithm" msgstr "" +"Ajusteu el balanç de color, la brillantor, el contrast, la saturació i " +"l'algorisme de trama" +# * Output file selection dialog. #: plug-ins/print/gimp_main_window.c:1483 #, fuzzy msgid "Print to File" -msgstr "Imprimir a fitxer?" +msgstr "Voleu imprimir a un fitxer?" #: plug-ins/print/print.c:164 #, fuzzy @@ -12470,6 +12149,7 @@ msgid "File" msgstr "Fitxer" +# Create dialog #: plug-ins/rcm/rcm.c:106 #, fuzzy msgid "Colormap _Rotation..." @@ -12485,7 +12165,7 @@ #: plug-ins/rcm/rcm_dialog.c:127 msgid "Rotated" -msgstr "Rotat" +msgstr "Girat" #: plug-ins/rcm/rcm_dialog.c:140 msgid "Continuous update" @@ -12493,26 +12173,27 @@ #: plug-ins/rcm/rcm_dialog.c:153 msgid "Area:" -msgstr "Àrea" +msgstr "Àrea:" #: plug-ins/rcm/rcm_dialog.c:157 -#, fuzzy msgid "Entire Layer" -msgstr "Imatge sencera" +msgstr "Capa sencera" #: plug-ins/rcm/rcm_dialog.c:159 msgid "Context" msgstr "Context" +# spinbutton 1 #. spinbutton 1 #: plug-ins/rcm/rcm_dialog.c:284 plug-ins/rcm/rcm_dialog.c:362 msgid "From" msgstr "Des de" +# spinbutton 2 #. spinbutton 2 #: plug-ins/rcm/rcm_dialog.c:310 plug-ins/rcm/rcm_dialog.c:363 msgid "To" -msgstr "a" +msgstr "A" #. * Gray: Operation-Mode * #: plug-ins/rcm/rcm_dialog.c:499 @@ -12520,6 +12201,7 @@ msgid "Gray Mode" msgstr "Mode de color" +# Gray: Operation-Mode: two radio buttons #. Gray: Operation-Mode: two radio buttons #: plug-ins/rcm/rcm_dialog.c:508 msgid "Treat as this" @@ -12533,13 +12215,15 @@ #: plug-ins/rcm/rcm_dialog.c:533 #, fuzzy msgid "Gray Threshold" -msgstr "Llindar verd:" +msgstr "Llindar v_erd:" +# * Misc: Used unit selection * #. * Misc: Used unit selection * #: plug-ins/rcm/rcm_dialog.c:572 plug-ins/rcm/rcm_dialog.c:676 msgid "Units" msgstr "Unitats" +# Misc: Used unit selection: 3 radio buttons #. Misc: Used unit selection: 3 radio buttons #: plug-ins/rcm/rcm_dialog.c:581 msgid "Radians" @@ -12553,6 +12237,7 @@ msgid "Degrees" msgstr "Graus" +# Create dialog #. Create dialog #: plug-ins/rcm/rcm_dialog.c:638 msgid "Colormap Rotation" @@ -12562,6 +12247,7 @@ msgid "Main Options" msgstr "Opcions principals" +# General options #: plug-ins/rcm/rcm_dialog.c:673 #, fuzzy msgid "Gray Options" @@ -12569,11 +12255,11 @@ #: plug-ins/rcm/rcm_stock.c:35 msgid "Switch to clockwise" -msgstr "Commuta al sentit de les agulles del rellotge" +msgstr "Commuta al sentit horari" #: plug-ins/rcm/rcm_stock.c:37 msgid "Switch to c/clockwise" -msgstr "Commuta al sentit contrari a les agulles del rellotge" +msgstr "Commuta al sentit antihorari" #: plug-ins/rcm/rcm_stock.c:39 msgid "Change order of arrows" @@ -12583,9 +12269,10 @@ msgid "Select all" msgstr "Selecciona-ho tot" +# printf("width = %d, height = %d\n +# BITMAP_WIDTH(marked),BITMAP_HEIGHT(marked)); #. printf("width = %d, height = %d\n",BITMAP_WIDTH(marked),BITMAP_HEIGHT(marked)); #: plug-ins/sel2path/pxl-outline.c:83 -#, fuzzy msgid "Selection to Path..." msgstr "Selecció a camí..." @@ -12594,18 +12281,17 @@ msgstr "No hi ha cap selecció per convertir" #: plug-ins/sel2path/sel2path.c:302 -#, fuzzy msgid "Selection To Path Advanced Settings" -msgstr "Paràmetres avançats sel2path" +msgstr "Paràmetres avançats de la selecció a camí" #: plug-ins/sgi/sgi.c:122 plug-ins/sgi/sgi.c:142 msgid "Silicon Graphics IRIS image" msgstr "" #: plug-ins/sgi/sgi.c:540 -#, fuzzy, c-format +#, c-format msgid "Could not open '%s' for writing." -msgstr "No es pot obrir el fitxer per escriure-hi" +msgstr "No s'ha pogut obrir el fitxer '%s' per escriure-hi." #: plug-ins/sgi/sgi.c:622 msgid "Save as SGI" @@ -12624,7 +12310,7 @@ #: plug-ins/sgi/sgi.c:637 #, fuzzy msgid "RLE compression" -msgstr "Compressió RLE" +msgstr "Compressió _RLE" #: plug-ins/sgi/sgi.c:639 #, fuzzy @@ -12633,7 +12319,7 @@ "(not supported by SGI)" msgstr "" "RLE agressiu\n" -"(No està suportat per SGI)" +"(SGI no ho suporta)" #: plug-ins/twain/twain.c:313 msgid "TWAIN (Dump)..." @@ -12647,11 +12333,11 @@ msgid "_TWAIN..." msgstr "" +# Initialize our progress dialog #. Initialize our progress dialog #: plug-ins/twain/twain.c:489 -#, fuzzy msgid "Transferring TWAIN data..." -msgstr "S'estan transferint dades del TWAIN" +msgstr "S'estan transferint dades del TWAIN..." #: plug-ins/winicon/icodialog.c:123 msgid "1 bpp, 1-bit alpha, 2-slot palette" @@ -12693,11 +12379,11 @@ #: plug-ins/winsnap/winsnap.c:877 msgid "Grab a single window" -msgstr "" +msgstr "Obté una única finestra" #: plug-ins/winsnap/winsnap.c:891 msgid "Grab the whole screen" -msgstr "" +msgstr "Obté la pantalla sencera" #: plug-ins/winsnap/winsnap.c:907 msgid "after" @@ -12714,7 +12400,7 @@ #: plug-ins/winsnap/winsnap.c:1139 msgid "No data captured" -msgstr "No s'a capturat cap dada" +msgstr "No s'ha capturat cap dada" #: plug-ins/xjt/xjt.c:475 plug-ins/xjt/xjt.c:493 msgid "GIMP compressed XJT image" @@ -12723,32 +12409,32 @@ #: plug-ins/xjt/xjt.c:714 #, c-format msgid "XJT file contains unknown layermode %d" -msgstr "El fitxer XJT conté un mode de capa %d que és desconegut" +msgstr "El fitxer XJT conté un mode de capa %d desconegut" #: plug-ins/xjt/xjt.c:751 #, c-format msgid "Warning: unsupported layermode %d saved to XJT" -msgstr "Atenció: s'ha desat a XJT un mode de capa %d que no és suportat" +msgstr "Avís: s'ha desat a XJT un mode de capa %d no suportat" #: plug-ins/xjt/xjt.c:767 #, c-format msgid "XJT file contains unknown pathtype %d" -msgstr "El fitxer XJT conté un tipus de camí %d que és desconegut" +msgstr "El fitxer XJT conté un tipus de camí %d desconegut" #: plug-ins/xjt/xjt.c:783 #, c-format msgid "Warning: unsupported pathtype %d saved to XJT" -msgstr "Atenció: s'ha desat a XJT un tipus de camí %d que no és suportat" +msgstr "Avís: s'ha desat a XJT un tipus de camí %d no suportat" #: plug-ins/xjt/xjt.c:802 #, c-format msgid "XJT file contains unknown unittype %d" -msgstr "El fitxer XJT conté un tipus d'unitat %d que no és suportat" +msgstr "El fitxer XJT conté un tipus d'unitat %d no suportat" #: plug-ins/xjt/xjt.c:823 #, c-format msgid "Warning: unsupported unittype %d saved to XJT" -msgstr "Atenció: s'ha desat a XJT un tipus d'unitat %d que no és suportat" +msgstr "Avís: s'ha desat a XJT un tipus d'unitat %d no suportat" #: plug-ins/xjt/xjt.c:844 msgid "Save as XJT" @@ -12768,4044 +12454,1103 @@ msgstr "Suavitat:" #: plug-ins/xjt/xjt.c:1693 plug-ins/xjt/xjt.c:3323 -#, fuzzy, c-format +#, c-format msgid "Could not create working folder '%s': %s" -msgstr "no es pot crear el directori de treball: %s" +msgstr "No s'ha pogut crear el directori de treball '%s': %s" #: plug-ins/xjt/xjt.c:3189 -#, fuzzy, c-format +#, c-format msgid "Error: Could not read XJT property file '%s'." -msgstr "Error: No es pot llegir el fitxer de propietats XJT %s" +msgstr "" +"S'ha produït un error: no s'ha pogut llegir el fitxer de propietats XJT '%s'." #: plug-ins/xjt/xjt.c:3195 -#, fuzzy, c-format +#, c-format msgid "Error: XJT property file '%s' is empty." -msgstr "Error: El fitxer de propietats %s és buit" +msgstr "S'ha produït un error: el fitxer de propietats XJT '%s' és buit." -#, fuzzy -#~ msgid "Gfig layer %d" -#~ msgstr "%d capa Gfig" - -#, fuzzy -#~ msgid "TIFF images" -#~ msgstr "Canal TIFF" +#~ msgid "Save: No filename given" +#~ msgstr "Desa: no heu anomenat el fitxer" -#~ msgid "Paint" -#~ msgstr "Pinta" +#~ msgid "Cannot save to a folder." +#~ msgstr "No es pot desar a la carpeta." -#, fuzzy -#~ msgid "All" -#~ msgstr "Cancel·la" +#~ msgid "/Filters/Render/_Fractal Explorer..." +#~ msgstr "/Filtres/Composa/Explorador _fractal..." -#~ msgid "Clockwise" -#~ msgstr "Sentit igual a les agulles del rellotge" +#~ msgid "/Filters/Light Effects/_Lighting Effects..." +#~ msgstr "/Filtres/Efectes de llum/Efectes de _llum..." -#~ msgid "Anti-Clockwise" -#~ msgstr "Sentit invers a les agulles del rellotge" +#~ msgid "E_nable Antialiasing" +#~ msgstr "Ha_bilita el suavitzat" -#, fuzzy -#~ msgid "Ifs_Compose..." -#~ msgstr "IfsCompose" +#~ msgid "T_hreshold:" +#~ msgstr "_Llindar:" -#~ msgid "IfsCompose: Target" -#~ msgstr "IfsCompose: Objectiu" +#~ msgid "L_ight Type:" +#~ msgstr "T_ipus de llum:" -#~ msgid "IfsCompose: Red" -#~ msgstr "IfsCompose: Vermell" +#~ msgid "Lig_ht Color:" +#~ msgstr "C_olor de la llum:" -#~ msgid "IfsCompose: Green" -#~ msgstr "IfsCompose: Verd" +#~ msgid "_Ambient:" +#~ msgstr "_Ambient:" -#~ msgid "IfsCompose: Blue" -#~ msgstr "IfsCompose: Blau" +#~ msgid "_Diffuse:" +#~ msgstr "_Difusió:" -#~ msgid "IfsCompose: Black" -#~ msgstr "IfsCompose: Negre" +#~ msgid "D_iffuse:" +#~ msgstr "D_ifusió:" -#~ msgid "IfsCompose" -#~ msgstr "IfsCompose" +#~ msgid "_Specular:" +#~ msgstr "E_specular:" -#, fuzzy -#~ msgid "Rotate/scale" -#~ msgstr "Rota/Escala" +#~ msgid "_Highlight:" +#~ msgstr "_Ressaltament:" -#, fuzzy -#~ msgid "Recompute _center" -#~ msgstr "Centre de recomputació" +#~ msgid "Preview Options" +#~ msgstr "Opcions de previsualització" -#, fuzzy -#~ msgid "/Move" -#~ msgstr "Mou" +#~ msgid "/Filters/Map/Map _Object..." +#~ msgstr "/Filtres/Mapa/Mapeja _objecte..." -#, fuzzy -#~ msgid "/Stretch" -#~ msgstr "Amplia" +#~ msgid "Save Options" +#~ msgstr "Desa les opcions" -#, fuzzy -#~ msgid "/New" -#~ msgstr "Nou" +#~ msgid "/Filters/Colors/Map/_Alien Map..." +#~ msgstr "/Filtres/Colors/Mapa/Mapa _estrany..." -#, fuzzy -#~ msgid "/Delete" -#~ msgstr "Suprimeix" +#~ msgid "AlienMap: Transforming..." +#~ msgstr "Mapa estrany: s'està transformant..." -#, fuzzy -#~ msgid "/Undo" -#~ msgstr "Desfés" +#~ msgid "AlienMap" +#~ msgstr "Mapa estrany" -#, fuzzy -#~ msgid "/Redo" -#~ msgstr "Refés" +#~ msgid "Change intensity of the red channel" +#~ msgstr "Canvia la intensitat del canal vermell" -#, fuzzy -#~ msgid "/Select All" -#~ msgstr "Selecciona tot" +#~ msgid "Change intensity of the green channel" +#~ msgstr "Canvia la intensitat del canal verd" -#~ msgid "IfsCompose Options" -#~ msgstr "Opcions del IfsCompose" +#~ msgid "Change intensity of the blue channel" +#~ msgstr "Canvia la intensitat del canal blau" -#~ msgid "Opening %s" -#~ msgstr "S'està obrint %s" +#~ msgid "Cos_ine" +#~ msgstr "Cos_inus" -#~ msgid "See %s" -#~ msgstr "Veieu %s" +#~ msgid "Use sine-function for red component." +#~ msgstr "Utilitza la funció sinus per al component vermell." -#~ msgid "Loading %s:" -#~ msgstr "S'està carregant: %s" +#~ msgid "Use cosine-function for red component." +#~ msgstr "Utilitza la funció cosinus per al component vermell." -#~ msgid "Saving %s:" -#~ msgstr "S'està desant %s:" +#~ msgid "" +#~ "Red channel: use linear mapping instead of any trigonometrical function" +#~ msgstr "" +#~ "Canal vermell: utilitza un mapatge lineal en lloc de qualsevol funció " +#~ "trigonomètrica" -#~ msgid "Despeckling..." -#~ msgstr "S'estan traient els punts…" +#~ msgid "Use sine-function for green component." +#~ msgstr "Utilitza la funció sinus per al component verd." -#~ msgid "Rendering %s" -#~ msgstr "S'està generant %s" +#~ msgid "Use cosine-function for green component." +#~ msgstr "Utilitza la funció cosinus per al component verd." -#~ msgid "Scale (log 2):" -#~ msgstr "Escala (registre 2):" +#~ msgid "" +#~ "Green channel: use linear mapping instead of any trigonometrical function" +#~ msgstr "" +#~ "Canal verd: utilitza un mapatge lineal en lloc de qualsevol funció " +#~ "trigonomètrica" -#~ msgid "Bezier Settings" -#~ msgstr "Paràmetres Bezier" +#~ msgid "Use sine-function for blue component." +#~ msgstr "Utilitza la funció sinus per al component blau." -#~ msgid "Number of Sides/Points/Turns:" -#~ msgstr "Nombre de cares/punts/girs:" +#~ msgid "Use cosine-function for blue component." +#~ msgstr "Utilitza la funció cosinus per al component blau." -#, fuzzy #~ msgid "" -#~ "The requested document could not be found in your GIMP help path as shown " -#~ "above. This means that the topic has not yet been written or your " -#~ "installation is not complete. Ensure that your installation is complete " -#~ "before reporting this error as a bug." +#~ "Blue channel: use linear mapping instead of any trigonometrical function" #~ msgstr "" -#~ "No s'ha trobat el document

%s

No s'ha pogut cercar el document

%s

Això significa que o l'ajuda d'aquest apartat no " -#~ "s'ha escrit encara o que hi ha quelcom que funciona malament dins la " -#~ "vostre instal·lació. Si us plau verifiqueu amb cura abans d'enviar això " -#~ "com un error de programació." +#~ "Canal blau: utilitza el mapatge lineal en lloc de qualsevol funció " +#~ "triginomètrica" -#, fuzzy -#~ msgid "/Filters/Render" -#~ msgstr "/Filtres/Genera/Gfig..." +#~ msgid "About AlienMap" +#~ msgstr "Quant a mapa estrany" + +#~ msgid "/Filters/Colors/Map/Alien Map _2..." +#~ msgstr "/Filtres/Colors/Mapa/Mapa estrany _2..." -#~ msgid "/Filters/Light Effects" -#~ msgstr "/Filtres/Efectes de llum" +#~ msgid "Change frequency of the red/hue channel" +#~ msgstr "Canvia la freqüència del canal to/vermell" -#~ msgid "/Filters/Map" -#~ msgstr "/Filtres/Mapa" +#~ msgid "Change angle of the red/hue channel" +#~ msgstr "Canvia l'angle del canal to/vermell" -#~ msgid "/Filters/Colors/Map" -#~ msgstr "/Filtres/Colors/Mapa" +#~ msgid "Change frequency of the green/saturation channel" +#~ msgstr "Canvia la freqüència del canal saturació/verd" -#~ msgid "/Filters/Render/Pattern" -#~ msgstr "/Filtres/Executa/Patró" +#~ msgid "Change angle of the green/saturation channel" +#~ msgstr "Canvia l'angle del canal saturació/verd" -#~ msgid "/Filters/Animation" -#~ msgstr "/Filtres/Animació" +#~ msgid "Change frequency of the blue/luminance channel" +#~ msgstr "Canvia la freqüència del canal lluminositat/blau" -#~ msgid "/Filters/Glass Effects" -#~ msgstr "/Filtres/Efectes de lent" +#~ msgid "Change angle of the blue/luminance channel" +#~ msgstr "Canvia l'angle del canal lluminositat/blau" -#~ msgid "/Image/Crop" -#~ msgstr "/Imatge/Escapça" +#~ msgid "Use function for red/hue component" +#~ msgstr "Utilitza una funció per al component to/vermell" -#~ msgid "/Layer/Crop" -#~ msgstr "/Capa/Escapça" +#~ msgid "Use function for green/saturation component" +#~ msgstr "Utlitza una funció per al component saturació/verd" -#~ msgid "/Layer/Colors/Auto" -#~ msgstr "/Capa/Colors/Automàtic" +#~ msgid "Use function for blue/luminance component" +#~ msgstr "Utilitza una funció per al component lluminositat/blau" -#~ msgid "/Filters/Distorts" -#~ msgstr "/Filtres/Distorsions" +#~ msgid "About AlienMap2" +#~ msgstr "Quant al mapa estrany 2" -#~ msgid "/Filters/Blur" -#~ msgstr "/Filtres/Difumina" +#~ msgid "/Filters/Render/Pattern/CML _Explorer..." +#~ msgstr "/Filtres/Composa/Patró/_Explorador CML..." -#~ msgid "/Filters/Colors" -#~ msgstr "/Filtres/Colors" +#~ msgid "NULL" +#~ msgstr "CAP" -#~ msgid "/Layer/Colors/Info" -#~ msgstr "/Capa/Colors/Informació" +#~ msgid "The Graph" +#~ msgstr "La gràfica" -#, fuzzy -#~ msgid "/Layer/Transparency/Modify" -#~ msgstr "/Imatge/Alfa/Llindar alfa..." +#~ msgid "CML File Operation Warning" +#~ msgstr "Avís de l'operació amb el fitxer CML" -#~ msgid "/Image/Mode" -#~ msgstr "/Imatge/Mode" +#~ msgid "/Layer/Align _Visible Layers..." +#~ msgstr "/Capes/Alinea les capes _visibles..." -#~ msgid "/Filters/Generic" -#~ msgstr "/Filtres/Genèric" +#~ msgid "Parameter Settings" +#~ msgstr "Configuració dels paràmetres" -#~ msgid "/Filters/Artistic" -#~ msgstr "/Filtres/Artístic" +#~ msgid "/Filters/Animation/_Playback..." +#~ msgstr "/Filtres/Animació/Re_producció..." -#~ msgid "/Filters/Enhance" -#~ msgstr "/Filtres/Millora" +#~ msgid "/Filters/Animation/Optimize (for _GIF)" +#~ msgstr "/Filtres/Animació/Optimitza (per a _GIF)" -#~ msgid "/Filters/Combine" -#~ msgstr "/Filtres/Combina" +#~ msgid "/Filters/Animation/_UnOptimize" +#~ msgstr "/Filtres/Animació/_Desoptimitza" -#~ msgid "/Filters/Edge-Detect" -#~ msgstr "/Filtres/Detecció de vores" +#~ msgid "/Filters/Animation/_Remove Backdrop" +#~ msgstr "/Filtres/Animació/_Suprimeix el fons" -#~ msgid "/Filters/Toys" -#~ msgstr "/Filtres/Joguines" +#~ msgid "/Filters/Animation/_Find Backdrop" +#~ msgstr "/Filtres/Animació/_Cerca el fons" -#~ msgid "/Image/Transform" -#~ msgstr "/Imatge/Transformacions" +#~ msgid "/Filters/Glass Effects/Apply _Lens..." +#~ msgstr "/Filtres/Efectes òptics/Aplica la _lent..." -#~ msgid "/File/Send" -#~ msgstr "/Fitxer/Envia" +#~ msgid "/Image/Transform/_Autocrop" +#~ msgstr "/Imatge/Transformacions/Escapçament _automàtic" -#, fuzzy -#~ msgid "_Do preview" -#~ msgstr "Fes la visualització prèvia" +#~ msgid "/Layer/Colors/Auto/Stretch _HSV" +#~ msgstr "/Capes/Colors/Automàtic/Amplia l'_HSV" -#~ msgid "/Filters/Noise" -#~ msgstr "/Filtres/Soroll" +#~ msgid "/Filters/Distorts/_Blinds..." +#~ msgstr "/Filtres/Distorsions/_Angles morts..." -#~ msgid "/Filters/Render/Clouds" -#~ msgstr "/Filtres/Genera/Núvols" +#~ msgid "/Filters/Blur/_Blur..." +#~ msgstr "/Filtres/Difuminació/_Difumina..." -#, fuzzy -#~ msgid "/File/Acquire" -#~ msgstr "/Fitxer/Adquirir/TWAIN..." +#~ msgid "R_andomization %:" +#~ msgstr "_Aleatorietat %:" -#~ msgid "/Xtns/Extensions" -#~ msgstr "/Xtns/Extensions" +#~ msgid "/Filters/Colors/_Border Average..." +#~ msgstr "/Filtres/Colors/_Vora mitjana..." -#, fuzzy -#~ msgid "/Edit" -#~ msgstr "/Fitxer/Imprimeix" +#~ msgid "1 (nonsense?)" +#~ msgstr "1 (sense sentit?)" -#~ msgid "/Filters/Render/Nature" -#~ msgstr "/Filters/Genera/Natura" +#~ msgid "256 (nonsense?)" +#~ msgstr "256 (sense sentit?)" -#~ msgid "/Filters/Web" -#~ msgstr "/Filtres/Web" +#~ msgid "/Filters/Map/_Bump Map..." +#~ msgstr "/Filtres/Mapa/_Bump map..." -#, fuzzy -#~ msgid "Source" -#~ msgstr "Font 1:" +#~ msgid "_Linear Map" +#~ msgstr "Mapa _lineal" -#, fuzzy -#~ msgid "Do pre_view" -#~ msgstr "Fes la visualització prèvia" +#~ msgid "_Spherical Map" +#~ msgstr "Mapa e_sfèric" #, fuzzy -#~ msgid "_Plugin Details" -#~ msgstr "Descripcions dels connectors" +#~ msgid "S_inusoidal Map" +#~ msgstr "Mapa s_inusoïdal" -#~ msgid "Details <<" -#~ msgstr "Detalls <<" +#~ msgid "/Layer/Colors/Auto/_Stretch Contrast" +#~ msgstr "/Capes/Colors/Automàtic/_Amplia el contrast" -#~ msgid "Details >>" -#~ msgstr "Detalls >>" +#~ msgid "/Filters/Colors/Colorcube A_nalysis..." +#~ msgstr "/Filtres/Colors/A_nàlisi del cub d ecolor..." -#~ msgid "Name:" -#~ msgstr "Nom:" +#~ msgid "Results" +#~ msgstr "Resultats" -#~ msgid "Blurb:" -#~ msgstr "Ressenya:" +#~ msgid "/Filters/Colors/Channel Mi_xer.." +#~ msgstr "/Filtres/Colors/_Mesclador de canal..." -#~ msgid "Help:" -#~ msgstr "Ajuda:" +#~ msgid "/Filters/Render/Pattern/_Checkerboard..." +#~ msgstr "/Filtres/Composa/Patró/Tauler d'es_cacs..." -#~ msgid "Plugin Descriptions" -#~ msgstr "Descripcions dels connectors" +#~ msgid "/Layer/Colors/Auto/_Color Enhance" +#~ msgstr "/Capes/Colors/Automàtic/Millora del _color" -#~ msgid "Search by Name" -#~ msgstr "Cerca per nom" +#~ msgid "/Filters/Colors/_Colorify..." +#~ msgstr "/Filtres/Colors/A_coloreix..." -#, fuzzy -#~ msgid "Ins date" -#~ msgstr "Data Ins" +#~ msgid "/Filters/Colors/Color to _Alpha..." +#~ msgstr "/Filtres/Colors/Color a _Alfa..." -#, fuzzy -#~ msgid "Menu path" -#~ msgstr "Camí de menú" - -#, fuzzy -#~ msgid "Image types" -#~ msgstr "Tipus d'imatge" - -#~ msgid "Search:" -#~ msgstr "Cerca:" - -#~ msgid "DB Browser" -#~ msgstr "Base de dades del Navegador" - -#~ msgid "In:" -#~ msgstr "Dins:" - -#~ msgid "Out:" -#~ msgstr "Fora:" - -#, fuzzy -#~ msgid "_Spherical" -#~ msgstr "Esfèric" - -#, fuzzy -#~ msgid "S_inusoidal" -#~ msgstr "Sinusoïdal" - -#~ msgid "EOF encountered on " -#~ msgstr "s'ha trobat l'EOF a " - -#~ msgid "No memory for mapping colors" -#~ msgstr "No hi ha memòria per fer el mapatge dels colors" - -#~ msgid "Selection:" -#~ msgstr "Selecció:" - -#, fuzzy -#~ msgid "E_nable antialiasing" -#~ msgstr "Habilita la contrarèplica" - -#, fuzzy -#~ msgid "T_hreshold:" -#~ msgstr "Llindar:" - -#, fuzzy -#~ msgid "L_ight yype:" -#~ msgstr "Tipus de llum:" - -#, fuzzy -#~ msgid "Lig_ht color:" -#~ msgstr "Color de la llum:" - -#, fuzzy -#~ msgid "_Ambient:" -#~ msgstr "Ambient:" - -#, fuzzy -#~ msgid "_Diffuse:" -#~ msgstr "Difusió:" - -#, fuzzy -#~ msgid "D_iffuse:" -#~ msgstr "Difusió:" - -#, fuzzy -#~ msgid "_Specular:" -#~ msgstr "Especular:" - -#, fuzzy -#~ msgid "_Highlight:" -#~ msgstr "Ressaltament:" - -#, fuzzy -#~ msgid "Parameters were Saved to '%s'" -#~ msgstr "" -#~ "Els paràmetres s'han desat a\n" -#~ "\"%s\"" - -#, fuzzy -#~ msgid "'%s' is not a HRZ file" -#~ msgstr "%s: no és un fitxer regular" - -#~ msgid "Brush" -#~ msgstr "Pinzell" - -#~ msgid "Airbrush" -#~ msgstr "Aerògraf" - -#~ msgid "Pencil" -#~ msgstr "Llapis" - -#, fuzzy -#~ msgid "" -#~ "Use the brush/pencil or the airbrush when drawing on the image. Pattern " -#~ "paints with currently selected brush with a pattern. Only applies to " -#~ "circles/ellipses if the \"Approx. Circles/Ellipses\" toggle is set." -#~ msgstr "" -#~ "Fes servir el pinzell o l’aerògraf en dibuixar sobre la imatge. El patró " -#~ "pinta amb el pinzell seleccionat actualment amb un patró. Només aplica a " -#~ "cercles/el·lipses si s'ha configurat la commutació aproximada de cercles/" -#~ "el·lipses." - -#~ msgid "New" -#~ msgstr "Nou" - -#~ msgid "Multiple" -#~ msgstr "Múltiple" - -#, fuzzy -#~ msgid "" -#~ "Draw all objects on one layer (original or new) or one object per layer." -#~ msgstr "" -#~ "Dibuixa tots els objectes en una capa (original o nova) o un objecte per " -#~ "capa" - -#~ msgid "Draw on:" -#~ msgstr "Dibuixa en:" - -#~ msgid "Selection+Fill" -#~ msgstr "Sel·lecció+farciment" - -#, fuzzy -#~ msgid "" -#~ "Draw type. Either a brush or a selection. See brush page or selection " -#~ "page for more options." -#~ msgstr "" -#~ "Dibuix tipus. És igual un pinzell o una selecció. Per més opcions aneu a " -#~ "la pàgina de pinzells o a la pàgina de selecció" - -#~ msgid "Using:" -#~ msgstr "S’està utilitzant:" - -#, fuzzy -#~ msgid "Reverse line" -#~ msgstr "Inverteix la línia" - -#~ msgid "Draw lines in reverse order" -#~ msgstr "Dibuixa les línies en ordre invers" - -#, fuzzy -#~ msgid "Scale to image" -#~ msgstr "Ajusta a la imatge" - -#~ msgid "Scale drawings to images size" -#~ msgstr "Ajusta els dibuixos a la mida de les imatges" - -#, fuzzy -#~ msgid "Approx. circles/ellipses" -#~ msgstr "Cercles/el·lipses aproximades" - -#~ msgid "" -#~ "Approx. circles & ellipses using lines. Allows the use of brush fading " -#~ "with these types of objects." -#~ msgstr "" -#~ "Cercles/el·lipses aproximades fent servir línies. Permet l’ús de la " -#~ "difuminació amb aquest tipus d’objectes." - -#, fuzzy -#~ msgid "Gfig Brush Selection" -#~ msgstr "Selecció de pinzell Gfig" - -#~ msgid "Fade out:" -#~ msgstr "Difumina:" - -#~ msgid "Gradient:" -#~ msgstr "Gradient:" - -#~ msgid "Pressure:" -#~ msgstr "Pressió:" - -#, fuzzy -#~ msgid "No options..." -#~ msgstr "Sense opcions..." - -#, fuzzy -#~ msgid "Set brush..." -#~ msgstr "Determina el pinzell..." - -#~ msgid "Add" -#~ msgstr "Afegeix" - -#~ msgid "Subtract" -#~ msgstr "Resta" - -#~ msgid "Intersect" -#~ msgstr "Interseca" - -#, fuzzy -#~ msgid "Fill type:" -#~ msgstr "Tipus farciment:" - -#~ msgid "Fill Opacity:" -#~ msgstr "Omple l’opacitat:" - -#, fuzzy -#~ msgid "Each selection" -#~ msgstr "Cada selecció" - -#, fuzzy -#~ msgid "All selections" -#~ msgstr "Totes les seleccions" - -#~ msgid "Fill after:" -#~ msgstr "Omple després:" - -#~ msgid "Segment" -#~ msgstr "Segment" - -#~ msgid "Sector" -#~ msgstr "Sector" - -#~ msgid "Arc as:" -#~ msgstr "Fes l’arc com:" - -#, fuzzy -#~ msgid "Reload image" -#~ msgstr "Actualitza la imatge" - -#, fuzzy -#~ msgid "Lock on grid" -#~ msgstr "Bloca la graella" - -#~ msgid "Object" -#~ msgstr "Objecte" - -#~ msgid "Create a new Gfig object collection for editing" -#~ msgstr "Crea una col·lecció d’objectes Gfig nova per editar" - -#~ msgid "Load a single Gfig object collection" -#~ msgstr "Carrega només una col·lecció d’objectes Gfig" - -#~ msgid "Edit Gfig object collection" -#~ msgstr "Edita la col·leció d'objectes del Gfig" - -#, fuzzy -#~ msgid "_Merge" -#~ msgstr "Refon" - -#, fuzzy -#~ msgid "Merge Gfig Ooject collection into the current edit session" -#~ msgstr "Refon el recull d'objectes Gfig amb l'actual sessió d'edició" - -#~ msgid "Delete currently selected Gfig Object collection" -#~ msgstr "Suprimeix la col·lecció d’objectes Gfig seleccionada actualment" - -#, fuzzy -#~ msgid "Select folder and rescan Gfig object collections" -#~ msgstr "" -#~ "Selecciona el directori i torna a escanejar la col·lecció d’objectes Gfig" - -#, fuzzy -#~ msgid "%d unsaved Gfig objects. Continue with exiting?" -#~ msgstr "" -#~ "%d d’objectes Gfig no desats.\n" -#~ "Voleu continuar i sortir?" - -#, fuzzy -#~ msgid "Enter Gfig object name" -#~ msgstr "Nom d’objecte Gfig:" - -#, fuzzy -#~ msgid "Gfig object name:" -#~ msgstr "Nom d’objecte Gfig:" - -#, fuzzy -#~ msgid "Rescan for Gfig objects" -#~ msgstr "Torna a escanejar els objectes Gfig" - -#, fuzzy -#~ msgid "Add Gfig path" -#~ msgstr "Afegeix un camí Gfig" - -#~ msgid "Error in copy layer for onlayers" -#~ msgstr "S'ha produït un error en copiar una capa de les capes superiors" - -#, fuzzy -#~ msgid "About Gfig" -#~ msgstr "Quant a Gfig" - -#~ msgid "Gfig - GIMP plug-in" -#~ msgstr "Gfig – connector GIMP" - -#, fuzzy -#~ msgid "Release 2.0" -#~ msgstr "Llançament 1.3" - -#, fuzzy -#~ msgid "New Gfig Object" -#~ msgstr "Nou objecte Gfig" - -#, fuzzy -#~ msgid "Delete Gfig drawing" -#~ msgstr "Suprimeix el dibuix Gfig" - -#~ msgid "%s copy" -#~ msgstr "%s còpia" - -#~ msgid "Collection Details" -#~ msgstr "Detalls de la col·lecció" - -#, fuzzy -#~ msgid "Draw name:" -#~ msgstr "Dibuixa el nom:" - -#~ msgid "(none)" -#~ msgstr "(cap)" - -#~ msgid "" -#~ msgstr "" - -#~ msgid "Curl Opacity" -#~ msgstr "Opacitat del rínxol" - -#, fuzzy -#~ msgid "" -#~ "Use current gradient\n" -#~ "instead of FG/BG-color" -#~ msgstr "" -#~ "Utilitza el gradient actual\n" -#~ "tot i el color FG/BG" - -#~ msgid "Random Seed" -#~ msgstr "Inici aleatori" - -#, fuzzy -#~ msgid "_Blur..." -#~ msgstr "S'està difuminant..." - -#, fuzzy -#~ msgid "R_andomization %:" -#~ msgstr "Generació aleatòria %:" - -#, fuzzy -#~ msgid "You must specify either horizontal or vertical (or both)" -#~ msgstr "" -#~ "gauss_rle: heu d'especificar si és horitzontal o vertical (o tots dos)" - -#~ msgid "Blur Horizontally" -#~ msgstr "Difumina horitzontalment" - -#~ msgid "Blur Vertically" -#~ msgstr "Difumina verticalment" - -#~ msgid "Blur Radius:" -#~ msgstr "Radi de difuminació:" - -#~ msgid "Gaussian Blur (_RLE)..." -#~ msgstr "Difumanació gaussiana (_RLE)..." - -#~ msgid "RLE Gaussian Blur" -#~ msgstr "RLE difuminació gaussiana" - -#~ msgid "Image Preview" -#~ msgstr "Imatge de la visualització prèvia" - -#~ msgid "Force baseline JPEG (Readable by all decoders)" -#~ msgstr "" -#~ "Força la línia de base JPEG (llegibles per tots els descodificadors)" - -#~ msgid "DCT method (Speed/quality tradeoff):" -#~ msgstr "Mètode DCT (Rapidesa/qualitat d'exportació):" - -#, fuzzy -#~ msgid "Save Background Color" -#~ msgstr "Desa el color de fons" - -#, fuzzy -#~ msgid "Save Gamma" -#~ msgstr "Desa el gamma" - -#, fuzzy -#~ msgid "Save Resolution" -#~ msgstr "Desa la resolució" - -#, fuzzy -#~ msgid "Save Creation Time" -#~ msgstr "Desa el moment de creació" - -#, fuzzy -#~ msgid "Tile _Height:" -#~ msgstr "Alçada del mosaic:" - -#, fuzzy -#~ msgid "C_ell Size:" -#~ msgstr "Mida de la cel·la:" - -#, fuzzy -#~ msgid "_Noisify..." -#~ msgstr "Fes soroll" - -#~ msgid "Noisify" -#~ msgstr "Fes soroll" - -#, fuzzy -#~ msgid "Random _Seed:" -#~ msgstr "Inici de la generació aleatòria" - -#, fuzzy -#~ msgid "Save _Background Color" -#~ msgstr "Desa el color de fons" - -#, fuzzy -#~ msgid "Save _Gamma" -#~ msgstr "Desa el gamma" - -#, fuzzy -#~ msgid "Save _Resolution" -#~ msgstr "Desa la resolució" - -#, fuzzy -#~ msgid "Save Creation _Time" -#~ msgstr "Desa el moment de creació" - -#, fuzzy -#~ msgid "_X Offset:" -#~ msgstr "Desplaçament en X:" - -#, fuzzy -#~ msgid "_Y Offset:" -#~ msgstr "Desplaçament en Y:" - -#, fuzzy -#~ msgid "_Random Seed:" -#~ msgstr "Inici de la generació aleatòria" - -#, fuzzy -#~ msgid "R_andom Seed:" -#~ msgstr "Inici de la generació aleatòria" - -#, fuzzy -#~ msgid "Show Grid" -#~ msgstr "Desplaça-ho a la graella" - -#~ msgid "Snap to Grid" -#~ msgstr "Desplaça-ho a la graella" - -#~ msgid "RLE Compression" -#~ msgstr "Compressió RLE" - -#~ msgid "Save: No filename given" -#~ msgstr "Desa: No heu posat un nom al fitxer" - -#~ msgid "/Filters/Render/_Fractal Explorer..." -#~ msgstr "/Filtres/Visualització realista/_Fractal Explorer..." - -#~ msgid "/Filters/Map/Map _Object..." -#~ msgstr "/Filtres/Mapa/_Objecte del mapa..." - -#~ msgid "Save Options" -#~ msgstr "Desa les opcions" - -#~ msgid "/Filters/Colors/Map/_Alien Map..." -#~ msgstr "/Filtres/Colors/Mapa/_AlienMap..." - -#~ msgid "AlienMap: Transforming..." -#~ msgstr "AlienMap: s'està transformant..." - -#~ msgid "AlienMap" -#~ msgstr "AlienMap" - -#~ msgid "Change intensity of the red channel" -#~ msgstr "Canvia la intensitat del canal vermell" - -#~ msgid "Change intensity of the green channel" -#~ msgstr "Canvia la intensitat del canal verd" - -#~ msgid "Change intensity of the blue channel" -#~ msgstr "Canvia la intensitat del canal blau" - -#~ msgid "Use sine-function for red component." -#~ msgstr "Fes servir la funció sinus per al component vermell." - -#~ msgid "Use cosine-function for red component." -#~ msgstr "Fes servir la funció cosinus per al component vermell." - -#~ msgid "" -#~ "Red channel: use linear mapping instead of any trigonometrical function" -#~ msgstr "" -#~ "Canal vermell: fes servir un mapatge lineal en lloc de qualsevol funció " -#~ "trigonomètrica" - -#~ msgid "Use sine-function for green component." -#~ msgstr "Fes servir la funció sinus per al component verd." - -#~ msgid "Use cosine-function for green component." -#~ msgstr "Fes servir la funció cosinus per al component verd." - -#~ msgid "" -#~ "Green channel: use linear mapping instead of any trigonometrical function" -#~ msgstr "" -#~ "Canal verd: fes servir un mapatge lineal en lloc de qualsevol funció " -#~ "trigonomètrica" - -#~ msgid "Use sine-function for blue component." -#~ msgstr "Fes servir la funció sinus per al component blau." - -#~ msgid "Use cosine-function for blue component." -#~ msgstr "Fes servir la funció cosinus per al component blau." - -#~ msgid "" -#~ "Blue channel: use linear mapping instead of any trigonometrical function" -#~ msgstr "" -#~ "Canal blau: fes servir el mapatge lineal en lloc de qualsevol funció " -#~ "triginomètrica" - -#~ msgid "About AlienMap" -#~ msgstr "Quant a l'AlienMap" - -#~ msgid "/Filters/Colors/Map/Alien Map _2..." -#~ msgstr "/Filtres/Colors/Mapa/Alien Map _2..." - -#~ msgid "Change frequency of the red/hue channel" -#~ msgstr "Canvia la freqüència del canal tinta/vermella" - -#~ msgid "Change angle of the red/hue channel" -#~ msgstr "Canvia l'angle del canal tinta/vermella" - -#~ msgid "Change frequency of the green/saturation channel" -#~ msgstr "Canvia la freqüència del canal saturació/verda" - -#~ msgid "Change angle of the green/saturation channel" -#~ msgstr "Canvia l'angle del canal saturació/verda" - -#~ msgid "Change frequency of the blue/luminance channel" -#~ msgstr "Canvia la freqüència del canal lluminositat/blava" - -#~ msgid "Change angle of the blue/luminance channel" -#~ msgstr "Canvia l'angle del canal lluminositat/blava" - -#~ msgid "Use function for red/hue component" -#~ msgstr "Fes servir una funció per al component tinta/vermella" - -#~ msgid "Use function for green/saturation component" -#~ msgstr "Fes servir una funció per al component saturació/verda" - -#~ msgid "Use function for blue/luminance component" -#~ msgstr "Fes servir una funció per al component lluminositat/blava" - -#~ msgid "About AlienMap2" -#~ msgstr "Quant a l'AlienMap2" - -#~ msgid "/Filters/Render/Pattern/CML _Explorer..." -#~ msgstr "/Filtres/Visualització realista/Patró/CML _Explorer..." - -#~ msgid "NULL" -#~ msgstr "CAP" - -#~ msgid "The Graph" -#~ msgstr "La gràfica" - -#~ msgid "CML File Operation Warning" -#~ msgstr "Avís de l'operació amb el fitxer CML" - -#, fuzzy -#~ msgid "/Layer/Align _Visible Layers..." -#~ msgstr "/Capes/Capes visibles d'alineació..." - -#~ msgid "Parameter Settings" -#~ msgstr "Configuració dels paràmetres" - -#~ msgid "/Filters/Animation/_Playback..." -#~ msgstr "/Filtres/Animació/Animació _Playback..." - -#, fuzzy -#~ msgid "/Filters/Animation/Optimize (for _GIF)" -#~ msgstr "/Filtres/Animació/Optimitza l'animació" - -#, fuzzy -#~ msgid "/Filters/Animation/_Remove Backdrop" -#~ msgstr "/Filtres/Animació/Animació: suprimeix el fons" - -#, fuzzy -#~ msgid "/Filters/Animation/_Find Backdrop" -#~ msgstr "/Filtres/Animació/Animació: cerca el fons" - -#, fuzzy -#~ msgid "/Filters/Glass Effects/Apply _Lens..." -#~ msgstr "/Filtres/Efectes òptics/Aplica la lent..." - -#, fuzzy -#~ msgid "/Layer/Colors/Auto/Stretch _HSV" -#~ msgstr "/Imatge/Colors/Automàtic/Amplia l'HSV" - -#, fuzzy -#~ msgid "/Filters/Distorts/_Blinds..." -#~ msgstr "/Filtres/Disorsions/Angles morts..." - -#, fuzzy -#~ msgid "/Filters/Colors/_Border Average..." -#~ msgstr "/Filtres/Colors/Vora mitjana..." - -#~ msgid "1 (nonsense?)" -#~ msgstr "1 (sense sentit?)" - -#~ msgid "256 (nonsense?)" -#~ msgstr "256 (sense sentit?)" - -#, fuzzy -#~ msgid "/Filters/Map/_Bump Map..." -#~ msgstr "/Filtres/Mapa/Mapa la memòria annexa..." - -#, fuzzy -#~ msgid "_Linear Map" -#~ msgstr "Mapa lineal" - -#, fuzzy -#~ msgid "_Spherical Map" -#~ msgstr "Mapa esfèric" - -#, fuzzy -#~ msgid "S_inuosidal Map" -#~ msgstr "Mapa sinusoïdal" - -#, fuzzy -#~ msgid "/Layer/Colors/Auto/_Stretch Contrast" -#~ msgstr "/Imatge/Colors/Automàtic/Amplia el contrast" - -#, fuzzy -#~ msgid "Results" -#~ msgstr "Reinicia" - -#, fuzzy -#~ msgid "/Filters/Colors/Channel Mi_xer.." -#~ msgstr "/Filtres/Colors/Càlids..." - -#, fuzzy -#~ msgid "/Filters/Render/Pattern/_Checkerboard..." -#~ msgstr "" -#~ "/Filtres/Visualització realista/Patró/Targeta de comprovació..." - -#, fuzzy -#~ msgid "/Layer/Colors/Auto/_Color Enhance" -#~ msgstr "/Imatge/Colors/Automàtic/Millora del color" - -#, fuzzy -#~ msgid "/Filters/Colors/_Colorify..." -#~ msgstr "/Filtres/Colors/Acoloreix..." - -#, fuzzy -#~ msgid "/Filters/Colors/Color to _Alpha..." -#~ msgstr "/Filtres/Colors/Acoloreix a Alfa..." - -#, fuzzy -#~ msgid "/Filters/Colors/C_ompose..." -#~ msgstr "/Filtres/Colors/Càlids..." - -#, fuzzy -#~ msgid "/Filters/Generic/_Convolution Matrix..." -#~ msgstr "/Filtres/Genèric/Matriu de circumvolució..." - -#, fuzzy -#~ msgid "/Filters/Distorts/_Curve Bend..." -#~ msgstr "/Filtres/Distorsions/CurveBend..." - -#, fuzzy -#~ msgid "/Filters/Colors/_Decompose..." -#~ msgstr "/Filtres/Colors/Càlids..." - -#, fuzzy -#~ msgid "/Filters/Enhance/_Deinterlace..." -#~ msgstr "/Filtres/Millora/Desentrellaça" - -#, fuzzy -#~ msgid "/Filters/Combine/_Depth Merge..." -#~ msgstr "/Filtres/Combina/Refosa profunda..." - -#, fuzzy -#~ msgid "/Filters/Enhance/Des_peckle..." -#~ msgstr "/Filtres/Millora/Treu els pics…" - -#, fuzzy -#~ msgid "/Filters/Enhance/Des_tripe..." -#~ msgstr "/Filtres/Millora/Treu les bandes..." - -#, fuzzy -#~ msgid "/Filters/Render/Pattern/_Diffraction Patterns..." -#~ msgstr "" -#~ "/Filtres/Generació d'una visualització realista/Patró/Patrons de " -#~ "difracció" - -#~ msgid "/Filters/Map/_Displace..." -#~ msgstr "/Filtres/Mapa/_Desplaça..." - -#~ msgid "Displace Options" -#~ msgstr "Desplaça les opcions" - -#, fuzzy -#~ msgid "/Filters/Edge-Detect/_Edge..." -#~ msgstr "/Filtres/Detector de vores/Vora..." - -#, fuzzy -#~ msgid "/Filters/Distorts/_Emboss..." -#~ msgstr "/Filtres/Distorsions/Relleu..." - -#, fuzzy -#~ msgid "/Filters/Distorts/En_grave..." -#~ msgstr "/Filtres/Distorsions/Grava..." - -#, fuzzy -#~ msgid "/Filters/Colors/Map/_Color Exchange..." -#~ msgstr "/Filtres/Colors/Mapa/Canvi de color..." - -#~ msgid "_Selection" -#~ msgstr "_Selecció" - -#, fuzzy -#~ msgid "/Filters/Light Effects/_FlareFX..." -#~ msgstr "/Filtres/Efectes de llum/FlareFX..." - -#, fuzzy -#~ msgid "/Filters/Map/_Fractal Trace..." -#~ msgstr "/Filtres/Mapa/Traça fractal..." - -#, fuzzy -#~ msgid "/Filters/Toys/Gee-_Slime" -#~ msgstr "/Filtres/Joguines/Gee-Slime" - -#~ msgid "GEE-ZOOM: The Plug-In Formerly Known As \"The GIMP E'er Egg\"" -#~ msgstr "" -#~ "GEE-ZOOM: el format de connector que abans es coneixia com a \"El GIMP " -#~ "E'er Egg\"" - -#~ msgid "Save as GIcon" -#~ msgstr "Desa com a icona GI" - -#~ msgid "Icon Name:" -#~ msgstr "Nom de la icona:" - -#~ msgid "Milliseconds" -#~ msgstr "Mil·lisegons" - -#, fuzzy -#~ msgid "/Filters/Render/Pattern/_Qbist..." -#~ msgstr "" -#~ "/Filtres/Generació d'una visualització realista/Patró/Qbist..." - -#~ msgid "/Filters/Colors/Map/_Gradient Map" -#~ msgstr "/Filtres/Colors/Mapa/Mapa amb _gradient" - -#, fuzzy -#~ msgid "/Filters/Render/Pattern/_Grid..." -#~ msgstr "/Filtres/Genera una visualització realista/Patró/Graella..." - -#, fuzzy -#~ msgid "/Image/Transform/_Guillotine" -#~ msgstr "/Imatge/Transformacions/Guillotina" - -#, fuzzy -#~ msgid "/Filters/Map/_Illusion..." -#~ msgstr "/Filtres/Mapa/Il·lusió..." - -#, fuzzy -#~ msgid "/Filters/Distorts/_IWarp..." -#~ msgstr "/Filtres/Distorsions/IWarp..." - -#, fuzzy -#~ msgid "/Filters/Render/Pattern/_Jigsaw..." -#~ msgstr "/Filtres/Genera una visualització realista/Patró/Encaix..." - -#~ msgid "Image comments" -#~ msgstr "Comentaris de la imatge" - -#, fuzzy -#~ msgid "/Filters/Map/_Van Gogh (LIC)..." -#~ msgstr "/Filtres/Mapa/Van Gogh (LIC)..." - -#, fuzzy -#~ msgid "/Filters/Colors/Map/Adjust _FG-BG" -#~ msgstr "/Filtres/Colors/Mapa/Ajusta FG-BG" - -#, fuzzy -#~ msgid "/Filters/Colors/Map/Color Range _Mapping..." -#~ msgstr "/Filtres/Colors/Mapa/Mapatge de l'abast del color..." - -#, fuzzy -#~ msgid "/Filters/Blur/_Motion Blur..." -#~ msgstr "/Filtres/Difuminació/Moviment de difuminació..." - -#, fuzzy -#~ msgid "/Filters/Distorts/_Mosaic..." -#~ msgstr "/Filtres/Distorsions/Relleu..." - -#, fuzzy -#~ msgid "/Filters/Distorts/Newsprin_t..." -#~ msgstr "/Filtres/Distorsions/Full de mà..." - -#, fuzzy -#~ msgid "/Filters/Enhance/_NL Filter..." -#~ msgstr "/Filtres/Millora/Filtre NL..." - -#, fuzzy -#~ msgid "/Filters/Noise/_Noisify..." -#~ msgstr "/Filtres/Soroll/Fes soroll..." - -#, fuzzy -#~ msgid "/Filters/Light Effects/Su_perNova..." -#~ msgstr "/Filtres/Efectes de llum/Supernova..." - -#, fuzzy -#~ msgid "/Filters/Artistic/Oili_fy..." -#~ msgstr "/Filtres/Artístic/Olifica..." - -#, fuzzy -#~ msgid "/Filters/Map/_Paper Tile..." -#~ msgstr "/Filtres/Mapa/Paper mosaic..." - -#, fuzzy -#~ msgid "/Filters/Blur/_Pixelize..." -#~ msgstr "/Filtres/Difumina/Pixelitzar" - -#, fuzzy -#~ msgid "/Xtns/_Plugin Details" -#~ msgstr "/Xtns/Detalls del connector..." - -#, fuzzy -#~ msgid "/Filters/Distorts/P_olar Coords..." -#~ msgstr "/Filtres/Distorsions/Coordenades polars..." - -#~ msgid "write error occured" -#~ msgstr "S'ha produït un error en escriure" - -#, fuzzy -#~ msgid "_X-Offset:" -#~ msgstr "Desplaçament en X:" - -#, fuzzy -#~ msgid "_Y-Offset:" -#~ msgstr "Desplaçament en Y:" - -#, fuzzy -#~ msgid "/Filters/Noise/_Hurl..." -#~ msgstr "/Filtres/Soroll/Emissió..." - -#, fuzzy -#~ msgid "/Filters/Noise/_Pick..." -#~ msgstr "/Filtres/Soroll/Tria..." - -#, fuzzy -#~ msgid "/Filters/Distorts/_Ripple..." -#~ msgstr "/Filtres/Distorsions/So de mar..." - -#, fuzzy -#~ msgid "/Filters/Colors/Map/_Sample Colorize..." -#~ msgstr "/Filtres/Colors/Mapa/Acoloreix la mostra..." - -#, fuzzy -#~ msgid "/Filters/Noise/S_catter HSV..." -#~ msgstr "/Filtres/Soroll/Dispersió HSV..." - -#~ msgid "Preview (1:4) - Right Click to Jump" -#~ msgstr "Visualització prèvia - Feu un clic a la dreta per saltar" - -#, fuzzy -#~ msgid "/File/Acquire/_Screen Shot..." -#~ msgstr "/Fitxer/Adquireix/Mostra la pantalla..." - -#, fuzzy -#~ msgid "/Filters/Blur/_Selective Gaussian Blur..." -#~ msgstr "/Filtres/Difumina/Difusió selectiva gaussiana..." - -#, fuzzy -#~ msgid "/Filters/Colors/_Semi-Flatten" -#~ msgstr "/Filtres/Colors/Mig pla" - -#, fuzzy -#~ msgid "/Filters/Distorts/_Shift..." -#~ msgstr "/Filters/Distorsions/Decalatge..." - -#, fuzzy -#~ msgid "/Filters/Render/Pattern/_Sinus..." -#~ msgstr "" -#~ "/Filtres/Generació d'una visualització realista/Patró/Qbist..." - -#, fuzzy -#~ msgid "/Filters/Colors/Smoo_th Palette..." -#~ msgstr "/Filtres/Colors/Paleta suau..." - -#~ msgid "/Filters/Render/Clouds/_Solid Noise..." -#~ msgstr "/Filtres/Genera/Núvols/Soroll _sòlid..." - -#~ msgid "/Filters/Edge-Detect/_Sobel..." -#~ msgstr "/Filtres/Detecció de vores/_Sobel..." - -#~ msgid "/Filters/Light Effects/_Sparkle..." -#~ msgstr "/Filtres/Efectes de llum/_Centelleig..." - -#, fuzzy -#~ msgid "/Filters/Noise/Sp_read..." -#~ msgstr "/Filtres/Soroll/Escampa..." - -#, fuzzy -#~ msgid "/Filters/Artistic/_Apply Canvas..." -#~ msgstr "/Filtres/Artístic/Aplica el canemàs..." - -#, fuzzy -#~ msgid "Open SVG" -#~ msgstr "Obre" - -#, fuzzy -#~ msgid "Ratio _X:" -#~ msgstr "Rotació:" - -#~ msgid "Targa Options" -#~ msgstr "Opcions del Targa" - -#, fuzzy -#~ msgid "/Filters/Map/_Tile..." -#~ msgstr "/Filtres/Mapa/Mosaic..." - -#, fuzzy -#~ msgid "/Filters/Map/_Small Tiles..." -#~ msgstr "/Filtres/Mapa/Mosaics petits..." - -#~ msgid "Flipping" -#~ msgstr "S'està girant" - -#~ msgid "Applied to Tile" -#~ msgstr "S'ha aplicat al mosaic" - -#~ msgid "Segment Setting" -#~ msgstr "Configuració del segment" - -#, fuzzy -#~ msgid "/Filters/Map/_Make Seamless" -#~ msgstr "/Filtres/Mapa/Fes-ho sense soldadura" - -#, fuzzy -#~ msgid "/Filters/Enhance/_Unsharp Mask..." -#~ msgstr "/Filtres/Millora/Fes la màscara borrosa..." - -#, fuzzy -#~ msgid "/Filters/Distorts/Vi_deo..." -#~ msgstr "/Filtres/Distorsions/Vídeo..." - -#, fuzzy -#~ msgid "/Filters/Colors/_Value Invert" -#~ msgstr "/Filtres/Colors/Inverteix el valor" - -#, fuzzy -#~ msgid "/Filters/Distorts/_Value Propagate..." -#~ msgstr "/Filtres/Distorsions/Propaga el valor..." - -#, fuzzy -#~ msgid "/Filters/Generic/_Dilate" -#~ msgstr "/Filtres/Genera/Gfig..." - -#~ msgid "Secondary Options" -#~ msgstr "Opcions secundàries" - -#~ msgid "Use Mag Map" -#~ msgstr "Fes servir el mapa magnètic" - -#~ msgid "Other Options" -#~ msgstr "Altres opcions" - -#, fuzzy -#~ msgid "/Filters/Distorts/_Waves..." -#~ msgstr "/Filtres/Distorsions/Ones..." - -#, fuzzy -#~ msgid "/Filters/Distorts/W_hirl and Pinch..." -#~ msgstr "/Filtres/Distorsions/Gira i contreu..." - -#~ msgid "/File/Acquire/From Clipboard" -#~ msgstr "/Fitxer/Adquireix/Del porta-retalls" - -#~ msgid "/File/Page Setup" -#~ msgstr "/Fitxer/Configuració de la pàgina" - -#~ msgid "/Xtns/_DB Browser" -#~ msgstr "/Xtns/Navegador _DB..." - -#, fuzzy -#~ msgid "/Filters/Colors/_Filter Pack..." -#~ msgstr "/Imatge/Colors/Paquet de filtratge..." - -#~ msgid "Display" -#~ msgstr "Visualització" - -#~ msgid "CirclePalette" -#~ msgstr "Encercla la paleta" - -#~ msgid "Lighter And Darker" -#~ msgstr "Més clar i més fosc" - -#~ msgid "Miscellaneous Options" -#~ msgstr "Opcions variades" - -#~ msgid "With BG of:" -#~ msgstr "Amb el fons de:" - -#~ msgid "Selection Type:" -#~ msgstr "Tipus de selecció:" - -#~ msgid "none" -#~ msgstr "cap" - -#~ msgid "Not found \"%s\": used \"%s\" instead" -#~ msgstr "No s'ha trobat \"%s\": s'ha utilitzat \"%s\" al seu lloc" - -#~ msgid "Brush Preview:" -#~ msgstr "Visualització prèvia del pinzell:" - -#, fuzzy -#~ msgid "/Filters/Artistic/_GIMPressionist..." -#~ msgstr "/Filtres/Artístic/GIMPressionist..." - -#~ msgid "Paper Preview:" -#~ msgstr "Visualització prèvia del paper" - -#~ msgid "(Desc)" -#~ msgstr "(Desc)" - -#~ msgid "" -#~ "\n" -#~ "If you come up with some nice Presets,\n" -#~ "(or Brushes and Papers for that matter)\n" -#~ "feel free to send them to me \n" -#~ "for inclusion into the next release!\n" -#~ msgstr "" -#~ "\n" -#~ "Si teniu alguna preconfiguració recomanable,\n" -#~ "(o pinzells i papers pel mateix cas)\n" -#~ "me'ls podrieu enviar \n" -#~ "i els inclouria a la propera actualització!\n" - -#, fuzzy -#~ msgid "/Filters/Render/Nature/Ifs_Compose..." -#~ msgstr "/Filtres/Executa/Natura/Ifs_Compose..." - -#~ msgid "File exists!" -#~ msgstr "El fitxer ja existeix!" - -#, fuzzy -#~ msgid "Draws a maze." -#~ msgstr "Dibuixa el nom:" - -#~ msgid "Selection is %dx%d" -#~ msgstr "La selecció és %dx%d" - -#~ msgid "/Filters/Distorts/_Pagecurl..." -#~ msgstr "/Filtres/Distorts/_Pagecurl..." - -#, fuzzy -#~ msgid "/File/_Print..." -#~ msgstr "/Fitxer/Impressora..." - -#, fuzzy -#~ msgid "/Filters/Colors/Map/Colormap _Rotation..." -#~ msgstr "/Imatge/Colors/Rotació del mapa de colors..." - -#~ msgid "What is Gray?" -#~ msgstr "Què és Gray?" - -#~ msgid "Main" -#~ msgstr "Principal" - -#~ msgid "Misc" -#~ msgstr "Miscel·lània" - -#, fuzzy -#~ msgid "M_inimum Height:" -#~ msgstr "Alçada mínima:" - -#~ msgid "Minimum height for bumps" -#~ msgstr "Alçada mínima de les memòries annexes" - -#, fuzzy -#~ msgid "Auto_stretch to Fit Value Range" -#~ msgstr "Ampliació automàtica al tipus de valors establerts" - -#~ msgid "Fit into value range" -#~ msgstr "Ajusta al tipus de valors" - -#, fuzzy -#~ msgid "" -#~ "Failed to open help files:\n" -#~ "%s" -#~ msgstr "fitxer del Gflare amb un format no válid: %s\n" - -#~ msgid "About..." -#~ msgstr "Quant a..." - -#~ msgid "Only an indexed-alpha image can be saved in CEL format" -#~ msgstr "Només una imatge indexada com a alfa es pot desar en format CEL" - -#, fuzzy -#~ msgid "Image dimensions: %dx%d" -#~ msgstr "Dimensions de la imatge: %d x %d" - -#, fuzzy -#~ msgid "" -#~ "Can't open '%s':\n" -#~ "%s" -#~ msgstr "No es pot obrir: %s" - -#, fuzzy -#~ msgid "Cannot operate on unknown image types or alpha images" -#~ msgstr "" -#~ "BMP: no s'ha pogut operar en tipus d'imatge desconegudes o imatges alfa" - -#~ msgid "Not enough memory to allocate buffers for optimization.\n" -#~ msgstr "" -#~ "No hi ha prou memòria per assigner memòria intermèdia i fer " -#~ "l'optimització.\n" - -#, fuzzy -#~ msgid "" -#~ "Failed to write file '%s':\n" -#~ "%s" -#~ msgstr "S'ha produït un error en escriure el fitxer\n" - -#~ msgid "gauss_iir: you must specify either horizontal or vertical (or both)" -#~ msgstr "" -#~ "gauss_iir: heu d'especificar si és horitzontal o vertical (o tots dos)" - -#~ msgid "Width: " -#~ msgstr "Amplada: " - -#~ msgid "Spacing: " -#~ msgstr "Espaiat: " - -#~ msgid "Offset: " -#~ msgstr "Desplaçament: " - -#~ msgid "" -#~ "Color Mapping / Adjust FG/BG:\n" -#~ "Cannot operate on gray/indexed images" -#~ msgstr "" -#~ "Mapatge del color / Ajusta FG/BG:\n" -#~ "No s'ha pogut operar en les imatges grises/indexades" - -#, fuzzy -#~ msgid "" -#~ "'%s':\n" -#~ "PNG error. File corrupted?" -#~ msgstr "" -#~ "%s\n" -#~ "S'ha produit un error. El fitxer està corromput?" - -#, fuzzy -#~ msgid "" -#~ "'%s':\n" -#~ "Unknown PNG color model" -#~ msgstr "" -#~ "%s\n" -#~ "Color del model PNG desconegut" - -#, fuzzy -#~ msgid "" -#~ "'%s':\n" -#~ "PNG error. Couldn't save image" -#~ msgstr "" -#~ "%s\n" -#~ "S'ha produït un error PNG. No s'ha pogut desar la imatge." - -#, fuzzy -#~ msgid "Can't interpret file" -#~ msgstr "PS: no es pot interpretar el fitxer" - -#, fuzzy -#~ msgid "_after" -#~ msgstr "després" - -#~ msgid "sel_gauss: Cannot operate on indexed color images" -#~ msgstr "sel_gauss: no s'ha pogut operar en imatges de color indexat" - -#~ msgid "Interpreting %s:" -#~ msgstr "S'està interpretant %s:" - -#, fuzzy -#~ msgid "Can't open file as XWD file" -#~ msgstr "no es pot obrir el fitxer com a fitxer XWD" - -#~ msgid "XWD save cannot handle images with alpha channels" -#~ msgstr "" -#~ "En desar en format XWD, no es poden gestionar imatges amb els canals alfa" - -#~ msgid "cannot operate on unknown image types" -#~ msgstr "no es pot operar en tipus d'imatge desconegudes" - -#, fuzzy -#~ msgid "Saving '%s':" -#~ msgstr "S'està desant %s:" - -#, fuzzy -#~ msgid "Can't open '%s': %s" -#~ msgstr "No es pot obrir: %s" - -#~ msgid "GFlare: cannot operate on indexed color images" -#~ msgstr "Gflare: no s’ha pogut operar en les imatges indexades de color" - -#~ msgid "untitled" -#~ msgstr "sense títol" - -#, fuzzy -#~ msgid "Load failed" -#~ msgstr "Carrega la flama" - -#, fuzzy -#~ msgid "Load IFS file" -#~ msgstr "Carrega el fitxer FITS" - -#~ msgid "Help" -#~ msgstr "Ajuda" - -#~ msgid "/File/Acquire/Screen Shot..." -#~ msgstr "/Fitxer/Adquireix/Mostra la pantalla..." - -#~ msgid "Can't open (write): %s" -#~ msgstr "No es pot obrir (escriu): %s" - -#~ msgid "xjt: cannot operate on unknown image types" -#~ msgstr "xjt: no es pot operar amb tipus d'imatge desconegut" - -#~ msgid "Can't open: %s" -#~ msgstr "No es pot obrir: %s" - -#~ msgid "Can't open (read): %s" -#~ msgstr "No es pot obrir (llegir): %s" - -#~ msgid "Align Visible Layers: there are too few layers." -#~ msgstr "Alinea les capes visibles: hi ha massa poques capes." - -#~ msgid "** From GRADIENT **" -#~ msgstr "** Des del GRADIENT **" - -#~ msgid "** From INVERSE GRADIENT **" -#~ msgstr "**Des del GRADIENT INVERS **" - -#~ msgid "Display Grid" -#~ msgstr "Mostra la graella" - -#~ msgid "Save As..." -#~ msgstr "Desa com..." - -#, fuzzy -#~ msgid "A_bout..." -#~ msgstr "Quant a..." - -#~ msgid "Click here to load your file" -#~ msgstr "Feu un clic aquí per carregar el fitxer" - -#~ msgid "Click here to cancel load procedure" -#~ msgstr "Feu clic aquí per cancel·lar el procediment de càrrega" - -#~ msgid "Click here to save your file" -#~ msgstr "Feu un clic aquí per desar el fitxer" - -#~ msgid "Click here to cancel save procedure" -#~ msgstr "Feu un clic aquí per cancel·lar el procediment de desar-ho" - -#, fuzzy -#~ msgid "/Filters/Render/_Sinus..." -#~ msgstr "/Filtres/Genera una visualització realista/Sinus..." - -#~ msgid "/Xtns/Web Browser/Open URL..." -#~ msgstr "/Xtns/Navegador de web/Obre URL..." - -#~ msgid "Open URL" -#~ msgstr "Obre la URL" - -#~ msgid "URL:" -#~ msgstr "URL:" - -#~ msgid "Window:" -#~ msgstr "Finestra:" - -#~ msgid "Current" -#~ msgstr "Actual" - -#, fuzzy -#~ msgid "Can't open bzip2ed file without a sensible extension" -#~ msgstr "bz2: no es pot obrir el bzip2ed sense una extensió sensible\n" - -#, fuzzy -#~ msgid "With _Decorations" -#~ msgstr "Amb decoracions" - -#~ msgid "" -#~ "GIMP Help Browser Error.\n" -#~ "\n" -#~ "Couldn't find GIMP_HELP_ROOT html directory.\n" -#~ "(%s)" -#~ msgstr "" -#~ "Errors del navegador de l'ajuda del GIMP.\n" -#~ "\n" -#~ "No s'ha pogut trobar el directori html GIMP_HELP_ROOT\n" -#~ "(%s)" - -#~ msgid "/Select/To Path" -#~ msgstr "/Selecciona/al camí" - -#, fuzzy -#~ msgid "Your comment string is too long." -#~ msgstr "En desar la imatge GIF: la cadena del comentari és massa llarga.\n" - -#, fuzzy -#~ msgid "Error reading GFlare folder '%s'" -#~ msgstr "error en llegir el directori \"%s\" del GFlare" - -#~ msgid "Could not save." -#~ msgstr "No s'ha pogut desar." - -#~ msgid "Failed to write file\n" -#~ msgstr "S'ha produït un error en escriure el fitxer\n" - -#~ msgid "%s: can't open \"%s\"" -#~ msgstr "%s: no es pot obrir \"%s\"" - -#~ msgid "Can't open %s" -#~ msgstr "No es pot obrir %s" - -#~ msgid "" -#~ "%s\n" -#~ "is not present or is unreadable" -#~ msgstr "" -#~ "%s\n" -#~ "no hi és o no es pot llegir" - -#~ msgid "" -#~ "CEL Couldn't write image to\n" -#~ "%s" -#~ msgstr "" -#~ "El CEL no ha pogut escriure una imatge a\n" -#~ "%s" - -#~ msgid "Error: could not open \"%s\"" -#~ msgstr "S'ha produït un error: no s'ha pogut obrir \"%s\"" - -#~ msgid "Unable to open %s" -#~ msgstr "És impossible d'obrir %s" - -#~ msgid "GIF: can't open %s\n" -#~ msgstr "GIF: no es pot obrir %s\n" - -#~ msgid "can't open \"%s\"\n" -#~ msgstr "no es pot obrir \"%s\"\n" - -#~ msgid "Max RGB: Scanning..." -#~ msgstr "RGB màxim: s'està escanejant..." - -#~ msgid "Newsprintifing..." -#~ msgstr "S'està fent el full de mà..." - -#~ msgid "" -#~ "%s\n" -#~ "Couldn't create file" -#~ msgstr "" -#~ "%s\n" -#~ "No s'ha pogut crear el fitxer" - -#~ msgid "PNM: Can't open file %s." -#~ msgstr "PNM: no es pot obrir el fitxer %s." - -#~ msgid "PS: can't open file for reading" -#~ msgstr "PS: no es pot obrir el fitxer per llegir-lo" - -#~ msgid "Interpreting and Loading %s:" -#~ msgstr "S'està interpretant i carregant %s:" - -#~ msgid "PS: cannot operate on unknown image types" -#~ msgstr "PS: no es pot operar en tipus d'imatges desconegudes" - -#~ msgid "PS: can't open file for writing" -#~ msgstr "PS: no es pot obrir el fitxer per escriure-hi" - -#~ msgid "Scatter HSV: Scattering..." -#~ msgstr "Dispersió HSV: s'està dispersant..." - -#~ msgid "Can't open file for reading" -#~ msgstr "No es pot obrir el fitxer per llegir-lo" - -#~ msgid "TGA: can't open \"%s\"\n" -#~ msgstr "TGA: no es pot obrir \"%s\"\n" - -#, fuzzy -#~ msgid "TIFF: Can't open '%s'" -#~ msgstr "GIF: no es pot obrir %s\n" - -#~ msgid "XBM: cannot open \"%s\"\n" -#~ msgstr "XBM: no es pot obrir \"%s\"\n" - -#~ msgid "XBM: cannot create \"%s\"\n" -#~ msgstr "XBM: no es pot crear \"%s\"\n" - -#~ msgid "can't open file for reading" -#~ msgstr "no es pot obrir el fitxer per llegir-lo" - -#~ msgid "can't get memory for colormap" -#~ msgstr "no hi ha prou memòria per al mapa de color" - -#~ msgid "can't open file for writing" -#~ msgstr "no es pot obrir el fitxer per escriure-hi" - -#~ msgid "Prev" -#~ msgstr "Anterior" - -#~ msgid "Ops" -#~ msgstr "Ops" - -#~ msgid "Error in creating layer" -#~ msgstr "S'ha produït un error en crear una capa" - -#~ msgid "FLI: Can't open \"%s\"" -#~ msgstr "FLI: No es pot obrir \"%s\"" - -#~ msgid "Add >>" -#~ msgstr "Afegeix >>" - -#~ msgid "Remove" -#~ msgstr "Suprimeix" - -#, fuzzy -#~ msgid "" -#~ "C_reate\n" -#~ "New Image" -#~ msgstr "" -#~ "Crea\n" -#~ "una imatge nova" - -#, fuzzy -#~ msgid "/Layer/Transform/Rotate 90 degrees" -#~ msgstr "/Imatge/Transforma/Rota/90 graus" - -#, fuzzy -#~ msgid "/Layer/Transform/Rotate 180 degrees" -#~ msgstr "/Imatge/Transforma/Rota/180 graus" - -#, fuzzy -#~ msgid "/Layer/Transform/Rotate 270 degrees" -#~ msgstr "/Imatge/Transforma/Rota/270 graus" - -#, fuzzy -#~ msgid "/Image/Transform/Rotate 90 degrees" -#~ msgstr "/Imatge/Transforma/Rota/90 graus" - -#, fuzzy -#~ msgid "/Image/Transform/Rotate 180 degrees" -#~ msgstr "/Imatge/Transforma/Rota/180 graus" - -#, fuzzy -#~ msgid "/Image/Transform/Rotate 270 degrees" -#~ msgstr "/Imatge/Transforma/Rota/270 graus" - -#~ msgid "/Image/Mode/Decompose..." -#~ msgstr "/Imatge/Mode/Descomposa..." - -#, fuzzy -#~ msgid "Del" -#~ msgstr "Suprimeix" - -#~ msgid "Load" -#~ msgstr "Carrega" - -#~ msgid "" -#~ "No fractalexplorer-path in gimprc:\n" -#~ "You need to add an entry like\n" -#~ "(fractalexplorer-path \"%s\")\n" -#~ "to your %s file." -#~ msgstr "" -#~ "No hi ha el camí del FractalExplorer al gimprc:\n" -#~ "Necessiteu afegir una entrada com ara\n" -#~ "(fractalexplorer-path \"%s\")\n" -#~ "al vostre fitxer %s." - -#, fuzzy -#~ msgid "" -#~ "fractalexplorer-path misconfigured - the following folders were not found:" -#~ msgstr "" -#~ "El camí al FractalExplorer està mal configurat - no s'han trobat els " -#~ "directoris següents" - -#~ msgid "Enable Tooltips" -#~ msgstr "Habilita els consells de les eines" - -#~ msgid "Enable/disable tooltip messages" -#~ msgstr "Habilita/inhabilita els missatges dels consells de les eines" - -#, fuzzy -#~ msgid "_Disable Tooltips" -#~ msgstr "Inhabilita els rètols indicadors de la funció" - -#~ msgid "Toggle Tooltips on/off" -#~ msgstr "Activa/desactiva els rètols indicadors de la funció" - -#~ msgid "Loading MPEG movie..." -#~ msgstr "S'està carregant la pel·lícula MPEG" - -#~ msgid "Unnamed channel" -#~ msgstr "Canal sense nom" - -#, fuzzy -#~ msgid "_New Unit" -#~ msgstr "Unitat nova" - -#, fuzzy -#~ msgid "_Duplicate Unit" -#~ msgstr "Duplica la unitat" - -#, fuzzy -#~ msgid "gfig-path misconfigured - the following folders were not found:" -#~ msgstr "" -#~ "el camí gfig està mal configurat - els directoris següents no s'han trobat" - -#~ msgid "Show Tooltips" -#~ msgstr "Mostra els consells de les eines" - -#~ msgid "Rescan" -#~ msgstr "Torna a escanejar" - -#~ msgid "Done" -#~ msgstr "Fet" - -#~ msgid "Enter Gfig Entry Name" -#~ msgstr "Introduïu el nom d’entrada Gfig" - -#~ msgid "Load Gfig obj" -#~ msgstr "Carrega un objecte Gfig" - -#~ msgid "Email alt@picnic.demon.co.uk" -#~ msgstr "Correu alt@picnic.demon.co.uk" - -#~ msgid "Isometric grid By Rob Saunders" -#~ msgstr "Graella isomètrica per Rob Saunders" - -#, fuzzy -#~ msgid "" -#~ "No gflare-path in gimprc:\n" -#~ "You need to add an entry like\n" -#~ "(gflare-path \"%s\")\n" -#~ "to your %s file." -#~ msgstr "No hi ha camí gflare al gimprc:\n" - -#, fuzzy -#~ msgid "gflare-path misconfigured - the following folders were not found:" -#~ msgstr "gflare-path mal configurat – no s'han trobat els directoris següents" - -#~ msgid "Data changed" -#~ msgstr "Han canviat dades" - -#~ msgid "" -#~ "Image size has changed.\n" -#~ "Resize Area's?" -#~ msgstr "" -#~ "Ha canviat la mida de la imatge.\n" -#~ "Voleu redimensionar l'àrea?" - -#, fuzzy -#~ msgid "_Apply" -#~ msgstr "Aplica" - -#~ msgid "Abbr." -#~ msgstr "Abreviació." - -#~ msgid "Don't Save Unit" -#~ msgstr "No desis la unitat" - -#~ msgid "Don't save the currently selected unit before GIMP exits." -#~ msgstr "No desis la unitat seleccionada abans de sortir del GIMP." - -#~ msgid "Save Unit" -#~ msgstr "Desa la unitat" - -#~ msgid "Save the currently selected unit before GIMP exits." -#~ msgstr "Desa la unitat seleccionada actualment abans de sortir del GIMP." - -#~ msgid "Save as..." -#~ msgstr "Anomena i desa..." - -#~ msgid "Specifies the amount of embossing to apply to each brush stroke" -#~ msgstr "" -#~ "Especifica la mitja del gravat en relleu per aplicar a cada traç del " -#~ "pinzell" - -#~ msgid "Quit the program" -#~ msgstr "Sortir del programa" - -#~ msgid "Show some information about program" -#~ msgstr "Mostreu-me més informació quan al programa" - -#~ msgid "Run with the selected settings" -#~ msgstr "Executeu amb els paràmetres seleccionats" - -#~ msgid "How large an angle-span to use (360 = full circle)" -#~ msgstr "Com de gran és l'interval d'angle a utilitzar (360 = cercle sencer)" - -#~ msgid "Apply and exit the editor" -#~ msgstr "Aplica i surt de l'editor" - -#~ msgid "Apply, but stay inside the editor" -#~ msgstr "Aplica, però mantenint-te dins l'editor" - -#~ msgid "Cancel all changes and exit" -#~ msgstr "Cancel·la tots els canvis i surt" - -#~ msgid "Placement:" -#~ msgstr "Emplaçament:" - -#~ msgid "Refresh" -#~ msgstr "Actualitza" - -#, fuzzy -#~ msgid "_Update Preview" -#~ msgstr "Actualitza la visualització prèvia" - -#~ msgid "rgb-compose" -#~ msgstr "composa-rgb" - -#~ msgid "rgba-compose" -#~ msgstr "composa-rgba" - -#~ msgid "hsv-compose" -#~ msgstr "composa-hsv" - -#~ msgid "cmy-compose" -#~ msgstr "composa-cmy" - -#~ msgid "cmyk-compose" -#~ msgstr "composa-cmyk" - -#, fuzzy -#~ msgid "" -#~ "PNG: Couldn't simply reduce colors further.\n" -#~ "Saving as opaque.\n" -#~ msgstr "" -#~ "GIF: no s'ha pogut reduir els colors de manera més simple.\n" -#~ "S'està desant com a opac.\n" - -#~ msgid "not valid GFlare file: %s" -#~ msgstr "fitxer del Gflare no vàlid: %s" - -#~ msgid "Close" -#~ msgstr "Tanca" - -#, fuzzy -#~ msgid "Image preview" -#~ msgstr "Imatge de la visualització prèvia" - -#~ msgid "Undo Zoom" -#~ msgstr "Desfés el zoom" - -#~ msgid "Redo Zoom" -#~ msgstr "Torna a fer el zoom" - -#~ msgid "Step In" -#~ msgstr "Pas endavant" - -#~ msgid "Step Out" -#~ msgstr "Pas endarrere" - -#~ msgid "Antialiasing Options" -#~ msgstr "Opcions de contrarèplica" - -#~ msgid "Bumpmap Settings" -#~ msgstr "Paràmetres del mapa de la memòria annexa" - -#~ msgid "Environment Settings" -#~ msgstr "Paràmetres de l'entorn" - -#~ msgid "Depth:" -#~ msgstr "Profunditat:" - -#~ msgid "Length:" -#~ msgstr "Longitud:" - -#~ msgid "Material" -#~ msgstr "Material" - -#~ msgid "Preview!" -#~ msgstr "Visualització prèvia!" - -#~ msgid "Hue Settings" -#~ msgstr "Paràmetres de la tinta" - -#~ msgid "Saturation Settings" -#~ msgstr "Paràmetres de saturació" - -#~ msgid "Value (Gray Image) Settings" -#~ msgstr "Paràmetres dels valors (imatge grisa)" - -#~ msgid "Other Parameter Settings" -#~ msgstr "Altres paràmetres de la configuració" - -#~ msgid "Misc Operations" -#~ msgstr "Operacions diverses" - -#~ msgid "CopyInv" -#~ msgstr "Copia la inversa" - -#~ msgid "SaveCurve" -#~ msgstr "Desa la corba" - -#, fuzzy -#~ msgid "_Edit Flame" -#~ msgstr "Edita la flama" - -#, fuzzy -#~ msgid "_Load Flame" -#~ msgstr "Carrega la flama" - -#, fuzzy -#~ msgid "_Save Flame" -#~ msgstr "Desa la flama" - -#, fuzzy -#~ msgid "_New" -#~ msgstr "Nou" - -#, fuzzy -#~ msgid "Co_py" -#~ msgstr "Copia" - -#, fuzzy -#~ msgid "_Delete" -#~ msgstr "Suprimeix" - -#, fuzzy -#~ msgid "_Goodies" -#~ msgstr "Goodies" - -#~ msgid "print_spline: strange degree (%d)" -#~ msgstr "Impressió de l'spline: graus extranys (%d)" - -#~ msgid "selection_to_path" -#~ msgstr "selecció a camí" - -#~ msgid "gimp_image_get_selection failed" -#~ msgstr "Ha fallat la selcció d'una imatge del gimp" - -#~ msgid "Internal error. Selection bpp > 1" -#~ msgstr "S'ha produït un error intern. Selecció bpp > 1" - -#~ msgid "OK" -#~ msgstr "D'acord" - -#~ msgid "Cancel" -#~ msgstr "Cancel·la" - -#~ msgid "Check Size:" -#~ msgstr "Comprova la mida:" - -#~ msgid "Reset to Defaults" -#~ msgstr "Torna a la configuració per defecte" - -#~ msgid "/Layers/Rotate/90 degrees" -#~ msgstr "/Capes/Rota/90 graus" - -#~ msgid "/Layers/Rotate/180 degrees" -#~ msgstr "/Capes/Rota/180 graus" - -#~ msgid "/Layers/Rotate/270 degrees" -#~ msgstr "/Capes/Rota/270 graus" - -#~ msgid "Wind Strength must be greater than 0." -#~ msgstr "La força del vent ha de ser més gran de 0." - -#~ msgid "DB Browser (init...)" -#~ msgstr "Navegador DB (s'està iniciant...)" - -#~ msgid "DB Browser (please wait)" -#~ msgstr "Base de dades del Navegador (si us plau, espereu)" - -#~ msgid "Value: " -#~ msgstr "Valor: " - -#~ msgid "Press Button" -#~ msgstr "Prem el botó" - -#~ msgid "GAP Animated Filter apply" -#~ msgstr "Aplica el filtre animat del GAP" - -#~ msgid "Animated Filter apply (init)" -#~ msgstr "Aplica el filtre animat (inici)" - -#~ msgid "Gen Code by name" -#~ msgstr "Codi generador per nom" - -#~ msgid "Animated Filter apply (by name - please wait)" -#~ msgstr "Aplica el filtre animat (per nom - si us plau, espereu)" - -#~ msgid "Animated Filter apply (by blurb - please wait)" -#~ msgstr "Aplica el filtre animat (per ressenya - si us plau, espereu)" - -#~ msgid "Animated Filter apply (please wait)" -#~ msgstr "Aplica el filtre animat (si us plau, espereu)" - -#~ msgid "Animated Filter apply" -#~ msgstr "Aplica el filtre animat" - -#~ msgid "/Video/Split Video to Frames" -#~ msgstr "/Vídeo/Divideix el vídeo en marcs" - -#~ msgid "/Xtns/Split Video to Frames" -#~ msgstr "/Xtns/Divideix el vídeo en marcs" - -#~ msgid "/Video/Split Video to Frames/MPEG1" -#~ msgstr "/Vídeo/Divideix el vídeo en marcs/MPEG1" - -#~ msgid "/Xtns/Split Video to Frames/MPEG1" -#~ msgstr "/Xtns/Divideix el vídeo en marcs/MPEG1" - -#~ msgid "Overwrite Frame" -#~ msgstr "Sobreescriu el marc" - -#~ msgid "Overwrite All" -#~ msgstr "Sobreescriu-ho tot" - -#~ msgid "GAP Question" -#~ msgstr "Pregunta GAP" - -#~ msgid "Decoding MPEG Movie..." -#~ msgstr "S'està descodificant la pel·lícula MPEG..." - -#~ msgid "" -#~ "Name of the MPEG1 videofile to READ.\n" -#~ "Frames are extracted from the videofile\n" -#~ "and written to seperate diskfiles.\n" -#~ "Audiotracks in the videofile are ignored." -#~ msgstr "" -#~ "Nom del fitxer de vídeo MPEG1 que s'ha de LLEGIR.\n" -#~ "Els marcs s'han extret del fitxer de vídeo\n" -#~ "i s'han escrit en fitxers de disc diferents.\n" -#~ "Les pistes d'àudio del fitxer de vídeo s'han ignorat." - -#~ msgid "Framenumber of 1st frame to extract" -#~ msgstr "Nombre de marcs del 1r marc a extreure" - -#~ msgid "Framenumber of last frame to extract" -#~ msgstr "Nombre de marcs del darrer marc a extreure" - -#~ msgid "Framenames:" -#~ msgstr "Noms dels marcs:" - -#~ msgid "" -#~ "Basename for the AnimFrames to write on disk\n" -#~ "(framenumber and .xcf is added)" -#~ msgstr "" -#~ "Nom de la base dels marcs animats que s'ha d'escriure al disc\n" -#~ "(el número del marc i el .xcf ja s'ha afegit)" - -#~ msgid "Open the 1st one of the extracted frames" -#~ msgstr "Obre el primer dels marcs extrets" - -#~ msgid "" -#~ "\n" -#~ "WARNING: Do not attempt to split other files than MPEG1 videos.\n" -#~ "Before you proceed, you should save all open images." -#~ msgstr "" -#~ "\n" -#~ "AVÍS: No proveu de dividir altres fitxers que no siguin vídeos MPEG1.\n" -#~ "Abans de fer-ho, hauríeu d'obrir totes les imatges." - -#~ msgid "Split MPEG1 Video to Frames" -#~ msgstr "Divideix el vídeo MPEG1 en marcs" - -#~ msgid "Select Frame Range" -#~ msgstr "Seleccioneu l'abast dels marcs" - -#~ msgid "Conditions to run the xanim based video split" -#~ msgstr "Condicions per executar la divisió del vídeo basada en xanim" - -#~ msgid "1.) xanim 2.80.0 exporting edition (the loki version)" -#~ msgstr "1.) xanim 2.80.0, edició per exportar (la versió loki)" - -#~ msgid " must be installed somewhere in your PATH" -#~ msgstr " s'ha d'instal·lar en algun lloc del CAMÍ" - -#~ msgid " you can get xanim exporting edition at" -#~ msgstr " podeu obtenir l'edició per exportar de l'xanim a" - -#~ msgid "" -#~ "2.) if your xanim exporting edition is not in your PATH or is not named " -#~ "xanim" -#~ msgstr "" -#~ "2.) si la vostra edició per exportar de l'xanim no és al CAMÍ o no es diu " -#~ "xanim" - -#~ msgid " you have to set Environment variable GAP_XANIM_PROG " -#~ msgstr " heu de determinar l'entorn variable GAP_XANIM_PROG " - -#~ msgid " to your xanim exporting program and restart gimp" -#~ msgstr " al programa d'exportació de l'xanim i reinicia el gimp" - -#~ msgid "An ERROR occured while trying to call xanim:" -#~ msgstr "S'ha produït un ERROR en intentar cridar l'xanim:" - -#~ msgid "XANIM Information" -#~ msgstr "Informació de l'XANIM" - -#~ msgid "Video:" -#~ msgstr "Vídeo:" - -#, fuzzy -#~ msgid "" -#~ "Name of a videofile to READ by xanim.\n" -#~ "Frames are extracted from the videofile\n" -#~ "and written to separate diskfiles.\n" -#~ "xanim exporting edition is required." -#~ msgstr "" -#~ "Nom del fitxer de vídeo que s'ha de LLEGIR amb l'xanim.\n" -#~ "Els marcs s'extreuen del fitxer de vídeo\n" -#~ "i s'escriuen en fitxers de disc separats.\n" -#~ "És necessària l'edició per exportar de l'xanim." - -#~ msgid "" -#~ "Basename for the AnimFrames to write on disk\n" -#~ "(framenumber and extension is added)" -#~ msgstr "" -#~ "Nom de la base per als marcs animats que s'han d'escriure al disc\n" -#~ "(el número de marc i l'extensió ja s'han afegit)" - -#~ msgid "" -#~ "Fileformat for the extracted AnimFrames\n" -#~ "(xcf is extracted as ppm and converted to xcf)" -#~ msgstr "" -#~ "Format de fitxer per als marcs animats extrets\n" -#~ "(el xcf s'extreu com a ppm i es converteix a xcf)" - -#~ msgid "Extract Frames" -#~ msgstr "Extreu els marcs" - -#~ msgid "Enable extraction of Frames" -#~ msgstr "Habilita l'extracció de marcs" - -#~ msgid "Extract Audio" -#~ msgstr "Extreu l'àudio" - -#~ msgid "" -#~ "Enable extraction of audio to raw audiofile\n" -#~ "(frame range limits are ignored for audio)" -#~ msgstr "" -#~ "Habilita l'extracció de l'àudio als fitxers d'àudio en brut\n" -#~ "(l'àudio ignora l'abast dels límits del marc)" - -#~ msgid "Jpeg Quality:" -#~ msgstr "Qualitat Jpeg:" - -#~ msgid "" -#~ "Quality for resulting Jpeg frames\n" -#~ "(is ignored when other formats are used)" -#~ msgstr "" -#~ "Qualitat per als marcs Jpeg resultants\n" -#~ "(s'ignora quan s'han fet servir altres formats)" - -#~ msgid "Run asynchronously" -#~ msgstr "Executa-ho asincrònicament" - -#~ msgid "" -#~ "Run xanim asynchronously and delete unwanted frames\n" -#~ "(out of the specified range) while xanim is still running" -#~ msgstr "" -#~ "Executa l'xanim asincrònicament i suprimeix els marcs no desitjats\n" -#~ "(fora de l'abast especificat) mentre l'xanim encara s'està executant" - -#~ msgid "" -#~ "\n" -#~ "Warning: xanim 2.80 has only limited MPEG support.\n" -#~ "Most of the frames (type P and B) will be skipped." -#~ msgstr "" -#~ "\n" -#~ "Avís: l'xanim 2.80 només té limitat el suport MPEG.\n" -#~ "La majoria de marcs (tipus P i B) s'ometran." - -#~ msgid "Split any Xanim readable Video to Frames" -#~ msgstr "Divideix qualsevol vídeo Xanim llegible en marcs" - -#~ msgid "" -#~ "can't find any extracted frames,\n" -#~ "%s\n" -#~ "maybe xanim has failed or was cancelled" -#~ msgstr "" -#~ "no es poden trobar els marcs extrets,\n" -#~ "%s\n" -#~ "potser l'xanim ha fallat o s'ha cancel·lat" - -#~ msgid "frames are not extracted, because overwrite of %s was cancelled" -#~ msgstr "" -#~ "els marcs no s'han extret perquè la sobreescriptura de %s s'havia " -#~ "cancel·lat" - -#~ msgid "failed to overwrite %s (check permissions ?)" -#~ msgstr "" -#~ "S'ha produït un error en sobreescriure %s (voleu comprovar els permisos?)" - -#~ msgid "failed to write %s (check permissions ?)" -#~ msgstr "" -#~ "S'ha produït un error en escriure %s (voleu comprovar els permisos?)" - -#~ msgid "could not execute %s (check if xanim is installed)" -#~ msgstr "no s'ha pogut executar %s (comproveu si l'xanim està instal·lat)" - -#~ msgid "%s does not look like xanim" -#~ msgstr "%s no sembla l'xanim" - -#~ msgid "" -#~ "The xanim program on your system \"%s\"\n" -#~ "does not support the exporting options Ea, Ee, Eq" -#~ msgstr "" -#~ "El programa xanim del vostre sistema \"%s\"\n" -#~ "no permet les opcions d'exportar Ea, Ee, Eq" - -#~ msgid "" -#~ "The xanim program on your system \"%s\"\n" -#~ "does not support exporting of single frames" -#~ msgstr "" -#~ "El programa xanim del vostre sistema \"%s\"\n" -#~ "no permet exportar marcs sols" - -#~ msgid "videofile %s not existent or empty\n" -#~ msgstr "el fitxer de vídeo %s no existeix o està buit\n" - -#~ msgid "" -#~ "could not create %s directory\n" -#~ "(that is required for xanim frame export)" -#~ msgstr "" -#~ "no s'ha pogut crear el directori %s\n" -#~ "(que és necessari per exportar el marc xanim)" - -#~ msgid "extracting frames..." -#~ msgstr "s'estan extraient els marcs..." - -#~ msgid "" -#~ "could not start xanim process\n" -#~ "(program=%s)" -#~ msgstr "" -#~ "no s'ha pogut iniciar el procésb xanim\n" -#~ "(programa=%s)" - -#~ msgid "" -#~ "can't find any extracted frames,\n" -#~ "xanim has failed or was cancelled" -#~ msgstr "" -#~ "no es poden trobar els marcs extrets,\n" -#~ "l'xanim ha fallat o s'ha cancel·lat" - -#~ msgid "renaming frames..." -#~ msgstr "s'està canviant el nom dels marcs..." - -#~ msgid "converting frames..." -#~ msgstr "s'estan convertint els marcs..." - -#~ msgid "backup to file" -#~ msgstr "còpia de seguretat al fitxer" - -#~ msgid "Make backup of the image after each step" -#~ msgstr "Fes una còpia de seguretat de la imatge després de cada pas" - -#~ msgid "Continue" -#~ msgstr "Continua" - -#~ msgid "Skip %d" -#~ msgstr "Omet %d" - -#~ msgid "" -#~ "2nd call of %s\n" -#~ "(define end-settings)" -#~ msgstr "" -#~ "Segona crida de %s\n" -#~ "(defineix el final dels paràmetres)" - -#~ msgid "" -#~ "Non-Interactive call of %s\n" -#~ "(for all layers in between)" -#~ msgstr "" -#~ "Crida no interactiva de %s\n" -#~ "(per a totes les capes d'entremig)" - -#~ msgid "Applying Filter to all Layers..." -#~ msgstr "S'està aplicant un filtre a totes les capes..." - -#~ msgid "Select Filter for Animated apply" -#~ msgstr "Selecciona el filtre per a l'animació aplicada" - -#~ msgid "Apply Constant" -#~ msgstr "Aplicació constant" - -#~ msgid "Apply Varying" -#~ msgstr "Aplicació variable" - -#~ msgid "/Filters/Filter all Layers..." -#~ msgstr "/Filtres/Filtra totes les capes..." - -#~ msgid "/Video/Split Video to Frames/Any XANIM readable..." -#~ msgstr "" -#~ "/Vídeo/Divideix el vídeo en marcs/Qualsevol XANIM llegible..." - -#~ msgid "/Xtns/Split Video to Frames/Any XANIM readable..." -#~ msgstr "" -#~ "/Xtns/Divideix el vídeo en marcs/Qualsevol XANIM llegible..." - -#~ msgid "/Video/Encode/MPEG1..." -#~ msgstr "/Vídeo/Codifica/MPEG1..." - -#~ msgid "/Video/Encode/MPEG2..." -#~ msgstr "/Vídeo/Codifica/MPEG2..." - -#~ msgid "GAP Message" -#~ msgstr "Missatge GAP" - -#~ msgid "" -#~ "OPERATION CANCELLED.\n" -#~ "Current frame changed while dialog was open." -#~ msgstr "" -#~ "L'OPERACIÓ S'HA CANCEL·LAT.\n" -#~ "El marc actual ha canviat mentre el diàleg estava obert." - -#, fuzzy -#~ msgid "" -#~ "OPERATION CANCELLED.\n" -#~ "GAP plug-ins only work with filenames\n" -#~ "that end in numbers like _0001.xcf.\n" -#~ "==> Rename your image, then try again." -#~ msgstr "" -#~ "L'OPERACIÓ S'HA CANCEL·LAT.\n" -#~ "Els connectors GAP només funcionen amb noms de fitxer\n" -#~ "que acabin en _0001.xcf.\n" -#~ "==> Torneu a anomenar la imatge, després torneu-ho a intentar." - -#~ msgid "" -#~ "You are using a file format != xcf\n" -#~ "Save Operations may result\n" -#~ "in loss of layer information." -#~ msgstr "" -#~ "Esteu fent servir un format de fitxer != xcf\n" -#~ "El fet de desar les operacions pot comportar\n" -#~ "perdre informació de les capes." - -#~ msgid "Save Flattened" -#~ msgstr "Desa el format complet" - -#~ msgid "Save As Is" -#~ msgstr "Desa tal com és" - -#~ msgid "Error: could not rename frame %ld to %ld" -#~ msgstr "S'ha produït un error: no s'ha pogut reanomenar el marc %ld en %ld" - -#, fuzzy -#~ msgid "Error: could not save frame %s" -#~ msgstr "S'ha produït un error: no s'ha pogut reanomenar el marc %ld en %ld" - -#~ msgid "Duplicating frames..." -#~ msgstr "S'estan duplicant els marcs..." - -#~ msgid "Renumber Framesequence..." -#~ msgstr "Renumera la seqüència de marcs..." - -#~ msgid "Goto Frame (%ld/%ld)" -#~ msgstr "Vés al marc (%ld/%ld)" - -#~ msgid "Destination Frame Number (%ld - %ld)" -#~ msgstr "Número de destinació del marc (%ld - %ld)" - -#~ msgid "Number:" -#~ msgstr "Número:" - -#~ msgid "Delete Frames (%ld/%ld)" -#~ msgstr "Suprimeix els marcs (%ld/%ld)" - -#~ msgid "Delete Frames from %ld to (number)" -#~ msgstr "Suprimeix els marcs des de %ld a (número)" - -#~ msgid "Duplicate Frames (%ld/%ld)" -#~ msgstr "Duplica els marcs (%ld/%ld)" - -#~ msgid "Source Range starts at this framenumber" -#~ msgstr "L'abast de la font comença en aquest número de marc" - -#~ msgid "Source Range ends at this framenumber" -#~ msgstr "L'abast de la fonmt acaba en aquest número de marc" - -#~ msgid "N times:" -#~ msgstr "N vegades:" - -#~ msgid "" -#~ "Copy selected Range n-times \n" -#~ "(you may type in Values > 99)" -#~ msgstr "" -#~ "Copia l'abast seleccionat n vegades \n" -#~ "(hi heu de posar valors > 99)" - -#~ msgid "Duplicate Frame Range" -#~ msgstr "Duplica l'abast del marc" - -#~ msgid "Exchange current Frame (%ld)" -#~ msgstr "Canvia el marc actual (%ld)" - -#~ msgid "With Frame (number)" -#~ msgstr "Amb el marc (número)" - -#~ msgid "Framesequence Shift (%ld/%ld)" -#~ msgstr "Decalatge de la seqüència de marcs (%ld/%ld)" - -#~ msgid "Affected Range starts at this framenumber" -#~ msgstr "L'abast afectat comença en aquest número de marc" - -#~ msgid "Affected Range ends at this framenumber" -#~ msgstr "L'abast afectat acaba en aquest número de marc" - -#~ msgid "N-Shift:" -#~ msgstr "N Decalatges:" - -#~ msgid "" -#~ "Renumber the affected framesequence \n" -#~ "(numbers are shifted in circle by N)" -#~ msgstr "" -#~ "Torna a numerar la seqüència de marcs afectada \n" -#~ "(els números decalen en cercle per N)" - -#~ msgid "Framesequence shift" -#~ msgstr "Decalatge de la seqüència de marcs" - -#~ msgid "" -#~ "Can't execute more than 1 Video Function\n" -#~ "on the same AnimFrame Image at the same time\n" -#~ "LOCK ID:%s\n" -#~ msgstr "" -#~ "No es pot executar alhora més d'una funció de\n" -#~ "vídeo en la mateixa imatge de marc animat\n" -#~ "IDENTIFICADOR DE BLOCATGE:%s\n" - -#~ msgid "/Video/Goto/Next Frame" -#~ msgstr "/Vídeo/Vés a/Marc següent" - -#~ msgid "/Video/Goto/Previous Frame" -#~ msgstr "/Vídeo/Vés a/Marc anterior" - -#~ msgid "/Video/Goto/First Frame" -#~ msgstr "/Vídeo/Vés a/Primer marc" - -#~ msgid "/Video/Goto/Last Frame" -#~ msgstr "/Vídeo/Vés a/Darrer marc" - -#~ msgid "/Video/Goto/Any Frame..." -#~ msgstr "/Vídeo/Vés a/Qualsevol marc..." - -#~ msgid "/Video/Delete Frames..." -#~ msgstr "/Vídeo/Suprimeix marc..." - -#~ msgid "/Video/Duplicate Frames..." -#~ msgstr "/Vídeo/Duplica els marcs..." - -#~ msgid "/Video/Exchange Frame..." -#~ msgstr "/Vídeo/Intercanvia el marc..." - -#~ msgid "/Video/Move Path..." -#~ msgstr "/Vídeo/Mou el camí..." - -#~ msgid "/Video/Frames to Image..." -#~ msgstr "/Vídeo/Marcs a la imatge..." - -#~ msgid "/Video/Frames Flatten..." -#~ msgstr "/Vídeo/Marcs complets..." - -#~ msgid "/Video/Frames LayerDel..." -#~ msgstr "/Vídeo/Marcs SupCapes..." - -#~ msgid "/Video/Frames Convert..." -#~ msgstr "/Vídeo/Converteix marcs..." - -#~ msgid "/Video/Frames Resize..." -#~ msgstr "/Vídeo/Redimensiona els marcs..." - -#~ msgid "/Video/Frames Crop..." -#~ msgstr "/Vídeo/Escapça els marcs..." - -#~ msgid "/Video/Frames Scale..." -#~ msgstr "/Vídeo/Redueix els marcs..." - -#~ msgid "/Video/Split Image to Frames..." -#~ msgstr "/Vídeo/Divideix la imatge en marcs..." - -#~ msgid "/Video/Framesequence Shift..." -#~ msgstr "/Vídeo/Decala la seqüència de marcs..." - -#~ msgid "/Video/Frames Modify..." -#~ msgstr "/Vídeo/Modifica els marcs..." - -#~ msgid "Pattern is equal to LayerName" -#~ msgstr "El patró és igual al nom de la capa" - -#~ msgid "Pattern is Start of LayerName" -#~ msgstr "El patró és l'inici del nom de la capa" - -#~ msgid "Pattern is End of Layername" -#~ msgstr "El patró és el final del nom de la capa" - -#~ msgid "Pattern is a Part of LayerName" -#~ msgstr "El patró és part del nom de la capa" - -#~ msgid "Pattern is LayerstackNumber List" -#~ msgstr "El patró és la llista del nombre de piles de les capes" - -#~ msgid "Pattern is REVERSE-stack List" -#~ msgstr "El patró és la llista de piles INVERSES de les capes" - -#~ msgid "All Visible (ignore Pattern)" -#~ msgstr "Tot visible (ignora el patró)" - -#~ msgid "Select all Layers where Layername is equal to Pattern" -#~ msgstr "Selecciona totes les capes quan el nom de capa és igual al patró" - -#~ msgid "Select all Layers where Layername starts with Pattern" -#~ msgstr "" -#~ "Selecciona totes les capes quan el nom de la capa comença amb el patró" - -#~ msgid "Select all Layers where Layername ends up with Pattern" -#~ msgstr "" -#~ "Selecciona totes les capes quan el nom de la capa acaba amb el patró" - -#~ msgid "Select all Layers where Layername contains Pattern" -#~ msgstr "Selecciona totes les capes quan el nom de capa conté el patró" - -#~ msgid "" -#~ "Select Layerstack positions.\n" -#~ "0, 4-5, 8\n" -#~ "where 0 == Top-layer" -#~ msgstr "" -#~ "Selecciona les posicions de les piles de capes.\n" -#~ "0, 4-5, 8\n" -#~ "quan 0 == Capa superior" - -#~ msgid "" -#~ "Select Layerstack positions.\n" -#~ "0, 4-5, 8\n" -#~ "where 0 == BG-layer" -#~ msgstr "" -#~ "Selecciona les posicions de les piles de capes.\n" -#~ "0, 4-5, 8\n" -#~ "quan 0 == Capa de fons" - -#~ msgid "Select all visible Layers" -#~ msgstr "Selecciona totes les capes visibles" - -#~ msgid "Set Layer(s) visible" -#~ msgstr "Determina la(es) capa(es) visible(s)" - -#~ msgid "Set Layer(s) invisible" -#~ msgstr "Determina la(es) capa(es) invisible(s)" - -#~ msgid "Set Layer(s) linked" -#~ msgstr "Determina la(es) capa(es) enllaçada(es)" - -#~ msgid "Set Layer(s) unlinked" -#~ msgstr "Determina la(es) capa(es) no enllaçada(es)" - -#~ msgid "Raise Layer(s)" -#~ msgstr "Posa relleu a la(es) capa(es)" - -#~ msgid "Lower Layer(s)" -#~ msgstr "Capa(es) inferior(s)" - -#~ msgid "Merge Layer(s) expand as necessary" -#~ msgstr "Expandeix la combinació de la(es) capa(es) com sigui necessària" - -#~ msgid "Merge Layer(s) clipped to image" -#~ msgstr "Refosa de la(es) capa(es) enganxada a la imatge" - -#~ msgid "Merge Layer(s) clipped to bg-layer" -#~ msgstr "Refosa de la(es) capa(es) enganxada a la capa de fons" - -#~ msgid "Apply filter on Layer(s)" -#~ msgstr "Aplica el filtre a la(es) capa(es)" - -#~ msgid "Duplicate Layer(s)" -#~ msgstr "Duplica la(es) capa(es)" - -#~ msgid "Rename Layer(s)" -#~ msgstr "Reanomena la(es) capa(es)" - -#~ msgid "" -#~ "Perform function on one or more Layer(s)\n" -#~ "in all frames of the selected frame range\n" -#~ msgstr "" -#~ "Realitza la funció en una o més capes\n" -#~ "en tots els marcs de l'abast dels marc seleccionat\n" - -#~ msgid "From Frame:" -#~ msgstr "Des del marc:" - -#~ msgid "first handled frame" -#~ msgstr "primer marc manejat" - -#~ msgid "To Frame:" -#~ msgstr "Al marc:" - -#~ msgid "last handled frame" -#~ msgstr "darrer marc manejat" - -#~ msgid "Select Layer(s):" -#~ msgstr "Seleccioneu capa(es):" - -#~ msgid "Select Pattern:" -#~ msgstr "Seleccioneu patró:" - -#~ msgid "" -#~ "String to identify layer names \n" -#~ "or layerstack position numbers\n" -#~ "0,3-5" -#~ msgstr "" -#~ "Cadena per identificar els noms de les capes \n" -#~ "o els números de posició de les piles de capes\n" -#~ "0,3-5" - -#~ msgid "Case sensitive" -#~ msgstr "Sensible a les majúscules" - -#~ msgid "Lowercase and UPPERCASE letters are considered as different" -#~ msgstr "Les MAJÚSCULES i les minúscules es consideren diferents" - -#~ msgid "Invert Selection" -#~ msgstr "Inverteix la selecció" - -#~ msgid "Perform actions on all unselected Layers" -#~ msgstr "Realitza accions en totes les capes no seleccionades" - -#~ msgid "Function:" -#~ msgstr "Funció:" - -#~ msgid "Function to be performed on all selected layers" -#~ msgstr "Funció a realitzar en totes les capes seleccionades" - -#~ msgid "New Layername:" -#~ msgstr "Nom de capa nou:" - -#~ msgid "" -#~ "New Layername for all handled layers \n" -#~ "[####] is replaced by frame number\n" -#~ "(is used on function rename only)" -#~ msgstr "" -#~ "Nom de capa nou per a les capes manejades \n" -#~ "[####] és substitueix pel número de marc\n" -#~ "[es fa servir només en la funció Reanomena)" - -#~ msgid "Frames Modify" -#~ msgstr "Modifca els marcs" - -#~ msgid "" -#~ "Non-Interactive call of %s\n" -#~ "(for all selected layers)" -#~ msgstr "" -#~ "Crida no-interactiva de %s\n" -#~ "(per a totes les capes seleccionades)" - -#~ msgid "Select Filter for Animated frames-apply" -#~ msgstr "Seleccioneu el filtre per a l'animació de l'aplicació dels marcs" - -#~ msgid "GAP Modify: No layer selected in last handled frame" -#~ msgstr "" -#~ "Modifica el GAP: no hi havia cap capa seleccionada en el darrer marc " -#~ "manejat" - -#~ msgid "Modifying Frames/Layer(s)..." -#~ msgstr "S'esan modificant els marcs/capa(es)..." - -#~ msgid "No selected Layer in start frame" -#~ msgstr "No hi ha cap capa seleccionada en el marc d'inici" - -#~ msgid "Dissolve" -#~ msgstr "Dissol" - -#~ msgid "Multiply" -#~ msgstr "Multiplica" - -#~ msgid "Darken Only" -#~ msgstr "Només enfosqueix" - -#~ msgid "Lighten Only" -#~ msgstr "Només aclareix" - -#~ msgid "Left Top" -#~ msgstr "Esquerra Dalt" - -#~ msgid "Left Bottom" -#~ msgstr "Esquerra Baix" - -#~ msgid "Right Top" -#~ msgstr "Dreta Dalt" - -#~ msgid "Right Bottom" -#~ msgstr "Dreta Baix" - -#~ msgid "Loop Reverse" -#~ msgstr "Inverteix el bucle" - -#~ msgid "Once" -#~ msgstr "Una vegada" - -#~ msgid "OnceReverse" -#~ msgstr "Inverteix una vegada" - -#~ msgid "Frame Loop" -#~ msgstr "Bucle del marc" - -#~ msgid "Frame Loop Reverse" -#~ msgstr "Inverteix el bucle del marc" - -#~ msgid "Frame Once" -#~ msgstr "Marc una vegada" - -#~ msgid "Frame OnceReverse" -#~ msgstr "Inverteix el marc una vegada" - -#~ msgid "Frame PingPong" -#~ msgstr "Marc PingPong" - -#~ msgid "Frame None" -#~ msgstr "Sense marc" - -#~ msgid "Move Path" -#~ msgstr "Mou el camí" - -#~ msgid "Show PreviewFrame with Selected SrcLayer at current Controlpoint" -#~ msgstr "" -#~ "Mostra el marc de visualització prèvia amb la capa Src seleccionada al " -#~ "punt de control actual" - -#~ msgid "Anim Preview" -#~ msgstr "Anima la visualització prèvia" - -#~ msgid "Generate Animated Preview as multilayer image" -#~ msgstr "" -#~ "Genera una visualització prèvia animada com a imatge de reproducció " -#~ "múltiple" - -#~ msgid "Copy moving source-layer(s) into frames" -#~ msgstr "Copia la(es) capa(es) de font mòbils als marcs" - -#~ msgid "Start Frame:" -#~ msgstr "Inicia el marc:" - -#~ msgid "First handled frame" -#~ msgstr "Primer marc manejat" - -#~ msgid "End Frame:" -#~ msgstr "Acaba el marc:" - -#~ msgid "Last handled frame" -#~ msgstr "Darrer marc manejat" - -#~ msgid "Preview Frame:" -#~ msgstr "Previsualitza el marc:" - -#~ msgid "Frame to show when UpdPreview button is pressed" -#~ msgstr "" -#~ "Marc que s'ha de mostrar quan premeu el botó de previsualització Upd" - -#~ msgid "Layerstack:" -#~ msgstr "Pila de capes:" - -#~ msgid "" -#~ "How to insert SrcLayer into the Dst. Frame's Layerstack\n" -#~ "0 means on top i.e. in front" -#~ msgstr "" -#~ "Com es fa per inserir la capa Src a les diferents piles de capes d'un " -#~ "marc\n" -#~ "El 0 vol dir 'a la part de dalt', p.e., davant" - -#~ msgid "Force visibility" -#~ msgstr "Força la visibilitat" - -#~ msgid "Force visibility for all copied Src-Layers" -#~ msgstr "Força la visibilitat per a totes les capes Src copiades" - -#~ msgid "Clip To Frame" -#~ msgstr "Adjunta al marc" - -#~ msgid "Clip all copied Src-Layers at Frame Boundaries" -#~ msgstr "Adjunta totes les capes Src copiades als límits del marc" - -#~ msgid "" -#~ "No Source Image was selected\n" -#~ "(Please open a 2nd Image of the same type before opening Move Path)" -#~ msgstr "" -#~ "No heu seleccionat cap imatge font\n" -#~ "(Si us plau, obriu una segona imatge del mateix tipus abans d'obrir Mou " -#~ "el camí)" - -#~ msgid "Object on empty frames" -#~ msgstr "Objecte dins dels marcs buits" - -#~ msgid "Object on one frame" -#~ msgstr "Objecte dins d'un marc" - -#~ msgid "Exact Object on frames" -#~ msgstr "Objecte exacte dins dels marcs" - -#~ msgid "Anim Preview Mode" -#~ msgstr "Anima el mode de previsualització" - -#~ msgid "Scale Preview" -#~ msgstr "Redueix la visualització prèvia" - -#~ msgid "Scale down size of the generated animated preview (in %)" -#~ msgstr "Redueix la mida de la visualització prèvia generada (en %)" - -#~ msgid "Framerate" -#~ msgstr "Velocitat del marc" - -#~ msgid "Framerate to use in the animated preview in frames/sec" -#~ msgstr "" -#~ "Velocitat del marc a usar en las visualitzacions prèvies animades en " -#~ "marcs/seg" - -#~ msgid "Copy to Video Buffer" -#~ msgstr "Copia a la memòria intermèdia del vídeo" - -#~ msgid "" -#~ "Save all single frames of animated preview to video buffer\n" -#~ "(configured in gimprc by video-paste-dir and video-paste-basename)" -#~ msgstr "" -#~ "Desa tots els marcs sols de les visualitzacions prèvies animades a la " -#~ "memòria intermèdia del vídeo\n" -#~ "(configurat en gimprc per video-paste-dir i video-paste-basename)" - -#~ msgid "Move Path Animated Preview" -#~ msgstr "Mou el camí de la visualització prèvia animada" - -#~ msgid "Generate Animated Preview failed\n" -#~ msgstr "S'ha produït un error en generar la visualització prèvia animada\n" - -#~ msgid "Load Path Points from file" -#~ msgstr "Carrega els punts del camí del fitxer" - -#~ msgid "Save Path Points to file" -#~ msgstr "Desa els punts del camí al fitxer" - -#~ msgid "Current Point: [ %3d ] of [ %3d ]" -#~ msgstr "Punt actual: [ %3d ] de [ %3d ]" - -#~ msgid "Source Select" -#~ msgstr "Selecció de font" - -#~ msgid "Source Object to insert into Frame Range" -#~ msgstr "Objecte font a inserir en l'abast del marc" - -#~ msgid "Mode:" -#~ msgstr "Mode:" - -#~ msgid "Paintmode" -#~ msgstr "Mode pinta" - -#~ msgid "Stepmode:" -#~ msgstr "Mode pas" - -#~ msgid "How to fetch the next SrcLayer at the next handled frame" -#~ msgstr "" -#~ "Com es fa per recollir la següent capa Src en el següent marc manejat" - -#~ msgid "Handle:" -#~ msgstr "Maneja:" - -#~ msgid "How to place the SrcLayer at Controlpoint Coordinates" -#~ msgstr "" -#~ "Com es fa per col·locar la capa Src a les coordenades del punt de control" - -#~ msgid "Move Path Preview" -#~ msgstr "Mou la visualització prèvia del marc" - -#~ msgid "X Coordinate" -#~ msgstr "Coordenada X" - -#~ msgid "Y Coordinate" -#~ msgstr "Coordenada Y" - -#~ msgid "Scale Source Layer's Width in percent" -#~ msgstr "Redueix l'amplada de la capa font en percentatge" - -#~ msgid "Scale SrcLayer's Height in percent" -#~ msgstr "Redueix l'alçada de la capa Src en percentatge" - -#~ msgid "SrcLayer's Opacity in percent" -#~ msgstr "Opacitat de la capa Src en percentatge" - -#~ msgid "Rotate SrcLayer (in degree)" -#~ msgstr "Rota la capa Src (en graus)" - -#~ msgid "Keyframe:" -#~ msgstr "Marc clau:" - -#~ msgid "" -#~ "Fix Controlpoint to Keyframe number\n" -#~ "(0 == No Keyframe)" -#~ msgstr "" -#~ "Fixa el punt de control al número del marc clau\n" -#~ "(0 == no hi ha marc clau)" +#~ msgid "/Filters/Colors/C_ompose..." +#~ msgstr "/Filtres/Colors/C_omposa..." -#~ msgid "Add Point" -#~ msgstr "Afegeix un punt" +#~ msgid "/Filters/Generic/_Convolution Matrix..." +#~ msgstr "/Filtres/Genèric/Matriu de _circumvolució..." -#~ msgid "" -#~ "Add Controlpoint at end\n" -#~ "(the last Point is duplicated)" -#~ msgstr "" -#~ "Afegeix un punt de control al final\n" -#~ "(el darrer punt està duplicat)" +#~ msgid "/Filters/Artistic/_Cubism..." +#~ msgstr "/Filtres/Artístic/_Cubisme..." -#~ msgid "Show Path" -#~ msgstr "Mostra el camí" +#~ msgid "/Filters/Distorts/_Curve Bend..." +#~ msgstr "/Filtres/Distorsions/_Corba Bend..." -#~ msgid "" -#~ "Show Path Lines and enable pick/drag with left button or move with right " -#~ "button" -#~ msgstr "" -#~ "Mostra les línies del camí i habilita Tria/Arrossega amb el botó de " -#~ "l'esquerra o mou-les amb el de la dreta " +#~ msgid "/Filters/Colors/_Decompose..." +#~ msgstr "/Filtres/Colors/_Descomposa..." -#~ msgid "" -#~ "Insert Controlpoint\n" -#~ "(the current Point is duplicated)" -#~ msgstr "" -#~ "Insereix un punt de control\n" -#~ "(el punt actual està duplicat)" +#~ msgid "/Filters/Enhance/_Deinterlace..." +#~ msgstr "/Filtres/Millora/_Desentrellaça..." -#~ msgid "Delete current Controlpoint" -#~ msgstr "Suprimeix el punt de control actual" +#~ msgid "/Filters/Combine/_Depth Merge..." +#~ msgstr "/Filtres/Combina/Fusió _profunda..." -#~ msgid "Prev Point" -#~ msgstr "Punt anterior" +#~ msgid "/Filters/Enhance/Des_peckle..." +#~ msgstr "/Filtres/Millora/Treu els _pics..." -#~ msgid "Show Previous Controlpoint" -#~ msgstr "Mostra el punt de control anterior" +#~ msgid "Despeckling..." +#~ msgstr "S'estan traient els pics" -#~ msgid "Next Point" -#~ msgstr "Punt següent" +#~ msgid "/Filters/Enhance/Des_tripe..." +#~ msgstr "/Filtres/Millora/_Treu les bandes..." -#~ msgid "Show Next Controlpoint" -#~ msgstr "Mostra el següent punt de control" +#~ msgid "/Filters/Render/Pattern/_Diffraction Patterns..." +#~ msgstr "/Filtres/Composa/Patró/Patrons de _difracció..." -#~ msgid "First Point" -#~ msgstr "Primer punt" +#~ msgid "/Filters/Map/_Displace..." +#~ msgstr "/Filtres/Mapa/_Desplaça..." -#~ msgid "Show First Controlpoint" -#~ msgstr "Mostra el primer punt de control" +#~ msgid "Displace Options" +#~ msgstr "Opcions de desplaçament" -#~ msgid "Last Point" -#~ msgstr "Darrer punt" +#~ msgid "/Filters/Edge-Detect/_Edge..." +#~ msgstr "/Filtres/Detecció de vores/_Vora..." -#~ msgid "Show Last Controlpoint" -#~ msgstr "Mostra el darrer punt de control" +#~ msgid "/Filters/Distorts/_Emboss..." +#~ msgstr "/Filtres/Distorsions/R_elleu..." -#~ msgid "Clear Point" -#~ msgstr "Esborra el punt" +#~ msgid "/Filters/Distorts/En_grave..." +#~ msgstr "/Filtres/Distorsions/_Grava..." -#~ msgid "Reset the current Controlpoint to default Values" -#~ msgstr "Reinicia el punt de control actual als valors per defecte" +#~ msgid "/Filters/Colors/Map/_Color Exchange..." +#~ msgstr "/Filtres/Colors/Mapa/Canvi de _color..." -#~ msgid "Clear All Points" -#~ msgstr "Esborra tots els punts" +#~ msgid "/Filters/Combine/_Film..." +#~ msgstr "/Filtres/Combina/_Pel·lícula..." -#~ msgid "" -#~ "Reset all Controlpoints to default Values but dont change the path (X/Y " -#~ "Values)" -#~ msgstr "" -#~ "Reinicia tots els punts de control als valors per defecte però no canviïs " -#~ "el camí (valors X/Y)" +#~ msgid "_Selection" +#~ msgstr "_Selecció" -#~ msgid "Rotate Follow" -#~ msgstr "Segueix la rotació" +# don't translate '' entry, +# * it is keyword for the gtk toolkit +#~ msgid "/Filters/Light Effects/_FlareFX..." +#~ msgstr "/Filtres/Efectes de llum/_FlareFX..." -#~ msgid "" -#~ "Set Rotation for all Controlpoints to follow the shape of the path.\n" -#~ "(Shift: use Rotation of contolpoint 1 as offset)" -#~ msgstr "" -#~ "Estableix la rotació per a tots els punts de control per seguir la forma " -#~ "del camí.\n" -#~ "(Maj: fes servir la rotació del punt de control 1 com a desplaçament)" +#~ msgid "/Filters/Map/_Fractal Trace..." +#~ msgstr "/Filtres/Mapa/Traç del _fractal..." -#~ msgid "Delete All Points" -#~ msgstr "Suprimeix tots els punts" +#~ msgid "/Filters/Blur/Gaussian Blur (_IIR)..." +#~ msgstr "/Filtres/Difuminació/Difuminació gaussiana (_IIR)..." -#~ msgid "Delete all Controlpoints" -#~ msgstr "Suprimeix tots els punts de control" +#~ msgid "You must specify either horizontal or vertical (or both)" +#~ msgstr "Heu d'especificar si és horitzontal o vertical (o tots dos)" -#~ msgid "Load Points" -#~ msgstr "Carrega els punts" +#~ msgid "Blur Horizontally" +#~ msgstr "Difumina horitzontalment" -#~ msgid "Load Controlpoints from file" -#~ msgstr "Carrega els punts de control del fitxer" +#~ msgid "Blur Vertically" +#~ msgstr "Difumina verticalment" -#~ msgid "Save Points" -#~ msgstr "Desa els punts" +#~ msgid "Blur Radius:" +#~ msgstr "Radi de difuminació:" -#~ msgid "Save Controlpoints to file" -#~ msgstr "Desa els punts de control al fitxer" +#~ msgid "/Filters/Blur/Gaussian Blur (_RLE)..." +#~ msgstr "/Filtres/Difuminació/Difuminació gaussiana (_RLE)..." -#~ msgid "" -#~ "Can't operate with current Controlpoint\n" -#~ "or Keyframe settings" -#~ msgstr "" -#~ "No es pot operar amb el punt de control actual\n" -#~ "o els paràmetres del marc clau" +#~ msgid "/Filters/Toys/Gee-_Slime" +#~ msgstr "/Filtres/Joguines/Gee-_Slime" -#~ msgid "Reset Keyframes" -#~ msgstr "Reinicia els marcs clau" +#~ msgid "/Filters/Toys/Gee-_Zoom" +#~ msgstr "/Filtres/Joguines/Gee-_Zoom" -#~ msgid "Move Path Controlpointcheck" -#~ msgstr "Mou el camí per revisar el punt de control" +#~ msgid "GEE-ZOOM: The Plug-In Formerly Known As \"The GIMP E'er Egg\"" +#~ msgstr "GEE-ZOOM: el connector formalment conegut com \"El GIMP E'er Egg\"" -#~ msgid "Errors:" -#~ msgstr "Errors:" +#~ msgid "Save as GIcon" +#~ msgstr "Desa com a icona GI" -#~ msgid "" -#~ "No Source Image was selected.\n" -#~ "Please open a 2nd Image of the same type before opening Move Path." -#~ msgstr "" -#~ "No heu seleccionat cap imatge font.\n" -#~ "Si us plau, obriu una segona imatge del mateix tipus abans d'obrir Mou el " -#~ "camí." +#~ msgid "Icon Name:" +#~ msgstr "Nom de la icona:" -#~ msgid "Copying Layers into Frames..." -#~ msgstr "S'estan copiant les capes als marcs..." +#~ msgid "Milliseconds" +#~ msgstr "Mil·lisegons" -#~ msgid "Generating Animated Preview..." -#~ msgstr "S'està generant una visualització prèvia animada..." +#~ msgid "Selection:" +#~ msgstr "Selecció:" -#~ msgid "" -#~ "\n" -#~ "Error: Keyframe %d at point [%d] higher or equal than last handled frame" -#~ msgstr "" -#~ "\n" -#~ "Error: el marc clau %d al punt [%d] és més alt o igual que el darrer marc " -#~ "manejat" +#~ msgid "/Filters/Glass Effects/_Glass Tile..." +#~ msgstr "/Filtres/Efectes òptics/Mosaic _òptic..." -#~ msgid "" -#~ "\n" -#~ "Error: Keyframe %d at point [%d] leaves not enough space (frames)\n" -#~ "for the previous controlpoints" -#~ msgstr "" -#~ "\n" -#~ "Error: el marc clau %d al punt [%d] no deixa prou espai (marcs)\n" -#~ "per als punts de control previs" +#~ msgid "/Filters/Render/Pattern/_Qbist..." +#~ msgstr "/Filtres/Composa/Patró/_Qbist..." -#~ msgid "" -#~ "\n" -#~ "Error: Keyframe %d is not in sequence at point [%d]" -#~ msgstr "" -#~ "\n" -#~ "Error: el marc clau %d no és en seqüència al punt [%d]" +#~ msgid "/Filters/Colors/Map/_Gradient Map" +#~ msgstr "/Filtres/Colors/Mapa/Mapa de de_gradat" -#~ msgid "" -#~ "\n" -#~ "Error: controlpoint [%d] is out of handled framerange" -#~ msgstr "" -#~ "\n" -#~ "Error: el punt de control [%d] està fora de l'abast del marc manejat" +#~ msgid "/Filters/Render/Pattern/_Grid..." +#~ msgstr "/Filtres/Composa/Patró/_Graella..." -#~ msgid "" -#~ "\n" -#~ "Error: more controlpoints (%d) than handled frames (%d)\n" -#~ "please reduce controlpoints or select more frames" -#~ msgstr "" -#~ "\n" -#~ "Error: hi ha més punts de control (%d) que marcs manejats (%d).\n" -#~ "Si us plau, reduïu els punts de control o seleccioneu més marcs" +#~ msgid "/Image/Transform/_Guillotine" +#~ msgstr "/Imatge/Transforma/_Guillotina" -#~ msgid "Conditions to run mpeg_encode 1.5:" -#~ msgstr "Condicions per executar mpeg_encode 1.5:" +#~ msgid "/Filters/Colors/_Hot..." +#~ msgstr "/Filtres/Colors/_Càlids..." -#~ msgid "Conditions to run mpeg2encode 1.2:" -#~ msgstr "Condicions per executar mpeg2encode 1.2:" +#~ msgid "'%s' is not a HRZ file" +#~ msgstr "'%s' no és un fitxer HRZ" -#~ msgid "1.) mpeg_encode 1.5 must be installed" -#~ msgstr "1.) Ha d'estar instal·lat mpeg_encode 1.5" +#~ msgid "Image must be 256x240" +#~ msgstr "La imatge ha de ser 256x240" -#~ msgid "1.) mpeg2encode 1.2 must be installed" -#~ msgstr "1.) Ha d'estar instal·lat mpeg2encode 1.2" +#~ msgid "Image must be RGB or GRAY" +#~ msgstr "La imatge ha de ser RGB o GRIS" -#~ msgid " you can get mpeg_encode at" -#~ msgstr " podeu obtenir mpeg_encode a" +#~ msgid "/Filters/Map/_Illusion..." +#~ msgstr "/Filtres/Mapa/_Il·lusió..." -#~ msgid " you can get mpeg2encode at http://www.mpeg.org/MSSG" -#~ msgstr " podeu obtenir mpeg2encode a http://www.mpeg.org/MSSG" +#~ msgid "/Filters/Distorts/_IWarp..." +#~ msgstr "/Filtres/Distorsions/_IWarp..." -#~ msgid " ftp://mm-ftp.cs.berkeley.edu/pub/multimedia/mpeg/bmt1r1.tar.gz" -#~ msgstr " ftp://mm-ftp.cs.berkeley.edu/pub/multimedia/mpeg/bmt1r1.tar.gz" +#~ msgid "/Filters/Render/Pattern/_Jigsaw..." +#~ msgstr "/Filtres/Composa/Patró/_Encaix..." -#~ msgid " or at ftp://ftp.mpeg.org/pub/mpeg/mssg " -#~ msgstr " o a ftp://ftp.mpeg.org/pub/mpeg/mssg " +# sg - preview +#~ msgid "Image Preview" +#~ msgstr "Previsualització de la imatge" -#~ msgid "2.) You need a series of single Images on disk (AnimFrames)" +#~ msgid "Force baseline JPEG (Readable by all decoders)" #~ msgstr "" -#~ "2.) Necessiteu una sèrie d'imatges senzilles al disk (Marcs animats)" - -#~ msgid " all with fileformat JPEG (or YUV or PNM or PPM)" -#~ msgstr " tot amb format de fitxer JPEG (o YUV o PNM o PPM)" - -#~ msgid " all with fileformat PPM (or YUV)" -#~ msgstr " tot amb format de fitxer PPM (o YUV)" - -#~ msgid " (use 'Frames Convert' from the Video Menu" -#~ msgstr " (fes servir Convertiu els marcs del menú de vídeo" - -#~ msgid " or 'Split Image to Frames' from the Video Menu)" -#~ msgstr " o Divideix la imatge en marcs del menú de vídeo)" - -#~ msgid "3.) All Images must have the same size," -#~ msgstr "3.) Totes les imatges han de tenir la mateixa mida," - -#~ msgid " width and height must be a multiple of 16" -#~ msgstr " l'amplada i l'alçada han de ser múltiples de 16" +#~ "Força la línia de base JPEG (llegibles per tots els descodificadors)" -#~ msgid " (use Scale or Crop from the Video Menu)" -#~ msgstr " (feu servir Redueix o Escapça del menú de vídeo)" +#~ msgid "DCT method (Speed/quality tradeoff):" +#~ msgstr "Mètode DCT (Rapidesa/qualitat d'exportació):" -#~ msgid "MPEG_ENCODE Information" -#~ msgstr "Informació MPEG_ENCODE" +#~ msgid "Image comments" +#~ msgstr "Comentaris de la imatge" -#~ msgid "generate MPEG1 (ISO/IEC 11172-2) stream" -#~ msgstr "genera un corrent MPEG1 (ISO/IEC 11172-2)" +#~ msgid "/Filters/Edge-Detect/_Laplace" +#~ msgstr "/Filtres/Detecció de vores/_Laplace" -#~ msgid "generate MPEG2 (ISO/IEC DIS 13818-2) stream" -#~ msgstr "genera un corrent MPEG2 (ISO/IEC DIS 13818-2)" +#~ msgid "/Filters/Map/_Van Gogh (LIC)..." +#~ msgstr "/Filtres/Mapa/_Van Gogh (LIC)..." -#~ msgid "GenParams" -#~ msgstr "Paràmetres de generació" +#~ msgid "/Filters/Colors/Map/Adjust _FG-BG" +#~ msgstr "/Filtres/Colors/Mapa/Ajusta _primer pla-fons" -#~ msgid "Gen + Encode" -#~ msgstr "Generació + codificació" +#~ msgid "/Filters/Colors/Map/Color Range _Mapping..." +#~ msgstr "/Filtres/Colors/Mapa/_Mapatge de l'abast del color..." -#~ msgid "To Frame:" -#~ msgstr "Al Marc:" +#~ msgid "/Filters/Colors/_Max RGB..." +#~ msgstr "/Filtres/Colors/RGB _màxim..." -#~ msgid "Framerate :" -#~ msgstr "Velocitat de marc :" +#~ msgid "/Filters/Blur/_Motion Blur..." +#~ msgstr "/Filtres/Difuminació/Difuminació de moviment..." -#~ msgid "framerate in frames/second" -#~ msgstr "velocitat de marc en marcs/segon" +#~ msgid "/Filters/Distorts/_Mosaic..." +#~ msgstr "/Filtres/Distorsions/_Mosaic..." -#~ msgid "Bitrate:" -#~ msgstr "Velocitat de bits:" +#~ msgid "/Filters/Distorts/Newsprin_t..." +#~ msgstr "/Filtres/Distorsions/Pa_per de diari..." -#~ msgid "" -#~ "used for constant bitrates (bit/sec) \n" -#~ "(low rate gives good compression + bad quality)" -#~ msgstr "" -#~ "es fa servir per a les velocitats de bits constants (bit/" -#~ "seg) \n" -#~ "(una velocitat comporta una bona compressió + mala qualitat)" +#~ msgid "/Filters/Enhance/_NL Filter..." +#~ msgstr "/Filtres/Millora/Filtre _NL..." -#~ msgid "Outputfile:" -#~ msgstr "Fitxer de sortida:" +#~ msgid "_Do Preview" +#~ msgstr "Pre_visualitza" -#~ msgid "Name of the resulting MPEG outputfile" -#~ msgstr "Nom del fitxer de sortida MPEG resultant" +#~ msgid "/Filters/Noise/_Noisify..." +#~ msgstr "/Filtres/Soroll/_Fes soroll..." -#~ msgid "Paramfile:" -#~ msgstr "Paràmetres de fitxer:" +#~ msgid "Noisify" +#~ msgstr "Fes soroll" -#~ msgid "" -#~ "Name of the Encoder-Parameterfile\n" -#~ "(is generated)" -#~ msgstr "" -#~ "Nom del codificador de paràmetres de fitxer\n" -#~ "(s'ha generat)" +#~ msgid "/Layer/Colors/Auto/_Normalize" +#~ msgstr "/Capes/Colors/Automàtic/_Normalitza" -#~ msgid "Startscript:" -#~ msgstr "Inici de la seqüència:" +# don't translate '' +#~ msgid "/Filters/Light Effects/Su_perNova..." +#~ msgstr "/Filtres/Efectes de llum/Su_pernova..." -#~ msgid "" -#~ "Name of the Startscript \n" -#~ "(is generated/executed)" -#~ msgstr "" -#~ "Nom de l'inici de seqüència \n" -#~ "(s'ha generat/executat)" +#~ msgid "/Filters/Artistic/Oili_fy..." +#~ msgstr "/Filtres/Artístic/Oli_fica..." -#~ msgid "" -#~ "Generate parameterfile for mpeg_encode 1.5\n" -#~ "(the freely distributed Berkeley MPEG-1 Video Encoder.)\n" -#~ msgstr "" -#~ "Genera els paràmetres del fitxer per mpeg_encode 1.5\n" -#~ "(el codificador de vídeo MPEG-1 de lliure distribució de Berkeley.)\n" +#~ msgid "/Filters/Map/_Paper Tile..." +#~ msgstr "/Filtres/Mapa/Mosaic del _paper..." -#~ msgid "Constant Bitrate :" -#~ msgstr "Velocitat de bits constant :" +#~ msgid "/Filters/Blur/_Pixelize..." +#~ msgstr "/Filtres/Desenfoca/_Pixelitza..." -#~ msgid "Iqnore I/P/QSCALE values and use constant bit-rate)" -#~ msgstr "" -#~ "Ignora els valors I/P/QSCALE i fes servir una velocitat de bits constant" +#~ msgid "/Filters/Render/Clouds/_Plasma..." +#~ msgstr "/Filtres/Composa/Núvols/_Plasma..." -#~ msgid "Pattern:" -#~ msgstr "Patró:" +#~ msgid "/Xtns/_Plugin Details" +#~ msgstr "/Extensions/Detalls del _connector..." -#~ msgid "How to encode MPEG framesequence (I/P/B frames)" -#~ msgstr "Com es fa per codificar la seqüència de marcs MPEG (marcs I/P/B)" +#~ msgid "Details <<" +#~ msgstr "Detalls <<" -#~ msgid "IQSCALE:" -#~ msgstr "IQSCALE:" +#~ msgid "Details >>" +#~ msgstr "Detalls >>" -#~ msgid "" -#~ "Quality scale for I-Frames \n" -#~ "(1 = best quality, 31 = best comression)" -#~ msgstr "" -#~ "Reducció de qualitat per als marcs I \n" -#~ "(1 = qualitat màxima, 31 = millor compressió)" +#~ msgid "Menu Path:" +#~ msgstr "Camí del menú:" -#~ msgid "PQSCALE:" -#~ msgstr "PQSCALE:" +#~ msgid "Name:" +#~ msgstr "Nom:" -#~ msgid "" -#~ "Quality scale for P-Frames \n" -#~ "(1 = best quality, 31 = best comression)" -#~ msgstr "" -#~ "Reducció de la qualitat per als marcs P \n" -#~ "(1 = qualitat màxima, 31 = millor compressió)" +#~ msgid "Blurb:" +#~ msgstr "Ressenya:" -#~ msgid "BQSCALE:" -#~ msgstr "BQSCALE" +#~ msgid "Help:" +#~ msgstr "Ajuda:" -#~ msgid "" -#~ "Quality scale for B-Frames \n" -#~ "(1 = best quality, 31 = best comression)" -#~ msgstr "" -#~ "Reducció de la qualitat per als marcs B \n" -#~ "(1 = qualitat màxima, 31 = millor compressió)" +#~ msgid "Plugin Descriptions" +#~ msgstr "Descripcions del connector" -#~ msgid "P- Search :" -#~ msgstr "Cerca P :" +#~ msgid "Search by Name" +#~ msgstr "Cerca per nom" -#~ msgid "Search Algorithmus used for P-frames" -#~ msgstr "Cerca l'algoritme que es fa servir per als marcs P" +#~ msgid "Search:" +#~ msgstr "Cerca:" -#~ msgid "B-Search :" -#~ msgstr "Cerca B :" +#~ msgid "Save Color _Values From Transparent Pixels" +#~ msgstr "Desa els _valors de color dels píxels transparents" -#~ msgid "Search Algorithmus used for B-frames" -#~ msgstr "Cerca l'algoritme que es fa servir per als marcs B" +#~ msgid "/Filters/Distorts/P_olar Coords..." +#~ msgstr "/Filtres/Distorsions/Coordenades p_olars..." -#~ msgid "Gen MPEG_ENCODE Parameters" -#~ msgstr "Genera els paràmetres MPEG_ENCODE" +#~ msgid "_X-Offset:" +#~ msgstr "Desplaçament en _X:" -#~ msgid "Encode Values" -#~ msgstr "Codifica els valors" +#~ msgid "_Y-Offset:" +#~ msgstr "Desplaçament en _Y:" -#~ msgid "" -#~ "Generate parameterfile for mpeg2encode 1.2\n" -#~ "(MPEG-2 Video Encoder.)\n" -#~ msgstr "" -#~ "Genera els paràmetres de fitxer per a mpeg2encode 1.2\n" -#~ "(Codificador de vídeo MPEG-2.)\n" +#~ msgid "/Filters/Noise/_Hurl..." +#~ msgstr "/Filtres/Soroll/_Llença..." -#~ msgid "MPEG-type :" -#~ msgstr "Tipus MPEG :" +#~ msgid "/Filters/Noise/_Pick..." +#~ msgstr "/Filtres/Soroll/T_ria..." -#~ msgid "Videoformat :" -#~ msgstr "Format de vídeo :" +#~ msgid "/Filters/Noise/_Slur..." +#~ msgstr "/Filtres/Soroll/_Murmuri..." -#~ msgid "Videoformat" -#~ msgstr "Format de vídeo" +#~ msgid "/Filters/Distorts/_Ripple..." +#~ msgstr "/Filtres/Distorsions/_Ona..." -#~ msgid "Gen MPEG2ENCODE Parameters" -#~ msgstr "Genera els paràmetres MPEG2ENCODE" +#~ msgid "/Filters/Colors/Map/_Sample Colorize..." +#~ msgstr "/Filtres/Colors/Mapa/Acoloreix la mo_stra..." -#~ msgid "" -#~ "\n" -#~ "WARNING: mpeg_encode does not support Fileformat " -#~ msgstr "" -#~ "\n" -#~ "AVÍS: mpeg_encode no permet el fitxer de format " +#~ msgid "/Filters/Noise/S_catter HSV..." +#~ msgstr "/Filtres/Soroll/Dispersió _HSV..." -#~ msgid "" -#~ "\n" -#~ "ERROR: width not a multiple of 16" -#~ msgstr "" -#~ "\n" -#~ "ERROR: l'amplada no és múltiple de 16" +#~ msgid "Preview (1:4) - Right Click to Jump" +#~ msgstr "Previsualització (1:4) - Cliqueu amb el botó dret per saltar" -#~ msgid "" -#~ "\n" -#~ "ERROR: height not a multiple of 16" -#~ msgstr "" -#~ "\n" -#~ "ERROR: l'alçada no és múltiple de 16" +#~ msgid "/File/Acquire/_Screen Shot..." +#~ msgstr "/Fitxer/Adquireix/Captura de _pantalla..." -#~ msgid "" -#~ "\n" -#~ "WARNING: mpeg2encode does not support Fileformat " -#~ msgstr "" -#~ "\n" -#~ "AVÍS: mpeg2encode no permet el fitxer de format " +#~ msgid "/Filters/Blur/_Selective Gaussian Blur..." +#~ msgstr "/Filtres/Desenfoca/De_senfocat gaussià selectiu..." -#~ msgid "" -#~ "\n" -#~ "ERROR: invoked from a single image, animframe required" -#~ msgstr "" -#~ "\n" -#~ "ERROR: si el crideu des d'una imatge sola, necessiteu un marc animat" +#~ msgid "/Filters/Colors/_Semi-Flatten" +#~ msgstr "/Filtres/Colors/_Semiaplanat" -#~ msgid "" -#~ "Playback \n" -#~ " optimized" -#~ msgstr "" -#~ "Playback \n" -#~ "El està optimitzat" +#~ msgid "/Filters/Enhance/_Sharpen..." +#~ msgstr "/Filtres/Millora/Af_ila..." -#~ msgid "" -#~ "Smart Update .xvpics\n" -#~ " forced upd" -#~ msgstr "" -#~ "Actualització intel·ligent .xvpics\n" -#~ "El ha forçat l'actualització" +#~ msgid "/Filters/Distorts/_Shift..." +#~ msgstr "/Filtres/Distorsions/Decalat_ge..." -#~ msgid "Duplicate selected Frames" -#~ msgstr "Duplica els marcs seleccionats" +#~ msgid "/Filters/Render/Pattern/_Sinus..." +#~ msgstr "/Filtres/Composa/Patró/_Sinus..." -#~ msgid "Delete selected Frames" -#~ msgstr "Suprimeix els marcs seleccionats" +#~ msgid "/Filters/Colors/Smoo_th Palette..." +#~ msgstr "/Filtres/Colors/Pale_ta suau..." -# plug-ins/gap/gap_navigatorits constant_dialog.c:391 -#~ msgid "Goto 1st Frame" -#~ msgstr "Vés al primer marc" +#~ msgid "/Filters/Render/Clouds/_Solid Noise..." +#~ msgstr "/Filtres/Composa/Núvols/_Soroll sòlid..." -#~ msgid "" -#~ "Goto prev Frame\n" -#~ " use timezoom stepsize" -#~ msgstr "" -#~ "Vés al marc anterior\n" -#~ "El fa servir la mida del pas del zoom temporal" +#~ msgid "/Filters/Edge-Detect/_Sobel..." +#~ msgstr "/Filtres/Detecció de vores/_Sobel..." -#~ msgid "" -#~ "Goto next Frame\n" -#~ " use timezoom stepsize" -#~ msgstr "" -#~ "Vés al marc següent\n" -#~ "El fa servir la mida del pas del zoom temporal" +#~ msgid "/Filters/Light Effects/_Sparkle..." +#~ msgstr "/Filtres/Efectes de llum/Gu_spires..." -#~ msgid "Goto last Frame" -#~ msgstr "Vés al darrer marc" +#~ msgid "Pos X:" +#~ msgstr "Pos X:" -#~ msgid "/Video/VCR Navigator..." -#~ msgstr "/Vídeo/Navegador VCR..." +#~ msgid "Pos Y:" +#~ msgstr "Pos Y:" -#~ msgid "Cant open two or more Video Navigator Windows." -#~ msgstr "No es poden obrir dues o més finestres del navegador." +#~ msgid "Pos Z:" +#~ msgstr "Pos Z:" -#~ msgid "Paste before" -#~ msgstr "Enganxa abans" +#~ msgid "/Filters/Render/Sphere _Designer..." +#~ msgstr "/Filtres/Composa/_Dissenyador d'esferes..." -#~ msgid "Paste after" -#~ msgstr "Enganxa després" +#~ msgid "/Filters/Noise/Sp_read..." +#~ msgstr "/Filtres/Soroll/Esca_mpa..." -#~ msgid "Paste replace" -#~ msgstr "Substitueix el que s'ha enganxat" +#~ msgid "/Filters/Artistic/_Apply Canvas..." +#~ msgstr "/Filtres/Artístic/_Aplica el llenç..." -#~ msgid "Clear Video Buffer" -#~ msgstr "Neteja la memòria intermèdia del vídeo" +#~ msgid "Open SVG" +#~ msgstr "Obre un SVG" -#~ msgid "Videoframes:" -#~ msgstr "Marcs de vídeo:" +#~ msgid "Ratio _X:" +#~ msgstr "Relació _X:" -#~ msgid "Framerate:" -#~ msgstr "Velocitat dels marcs:" +#~ msgid "Targa Options" +#~ msgstr "Opcions del Targa" -#~ msgid "Timezoom:" -#~ msgstr "Zoom temporal:" +#~ msgid "/Layer/Transparency/_Threshold Alpha..." +#~ msgstr "/Capes/Transparència/_Llindar alfa..." -#~ msgid "Video Navigator" -#~ msgstr "Navegador de vídeo" +#~ msgid "/Filters/Map/_Tile..." +#~ msgstr "/Filtres/Mapa/_Mosaic..." -#~ msgid "New Width:" -#~ msgstr "Amplada nova:" +#~ msgid "/Filters/Map/_Small Tiles..." +#~ msgstr "/Filtres/Mapa/Mo_saics petits..." -#~ msgid "New Height:" -#~ msgstr "Alçada nova:" +#~ msgid "Flipping" +#~ msgstr "S'està voltejant" -#~ msgid "Offset X:" -#~ msgstr "Desplaçament de X:" +#~ msgid "Applied to Tile" +#~ msgstr "S'ha aplicat al mosaic" -#~ msgid "Offset Y:" -#~ msgstr "Desplaçament de Y:" +#~ msgid "Segment Setting" +#~ msgstr "Configuració del segment" -#~ msgid "Crop AnimFrames (all)" -#~ msgstr "Escapça els marcs animats (tots)" +#~ msgid "/Filters/Map/_Make Seamless" +#~ msgstr "/Filtres/Mapa/_Make Seamless" -#~ msgid "Crop (original %dx%d)" -#~ msgstr "Escapça (%dx%d original)" +#~ msgid "/Xtns/_Unit Editor" +#~ msgstr "/Extensions/Editor d'_unitats..." -#~ msgid "Resize AnimFrames (all)" -#~ msgstr "Redimensiona els marcs animats (tots)" +#~ msgid "/Filters/Enhance/_Unsharp Mask..." +#~ msgstr "/Filtres/Destaca/Màscara per desa_filar..." -#~ msgid "Resize (original %dx%d)" -#~ msgstr "Redimensiona (%dx%d original)" +#~ msgid "/Filters/Distorts/Vi_deo..." +#~ msgstr "/Filtres/Distorsions/Ví_deo..." -#~ msgid "Scale AnimFrames (all)" -#~ msgstr "Redueix els marcs animats (tots)" +#~ msgid "/Filters/Colors/_Value Invert" +#~ msgstr "/Filtres/Colors/In_verteix el valor" -#~ msgid "Scale (original %dx%d)" -#~ msgstr "Redueix (%dx%d original)" +#~ msgid "/Filters/Distorts/_Value Propagate..." +#~ msgstr "/Filtres/Distorsions/Propaga el _valor..." -#~ msgid "Generate Optimal Palette" -#~ msgstr "Genera una paleta òptima" +#~ msgid "/Filters/Generic/E_rode" +#~ msgstr "/Filtres/Genèric/E_rosiona" -#~ msgid "Use Custom Palette" -#~ msgstr "Fes servir la paleta personalitzada" +#~ msgid "/Filters/Generic/_Dilate" +#~ msgstr "/Filtres/Genèric/_Dilata" -#~ msgid "Use Black/White (1-Bit) Palette" -#~ msgstr "Fes servir la paleta en blanc i negre (1 bit)" +#~ msgid "/Filters/Map/_Warp..." +#~ msgstr "/Filtres/Mapa/_Trama..." -#~ msgid "Floyd-Steinberg Color Dithering (Normal)" -#~ msgstr "Tramat de color Floyd-Steinberg (normal)" +#~ msgid "Secondary Options" +#~ msgstr "Opcions secundàries" -#~ msgid "Floyd-Steinberg Color Dithering (Reduced Color Bleeding)" -#~ msgstr "Tramat de color Floyd-Steinberg (Color a sang reduït)" +#~ msgid "Use Mag Map" +#~ msgstr "Utilitza el mapa de magnitut" -#~ msgid "Positioned Color Dithering" -#~ msgstr "Tramat de color posicionat" +#~ msgid "Other Options" +#~ msgstr "Altres opcions" -#~ msgid "No Color Dithering" -#~ msgstr "Sense tramat de color" +#~ msgid "/Filters/Distorts/_Waves..." +#~ msgstr "/Filtres/Distorsions/_Ones..." -#~ msgid "Custom Palette" -#~ msgstr "Paleta personalitzada" +#~ msgid "/Filters/Distorts/W_hirl and Pinch..." +#~ msgstr "/Filtres/Distorsions/_Gir i contracció..." -#~ msgid "" -#~ "Name of a cutom palette\n" -#~ "(is ignored if Palette Type is not custom)" -#~ msgstr "" -#~ "Nom de la paleta personalitzada\n" -#~ "(s'ignora si no s'ha personalitzat el tipus de paleta)" +#~ msgid "/File/Acquire/From Clipboard" +#~ msgstr "/Fitxer/Adquireix/Del porta-retalls" -#~ msgid "Remove Unused" -#~ msgstr "Suprimeix els que no s'han emprat" +#~ msgid "/Filters/Distorts/Wi_nd..." +#~ msgstr "/Filtres/Distorsions/Ve_nt..." -#~ msgid "" -#~ "Remove unused or double colors\n" -#~ "(is ignored if Palette Type is not custom)" -#~ msgstr "" -#~ "Suprimeix els colors no emprats o dobles\n" -#~ "(s'ignora si no s'ha personalitzat el tipus de paleta)" +#~ msgid "/File/_Print" +#~ msgstr "/Fitxer/Im_primeix" -#~ msgid "" -#~ "Number of resulting Colors\t\t \n" -#~ "(ignored if Palette Type is not Generate optimal palette)" -#~ msgstr "" -#~ "Nombre de colors resultants\t\t \n" -#~ "(s'ignora si el tipus de paleta no és genera d'una paleta òptima)" +# Rendering +#~ msgid "Rendering %s" +#~ msgstr "S'està composant %s" -#~ msgid "Dither Options" -#~ msgstr "Opcions de tramat" +#~ msgid "Scale (log 2):" +#~ msgstr "Escala (registre 2):" -#~ msgid "Enable transparency" -#~ msgstr "Habilita la transparència" +#~ msgid "EOF encountered on " +#~ msgstr "S'ha trobat l'EOF a " -#~ msgid "Enable dithering of transparency" -#~ msgstr "Habilita el tramat de la transparència" +#~ msgid "No memory for mapping colors" +#~ msgstr "No hi ha memòria per fer el mapatge dels colors" -#~ msgid "Convert Frames to Indexed" -#~ msgstr "Converteix els marcs en indexats" +#~ msgid "/Layer/Transform/_Zealous Crop" +#~ msgstr "/Capes/Transforma/Escapçat _Zealous" -#~ msgid "Keep Type" -#~ msgstr "Conserva el tipus" +#~ msgid "/Xtns/_DB Browser" +#~ msgstr "/Extensions/Navegador de base de _dades..." -#~ msgid "Convert to RGB" -#~ msgstr "Converteix a RGB" +#~ msgid "In:" +#~ msgstr "Entrada:" -#~ msgid "Convert to Gray" -#~ msgstr "Converteix a gris" +#~ msgid "Out:" +#~ msgstr "Sortida:" -#~ msgid "Convert to Indexed" -#~ msgstr "Converteix a indexat" +#~ msgid "/Filters/Render/Nature/_Flame..." +#~ msgstr "/Filtres/Composa/Natura/_Flama..." -#~ msgid "" -#~ "\n" -#~ "Select destination fileformat by extension\n" -#~ "optionally convert imagetype\n" -#~ msgstr "" -#~ "\n" -#~ "Seleccioneu el format de fitxer de destí per extensió\n" -#~ "opcionalment, convertiu el tipus d'imatge\n" +#~ msgid "/Filters/Colors/_Filter Pack..." +#~ msgstr "/Filtres/Colors/Paquet de _filtres..." -#~ msgid "Basename:" -#~ msgstr "Nom base:" +#~ msgid "Display" +#~ msgstr "Visualitza" -#~ msgid "" -#~ "basename of the resulting frames \n" -#~ "(0001.ext is added)" -#~ msgstr "" -#~ "nom base dels marcs resultants \n" -#~ "(s'hi afegeix 0001.ext)" +#~ msgid "CirclePalette" +#~ msgstr "Paleta circular" -#~ msgid "Extension:" -#~ msgstr "Extensió:" +#~ msgid "Lighter And Darker" +#~ msgstr "Més clar i més fosc" -#~ msgid "" -#~ "extension of resulting frames \n" -#~ "(is also used to define Fileformat)" -#~ msgstr "" -#~ "extensió dels marcs resultants \n" -#~ "(també es fa servir per definir el format de fitxer)" +#~ msgid "Miscellaneous Options" +#~ msgstr "Opcions variades" -#~ msgid "" -#~ "Convert to, or keep imagetype \n" -#~ "(most fileformats can't handle all types)" -#~ msgstr "" -#~ "Convertiu o conserveu el tipus d'imatge \n" -#~ "(la majoria de formats de fitxer no poden manejar tots els tipus)" +#~ msgid "/Filters/Render/_Gfig..." +#~ msgstr "/Filtres/Composa/_Gfig..." -#~ msgid "Flatten:" -#~ msgstr "Complet:" +#~ msgid "All" +#~ msgstr "Tots" -#~ msgid "" -#~ "Flatten all resulting frames \n" -#~ "(most fileformats need flattened frames)" -#~ msgstr "" -#~ "Completa tots els marcs resultants \n" -#~ "(la majoria de formats de fitxer necessiten marcs complets)" +#~ msgid "Number of Sides/Points/Turns:" +#~ msgstr "Nombre de cares/punts/girs:" -#~ msgid "Convert Frames to other Formats" -#~ msgstr "Converteix els marcs en altres formats" +#~ msgid "Clockwise" +#~ msgstr "Sentit horari" -#~ msgid "Convert Settings" -#~ msgstr "Converteix els paràmetres" +#~ msgid "Anti-Clockwise" +#~ msgstr "Sentit antihorari" -#~ msgid "Expand as necessary" -#~ msgstr "Expandeix tant com sigui necessari" +#~ msgid "Brush" +#~ msgstr "Pinzell" -#~ msgid "Clipped to bottom layer" -#~ msgstr "Adjuntat a la capa inferior" +#~ msgid "Airbrush" +#~ msgstr "Aerògraf" -#~ msgid "Flattened image" -#~ msgstr "Imatge completa" +#~ msgid "Pencil" +#~ msgstr "Llapis" #~ msgid "" -#~ "Resulting Layer Size is made of the outline-rectangle \n" -#~ "of all visible layers (may differ from frame to frame)" +#~ "Use the brush/pencil or the airbrush when drawing on the image. Pattern " +#~ "paints with currently selected brush with a pattern. Only applies to " +#~ "circles/ellipses if Approx. Circles/Ellipses toggle is set." #~ msgstr "" -#~ "La mida de la capa resultant està feta del contorn del rectangle \n" -#~ "de totes les capes visibles (pot diferir de marc a marc)" +#~ "Fes servir el pinzell o l'aerògraf per dibuixar sobre la imatge. El patró " +#~ "pinta amb el pinzell seleccionat actualment amb un patró. Només s'aplica " +#~ "a cercles i el·lipses si s'ha commutat l'aproximació de cercles i " +#~ "el·lipses." + +#~ msgid "New" +#~ msgstr "Nou" -#~ msgid "Resulting Layer Size is the frame size" -#~ msgstr "La mida de la capa resultant és la mida del marc" +#~ msgid "Multiple" +#~ msgstr "Múltiple" #~ msgid "" -#~ "Resulting Layer Size is the size of the bottom layer\n" -#~ "(may differ from frame to frame)" +#~ "Draw all objects on one layer (original or new) or one object per layer" #~ msgstr "" -#~ "La mida de la capa resultant és la mida de la capa inferior\n" -#~ "(pot diferir de marc a marc)" +#~ "Dibuixa tots els objectes en una capa (original o nova) o un objecte per " +#~ "capa" + +#~ msgid "Draw on:" +#~ msgstr "Dibuixa en:" + +#~ msgid "Selection+Fill" +#~ msgstr "Sel·lecció amb farciment" #~ msgid "" -#~ "Resulting Layer Size is the frame size \n" -#~ "transparent parts are filled with BG color" +#~ "Draw type. Either a brush or a selection. See brush page or selection " +#~ "page for more options" #~ msgstr "" -#~ "La mida de la capa resultant és la mida del marc \n" -#~ "les parts transparents que s'omplen de color blau i verd" +#~ "Tipus de dibuix. Pot ser amb un pinzell o una selecció. Per a més opcions " +#~ "aneu a la pàgina de pinzells o a la pàgina de selecció" + +#~ msgid "Using:" +#~ msgstr "S'està utilitzant:" -#~ msgid "select all Layers where Layername is equal to Pattern" -#~ msgstr "selecciona totes les capes amb el mateix nom que el patró" +#~ msgid "With BG of:" +#~ msgstr "Amb el fons de:" + +#~ msgid "Reverse Line" +#~ msgstr "Inverteix la línia" -#~ msgid "select all Layers where Layername starts with Pattern" -#~ msgstr "selecciona totes les capes que comencen com el patró" +#~ msgid "Draw lines in reverse order" +#~ msgstr "Dibuixa les línies en ordre invers" -#~ msgid "select all Layers where Layername ends up with Pattern" -#~ msgstr "selecciona totes les capes que acaben com el patró" +#~ msgid "Scale drawings to images size" +#~ msgstr "Escala els dibuixos a la mida de les imatges" -#~ msgid "select all Layers where Layername contains Pattern" -#~ msgstr "selecciona totes les capes que continguin en el nom el del patró" +#~ msgid "Approx. Circles/Ellipses" +#~ msgstr "Cercles i el·lipses aproximats" #~ msgid "" -#~ "select Layerstack positions.\n" -#~ "0, 4-5, 8\n" -#~ "where 0 == Top-layer" +#~ "Approx. circles & ellipses using lines. Allows the use of brush fading " +#~ "with these types of objects." #~ msgstr "" -#~ "selecciona les posicions de la pila de capes.\n" -#~ "0, 4-5, 8\n" -#~ "on 0 == capa de dalt" +#~ "Cercles i el·lipses aproximats fent servir línies. Permet l'ús de la " +#~ "difuminació de pinzell amb aquest tipus d'objectes." -#~ msgid "" -#~ "select Layerstack positions.\n" -#~ "0, 4-5, 8\n" -#~ "where 0 == BG-layer" -#~ msgstr "" -#~ "selecciona les posicions de la pila de capes.\n" -#~ "0, 4-5, 8\n" -#~ "on 0 == capa BG" +#~ msgid "Gfig Brush Selection" +#~ msgstr "Selecció de pinzell Gfig" -#~ msgid "select all visible Layers" -#~ msgstr "selecciona totes les capes visibles" +#~ msgid "Fade out:" +#~ msgstr "Difumina:" -#~ msgid "Layer Basename:" -#~ msgstr "Nom bàsic de la capa:" +#~ msgid "Gradient:" +#~ msgstr "Degradat:" -#~ msgid "" -#~ "Basename for all Layers \n" -#~ "[####] is replaced by frame number" -#~ msgstr "" -#~ "Nom bàsic de totes les capes \n" -#~ "on es substitueix [####] pel número de marc" +#~ msgid "Pressure:" +#~ msgstr "Pressió:" -#~ msgid "Layer Mergemode:" -#~ msgstr "Mode de refosa de capes:" +#~ msgid "No Options..." +#~ msgstr "Cap opció..." -#~ msgid "Exclude BG-Layer" -#~ msgstr "Exclou les capes blau i verda" +#~ msgid "Set Brush..." +#~ msgstr "Determina el pinzell..." -#~ msgid "" -#~ "Exclude the BG-Layers \n" -#~ "in all handled frames\n" -#~ "regardless to selection" -#~ msgstr "" -#~ "Exclou les capes blau i verda \n" -#~ "en tots els marcs gestionats\n" -#~ "sense tenirt en compte la selecció" +#~ msgid "Add" +#~ msgstr "Afegeix" -#~ msgid "Use all unselected Layers" -#~ msgstr "Fes servir totes les capes no seleccionades" +#~ msgid "Subtract" +#~ msgstr "Sostreu" -#~ msgid "Creating Layer-Animated Image..." -#~ msgstr "S'està creant una capa d'una imatge animada..." +#~ msgid "Intersect" +#~ msgstr "Creua" -#~ msgid "Frames to Image" -#~ msgstr "Marcs a la imatge" +#~ msgid "Selection Type:" +#~ msgstr "Tipus de selecció:" -#~ msgid "Create Multilayer-Image from Frames" -#~ msgstr "Crea una imatge de múltiples capes des dels marcs" +#~ msgid "Fill Type:" +#~ msgstr "Tipus de farciment:" -#~ msgid "Flattening Frames..." -#~ msgstr "S'estan completant els marcs..." +#~ msgid "Fill Opacity:" +#~ msgstr "Opacitat del farciment:" -#~ msgid "Converting Frames..." -#~ msgstr "S'estan convertint els marcs..." +#~ msgid "Each Selection" +#~ msgstr "Cada selecció" -#~ msgid "" -#~ "Convert Frames: SAVE operation FAILED.\n" -#~ "Desired save plugin can't handle type\n" -#~ "or desired save plugin not available." -#~ msgstr "" -#~ "En convertir els marcs: S'ha produït un error en l'operació de desar.\n" -#~ "El connector per desar que voleu no pot manejar aquest tipus\n" -#~ "o bé no està disponible." +#~ msgid "All Selections" +#~ msgstr "Totes les seleccions" -#~ msgid "Cropping all Animation Frames..." -#~ msgstr "S'estan escapçant tots els marcs d'animació..." +#~ msgid "Fill after:" +#~ msgstr "Omple després:" -#~ msgid "Resizing all Animation Frames..." -#~ msgstr "S'estan redimensionant tots els marcs d'animació..." +#~ msgid "Segment" +#~ msgstr "Segment" -#~ msgid "Scaling all Animation Frames..." -#~ msgstr "S'estan reduïnt tots els marcs d'animació..." +#~ msgid "Sector" +#~ msgstr "Sector" -#~ msgid "Flatten Frames" -#~ msgstr "Completa els marcs" +#~ msgid "Arc as:" +#~ msgstr "Fes l'arc com a:" -#~ msgid "Removing Layer (pos:%ld) from Frames..." -#~ msgstr "S'està suprimint la capa (pos:%ld) dels marcs..." +#~ msgid "Lock on Grid" +#~ msgstr "Força a la graella" -#~ msgid "Delete Layers in Frames" -#~ msgstr "Suprimeix les capes als marcs" +#~ msgid "Object" +#~ msgstr "Objecte" -#~ msgid "Select Frame Range & Position" -#~ msgstr "Selecciona l'abast i la posició del marc" +#~ msgid "Create a new Gfig object collection for editing" +#~ msgstr "Crea una nova col·lecció d'objectes Gfig per editar" -#~ msgid "Splitting into Frames..." -#~ msgstr "S'està dividint en marcs..." +#~ msgid "Load a single Gfig object collection" +#~ msgstr "Carrega només una col·lecció d'objectes Gfig" -#~ msgid "" -#~ "Split Frames: SAVE operation FAILED.\n" -#~ "desired save plugin can't handle type\n" -#~ "or desired save plugin not available." -#~ msgstr "" -#~ "En dividir els marcs: S'ha produït un error en l'operació de desar.\n" -#~ "El connector per desar no pot manejar aquest tipus\n" -#~ "o bé no està disponible." +#~ msgid "Edit Gfig object collection" +#~ msgstr "Edita la col·leció d'objectes del Gfig" -#~ msgid "" -#~ "%s\n" -#~ "%s\n" -#~ "(%s_0001.%s)\n" -#~ msgstr "" -#~ "%s\n" -#~ "%s\n" -#~ "(%s_0001.%s)\n" +#~ msgid "_Merge" +#~ msgstr "Fusio_na" -#~ msgid "Make a frame (diskfile) from each Layer" -#~ msgstr "Fes un marc (fitxer de disc) de cada capa" +#~ msgid "Merge Gfig Object collection into the current edit session" +#~ msgstr "Fusiona la col·lecció d'objectes Gfig amb l'actual sessió d'edició" -#~ msgid "frames are named: base_nr.extension" -#~ msgstr "els marcs es diuen: base_nr.extensió" +#~ msgid "Delete currently selected Gfig Object collection" +#~ msgstr "Suprimeix la col·lecció d'objectes Gfig seleccionada actualment" -#~ msgid "extension of resulting frames (is also used to define Fileformat)" +#~ msgid "Select folder and rescan Gfig object collections" #~ msgstr "" -#~ "extensió dels marcs resultants (també es fa servir per definir el format " -#~ "del fitxer)" +#~ "Selecciona el directori i torna a escanejar la col·lecció d'objectes Gfig" -#~ msgid "Inverse Order:" -#~ msgstr "Ordre invers:" - -#~ msgid "Start frame 0001 at Top Layer" -#~ msgstr "Inicia el marc 0001 a la capa superior" +#~ msgid "Paint" +#~ msgstr "Pinta" -#~ msgid "" -#~ "Remove Alpha Channel in resulting Frames. Transparent parts are filled " -#~ "with BG color." -#~ msgstr "" -#~ "Suprimeix el canal alfa en els marcs resultants. Les parts transparents " -#~ "s'omplen amb verd o blau." +#~ msgid "%d unsaved Gfig objects. Continue with exiting?" +#~ msgstr "No s'han desat %d objectes del Gfig. Voleu continuar i sortir?" -#~ msgid "Split Image into Frames" -#~ msgstr "Divideix les imatges en marcs" +#~ msgid "Enter Gfig Object Name" +#~ msgstr "Introduïu el nom de l'objecte Gfig" -#~ msgid "Split Settings" -#~ msgstr "Divideix els paràmetres" +#~ msgid "Gfig Object Name:" +#~ msgstr "Nom de l'objecte Gfig:" -#~ msgid "" -#~ "OPERATION CANCELLED.\n" -#~ "This image is already an AnimFrame.\n" -#~ "Try again on a Duplicate (Image/Duplicate)." -#~ msgstr "" -#~ "L'OPERACIÓ S'HA CANCEL·LAT.\n" -#~ "Aquesta imatge ja és un marc animat.\n" -#~ "Torneu-ho a intentar en un duplicat (imatge/duplicat)." +#~ msgid "Rescan for Gfig Objects" +#~ msgstr "Torna a escanejar els objectes Gfig" -#~ msgid "Scale" -#~ msgstr "Redueix" +#~ msgid "Add Gfig Path" +#~ msgstr "Afegeix un camí Gfig" -#~ msgid "New width:" -#~ msgstr "Nova amplada:" +#~ msgid "Error in copy layer for onlayers" +#~ msgstr "S'ha produït un error en copiar la capa per a les capes superiors" -#~ msgid "New height:" -#~ msgstr "Nova alçada:" +#~ msgid "Gfig Layer %d" +#~ msgstr "Capa Gfig %d" -#~ msgid "Char: %c, %d, 0x%02x" -#~ msgstr "Car.: %c, %d, 0x%02x" +#~ msgid "About Gfig" +#~ msgstr "Quant al Gfig" -#~ msgid "Insert the selected char at the cursor position" -#~ msgstr "Insereix el caràcter seleccionat a la posició del cursor" +#~ msgid "Gfig - GIMP plug-in" +#~ msgstr "Gfig - connector per al GIMP" -#~ msgid "points" -#~ msgstr "punts" +#~ msgid "Release 2.0" +#~ msgstr "Versió 2.0" -#, fuzzy -#~ msgid "/Filters/Render/Dynamic Text..." -#~ msgstr "/Filtres/Genera/Text dinàmic..." +#~ msgid "New Gfig Object" +#~ msgstr "Nou objecte Gfig" -#~ msgid "" -#~ " Current layer isn't a GDynText layer or it has no alpha channel. Forcing " -#~ "new layer creation." -#~ msgstr "" -#~ " La capa actual no és una capa de text GDyn o no té canal alfa. S'està " -#~ "forçant la creació d'una nova capa." +#~ msgid "Delete Gfig Drawing" +#~ msgstr "Suprimeix el dibuix Gfig" -#~ msgid "GDynText Layer" -#~ msgstr "Capa de text GDyn" +#~ msgid "%s copy" +#~ msgstr "%s còpia" -#~ msgid "GIMP Dynamic Text" -#~ msgstr "Text Dinàmic GIMP" +#~ msgid "Bezier Settings" +#~ msgstr "Paràmetres Bezier" -#~ msgid "GDynText: Messages Window" -#~ msgstr "Text GDyn: finestra de missatges" +#~ msgid "Draw Name:" +#~ msgstr "Nom del dibuix:" -#~ msgid "GDynText: About ..." -#~ msgstr "Text GDyn: Quant a..." +#~ msgid "(none)" +#~ msgstr "(cap)" -#~ msgid "bottom-left" -#~ msgstr "a baix a l'esquerra" +#~ msgid "" +#~ msgstr "" -#~ msgid "bottom-center" -#~ msgstr "a baix al mig" +#~ msgid "/Filters/Light Effects/_GFlare..." +#~ msgstr "/Filtres/Efectes de llum/_GFlare..." -#~ msgid "bottom-right" -#~ msgstr "a baix a la dreta" +#~ msgid "none" +#~ msgstr "cap" -#~ msgid "middle-left" -#~ msgstr "al mig a l'esquerra" +#~ msgid "Not found \"%s\": used \"%s\" instead" +#~ msgstr "No s'ha trobat \"%s\": s'ha utilitzat \"%s\" en el seu lloc" -#~ msgid "middle-right" -#~ msgstr "al mig a la dreta" +#~ msgid "Brush Preview:" +#~ msgstr "Previsualització del pinzell:" -#~ msgid "top-left" -#~ msgstr "a dalt a l'esquerra" +#~ msgid "/Filters/Artistic/_GIMPressionist..." +#~ msgstr "/Filtres/Artístic/_GIMPressionist..." -#~ msgid "top-center" -#~ msgstr "a dalt al mig" +#~ msgid "Paper Preview:" +#~ msgstr "Previsualització del paper:" -#~ msgid "top-right" -#~ msgstr "a dalt a la dreta" +#~ msgid "(Desc)" +#~ msgstr "(Desc)" -#~ msgid "GDynText" -#~ msgstr "Text GDyn" +#~ msgid "" +#~ "\n" +#~ "If you come up with some nice Presets,\n" +#~ "(or Brushes and Papers for that matter)\n" +#~ "feel free to send them to me \n" +#~ "for inclusion into the next release!\n" +#~ msgstr "" +#~ "\n" +#~ "Si teniu alguna predefinició interessant,\n" +#~ "(o pinzells i papers, segons el cas)\n" +#~ "envieu-los a \n" +#~ "i s'inclouran a la propera actualització.\n" -#~ msgid "Toggle creation of a new layer" -#~ msgstr "Commuta la creació d'una nova capa" +#~ msgid "Could not locate help document" +#~ msgstr "No s'ha pogut localitzar el document d'ajuda" -#~ msgid "Load text from file" -#~ msgstr "Carrega el text del fitxer" +#~ msgid "" +#~ "The requested document could not be found in your GIMP help path as shown " +#~ "above. This means that the topic has not yet been written or your " +#~ "installation is not complete. Ensure that your installation is complete " +#~ "before reporting this error as a bug." +#~ msgstr "" +#~ "No s'ha pogut trobar el document demanat en el vostre camí d'ajuda del " +#~ "GIMP que es mostra a sobre. Això significa que no s'ha escrit res sobre " +#~ "el tema o la vostra instal·lació no està completa. Assegureu-vos que la " +#~ "vostra instal·lació és correcte abans d'informar-ne com a error." -#~ msgid "GDynText: Select Color" -#~ msgstr "Text del GDyn: seleccioneu el color" +#~ msgid "/Filters/Render/Nature/Ifs_Compose..." +#~ msgstr "/Filtres/Composa/Natura/Ifs_Compose..." -#~ msgid "Text color" -#~ msgstr "Color del text" +#~ msgid "IfsCompose: Target" +#~ msgstr "IfsCompose: objectiu" -#~ msgid "Toggle anti-aliased text" -#~ msgstr "Commuta el text de la contrarèplica" +#~ msgid "IfsCompose: Red" +#~ msgstr "IfsCompose: vermell" -#~ msgid "Left aligned text" -#~ msgstr "Text alineat a l'esquerra" +#~ msgid "IfsCompose: Green" +#~ msgstr "IfsCompose: verd" -#~ msgid "Centered text" -#~ msgstr "Text centrat" +#~ msgid "IfsCompose: Blue" +#~ msgstr "IfsCompose: blau" -#~ msgid "Right aligned text" -#~ msgstr "Text alineat a la dreta" +#~ msgid "IfsCompose: Black" +#~ msgstr "IfsCompose: negre" -#~ msgid "Toggle text font preview" -#~ msgstr "Commuta el text i previsualitza la font" +#~ msgid "IfsCompose" +#~ msgstr "IfsCompose" -#~ msgid "Toggle CharMap window" -#~ msgstr "Commuta la finestra CharMap" +#~ msgid "/Move" +#~ msgstr "/Mou" -#~ msgid "" -#~ "Layer\n" -#~ "Alignment" -#~ msgstr "" -#~ "Alineació\n" -#~ "de les capes" +#~ msgid "/Rotate\\/Scale" +#~ msgstr "/Gira\\/Escala" -#~ msgid "Set layer alignment" -#~ msgstr "Estableix l'alineació de les capes" +#~ msgid "/Stretch" +#~ msgstr "/Estén" -#~ msgid "" -#~ "Line\n" -#~ "Spacing" -#~ msgstr "" -#~ "Espai\n" -#~ "entre línies" +#~ msgid "/New" +#~ msgstr "/Nou" -#~ msgid "Set text rotation (degrees)" -#~ msgstr "Estableix la rotació del text (graus)" +#~ msgid "/Delete" +#~ msgstr "/Suprimeix" -#~ msgid "Editable text sample" -#~ msgstr "Mostra del text editable" +#~ msgid "/Undo" +#~ msgstr "/Desfés" -#~ msgid "Clear preview" -#~ msgstr "Esborra la visualització prèvia" +#~ msgid "/Redo" +#~ msgstr "/Torna a fer" -#~ msgid "Preview default text sample" -#~ msgstr "Visualització prèvia per defecte de la mostra del text" +#~ msgid "/Select All" +#~ msgstr "/Selecciona tot" -#~ msgid "" -#~ "Holding the Shift key while pressing this button will force GDynText in " -#~ "changing the layer name as done in GIMP 1.0." -#~ msgstr "" -#~ "Si manteniu premuda la tecla Maj mentre premeu aquest botó, fareu que el " -#~ "text de GDyn vagi canviant de nom de capa, com passava en el GIMP 1.0" +#~ msgid "/Recompute Center" +#~ msgstr "/Torna a calcular el centre" -#~ msgid "GDynText: CharMap" -#~ msgstr "Text de GDyn: CharMap" +#~ msgid "IfsCompose Options" +#~ msgstr "Opcions de l'IfsCompose" -#~ msgid "GDynText: Load text" -#~ msgstr "Text de GDyn: carrega el text" +#~ msgid "lpeek.mrijk@consunet.nl" +#~ msgstr "lpeek.mrijk@consunet.nl" -#~ msgid "" -#~ "Warning file \"%s\" is larger than the maximum allowed text length (%d).\n" -#~ msgstr "" -#~ "Avís: el fitxer \"%s\" és més llarg que la longitud màxima permesa (%d).\n" +#~ msgid "/Filters/Web/_ImageMap..." +#~ msgstr "/Filtres/Web/Mapa d'_imatge..." -#~ msgid "Error opening \"%s\"!\n" -#~ msgstr "S'ha produït un error en obrir \"%s\"!\n" +#~ msgid "Select Contiguous Region" +#~ msgstr "Selecciona la regió següent" #~ msgid "" -#~ " WARNING: GDynText is too old! A newer version is required to handle this " -#~ "layer. Get it from %s" +#~ "Generates a maze using either the depth-first search method or Prim's " +#~ "algorithm. Can make tileable mazes too. See %s for more help." #~ msgstr "" -#~ " AVÍS: el text del GDyn és massa vell! Cal una versió més nova per " -#~ "manejar aquesta capa. La podeu obtenir a %s" +#~ "Genera un laberint fent servir el mètode de primer en profunditat o " +#~ "l'algorisme de Prim. També es poden fer laberints amb mosàics. Per a més " +#~ "ajuda, veieu %s." -#~ msgid " Upgrading old GDynText layer to %s." -#~ msgstr " S'està actualitzant la capa vella del text GDyn a %s." +#~ msgid "Draws a maze." +#~ msgstr "Dibuixa un laberint." -#~ msgid "Dismiss" -#~ msgstr "Corregeix" +#~ msgid "/Filters/Render/Pattern/_Maze..." +#~ msgstr "/Filtres/Composa/Patró/La_berint..." -#~ msgid "" -#~ "Directory not found

%s

Couldn't change to directory

%s

while trying to access

%s

This " -#~ "either means that the help for this topic has not been written yet or " -#~ "that something is wrong with your installation. Please check carefully " -#~ "before you report this as a bug." -#~ msgstr "" -#~ "No s'ha trobat el directori

%s

No s'ha pogut canviar al directori%s

mentre s'intentava accedir-hi

%s

Això significa que o l'ajuda d'aquest apartat no s'ha " -#~ "escrit encara o que hi ha quelcom malament dins la vostre instal·lació. " -#~ "Si us plau, verifiqueu amb cura abans d'enviar això com un error de " -#~ "programació." +#~ msgid "Selection is %dx%d" +#~ msgstr "La selecció és %dx%d" -#~ msgid "" -#~ "GIMP Help Browser Error.\n" -#~ "\n" -#~ "Couldn't find my root html directory.\n" -#~ "(%s)" -#~ msgstr "" -#~ "Errors del navegador de l'ajuda del GIMP.\n" -#~ "\n" -#~ "No s'ha pogut trobar l'arrel del directori html del GIMP.\n" -#~ "(%s)" +# open URL for help +#~ msgid "Opening %s" +#~ msgstr "S'està obrint %s" -#~ msgid "Back" -#~ msgstr "Torna endarrere" +#~ msgid "See %s" +#~ msgstr "Veieu %s" -#~ msgid "Forward" -#~ msgstr "Vés endavant" +#~ msgid "/Filters/Distorts/_Pagecurl..." +#~ msgstr "/Filtres/Distorsions/Rínxol de _pàgina..." #~ msgid "" -#~ "Imagemap plug-in 1.3\n" -#~ "\n" -#~ "Copyright(c) 1999 by Maurits Rijk\n" -#~ "lpeek.mrijk@consunet.nl \n" -#~ "\n" -#~ " Released under the GNU General Public License " +#~ "Use Current Gradient\n" +#~ "instead of FG/BG-Color" #~ msgstr "" -#~ "Imagemap plug-in 1.3\n" -#~ "\n" -#~ "Copyright(c) 1999 by Maurits Rijk\n" -#~ "lpeek.mrijk@consunet.nl \n" -#~ "\n" -#~ " Versió sota la llicència pública general GNU " - -#~ msgid "Comment about this area: (optional)" -#~ msgstr "Comentari quant a aquesta àrea: (opcional)" +#~ "Utilitza el degradat actual\n" +#~ "en comptes del color de primer pla/fons" -#~ msgid "Preferences..." -#~ msgstr "Preferències..." +#~ msgid "Curl Opacity" +#~ msgstr "Opacitat del rínxol" -#~ msgid "Quit" -#~ msgstr "Sortir" +#~ msgid "/File/_Print..." +#~ msgstr "/Fitxer/Im_primeix..." -#~ msgid "Zoom In" -#~ msgstr "Augmenta el zoom" +#~ msgid "/Filters/Colors/Map/Colormap _Rotation..." +#~ msgstr "/Filtres/Colors/Mapa/_Rotació del mapa de colors..." -#~ msgid "Zoom Out" -#~ msgstr "Disminueix el zoom" +# * Gray: What is gray? * +#~ msgid "What is Gray?" +#~ msgstr "Què és gris?" -#~ msgid "In" -#~ msgstr "Entrada" +#~ msgid "Main" +#~ msgstr "Principal" -#~ msgid "Out" -#~ msgstr "Sortida" +#~ msgid "Misc" +#~ msgstr "Miscel·lània" -#~ msgid "/Filters/Render/Pattern/Mosaic..." -#~ msgstr "/Filtres/Executa/Patró/Mosaic..." +#~ msgid "RLE Compression" +#~ msgstr "Compressió RLE" -#~ msgid "Center Image" -#~ msgstr "Centra la imatge" +#~ msgid "/File/Acquire/_TWAIN..." +#~ msgstr "/Fitxer/Adquireix/_TWAIN..." -#~ msgid "Scaling" -#~ msgstr "Escalatge" +#~ msgid "Preview (in image window, will modify image's undo history!)" +#~ msgstr "" +#~ "Previsualització (en la finestra d'imatge, modificarà l'historial de " +#~ "desfer de la imatge)" -#~ msgid "Adjust Color" -#~ msgstr "Ajust de color" +#~ msgid "write error occured" +#~ msgstr "S'ha produït un error en escriure" -#~ msgid "B&W" -#~ msgstr "B&N" +#~ msgid "M_inimum Height:" +#~ msgstr "Alçada mín_ima:" -#~ msgid "/File/Print (Gtk)..." -#~ msgstr "/Fitxer/Impresora (gtk)..." +#~ msgid "Minimum height for bumps" +#~ msgstr "Alçada mínima per bumps" -#~ msgid "/File/Print (Gimp)..." -#~ msgstr "/Fitxer/Impressora (Gimp)..." +#~ msgid "Auto_stretch to Fit Value Range" +#~ msgstr "E_stirament automàtic per ajustar el rang de valor" -#~ msgid "Sinusodial" -#~ msgstr "Sinusoïdal" +#~ msgid "Fit into value range" +#~ msgstr "Ajusta al rang de valors" diff -uraN gimp-2.2.0/po-plug-ins/ChangeLog gimp-2.2.1/po-plug-ins/ChangeLog --- gimp-2.2.0/po-plug-ins/ChangeLog 2004-12-17 10:26:17.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/ChangeLog 2004-12-27 20:42:17.000000000 +0100 @@ -1,3 +1,19 @@ +2004-12-27 Miloslav Trmac + + * cs.po: Updated Czech translation. + +2004-12-21 Jordi Mallach + + * ca.po: Forwardport from gimp-2-0. + +2004-12-20 Jarkko Ranta + + * fi.po: Updated Finnish translation by Mikko Paananen. + +2004-12-19 Laszlo Dvornik + + * hu.po: Hungarian translation updated by Arpad Biro. + 2004-12-17 Artur Flinta * pl.po: Updated Polish translation by GNOME PL Team. diff -uraN gimp-2.2.0/po-plug-ins/cs.gmo gimp-2.2.1/po-plug-ins/cs.gmo --- gimp-2.2.0/po-plug-ins/cs.gmo 2004-12-19 03:34:21.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/cs.gmo 2004-12-28 16:59:05.000000000 +0100 @@ -1,356 +1,363 @@ -- -Q xPy -  *8@1P" */"Z} "#&$J -o'zVQKT jt{  -   -$/ DQWi pz ))@j L0 L:m<C$Z''.}N&"3D%S -y +" NX%a < Rd s 21-_ er$A= O ]gms  - - .8K]tx -   -( -3 -> -I Tbs3x  ,2BSc t    %- 1=DIRbrz  " 1= -N Yg o{ "??X$r2#/'7$_&J&3'Z - - -*&(Dm uhh)y'#44$(Y)'l*A5l5,*04? t $4; CP'3&$Z7U  -.9?Qkry   -!*2 8FWfx - - -*@5 v -2AJ\ry    $9J+a4  +%QqA  ) 67n -& -(+ !9[t& # #1A#s&/>'fz8 (:<L|'.?N -9      1  ? K c y        -   - - -, -H +0 +Q P# :D% '4D Zhp1"! >*_" "6#V$z +'VQ){   +  &.7? +T_ t  )@PY)p L%@` |:< CF$W'6^}~&"#Fct% + )BJ+R ~% <9RA  2*1] $A+m    + +/F ^h{ + / ? K +X +c +n +y 3 -49J\br    !', ; GU] amty *.37;AIR am +~   ""?;{$2#/C's$&J$&o' + + + #*7b( hhL)'#4+4`()'l*}55,*Al4{  $!94Bw '*R3b$7UIP +ju{  - +@K]fn t +1 FT +f@q  +&9OXn}   #0 D$Pu+43E NX+aA   *9)I6s +& +( +I!u& # 8#Y1}#&/3>c8 =O Vdv<|'Bj? +9   ,  = I Z  m  {           -Q - \ +- + 8 +F +W +h +  -j -u - - - - - - - - - - - - -   $ 5 E U  [ e z         -  1 yG  $    0 F  M Y  h  v  !     &= F R -^iz       &; CPen4 - -    - !-6 H V2b0=1=6/t  + %(8aB + FRg   -%0 AM_ q: )-/W#2+ -(7F N"[~'4Z '-Hf'"B9aN).C-^' # !2%;2a # $ +18jrw16'9Mm  !(?_p - )"%-MRaqy6 -    !  . < U g p   - "      -   -!!)!/!6!;!D! S!`! h! u!!!!!! e" s" " "g"" # #+#<# -U#`#(v#)## ###$ $$ -.$ 9$C$K$[$o$$$$$ -$ $$$$ $$%'%0%B% R%`%|% %%%% % %% %%&&)&0&5&:& K& W&e&v& && & -&&& ' ''' -' ( (( ( &(0(-A(o(w(((2(/(B%)=h) -) )) )) )** -#*.* ?* L*V* Z* g*t*{*$*3* *+ +'+6+F+W+ \+i+ l+x++++++++ -+ ,,$,4,=, F,nS,,YJ-v-.\.C.@/ I/U/\/b/z// -/ / ///"/ -00.0 >0J0_0x0 0K001 -11#1+1@1 O1 Y1 g1t11 1161 11 1 2 2(@2*i2 22 2]2 !3-313A3 -[3 f3s333 333333 3 44"4'4 04=4F4N4 U4_4 -g4 -r4/}4`45 55 #5 /5G95B5N5I6]6c6i6q6y6666666%6$6%7$;7%`7$7777777888%8 ,8 68@8G8 W8e888 -888 88 9 959 E9S9l999 99 -9 999: - : +: -7: B:N:e:|: : :: ::::: :: ;<;%X; ~; -;;;'; ;; <!<0< @< N<\< o<}<<<< <<< <<= -= %=2=J=b= -j= u= == == = = === ==> ->#>6>0M> ~> >>> -> >>> ?+? G?U?k?????? ? ?? ?@!@=@O@ V@b@u@ z@ @@ @@@@@@@ A(ACASAbA sA }AAAA A -AAAA A A AIB MBWBfBwBB -BB:B0B -C"C.(CWC\CcCkCzCC CCCC CD%D*7DbDDDD DDD DE EE $E1E BELE UEbEqEEEEE EE%F,F4F -DFOF VF`F iFsFFF FFFFF FF G G%G5G#SGwGGG7GGH HH -H9H PH]HfH yHH HHH H HHH HHHI I "I ,I26IiIIIIII J J -JJ6J=JNJWJ _J -lJwJJ$JJ JJ J JKK -K &K 4K -AKLKjKKKK -K KKKK#KL !L -+L6LFL NLXL gLuLL LL -L'L LL -LM -M M M %M/MOMlM|MMM MMM MMMM M M MMP8*PcP lPxP+PP PPPPP -QQ:5Q'pQ QQQQQQ R R#R9RKR ^R jRtRR RRRR RR$R S S -S(S 1S >SLS -`SkSpSSSSSS -SSSSSSTT*T :TGT WT eT qTTTTT T -TTTTTUU 1U;U%@UfUwUU UUUUUUUUVVV&V-VnInQn`nonnn -nn n nnn o o4oFo LoXogo oo/o-o/p 7p ApKpcpsp pp -ppppp ppqqD:q'q@q qqq r r'rBrIrYrjrqr rrr r rrrrr r s s&s7s -z<Oz7zz{\|!x|||.|)}%1}QW})}&}}~/~3~&'G0f4p~o=%,,R!MoJт ) -0;J O] mz-˃҃ۃ  -   !+3< @MS \f ku  ń ӄ݄ 9 Wx oޅ{Nʆ  &%-Sb/j  ه&"AH -Xcr  ʈڈFY,kQ:6K]q* Պ &6K\cr NjЋ -ߋ     R+P~ό׌!%8OWjAp$=׎.-D-r - ȏҏ ؏Un=Րې,!(-58Gʑ . =K N&Z%%͒Ӓْ[ FSX]lou{SC:5FpƔɔٔ" @LTYh x   ͕  .>N e o{ -   ŖΖՖ -ܖ  $1:? H Ta h v  -ȗ ۗ   - )7@P(`  Ęݘ  - - ! '1CLR am -u  -Ǚҙ -'7F \ fryϚؚ    - $2EM_h   ǛΛ՛ݛ  !)28=EK -f q  ÜȜל( F S`f w  - ŝ -ѝܝ)#MSXarxΞ֞ݞ !0?^ -mx     ş џ ݟ   *: -BMa u -  Ƞՠ - %/ -F Q^m |  -ϡڡ  - ! -*5>Rbw   Ȣ ۢ   (5 -=H Q ^ -lw } -  -ȣӣ  -$ 8 DQgvǤ֤ % / LV h t   ϥ ֥  &5>NV -_ -ju 8 Ӧ -ߦ  - $-5< -KV \6i  ħѧ + AOn-  ƨԨ  ) -:EKTZ c p }    ©ɩѩש  -! ,6?R V` -q | Ъ-!&5ET d(q ī"ȫ - # 7 -A L -Va i s ǬѬ լ  -):>y - -=0/F]y{}  ͳֳ5%4Zp#,ʹ#%&Dkq -%˵4@& g(uV`V_v Ƿַܷ $ , -6!A cq -   -ø%7La|6% M$rͺE,F=_<'ڻ)ͽ&%˾#<Kd) )*2 ] j/v  P>OE  -;;*w0/!F4h  -(39BJ Q!]   %FUdks   - - -Fb q#2BVj +18 -= HTe{!!(JNSW[air     '*RAq (:='xB4'-@"n_('8`gx - -, **U ]g|oo"q11!/"Q$tb!22Q%  -A+Q}$  &;%*e& + LV^#r  * -=H Zdl r &<Rbu; )Ga ~      - & 2<O c -p{& 6Hhp  &>'f -ny-1*'B j#w --,% /*I3t"%!$88"q&5N'vE $ >H[sE~2M&C`^r$ &&9`g v  6 -B M [gv   -   - ( 2?Re lx " "/R#lR,cF 0C Vd#u +4 -G R`t  .>FVjs7     (4 IW0f.>/@5/v&.%A!g G *Ifn   /?E Mn!~$<'du -:/)5?_5%%%-!S.uA@ $5##C g""*$/>n)(JX',5(3 0@ q,.4@u})"&B1 t~.#>2,_&t.F\y~  %&5\(c  -) 6 MWq   /, \f{ }      -("'KsC T^ m}z  -)4'K s*,! &6<Rk z .EM Vcw 9O Vd u ,IZr       *2]f(7Q ;k        - + + + + + + + + + + + + + +    + 7  G Q X ` q            . F Y m y  $ .  6 B 0Q       !   7Sby   +     & >K Tbw 4 + +  # 4@ +R ]ir  20=1@=r/  + @a(tB @Lg  % 7DJO +al } :- 4@T)i/#2+Fds "'4 '"Ji '#K^~9N)&.P-' #5HN]n%w2 # !$B g1t16'Mu  -BX]d{ + )8">ai6 +  <  O  ]  j x      + "  !!! ++! 6! +D!O!e!k!r!w!! !! ! !!!!!" " " " "g"9#H# Z#g#x# +##(#)#$ $,$2$D$ K$Y$ +j$ u$$$$$$$$$ +$ %%!%'% ,%8%M%c%l%~% %%% %%%& +& &!& 0&:&@&R&e&l&q&v& & &&& && & +&'' ( (("( +4( ?( K(W(\( b(l(-}(((((2(/1)Ba)=) +) )) *!* 3*A*P* +_*j* {* ** * ***$*3* 0+Q+ U+c+r+++ ++ +++++,,,,2, +8, C,P,`,p,y, ,n,,Y-v-W.\.C8/|/ ////// +/ / // 0"#0 F0R0j0 z0000 0K0)1=1F1K1_1g1|1 1 1 111 1161 2#2 ;2H2 [2(|2*2 22 2]2 ]3i3m3}3 +3 3333 33344&4 74E4Z4^4c4 l4y444 44 +4 +4/4`4J5 O5Y5 _5 k5Gu5B5N6IO666666666666%7$,7%Q7$w7%7$7777 88.8A8S8X8a8 h8 r8|88 8888 +88 9 '959G9\9q9 99999 99 +9 ::*:J: +\: g: +s: ~:::: : :: :;; ;(; 1;;; J;<W;%; ; +;;;'; <5<E<]<l< |< << <<<<< <<= =&=>= +V= a=n=== += = == == = > >>!> &>0>?> +T>_>r>0> > >>> +? ??1? I?+W? ???????? @ @"@ 8@B@]@y@@ @@@ @ @@ @@@ +AA"A1AIAdAAAA A AAAA A +AABB B (B 2BI?B BBBBB +BB:B0"C +SC^C.dCCCCCCC CC DD /DPDaD*sDDDDD EE'E 8EBE KEXE `EmE ~EE EEEEE +FF 'F3F%BFhFpF +FF FF FFFF FFGG$G )G3G IG UGaGqG#GGGG7G%H=H EHRH iHuH HHH HH HHH H HI I I )I3I7IGI ^I hI rI2|IIIIIJ-J IJSJ WJ +aJlJJJJJ J +JJJ$JK K'K iQi/hi*iCij%j+Aj!mjj'jjj jkk k*k 9kGkPk gksk {kkkkkk k!k#kl"l2lPlaltl +ll l +ll lllmm +2m=m +DmOmkm rm~mmmm +mm mmm'mnnYnun{n +nnnnnnn +oo &o 0o=oCo[opooo ooo oo/o-)p/Wp p pppp pp +ppq"q+q 3q@qWqoqDq'q@q 8rBrIrYr mrwrrrrrr rrr r s ss&s7s Ms [s hsvss +s7ss sZs?tPtWt ]t +kt vt t tt ttt(ttu%u ,u +9uDuTudumu uu u +uu u uuu uvv+v3vFv^vgvpvRv&vwwZ5wSwww5x+PxF|xx0xMyEbyPyKyEz>`z<z7z{||!|| }.(})W}%}Q})}&#~J~g~/~3&Pw044pN~=>%|,ρ!Jւ! :F)V +  ʃ-܃ +"+4 FPS +\ g q{   ń   #- >JOn ȅ o.{05D IUpv%}/   )&Bir +ˆ ш ݈*BFb,Q:K*ӊ  %@Y`fv‹ԋ   +/ : DN T b oR{PΌ'09!?aujUA$='.e-- +  " (2U7n %+4,Dqx}8Б3 8FK`o~  &%ђ%#)[: œ˓ГՓܓSCA:F)@EMir  ȕ ҕ ܕ  19 BNV _m~  ˖ +ݖ   % +,7=D JXk t    Ɨ З +ݗ  + 8BY +_j y(٘   -6 >K +Z eq w  +řЙ  +"2;M +S^gw  šɚКߚ +(= OY _ +i t՛ޛ   %-3 9EN T`qy +  Ϝۜ  '05EJQe(m   ǝӝ ۝ +  +!,DW)sžȞ؞ &-3B Q_dkq +ȟџ      ! -: CM d nz + Š +Ѡܠ  %7= +EP` u +  ̡ء  +* ; +H S`q +zǢТ ٢   + 8 BLQbg x +   +ǣ ͣ +٣  +#8K R +`kt  Ƥפߤ& BP%Y   ĥ Хڥ   &2 HR bnv + +Ŧצ 8 # +/: N Z ht} + 6   !2: AOa{ -ר  $8@ S_ oy +   ͩ ש   !'9? V` +q |  + ̪֪ߪ  + 17-=kqv ( ";DU Z gs  +  +  ìЬ ! %3 BP +_jy:ɭۭ + +=0NɲҲ˳ͳܳ  &55k%۴#,#J%n& -%4A@v (ŶV`EƷ ַ&,@PW` ht | +! ָ +޸   +0%Io̹6%3YMtºպE6|=<'*R)2&־%AW#hѿ)1Qpy*  /  "/5P=O  ;Mh };* 0 Qh!4*29L R` +x ! %9O T u   +  + +"->SeFk $7LTcs  0@HO ^l{ + 8!V!x   " < J Xb +ju'A .(Ox:'B4>'s-"_ +(j' + +),:g* oo\"1&1X!"$b!W2y2%% 7X g+$  '3&;#%_e  #  '4 KYq +  +DTd; /=[mt   -FL S _ l +v    +& !.6CHz   (&Gn> +-%1S' # +- ,7%d*3"%&!L$n8"&55LNE ^ E~)2&CF`X$CVh& 1E\ p  +     + $2 BN] +oz    ."F i"# ,F) pz #+E `m +    "0AZ`t7 %. 7AG Xbt{  0.>!/`@/)2&El%!  $G1 y   <U gt ! +)B$]< +:%/`)?5%0Viy%!.A $#5H~# ""*)T$t/)(J7X,5(>3g0 ,39I\.l4)"+&NuB .#$>H2&/?RZq!: P\ s&( ; +KV)g  5 ERfx/     )/ 6BKS d +r(}'  }Sf +' *,!K mz   +16GVk  +$:W mw  ' .8JZo   ! 5BK T ^hz*( 7< Qt ;  + + + +1 +A +X +g +z  -/ -: + +  -K -V - f -s - - - -# -- - . 6 G W l     $     " 4 :  -S ^ m     y G D q!pU:Z  )<"X{! $  8UJ   1=M \f:y'/,0\ `&*: Q _l #;? -D O\ eq x - - 'W' .: B P)^,.1 ' 1 ; E O Ycv+,+,+J,v  (/ -A -L W -ep $"<Vk% 8F N Zg -  -    $:P f -r }  U%  2 -<G_$g#$*?Tf{    - *BZj}# -       ) =  -Y d y B     -! -"! -!:!R!j!+!!!!! -"" &" 0":" J"X" v" "!""""" ##$#4#P#d#v#########$ ,$:$O$ X$d$ k$y$$$$$ $$$$Y%]%l%~%%%%"%X%;P&&&:&& -& &&' '''D'U'e'!x'' '2' ' (((@( _(m(u((( -(((( ( ((( ) ,) M)n)) -))&)))) -) -* * !*$.*S*b*~**** *****+ +;+Y+ w++3+++ -++ ,, -0, ;,E, -Y,d,k,{,, , -, -,, ,,,, - - !-4.- c----#- - .(. -,.!7.Y.a.{. .....3. $/./@/X/ g/s//// / //#/00 .0 80E0X0a0t000 0 -000 001 1 -61 A1O1 W1#d1 11111 111$12 62W2 h2u2}22 -2 22 -22 2 2 2V2F5:]55 -5 5(55556 -*656H6d64626677&7";7^7o7 7777 7 77 8 *848=8R8V8j8&o88 8 8 -8888 9 -99 ,9 :9 -D9O9f9 o9|9 9999 999:.:I:g:y:: ::'::; ; ;*;<;U;j;; -;#;;;; - < <"<8< -P<[<m<<<< < << <= -=#=*B=m==1=== -==>5>"I>l>>>> >>>>?)?=?U?q??!???)? -@#@ =@I@ e@:r@5@@ @ -A#A +A 9AFAOA XAfAoA -wA AAA A A A AA AAAB.B GBUB -]BhBqBB6BBBCC &C 4C>C OC[C bC oCyC C CCCCCCCD)D>DFDNDUDdDxDDDD+D D#DE"!EDE VE dErEEEEEE,F 0F>F#SFwFFFFFFF GG)G9GIG\GsGGGGGGGGG,H;HOHiHHH HHH4HI5IGIPIcI lIyI III IIII J.J+>J jJtJJJJ JJJJJ K))K)SK}KKKK KKL<LSL\LpL xL LLLLLL%L%M>M QM _M lM yM MMMM(M N)NINfNN3N!NRNqFO|O5PTP ]PgP*oPMPP!P$QCQbQ%xQ(Q7Q:Q:RVReR xRR$R4R/RK!SmSS/S-ST,"T -OT,ZTTTTTTTTT U U U.U6UWRW -ZWeW W WWWWW WW WWX+$X PX -ZX{eXXXX YY&Y6YQYlYYY -YYYYYZ Z"Z 2Z>ZMZgZwZGZ(Z,[4[=[F[b[t[[[[[[ [ -[ \\(\H\?a\\<\\]]].]6]T][]l]]]]]]]] ] ]^^.^D^Y^n^^^<^ ^^[^K_Z_a_ f_ t__ _ _____7_,1`)^`` ` ``````a a *a8a Ma[ajaoawaaaaaaaa#ab b/obb%bXbc-ccc'c'cId_d,{d:d?d1#e4Uee@e!e$f)fgg gh.h%Lh%rh"hYhi 5iViti,j.=j!ljjj.j.jk7koSkkA[l l(ll(mm]mMnln -tn%nnn nnnn o?%oeooooooooooopppp .p 8pFpUp ^pjpp pppp"p q q#q4q#Nqrq qqqqq$qvryrrs sAsJsZsys s)ss s.st t t$1tVt0st -t"t tt tuu )u6uEucu~u$u.uCu-v5Jvv\v?v7wTw nww3wwwx!x:x?xCxVxlx xxxxxxxxxy yy "y /y9y ?y LyYyFhyJyyzzzz3zJz`z -zz,{P{/|,1|:^|6|:| }} 3}?}G} L}V}[]}h}"~5~N~ U~_~+s~ ~~~~B~ '>Yu| -  .*>.ib - +05NQW]bgo xV<ف2BIՂ % A Ta gq  - ăу ؃  !+: OpƄׄ  ! * 4>G P\t ȅڅ&6?P cqx    džӆ+/ D -NYaj  -    -̇ ҇߇ ! *6Vf~ -Ȉވ! 1 -R]ox ։ - &2IZmt  Ŋ   $ .8 -@K ` n x  NjЋً    /;Qbk } - -ˌ0֌ &->M V bn  #׍1  -;F KWmuŎ ގ /FOW]q  Ə - - AN]f  ѐ "; BObk~  ӑܑ "/ -HS fpx - Ē -Ӓޒ! &3<S i w  ߓ   1 6D T ` -mx   ̔ ؔ  - %2Mi r  -ݕ  5K_h%w !Ö   ( 6 @M\ m w -ʗ   - ,6 K X b oy F  0EV -^i~  4ڙ    2@ HVe/8 BRXi Λ כ -!* :HPb r -|  ˜ۜ  -  &*: J -T _lpy} ֝ .#+ 2@ O] l)x - ɞ՞,ݞ -(- >J b -l w - -  &ןޟ   !3DV]o?ʠ۠   ~ `T= -g<!r3 - SF <'> c  -;!O UF}7P,P T x; N#+ [x= ? $ a -y5 dtes@I 9~nGC"d   J7ml  -?4=.9}r  $ k + %iOK#t2d r -zTz$I2< 4  ^ 7 # t ;&khE kBd$ P  )&GsAU?F( 6"Z@:/:eQ5 & -,~} (HZ |pKU5'Y --ik e#zR/[H9jBv-g4q0ONel{L -3(misChq= .&y /)8b)<8 -S@  i_NX K+ -.Qs}EpMpng[G_%4/Au J Ft Y\T _4G ~koz  kX- -\6 ]!3* ' ;|&, -wka, --9 I_ o< -! -qs X $4 h7 bJHW- - ->^V  zP%<?11g5I$' - -"  q b 9w=E M  V  ~ c - >8 2\M Mh_8CW/iE]  ] : -{M  x(H ]\ B4L@ |` -VDv % m -~} -# -0wZ6?E"2r`sY y*"b( d,d "Wv[nl u7  F3  -)CD], YPx q+>=5 -+GN Cd y)%+@/n - - O$ vs: X*\dw S 3rcJD,M6[Eslr<oLf^#U~ s  ,  y19 G 8 BFcN eUE`   QE.  9pg % -h |LLn (Z  -"B ;6 -7a1 N - -]) m Ghp2  >2 W ,U` {n* 5  o % -'[ -d8) -f|b -oVN\  f2+2+Or:6e C  ecb D:01F J OY0I<H %SA_ B3Qb l+Q P# Xw 6j ]I6WwkVzaZviD |\  GT~ WD  -=  K?: @*l fl R5  l S u}jl'z'  uc   -Kmq HO 0vA=>=<T=M}_   |& ^ @R@uAFp s1H 'nU B`k3r]^K $D& -21 93ch#U ;B. RCV 3 LK7 Xwx;pU] x4:$7tn !iTY Y; Gz|y  ?  ? t {#};>^S/] - w ( HD FpZuXQ^ I yOD{0Hm oYWBwi (> *a`M &v98jQjgT ` &R \@ Je}#bxq /&a I'| `0^ hG - rKVN-c "p%{J [ 0zZ -{RP>t  7Z< m.! - WAyL6dAM% ?ac 0W!V e'  5/ 'jXoY.S -" ~8TOfI@ - { R0 a H-A?g ^ UuPS gJPb nmt Lz* bF( - m8.X q26yu* - -1/94> fin A -% E:o 4jq[h P R()-V yCj~tDci!_1[ rQa,x -xj C.k& -* (fZ Wjf gLe KE_m : f+ #M35+I-v o \ g N !;S  - {vSOR ._ ^- K }*" -  Q ) ZRaA ) 7{ xv8) J!tC` \lXoT NY!q$u  -"[uL | V$ -15QwJf,Bh* p + + + + + + + # -@ n          $ ( = Q f }    +        y(  D7q|pU_:  1DU gu"!  $, Q rU 1=T ky  :*CK'_/0 +`x   $9Uk~ +    + + 'W*   ),.1?qz      +,+L,x+,  +@Yo + +  + $"7L\y&C`    + +  +! , 8EV i s  +   U%g  +$# $)Nav  ) 0=U +m x#  +4 ?  P  ^ j r  w    +   B /! @!M!e! +}! !!!!+!""6"N"e"z" " "" "" " "!" #2#:#O#h#n#########$#+$#O$s$ $$$ $$ $$$$$ % %*%=%L%Y^%%%%%& &"/&XR&;&&&:&6' +:' E'Q'`' u'''''!'' (2( E(f((( ((((( +(()) () 2)>)Q) f) ) ))) +))&*-*4*K* +Z* e* r* |*$******* +++<+O+c+ u+++ ++3+-,E, +K,V, l,v, +, ,, +,,,,, , +- + -- *- 7-D-H-X- o- |- -4- -- +.(.#?. c. .. . +.!.... .//0/I/3e/ //// ////0 ,0 80B0#b000 0 0000001 41 +>1I1]1 e1o111 +1 11 1#1 1 2"21282 ?2I2\2$l22 22 2223 +3 3,3 +43?3 F3 P3 Z3Vd35:5 6 +6 !6(/6X6`6r66 +6666462.7a7u777"777 78828 I8 V8b88 888888&8 9 9 9 +)949H9f9 w9 +99 9 9 +999 99 9::=: P:Z:q::::::; ;';'C;k;z; ; ;;;;;; +<#<=<W<l< +< <<< +<<<<== ,= M=Y= m={= +==*===1>B>K> +h>s>>>">>>?%? 5?A?W?p???????!@%@=@)U@@@ @@ @:@5"AXA lA +AA A AAA AAA +A AB B B 'B 1B ;BEB `BjBqBBB BB +BBBB6CJCiC|CC C CC CC C CC C D D&DFDNDbDrDD)DDDDDDDE EE+%E QE#_EE"EE E EEFF.FMFaF,xF FF#FFFG&G=GMGmG~GGGGGGGG HH,H=HMH]HmH,HHHHH I !I.IDI4XIIIIII II I J)J  +,>P iw z.*.ހ b2 +ÁƁ́ҁׁ܁ V<N2B0J Y%f  Ƀփ ܃  +! 9F MZsz   Ą#,;L `nw    Ņх "+06=Oavņ ؆   + <H]+x  +Ç·և߇  +   * +6A GT fpy ˈۈ + +4=S[lu  +lj҉#4 KUl + ϊ  1: Yf nx   + Ջ     *<EN l y  ƌ׌  +$ +@0K | ˍ ׍  #(Lc1~ + ̎$: S_g nď̏ҏ # /;Uf +w  ÐҐې  +5F_y  đב  "5HQk}  +Ȓ ے + (9 +HS!f ȓ ޓ   '6T k y   ɔ Ք + + 4 A MY o +| •ޕ   + !*3Rr Ԗݖ% *!8Z v   —ї   +&/? _i y +   ͘ ט  F ^ks˙ +әޙ  4O` g s  ˚ښ//_8~Ǜ͛ޛ ,4C LV_ +hs Ŝל  +  @P ` +j u  +ɝ ԝ . K Wd.i  ĞҞ ) +#.6 >J,R  ן +  + +  &%LS c q {ˠҠ??PX \ ht | aU@ +h=$r6 VI ?(A c  +>"R XG}:Q/Q W x> Q#, \{@ @ $! b +|8 ewhsAL <oJD%g   M8po  +?7>/9u  ' n . (lOL&w5g s +}U{%L 3=5 +a 8 & u <' kkH lBg' S  ,'GtDUBG) 7%[C=/;hT8 & +- +HZ }qNX8(Y +0in  f $}U2^I:kCw.j5r1POfl|M +4)njtDit> .' z 2*9c)?9 +TA  l_QX N. +1Tv~EqNqqg\H`&50Dv J Iw \_U `5J ~lo} # nY0 \9 `"6- * >)/ +xnb- .< I`r = +$ +tv [ '7 i:  bKKZ0 +  ?_W  {Q%=B42h6L% +* + # + q e :w@F P  W   f + A; 5_M Nkb9FW2jH`  ` = +~N! y+K ^] E7MC } a YGy ( p  +~ +& +3x]9BH#2ucv\ y-%e+ e-e " Xy\om u:  G4! +*FG]/ ZS{ r.?@5 +,HO Dg z*&,@2q + P' wt= [+]ex T4sdME/P9[F!vos ?pOf_$X v# /  z4< J 8EId"O fVFc  +  RF/  :sh ( +k }OMq )]  +%E >6 +: d4 N # + ^, +p  Jks5  A5 Z -Va" |o- 6  p& +(^ +g;, +ie rV"Q] " g3.5,Ru=7F hfc G;02I K P\1J?I (TBbC!4Qc m.T S& [z 9j `J7XxlY}b[wjE _ #HW XG ! +@  K@;  -o gm R6  o +V xmo*}*  xf   +Nmt IR 1 wB>?><U=Pb   ) a ASCvBIs t4K'oX Cal3s^_N %D) + +32 :6dh&V <E1 UFY 6 OL8 Yz{<qX` y7 +;%7tq $jW\ +Z< Hz| | C B  @ u ~$~>>_V0^ + + z )KE Gs]vYRa L |RE~3Ip r\ZCzl +? +*dcN 'v<;kRmjW c )S!_C Ke~&eyt + 0)!b J* c3a iJ" + uLW Q-f #!p({M "^ 3{] .~SSAu 8[? n1$ + X DzO7dDP& Baf  1Z"Y h(  82 *kYpZ/V % 9TPiLA + ~  S3 d K0A@j ^ VxSV jMPc nnw h L{+# eF+ + n;/[ r39|x- + +40<4A glq B +( H:r 7mr^k QU(,.W!|CkwGdl$b2^uTd/y + {m D1n) +- +g[ Zmi hMf NH`p = i. $P68+J0y r _ j Q $;S + |yTRU 1b a0 L#+% +  T , ]UdD * :| {y;, K +!uF` ]m[pW OZ"t'x  +#\vO } Y' +16RzMi,Ei+ s Copyright (C) 1997-2001 Michael Sweet, Robert Krawitz, and the rest of the Gimp-Print Development Team. @@ -377,7 +384,7 @@ No image height specified'%s': No image width specified(None)1 Plug-In Interface1 Procedure1 bpp, 1-bit alpha, 2-slot palette32 bpp, 8-bit alpha, no palette4 bpp, 1-bit alpha, 16-slot palette8 bpp, 1-bit alpha, 256-slot paletteA bailout-value for adaptive selectionsA less-obsolete creation of Adam D. Moss / adam@gimp.org / adam@foxbox.org / 1998-2000A unit definition will only be saved before GIMP exits if this column is checked.ALT TextALT te_xt: (optional)ASCII artA_boutA_daptive supersamplingA_ddA_dd borderA_dvancedA_llA_ll tilesA_lpha-weightingA_lpha:A_mbient:A_mount:A_mplitude:A_ngle:A_nimateA_ppendA_uto update previewA_utomaticA_verage under brushAbbreviationAboutAbout Gimp-Print ActionAd_vancedAdaptiveAdaptive s_upersampleAdd Additional GuidesAdd FractalExplorer PathAdd new smvectorAdd new vectorAdding Blinds...Adding Checkerboard...Adding Noise...AdditionAdditional InformationAdds a shadow effect to each brush strokeAdds random noise to the colorAdjust _FG-BGAdjust color balance, brightness, contrast, saturation, and dither algorithmAdjust output...Adjust the Flare IntensityAdjust the Luminosity ThresholdAdjust the Number of SpikesAdjust the Opacity of the SpikesAdjust the Spike Angle (-1 means a Random Angle is chosen)Adjust the Spike DensityAdjust the Spike LengthAdjust the Value how much the Hue should be changed randomlyAdjust the Value how much the Saturation should be changed randomlyAdjust the cyan balance of the printAdjust the density (amount of ink) of the print. Reduce the density if the ink bleeds through the paper or smears; increase the density if black regions are not solid.Adjust the gamma of the print. Larger values will produce a generally brighter print, while smaller values will produce a generally darker print. Black and white will remain the same, unlike with the brightness adjustment.Adjust the magenta balance of the printAdjust the preview's brightnessAdjust the saturation (color balance) of the print Use zero saturation to produce grayscale output using color and black inksAdjust the yellow balance of the printAdjusting Foreground/Background...Advanced Filter Pack OptionsAdvanced OptionsAffected RangeAggressive RLE -(not supported by SGI)Al_ternateAl_ternate tilesAlias|Wavefront PIX imageAlien Map _2...AlienMap2AlienMap2: Transforming...Align Visible LayersAlign _Visible Layers...All JNGAll PNGAll Values are Fractions of the Film HeightAll blackAll grayAll text fields must contain a value.All whiteAllo_w tile splittingAlphaAlpha ChannelsAlpha:Ambient:Amount of original color to show where no direct light fallsAmount:An obsolete creation of Adam D. Moss / adam@gimp.org / adam@foxbox.org / 1998-2000Ang_le offset:Angle span:Angle:Angular Gradient:Angular Size Gradient:Animated GIF OptionsAnimated MNG optionsAnimation Playback:AntialiasingAntialiasing quality. Higher is better, but slowerApplies the paper as it is (without embossing it)ApplyApply CanvasApply _Lens...Apply active gradient to final imageApplying Canvas...Applying convolutionApplying lens...Applying the Filter Pack...Are you sure you want to delete "%s" from the list and from disk?Area #%d SettingsArea SettingsArea listArea:ArrowAs specified aboveAsciiAspect ratio:Assembling Jigsaw...Asymmetry:At _bottomAt _topAut_hor:Author:AutoAuto-Stretching Contrast...Auto-Stretching HSV...AutoDesk FLIC animationAutomaticAutomatic pre_viewAvailable Images:B, G, R, X (bmp style)B/WBLANK/NaN Pixel ReplacementB_lack pullout (%):B_lue threshold:Bac_kground colorBack:BackgroundBackground (%d%s)Background ColorBackground TypeBackground:Bad colormapBarnsley 1Barnsley 2Barnsley 3Base _URL:Basic OptionsBefore and AfterBentBest for images dominated by regions of solid colorBevel EdgesBili_nearBl_ack & whiteBlackBlack and whiteBlack:Blend SettingsBlindsBlueBlue freq_uency:Blue pha_seshift:Blue:Blueness_cb470:Blueness_cb470f:Blueness_cb709:Blueness_cb709f:Blur CenterBlur MethodBlur ParametersBlur RadiusBlur TypeBlurring...BorderBorder Average...Border SizeBorderaverageBot_hBothBottom Border:Bottom edgeBottom-_rightBottom:BoxBrightness:BrowseBumpBump MapBump-mapping...Bumpm_ap image:BumpmapBy DATAMIN/DATAMAXC source codeC source code headerCML Explorer: Overwrite File?CML _Explorer...CML_explorer: evoluting...CMYCMYKCX:CY:C_MYKC_ameraC_aptionC_ell content:C_ell size:C_enter of brushC_enteringC_hoose here:C_ircleC_ompose...C_reate New ImageC_rossesC_urvedC_yanC_ylinderCalculation SettingsCan only operate on RGB drawables.Can only save drawables!Can operate on layers only (but was called on channel or mask).Can't create a new imageCan't get Clipboard data.Can't operate on unknown image typesCan't read color entriesCannot delete!! There must be at least one GFlare.Cannot operate on empty selections.Cannot operate on gray or indexed color images.Cannot operate on indexed color images.Cannot operate on layers with masks.Cannot operate on unknown image types.Cannot read extension from '%s'Cannot read footer from '%s'Cannot save RGB color images. Convert to indexed color or grayscale first.Cannot save images with alpha channel.Cannot save images with alpha channels.CartoonCell size:Cell-_padding:Cell-_spacing:CenterCenter _x:Center _y:Center of Flare EffectCenter of SuperNovaCenter the image horizontally on the paperCenter the image on the paperCenter the image vertically on the paperCenter:CenterizeCh. sensitivity:Change order of arrowsChange the CX value (changes aspect of fractal, active with every fractal but Mandelbrot and Sierpinski)Change the CY value (changes aspect of fractal, active with every fractal but Mandelbrot and Sierpinski)Change the angle of the selected smvectorChange the angle of the selected vectorChange the exponent of the strengthChange the first (minimal) x-coordinate delimitationChange the first (minimal) y-coordinate delimitationChange the intensity of the blue channelChange the intensity of the green channelChange the intensity of the red channelChange the iteration value. The higher it is, the more details will be calculated, which will take more timeChange the number of colors in the mappingChange the second (maximal) x-coordinate delimitationChange the second (maximal) y-coordinate delimitationChange the strength of the selected smvectorChange the strength of the selected vectorChange to thisChanges the gamma (brightness) of the selected brushChannel #%d:Channel Independent ParametersChannel Mi_xer...Channel MixerChannel Mixer File Operation WarningChannel RepresentationsChannelsCheck if you would like to have the table captioned.CheckerCheckerboardChecking this tag will cause GTM to leave no whitespace between the TD tags and the cellcontent. This is only necessary for pixel level positioning control.Choose Fractal by double-clicking on itChoose PPD FileChoose a high compression level for small file sizeChoose the PPD file for your printerChoose the dither algorithm to be used. +(not supported by SGI)Al_ternateAl_ternate tilesAlias|Wavefront PIX imageAlien Map _2...AlienMap2AlienMap2: Transforming...Align Visible LayersAlign _Visible Layers...All JNGAll PNGAll Values are Fractions of the Film HeightAll blackAll grayAll text fields must contain a value.All whiteAllo_w tile splittingAlphaAlpha ChannelsAlpha:Ambient:Amount of original color to show where no direct light fallsAmount:An obsolete creation of Adam D. Moss / adam@gimp.org / adam@foxbox.org / 1998-2000Ang_le offset:Angle span:Angle:Angular Gradient:Angular Size Gradient:Animated GIF OptionsAnimated MNG optionsAnimation Playback:AntialiasingAntialiasing quality. Higher is better, but slowerApplies the paper as it is (without embossing it)ApplyApply CanvasApply _Lens...Apply active gradient to final imageApplying Canvas...Applying convolutionApplying lens...Applying the Filter Pack...Are you sure you want to delete "%s" from the list and from disk?Area #%d SettingsArea SettingsArea listArea:ArrowAs specified aboveAsciiAspect ratio:Assembling Jigsaw...Asymmetry:At _bottomAt _topAut_hor:Author:AutoAuto-Stretching Contrast...Auto-Stretching HSV...AutoDesk FLIC animationAutomaticAutomatic pre_viewAvailable Images:B, G, R, X (bmp style)B/WBLANK/NaN Pixel ReplacementB_lack pullout (%):B_lue threshold:Bac_kground colorBack:BackgroundBackground (%d%s)Background ColorBackground TypeBackground:Bad colormapBarnsley 1Barnsley 2Barnsley 3Base _URL:Basic OptionsBefore and AfterBentBest for images dominated by regions of solid colorBevel EdgesBili_nearBl_ack & whiteBlackBlack and whiteBlack:Blend SettingsBlindsBlueBlue freq_uency:Blue pha_seshift:Blue:Blueness_cb470:Blueness_cb470f:Blueness_cb709:Blueness_cb709f:Blur CenterBlur MethodBlur ParametersBlur RadiusBlur TypeBlurring...BorderBorder Average...Border SizeBorderaverageBot_hBothBottom Border:Bottom edgeBottom-_rightBottom:BoxBrightness:BrowseBumpBump MapBump-mapping...Bumpm_ap image:BumpmapBy DATAMIN/DATAMAXC source codeC source code headerCML Explorer: Overwrite File?CML _Explorer...CML_explorer: evoluting...CMYCMYKCX:CY:C_MYKC_ameraC_aptionC_ell content:C_ell size:C_enter of brushC_enteringC_hoose here:C_ircleC_ompose...C_reate New ImageC_rossesC_urvedC_yanC_ylinderCa_rtoon...Calculation SettingsCan only operate on RGB drawables.Can only save drawables!Can operate on layers only (but was called on channel or mask).Can't create a new imageCan't get Clipboard data.Can't operate on unknown image typesCan't read color entriesCannot delete!! There must be at least one GFlare.Cannot operate on empty selections.Cannot operate on gray or indexed color images.Cannot operate on indexed color images.Cannot operate on layers with masks.Cannot operate on unknown image types.Cannot read extension from '%s'Cannot read footer from '%s'Cannot save RGB color images. Convert to indexed color or grayscale first.Cannot save images with alpha channel.Cannot save images with alpha channels.CartoonCell size:Cell-_padding:Cell-_spacing:CenterCenter _x:Center _y:Center of Flare EffectCenter of SuperNovaCenter the image horizontally on the paperCenter the image on the paperCenter the image vertically on the paperCenter:CenterizeCh. sensitivity:Change order of arrowsChange the CX value (changes aspect of fractal, active with every fractal but Mandelbrot and Sierpinski)Change the CY value (changes aspect of fractal, active with every fractal but Mandelbrot and Sierpinski)Change the angle of the selected smvectorChange the angle of the selected vectorChange the exponent of the strengthChange the first (minimal) x-coordinate delimitationChange the first (minimal) y-coordinate delimitationChange the intensity of the blue channelChange the intensity of the green channelChange the intensity of the red channelChange the iteration value. The higher it is, the more details will be calculated, which will take more timeChange the number of colors in the mappingChange the second (maximal) x-coordinate delimitationChange the second (maximal) y-coordinate delimitationChange the strength of the selected smvectorChange the strength of the selected vectorChange to thisChanges the gamma (brightness) of the selected brushChannel #%d:Channel Independent ParametersChannel Mi_xer...Channel MixerChannel Mixer File Operation WarningChannel RepresentationsChannelsCheck if you would like to have the table captioned.CheckerCheckerboardChecking this tag will cause GTM to leave no whitespace between the TD tags and the cellcontent. This is only necessary for pixel level positioning control.Choose Fractal by double-clicking on itChoose PPD FileChoose a high compression level for small file sizeChoose the PPD file for your printerChoose the dither algorithm to be used. Adaptive Hybrid usually produces the best all-around quality. Ordered is faster and produces almost as good quality on photographs. Fast and Very Fast are considerably faster, and work well for text and line art. @@ -394,7 +401,7 @@ (or similar) to your gimprc file.Iterations:JNGJNG + delta PNGJPEG compression quality:JPEG imageJPEG previewJPEG quality parameterJPEG smoothing factor:JigsawJigsaw StyleJuliaKISS CELKeep _even fieldsKeep image's valuesKeep o_dd fieldsKeep originalKeep the first valueLABLZ77L_eadingL_eft BorderL_ength:L_inearLambdaLandscapeLaplaceLaplace...Larg_e 3x3Layer %s doesn't have an alpha channel, skippedLayer background type. Copy causes the previous layer to be copied before the draw is performed.LeftLeft edgeLeft:Lens EffectLess Sat:Let the direction from the center determine the direction of the strokeLet the direction from the center determine the size of the strokeLet the value (brightness) of the region determine the direction of the strokeLet the value (brightness) of the region determine the size of the strokeLevelLightLight 1Light 2Light 3Light 4Light 5Light 6Light SettingsLight _direction:Light intensityLight source X direction in XYZ spaceLight source X position in XYZ spaceLight source Y direction in XYZ spaceLight source Y position in XYZ spaceLight source Z direction in XYZ spaceLight source Z position in XYZ spaceLighterLighter:Lighting EffectsLighting Effects...Lighting preset:Lightsource color:Lightsource type:LineLine artLinearLink TypeList ViewLizardLo_ng-staggeredLo_wer BorderLoad Channel Mixer SettingsLoad Curve Points from fileLoad FITS FileLoad FlameLoad Fractal ParametersLoad Gfig object collectionLoad ImagemapLoad KISS PaletteLoad Lighting PresetLoad Parameters fromLoad PostScriptLoad QBE fileLoad a fractal from fileLoad the curves from a fileLoading Screen Shot...Lock _thresholdsLogarithmicLoopLower leftLower rightLower selected objectLower selected object to bottomLower t_hreshold:Luma_y470:Luma_y470f:Luma_y709:Luma_y709f:Luminosity _Threshold:Luminosity freq_uency:Luminosity pha_seshift:MNG OptionsMNG animationM_aximum value:Ma_x depth:Ma_ximum height:Magen_taMagentaMagenta:Magenta_KMagnitude map:Main OptionsMake destination image transparent where bump height is zeroMake image transparent outside objectMan'o'warMandelbrotMandelbrot ParametersManualManually specify the stroke orientationManually specify the stroke sizeMap Color RangeMap Images to Box FacesMap _Object...Map file formatMap from _topMap to Box...Map to Cylinder...Map to ObjectMap to Plane...Map to Sphere...Map to:Mapping colors...Mask FileMaterial propertiesMatrixMax (x+d, -)Max (x+d, -), (0.5 < x)Max (x+d, -), (x < 0.5)Max (x, -)Max (x-d, -)Max (x-d, -), (0.5 < x)Max (x-d, -), (x < 0.5)Max RGBMax RGB...Max undo:Max. Memory:Maximum height for bumpsMaximum size:MazeMedia size:Media source:Media type:MedianMenuMenu PathMenu Path/NameMerge imported pathsMerging...Microsoft WMF fileMicrosoft Windows iconMiddle-click inside preview to pick "From Color"Midtones:Min (x+d, -)Min (x+d, -), (0.5 < x)Min (x+d, -), (x < 0.5)Min (x, -)Min (x-d, -)Min (x-d, -), (0.5 < x)Min (x-d, -), (x < 0.5)Minimum size:Mirror the active curve to the other borderMisc arrange:Mo_dify green channelMo_dify saturation channelMod_ify blue channelMod_ify luminosity channelModeMode _1Mode _2Modify CurvesMor_e opaqueMore Advanced OptionsMore Sat:More _white (larger value)More blac_k (smaller value)More t_ransparentMosaicMotion BlurMotion Blurring...MoveMove DownMove SashMove Selected ObjectsMove To FrontMove UpMove a single pointMove an objectMovementMultiple (57):Multiply gradient (0,1)Multiply rand. value (0,1)Multiply rand. value (0,2)Mutation dist.:Mutation rate:My first fractalNL FilterNL Filter...NameNeon DetectionNeon...New FractalNew GFlareNew UnitNew printer...New seedNewsprin_t...NewsprintNewsprint...No %s in gimprc: You need to add an entry like (%s "%s") -to your %s file.No colorsNo compressionNo data capturedNo fillNo lightNo matchesNo selection to convertNo sensible extension, attempting to load with file magic.No sensible extension, saving as compressed XCF.No. _Down:NoiseNon-square pixels. Image might look squashed.NoneNormalNormal:Normalizing...Nothing to crop.Number of ColorsNumber of M_RU entries (1 - 16):Number of SegmentsNumber of TilesNumber of _Frames:Number of _Undo levels (1 - 99):Number of cells:Number of colors:Number of cycles covering full value rangeNumber of pieces going acrossNumber of pieces going downNumber of times to apply filterNumber of unique colors: %dNumberingO_ffset:O_nly foregroundO_pacity:O_ptionsO_rientationO_thersO_utput LPI:O_utput channel:O_verlap:O_verlayO_versample:Object DetailsObject X position in XYZ spaceObject Y position in XYZ spaceObject Z position in XYZ spaceOc_tagons & squaresOff_set:Offset (1):Offset _angle:Offset all vectors with a given angleOffset:Oil Painting...Oili_fy...OilifyOn Edges:On Film:On edges:One frame per layer (replace)Only b_ackgroundOnly one unique colorOp_acity:Op_timal estimationOp_tionsOpacity:OpenOpen FileOpen IFS Fraktal fileOpen failedOpen recentOpening '%s'...Opening thumbnail for '%s'...Opens up the Orientation Map EditorOpens up the Size Map EditorOptimizeOptimize (for _GIF)Optimize the output for the type of image being printedOptimizing Animation...OptionsOr_ientationOr_igin at bottom leftOrientationOrientation Map EditorOrientation:OriginalOriginal intensityOriginal:Ot_herOther optionsOutputOutput Levels:Output type:Outside TypeOverlayP(ower factor):PDF documentPNGPNG + delta PNGPNG compression level:PNG imagePNM ImagePNM imagePNM save cannot handle images with alpha channels.PNM: Error reading file.PNM: Invalid X resolution.PNM: Invalid Y resolution.PNM: Invalid file.PNM: Invalid maximum value.PNM: Premature end of file.PPD File:PPIPS DiamondPS Square (Euclidean Dot)P_aperP_olar Coords...P_reviewPage %dPage Curl...Page SetupPageSetupDlg failed: %dPagecurl EffectPages to load (e.g.: 1-4 or 1,3,5-7)Pages:Paint Mode:Paint Shop Pro imagePaint edgesPainting...Pal_ette File:PalettePaper TilePaper Tile...Parameter k:ParametersParameters were saved to '%s'Parse error in '%s': +to your %s file.No colorsNo compressionNo data capturedNo fillNo lightNo matchesNo selection to convertNo sensible extension, attempting to load with file magic.No sensible extension, saving as compressed XCF.No. _Down:NoiseNon-square pixels. Image might look squashed.NoneNormalNormal:Normalizing...Nothing to crop.Number of ColorsNumber of M_RU entries (1 - 16):Number of SegmentsNumber of TilesNumber of _Frames:Number of _Undo levels (1 - 99):Number of cells:Number of colors:Number of cycles covering full value rangeNumber of pieces going acrossNumber of pieces going downNumber of times to apply filterNumber of unique colors: %dNumberingO_ffset:O_nly foregroundO_pacity:O_ptionsO_rientationO_thersO_utput LPI:O_utput channel:O_verlap:O_verlayO_versample:Object DetailsObject X position in XYZ spaceObject Y position in XYZ spaceObject Z position in XYZ spaceOc_tagons & squaresOff_set:Offset (1):Offset _angle:Offset all vectors with a given angleOffset:Oil Painting...Oili_fy...OilifyOn Edges:On Film:On edges:One frame per layer (replace)Only b_ackgroundOnly one unique colorOp_acity:Op_timal estimationOp_tionsOpacity:OpenOpen FileOpen IFS Fraktal fileOpen failedOpen recentOpening '%s'...Opening thumbnail for '%s'...Opens up the Orientation Map EditorOpens up the Size Map EditorOptimizeOptimize (for _GIF)Optimize the output for the type of image being printedOptimizing Animation...OptionsOr_ientationOr_igin at bottom leftOrientationOrientation Map EditorOrientation:OriginalOriginal intensityOriginal:Ot_herOther optionsOutputOutput Levels:Output type:Outside TypeOverlayP(ower factor):PDF documentPGM imagePNGPNG + delta PNGPNG compression level:PNG imagePNM ImagePNM imagePNM save cannot handle images with alpha channels.PNM: Error reading file.PNM: Invalid X resolution.PNM: Invalid Y resolution.PNM: Invalid file.PNM: Invalid maximum value.PNM: Premature end of file.PPD File:PPIPPM imagePS DiamondPS Square (Euclidean Dot)P_aperP_olar Coords...P_reviewPage %dPage Curl...Page SetupPageSetupDlg failed: %dPagecurl EffectPages to load (e.g.: 1-4 or 1,3,5-7)Pages:Paint Mode:Paint Shop Pro imagePaint edgesPainting...Pal_ette File:PalettePaper TilePaper Tile...Parameter k:ParametersParameters were saved to '%s'Parse error in '%s': %sPastePaste from ClipboardPastedPasting...Pattern fillPercentPercent _black:Percent _white:Percentage of pixels to be filteredPhase angle, range 0-360PhotocopyPhotographPhotoshop imagePieces:Ping pongPixel _Height:Pixel _Width:Pixel value scalingPixelizePixelizing...PixelsPl_acementPlace strokes randomly around the imagePlacementPlanar (RRR,GGG,BBB)Planar RGBPlanePlasmaPlasma...Play/StopPlayback:Please check your installation.Plot a graph of the settingsPlug-In BrowserPluralPo_larization:PointPoint lightPolarPolarizePolarizing...PolygonPortraitPositionPosition X:Position Y:Position Z:Position the image on the page. Click and drag with the primary button to position the image. Click and drag with the second button to move the image with finer precision; each unit of motion moves the image one point (1/72") @@ -430,8 +437,8 @@ cmcyancyan_ke-_mailgreengzip archivehueinvalid formatted GFlare file: %s k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftpixels/%aredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsin^p, steppedsin^p-based functionsome sort of error with the file extension or lack thereofthe _Whole Screento alphavaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: gimp-plug-ins VERSION Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 -PO-Revision-Date: 2004-12-07 18:04+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 +PO-Revision-Date: 2004-12-26 23:48+0100 Last-Translator: Miloslav Trmac Language-Team: Czech MIME-Version: 1.0 @@ -459,7 +466,7 @@ Nebyla zadána výška obrázku'%s': Nebyla zadána šířka obrázku(Nic)1 rozhraní zásuvných modulů1 procedura1 bpp, jednobitová alfa, dvouprvková paleta32 bpp, osmibitová alpha, bez palety4 bpp, jednobitová alfa, šestnáctiprvková paleta8 bpp, jednobitová alfa, dvěstěpadesátišestiprvková paletaPomocná hodnota pro adaptivní výběryMéně zastaralý výtvor Adama D. Mosse / adam@gimp.org / adam@foxbox.org / 1998-2000Definice jednotky bude zapsána před skončením GIMPu pouze po zaškrtnutí tohoto sloupečku.ALT TextTe_xt ALT (volitelné)Umění v ASCIIO _aplikaci_Adaptivní převzorkování_PřidatPři_dat obvod_Rozšířené_VšeVšechny _dlaždiceVážená a_lfaA_lfa:_Okolí:_Míra:_Amplituda:Ú_hel:A_nimovat_PřipojitA_utomaticky aktualizovat náhled_AutomatickéPrů_měr pod stopouZkratkaO aplikaciO Tisku GIMPAkce_PokročiléAdaptivníAdaptivní převzorko_váníPřidat další vodítkaPřidat cestu pro badatele fraktálůPřidat nový vektor mvPřidat nový vektorPřidávám pruhy...Přidávám šachovnici...Přidává se šum...SoučetDalší informacePřidává stínové efekty ke každé stopě štětcePřidává do obrázku náhodný šumUpravit _popředí-pozadíÚprava barevného vyvážení, jasu, kontrastu, sytosti a algoritmu rozptyluUpravit výstup...Nastavení intenzity zářeÚprava prahu jasuNastavení počtu hrotůNastavení krytí hrotůNastavení úhlu hrotu (-1 znamená, že bude zvolen náhodný úhel)Nastavení hustoty hrotůNastavení délky hrotůÚprava hodnoty, o kterou se může odstín náhodně měnitÚprava hodnoty, o kterou se může sytost náhodně měnitNastavení azurového vyvážení tiskuNastavení hustoty (množství inkoustu) na výtisku. Snižte hustotu, pokud inkoust prosakuje papírem nebo se rozmazává; zvyšte hustotu, pokud nejsou černé oblasti zcela vyplněné.Nastavení hodnoty gama výtisku. Vyšší hodnoty budou mít obecně za následek jasnější výtisk, nižší hodnoty budou produkovat tmavší výtisk. Černá a bílá barva zůstane stejná, na rozdíl od nastavení jasu.Nastavení purpurového vyvážení tiskuUpraví jas náhleduNastavení sytosti (barevného vyvážení) tisku. Použijte sytost 0, chcete-li produkovat na výstupu stupnice šedi použitím barevných a černých inkoustů.Nastavení žlutého vyvážení tiskuUpravuji popředí/pozadí...Rozšířené nastavení sady filtrůPokročilé možnostiDotčený rozsahAgresivní RLE -(nepodporovaná SGI)Al_ternativní_Alternativní dlaždiceObrázek Alias|Wavefront PIXMimozemské mapování _2...Mimozemské mapování 2Mimozemské mapování 2: Transformuji...Zarovnání viditelných vrstevZarovnat _viditelné vrstvy...Vše JNGVše PNGVšechny hodnoty jsou zlomky výšky filmuVše černéVše šedéVšechna textová pole musí obsahovat hodnotu.Vše bíléPovolit _dělení dlaždicAlfaAlfa kanályAlfa:Okolí:Míra, v jaké je zobrazena původní barva tam, kam nedopadá přímé světloMíra:Zastaralý výtvor Adama D. Mosse / adam@gimp.org / adam@foxbox.org / 1998-2000Posun úh_lu:Rozpětí úhlu:Úhel:Úhlový přechod:Přechod úhlové velikosti:Volby GIF animaceMožnosti animovaného MNGPřehrání animace:VyhlazováníKvalita vyhlazování. Vyšší je lepší, ale pomalejšíPoužije papír tak, jak je (bez reliéfu)PoužítUžití plátnaPoužít _čočku...Použít aktivní přechod na konečný obrázekPoužívám plátno...Provádí se konvolucePoužívám čočky...Probíhá užití sady filtrů...Opravdu chcete odstranit "%s" ze seznamu a z disku?Nastavení oblasti č. %dNastavení oblastiSeznam oblastíOblast:ŠipkaJak určeno výšeASCIIPoměr stran:Tvořím skládačku...Asymetrie:_Dole_Nahoře_Autor:Autor:AutomatickyAutomaticky roztahuji kontrast...Automaticky roztahuji HSV...Animace AutoDesk FLICAutomatické_Automatický náhledDostupné obrázky:B, G, R, X (styl bmp)Č/BNáhrada PRÁZDNÝCH/NaN pixelů_Stažení úrovně černé (%):Práh m_odré:Barva _pozadíVzadu:PozadíPozadí (%d%s)Barva pozadíTyp pozadíPozadí:Špatná barevná mapaBarnsley 1Barnsley 2Barnsley 3Základní _URL:Základní možnostiPředtím a potomLoukaNejlepší pro obrázky s převládajícími oblastmi barevných plochZkosené hrany_BilineárníČerná a bí_láČernáČerná a bíláČerná:Nastavení míseníPruhyModráFre_kvence modré:Po_sun fáze modré:Modrá:Modrost_cb470:Modrost_cb470f:Modrost_cb709:Modrost_cb709f:Střed rozmáznutíMedota rozostřeníParametry rozmáznutíPoloměr rozostřeníTyp rozmáznutíRozostřuji...ObvodPrůměr okraje...Velikost okrajePrůměr okraje_ObojíObojíSpodní okraj:Spodní hranaDolů dop_ravaDole:HranolJas:ProcházetVyvýšeníMapa vyvýšeníMapuji vyvýšení...O_brázek vyvýšení:Mapa vyvýšeníZ DATAMIN/DATAMAXZdrojový kód v CHlavička zdrojového kódu v CCML badatel: Přepsat soubor?CML badatel: provádím vývoj...CML badatel: provádím vývoj...CMYCMYKCX:CY:C_MYKK_amera_Titulek_Obsah buňky:V_elikost buňky:Stř_ed stopyVystř_eděníZvolte z_de:_Kruh_Komponovat...Vytvořit _nový obrázekP_růsečíkyV _křivkách_Azurová_VálecVolby kalkulaceUmí pracovat pouze s RGB obrazovkami.Obrazovky lze pouze zapisovat!Pracuje pouze s vrstvami (ale bylo voláno na kanál nebo masku).Nemohu vytvořit nový obrázekNelze získat data ze schránky.Neumí zpracovat neznámé typy obrázkuNemohu číst barevné položkyNemohu odstranit!! Musí zde být alespoň jedna P-záře.Nemohu pracovat s prázdnými výběry.Nemohu pracovat s šedými nebo indexovanými barevnými obrázky.Nemohu pracovat s indexovanými barevnými obrázky.Nemohu pracovat na vrstvách s maskami.Nemohu pracovat s neznámými typy obrázků.Nemohu číst rozšíření z '%s'Nemohu číst patičku z '%s'Nemohu ukládat barevné obrázky RGB. Nejdříve jej převeďte na indexovaný nebo do šedí.Nemohu uložit obrázky s alfa kanálem.Nemohu uložit obrázky s alfa kanály.KomiksVelikost buňky:_Výplň buněk:_Rozestup buněk:StředStřed _x:Střed _y:Střed efektu odleskuStřed SuperNovyVystředit obrázek na papír horizontálněVystředit obrázek na papírVystředit obrázek na papír vertikálněStřed:CentrovatCitlivost na změny:Změnit směr šipekZměna hodnoty CX (mění poměry fraktálu, aktivní se všemi fraktály kromě Mandelbrotova a Sierpinského)Změna hodnoty CY (mění poměry fraktálu, aktivní se všemi fraktály kromě Mandelbrotova a Sierpinského)Změna úhlu zvoleného vektoru mvZměna úhlu vybraného vektoruZměna exponentu sílyZměna omezení první (nejmenší) x souřadniceZměna omezení první (nejmenší) y souřadniceZměna intenzity modrého kanáluZměna intenzity zeleného kanáluZměna intenzity červeného kanáluZměna iterační hodnoty. Vyšší znamená výpočet větších detailů za cenu delšího časuZměna počtu barev v mapováníZměna omezení druhé (největší) x souřadniceZměna omezení druhé (největší) y souřadniceZměna pevnosti zvoleného vektoru mvZměna síly zvoleného vektoruZměnit do tohotoMění gama (jas) zvolené stopyKanál č. %d:Parametry nezávislé na kanálu_Mixér kanálů...Mixér kanálůVarování operace souboru mixéru kanálůReprezentace kanálůKanályVolí, zda má mít tabulka titulek.ŠachovniceŠachovniceZaškrtnutí tohoto přívlastku způsobí, že v GTM nebude ponechán bílý prostor mezi značkami TD a obsahem buňky. Je to nutné pouze pro řízení přesné pixelové pozice.Dvojitým poklepem lze zvolit fraktálZvolte soubor PPDZvolte vysokou úroveň komprese pro malou velikost souboruZvolte soubor PPD pro vaši tiskárnuVyberte algoritmus rozptylu, který chcete použít. +(nepodporovaná SGI)Al_ternativní_Alternativní dlaždiceObrázek Alias|Wavefront PIXMimozemské mapování _2...Mimozemské mapování 2Mimozemské mapování 2: Transformuji...Zarovnání viditelných vrstevZarovnat _viditelné vrstvy...Vše JNGVše PNGVšechny hodnoty jsou zlomky výšky filmuVše černéVše šedéVšechna textová pole musí obsahovat hodnotu.Vše bíléPovolit _dělení dlaždicAlfaAlfa kanályAlfa:Okolí:Míra, v jaké je zobrazena původní barva tam, kam nedopadá přímé světloMíra:Zastaralý výtvor Adama D. Mosse / adam@gimp.org / adam@foxbox.org / 1998-2000Posun úh_lu:Rozpětí úhlu:Úhel:Úhlový přechod:Přechod úhlové velikosti:Volby GIF animaceMožnosti animovaného MNGPřehrání animace:VyhlazováníKvalita vyhlazování. Vyšší je lepší, ale pomalejšíPoužije papír tak, jak je (bez reliéfu)PoužítUžití plátnaPoužít _čočku...Použít aktivní přechod na konečný obrázekPoužívám plátno...Provádí se konvolucePoužívám čočky...Probíhá užití sady filtrů...Opravdu chcete odstranit "%s" ze seznamu a z disku?Nastavení oblasti č. %dNastavení oblastiSeznam oblastíOblast:ŠipkaJak určeno výšeASCIIPoměr stran:Tvořím skládačku...Asymetrie:_Dole_Nahoře_Autor:Autor:AutomatickyAutomaticky roztahuji kontrast...Automaticky roztahuji HSV...Animace AutoDesk FLICAutomatické_Automatický náhledDostupné obrázky:B, G, R, X (styl bmp)Č/BNáhrada PRÁZDNÝCH/NaN pixelů_Stažení úrovně černé (%):Práh m_odré:Barva _pozadíVzadu:PozadíPozadí (%d%s)Barva pozadíTyp pozadíPozadí:Špatná barevná mapaBarnsley 1Barnsley 2Barnsley 3Základní _URL:Základní možnostiPředtím a potomLoukaNejlepší pro obrázky s převládajícími oblastmi barevných plochZkosené hrany_BilineárníČerná a bí_láČernáČerná a bíláČerná:Nastavení míseníPruhyModráFre_kvence modré:Po_sun fáze modré:Modrá:Modrost_cb470:Modrost_cb470f:Modrost_cb709:Modrost_cb709f:Střed rozmáznutíMedota rozostřeníParametry rozmáznutíPoloměr rozostřeníTyp rozmáznutíRozostřuji...ObvodPrůměr okraje...Velikost okrajePrůměr okraje_ObojíObojíSpodní okraj:Spodní hranaDolů dop_ravaDole:HranolJas:ProcházetVyvýšeníMapa vyvýšeníMapuji vyvýšení...O_brázek vyvýšení:Mapa vyvýšeníZ DATAMIN/DATAMAXZdrojový kód v CHlavička zdrojového kódu v CCML badatel: Přepsat soubor?CML badatel: provádím vývoj...CML badatel: provádím vývoj...CMYCMYKCX:CY:C_MYKK_amera_Titulek_Obsah buňky:V_elikost buňky:Stř_ed stopyVystř_eděníZvolte z_de:_Kruh_Komponovat...Vytvořit _nový obrázekP_růsečíkyV _křivkách_Azurová_Válec_Komiks...Volby kalkulaceUmí pracovat pouze s RGB obrazovkami.Obrazovky lze pouze zapisovat!Pracuje pouze s vrstvami (ale bylo voláno na kanál nebo masku).Nemohu vytvořit nový obrázekNelze získat data ze schránky.Neumí zpracovat neznámé typy obrázkuNemohu číst barevné položkyNemohu odstranit!! Musí zde být alespoň jedna P-záře.Nemohu pracovat s prázdnými výběry.Nemohu pracovat s šedými nebo indexovanými barevnými obrázky.Nemohu pracovat s indexovanými barevnými obrázky.Nemohu pracovat na vrstvách s maskami.Nemohu pracovat s neznámými typy obrázků.Nemohu číst rozšíření z '%s'Nemohu číst patičku z '%s'Nemohu ukládat barevné obrázky RGB. Nejdříve jej převeďte na indexovaný nebo do šedí.Nemohu uložit obrázky s alfa kanálem.Nemohu uložit obrázky s alfa kanály.KomiksVelikost buňky:_Výplň buněk:_Rozestup buněk:StředStřed _x:Střed _y:Střed efektu odleskuStřed SuperNovyVystředit obrázek na papír horizontálněVystředit obrázek na papírVystředit obrázek na papír vertikálněStřed:CentrovatCitlivost na změny:Změnit směr šipekZměna hodnoty CX (mění poměry fraktálu, aktivní se všemi fraktály kromě Mandelbrotova a Sierpinského)Změna hodnoty CY (mění poměry fraktálu, aktivní se všemi fraktály kromě Mandelbrotova a Sierpinského)Změna úhlu zvoleného vektoru mvZměna úhlu vybraného vektoruZměna exponentu sílyZměna omezení první (nejmenší) x souřadniceZměna omezení první (nejmenší) y souřadniceZměna intenzity modrého kanáluZměna intenzity zeleného kanáluZměna intenzity červeného kanáluZměna iterační hodnoty. Vyšší znamená výpočet větších detailů za cenu delšího časuZměna počtu barev v mapováníZměna omezení druhé (největší) x souřadniceZměna omezení druhé (největší) y souřadniceZměna pevnosti zvoleného vektoru mvZměna síly zvoleného vektoruZměnit do tohotoMění gama (jas) zvolené stopyKanál č. %d:Parametry nezávislé na kanálu_Mixér kanálů...Mixér kanálůVarování operace souboru mixéru kanálůReprezentace kanálůKanályVolí, zda má mít tabulka titulek.ŠachovniceŠachovniceZaškrtnutí tohoto přívlastku způsobí, že v GTM nebude ponechán bílý prostor mezi značkami TD a obsahem buňky. Je to nutné pouze pro řízení přesné pixelové pozice.Dvojitým poklepem lze zvolit fraktálZvolte soubor PPDZvolte vysokou úroveň komprese pro malou velikost souboruZvolte soubor PPD pro vaši tiskárnuVyberte algoritmus rozptylu, který chcete použít. Adaptivní hybridní algoritmus produkuje celkově nejlepší kvalitu. Tříděný algoritmus je rychlejší a na fotografiích produkuje téměř stejnou kvalitu. Rychlý a Velmi rychlý jsou algoritmy značně rychlejší, a dají se dobře použít na text a jednoduché kresby. @@ -476,7 +483,7 @@ (nebo podobné) do vašeho souboru gimprc.Iterace:JNGJNG + Delta PNGKvalita komprese JPEG:Obrázek JPEGJPEG náhledParametr kvality JPEGFaktor vyhlazování JPEG:SkládačkaStyl skládačkyJuliaKISS CELZachovat _sudá poleZachovat hodnoty z obrázkuZachovat _lichá poleZachovat původníZachovat první hodnotuLABLZ77Počát_ek_Levý okraj_Délka:_LineárníLambdaNa šířkuLaplaceůvLaplace...V_elké 3×3Vrstva %s nemá alfa kanál, vynechánaTyp pozadí vrstvy. Kopie způsobí zkopírování předchozí vrstvy před kreslením.DolevaLevá hranaNalevo:Efekt čočekMéně syté:Nechť směr od středu určí směr tahuNechť směr od středu určí velikost tahuNechť hodnota (jas) oblasti určí směr tahuNechť hodnota (jas) oblasti určí velikost tahuÚroveňSvětloSvětlo 1Světlo 2Světlo 3Světlo 4Světlo 5Světlo 6Nastavení světlaSměr svět_la:Intenzita světlaSměr X světelného zdroje v prostoru XYZPoloha X světelného zdroje v prostoru XYZSměr Y světelného zdroje v prostoru XYZPoloha Y světelného zdroje v prostoru XYZSměr Z světelného zdroje v prostoru XYZPoloha Z světelného zdroje v prostoru XYZSvětlejšíSvětlejší:Světelné efektySvětelné efekty...Přednastavení světla:Barva zdroje světla:Typ zdroje světla:ČáryČárová grafikaLineárníTyp odkazuVypsat seznamJeštěrkaZ_načné kolísání_Dolní okrajNačíst nastavení mixéru kanálůNačtení bodů křivky ze souboruČtení FITS souboruNačíst plamenNačíst parametry fraktáluNačíst souhrn objektů GfigNačíst obrázkovou mapuNačíst KISS paletuNačíst nastavení osvětleníNačíst parametry zČtení PostScriptuNačíst soubor QBE...Načíst fraktál ze souboruNačtení křivek ze souboruNačítám snímek obrazovky...Spřáhnout _prahyLogaritmickýSmyčkaZleva zdolaZprava zdolaSnížit zvolený objektSnížit zvolený objekt dospod_Dolní práh:Luma_y470:Luma_y470f:Luma_y709:Luma_y709f:Prá_h jasu:Fre_kvence jasu:Po_sun fáze jasu:Volby MNGAnimace MNGMa_ximální hodnota:Ma_ximální hloubka:Ma_ximální výška:P_urpurováPurpurováPurpurová:Purpurová_KMapa zvětšení:Hlavní volbyVytvoření průhledného cílového obrázku v místech, kde je vyvýšení nulovéMimo objekt bude obrázek průhlednýMan'o'warMandelbrotMandelbrotovy parametryRučněOrientace tahů bude určena ručněVelikost stopy bude určena ručněMapování barevného rozsahuMapovat obrázek do plošek hranolůMapovat _objekt...Formát souboru mapyMapovat _shoraMapovat na kvádr...Mapovat na válec...Mapovat na objektMapovat na rovinu...Mapovat na kouli...Mapovat na:Mapuji barvy...Soubor maskyVlastnosti materiáluMaticeMax (x+d, -)Max (x+d, -), (0.5 < x)Max (x+d, -), (x < 0.5)Max (x, -)Max (x-d, -)Max (x-d, -), (0.5 < x)Max (x-d, -), (x < 0.5)Nejvyšší RGBNejvyšší RGB...Nejvíce vracení:Limit paměti:Největší výška pro vyvýšeníNejvětší velikost:BludištěVelikost média:Zdroj média:Typ média:MediánMenuCesta k menuCesta k menu/jménoSloučit importované cestySpojuji...Soubor Microsoft WMFIkona Microsoft WindowsVyberte "Z barvy" kliknutím prostředním tlačítkem v náhleduStřední tóny:Min (x+d, -)Min (x+d, -), (0.5 < x)Min (x+d, -), (x < 0.5)Min (x, -)Min (x-d, -)Min (x-d, -), (0.5 < x)Min (x-d, -), (x < 0.5)Nejmenší velikost:Zrcadlit aktivní křivku na druhou hraniciRůzné uspořádání:U_pravit kanál zelenéU_pravit kanál sytostiUp_ravit kaníl modréUp_ravit kaníl jasuRežimRežim _1Režim _2Upravit křivkyVíce _krytíDalší pokročilé možnostiSytější:Více _bílé (vyšší hodnota)Více _černé (nižší hodnota)Prů_hlednějšíMozaikaRozmáznutí pohybemRozmázávám pohybem...PosunPřesunout dolůPřesunout ránPřesunout zvolené objektyPřesunout dopředuPřesunout nahoruPřesunout jeden bodPřesunout objektPohybNásobení (57):Násobení gradientem (0,1)Násobení náhodnou hodnotou (0,1)Násobení náhodnou hodnotou (0,2)Vzdálenost mutace:Míra mutace:Můj první fraktálNL FiltrNL Filtr...JménoDetekce neonuNeon...Nový fraktálNová P-zářeNová jednotkaNová tiskárna...Nové hnízdo_Novinový tisk...Novinový tiskNovinový tisk...V gimprc chybí %1$s: Do svého souboru %4$s musíte přidat položku tvaru -(%2$s "%3$s")Žádné barvyŽádná kompreseŽádná data nebyla získánaŽádné vyplňováníŽádné světloNic nenalezenoPro převod není žádný výběrŽádná rozumná přípona, pokouším se načíst pomocí souborů magických čísel.Žádná rozumná přípona, ukládám jako gzipovaný XCF.Počet _dolů:ŠumNečtvercové pixely. Obrázek může vypadat rozmáčkle.NicNormálníNormální:Normalizuji...Není co ořezávat.Počet barevPočet položek M_RU (1-16):Počet segmentůPočet dlaždicPočet _políček:P_očet úrovní vracení (1-99):Počet buněk:Počet barev:Počet cyklů pokrývajících celý rozsah hodnotPočet kusů jdoucích napříčPočet kusů jdoucích dolůPočet použití filtruPočet jedinečných barev: %dČíslování_Posun:Pouze pop_ředí_Krytí:_VolbyO_rientace_JinéVýstupní _LPI:_Výstupní kanál:_Přesah:Pře_krytíPře_vzorkování:Podrobnosti objektůPoloha X objektu v prostoru XYZPoloha Y objektu v prostoru XYZPoloha Z objektu v prostoru XYZOsmiúhelníky a č_tverce_Posun:Posun (1):Úhel p_osunu:Posun všech vektorů o zadaný úhelPosun:Kreslím olejomalbu..._Olejomalba...OlejomalbaNa hranách:Na filmu:Na hranách:Jedno políčko na vrstvu (nahradit)Pouze po_zadíJen jedna jedinečná barva_Krytí:_Optimální odhad_VolbyKrytí:OtevřítOtevřít souborOtevřít soubor IFS FraktalOtevření selhaloOtevřít nedávnýOtvírám '%s'...Otevírám miniaturu pro '%s'...Otevře editor mapy orientaceOtevře editor mapy velikostiOptimalizovatOptimalizovat (pro _GIF)Optimalizace výstupu pro typ tištěného obrázkuOptimalizuji animaci...VolbyOr_ientacePočátek dol_e vlevoOrientaceEditor map orientaceOrientace:PůvodníPůvodní intenzitaPůvodní:_JinéJiné možnostiVýstupVýstupní úrovně:Typ výstupu:Typ okolíPřekrytíP (Faktor mocniny)DokumenT PDFPNGPNG + Delta PNGÚroveň komprese PNG:Obrázek PNGObrázek PNMObrázek PNMPNM zápis neumí zpracovat obrázky s alfa kanály.PNM: Chyba při čtení souboru.PNM: Neplatné X rozlišení.PNM: Neplatné Y rozlišení.PNM: Neplatný soubor.PNM: Neplatná nejvyšší hodnota.PNM: Předčasný konec souboru.PPD soubor:PPIPS diamantPS čtverec (euklidovská tečka)P_apír_Polární souřadnice..._NáhledStrana %dRozčeření stránky...Nastavení stránkyPageSetupDlg selhalo: %dEfekt rozčeření stránkyStránky, které načíst (např. 1-4 nebo 1,3,5-7)Stránky:Režim kreslení:Obrázek Paint Shop ProKreslit okrajeKreslím..._Soubor palety:PaletaPapírová dlaždicePapírová dlaždice...Parametr k:ParametryParametry byly uloženy do '%s'Chyba při zpracovávání '%s': +(%2$s "%3$s")Žádné barvyŽádná kompreseŽádná data nebyla získánaŽádné vyplňováníŽádné světloNic nenalezenoPro převod není žádný výběrŽádná rozumná přípona, pokouším se načíst pomocí souborů magických čísel.Žádná rozumná přípona, ukládám jako gzipovaný XCF.Počet _dolů:ŠumNečtvercové pixely. Obrázek může vypadat rozmáčkle.NicNormálníNormální:Normalizuji...Není co ořezávat.Počet barevPočet položek M_RU (1-16):Počet segmentůPočet dlaždicPočet _políček:P_očet úrovní vracení (1-99):Počet buněk:Počet barev:Počet cyklů pokrývajících celý rozsah hodnotPočet kusů jdoucích napříčPočet kusů jdoucích dolůPočet použití filtruPočet jedinečných barev: %dČíslování_Posun:Pouze pop_ředí_Krytí:_VolbyO_rientace_JinéVýstupní _LPI:_Výstupní kanál:_Přesah:Pře_krytíPře_vzorkování:Podrobnosti objektůPoloha X objektu v prostoru XYZPoloha Y objektu v prostoru XYZPoloha Z objektu v prostoru XYZOsmiúhelníky a č_tverce_Posun:Posun (1):Úhel p_osunu:Posun všech vektorů o zadaný úhelPosun:Kreslím olejomalbu..._Olejomalba...OlejomalbaNa hranách:Na filmu:Na hranách:Jedno políčko na vrstvu (nahradit)Pouze po_zadíJen jedna jedinečná barva_Krytí:_Optimální odhad_VolbyKrytí:OtevřítOtevřít souborOtevřít soubor IFS FraktalOtevření selhaloOtevřít nedávnýOtvírám '%s'...Otevírám miniaturu pro '%s'...Otevře editor mapy orientaceOtevře editor mapy velikostiOptimalizovatOptimalizovat (pro _GIF)Optimalizace výstupu pro typ tištěného obrázkuOptimalizuji animaci...VolbyOr_ientacePočátek dol_e vlevoOrientaceEditor map orientaceOrientace:PůvodníPůvodní intenzitaPůvodní:_JinéJiné možnostiVýstupVýstupní úrovně:Typ výstupu:Typ okolíPřekrytíP (Faktor mocniny)DokumenT PDFObrázek PGMPNGPNG + Delta PNGÚroveň komprese PNG:Obrázek PNGObrázek PNMObrázek PNMPNM zápis neumí zpracovat obrázky s alfa kanály.PNM: Chyba při čtení souboru.PNM: Neplatné X rozlišení.PNM: Neplatné Y rozlišení.PNM: Neplatný soubor.PNM: Neplatná nejvyšší hodnota.PNM: Předčasný konec souboru.PPD soubor:PPIObrázek PPMPS diamantPS čtverec (euklidovská tečka)P_apír_Polární souřadnice..._NáhledStrana %dRozčeření stránky...Nastavení stránkyPageSetupDlg selhalo: %dEfekt rozčeření stránkyStránky, které načíst (např. 1-4 nebo 1,3,5-7)Stránky:Režim kreslení:Obrázek Paint Shop ProKreslit okrajeKreslím..._Soubor palety:PaletaPapírová dlaždicePapírová dlaždice...Parametr k:ParametryParametry byly uloženy do '%s'Chyba při zpracovávání '%s': %sVložitVložit ze schránkyVloženéVkládám...Vyplnění vzorkemProcentaProcenta _černé:Procenta _bílé:Procento filtrovaných pixelůÚhel fáze, rozsah 0-360FotokopieFotografieObrázek PhotoshopuKousky:Ping pongVýška _dlaždice:Šířka _pixelu:Rozsah hodnot pixelůPixelizacePixelizuji...pixelůU_místěníUmístí tahy náhodně po obrázkuUmístěníPlanární (RRR,GGG,BBB)Planární RGBRovinuPlazmaPlazma...Přehrát/ZastavitPřehrávání:Zkontrolujte prosím svou instalaci.Nakreslit graf nastaveníProhlížeč zásuvných modulůMnožné čísloPo_larizace:BodovéBodové světloPolární zářePolarizacePolarizuji...PolygonNa výškuPolohaPoloha X:Poloha Y:Poloha Z:Umístěte obrázek na stránku. Kliknutím a táhnutím primárním tlačítkem umístíte obrázek. Kliknutím a táhnutím druhým tlačítkem umístíte obrázek s větší přesností; každá jednotka pohybu přesune obrázek o jeden bod (1/72") diff -uraN gimp-2.2.0/po-plug-ins/cs.po gimp-2.2.1/po-plug-ins/cs.po --- gimp-2.2.0/po-plug-ins/cs.po 2004-12-19 03:34:06.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/cs.po 2004-12-28 16:58:50.000000000 +0100 @@ -9,8 +9,8 @@ msgstr "" "Project-Id-Version: gimp-plug-ins VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" -"PO-Revision-Date: 2004-12-07 18:04+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" +"PO-Revision-Date: 2004-12-26 23:48+0100\n" "Last-Translator: Miloslav Trmac \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" @@ -953,7 +953,7 @@ msgid "Antialiasing quality. Higher is better, but slower" msgstr "Kvalita vyhlazování. Vyšší je lepší, ale pomalejší" -#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:720 +#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:691 #: plug-ins/common/wind.c:993 plug-ins/imagemap/imap_preferences.c:539 msgid "_Threshold:" msgstr "Prá_h:" @@ -2076,12 +2076,12 @@ msgstr "Orientace" #: plug-ins/common/blinds.c:259 plug-ins/common/ripple.c:539 -#: plug-ins/common/tileit.c:419 plug-ins/pagecurl/pagecurl.c:530 +#: plug-ins/common/tileit.c:418 plug-ins/pagecurl/pagecurl.c:530 msgid "_Horizontal" msgstr "_Vodorovně" #: plug-ins/common/blinds.c:260 plug-ins/common/ripple.c:540 -#: plug-ins/common/tileit.c:429 plug-ins/pagecurl/pagecurl.c:529 +#: plug-ins/common/tileit.c:428 plug-ins/pagecurl/pagecurl.c:529 msgid "_Vertical" msgstr "_Svisle" @@ -2102,7 +2102,7 @@ msgid "_Blur" msgstr "_Rozostřit" -#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:383 +#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:432 msgid "Blurring..." msgstr "Rozostřuji..." @@ -2209,27 +2209,26 @@ msgstr "c_astretch: cmap bylo NULL! Končím...\n" #: plug-ins/common/cartoon.c:147 -#, fuzzy msgid "Ca_rtoon..." -msgstr "Komiks" +msgstr "_Komiks..." -#: plug-ins/common/cartoon.c:228 plug-ins/common/dog.c:246 -#: plug-ins/common/gauss.c:430 plug-ins/common/neon.c:222 -#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:203 +#: plug-ins/common/cartoon.c:229 plug-ins/common/dog.c:247 +#: plug-ins/common/gauss.c:431 plug-ins/common/neon.c:221 +#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:204 #: plug-ins/common/softglow.c:220 plug-ins/gflare/gflare.c:972 #: plug-ins/sgi/sgi.c:528 plug-ins/xjt/xjt.c:1673 msgid "Cannot operate on indexed color images." msgstr "Nemohu pracovat s indexovanými barevnými obrázky." -#: plug-ins/common/cartoon.c:807 +#: plug-ins/common/cartoon.c:808 msgid "Cartoon" msgstr "Komiks" -#: plug-ins/common/cartoon.c:837 plug-ins/common/photocopy.c:867 +#: plug-ins/common/cartoon.c:838 plug-ins/common/photocopy.c:867 msgid "_Mask radius:" msgstr "Poloměr _masky:" -#: plug-ins/common/cartoon.c:851 +#: plug-ins/common/cartoon.c:852 msgid "_Percent black:" msgstr "_Procenta černé:" @@ -2387,28 +2386,28 @@ msgid "Colorify Custom Color" msgstr "Vlastní barva kolorování" -#: plug-ins/common/colortoalpha.c:105 +#: plug-ins/common/colortoalpha.c:104 msgid "Color to _Alpha..." msgstr "Barva do _alfy..." -#: plug-ins/common/colortoalpha.c:183 +#: plug-ins/common/colortoalpha.c:181 msgid "Removing color..." msgstr "Odstraňuje se barva..." -#: plug-ins/common/colortoalpha.c:364 +#: plug-ins/common/colortoalpha.c:377 msgid "Color to Alpha" msgstr "Barva do alfy" -#: plug-ins/common/colortoalpha.c:389 plug-ins/common/mapcolor.c:424 +#: plug-ins/common/colortoalpha.c:402 plug-ins/common/mapcolor.c:424 #: plug-ins/gfli/gfli.c:835 plug-ins/gfli/gfli.c:898 msgid "From:" msgstr "Z:" -#: plug-ins/common/colortoalpha.c:393 +#: plug-ins/common/colortoalpha.c:406 msgid "Color to Alpha Color Picker" msgstr "Barevná pipeta barvy do alfy" -#: plug-ins/common/colortoalpha.c:407 +#: plug-ins/common/colortoalpha.c:420 msgid "to alpha" msgstr "do alfy" @@ -2720,23 +2719,23 @@ msgid "_Cubism..." msgstr "_Kubismus..." -#: plug-ins/common/cubism.c:267 +#: plug-ins/common/cubism.c:269 msgid "Cubism" msgstr "Kubismus" -#: plug-ins/common/cubism.c:296 +#: plug-ins/common/cubism.c:298 msgid "_Tile size:" msgstr "_Velikost dlaždice:" -#: plug-ins/common/cubism.c:309 +#: plug-ins/common/cubism.c:311 msgid "T_ile saturation:" msgstr "_Sytost dlaždice:" -#: plug-ins/common/cubism.c:320 +#: plug-ins/common/cubism.c:322 msgid "_Use background color" msgstr "Použít barvu _pozadí" -#: plug-ins/common/cubism.c:410 +#: plug-ins/common/cubism.c:412 msgid "Cubistic Transformation..." msgstr "Kubistická transformace..." @@ -3103,42 +3102,42 @@ msgid "Des_peckle..." msgstr "_Vyčistit..." -#: plug-ins/common/despeckle.c:420 plug-ins/common/despeckle.c:642 +#: plug-ins/common/despeckle.c:418 plug-ins/common/despeckle.c:640 msgid "Despeckle" msgstr "Vyčištění" #. #. * Filter type controls... #. -#: plug-ins/common/despeckle.c:446 plug-ins/gimpressionist/orientmap.c:616 +#: plug-ins/common/despeckle.c:444 plug-ins/gimpressionist/orientmap.c:616 msgid "Type" msgstr "Typ" #. parameter settings -#: plug-ins/common/despeckle.c:456 +#: plug-ins/common/despeckle.c:454 msgid "Median" msgstr "Medián" -#: plug-ins/common/despeckle.c:462 +#: plug-ins/common/despeckle.c:460 msgid "_Adaptive" msgstr "_Adaptivní" -#: plug-ins/common/despeckle.c:472 +#: plug-ins/common/despeckle.c:470 msgid "R_ecursive" msgstr "_Rekurzivní" -#: plug-ins/common/despeckle.c:496 plug-ins/common/neon.c:728 +#: plug-ins/common/despeckle.c:494 plug-ins/common/neon.c:727 #: plug-ins/common/nlfilt.c:1083 plug-ins/common/nova.c:359 -#: plug-ins/common/unsharp.c:694 plug-ins/common/whirlpinch.c:588 +#: plug-ins/common/unsharp.c:665 plug-ins/common/whirlpinch.c:588 #: plug-ins/gflare/gflare.c:2686 plug-ins/imagemap/imap_circle.c:278 msgid "_Radius:" msgstr "_Poloměr:" -#: plug-ins/common/despeckle.c:512 +#: plug-ins/common/despeckle.c:510 msgid "_Black level:" msgstr "Úro_veň černé:" -#: plug-ins/common/despeckle.c:528 +#: plug-ins/common/despeckle.c:526 msgid "_White level:" msgstr "Úroveň _bílé:" @@ -3224,7 +3223,7 @@ msgid "_Displace..." msgstr "_Vytlačit..." -#: plug-ins/common/displace.c:228 +#: plug-ins/common/displace.c:231 msgid "Displacing..." msgstr "Vytlačuji..." @@ -3262,28 +3261,28 @@ msgid "Difference of Gaussians..." msgstr "Selektivní Gaussovo rozostření..." -#: plug-ins/common/dog.c:222 plug-ins/common/dog.c:273 +#: plug-ins/common/dog.c:227 plug-ins/common/dog.c:274 #, fuzzy msgid "DoG Edge Detect" msgstr "Detekce hran" -#: plug-ins/common/dog.c:294 +#: plug-ins/common/dog.c:295 msgid "Smoothing parameters" msgstr "Parametry vyhlazování" -#: plug-ins/common/dog.c:308 +#: plug-ins/common/dog.c:309 msgid "_Radius 1:" msgstr "_Poloměr 1:" -#: plug-ins/common/dog.c:312 +#: plug-ins/common/dog.c:313 msgid "R_adius 2:" msgstr "_Poloměr 2:" -#: plug-ins/common/dog.c:324 plug-ins/common/normalize.c:88 +#: plug-ins/common/dog.c:325 plug-ins/common/normalize.c:88 msgid "_Normalize" msgstr "_Normalizovat" -#: plug-ins/common/dog.c:335 plug-ins/gimpressionist/paper.c:149 +#: plug-ins/common/dog.c:336 plug-ins/gimpressionist/paper.c:149 msgid "_Invert" msgstr "_Invertovat" @@ -3335,7 +3334,7 @@ msgid "_Emboss..." msgstr "R_eliéf..." -#: plug-ins/common/emboss.c:374 plug-ins/common/emboss.c:439 +#: plug-ins/common/emboss.c:376 plug-ins/common/emboss.c:439 msgid "Emboss" msgstr "Reliéf" @@ -3359,7 +3358,7 @@ msgid "En_grave..." msgstr "Vy_rýt..." -#: plug-ins/common/engrave.c:181 +#: plug-ins/common/engrave.c:182 msgid "Engraving..." msgstr "Ryji..." @@ -3762,38 +3761,38 @@ msgid "_Gaussian Blur..." msgstr "_Gaussovo rozostření..." -#: plug-ins/common/gauss.c:407 +#: plug-ins/common/gauss.c:413 msgid "Gaussian Blur..." msgstr "Gaussovo rozostření..." -#: plug-ins/common/gauss.c:460 +#: plug-ins/common/gauss.c:461 msgid "Gaussian Blur" msgstr "Gaussovo rozostření" #. parameter settings -#: plug-ins/common/gauss.c:483 +#: plug-ins/common/gauss.c:484 msgid "Blur Radius" msgstr "Poloměr rozostření" -#: plug-ins/common/gauss.c:497 plug-ins/common/jigsaw.c:2456 -#: plug-ins/common/spread.c:378 +#: plug-ins/common/gauss.c:498 plug-ins/common/jigsaw.c:2456 +#: plug-ins/common/spread.c:379 msgid "_Horizontal:" msgstr "_Vodorovně" -#: plug-ins/common/gauss.c:501 plug-ins/common/jigsaw.c:2473 -#: plug-ins/common/spread.c:382 +#: plug-ins/common/gauss.c:502 plug-ins/common/jigsaw.c:2473 +#: plug-ins/common/spread.c:383 msgid "_Vertical:" msgstr "_Svisle:" -#: plug-ins/common/gauss.c:524 +#: plug-ins/common/gauss.c:525 msgid "Blur Method" msgstr "Medota rozostření" -#: plug-ins/common/gauss.c:528 +#: plug-ins/common/gauss.c:529 msgid "_IIR" msgstr "_IIR" -#: plug-ins/common/gauss.c:529 +#: plug-ins/common/gauss.c:530 msgid "_RLE" msgstr "_RLE" @@ -4096,19 +4095,19 @@ msgid "_Glass Tile..." msgstr "_Skleněné dlaždicování..." -#: plug-ins/common/glasstile.c:208 +#: plug-ins/common/glasstile.c:209 msgid "Glass Tile..." msgstr "Skleněné dlaždicování..." -#: plug-ins/common/glasstile.c:251 +#: plug-ins/common/glasstile.c:250 msgid "Glass Tile" msgstr "Skleněná dlaždice" -#: plug-ins/common/glasstile.c:282 +#: plug-ins/common/glasstile.c:281 msgid "Tile _width:" msgstr "Šíř_ka dlaždice:" -#: plug-ins/common/glasstile.c:296 plug-ins/common/mosaic.c:621 +#: plug-ins/common/glasstile.c:295 plug-ins/common/mosaic.c:621 msgid "Tile _height:" msgstr "_Výška dlaždice:" @@ -5092,15 +5091,15 @@ msgid "_Neon..." msgstr "_Neon..." -#: plug-ins/common/neon.c:204 +#: plug-ins/common/neon.c:207 msgid "Neon..." msgstr "Neon..." -#: plug-ins/common/neon.c:698 +#: plug-ins/common/neon.c:697 msgid "Neon Detection" msgstr "Detekce neonu" -#: plug-ins/common/neon.c:743 plug-ins/common/unsharp.c:707 +#: plug-ins/common/neon.c:742 plug-ins/common/unsharp.c:678 msgid "_Amount:" msgstr "_Míra:" @@ -5259,7 +5258,7 @@ msgid "_Scatter RGB..." msgstr "_Roztřepení RGB..." -#: plug-ins/common/noisify.c:284 +#: plug-ins/common/noisify.c:285 msgid "Adding Noise..." msgstr "Přidává se šum..." @@ -5328,7 +5327,7 @@ msgid "Oili_fy..." msgstr "_Olejomalba..." -#: plug-ins/common/oilify.c:188 +#: plug-ins/common/oilify.c:189 msgid "Oil Painting..." msgstr "Kreslím olejomalbu..." @@ -5464,7 +5463,7 @@ msgid "Photocopy" msgstr "Fotokopie" -#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:513 +#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:509 #: plug-ins/common/softglow.c:687 msgid "_Sharpness:" msgstr "O_strost:" @@ -5611,14 +5610,12 @@ msgstr "Obrázek PNM" #: plug-ins/common/pnm.c:260 -#, fuzzy msgid "PGM image" -msgstr "Obrázek PNM" +msgstr "Obrázek PGM" #: plug-ins/common/pnm.c:272 -#, fuzzy msgid "PPM image" -msgstr "Obrázek PNM" +msgstr "Obrázek PPM" #: plug-ins/common/pnm.c:465 plug-ins/common/pnm.c:486 #: plug-ins/common/pnm.c:493 plug-ins/common/pnm.c:502 @@ -6103,7 +6100,7 @@ msgid "_Ripple..." msgstr "_Rozvlnit..." -#: plug-ins/common/ripple.c:219 +#: plug-ins/common/ripple.c:222 msgid "Rippling..." msgstr "Rozvlňuji..." @@ -6321,19 +6318,19 @@ msgid "_Selective Gaussian Blur..." msgstr "_Selektivní Gaussovo rozostření..." -#: plug-ins/common/sel_gauss.c:186 +#: plug-ins/common/sel_gauss.c:187 msgid "Selective Gaussian Blur..." msgstr "Selektivní Gaussovo rozostření..." -#: plug-ins/common/sel_gauss.c:224 +#: plug-ins/common/sel_gauss.c:225 msgid "Selective Gaussian Blur" msgstr "Selektivní Gaussovo rozostření" -#: plug-ins/common/sel_gauss.c:256 +#: plug-ins/common/sel_gauss.c:257 msgid "_Blur radius:" msgstr "Poloměr ro_zostření:" -#: plug-ins/common/sel_gauss.c:266 +#: plug-ins/common/sel_gauss.c:267 msgid "_Max. delta:" msgstr "_Max. delta:" @@ -6352,11 +6349,11 @@ #. #. * Let the user know what we're doing... #. -#: plug-ins/common/sharpen.c:315 +#: plug-ins/common/sharpen.c:311 msgid "Sharpening..." msgstr "Doostřuji..." -#: plug-ins/common/sharpen.c:484 +#: plug-ins/common/sharpen.c:480 msgid "Sharpen" msgstr "Doostřit" @@ -6364,7 +6361,7 @@ msgid "_Shift..." msgstr "_Posunout..." -#: plug-ins/common/shift.c:191 +#: plug-ins/common/shift.c:194 msgid "Shifting..." msgstr "Posunuji..." @@ -6559,23 +6556,23 @@ msgid "_Sobel..." msgstr "_Sobel..." -#: plug-ins/common/sobel.c:226 +#: plug-ins/common/sobel.c:227 msgid "Sobel Edge Detection" msgstr "Sobelova detekce hran" -#: plug-ins/common/sobel.c:248 +#: plug-ins/common/sobel.c:249 msgid "Sobel _Horizontally" msgstr "Sobel _vodorovně" -#: plug-ins/common/sobel.c:260 +#: plug-ins/common/sobel.c:261 msgid "Sobel _Vertically" msgstr "Sobel _svisle" -#: plug-ins/common/sobel.c:272 +#: plug-ins/common/sobel.c:273 msgid "_Keep sign of result (one direction only)" msgstr "Zachovat znamén_ko výsledku (pouze jeden směr)" -#: plug-ins/common/sobel.c:358 +#: plug-ins/common/sobel.c:359 msgid "Sobel Edge Detecting..." msgstr "Sobelova detekce hran..." @@ -6877,15 +6874,15 @@ msgid "Sp_read..." msgstr "_Rozprostřít..." -#: plug-ins/common/spread.c:179 +#: plug-ins/common/spread.c:182 msgid "Spreading..." msgstr "Rozprostírám..." -#: plug-ins/common/spread.c:345 +#: plug-ins/common/spread.c:346 msgid "Spread" msgstr "Rozprostření" -#: plug-ins/common/spread.c:363 +#: plug-ins/common/spread.c:364 msgid "Spread Amount" msgstr "Míra rozprostření" @@ -7171,7 +7168,8 @@ msgid "_Tile..." msgstr "_Dlaždicovat..." -#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:321 +#. Set the tile cache size +#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:320 msgid "Tiling..." msgstr "Dlaždicuji..." @@ -7192,42 +7190,42 @@ msgstr "_Malé dlaždice..." #. Get the preview image -#: plug-ins/common/tileit.c:364 +#: plug-ins/common/tileit.c:363 msgid "TileIt" msgstr "Vydlaždicování" #. Area for buttons etc #. Flip -#: plug-ins/common/tileit.c:407 plug-ins/ifscompose/ifscompose.c:628 +#: plug-ins/common/tileit.c:406 plug-ins/ifscompose/ifscompose.c:628 msgid "Flip" msgstr "Otočit" -#: plug-ins/common/tileit.c:455 +#: plug-ins/common/tileit.c:454 msgid "A_ll tiles" msgstr "Všechny _dlaždice" -#: plug-ins/common/tileit.c:469 +#: plug-ins/common/tileit.c:468 msgid "Al_ternate tiles" msgstr "_Alternativní dlaždice" -#: plug-ins/common/tileit.c:483 +#: plug-ins/common/tileit.c:482 msgid "_Explicit tile" msgstr "_Explicitní dlaždice" -#: plug-ins/common/tileit.c:489 +#: plug-ins/common/tileit.c:488 msgid "Ro_w:" msgstr "Řa_da:" -#: plug-ins/common/tileit.c:513 +#: plug-ins/common/tileit.c:512 msgid "Col_umn:" msgstr "Slo_upec:" -#: plug-ins/common/tileit.c:565 +#: plug-ins/common/tileit.c:564 msgid "O_pacity:" msgstr "_Krytí:" #. Lower frame saying howmany segments -#: plug-ins/common/tileit.c:574 +#: plug-ins/common/tileit.c:573 msgid "Number of Segments" msgstr "Počet segmentů" @@ -7376,15 +7374,15 @@ msgid "Unit Editor" msgstr "Editor jednotek" -#: plug-ins/common/unsharp.c:149 +#: plug-ins/common/unsharp.c:143 msgid "_Unsharp Mask..." msgstr "_Rozostřit masku..." -#: plug-ins/common/unsharp.c:493 +#: plug-ins/common/unsharp.c:468 msgid "Merging..." msgstr "Spojuji..." -#: plug-ins/common/unsharp.c:664 +#: plug-ins/common/unsharp.c:635 msgid "Unsharp Mask" msgstr "Rozostřit masku" @@ -8422,19 +8420,19 @@ msgid "_Zoom:" msgstr "Při_blížení:" -#: plug-ins/gfig/gfig-bezier.c:452 +#: plug-ins/gfig/gfig-bezier.c:448 msgid "Closed" msgstr "Zavřeno" -#: plug-ins/gfig/gfig-bezier.c:457 +#: plug-ins/gfig/gfig-bezier.c:453 msgid "Close curve on completion" msgstr "Uzavření křivky při dokončení" -#: plug-ins/gfig/gfig-bezier.c:462 +#: plug-ins/gfig/gfig-bezier.c:458 msgid "Show Line Frame" msgstr "Ukázat čárový model" -#: plug-ins/gfig/gfig-bezier.c:467 +#: plug-ins/gfig/gfig-bezier.c:463 msgid "Draws lines between the control points. Only during curve creation" msgstr "Kreslí čáry mezi řídicími body. Pouze během vytváření křivky" diff -uraN gimp-2.2.0/po-plug-ins/da.gmo gimp-2.2.1/po-plug-ins/da.gmo --- gimp-2.2.0/po-plug-ins/da.gmo 2004-12-19 03:34:22.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/da.gmo 2004-12-28 16:59:05.000000000 +0100 @@ -298,7 +298,7 @@ which has no alpha channel.Z scale (size)Z:ZealousCropping(tm)...ZoomZoom inZoom in (make image bigger)Zoom outZoom out (make image smaller)_3x3_Abbreviation:_Adaptive_Additive_Advanced_Alpha_Alpha:_Amount:_Amplitude:_Angle:_Animate_Antialiasing_Automatically convert_Azimuth:_Background_Base URL:_Bilinear_Black_Blacken_Blast_Blend_Blue_Blue:_Border:_Bottom:_Box_Brightness_Brightness:_Brush_Bump Map_Bumpmap_Copy_Deflate_Depth:_Derivative_Description:_Detail:_Digits:_Displacement:_Distorted_Dots_Edit_Effect Image:_Elevation:_Emboss_Encapsulated PostScript_Entire Image_Environment Map_Exponent:_Factor:_File_Filename:_Font:_Force_Fractals_Free_Ftp Site_Gamma:_General_Gopher_Gradient_Gray:_Green_Green:_Grey_Grow_Height_Height:_Help_Hex_Hidden_Holdness:_Horizontal_Horizontal:_Horz. Spacing:_Hue_ID:_Ideal_Ignore_Inch_Input SPI:_Insert_Interlacing (Adam7)_Invert_JPEG_JavaScript_Keep NCSA circles true_Kill_LZW_Laplace_Large staggered_Left_Left Start at:_Light_Linear_Lines_Link_Lower_MIME_Mapping_Material_Max (%):_Max Depth:_Midtones_Millimeter_Mirror_Misc Ops._Monochrome_Move_No. Across:_None_Normal_Pack Bits_Parameters_Period:_Phase:_Ping Pong_Plural:_Polygon_Presets_Preview_Preview!_Prompt for area info_Psychobilly_RGB_RLE compression_RLE encoded_Radial_Radius:_Randomize_Rays_Recipient:_Rectangle_Red:_Redo %s_Reflective_Remove_Rendering_Require default URL_Right_Right Border_Rotated_Saturation_Saturation:_Search:_Second Flares_Sender:_Settings_Sharpness:_Size_Size:_Smear_Snap-To Grid Enabled_Speed:_Spokes:_Square_Squares_Staggered_Strength:_Symbol:_Target frame name/ID: (optional - used for FRAMES only)_Thickness:_Threshold_Threshold:_Title:_Tools_Top Start at:_Top:_Transparent_URL to activate when this area is clicked: (required)_Undo %s_Update_Upper_Upper Border_Use double-sized grab handles_Uuencode_Value_Value:_Variation:_Vert. Spacing:_Vertical_Vertical:_View_Voronoi_Warp_Waterlevel:_Wavelength:_Web Site_White_Wide-striped_Width_Width:_Wind_Wrap_X Scale:_X:_Y Scale:_Y:_Yellow_Z:_Zoom_Zoom:`Default' is created.a _Single Windowafteralphablackblueblueness_cb470blueness_cb470fblueness_cb709blueness_cb709fcmcyancyan_ke-_mailgreenhueinvalid formatted GFlare file: %s k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftpixels/%aredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsin^p, steppedsin^p-based functionsome sort of error with the file extension or lack thereofthe _Whole Screenvaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: GIMP plug-ins /gnome-cvs Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-03-21 20:57+0100 Last-Translator: Ole Laursen Language-Team: Danish diff -uraN gimp-2.2.0/po-plug-ins/da.po gimp-2.2.1/po-plug-ins/da.po --- gimp-2.2.0/po-plug-ins/da.po 2004-12-19 03:34:07.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/da.po 2004-12-28 16:58:51.000000000 +0100 @@ -32,7 +32,7 @@ msgstr "" "Project-Id-Version: GIMP plug-ins /gnome-cvs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-03-21 20:57+0100\n" "Last-Translator: Ole Laursen \n" "Language-Team: Danish \n" @@ -1028,7 +1028,7 @@ msgid "Antialiasing quality. Higher is better, but slower" msgstr "Udjævningskvalitet. Højere er bedre, men langsommere" -#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:720 +#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:691 #: plug-ins/common/wind.c:993 plug-ins/imagemap/imap_preferences.c:539 msgid "_Threshold:" msgstr "_Tærskel:" @@ -2247,12 +2247,12 @@ msgstr "Orientering" #: plug-ins/common/blinds.c:259 plug-ins/common/ripple.c:539 -#: plug-ins/common/tileit.c:419 plug-ins/pagecurl/pagecurl.c:530 +#: plug-ins/common/tileit.c:418 plug-ins/pagecurl/pagecurl.c:530 msgid "_Horizontal" msgstr "_Vandret" #: plug-ins/common/blinds.c:260 plug-ins/common/ripple.c:540 -#: plug-ins/common/tileit.c:429 plug-ins/pagecurl/pagecurl.c:529 +#: plug-ins/common/tileit.c:428 plug-ins/pagecurl/pagecurl.c:529 msgid "_Vertical" msgstr "_Lodret" @@ -2275,7 +2275,7 @@ msgid "_Blur" msgstr "Slør" -#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:383 +#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:432 msgid "Blurring..." msgstr "Slører..." @@ -2396,25 +2396,25 @@ msgid "Ca_rtoon..." msgstr "_Overskrift" -#: plug-ins/common/cartoon.c:228 plug-ins/common/dog.c:246 -#: plug-ins/common/gauss.c:430 plug-ins/common/neon.c:222 -#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:203 +#: plug-ins/common/cartoon.c:229 plug-ins/common/dog.c:247 +#: plug-ins/common/gauss.c:431 plug-ins/common/neon.c:221 +#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:204 #: plug-ins/common/softglow.c:220 plug-ins/gflare/gflare.c:972 #: plug-ins/sgi/sgi.c:528 plug-ins/xjt/xjt.c:1673 msgid "Cannot operate on indexed color images." msgstr "Kan ikke arbejde med indekserede farvebilleder" -#: plug-ins/common/cartoon.c:807 +#: plug-ins/common/cartoon.c:808 #, fuzzy msgid "Cartoon" msgstr "_Overskrift" -#: plug-ins/common/cartoon.c:837 plug-ins/common/photocopy.c:867 +#: plug-ins/common/cartoon.c:838 plug-ins/common/photocopy.c:867 #, fuzzy msgid "_Mask radius:" msgstr "_Sløringsradius:" -#: plug-ins/common/cartoon.c:851 +#: plug-ins/common/cartoon.c:852 #, fuzzy msgid "_Percent black:" msgstr "Procent" @@ -2584,29 +2584,29 @@ msgid "Colorify Custom Color" msgstr "Brugerdefineret farvelægning" -#: plug-ins/common/colortoalpha.c:105 +#: plug-ins/common/colortoalpha.c:104 #, fuzzy msgid "Color to _Alpha..." msgstr "Farve til alfa" -#: plug-ins/common/colortoalpha.c:183 +#: plug-ins/common/colortoalpha.c:181 msgid "Removing color..." msgstr "Fjerner farve..." -#: plug-ins/common/colortoalpha.c:364 +#: plug-ins/common/colortoalpha.c:377 msgid "Color to Alpha" msgstr "Farve til alfa" -#: plug-ins/common/colortoalpha.c:389 plug-ins/common/mapcolor.c:424 +#: plug-ins/common/colortoalpha.c:402 plug-ins/common/mapcolor.c:424 #: plug-ins/gfli/gfli.c:835 plug-ins/gfli/gfli.c:898 msgid "From:" msgstr "Fra:" -#: plug-ins/common/colortoalpha.c:393 +#: plug-ins/common/colortoalpha.c:406 msgid "Color to Alpha Color Picker" msgstr "Farve til alfa-farveopsnapper" -#: plug-ins/common/colortoalpha.c:407 +#: plug-ins/common/colortoalpha.c:420 #, fuzzy msgid "to alpha" msgstr "til alfa" @@ -2929,26 +2929,26 @@ msgid "_Cubism..." msgstr "Kubisme" -#: plug-ins/common/cubism.c:267 +#: plug-ins/common/cubism.c:269 msgid "Cubism" msgstr "Kubisme" -#: plug-ins/common/cubism.c:296 +#: plug-ins/common/cubism.c:298 #, fuzzy msgid "_Tile size:" msgstr "_Flisestørrelse:" -#: plug-ins/common/cubism.c:309 +#: plug-ins/common/cubism.c:311 #, fuzzy msgid "T_ile saturation:" msgstr "Flise_mætning:" -#: plug-ins/common/cubism.c:320 +#: plug-ins/common/cubism.c:322 #, fuzzy msgid "_Use background color" msgstr "_Brug baggrundsfarve" -#: plug-ins/common/cubism.c:410 +#: plug-ins/common/cubism.c:412 #, fuzzy msgid "Cubistic Transformation..." msgstr "Kubistisk transformering" @@ -3336,44 +3336,44 @@ msgid "Des_peckle..." msgstr "Fjern kornstøj" -#: plug-ins/common/despeckle.c:420 plug-ins/common/despeckle.c:642 +#: plug-ins/common/despeckle.c:418 plug-ins/common/despeckle.c:640 msgid "Despeckle" msgstr "Fjern kornstøj" #. #. * Filter type controls... #. -#: plug-ins/common/despeckle.c:446 plug-ins/gimpressionist/orientmap.c:616 +#: plug-ins/common/despeckle.c:444 plug-ins/gimpressionist/orientmap.c:616 msgid "Type" msgstr "Type" #. parameter settings -#: plug-ins/common/despeckle.c:456 +#: plug-ins/common/despeckle.c:454 #, fuzzy msgid "Median" msgstr "Radianer" -#: plug-ins/common/despeckle.c:462 +#: plug-ins/common/despeckle.c:460 msgid "_Adaptive" msgstr "_Tilpassende" -#: plug-ins/common/despeckle.c:472 +#: plug-ins/common/despeckle.c:470 msgid "R_ecursive" msgstr "R_ekursiv" -#: plug-ins/common/despeckle.c:496 plug-ins/common/neon.c:728 +#: plug-ins/common/despeckle.c:494 plug-ins/common/neon.c:727 #: plug-ins/common/nlfilt.c:1083 plug-ins/common/nova.c:359 -#: plug-ins/common/unsharp.c:694 plug-ins/common/whirlpinch.c:588 +#: plug-ins/common/unsharp.c:665 plug-ins/common/whirlpinch.c:588 #: plug-ins/gflare/gflare.c:2686 plug-ins/imagemap/imap_circle.c:278 msgid "_Radius:" msgstr "_Radius:" -#: plug-ins/common/despeckle.c:512 +#: plug-ins/common/despeckle.c:510 #, fuzzy msgid "_Black level:" msgstr "_Sort niveau:" -#: plug-ins/common/despeckle.c:528 +#: plug-ins/common/despeckle.c:526 #, fuzzy msgid "_White level:" msgstr "H_vidt niveau:" @@ -3470,7 +3470,7 @@ msgid "_Displace..." msgstr "Forskyder..." -#: plug-ins/common/displace.c:228 +#: plug-ins/common/displace.c:231 msgid "Displacing..." msgstr "Forskyder..." @@ -3510,32 +3510,32 @@ msgid "Difference of Gaussians..." msgstr "Selektiv gaussisk sløring..." -#: plug-ins/common/dog.c:222 plug-ins/common/dog.c:273 +#: plug-ins/common/dog.c:227 plug-ins/common/dog.c:274 #, fuzzy msgid "DoG Edge Detect" msgstr "Kantfinding" -#: plug-ins/common/dog.c:294 +#: plug-ins/common/dog.c:295 #, fuzzy msgid "Smoothing parameters" msgstr "Parametre for kopiering" -#: plug-ins/common/dog.c:308 +#: plug-ins/common/dog.c:309 #, fuzzy msgid "_Radius 1:" msgstr "_Radius:" -#: plug-ins/common/dog.c:312 +#: plug-ins/common/dog.c:313 #, fuzzy msgid "R_adius 2:" msgstr "R_adius:" -#: plug-ins/common/dog.c:324 plug-ins/common/normalize.c:88 +#: plug-ins/common/dog.c:325 plug-ins/common/normalize.c:88 #, fuzzy msgid "_Normalize" msgstr "_Normal" -#: plug-ins/common/dog.c:335 plug-ins/gimpressionist/paper.c:149 +#: plug-ins/common/dog.c:336 plug-ins/gimpressionist/paper.c:149 msgid "_Invert" msgstr "_Invertér" @@ -3597,7 +3597,7 @@ msgid "_Emboss..." msgstr "_Relief" -#: plug-ins/common/emboss.c:374 plug-ins/common/emboss.c:439 +#: plug-ins/common/emboss.c:376 plug-ins/common/emboss.c:439 msgid "Emboss" msgstr "Relief" @@ -3622,7 +3622,7 @@ msgid "En_grave..." msgstr "Gravérer..." -#: plug-ins/common/engrave.c:181 +#: plug-ins/common/engrave.c:182 msgid "Engraving..." msgstr "Gravérer..." @@ -4057,41 +4057,41 @@ msgid "_Gaussian Blur..." msgstr "/Filtre/Slør/Gaussisk slør (_IIR)..." -#: plug-ins/common/gauss.c:407 +#: plug-ins/common/gauss.c:413 #, fuzzy msgid "Gaussian Blur..." msgstr "/Filtre/Slør/Gaussisk slør (_IIR)..." -#: plug-ins/common/gauss.c:460 +#: plug-ins/common/gauss.c:461 #, fuzzy msgid "Gaussian Blur" msgstr "IIR gaussisk-sløring" #. parameter settings -#: plug-ins/common/gauss.c:483 +#: plug-ins/common/gauss.c:484 msgid "Blur Radius" msgstr "Sløringsradius" -#: plug-ins/common/gauss.c:497 plug-ins/common/jigsaw.c:2456 -#: plug-ins/common/spread.c:378 +#: plug-ins/common/gauss.c:498 plug-ins/common/jigsaw.c:2456 +#: plug-ins/common/spread.c:379 msgid "_Horizontal:" msgstr "_Vandret:" -#: plug-ins/common/gauss.c:501 plug-ins/common/jigsaw.c:2473 -#: plug-ins/common/spread.c:382 +#: plug-ins/common/gauss.c:502 plug-ins/common/jigsaw.c:2473 +#: plug-ins/common/spread.c:383 msgid "_Vertical:" msgstr "_Lodret:" -#: plug-ins/common/gauss.c:524 +#: plug-ins/common/gauss.c:525 #, fuzzy msgid "Blur Method" msgstr "Sløringstype" -#: plug-ins/common/gauss.c:528 +#: plug-ins/common/gauss.c:529 msgid "_IIR" msgstr "" -#: plug-ins/common/gauss.c:529 +#: plug-ins/common/gauss.c:530 #, fuzzy msgid "_RLE" msgstr "RLE" @@ -4413,20 +4413,20 @@ msgid "_Glass Tile..." msgstr "Tilføjer glasflise..." -#: plug-ins/common/glasstile.c:208 +#: plug-ins/common/glasstile.c:209 msgid "Glass Tile..." msgstr "Tilføjer glasflise..." -#: plug-ins/common/glasstile.c:251 +#: plug-ins/common/glasstile.c:250 msgid "Glass Tile" msgstr "Glasflise" -#: plug-ins/common/glasstile.c:282 +#: plug-ins/common/glasstile.c:281 #, fuzzy msgid "Tile _width:" msgstr "Flise_bredde:" -#: plug-ins/common/glasstile.c:296 plug-ins/common/mosaic.c:621 +#: plug-ins/common/glasstile.c:295 plug-ins/common/mosaic.c:621 #, fuzzy msgid "Tile _height:" msgstr "Flise_højde:" @@ -5493,17 +5493,17 @@ msgid "_Neon..." msgstr "Tilføjer videoeffekt..." -#: plug-ins/common/neon.c:204 +#: plug-ins/common/neon.c:207 #, fuzzy msgid "Neon..." msgstr "Åbn..." -#: plug-ins/common/neon.c:698 +#: plug-ins/common/neon.c:697 #, fuzzy msgid "Neon Detection" msgstr "Kantfinding" -#: plug-ins/common/neon.c:743 plug-ins/common/unsharp.c:707 +#: plug-ins/common/neon.c:742 plug-ins/common/unsharp.c:678 msgid "_Amount:" msgstr "_Mængde:" @@ -5676,7 +5676,7 @@ msgid "_Scatter RGB..." msgstr "Spreder HSV..." -#: plug-ins/common/noisify.c:284 +#: plug-ins/common/noisify.c:285 msgid "Adding Noise..." msgstr "Lægger støj på..." @@ -5752,7 +5752,7 @@ msgid "Oili_fy..." msgstr "Oliemaleri" -#: plug-ins/common/oilify.c:188 +#: plug-ins/common/oilify.c:189 msgid "Oil Painting..." msgstr "Oliemaler..." @@ -5898,7 +5898,7 @@ msgid "Photocopy" msgstr "Fotografi" -#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:513 +#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:509 #: plug-ins/common/softglow.c:687 msgid "_Sharpness:" msgstr "_Skarphed:" @@ -6584,7 +6584,7 @@ msgid "_Ripple..." msgstr "Skaber krusninger..." -#: plug-ins/common/ripple.c:219 +#: plug-ins/common/ripple.c:222 msgid "Rippling..." msgstr "Skaber krusninger..." @@ -6817,20 +6817,20 @@ msgid "_Selective Gaussian Blur..." msgstr "Selektiv gaussisk sløring..." -#: plug-ins/common/sel_gauss.c:186 +#: plug-ins/common/sel_gauss.c:187 msgid "Selective Gaussian Blur..." msgstr "Selektiv gaussisk sløring..." -#: plug-ins/common/sel_gauss.c:224 +#: plug-ins/common/sel_gauss.c:225 msgid "Selective Gaussian Blur" msgstr "Selektiv gaussisk sløring" -#: plug-ins/common/sel_gauss.c:256 +#: plug-ins/common/sel_gauss.c:257 #, fuzzy msgid "_Blur radius:" msgstr "_Sløringsradius:" -#: plug-ins/common/sel_gauss.c:266 +#: plug-ins/common/sel_gauss.c:267 #, fuzzy msgid "_Max. delta:" msgstr "_Maks. delta:" @@ -6852,11 +6852,11 @@ #. #. * Let the user know what we're doing... #. -#: plug-ins/common/sharpen.c:315 +#: plug-ins/common/sharpen.c:311 msgid "Sharpening..." msgstr "Skærper..." -#: plug-ins/common/sharpen.c:484 +#: plug-ins/common/sharpen.c:480 msgid "Sharpen" msgstr "Skærp" @@ -6865,7 +6865,7 @@ msgid "_Shift..." msgstr "Skifter..." -#: plug-ins/common/shift.c:191 +#: plug-ins/common/shift.c:194 msgid "Shifting..." msgstr "Skifter..." @@ -7076,24 +7076,24 @@ msgid "_Sobel..." msgstr "_Sobel" -#: plug-ins/common/sobel.c:226 +#: plug-ins/common/sobel.c:227 msgid "Sobel Edge Detection" msgstr "Sobel-kantfinding" -#: plug-ins/common/sobel.c:248 +#: plug-ins/common/sobel.c:249 msgid "Sobel _Horizontally" msgstr "Sobel _vandret" -#: plug-ins/common/sobel.c:260 +#: plug-ins/common/sobel.c:261 msgid "Sobel _Vertically" msgstr "Sobel _lodret" -#: plug-ins/common/sobel.c:272 +#: plug-ins/common/sobel.c:273 #, fuzzy msgid "_Keep sign of result (one direction only)" msgstr "_Bevar fortegn på resultat (kun én retning)" -#: plug-ins/common/sobel.c:358 +#: plug-ins/common/sobel.c:359 msgid "Sobel Edge Detecting..." msgstr "Sobel-kantfinder..." @@ -7420,15 +7420,15 @@ msgid "Sp_read..." msgstr "Spreder..." -#: plug-ins/common/spread.c:179 +#: plug-ins/common/spread.c:182 msgid "Spreading..." msgstr "Spreder..." -#: plug-ins/common/spread.c:345 +#: plug-ins/common/spread.c:346 msgid "Spread" msgstr "Spred" -#: plug-ins/common/spread.c:363 +#: plug-ins/common/spread.c:364 msgid "Spread Amount" msgstr "Spredningsstyrke" @@ -7731,7 +7731,8 @@ msgid "_Tile..." msgstr "Omdanner til fliselægbar..." -#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:321 +#. Set the tile cache size +#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:320 msgid "Tiling..." msgstr "Fliselægger..." @@ -7754,45 +7755,45 @@ msgstr "A_lle fliser" #. Get the preview image -#: plug-ins/common/tileit.c:364 +#: plug-ins/common/tileit.c:363 msgid "TileIt" msgstr "Små fliser" #. Area for buttons etc #. Flip -#: plug-ins/common/tileit.c:407 plug-ins/ifscompose/ifscompose.c:628 +#: plug-ins/common/tileit.c:406 plug-ins/ifscompose/ifscompose.c:628 msgid "Flip" msgstr "Spejling" -#: plug-ins/common/tileit.c:455 +#: plug-ins/common/tileit.c:454 #, fuzzy msgid "A_ll tiles" msgstr "A_lle fliser" -#: plug-ins/common/tileit.c:469 +#: plug-ins/common/tileit.c:468 #, fuzzy msgid "Al_ternate tiles" msgstr "Sk_iftevise fliser" -#: plug-ins/common/tileit.c:483 +#: plug-ins/common/tileit.c:482 #, fuzzy msgid "_Explicit tile" msgstr "_Bestemt flise" -#: plug-ins/common/tileit.c:489 +#: plug-ins/common/tileit.c:488 msgid "Ro_w:" msgstr "Ræ_kke:" -#: plug-ins/common/tileit.c:513 +#: plug-ins/common/tileit.c:512 msgid "Col_umn:" msgstr "Ko_lonne:" -#: plug-ins/common/tileit.c:565 +#: plug-ins/common/tileit.c:564 msgid "O_pacity:" msgstr "_Uigennemsighed:" #. Lower frame saying howmany segments -#: plug-ins/common/tileit.c:574 +#: plug-ins/common/tileit.c:573 #, fuzzy msgid "Number of Segments" msgstr "_Antal segmenter:" @@ -7944,16 +7945,16 @@ msgid "Unit Editor" msgstr "Måleenheder" -#: plug-ins/common/unsharp.c:149 +#: plug-ins/common/unsharp.c:143 #, fuzzy msgid "_Unsharp Mask..." msgstr "Uskarp maske" -#: plug-ins/common/unsharp.c:493 +#: plug-ins/common/unsharp.c:468 msgid "Merging..." msgstr "Sammensætter..." -#: plug-ins/common/unsharp.c:664 +#: plug-ins/common/unsharp.c:635 msgid "Unsharp Mask" msgstr "Uskarp maske" @@ -9074,19 +9075,19 @@ msgid "_Zoom:" msgstr "_Zoom:" -#: plug-ins/gfig/gfig-bezier.c:452 +#: plug-ins/gfig/gfig-bezier.c:448 msgid "Closed" msgstr "Lukket" -#: plug-ins/gfig/gfig-bezier.c:457 +#: plug-ins/gfig/gfig-bezier.c:453 msgid "Close curve on completion" msgstr "Luk kurve ved afslutning" -#: plug-ins/gfig/gfig-bezier.c:462 +#: plug-ins/gfig/gfig-bezier.c:458 msgid "Show Line Frame" msgstr "Vis linjeramme" -#: plug-ins/gfig/gfig-bezier.c:467 +#: plug-ins/gfig/gfig-bezier.c:463 msgid "Draws lines between the control points. Only during curve creation" msgstr "Tegner linjer mellem kontrolpunkter. Kun under oprettelse af kurve." diff -uraN gimp-2.2.0/po-plug-ins/de.gmo gimp-2.2.1/po-plug-ins/de.gmo --- gimp-2.2.0/po-plug-ins/de.gmo 2004-12-19 03:34:22.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/de.gmo 2004-12-28 16:59:05.000000000 +0100 @@ -464,7 +464,7 @@ cmcyancyan_ke-_mailgreengzip archivehueinvalid formatted GFlare file: %s k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftpixels/%aredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsin^p, steppedsin^p-based functionsome sort of error with the file extension or lack thereofthe _Whole Screento alphavaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: GIMP 2.2 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-12-12 19:00+0100 Last-Translator: Sven Neumann Language-Team: German diff -uraN gimp-2.2.0/po-plug-ins/de.po gimp-2.2.1/po-plug-ins/de.po --- gimp-2.2.0/po-plug-ins/de.po 2004-12-19 03:34:07.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/de.po 2004-12-28 16:58:51.000000000 +0100 @@ -14,7 +14,7 @@ msgstr "" "Project-Id-Version: GIMP 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-12-12 19:00+0100\n" "Last-Translator: Sven Neumann \n" "Language-Team: German \n" @@ -965,7 +965,7 @@ msgid "Antialiasing quality. Higher is better, but slower" msgstr "Qualität der Kantenglättung. Höher ist besser, aber langsamer" -#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:720 +#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:691 #: plug-ins/common/wind.c:993 plug-ins/imagemap/imap_preferences.c:539 msgid "_Threshold:" msgstr "_Schwellwert:" @@ -2088,12 +2088,12 @@ msgstr "Orientierung" #: plug-ins/common/blinds.c:259 plug-ins/common/ripple.c:539 -#: plug-ins/common/tileit.c:419 plug-ins/pagecurl/pagecurl.c:530 +#: plug-ins/common/tileit.c:418 plug-ins/pagecurl/pagecurl.c:530 msgid "_Horizontal" msgstr "_Horizontal" #: plug-ins/common/blinds.c:260 plug-ins/common/ripple.c:540 -#: plug-ins/common/tileit.c:429 plug-ins/pagecurl/pagecurl.c:529 +#: plug-ins/common/tileit.c:428 plug-ins/pagecurl/pagecurl.c:529 msgid "_Vertical" msgstr "_Vertikal" @@ -2115,7 +2115,7 @@ msgid "_Blur" msgstr "_Weichzeichnen" -#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:383 +#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:432 msgid "Blurring..." msgstr "Weichzeichnen..." @@ -2226,23 +2226,23 @@ msgid "Ca_rtoon..." msgstr "Cartoon..." -#: plug-ins/common/cartoon.c:228 plug-ins/common/dog.c:246 -#: plug-ins/common/gauss.c:430 plug-ins/common/neon.c:222 -#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:203 +#: plug-ins/common/cartoon.c:229 plug-ins/common/dog.c:247 +#: plug-ins/common/gauss.c:431 plug-ins/common/neon.c:221 +#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:204 #: plug-ins/common/softglow.c:220 plug-ins/gflare/gflare.c:972 #: plug-ins/sgi/sgi.c:528 plug-ins/xjt/xjt.c:1673 msgid "Cannot operate on indexed color images." msgstr "Kann nicht mit Bildern mit indizierter Farbtabelle arbeiten." -#: plug-ins/common/cartoon.c:807 +#: plug-ins/common/cartoon.c:808 msgid "Cartoon" msgstr "_Cartoon" -#: plug-ins/common/cartoon.c:837 plug-ins/common/photocopy.c:867 +#: plug-ins/common/cartoon.c:838 plug-ins/common/photocopy.c:867 msgid "_Mask radius:" msgstr "_Masken Radius:" -#: plug-ins/common/cartoon.c:851 +#: plug-ins/common/cartoon.c:852 msgid "_Percent black:" msgstr "Schwarzanteil (%):" @@ -2400,28 +2400,28 @@ msgid "Colorify Custom Color" msgstr "Mit benutzerdefinierter Farbe einfärben" -#: plug-ins/common/colortoalpha.c:105 +#: plug-ins/common/colortoalpha.c:104 msgid "Color to _Alpha..." msgstr "Farbe zu _Transparenz..." -#: plug-ins/common/colortoalpha.c:183 +#: plug-ins/common/colortoalpha.c:181 msgid "Removing color..." msgstr "Entferne Farbe..." -#: plug-ins/common/colortoalpha.c:364 +#: plug-ins/common/colortoalpha.c:377 msgid "Color to Alpha" msgstr "Farbe zu Transparenz" -#: plug-ins/common/colortoalpha.c:389 plug-ins/common/mapcolor.c:424 +#: plug-ins/common/colortoalpha.c:402 plug-ins/common/mapcolor.c:424 #: plug-ins/gfli/gfli.c:835 plug-ins/gfli/gfli.c:898 msgid "From:" msgstr "Von:" -#: plug-ins/common/colortoalpha.c:393 +#: plug-ins/common/colortoalpha.c:406 msgid "Color to Alpha Color Picker" msgstr "Farbe zu Transparenz Farbauswahl" -#: plug-ins/common/colortoalpha.c:407 +#: plug-ins/common/colortoalpha.c:420 msgid "to alpha" msgstr "zu Transparenz" @@ -2734,23 +2734,23 @@ msgid "_Cubism..." msgstr "_Kubismus..." -#: plug-ins/common/cubism.c:267 +#: plug-ins/common/cubism.c:269 msgid "Cubism" msgstr "Kubismus" -#: plug-ins/common/cubism.c:296 +#: plug-ins/common/cubism.c:298 msgid "_Tile size:" msgstr "_Kachelgrösse:" -#: plug-ins/common/cubism.c:309 +#: plug-ins/common/cubism.c:311 msgid "T_ile saturation:" msgstr "K_achel-Sättigung:" -#: plug-ins/common/cubism.c:320 +#: plug-ins/common/cubism.c:322 msgid "_Use background color" msgstr "Hintergrundfarbe _verwenden" -#: plug-ins/common/cubism.c:410 +#: plug-ins/common/cubism.c:412 msgid "Cubistic Transformation..." msgstr "Kubistische Umwandlung..." @@ -3119,42 +3119,42 @@ msgid "Des_peckle..." msgstr "_Flecken entfernen..." -#: plug-ins/common/despeckle.c:420 plug-ins/common/despeckle.c:642 +#: plug-ins/common/despeckle.c:418 plug-ins/common/despeckle.c:640 msgid "Despeckle" msgstr "Flecken entfernen" #. #. * Filter type controls... #. -#: plug-ins/common/despeckle.c:446 plug-ins/gimpressionist/orientmap.c:616 +#: plug-ins/common/despeckle.c:444 plug-ins/gimpressionist/orientmap.c:616 msgid "Type" msgstr "Typ" #. parameter settings -#: plug-ins/common/despeckle.c:456 +#: plug-ins/common/despeckle.c:454 msgid "Median" msgstr "Median" -#: plug-ins/common/despeckle.c:462 +#: plug-ins/common/despeckle.c:460 msgid "_Adaptive" msgstr "A_npassend" -#: plug-ins/common/despeckle.c:472 +#: plug-ins/common/despeckle.c:470 msgid "R_ecursive" msgstr "Re_kursiv" -#: plug-ins/common/despeckle.c:496 plug-ins/common/neon.c:728 +#: plug-ins/common/despeckle.c:494 plug-ins/common/neon.c:727 #: plug-ins/common/nlfilt.c:1083 plug-ins/common/nova.c:359 -#: plug-ins/common/unsharp.c:694 plug-ins/common/whirlpinch.c:588 +#: plug-ins/common/unsharp.c:665 plug-ins/common/whirlpinch.c:588 #: plug-ins/gflare/gflare.c:2686 plug-ins/imagemap/imap_circle.c:278 msgid "_Radius:" msgstr "_Radius:" -#: plug-ins/common/despeckle.c:512 +#: plug-ins/common/despeckle.c:510 msgid "_Black level:" msgstr "Schwellwert _Schwarz:" -#: plug-ins/common/despeckle.c:528 +#: plug-ins/common/despeckle.c:526 msgid "_White level:" msgstr "Schwellwert _Weiss:" @@ -3242,7 +3242,7 @@ msgid "_Displace..." msgstr "_Verschieben..." -#: plug-ins/common/displace.c:228 +#: plug-ins/common/displace.c:231 msgid "Displacing..." msgstr "Verschiebe..." @@ -3279,27 +3279,27 @@ msgid "Difference of Gaussians..." msgstr "Differenz der Mittelwerte..." -#: plug-ins/common/dog.c:222 plug-ins/common/dog.c:273 +#: plug-ins/common/dog.c:227 plug-ins/common/dog.c:274 msgid "DoG Edge Detect" msgstr "DoG Kantenerkennung" -#: plug-ins/common/dog.c:294 +#: plug-ins/common/dog.c:295 msgid "Smoothing parameters" msgstr "Parameter abgleichen" -#: plug-ins/common/dog.c:308 +#: plug-ins/common/dog.c:309 msgid "_Radius 1:" msgstr "_Radius 1:" -#: plug-ins/common/dog.c:312 +#: plug-ins/common/dog.c:313 msgid "R_adius 2:" msgstr "R_adius 2:" -#: plug-ins/common/dog.c:324 plug-ins/common/normalize.c:88 +#: plug-ins/common/dog.c:325 plug-ins/common/normalize.c:88 msgid "_Normalize" msgstr "_Normalisieren" -#: plug-ins/common/dog.c:335 plug-ins/gimpressionist/paper.c:149 +#: plug-ins/common/dog.c:336 plug-ins/gimpressionist/paper.c:149 msgid "_Invert" msgstr "_Invertieren" @@ -3351,7 +3351,7 @@ msgid "_Emboss..." msgstr "_Relief..." -#: plug-ins/common/emboss.c:374 plug-ins/common/emboss.c:439 +#: plug-ins/common/emboss.c:376 plug-ins/common/emboss.c:439 msgid "Emboss" msgstr "Relief" @@ -3375,7 +3375,7 @@ msgid "En_grave..." msgstr "_Gravur..." -#: plug-ins/common/engrave.c:181 +#: plug-ins/common/engrave.c:182 msgid "Engraving..." msgstr "Graviere..." @@ -3782,39 +3782,39 @@ msgid "_Gaussian Blur..." msgstr "_Gaußscher Weichzeichner..." -#: plug-ins/common/gauss.c:407 +#: plug-ins/common/gauss.c:413 msgid "Gaussian Blur..." msgstr "Gaußscher Weichzeichner..." -#: plug-ins/common/gauss.c:460 +#: plug-ins/common/gauss.c:461 msgid "Gaussian Blur" msgstr "Gaußscher Weichzeichner" #. parameter settings -#: plug-ins/common/gauss.c:483 +#: plug-ins/common/gauss.c:484 msgid "Blur Radius" msgstr "Radius" -#: plug-ins/common/gauss.c:497 plug-ins/common/jigsaw.c:2456 -#: plug-ins/common/spread.c:378 +#: plug-ins/common/gauss.c:498 plug-ins/common/jigsaw.c:2456 +#: plug-ins/common/spread.c:379 msgid "_Horizontal:" msgstr "_Horizontal" -#: plug-ins/common/gauss.c:501 plug-ins/common/jigsaw.c:2473 -#: plug-ins/common/spread.c:382 +#: plug-ins/common/gauss.c:502 plug-ins/common/jigsaw.c:2473 +#: plug-ins/common/spread.c:383 msgid "_Vertical:" msgstr "_Vertikal:" # TODO -#: plug-ins/common/gauss.c:524 +#: plug-ins/common/gauss.c:525 msgid "Blur Method" msgstr "Method" -#: plug-ins/common/gauss.c:528 +#: plug-ins/common/gauss.c:529 msgid "_IIR" msgstr "_IIR" -#: plug-ins/common/gauss.c:529 +#: plug-ins/common/gauss.c:530 msgid "_RLE" msgstr "_RLE" @@ -4119,19 +4119,19 @@ msgid "_Glass Tile..." msgstr "_Glasbausteine..." -#: plug-ins/common/glasstile.c:208 +#: plug-ins/common/glasstile.c:209 msgid "Glass Tile..." msgstr "Glasbausteine..." -#: plug-ins/common/glasstile.c:251 +#: plug-ins/common/glasstile.c:250 msgid "Glass Tile" msgstr "Glasbausteine" -#: plug-ins/common/glasstile.c:282 +#: plug-ins/common/glasstile.c:281 msgid "Tile _width:" msgstr "Kachel_breite:" -#: plug-ins/common/glasstile.c:296 plug-ins/common/mosaic.c:621 +#: plug-ins/common/glasstile.c:295 plug-ins/common/mosaic.c:621 msgid "Tile _height:" msgstr "Kachel_höhe:" @@ -5127,15 +5127,15 @@ msgid "_Neon..." msgstr "_Neon..." -#: plug-ins/common/neon.c:204 +#: plug-ins/common/neon.c:207 msgid "Neon..." msgstr "Neon..." -#: plug-ins/common/neon.c:698 +#: plug-ins/common/neon.c:697 msgid "Neon Detection" msgstr "Neon Kantenfinder" -#: plug-ins/common/neon.c:743 plug-ins/common/unsharp.c:707 +#: plug-ins/common/neon.c:742 plug-ins/common/unsharp.c:678 msgid "_Amount:" msgstr "_Menge:" @@ -5294,7 +5294,7 @@ msgid "_Scatter RGB..." msgstr "Streue _RGB..." -#: plug-ins/common/noisify.c:284 +#: plug-ins/common/noisify.c:285 msgid "Adding Noise..." msgstr "Rauschen wird hinzugefügt..." @@ -5363,7 +5363,7 @@ msgid "Oili_fy..." msgstr "_Ölgemälde..." -#: plug-ins/common/oilify.c:188 +#: plug-ins/common/oilify.c:189 msgid "Oil Painting..." msgstr "Wende Ölgemälde-Effekt an..." @@ -5498,7 +5498,7 @@ msgid "Photocopy" msgstr "Fotokopie" -#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:513 +#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:509 #: plug-ins/common/softglow.c:687 msgid "_Sharpness:" msgstr "_Schärfe:" @@ -6135,7 +6135,7 @@ msgid "_Ripple..." msgstr "_Zacken..." -#: plug-ins/common/ripple.c:219 +#: plug-ins/common/ripple.c:222 msgid "Rippling..." msgstr "Erzeuge Zacken..." @@ -6355,19 +6355,19 @@ msgid "_Selective Gaussian Blur..." msgstr "_Selektiver Gaußscher Weichzeichner..." -#: plug-ins/common/sel_gauss.c:186 +#: plug-ins/common/sel_gauss.c:187 msgid "Selective Gaussian Blur..." msgstr "Selektiver Gaußscher Weichzeichner..." -#: plug-ins/common/sel_gauss.c:224 +#: plug-ins/common/sel_gauss.c:225 msgid "Selective Gaussian Blur" msgstr "Selektiver Gaußscher Weichzeichner" -#: plug-ins/common/sel_gauss.c:256 +#: plug-ins/common/sel_gauss.c:257 msgid "_Blur radius:" msgstr "Radius _Weichzeichner:" -#: plug-ins/common/sel_gauss.c:266 +#: plug-ins/common/sel_gauss.c:267 msgid "_Max. delta:" msgstr "_Max. Delta:" @@ -6386,11 +6386,11 @@ #. #. * Let the user know what we're doing... #. -#: plug-ins/common/sharpen.c:315 +#: plug-ins/common/sharpen.c:311 msgid "Sharpening..." msgstr "Schärfe..." -#: plug-ins/common/sharpen.c:484 +#: plug-ins/common/sharpen.c:480 msgid "Sharpen" msgstr "Schärfen" @@ -6398,7 +6398,7 @@ msgid "_Shift..." msgstr "_Verschieben..." -#: plug-ins/common/shift.c:191 +#: plug-ins/common/shift.c:194 msgid "Shifting..." msgstr "Verschiebe..." @@ -6593,23 +6593,23 @@ msgid "_Sobel..." msgstr "_Sobel..." -#: plug-ins/common/sobel.c:226 +#: plug-ins/common/sobel.c:227 msgid "Sobel Edge Detection" msgstr "Sobel Kanten-Erkennung" -#: plug-ins/common/sobel.c:248 +#: plug-ins/common/sobel.c:249 msgid "Sobel _Horizontally" msgstr "Sobel _Horizontal" -#: plug-ins/common/sobel.c:260 +#: plug-ins/common/sobel.c:261 msgid "Sobel _Vertically" msgstr "Sobel _Vertikal" -#: plug-ins/common/sobel.c:272 +#: plug-ins/common/sobel.c:273 msgid "_Keep sign of result (one direction only)" msgstr "Vorzeichen des Ergebnisses _beibehalten (nur eine Richtung)" -#: plug-ins/common/sobel.c:358 +#: plug-ins/common/sobel.c:359 msgid "Sobel Edge Detecting..." msgstr "Sobel Kanten-Erkennung..." @@ -6909,15 +6909,15 @@ msgid "Sp_read..." msgstr "Ver_streuen..." -#: plug-ins/common/spread.c:179 +#: plug-ins/common/spread.c:182 msgid "Spreading..." msgstr "Verstreue..." -#: plug-ins/common/spread.c:345 +#: plug-ins/common/spread.c:346 msgid "Spread" msgstr "Verstreuen" -#: plug-ins/common/spread.c:363 +#: plug-ins/common/spread.c:364 msgid "Spread Amount" msgstr "Verteilungsmenge" @@ -7204,7 +7204,8 @@ msgid "_Tile..." msgstr "_Kacheln..." -#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:321 +#. Set the tile cache size +#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:320 msgid "Tiling..." msgstr "Erzeuge Kacheln..." @@ -7225,42 +7226,42 @@ msgstr "Kl_eine Kacheln..." #. Get the preview image -#: plug-ins/common/tileit.c:364 +#: plug-ins/common/tileit.c:363 msgid "TileIt" msgstr "TileIt" #. Area for buttons etc #. Flip -#: plug-ins/common/tileit.c:407 plug-ins/ifscompose/ifscompose.c:628 +#: plug-ins/common/tileit.c:406 plug-ins/ifscompose/ifscompose.c:628 msgid "Flip" msgstr "Spiegeln" -#: plug-ins/common/tileit.c:455 +#: plug-ins/common/tileit.c:454 msgid "A_ll tiles" msgstr "A_lle Kacheln" -#: plug-ins/common/tileit.c:469 +#: plug-ins/common/tileit.c:468 msgid "Al_ternate tiles" msgstr "Al_ternative Kacheln" -#: plug-ins/common/tileit.c:483 +#: plug-ins/common/tileit.c:482 msgid "_Explicit tile" msgstr "_Explizite Kachel" -#: plug-ins/common/tileit.c:489 +#: plug-ins/common/tileit.c:488 msgid "Ro_w:" msgstr "_Zeile:" -#: plug-ins/common/tileit.c:513 +#: plug-ins/common/tileit.c:512 msgid "Col_umn:" msgstr "_Spalte:" -#: plug-ins/common/tileit.c:565 +#: plug-ins/common/tileit.c:564 msgid "O_pacity:" msgstr "_Deckkraft:" #. Lower frame saying howmany segments -#: plug-ins/common/tileit.c:574 +#: plug-ins/common/tileit.c:573 msgid "Number of Segments" msgstr "Segmentanzahl:" @@ -7410,15 +7411,15 @@ msgid "Unit Editor" msgstr "Einheiten-Editor" -#: plug-ins/common/unsharp.c:149 +#: plug-ins/common/unsharp.c:143 msgid "_Unsharp Mask..." msgstr "_Unscharf Maskieren..." -#: plug-ins/common/unsharp.c:493 +#: plug-ins/common/unsharp.c:468 msgid "Merging..." msgstr "Maskiere..." -#: plug-ins/common/unsharp.c:664 +#: plug-ins/common/unsharp.c:635 msgid "Unsharp Mask" msgstr "Unscharf Maskieren" @@ -8461,19 +8462,19 @@ msgid "_Zoom:" msgstr "_Zoom:" -#: plug-ins/gfig/gfig-bezier.c:452 +#: plug-ins/gfig/gfig-bezier.c:448 msgid "Closed" msgstr "Geschlossen" -#: plug-ins/gfig/gfig-bezier.c:457 +#: plug-ins/gfig/gfig-bezier.c:453 msgid "Close curve on completion" msgstr "Kurve schließen wenn fertig" -#: plug-ins/gfig/gfig-bezier.c:462 +#: plug-ins/gfig/gfig-bezier.c:458 msgid "Show Line Frame" msgstr "Linienvorschau" -#: plug-ins/gfig/gfig-bezier.c:467 +#: plug-ins/gfig/gfig-bezier.c:463 msgid "Draws lines between the control points. Only during curve creation" msgstr "" "Zeichnet Linien zwischen Kontrollpunkten. Nur während Erstellung der Kurve." diff -uraN gimp-2.2.0/po-plug-ins/el.gmo gimp-2.2.1/po-plug-ins/el.gmo --- gimp-2.2.0/po-plug-ins/el.gmo 2004-12-19 03:34:22.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/el.gmo 2004-12-28 16:59:05.000000000 +0100 @@ -39,7 +39,7 @@ s`/=28<1#-e/}t@ d"0Sn VW>:$ CBh!E~P_+7^5*D7;3J"&HrN5 wx3j.iAQ'(BE?y#941  K4,!6 :m Hg+ O?cu,XD [)'LYMGI{CF|(86 *q)(None)A_ddA_ngle:AbbreviationAboutActionAdditionAlphaAlpha:Angle:AntialiasingApplyArea:ArrowAsciiAuthor:AutoAutomaticAvailable Images:Back:BackgroundBackground ColorBackground:BlackBlack:BlueBlue:BorderBothBottom:BoxBrowseCMYCMYKCX:CY:CenterChannelsCircleClearCo_lorsColorColor DensityColor Selection DialogColor:ColorsColors:Command:CommentComment:ComposeCompressionContrast:CopyCopyright:CreateCubismCustom Color:CutCyanCyan:CylinderCylinder lengthDICOM imageDate:DefaultDeleteDensity:Description:Destination:DiamondDigitsDimension:Dimensions:DirectionDivisionEditError opening fileError reading fileFileFilename:FilmFilterForegroundFromFrom:FunctionGIF WarningGIMP ExtensionGeneral OptionsGeneral optionsGr_eyGrabGradientGrayGrayscaleGreenGreen:GreyGridHSVHeight:High _Quality previewHorizontalHueHue:IDInchInitial value:Iterations:JPEG previewJuliaL_ength:LambdaLandscapeLeft:LightLineLinearLogarithmicLoopMagentaMagenta:ManualModeMoveMove DownMove UpNameNew UnitNoneNormalNormal:Number of ColorsNumber of colors:NumberingO_ptionsO_rientationOpacity:OpenOptionsOrientationOutputPPD File:PPIP_aperPages:ParametersPastePercentPhotographPixelsPlacementPointPolygonPortraitPositionPreferencesPreviewPrint to FilePrinter Model:Printer SettingsQuality:RGBRGBARandomRe_dRectangleRedRed:RedoReplaceResolutionResolution:RewindRight:RotationRotation:Sat_urationSaturationSaturation:SaveSave as BMPSave as GIFSave as JPEGSave as MNGSave as PNGSave as PNMSave as SGISave as SUNRASSave as TGASave as TIFFSave as TextSave as XBMSave as XJTSave as XPMScale X:ScreenSeascapeSelectSelect AllSelect ColorSelect allSelectionSettingsShear:ShiftShowSimpleSizeSize (%):Size:SolidSpacing:SphereSpiderStandardStepStyleSymbolTemporaryThreshold:TileToTo:ToolsTop:TransparentTransparent backgroundTypeType:URLURL: %sUndoUnitUnit EditorUnitsUnits:UnselectUnselect AllUntitledUpdateValueValue:VerticalVideoWarningWavesWhiteWidth:WindWindowsWindows BMP imageX:Y:YellowYellow:ZoomZoom inZoom out_3x3_Angle:_Black_Blue_Blue:_Bottom:_Box_Brush_Copy_Description:_Edit_File_Font:_Green_Green:_Height_Height:_Help_Hue_Inch_JavaScript_Left_Lines_Mirror_Parameters_Polygon_Preview_Preview!_Print..._Red:_Right_Saturation_Saturation:_Search:_Settings_Size_Size:_Speed:_Threshold:_Title:_Tools_Top:_Update_Value_Value:_View_White_Width_Width:_Wind_X:_Y:afterblackbluebzip archivecmcyane-_mailgreengzip archivehuemagentapixelsredsaturationvalueyellowProject-Id-Version: el Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-10-22 15:51+0300 Last-Translator: Nikos Charonitakis Language-Team: diff -uraN gimp-2.2.0/po-plug-ins/el.po gimp-2.2.1/po-plug-ins/el.po --- gimp-2.2.0/po-plug-ins/el.po 2004-12-19 03:34:08.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/el.po 2004-12-28 16:58:51.000000000 +0100 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: el\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-10-22 15:51+0300\n" "Last-Translator: Nikos Charonitakis \n" "Language-Team: \n" @@ -1058,7 +1058,7 @@ msgid "Antialiasing quality. Higher is better, but slower" msgstr "" -#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:720 +#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:691 #: plug-ins/common/wind.c:993 plug-ins/imagemap/imap_preferences.c:539 msgid "_Threshold:" msgstr "_Κατώφλι:" @@ -2351,13 +2351,13 @@ msgstr "Προσανατολισμός" #: plug-ins/common/blinds.c:259 plug-ins/common/ripple.c:539 -#: plug-ins/common/tileit.c:419 plug-ins/pagecurl/pagecurl.c:530 +#: plug-ins/common/tileit.c:418 plug-ins/pagecurl/pagecurl.c:530 #, fuzzy msgid "_Horizontal" msgstr "Οριζόντιο" #: plug-ins/common/blinds.c:260 plug-ins/common/ripple.c:540 -#: plug-ins/common/tileit.c:429 plug-ins/pagecurl/pagecurl.c:529 +#: plug-ins/common/tileit.c:428 plug-ins/pagecurl/pagecurl.c:529 #, fuzzy msgid "_Vertical" msgstr "Κατακόρυφο" @@ -2384,7 +2384,7 @@ msgid "_Blur" msgstr "Μπλέ:" -#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:383 +#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:432 #, fuzzy msgid "Blurring..." msgstr "Σε αναπαραγωγή..." @@ -2521,27 +2521,27 @@ msgid "Ca_rtoon..." msgstr "Λεζάντα" -#: plug-ins/common/cartoon.c:228 plug-ins/common/dog.c:246 -#: plug-ins/common/gauss.c:430 plug-ins/common/neon.c:222 -#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:203 +#: plug-ins/common/cartoon.c:229 plug-ins/common/dog.c:247 +#: plug-ins/common/gauss.c:431 plug-ins/common/neon.c:221 +#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:204 #: plug-ins/common/softglow.c:220 plug-ins/gflare/gflare.c:972 #: plug-ins/sgi/sgi.c:528 plug-ins/xjt/xjt.c:1673 #, fuzzy msgid "Cannot operate on indexed color images." msgstr "%s για άγνωστο τύπο ενεργοποίησης" -#: plug-ins/common/cartoon.c:807 +#: plug-ins/common/cartoon.c:808 #, fuzzy msgid "Cartoon" msgstr "Λεζάντα" # -#: plug-ins/common/cartoon.c:837 plug-ins/common/photocopy.c:867 +#: plug-ins/common/cartoon.c:838 plug-ins/common/photocopy.c:867 #, fuzzy msgid "_Mask radius:" msgstr "Μπλούγκρας" -#: plug-ins/common/cartoon.c:851 +#: plug-ins/common/cartoon.c:852 #, fuzzy msgid "_Percent black:" msgstr "Ποσοστό" @@ -2723,32 +2723,32 @@ msgid "Colorify Custom Color" msgstr "Επιλογή Ειδικού Χρώματος" -#: plug-ins/common/colortoalpha.c:105 +#: plug-ins/common/colortoalpha.c:104 #, fuzzy msgid "Color to _Alpha..." msgstr "Χρώμα προς χρήση:" -#: plug-ins/common/colortoalpha.c:183 +#: plug-ins/common/colortoalpha.c:181 #, fuzzy msgid "Removing color..." msgstr "Αφαίρεση φακέλου %s" -#: plug-ins/common/colortoalpha.c:364 +#: plug-ins/common/colortoalpha.c:377 #, fuzzy msgid "Color to Alpha" msgstr "Χρώμα προς χρήση:" # -#: plug-ins/common/colortoalpha.c:389 plug-ins/common/mapcolor.c:424 +#: plug-ins/common/colortoalpha.c:402 plug-ins/common/mapcolor.c:424 #: plug-ins/gfli/gfli.c:835 plug-ins/gfli/gfli.c:898 msgid "From:" msgstr "Από:" -#: plug-ins/common/colortoalpha.c:393 +#: plug-ins/common/colortoalpha.c:406 msgid "Color to Alpha Color Picker" msgstr "" -#: plug-ins/common/colortoalpha.c:407 +#: plug-ins/common/colortoalpha.c:420 #, fuzzy msgid "to alpha" msgstr "Άλφα" @@ -3098,27 +3098,27 @@ msgstr "Κυβισμός" # Translation of "custom" sucks! ("kata paraggelia"??? nah!) -#: plug-ins/common/cubism.c:267 +#: plug-ins/common/cubism.c:269 msgid "Cubism" msgstr "Κυβισμός" -#: plug-ins/common/cubism.c:296 +#: plug-ins/common/cubism.c:298 #, fuzzy msgid "_Tile size:" msgstr "Μέγεθος Αρχείου:" # -#: plug-ins/common/cubism.c:309 +#: plug-ins/common/cubism.c:311 #, fuzzy msgid "T_ile saturation:" msgstr "Κορεσμός:" -#: plug-ins/common/cubism.c:320 +#: plug-ins/common/cubism.c:322 #, fuzzy msgid "_Use background color" msgstr "Καθορισμός χρώματος φόντου" -#: plug-ins/common/cubism.c:410 +#: plug-ins/common/cubism.c:412 #, fuzzy msgid "Cubistic Transformation..." msgstr "Μετασχηματισμός" @@ -3546,7 +3546,7 @@ msgid "Des_peckle..." msgstr "Εξάρτηση" -#: plug-ins/common/despeckle.c:420 plug-ins/common/despeckle.c:642 +#: plug-ins/common/despeckle.c:418 plug-ins/common/despeckle.c:640 #, fuzzy msgid "Despeckle" msgstr "Εξάρτηση" @@ -3555,40 +3555,40 @@ #. #. * Filter type controls... #. -#: plug-ins/common/despeckle.c:446 plug-ins/gimpressionist/orientmap.c:616 +#: plug-ins/common/despeckle.c:444 plug-ins/gimpressionist/orientmap.c:616 msgid "Type" msgstr "Τύπος" #. parameter settings -#: plug-ins/common/despeckle.c:456 +#: plug-ins/common/despeckle.c:454 #, fuzzy msgid "Median" msgstr "Βροχή" -#: plug-ins/common/despeckle.c:462 +#: plug-ins/common/despeckle.c:460 #, fuzzy msgid "_Adaptive" msgstr "Προσθετικό" -#: plug-ins/common/despeckle.c:472 +#: plug-ins/common/despeckle.c:470 #, fuzzy msgid "R_ecursive" msgstr "Αναδρομικό" -#: plug-ins/common/despeckle.c:496 plug-ins/common/neon.c:728 +#: plug-ins/common/despeckle.c:494 plug-ins/common/neon.c:727 #: plug-ins/common/nlfilt.c:1083 plug-ins/common/nova.c:359 -#: plug-ins/common/unsharp.c:694 plug-ins/common/whirlpinch.c:588 +#: plug-ins/common/unsharp.c:665 plug-ins/common/whirlpinch.c:588 #: plug-ins/gflare/gflare.c:2686 plug-ins/imagemap/imap_circle.c:278 #, fuzzy msgid "_Radius:" msgstr "Ράδιο" -#: plug-ins/common/despeckle.c:512 +#: plug-ins/common/despeckle.c:510 #, fuzzy msgid "_Black level:" msgstr "Μπλακ Μέταλ" -#: plug-ins/common/despeckle.c:528 +#: plug-ins/common/despeckle.c:526 #, fuzzy msgid "_White level:" msgstr "Επίπεδο:" @@ -3691,7 +3691,7 @@ msgid "_Displace..." msgstr "Σε αναπαραγωγή..." -#: plug-ins/common/displace.c:228 +#: plug-ins/common/displace.c:231 #, fuzzy msgid "Displacing..." msgstr "Σε αναπαραγωγή..." @@ -3736,33 +3736,33 @@ msgid "Difference of Gaussians..." msgstr "/Φίλτρα/Κείμενο/FreeType..." -#: plug-ins/common/dog.c:222 plug-ins/common/dog.c:273 +#: plug-ins/common/dog.c:227 plug-ins/common/dog.c:274 #, fuzzy msgid "DoG Edge Detect" msgstr "Ανίχνευση" -#: plug-ins/common/dog.c:294 +#: plug-ins/common/dog.c:295 #, fuzzy msgid "Smoothing parameters" msgstr "Παράμετροι" -#: plug-ins/common/dog.c:308 +#: plug-ins/common/dog.c:309 #, fuzzy msgid "_Radius 1:" msgstr "Ράδιο" -#: plug-ins/common/dog.c:312 +#: plug-ins/common/dog.c:313 #, fuzzy msgid "R_adius 2:" msgstr "Ράδιο" # -#: plug-ins/common/dog.c:324 plug-ins/common/normalize.c:88 +#: plug-ins/common/dog.c:325 plug-ins/common/normalize.c:88 #, fuzzy msgid "_Normalize" msgstr "Κανονικό" -#: plug-ins/common/dog.c:335 plug-ins/gimpressionist/paper.c:149 +#: plug-ins/common/dog.c:336 plug-ins/gimpressionist/paper.c:149 #, fuzzy msgid "_Invert" msgstr "Αντιστρέφω" @@ -3829,7 +3829,7 @@ msgid "_Emboss..." msgstr "Δημιουργία ανάγλυφης εικόνας" -#: plug-ins/common/emboss.c:374 plug-ins/common/emboss.c:439 +#: plug-ins/common/emboss.c:376 plug-ins/common/emboss.c:439 #, fuzzy msgid "Emboss" msgstr "Δημιουργία ανάγλυφης εικόνας" @@ -3860,7 +3860,7 @@ msgid "En_grave..." msgstr "Σε αποθήκευση..." -#: plug-ins/common/engrave.c:181 +#: plug-ins/common/engrave.c:182 #, fuzzy msgid "Engraving..." msgstr "Σε αποθήκευση..." @@ -4366,45 +4366,45 @@ msgid "_Gaussian Blur..." msgstr "/Φίλτρα/Κείμενο/FreeType..." -#: plug-ins/common/gauss.c:407 +#: plug-ins/common/gauss.c:413 #, fuzzy msgid "Gaussian Blur..." msgstr "/Φίλτρα/Κείμενο/FreeType..." -#: plug-ins/common/gauss.c:460 +#: plug-ins/common/gauss.c:461 #, fuzzy msgid "Gaussian Blur" msgstr "/Φίλτρα/Κείμενο/FreeType..." # #. parameter settings -#: plug-ins/common/gauss.c:483 +#: plug-ins/common/gauss.c:484 #, fuzzy msgid "Blur Radius" msgstr "Μπλούγκρας" -#: plug-ins/common/gauss.c:497 plug-ins/common/jigsaw.c:2456 -#: plug-ins/common/spread.c:378 +#: plug-ins/common/gauss.c:498 plug-ins/common/jigsaw.c:2456 +#: plug-ins/common/spread.c:379 #, fuzzy msgid "_Horizontal:" msgstr "Οριζόντιο" -#: plug-ins/common/gauss.c:501 plug-ins/common/jigsaw.c:2473 -#: plug-ins/common/spread.c:382 +#: plug-ins/common/gauss.c:502 plug-ins/common/jigsaw.c:2473 +#: plug-ins/common/spread.c:383 #, fuzzy msgid "_Vertical:" msgstr "Κατακόρυφη:" -#: plug-ins/common/gauss.c:524 +#: plug-ins/common/gauss.c:525 #, fuzzy msgid "Blur Method" msgstr "Μπλε Τύπος" -#: plug-ins/common/gauss.c:528 +#: plug-ins/common/gauss.c:529 msgid "_IIR" msgstr "" -#: plug-ins/common/gauss.c:529 +#: plug-ins/common/gauss.c:530 #, fuzzy msgid "_RLE" msgstr "RE:" @@ -4726,24 +4726,24 @@ msgid "_Glass Tile..." msgstr "Επιλογή αρχείου..." -#: plug-ins/common/glasstile.c:208 +#: plug-ins/common/glasstile.c:209 #, fuzzy msgid "Glass Tile..." msgstr "Επιλογή αρχείου..." # -#: plug-ins/common/glasstile.c:251 +#: plug-ins/common/glasstile.c:250 #, fuzzy msgid "Glass Tile" msgstr "Κλασσική Μουσική" # -#: plug-ins/common/glasstile.c:282 +#: plug-ins/common/glasstile.c:281 #, fuzzy msgid "Tile _width:" msgstr "Καθορισμός Πλάτους:" -#: plug-ins/common/glasstile.c:296 plug-ins/common/mosaic.c:621 +#: plug-ins/common/glasstile.c:295 plug-ins/common/mosaic.c:621 #, fuzzy msgid "Tile _height:" msgstr "Ύψος εφαρμογιδίου:" @@ -5927,17 +5927,17 @@ msgid "_Neon..." msgstr "Προβολή...." -#: plug-ins/common/neon.c:204 +#: plug-ins/common/neon.c:207 #, fuzzy msgid "Neon..." msgstr "Επίπεδο πάχνης:" -#: plug-ins/common/neon.c:698 +#: plug-ins/common/neon.c:697 #, fuzzy msgid "Neon Detection" msgstr "Ανίχνευση" -#: plug-ins/common/neon.c:743 plug-ins/common/unsharp.c:707 +#: plug-ins/common/neon.c:742 plug-ins/common/unsharp.c:678 #, fuzzy msgid "_Amount:" msgstr "Μετρητής:" @@ -6132,7 +6132,7 @@ msgid "_Scatter RGB..." msgstr "Εκκίνηση μετά από" -#: plug-ins/common/noisify.c:284 +#: plug-ins/common/noisify.c:285 #, fuzzy msgid "Adding Noise..." msgstr "Προσθήκη αρχείων..." @@ -6215,7 +6215,7 @@ msgid "Oili_fy..." msgstr "Εργαλεία" -#: plug-ins/common/oilify.c:188 +#: plug-ins/common/oilify.c:189 #, fuzzy msgid "Oil Painting..." msgstr "Εκτυπώνεται .." @@ -6380,7 +6380,7 @@ msgid "Photocopy" msgstr "Φωτογραφία" -#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:513 +#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:509 #: plug-ins/common/softglow.c:687 #, fuzzy msgid "_Sharpness:" @@ -7106,7 +7106,7 @@ msgid "_Ripple..." msgstr "Αναμονή..." -#: plug-ins/common/ripple.c:219 +#: plug-ins/common/ripple.c:222 #, fuzzy msgid "Rippling..." msgstr "Αναμονή..." @@ -7373,21 +7373,21 @@ msgid "_Selective Gaussian Blur..." msgstr "/Φίλτρα/Κείμενο/FreeType..." -#: plug-ins/common/sel_gauss.c:186 +#: plug-ins/common/sel_gauss.c:187 msgid "Selective Gaussian Blur..." msgstr "" -#: plug-ins/common/sel_gauss.c:224 +#: plug-ins/common/sel_gauss.c:225 msgid "Selective Gaussian Blur" msgstr "" # -#: plug-ins/common/sel_gauss.c:256 +#: plug-ins/common/sel_gauss.c:257 #, fuzzy msgid "_Blur radius:" msgstr "Μπλούγκρας" -#: plug-ins/common/sel_gauss.c:266 +#: plug-ins/common/sel_gauss.c:267 #, fuzzy msgid "_Max. delta:" msgstr "Μάλτα" @@ -7412,12 +7412,12 @@ #. #. * Let the user know what we're doing... #. -#: plug-ins/common/sharpen.c:315 +#: plug-ins/common/sharpen.c:311 #, fuzzy msgid "Sharpening..." msgstr "Σε αποθήκευση..." -#: plug-ins/common/sharpen.c:484 +#: plug-ins/common/sharpen.c:480 #, fuzzy msgid "Sharpen" msgstr "Διαμοιραζόμενα" @@ -7427,7 +7427,7 @@ msgid "_Shift..." msgstr "Αναμονή..." -#: plug-ins/common/shift.c:191 +#: plug-ins/common/shift.c:194 #, fuzzy msgid "Shifting..." msgstr "Αναμονή..." @@ -7677,26 +7677,26 @@ msgid "_Sobel..." msgstr "Πηγή" -#: plug-ins/common/sobel.c:226 +#: plug-ins/common/sobel.c:227 #, fuzzy msgid "Sobel Edge Detection" msgstr "Επιλογή" -#: plug-ins/common/sobel.c:248 +#: plug-ins/common/sobel.c:249 #, fuzzy msgid "Sobel _Horizontally" msgstr "_Οριζόντια" -#: plug-ins/common/sobel.c:260 +#: plug-ins/common/sobel.c:261 #, fuzzy msgid "Sobel _Vertically" msgstr "Κατακόρυ_φα" -#: plug-ins/common/sobel.c:272 +#: plug-ins/common/sobel.c:273 msgid "_Keep sign of result (one direction only)" msgstr "" -#: plug-ins/common/sobel.c:358 +#: plug-ins/common/sobel.c:359 msgid "Sobel Edge Detecting..." msgstr "" @@ -8053,17 +8053,17 @@ msgid "Sp_read..." msgstr "Ανάγνωση..." -#: plug-ins/common/spread.c:179 +#: plug-ins/common/spread.c:182 #, fuzzy msgid "Spreading..." msgstr "Ανάγνωση..." -#: plug-ins/common/spread.c:345 +#: plug-ins/common/spread.c:346 #, fuzzy msgid "Spread" msgstr "SC/XSpread" -#: plug-ins/common/spread.c:363 +#: plug-ins/common/spread.c:364 #, fuzzy msgid "Spread Amount" msgstr "Άπλωμα" @@ -8378,7 +8378,8 @@ msgid "_Tile..." msgstr "_Φίλτρο..." -#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:321 +#. Set the tile cache size +#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:320 #, fuzzy msgid "Tiling..." msgstr "Αναμονή..." @@ -8403,52 +8404,52 @@ msgstr "Όλα τα αρχεία" #. Get the preview image -#: plug-ins/common/tileit.c:364 +#: plug-ins/common/tileit.c:363 #, fuzzy msgid "TileIt" msgstr "Παράθεση" #. Area for buttons etc #. Flip -#: plug-ins/common/tileit.c:407 plug-ins/ifscompose/ifscompose.c:628 +#: plug-ins/common/tileit.c:406 plug-ins/ifscompose/ifscompose.c:628 #, fuzzy msgid "Flip" msgstr "Δισκέττα" -#: plug-ins/common/tileit.c:455 +#: plug-ins/common/tileit.c:454 #, fuzzy msgid "A_ll tiles" msgstr "Όλα τα αρχεία" # -#: plug-ins/common/tileit.c:469 +#: plug-ins/common/tileit.c:468 #, fuzzy msgid "Al_ternate tiles" msgstr "Ενναλακτικές:" -#: plug-ins/common/tileit.c:483 +#: plug-ins/common/tileit.c:482 #, fuzzy msgid "_Explicit tile" msgstr "Ρητή απόκρυψη" -#: plug-ins/common/tileit.c:489 +#: plug-ins/common/tileit.c:488 #, fuzzy msgid "Ro_w:" msgstr "Σειρά:" -#: plug-ins/common/tileit.c:513 +#: plug-ins/common/tileit.c:512 #, fuzzy msgid "Col_umn:" msgstr "Στήλες:" # -#: plug-ins/common/tileit.c:565 +#: plug-ins/common/tileit.c:564 #, fuzzy msgid "O_pacity:" msgstr "Διαφάνεια:" #. Lower frame saying howmany segments -#: plug-ins/common/tileit.c:574 +#: plug-ins/common/tileit.c:573 #, fuzzy msgid "Number of Segments" msgstr "Τμήματα:" @@ -8613,16 +8614,16 @@ msgid "Unit Editor" msgstr "Επεξεργαστής Μονάδων" -#: plug-ins/common/unsharp.c:149 +#: plug-ins/common/unsharp.c:143 msgid "_Unsharp Mask..." msgstr "" -#: plug-ins/common/unsharp.c:493 +#: plug-ins/common/unsharp.c:468 #, fuzzy msgid "Merging..." msgstr "Γίνεται αναζήτηση..." -#: plug-ins/common/unsharp.c:664 +#: plug-ins/common/unsharp.c:635 msgid "Unsharp Mask" msgstr "" @@ -9812,23 +9813,23 @@ msgstr "Εστίαση" # -#: plug-ins/gfig/gfig-bezier.c:452 +#: plug-ins/gfig/gfig-bezier.c:448 #, fuzzy msgid "Closed" msgstr "Κλείσιμο" # -#: plug-ins/gfig/gfig-bezier.c:457 +#: plug-ins/gfig/gfig-bezier.c:453 #, fuzzy msgid "Close curve on completion" msgstr "Κλείσιμο τρέχουσας σύνδεσης" -#: plug-ins/gfig/gfig-bezier.c:462 +#: plug-ins/gfig/gfig-bezier.c:458 #, fuzzy msgid "Show Line Frame" msgstr "Εμφάνιση πλαισίου" -#: plug-ins/gfig/gfig-bezier.c:467 +#: plug-ins/gfig/gfig-bezier.c:463 msgid "Draws lines between the control points. Only during curve creation" msgstr "" diff -uraN gimp-2.2.0/po-plug-ins/en_CA.gmo gimp-2.2.1/po-plug-ins/en_CA.gmo --- gimp-2.2.0/po-plug-ins/en_CA.gmo 2004-12-19 03:34:22.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/en_CA.gmo 2004-12-28 16:59:06.000000000 +0100 @@ -478,7 +478,7 @@ cmcyancyan_ke-_mailgreengzip archivehueinvalid formatted GFlare file: %s k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftpixels/%aredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsin^p, steppedsin^p-based functionsome sort of error with the file extension or lack thereofthe _Whole Screento alphavaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: gimp plug-ins Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-12-12 14:31-0400 Last-Translator: Adam Weinberger Language-Team: English/Canada diff -uraN gimp-2.2.0/po-plug-ins/en_CA.po gimp-2.2.1/po-plug-ins/en_CA.po --- gimp-2.2.0/po-plug-ins/en_CA.po 2004-12-19 03:34:08.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/en_CA.po 2004-12-28 16:58:52.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: gimp plug-ins\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-12-12 14:31-0400\n" "Last-Translator: Adam Weinberger \n" "Language-Team: English/Canada \n" @@ -952,7 +952,7 @@ msgid "Antialiasing quality. Higher is better, but slower" msgstr "Antialiasing quality. Higher is better, but slower" -#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:720 +#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:691 #: plug-ins/common/wind.c:993 plug-ins/imagemap/imap_preferences.c:539 msgid "_Threshold:" msgstr "_Threshold:" @@ -2073,12 +2073,12 @@ msgstr "Orientation" #: plug-ins/common/blinds.c:259 plug-ins/common/ripple.c:539 -#: plug-ins/common/tileit.c:419 plug-ins/pagecurl/pagecurl.c:530 +#: plug-ins/common/tileit.c:418 plug-ins/pagecurl/pagecurl.c:530 msgid "_Horizontal" msgstr "_Horizontal" #: plug-ins/common/blinds.c:260 plug-ins/common/ripple.c:540 -#: plug-ins/common/tileit.c:429 plug-ins/pagecurl/pagecurl.c:529 +#: plug-ins/common/tileit.c:428 plug-ins/pagecurl/pagecurl.c:529 msgid "_Vertical" msgstr "_Vertical" @@ -2099,7 +2099,7 @@ msgid "_Blur" msgstr "_Blur" -#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:383 +#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:432 msgid "Blurring..." msgstr "Blurring..." @@ -2210,23 +2210,23 @@ msgid "Ca_rtoon..." msgstr "Ca_rtoon..." -#: plug-ins/common/cartoon.c:228 plug-ins/common/dog.c:246 -#: plug-ins/common/gauss.c:430 plug-ins/common/neon.c:222 -#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:203 +#: plug-ins/common/cartoon.c:229 plug-ins/common/dog.c:247 +#: plug-ins/common/gauss.c:431 plug-ins/common/neon.c:221 +#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:204 #: plug-ins/common/softglow.c:220 plug-ins/gflare/gflare.c:972 #: plug-ins/sgi/sgi.c:528 plug-ins/xjt/xjt.c:1673 msgid "Cannot operate on indexed color images." msgstr "Cannot operate on indexed colour images." -#: plug-ins/common/cartoon.c:807 +#: plug-ins/common/cartoon.c:808 msgid "Cartoon" msgstr "Cartoon" -#: plug-ins/common/cartoon.c:837 plug-ins/common/photocopy.c:867 +#: plug-ins/common/cartoon.c:838 plug-ins/common/photocopy.c:867 msgid "_Mask radius:" msgstr "_Mask radius:" -#: plug-ins/common/cartoon.c:851 +#: plug-ins/common/cartoon.c:852 msgid "_Percent black:" msgstr "_Percent black:" @@ -2384,28 +2384,28 @@ msgid "Colorify Custom Color" msgstr "Colourify Custom Colour" -#: plug-ins/common/colortoalpha.c:105 +#: plug-ins/common/colortoalpha.c:104 msgid "Color to _Alpha..." msgstr "Colour to _Alpha..." -#: plug-ins/common/colortoalpha.c:183 +#: plug-ins/common/colortoalpha.c:181 msgid "Removing color..." msgstr "Removing colour..." -#: plug-ins/common/colortoalpha.c:364 +#: plug-ins/common/colortoalpha.c:377 msgid "Color to Alpha" msgstr "Colour to Alpha" -#: plug-ins/common/colortoalpha.c:389 plug-ins/common/mapcolor.c:424 +#: plug-ins/common/colortoalpha.c:402 plug-ins/common/mapcolor.c:424 #: plug-ins/gfli/gfli.c:835 plug-ins/gfli/gfli.c:898 msgid "From:" msgstr "From:" -#: plug-ins/common/colortoalpha.c:393 +#: plug-ins/common/colortoalpha.c:406 msgid "Color to Alpha Color Picker" msgstr "Colour to Alpha Colour Picker" -#: plug-ins/common/colortoalpha.c:407 +#: plug-ins/common/colortoalpha.c:420 msgid "to alpha" msgstr "to alpha" @@ -2716,23 +2716,23 @@ msgid "_Cubism..." msgstr "_Cubism..." -#: plug-ins/common/cubism.c:267 +#: plug-ins/common/cubism.c:269 msgid "Cubism" msgstr "Cubism" -#: plug-ins/common/cubism.c:296 +#: plug-ins/common/cubism.c:298 msgid "_Tile size:" msgstr "_Tile size:" -#: plug-ins/common/cubism.c:309 +#: plug-ins/common/cubism.c:311 msgid "T_ile saturation:" msgstr "T_ile saturation:" -#: plug-ins/common/cubism.c:320 +#: plug-ins/common/cubism.c:322 msgid "_Use background color" msgstr "_Use background colour" -#: plug-ins/common/cubism.c:410 +#: plug-ins/common/cubism.c:412 msgid "Cubistic Transformation..." msgstr "Cubistic Transformation..." @@ -3099,42 +3099,42 @@ msgid "Des_peckle..." msgstr "Des_peckle..." -#: plug-ins/common/despeckle.c:420 plug-ins/common/despeckle.c:642 +#: plug-ins/common/despeckle.c:418 plug-ins/common/despeckle.c:640 msgid "Despeckle" msgstr "Despeckle" #. #. * Filter type controls... #. -#: plug-ins/common/despeckle.c:446 plug-ins/gimpressionist/orientmap.c:616 +#: plug-ins/common/despeckle.c:444 plug-ins/gimpressionist/orientmap.c:616 msgid "Type" msgstr "Type" #. parameter settings -#: plug-ins/common/despeckle.c:456 +#: plug-ins/common/despeckle.c:454 msgid "Median" msgstr "Median" -#: plug-ins/common/despeckle.c:462 +#: plug-ins/common/despeckle.c:460 msgid "_Adaptive" msgstr "_Adaptive" -#: plug-ins/common/despeckle.c:472 +#: plug-ins/common/despeckle.c:470 msgid "R_ecursive" msgstr "R_ecursive" -#: plug-ins/common/despeckle.c:496 plug-ins/common/neon.c:728 +#: plug-ins/common/despeckle.c:494 plug-ins/common/neon.c:727 #: plug-ins/common/nlfilt.c:1083 plug-ins/common/nova.c:359 -#: plug-ins/common/unsharp.c:694 plug-ins/common/whirlpinch.c:588 +#: plug-ins/common/unsharp.c:665 plug-ins/common/whirlpinch.c:588 #: plug-ins/gflare/gflare.c:2686 plug-ins/imagemap/imap_circle.c:278 msgid "_Radius:" msgstr "_Radius:" -#: plug-ins/common/despeckle.c:512 +#: plug-ins/common/despeckle.c:510 msgid "_Black level:" msgstr "_Black level:" -#: plug-ins/common/despeckle.c:528 +#: plug-ins/common/despeckle.c:526 msgid "_White level:" msgstr "_White level:" @@ -3220,7 +3220,7 @@ msgid "_Displace..." msgstr "_Displace..." -#: plug-ins/common/displace.c:228 +#: plug-ins/common/displace.c:231 msgid "Displacing..." msgstr "Displacing..." @@ -3257,27 +3257,27 @@ msgid "Difference of Gaussians..." msgstr "Difference of Gaussians..." -#: plug-ins/common/dog.c:222 plug-ins/common/dog.c:273 +#: plug-ins/common/dog.c:227 plug-ins/common/dog.c:274 msgid "DoG Edge Detect" msgstr "DoG Edge Detect" -#: plug-ins/common/dog.c:294 +#: plug-ins/common/dog.c:295 msgid "Smoothing parameters" msgstr "Smoothing parameters" -#: plug-ins/common/dog.c:308 +#: plug-ins/common/dog.c:309 msgid "_Radius 1:" msgstr "_Radius 1:" -#: plug-ins/common/dog.c:312 +#: plug-ins/common/dog.c:313 msgid "R_adius 2:" msgstr "R_adius 2:" -#: plug-ins/common/dog.c:324 plug-ins/common/normalize.c:88 +#: plug-ins/common/dog.c:325 plug-ins/common/normalize.c:88 msgid "_Normalize" msgstr "_Normalize" -#: plug-ins/common/dog.c:335 plug-ins/gimpressionist/paper.c:149 +#: plug-ins/common/dog.c:336 plug-ins/gimpressionist/paper.c:149 msgid "_Invert" msgstr "_Invert" @@ -3329,7 +3329,7 @@ msgid "_Emboss..." msgstr "_Emboss..." -#: plug-ins/common/emboss.c:374 plug-ins/common/emboss.c:439 +#: plug-ins/common/emboss.c:376 plug-ins/common/emboss.c:439 msgid "Emboss" msgstr "Emboss" @@ -3353,7 +3353,7 @@ msgid "En_grave..." msgstr "En_grave..." -#: plug-ins/common/engrave.c:181 +#: plug-ins/common/engrave.c:182 msgid "Engraving..." msgstr "Engraving..." @@ -3756,38 +3756,38 @@ msgid "_Gaussian Blur..." msgstr "_Gaussian Blur..." -#: plug-ins/common/gauss.c:407 +#: plug-ins/common/gauss.c:413 msgid "Gaussian Blur..." msgstr "Gaussian Blur..." -#: plug-ins/common/gauss.c:460 +#: plug-ins/common/gauss.c:461 msgid "Gaussian Blur" msgstr "Gaussian Blur" #. parameter settings -#: plug-ins/common/gauss.c:483 +#: plug-ins/common/gauss.c:484 msgid "Blur Radius" msgstr "Blur Radius" -#: plug-ins/common/gauss.c:497 plug-ins/common/jigsaw.c:2456 -#: plug-ins/common/spread.c:378 +#: plug-ins/common/gauss.c:498 plug-ins/common/jigsaw.c:2456 +#: plug-ins/common/spread.c:379 msgid "_Horizontal:" msgstr "_Horizontal:" -#: plug-ins/common/gauss.c:501 plug-ins/common/jigsaw.c:2473 -#: plug-ins/common/spread.c:382 +#: plug-ins/common/gauss.c:502 plug-ins/common/jigsaw.c:2473 +#: plug-ins/common/spread.c:383 msgid "_Vertical:" msgstr "_Vertical:" -#: plug-ins/common/gauss.c:524 +#: plug-ins/common/gauss.c:525 msgid "Blur Method" msgstr "Blur Method" -#: plug-ins/common/gauss.c:528 +#: plug-ins/common/gauss.c:529 msgid "_IIR" msgstr "_IIR" -#: plug-ins/common/gauss.c:529 +#: plug-ins/common/gauss.c:530 msgid "_RLE" msgstr "_RLE" @@ -4091,19 +4091,19 @@ msgid "_Glass Tile..." msgstr "_Glass Tile..." -#: plug-ins/common/glasstile.c:208 +#: plug-ins/common/glasstile.c:209 msgid "Glass Tile..." msgstr "Glass Tile..." -#: plug-ins/common/glasstile.c:251 +#: plug-ins/common/glasstile.c:250 msgid "Glass Tile" msgstr "Glass Tile" -#: plug-ins/common/glasstile.c:282 +#: plug-ins/common/glasstile.c:281 msgid "Tile _width:" msgstr "Tile _width:" -#: plug-ins/common/glasstile.c:296 plug-ins/common/mosaic.c:621 +#: plug-ins/common/glasstile.c:295 plug-ins/common/mosaic.c:621 msgid "Tile _height:" msgstr "Tile _height:" @@ -5085,15 +5085,15 @@ msgid "_Neon..." msgstr "_Neon..." -#: plug-ins/common/neon.c:204 +#: plug-ins/common/neon.c:207 msgid "Neon..." msgstr "Neon..." -#: plug-ins/common/neon.c:698 +#: plug-ins/common/neon.c:697 msgid "Neon Detection" msgstr "Neon Detection" -#: plug-ins/common/neon.c:743 plug-ins/common/unsharp.c:707 +#: plug-ins/common/neon.c:742 plug-ins/common/unsharp.c:678 msgid "_Amount:" msgstr "_Amount:" @@ -5252,7 +5252,7 @@ msgid "_Scatter RGB..." msgstr "_Scatter RGB..." -#: plug-ins/common/noisify.c:284 +#: plug-ins/common/noisify.c:285 msgid "Adding Noise..." msgstr "Adding Noise..." @@ -5321,7 +5321,7 @@ msgid "Oili_fy..." msgstr "Oili_fy..." -#: plug-ins/common/oilify.c:188 +#: plug-ins/common/oilify.c:189 msgid "Oil Painting..." msgstr "Oil Painting..." @@ -5456,7 +5456,7 @@ msgid "Photocopy" msgstr "Photocopy" -#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:513 +#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:509 #: plug-ins/common/softglow.c:687 msgid "_Sharpness:" msgstr "_Sharpness:" @@ -6091,7 +6091,7 @@ msgid "_Ripple..." msgstr "_Ripple..." -#: plug-ins/common/ripple.c:219 +#: plug-ins/common/ripple.c:222 msgid "Rippling..." msgstr "Rippling..." @@ -6309,19 +6309,19 @@ msgid "_Selective Gaussian Blur..." msgstr "_Selective Gaussian Blur..." -#: plug-ins/common/sel_gauss.c:186 +#: plug-ins/common/sel_gauss.c:187 msgid "Selective Gaussian Blur..." msgstr "Selective Gaussian Blur..." -#: plug-ins/common/sel_gauss.c:224 +#: plug-ins/common/sel_gauss.c:225 msgid "Selective Gaussian Blur" msgstr "Selective Gaussian Blur" -#: plug-ins/common/sel_gauss.c:256 +#: plug-ins/common/sel_gauss.c:257 msgid "_Blur radius:" msgstr "_Blur radius:" -#: plug-ins/common/sel_gauss.c:266 +#: plug-ins/common/sel_gauss.c:267 msgid "_Max. delta:" msgstr "_Max. delta:" @@ -6340,11 +6340,11 @@ #. #. * Let the user know what we're doing... #. -#: plug-ins/common/sharpen.c:315 +#: plug-ins/common/sharpen.c:311 msgid "Sharpening..." msgstr "Sharpening..." -#: plug-ins/common/sharpen.c:484 +#: plug-ins/common/sharpen.c:480 msgid "Sharpen" msgstr "Sharpen" @@ -6352,7 +6352,7 @@ msgid "_Shift..." msgstr "_Shift..." -#: plug-ins/common/shift.c:191 +#: plug-ins/common/shift.c:194 msgid "Shifting..." msgstr "Shifting..." @@ -6547,23 +6547,23 @@ msgid "_Sobel..." msgstr "_Sobel..." -#: plug-ins/common/sobel.c:226 +#: plug-ins/common/sobel.c:227 msgid "Sobel Edge Detection" msgstr "Sobel Edge Detection" -#: plug-ins/common/sobel.c:248 +#: plug-ins/common/sobel.c:249 msgid "Sobel _Horizontally" msgstr "Sobel _Horizontally" -#: plug-ins/common/sobel.c:260 +#: plug-ins/common/sobel.c:261 msgid "Sobel _Vertically" msgstr "Sobel _Vertically" -#: plug-ins/common/sobel.c:272 +#: plug-ins/common/sobel.c:273 msgid "_Keep sign of result (one direction only)" msgstr "_Keep sign of result (one direction only)" -#: plug-ins/common/sobel.c:358 +#: plug-ins/common/sobel.c:359 msgid "Sobel Edge Detecting..." msgstr "Sobel Edge Detecting..." @@ -6861,15 +6861,15 @@ msgid "Sp_read..." msgstr "Sp_read..." -#: plug-ins/common/spread.c:179 +#: plug-ins/common/spread.c:182 msgid "Spreading..." msgstr "Spreading..." -#: plug-ins/common/spread.c:345 +#: plug-ins/common/spread.c:346 msgid "Spread" msgstr "Spread" -#: plug-ins/common/spread.c:363 +#: plug-ins/common/spread.c:364 msgid "Spread Amount" msgstr "Spread Amount" @@ -7155,7 +7155,8 @@ msgid "_Tile..." msgstr "_Tile..." -#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:321 +#. Set the tile cache size +#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:320 msgid "Tiling..." msgstr "Tiling..." @@ -7176,42 +7177,42 @@ msgstr "_Small Tiles..." #. Get the preview image -#: plug-ins/common/tileit.c:364 +#: plug-ins/common/tileit.c:363 msgid "TileIt" msgstr "TileIt" #. Area for buttons etc #. Flip -#: plug-ins/common/tileit.c:407 plug-ins/ifscompose/ifscompose.c:628 +#: plug-ins/common/tileit.c:406 plug-ins/ifscompose/ifscompose.c:628 msgid "Flip" msgstr "Flip" -#: plug-ins/common/tileit.c:455 +#: plug-ins/common/tileit.c:454 msgid "A_ll tiles" msgstr "A_ll tiles" -#: plug-ins/common/tileit.c:469 +#: plug-ins/common/tileit.c:468 msgid "Al_ternate tiles" msgstr "Al_ternate tiles" -#: plug-ins/common/tileit.c:483 +#: plug-ins/common/tileit.c:482 msgid "_Explicit tile" msgstr "_Explicit tile" -#: plug-ins/common/tileit.c:489 +#: plug-ins/common/tileit.c:488 msgid "Ro_w:" msgstr "Ro_w:" -#: plug-ins/common/tileit.c:513 +#: plug-ins/common/tileit.c:512 msgid "Col_umn:" msgstr "Col_umn:" -#: plug-ins/common/tileit.c:565 +#: plug-ins/common/tileit.c:564 msgid "O_pacity:" msgstr "O_pacity:" #. Lower frame saying howmany segments -#: plug-ins/common/tileit.c:574 +#: plug-ins/common/tileit.c:573 msgid "Number of Segments" msgstr "Number of Segments" @@ -7359,15 +7360,15 @@ msgid "Unit Editor" msgstr "Unit Editor" -#: plug-ins/common/unsharp.c:149 +#: plug-ins/common/unsharp.c:143 msgid "_Unsharp Mask..." msgstr "_Unsharp Mask..." -#: plug-ins/common/unsharp.c:493 +#: plug-ins/common/unsharp.c:468 msgid "Merging..." msgstr "Merging..." -#: plug-ins/common/unsharp.c:664 +#: plug-ins/common/unsharp.c:635 msgid "Unsharp Mask" msgstr "Unsharp Mask" @@ -8405,19 +8406,19 @@ msgid "_Zoom:" msgstr "_Zoom:" -#: plug-ins/gfig/gfig-bezier.c:452 +#: plug-ins/gfig/gfig-bezier.c:448 msgid "Closed" msgstr "Closed" -#: plug-ins/gfig/gfig-bezier.c:457 +#: plug-ins/gfig/gfig-bezier.c:453 msgid "Close curve on completion" msgstr "Close curve on completion" -#: plug-ins/gfig/gfig-bezier.c:462 +#: plug-ins/gfig/gfig-bezier.c:458 msgid "Show Line Frame" msgstr "Show Line Frame" -#: plug-ins/gfig/gfig-bezier.c:467 +#: plug-ins/gfig/gfig-bezier.c:463 msgid "Draws lines between the control points. Only during curve creation" msgstr "Draws lines between the control points. Only during curve creation" diff -uraN gimp-2.2.0/po-plug-ins/en_GB.gmo gimp-2.2.1/po-plug-ins/en_GB.gmo --- gimp-2.2.0/po-plug-ins/en_GB.gmo 2004-12-19 03:34:22.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/en_GB.gmo 2004-12-28 16:59:06.000000000 +0100 @@ -474,7 +474,7 @@ cmcyancyan_ke-_mailgreengzip archivehueinvalid formatted GFlare file: %s k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftpixels/%aredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsin^p, steppedsin^p-based functionsome sort of error with the file extension or lack thereofthe _Whole Screento alphavaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: gimp CVS Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-11-21 22:56+0100 Last-Translator: David Lodge Language-Team: diff -uraN gimp-2.2.0/po-plug-ins/en_GB.po gimp-2.2.1/po-plug-ins/en_GB.po --- gimp-2.2.0/po-plug-ins/en_GB.po 2004-12-19 03:34:08.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/en_GB.po 2004-12-28 16:58:52.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: gimp CVS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-11-21 22:56+0100\n" "Last-Translator: David Lodge \n" "Language-Team: \n" @@ -951,7 +951,7 @@ msgid "Antialiasing quality. Higher is better, but slower" msgstr "Antialiasing quality. Higher is better, but slower" -#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:720 +#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:691 #: plug-ins/common/wind.c:993 plug-ins/imagemap/imap_preferences.c:539 msgid "_Threshold:" msgstr "_Threshold:" @@ -2072,12 +2072,12 @@ msgstr "Orientation" #: plug-ins/common/blinds.c:259 plug-ins/common/ripple.c:539 -#: plug-ins/common/tileit.c:419 plug-ins/pagecurl/pagecurl.c:530 +#: plug-ins/common/tileit.c:418 plug-ins/pagecurl/pagecurl.c:530 msgid "_Horizontal" msgstr "_Horizontal" #: plug-ins/common/blinds.c:260 plug-ins/common/ripple.c:540 -#: plug-ins/common/tileit.c:429 plug-ins/pagecurl/pagecurl.c:529 +#: plug-ins/common/tileit.c:428 plug-ins/pagecurl/pagecurl.c:529 msgid "_Vertical" msgstr "_Vertical" @@ -2098,7 +2098,7 @@ msgid "_Blur" msgstr "_Blur" -#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:383 +#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:432 msgid "Blurring..." msgstr "Blurring..." @@ -2210,23 +2210,23 @@ msgid "Ca_rtoon..." msgstr "Cartoon" -#: plug-ins/common/cartoon.c:228 plug-ins/common/dog.c:246 -#: plug-ins/common/gauss.c:430 plug-ins/common/neon.c:222 -#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:203 +#: plug-ins/common/cartoon.c:229 plug-ins/common/dog.c:247 +#: plug-ins/common/gauss.c:431 plug-ins/common/neon.c:221 +#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:204 #: plug-ins/common/softglow.c:220 plug-ins/gflare/gflare.c:972 #: plug-ins/sgi/sgi.c:528 plug-ins/xjt/xjt.c:1673 msgid "Cannot operate on indexed color images." msgstr "Cannot operate on indexed colour images." -#: plug-ins/common/cartoon.c:807 +#: plug-ins/common/cartoon.c:808 msgid "Cartoon" msgstr "Cartoon" -#: plug-ins/common/cartoon.c:837 plug-ins/common/photocopy.c:867 +#: plug-ins/common/cartoon.c:838 plug-ins/common/photocopy.c:867 msgid "_Mask radius:" msgstr "_Mask radius:" -#: plug-ins/common/cartoon.c:851 +#: plug-ins/common/cartoon.c:852 msgid "_Percent black:" msgstr "_Percent black:" @@ -2384,28 +2384,28 @@ msgid "Colorify Custom Color" msgstr "Colourify Custom Colour" -#: plug-ins/common/colortoalpha.c:105 +#: plug-ins/common/colortoalpha.c:104 msgid "Color to _Alpha..." msgstr "Colour to _Alpha..." -#: plug-ins/common/colortoalpha.c:183 +#: plug-ins/common/colortoalpha.c:181 msgid "Removing color..." msgstr "Removing colour..." -#: plug-ins/common/colortoalpha.c:364 +#: plug-ins/common/colortoalpha.c:377 msgid "Color to Alpha" msgstr "Colour to Alpha" -#: plug-ins/common/colortoalpha.c:389 plug-ins/common/mapcolor.c:424 +#: plug-ins/common/colortoalpha.c:402 plug-ins/common/mapcolor.c:424 #: plug-ins/gfli/gfli.c:835 plug-ins/gfli/gfli.c:898 msgid "From:" msgstr "From:" -#: plug-ins/common/colortoalpha.c:393 +#: plug-ins/common/colortoalpha.c:406 msgid "Color to Alpha Color Picker" msgstr "Colour to Alpha Colour Picker" -#: plug-ins/common/colortoalpha.c:407 +#: plug-ins/common/colortoalpha.c:420 msgid "to alpha" msgstr "to alpha" @@ -2716,23 +2716,23 @@ msgid "_Cubism..." msgstr "_Cubism..." -#: plug-ins/common/cubism.c:267 +#: plug-ins/common/cubism.c:269 msgid "Cubism" msgstr "Cubism" -#: plug-ins/common/cubism.c:296 +#: plug-ins/common/cubism.c:298 msgid "_Tile size:" msgstr "_Tile size:" -#: plug-ins/common/cubism.c:309 +#: plug-ins/common/cubism.c:311 msgid "T_ile saturation:" msgstr "T_ile saturation:" -#: plug-ins/common/cubism.c:320 +#: plug-ins/common/cubism.c:322 msgid "_Use background color" msgstr "_Use background colour" -#: plug-ins/common/cubism.c:410 +#: plug-ins/common/cubism.c:412 msgid "Cubistic Transformation..." msgstr "Cubistic Transformation..." @@ -3099,42 +3099,42 @@ msgid "Des_peckle..." msgstr "Des_peckle..." -#: plug-ins/common/despeckle.c:420 plug-ins/common/despeckle.c:642 +#: plug-ins/common/despeckle.c:418 plug-ins/common/despeckle.c:640 msgid "Despeckle" msgstr "Despeckle" #. #. * Filter type controls... #. -#: plug-ins/common/despeckle.c:446 plug-ins/gimpressionist/orientmap.c:616 +#: plug-ins/common/despeckle.c:444 plug-ins/gimpressionist/orientmap.c:616 msgid "Type" msgstr "Type" #. parameter settings -#: plug-ins/common/despeckle.c:456 +#: plug-ins/common/despeckle.c:454 msgid "Median" msgstr "Median" -#: plug-ins/common/despeckle.c:462 +#: plug-ins/common/despeckle.c:460 msgid "_Adaptive" msgstr "_Adaptive" -#: plug-ins/common/despeckle.c:472 +#: plug-ins/common/despeckle.c:470 msgid "R_ecursive" msgstr "R_ecursive" -#: plug-ins/common/despeckle.c:496 plug-ins/common/neon.c:728 +#: plug-ins/common/despeckle.c:494 plug-ins/common/neon.c:727 #: plug-ins/common/nlfilt.c:1083 plug-ins/common/nova.c:359 -#: plug-ins/common/unsharp.c:694 plug-ins/common/whirlpinch.c:588 +#: plug-ins/common/unsharp.c:665 plug-ins/common/whirlpinch.c:588 #: plug-ins/gflare/gflare.c:2686 plug-ins/imagemap/imap_circle.c:278 msgid "_Radius:" msgstr "_Radius:" -#: plug-ins/common/despeckle.c:512 +#: plug-ins/common/despeckle.c:510 msgid "_Black level:" msgstr "_Black level:" -#: plug-ins/common/despeckle.c:528 +#: plug-ins/common/despeckle.c:526 msgid "_White level:" msgstr "_White level:" @@ -3220,7 +3220,7 @@ msgid "_Displace..." msgstr "_Displace..." -#: plug-ins/common/displace.c:228 +#: plug-ins/common/displace.c:231 msgid "Displacing..." msgstr "Displacing..." @@ -3257,27 +3257,27 @@ msgid "Difference of Gaussians..." msgstr "Difference of Gaussians..." -#: plug-ins/common/dog.c:222 plug-ins/common/dog.c:273 +#: plug-ins/common/dog.c:227 plug-ins/common/dog.c:274 msgid "DoG Edge Detect" msgstr "DoG Edge Detect" -#: plug-ins/common/dog.c:294 +#: plug-ins/common/dog.c:295 msgid "Smoothing parameters" msgstr "Smoothing parameters" -#: plug-ins/common/dog.c:308 +#: plug-ins/common/dog.c:309 msgid "_Radius 1:" msgstr "_Radius 1:" -#: plug-ins/common/dog.c:312 +#: plug-ins/common/dog.c:313 msgid "R_adius 2:" msgstr "R_adius 2:" -#: plug-ins/common/dog.c:324 plug-ins/common/normalize.c:88 +#: plug-ins/common/dog.c:325 plug-ins/common/normalize.c:88 msgid "_Normalize" msgstr "_Normalize" -#: plug-ins/common/dog.c:335 plug-ins/gimpressionist/paper.c:149 +#: plug-ins/common/dog.c:336 plug-ins/gimpressionist/paper.c:149 msgid "_Invert" msgstr "_Invert" @@ -3329,7 +3329,7 @@ msgid "_Emboss..." msgstr "_Emboss..." -#: plug-ins/common/emboss.c:374 plug-ins/common/emboss.c:439 +#: plug-ins/common/emboss.c:376 plug-ins/common/emboss.c:439 msgid "Emboss" msgstr "Emboss" @@ -3353,7 +3353,7 @@ msgid "En_grave..." msgstr "En_grave..." -#: plug-ins/common/engrave.c:181 +#: plug-ins/common/engrave.c:182 msgid "Engraving..." msgstr "Engraving..." @@ -3756,38 +3756,38 @@ msgid "_Gaussian Blur..." msgstr "_Gaussian Blur..." -#: plug-ins/common/gauss.c:407 +#: plug-ins/common/gauss.c:413 msgid "Gaussian Blur..." msgstr "Gaussian Blur..." -#: plug-ins/common/gauss.c:460 +#: plug-ins/common/gauss.c:461 msgid "Gaussian Blur" msgstr "Gaussian Blur" #. parameter settings -#: plug-ins/common/gauss.c:483 +#: plug-ins/common/gauss.c:484 msgid "Blur Radius" msgstr "Blur Radius" -#: plug-ins/common/gauss.c:497 plug-ins/common/jigsaw.c:2456 -#: plug-ins/common/spread.c:378 +#: plug-ins/common/gauss.c:498 plug-ins/common/jigsaw.c:2456 +#: plug-ins/common/spread.c:379 msgid "_Horizontal:" msgstr "_Horizontal:" -#: plug-ins/common/gauss.c:501 plug-ins/common/jigsaw.c:2473 -#: plug-ins/common/spread.c:382 +#: plug-ins/common/gauss.c:502 plug-ins/common/jigsaw.c:2473 +#: plug-ins/common/spread.c:383 msgid "_Vertical:" msgstr "_Vertical:" -#: plug-ins/common/gauss.c:524 +#: plug-ins/common/gauss.c:525 msgid "Blur Method" msgstr "Blur Method" -#: plug-ins/common/gauss.c:528 +#: plug-ins/common/gauss.c:529 msgid "_IIR" msgstr "_IIR" -#: plug-ins/common/gauss.c:529 +#: plug-ins/common/gauss.c:530 msgid "_RLE" msgstr "_RLE" @@ -4091,19 +4091,19 @@ msgid "_Glass Tile..." msgstr "_Glass Tile..." -#: plug-ins/common/glasstile.c:208 +#: plug-ins/common/glasstile.c:209 msgid "Glass Tile..." msgstr "Glass Tile..." -#: plug-ins/common/glasstile.c:251 +#: plug-ins/common/glasstile.c:250 msgid "Glass Tile" msgstr "Glass Tile" -#: plug-ins/common/glasstile.c:282 +#: plug-ins/common/glasstile.c:281 msgid "Tile _width:" msgstr "Tile _width:" -#: plug-ins/common/glasstile.c:296 plug-ins/common/mosaic.c:621 +#: plug-ins/common/glasstile.c:295 plug-ins/common/mosaic.c:621 msgid "Tile _height:" msgstr "Tile _height:" @@ -5085,15 +5085,15 @@ msgid "_Neon..." msgstr "_Neon..." -#: plug-ins/common/neon.c:204 +#: plug-ins/common/neon.c:207 msgid "Neon..." msgstr "Neon..." -#: plug-ins/common/neon.c:698 +#: plug-ins/common/neon.c:697 msgid "Neon Detection" msgstr "Neon Detection" -#: plug-ins/common/neon.c:743 plug-ins/common/unsharp.c:707 +#: plug-ins/common/neon.c:742 plug-ins/common/unsharp.c:678 msgid "_Amount:" msgstr "_Amount:" @@ -5252,7 +5252,7 @@ msgid "_Scatter RGB..." msgstr "_Scatter RGB..." -#: plug-ins/common/noisify.c:284 +#: plug-ins/common/noisify.c:285 msgid "Adding Noise..." msgstr "Adding Noise..." @@ -5321,7 +5321,7 @@ msgid "Oili_fy..." msgstr "Oili_fy..." -#: plug-ins/common/oilify.c:188 +#: plug-ins/common/oilify.c:189 msgid "Oil Painting..." msgstr "Oil Painting..." @@ -5456,7 +5456,7 @@ msgid "Photocopy" msgstr "Photocopy" -#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:513 +#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:509 #: plug-ins/common/softglow.c:687 msgid "_Sharpness:" msgstr "_Sharpness:" @@ -6093,7 +6093,7 @@ msgid "_Ripple..." msgstr "_Ripple..." -#: plug-ins/common/ripple.c:219 +#: plug-ins/common/ripple.c:222 msgid "Rippling..." msgstr "Rippling..." @@ -6311,19 +6311,19 @@ msgid "_Selective Gaussian Blur..." msgstr "_Selective Gaussian Blur..." -#: plug-ins/common/sel_gauss.c:186 +#: plug-ins/common/sel_gauss.c:187 msgid "Selective Gaussian Blur..." msgstr "Selective Gaussian Blur..." -#: plug-ins/common/sel_gauss.c:224 +#: plug-ins/common/sel_gauss.c:225 msgid "Selective Gaussian Blur" msgstr "Selective Gaussian Blur" -#: plug-ins/common/sel_gauss.c:256 +#: plug-ins/common/sel_gauss.c:257 msgid "_Blur radius:" msgstr "_Blur radius:" -#: plug-ins/common/sel_gauss.c:266 +#: plug-ins/common/sel_gauss.c:267 msgid "_Max. delta:" msgstr "_Max. delta:" @@ -6342,11 +6342,11 @@ #. #. * Let the user know what we're doing... #. -#: plug-ins/common/sharpen.c:315 +#: plug-ins/common/sharpen.c:311 msgid "Sharpening..." msgstr "Sharpening..." -#: plug-ins/common/sharpen.c:484 +#: plug-ins/common/sharpen.c:480 msgid "Sharpen" msgstr "Sharpen" @@ -6354,7 +6354,7 @@ msgid "_Shift..." msgstr "_Shift..." -#: plug-ins/common/shift.c:191 +#: plug-ins/common/shift.c:194 msgid "Shifting..." msgstr "Shifting..." @@ -6549,23 +6549,23 @@ msgid "_Sobel..." msgstr "_Sobel..." -#: plug-ins/common/sobel.c:226 +#: plug-ins/common/sobel.c:227 msgid "Sobel Edge Detection" msgstr "Sobel Edge Detection" -#: plug-ins/common/sobel.c:248 +#: plug-ins/common/sobel.c:249 msgid "Sobel _Horizontally" msgstr "Sobel _Horizontally" -#: plug-ins/common/sobel.c:260 +#: plug-ins/common/sobel.c:261 msgid "Sobel _Vertically" msgstr "Sobel _Vertically" -#: plug-ins/common/sobel.c:272 +#: plug-ins/common/sobel.c:273 msgid "_Keep sign of result (one direction only)" msgstr "_Keep sign of result (one direction only)" -#: plug-ins/common/sobel.c:358 +#: plug-ins/common/sobel.c:359 msgid "Sobel Edge Detecting..." msgstr "Sobel Edge Detecting..." @@ -6863,15 +6863,15 @@ msgid "Sp_read..." msgstr "Sp_read..." -#: plug-ins/common/spread.c:179 +#: plug-ins/common/spread.c:182 msgid "Spreading..." msgstr "Spreading..." -#: plug-ins/common/spread.c:345 +#: plug-ins/common/spread.c:346 msgid "Spread" msgstr "Spread" -#: plug-ins/common/spread.c:363 +#: plug-ins/common/spread.c:364 msgid "Spread Amount" msgstr "Spread Amount" @@ -7157,7 +7157,8 @@ msgid "_Tile..." msgstr "_Tile..." -#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:321 +#. Set the tile cache size +#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:320 msgid "Tiling..." msgstr "Tiling..." @@ -7178,42 +7179,42 @@ msgstr "_Small Tiles..." #. Get the preview image -#: plug-ins/common/tileit.c:364 +#: plug-ins/common/tileit.c:363 msgid "TileIt" msgstr "TileIt" #. Area for buttons etc #. Flip -#: plug-ins/common/tileit.c:407 plug-ins/ifscompose/ifscompose.c:628 +#: plug-ins/common/tileit.c:406 plug-ins/ifscompose/ifscompose.c:628 msgid "Flip" msgstr "Flip" -#: plug-ins/common/tileit.c:455 +#: plug-ins/common/tileit.c:454 msgid "A_ll tiles" msgstr "A_ll tiles" -#: plug-ins/common/tileit.c:469 +#: plug-ins/common/tileit.c:468 msgid "Al_ternate tiles" msgstr "Al_ternate tiles" -#: plug-ins/common/tileit.c:483 +#: plug-ins/common/tileit.c:482 msgid "_Explicit tile" msgstr "_Explicit tile" -#: plug-ins/common/tileit.c:489 +#: plug-ins/common/tileit.c:488 msgid "Ro_w:" msgstr "Ro_w:" -#: plug-ins/common/tileit.c:513 +#: plug-ins/common/tileit.c:512 msgid "Col_umn:" msgstr "Col_umn:" -#: plug-ins/common/tileit.c:565 +#: plug-ins/common/tileit.c:564 msgid "O_pacity:" msgstr "O_pacity:" #. Lower frame saying howmany segments -#: plug-ins/common/tileit.c:574 +#: plug-ins/common/tileit.c:573 msgid "Number of Segments" msgstr "Number of Segments" @@ -7361,15 +7362,15 @@ msgid "Unit Editor" msgstr "Unit Editor" -#: plug-ins/common/unsharp.c:149 +#: plug-ins/common/unsharp.c:143 msgid "_Unsharp Mask..." msgstr "_Unsharp Mask..." -#: plug-ins/common/unsharp.c:493 +#: plug-ins/common/unsharp.c:468 msgid "Merging..." msgstr "Merging..." -#: plug-ins/common/unsharp.c:664 +#: plug-ins/common/unsharp.c:635 msgid "Unsharp Mask" msgstr "Unsharp Mask" @@ -8407,19 +8408,19 @@ msgid "_Zoom:" msgstr "_Zoom:" -#: plug-ins/gfig/gfig-bezier.c:452 +#: plug-ins/gfig/gfig-bezier.c:448 msgid "Closed" msgstr "Closed" -#: plug-ins/gfig/gfig-bezier.c:457 +#: plug-ins/gfig/gfig-bezier.c:453 msgid "Close curve on completion" msgstr "Close curve on completion" -#: plug-ins/gfig/gfig-bezier.c:462 +#: plug-ins/gfig/gfig-bezier.c:458 msgid "Show Line Frame" msgstr "Show Line Frame" -#: plug-ins/gfig/gfig-bezier.c:467 +#: plug-ins/gfig/gfig-bezier.c:463 msgid "Draws lines between the control points. Only during curve creation" msgstr "Draws lines between the control points. Only during curve creation" diff -uraN gimp-2.2.0/po-plug-ins/es.gmo gimp-2.2.1/po-plug-ins/es.gmo --- gimp-2.2.0/po-plug-ins/es.gmo 2004-12-19 03:34:22.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/es.gmo 2004-12-28 16:59:06.000000000 +0100 @@ -450,7 +450,7 @@ cmcyancyan_ke-_mailgreengzip archivehueinvalid formatted GFlare file: %s k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftpixels/%aredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsin^p, steppedsin^p-based functionsome sort of error with the file extension or lack thereofthe _Whole Screento alphavaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: es Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-11-22 22:01+0100 Last-Translator: Language-Team: diff -uraN gimp-2.2.0/po-plug-ins/es.po gimp-2.2.1/po-plug-ins/es.po --- gimp-2.2.0/po-plug-ins/es.po 2004-12-19 03:34:09.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/es.po 2004-12-28 16:58:53.000000000 +0100 @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: es\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-11-22 22:01+0100\n" "Last-Translator: \n" "Language-Team: \n" @@ -967,7 +967,7 @@ msgid "Antialiasing quality. Higher is better, but slower" msgstr "Calidad del suavizado. A mayor calidad, mejor, pero más lento" -#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:720 +#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:691 #: plug-ins/common/wind.c:993 plug-ins/imagemap/imap_preferences.c:539 msgid "_Threshold:" msgstr "_Umbral:" @@ -2097,12 +2097,12 @@ msgstr "Orientación" #: plug-ins/common/blinds.c:259 plug-ins/common/ripple.c:539 -#: plug-ins/common/tileit.c:419 plug-ins/pagecurl/pagecurl.c:530 +#: plug-ins/common/tileit.c:418 plug-ins/pagecurl/pagecurl.c:530 msgid "_Horizontal" msgstr "_Horizontal" #: plug-ins/common/blinds.c:260 plug-ins/common/ripple.c:540 -#: plug-ins/common/tileit.c:429 plug-ins/pagecurl/pagecurl.c:529 +#: plug-ins/common/tileit.c:428 plug-ins/pagecurl/pagecurl.c:529 msgid "_Vertical" msgstr "_Vertical" @@ -2123,7 +2123,7 @@ msgid "_Blur" msgstr "_Desenfoque (Blur)" -#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:383 +#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:432 msgid "Blurring..." msgstr "Desenfocando..." @@ -2236,23 +2236,23 @@ msgid "Ca_rtoon..." msgstr "Viñeta" -#: plug-ins/common/cartoon.c:228 plug-ins/common/dog.c:246 -#: plug-ins/common/gauss.c:430 plug-ins/common/neon.c:222 -#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:203 +#: plug-ins/common/cartoon.c:229 plug-ins/common/dog.c:247 +#: plug-ins/common/gauss.c:431 plug-ins/common/neon.c:221 +#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:204 #: plug-ins/common/softglow.c:220 plug-ins/gflare/gflare.c:972 #: plug-ins/sgi/sgi.c:528 plug-ins/xjt/xjt.c:1673 msgid "Cannot operate on indexed color images." msgstr "No funciona con imágenes de color indexado." -#: plug-ins/common/cartoon.c:807 +#: plug-ins/common/cartoon.c:808 msgid "Cartoon" msgstr "Viñeta" -#: plug-ins/common/cartoon.c:837 plug-ins/common/photocopy.c:867 +#: plug-ins/common/cartoon.c:838 plug-ins/common/photocopy.c:867 msgid "_Mask radius:" msgstr "Radio de _máscara:" -#: plug-ins/common/cartoon.c:851 +#: plug-ins/common/cartoon.c:852 msgid "_Percent black:" msgstr "_Porcentaje de negro:" @@ -2411,28 +2411,28 @@ msgid "Colorify Custom Color" msgstr "Colorear con color personalizado" -#: plug-ins/common/colortoalpha.c:105 +#: plug-ins/common/colortoalpha.c:104 msgid "Color to _Alpha..." msgstr "Color a _alfa..." -#: plug-ins/common/colortoalpha.c:183 +#: plug-ins/common/colortoalpha.c:181 msgid "Removing color..." msgstr "Quitando color..." -#: plug-ins/common/colortoalpha.c:364 +#: plug-ins/common/colortoalpha.c:377 msgid "Color to Alpha" msgstr "Color a alfa" -#: plug-ins/common/colortoalpha.c:389 plug-ins/common/mapcolor.c:424 +#: plug-ins/common/colortoalpha.c:402 plug-ins/common/mapcolor.c:424 #: plug-ins/gfli/gfli.c:835 plug-ins/gfli/gfli.c:898 msgid "From:" msgstr "Desde:" -#: plug-ins/common/colortoalpha.c:393 +#: plug-ins/common/colortoalpha.c:406 msgid "Color to Alpha Color Picker" msgstr "Selector de color para «De color a alfa»" -#: plug-ins/common/colortoalpha.c:407 +#: plug-ins/common/colortoalpha.c:420 msgid "to alpha" msgstr "a alfa" @@ -2743,23 +2743,23 @@ msgid "_Cubism..." msgstr "_Cubismo..." -#: plug-ins/common/cubism.c:267 +#: plug-ins/common/cubism.c:269 msgid "Cubism" msgstr "Cubismo" -#: plug-ins/common/cubism.c:296 +#: plug-ins/common/cubism.c:298 msgid "_Tile size:" msgstr "_Tamaño del mosaico:" -#: plug-ins/common/cubism.c:309 +#: plug-ins/common/cubism.c:311 msgid "T_ile saturation:" msgstr "Saturación del mosa_ico:" -#: plug-ins/common/cubism.c:320 +#: plug-ins/common/cubism.c:322 msgid "_Use background color" msgstr "_Usar el color de fondo" -#: plug-ins/common/cubism.c:410 +#: plug-ins/common/cubism.c:412 msgid "Cubistic Transformation..." msgstr "Transformación cubista..." @@ -3128,42 +3128,42 @@ msgid "Des_peckle..." msgstr "Des_parasitar..." -#: plug-ins/common/despeckle.c:420 plug-ins/common/despeckle.c:642 +#: plug-ins/common/despeckle.c:418 plug-ins/common/despeckle.c:640 msgid "Despeckle" msgstr "Desparasitar " #. #. * Filter type controls... #. -#: plug-ins/common/despeckle.c:446 plug-ins/gimpressionist/orientmap.c:616 +#: plug-ins/common/despeckle.c:444 plug-ins/gimpressionist/orientmap.c:616 msgid "Type" msgstr "Tipo" #. parameter settings -#: plug-ins/common/despeckle.c:456 +#: plug-ins/common/despeckle.c:454 msgid "Median" msgstr "Media" -#: plug-ins/common/despeckle.c:462 +#: plug-ins/common/despeckle.c:460 msgid "_Adaptive" msgstr "_Adaptativo" -#: plug-ins/common/despeckle.c:472 +#: plug-ins/common/despeckle.c:470 msgid "R_ecursive" msgstr "R_ecursivo" -#: plug-ins/common/despeckle.c:496 plug-ins/common/neon.c:728 +#: plug-ins/common/despeckle.c:494 plug-ins/common/neon.c:727 #: plug-ins/common/nlfilt.c:1083 plug-ins/common/nova.c:359 -#: plug-ins/common/unsharp.c:694 plug-ins/common/whirlpinch.c:588 +#: plug-ins/common/unsharp.c:665 plug-ins/common/whirlpinch.c:588 #: plug-ins/gflare/gflare.c:2686 plug-ins/imagemap/imap_circle.c:278 msgid "_Radius:" msgstr "_Radio:" -#: plug-ins/common/despeckle.c:512 +#: plug-ins/common/despeckle.c:510 msgid "_Black level:" msgstr "Nivel de _negro:" -#: plug-ins/common/despeckle.c:528 +#: plug-ins/common/despeckle.c:526 msgid "_White level:" msgstr "Nivel de _blanco:" @@ -3249,7 +3249,7 @@ msgid "_Displace..." msgstr "_Desplazar..." -#: plug-ins/common/displace.c:228 +#: plug-ins/common/displace.c:231 msgid "Displacing..." msgstr "Desplazando..." @@ -3286,27 +3286,27 @@ msgid "Difference of Gaussians..." msgstr "Diferencia de Gaussianas..." -#: plug-ins/common/dog.c:222 plug-ins/common/dog.c:273 +#: plug-ins/common/dog.c:227 plug-ins/common/dog.c:274 msgid "DoG Edge Detect" msgstr "Detección de bordes DoG" -#: plug-ins/common/dog.c:294 +#: plug-ins/common/dog.c:295 msgid "Smoothing parameters" msgstr "Parámetros de suavizado" -#: plug-ins/common/dog.c:308 +#: plug-ins/common/dog.c:309 msgid "_Radius 1:" msgstr "_Radio 1:" -#: plug-ins/common/dog.c:312 +#: plug-ins/common/dog.c:313 msgid "R_adius 2:" msgstr "R_adio 2:" -#: plug-ins/common/dog.c:324 plug-ins/common/normalize.c:88 +#: plug-ins/common/dog.c:325 plug-ins/common/normalize.c:88 msgid "_Normalize" msgstr "_Normalizar" -#: plug-ins/common/dog.c:335 plug-ins/gimpressionist/paper.c:149 +#: plug-ins/common/dog.c:336 plug-ins/gimpressionist/paper.c:149 msgid "_Invert" msgstr "_Invertir" @@ -3359,7 +3359,7 @@ msgid "_Emboss..." msgstr "R_epujado... [Emboss]" -#: plug-ins/common/emboss.c:374 plug-ins/common/emboss.c:439 +#: plug-ins/common/emboss.c:376 plug-ins/common/emboss.c:439 msgid "Emboss" msgstr "Repujado" @@ -3383,7 +3383,7 @@ msgid "En_grave..." msgstr "_Grabado... [Engarve]" -#: plug-ins/common/engrave.c:181 +#: plug-ins/common/engrave.c:182 msgid "Engraving..." msgstr "Haciendo grabado..." @@ -3788,38 +3788,38 @@ msgid "_Gaussian Blur..." msgstr "Desenfoque gaussiano... [Blur]" -#: plug-ins/common/gauss.c:407 +#: plug-ins/common/gauss.c:413 msgid "Gaussian Blur..." msgstr "Desenfoque gaussiano... [Blur]" -#: plug-ins/common/gauss.c:460 +#: plug-ins/common/gauss.c:461 msgid "Gaussian Blur" msgstr "Desenfoque gaussiano [Blur]" #. parameter settings -#: plug-ins/common/gauss.c:483 +#: plug-ins/common/gauss.c:484 msgid "Blur Radius" msgstr "Radio del desenfoque [Blur]" -#: plug-ins/common/gauss.c:497 plug-ins/common/jigsaw.c:2456 -#: plug-ins/common/spread.c:378 +#: plug-ins/common/gauss.c:498 plug-ins/common/jigsaw.c:2456 +#: plug-ins/common/spread.c:379 msgid "_Horizontal:" msgstr "_Horizontal:" -#: plug-ins/common/gauss.c:501 plug-ins/common/jigsaw.c:2473 -#: plug-ins/common/spread.c:382 +#: plug-ins/common/gauss.c:502 plug-ins/common/jigsaw.c:2473 +#: plug-ins/common/spread.c:383 msgid "_Vertical:" msgstr "_Vertical:" -#: plug-ins/common/gauss.c:524 +#: plug-ins/common/gauss.c:525 msgid "Blur Method" msgstr "Método de desenfoque [Blur]" -#: plug-ins/common/gauss.c:528 +#: plug-ins/common/gauss.c:529 msgid "_IIR" msgstr "_IIR" -#: plug-ins/common/gauss.c:529 +#: plug-ins/common/gauss.c:530 msgid "_RLE" msgstr "_RLE" @@ -4127,19 +4127,19 @@ msgid "_Glass Tile..." msgstr "Mosaico de _cristal..." -#: plug-ins/common/glasstile.c:208 +#: plug-ins/common/glasstile.c:209 msgid "Glass Tile..." msgstr "Mosaico de cristal..." -#: plug-ins/common/glasstile.c:251 +#: plug-ins/common/glasstile.c:250 msgid "Glass Tile" msgstr "Mosaico de cristal" -#: plug-ins/common/glasstile.c:282 +#: plug-ins/common/glasstile.c:281 msgid "Tile _width:" msgstr "A_nchura del mosaico:" -#: plug-ins/common/glasstile.c:296 plug-ins/common/mosaic.c:621 +#: plug-ins/common/glasstile.c:295 plug-ins/common/mosaic.c:621 msgid "Tile _height:" msgstr "A_ltura del mosaico:" @@ -5126,15 +5126,15 @@ msgid "_Neon..." msgstr "_Neón..." -#: plug-ins/common/neon.c:204 +#: plug-ins/common/neon.c:207 msgid "Neon..." msgstr "Neón..." -#: plug-ins/common/neon.c:698 +#: plug-ins/common/neon.c:697 msgid "Neon Detection" msgstr "Detección de neón" -#: plug-ins/common/neon.c:743 plug-ins/common/unsharp.c:707 +#: plug-ins/common/neon.c:742 plug-ins/common/unsharp.c:678 msgid "_Amount:" msgstr "C_antidad:" @@ -5294,7 +5294,7 @@ msgid "_Scatter RGB..." msgstr "Esparcir por RGB..." -#: plug-ins/common/noisify.c:284 +#: plug-ins/common/noisify.c:285 msgid "Adding Noise..." msgstr "Añadiendo ruido..." @@ -5363,7 +5363,7 @@ msgid "Oili_fy..." msgstr "Pintura al _óleo..." -#: plug-ins/common/oilify.c:188 +#: plug-ins/common/oilify.c:189 msgid "Oil Painting..." msgstr "Pintura al óleo..." @@ -5498,7 +5498,7 @@ msgid "Photocopy" msgstr "Fotocopia" -#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:513 +#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:509 #: plug-ins/common/softglow.c:687 msgid "_Sharpness:" msgstr "Agude_za:" @@ -6136,7 +6136,7 @@ msgid "_Ripple..." msgstr "_Ondulación..." -#: plug-ins/common/ripple.c:219 +#: plug-ins/common/ripple.c:222 msgid "Rippling..." msgstr "Ondulando..." @@ -6354,19 +6354,19 @@ msgid "_Selective Gaussian Blur..." msgstr "Desenfoque gaussiano selectivo..." -#: plug-ins/common/sel_gauss.c:186 +#: plug-ins/common/sel_gauss.c:187 msgid "Selective Gaussian Blur..." msgstr "Desenfoque gaussiano selectivo..." -#: plug-ins/common/sel_gauss.c:224 +#: plug-ins/common/sel_gauss.c:225 msgid "Selective Gaussian Blur" msgstr "Desenfoque gaussiano selectivo" -#: plug-ins/common/sel_gauss.c:256 +#: plug-ins/common/sel_gauss.c:257 msgid "_Blur radius:" msgstr "R_adio de desenfoque:" -#: plug-ins/common/sel_gauss.c:266 +#: plug-ins/common/sel_gauss.c:267 msgid "_Max. delta:" msgstr "Delta _máx.:" @@ -6385,11 +6385,11 @@ #. #. * Let the user know what we're doing... #. -#: plug-ins/common/sharpen.c:315 +#: plug-ins/common/sharpen.c:311 msgid "Sharpening..." msgstr "Enfocando..." -#: plug-ins/common/sharpen.c:484 +#: plug-ins/common/sharpen.c:480 msgid "Sharpen" msgstr "Aguda" @@ -6397,7 +6397,7 @@ msgid "_Shift..." msgstr "_Desplazamiento..." -#: plug-ins/common/shift.c:191 +#: plug-ins/common/shift.c:194 msgid "Shifting..." msgstr "Desplazando..." @@ -6592,25 +6592,25 @@ msgid "_Sobel..." msgstr "_Sobel..." -#: plug-ins/common/sobel.c:226 +#: plug-ins/common/sobel.c:227 msgid "Sobel Edge Detection" msgstr "Detección de bordes Sobel" # //R :-? -#: plug-ins/common/sobel.c:248 +#: plug-ins/common/sobel.c:249 msgid "Sobel _Horizontally" msgstr "Sobel _horizontalmente" # //R :-? -#: plug-ins/common/sobel.c:260 +#: plug-ins/common/sobel.c:261 msgid "Sobel _Vertically" msgstr "Sobel _verticalmente" -#: plug-ins/common/sobel.c:272 +#: plug-ins/common/sobel.c:273 msgid "_Keep sign of result (one direction only)" msgstr "Man_tener el signo del resultado (sólo una dirección)" -#: plug-ins/common/sobel.c:358 +#: plug-ins/common/sobel.c:359 msgid "Sobel Edge Detecting..." msgstr "Sobel: Detectando bordes..." @@ -6911,15 +6911,15 @@ msgid "Sp_read..." msgstr "E_sparcir..." -#: plug-ins/common/spread.c:179 +#: plug-ins/common/spread.c:182 msgid "Spreading..." msgstr "Esparciendo..." -#: plug-ins/common/spread.c:345 +#: plug-ins/common/spread.c:346 msgid "Spread" msgstr "Esparcir" -#: plug-ins/common/spread.c:363 +#: plug-ins/common/spread.c:364 msgid "Spread Amount" msgstr "Cantidad de esparcimiento" @@ -7206,7 +7206,8 @@ msgid "_Tile..." msgstr "_Enlosar..." -#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:321 +#. Set the tile cache size +#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:320 msgid "Tiling..." msgstr "Enlosado..." @@ -7227,42 +7228,42 @@ msgstr "Baldosas _pequeñas..." #. Get the preview image -#: plug-ins/common/tileit.c:364 +#: plug-ins/common/tileit.c:363 msgid "TileIt" msgstr "Enlosarlo" #. Area for buttons etc #. Flip -#: plug-ins/common/tileit.c:407 plug-ins/ifscompose/ifscompose.c:628 +#: plug-ins/common/tileit.c:406 plug-ins/ifscompose/ifscompose.c:628 msgid "Flip" msgstr "Voltear" -#: plug-ins/common/tileit.c:455 +#: plug-ins/common/tileit.c:454 msgid "A_ll tiles" msgstr "T_odas las baldosas" -#: plug-ins/common/tileit.c:469 +#: plug-ins/common/tileit.c:468 msgid "Al_ternate tiles" msgstr "Baldosas al_ternadas" -#: plug-ins/common/tileit.c:483 +#: plug-ins/common/tileit.c:482 msgid "_Explicit tile" msgstr "Baldosas _explícitas" -#: plug-ins/common/tileit.c:489 +#: plug-ins/common/tileit.c:488 msgid "Ro_w:" msgstr "Fi_la:" -#: plug-ins/common/tileit.c:513 +#: plug-ins/common/tileit.c:512 msgid "Col_umn:" msgstr "Col_umna:" -#: plug-ins/common/tileit.c:565 +#: plug-ins/common/tileit.c:564 msgid "O_pacity:" msgstr "O_pacidad:" #. Lower frame saying howmany segments -#: plug-ins/common/tileit.c:574 +#: plug-ins/common/tileit.c:573 msgid "Number of Segments" msgstr "Número de segmentos" @@ -7414,15 +7415,15 @@ msgid "Unit Editor" msgstr "Editor de unidades" -#: plug-ins/common/unsharp.c:149 +#: plug-ins/common/unsharp.c:143 msgid "_Unsharp Mask..." msgstr "Máscara de _desenfoque...[Unsharp]" -#: plug-ins/common/unsharp.c:493 +#: plug-ins/common/unsharp.c:468 msgid "Merging..." msgstr "Mezclando..." -#: plug-ins/common/unsharp.c:664 +#: plug-ins/common/unsharp.c:635 msgid "Unsharp Mask" msgstr "Máscara de desenfoque" @@ -8463,20 +8464,20 @@ msgid "_Zoom:" msgstr "A_cercamiento:" -#: plug-ins/gfig/gfig-bezier.c:452 +#: plug-ins/gfig/gfig-bezier.c:448 msgid "Closed" msgstr "Cerrada" -#: plug-ins/gfig/gfig-bezier.c:457 +#: plug-ins/gfig/gfig-bezier.c:453 msgid "Close curve on completion" msgstr "Cerrar la curva al terminar" # //R :-? -#: plug-ins/gfig/gfig-bezier.c:462 +#: plug-ins/gfig/gfig-bezier.c:458 msgid "Show Line Frame" msgstr "Mostrar el marco de la línea" -#: plug-ins/gfig/gfig-bezier.c:467 +#: plug-ins/gfig/gfig-bezier.c:463 msgid "Draws lines between the control points. Only during curve creation" msgstr "" "Dibuja líneas entre los puntos de control. Sólo durante la creación de la " diff -uraN gimp-2.2.0/po-plug-ins/eu.gmo gimp-2.2.1/po-plug-ins/eu.gmo --- gimp-2.2.0/po-plug-ins/eu.gmo 2004-12-19 03:34:22.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/eu.gmo 2004-12-28 16:59:06.000000000 +0100 @@ -301,7 +301,7 @@ which has no alpha channel.Z scale (size)Z:ZealousCropping(tm)...ZoomZoom inZoom in (make image bigger)Zoom outZoom out (make image smaller)_3x3_Abbreviation:_Adaptive_Additive_Advanced_Alpha_Alpha:_Amount:_Amplitude:_Angle:_Animate_Antialiasing_Automatically convert_Azimuth:_Background_Base URL:_Bilinear_Black_Blacken_Blast_Blend_Blue_Blue:_Border:_Bottom:_Box_Brightness_Brightness:_Brush_Bump Map_Bumpmap_Copy_Deflate_Depth:_Derivative_Description:_Detail:_Digits:_Displacement:_Distorted_Dots_Edit_Effect Image:_Elevation:_Emboss_Encapsulated PostScript_Entire Image_Environment Map_Exponent:_Factor:_File_Filename:_Font:_Force_Fractals_Free_Ftp Site_Gamma:_General_Gopher_Gradient_Gray:_Green_Green:_Grey_Grow_Height_Height:_Help_Hex_Hidden_Holdness:_Horizontal_Horizontal:_Horz. Spacing:_Hue_ID:_Ideal_Ignore_Inch_Input SPI:_Insert_Interlacing (Adam7)_Invert_JPEG_JavaScript_Keep NCSA circles true_Kill_LZW_Laplace_Large staggered_Left_Left Start at:_Light_Linear_Lines_Link_Lower_MIME_Mapping_Material_Max (%):_Max Depth:_Midtones_Millimeter_Mirror_Misc Ops._Monochrome_Move_No. Across:_None_Normal_Pack Bits_Parameters_Period:_Phase:_Ping Pong_Plural:_Polygon_Presets_Preview_Preview!_Prompt for area info_Psychobilly_RGB_RLE compression_RLE encoded_Radial_Radius:_Randomize_Rays_Recipient:_Rectangle_Red:_Redo %s_Reflective_Remove_Rendering_Require default URL_Right_Right Border_Rotated_Saturation_Saturation:_Search:_Second Flares_Sender:_Settings_Sharpness:_Size_Size:_Smear_Snap-To Grid Enabled_Speed:_Spokes:_Square_Squares_Staggered_Strength:_Symbol:_Target frame name/ID: (optional - used for FRAMES only)_Thickness:_Threshold_Threshold:_Title:_Tools_Top Start at:_Top:_Transparent_URL to activate when this area is clicked: (required)_Undo %s_Update_Upper_Upper Border_Use double-sized grab handles_Uuencode_Value_Value:_Variation:_Vert. Spacing:_Vertical_Vertical:_View_Voronoi_Warp_Waterlevel:_Wavelength:_Web Site_White_Wide-striped_Width_Width:_Wind_Wrap_X Scale:_X:_Y Scale:_Y:_Yellow_Z:_Zoom_Zoom:`Default' is created.a _Single Windowafteralphablackblueblueness_cb470blueness_cb470fblueness_cb709blueness_cb709fcmcyancyan_ke-_mailgreenhueinvalid formatted GFlare file: %s k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftpixels/%aredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsin^p, steppedsin^p-based functionsome sort of error with the file extension or lack thereofthe _Whole Screenvaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: eu Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-04-06 19:23+0200 Last-Translator: Iñaki Larrañaga Murgoitio Language-Team: Basque diff -uraN gimp-2.2.0/po-plug-ins/eu.po gimp-2.2.1/po-plug-ins/eu.po --- gimp-2.2.0/po-plug-ins/eu.po 2004-12-19 03:34:09.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/eu.po 2004-12-28 16:58:53.000000000 +0100 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: eu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-04-06 19:23+0200\n" "Last-Translator: Iñaki Larrañaga Murgoitio \n" "Language-Team: Basque \n" @@ -996,7 +996,7 @@ msgstr "" "Antialiasing kalitatea. Kalitate handia hobea da, baina mantsoagoa ere bai" -#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:720 +#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:691 #: plug-ins/common/wind.c:993 plug-ins/imagemap/imap_preferences.c:539 msgid "_Threshold:" msgstr "_Muga:" @@ -2201,12 +2201,12 @@ msgstr "Orientazioa" #: plug-ins/common/blinds.c:259 plug-ins/common/ripple.c:539 -#: plug-ins/common/tileit.c:419 plug-ins/pagecurl/pagecurl.c:530 +#: plug-ins/common/tileit.c:418 plug-ins/pagecurl/pagecurl.c:530 msgid "_Horizontal" msgstr "_Horizontala" #: plug-ins/common/blinds.c:260 plug-ins/common/ripple.c:540 -#: plug-ins/common/tileit.c:429 plug-ins/pagecurl/pagecurl.c:529 +#: plug-ins/common/tileit.c:428 plug-ins/pagecurl/pagecurl.c:529 msgid "_Vertical" msgstr "_Bertikala" @@ -2229,7 +2229,7 @@ msgid "_Blur" msgstr "Lausotu" -#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:383 +#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:432 msgid "Blurring..." msgstr "Lausotzen..." @@ -2350,25 +2350,25 @@ msgid "Ca_rtoon..." msgstr "Epigra_fea" -#: plug-ins/common/cartoon.c:228 plug-ins/common/dog.c:246 -#: plug-ins/common/gauss.c:430 plug-ins/common/neon.c:222 -#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:203 +#: plug-ins/common/cartoon.c:229 plug-ins/common/dog.c:247 +#: plug-ins/common/gauss.c:431 plug-ins/common/neon.c:221 +#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:204 #: plug-ins/common/softglow.c:220 plug-ins/gflare/gflare.c:972 #: plug-ins/sgi/sgi.c:528 plug-ins/xjt/xjt.c:1673 msgid "Cannot operate on indexed color images." msgstr "Ezin da kolore-irudi indexatuekin erabili." -#: plug-ins/common/cartoon.c:807 +#: plug-ins/common/cartoon.c:808 #, fuzzy msgid "Cartoon" msgstr "Epigra_fea" -#: plug-ins/common/cartoon.c:837 plug-ins/common/photocopy.c:867 +#: plug-ins/common/cartoon.c:838 plug-ins/common/photocopy.c:867 #, fuzzy msgid "_Mask radius:" msgstr "_Lausotu erradioa:" -#: plug-ins/common/cartoon.c:851 +#: plug-ins/common/cartoon.c:852 #, fuzzy msgid "_Percent black:" msgstr "Ehunekoa" @@ -2534,29 +2534,29 @@ msgid "Colorify Custom Color" msgstr "Koloreztatu kolore pertsonalizatuaz" -#: plug-ins/common/colortoalpha.c:105 +#: plug-ins/common/colortoalpha.c:104 #, fuzzy msgid "Color to _Alpha..." msgstr "Kolorea alfara" -#: plug-ins/common/colortoalpha.c:183 +#: plug-ins/common/colortoalpha.c:181 msgid "Removing color..." msgstr "Kolorea kentzen..." -#: plug-ins/common/colortoalpha.c:364 +#: plug-ins/common/colortoalpha.c:377 msgid "Color to Alpha" msgstr "Kolorea alfara" -#: plug-ins/common/colortoalpha.c:389 plug-ins/common/mapcolor.c:424 +#: plug-ins/common/colortoalpha.c:402 plug-ins/common/mapcolor.c:424 #: plug-ins/gfli/gfli.c:835 plug-ins/gfli/gfli.c:898 msgid "From:" msgstr "Nondik:" -#: plug-ins/common/colortoalpha.c:393 +#: plug-ins/common/colortoalpha.c:406 msgid "Color to Alpha Color Picker" msgstr "Kolorea alfara: kolore-hautatzailea" -#: plug-ins/common/colortoalpha.c:407 +#: plug-ins/common/colortoalpha.c:420 #, fuzzy msgid "to alpha" msgstr "alfara" @@ -2880,26 +2880,26 @@ msgid "_Cubism..." msgstr "Kubismoa" -#: plug-ins/common/cubism.c:267 +#: plug-ins/common/cubism.c:269 msgid "Cubism" msgstr "Kubismoa" -#: plug-ins/common/cubism.c:296 +#: plug-ins/common/cubism.c:298 #, fuzzy msgid "_Tile size:" msgstr "_Mosaikoaren tamaina:" -#: plug-ins/common/cubism.c:309 +#: plug-ins/common/cubism.c:311 #, fuzzy msgid "T_ile saturation:" msgstr "M_osaikoaren saturazioa:" -#: plug-ins/common/cubism.c:320 +#: plug-ins/common/cubism.c:322 #, fuzzy msgid "_Use background color" msgstr "_Erabili atzeko planoaren kolorea" -#: plug-ins/common/cubism.c:410 +#: plug-ins/common/cubism.c:412 #, fuzzy msgid "Cubistic Transformation..." msgstr "Eraldatze kubista" @@ -3286,44 +3286,44 @@ msgid "Des_peckle..." msgstr "Kendu parasitoak" -#: plug-ins/common/despeckle.c:420 plug-ins/common/despeckle.c:642 +#: plug-ins/common/despeckle.c:418 plug-ins/common/despeckle.c:640 msgid "Despeckle" msgstr "Kendu parasitoak" #. #. * Filter type controls... #. -#: plug-ins/common/despeckle.c:446 plug-ins/gimpressionist/orientmap.c:616 +#: plug-ins/common/despeckle.c:444 plug-ins/gimpressionist/orientmap.c:616 msgid "Type" msgstr "Mota" #. parameter settings -#: plug-ins/common/despeckle.c:456 +#: plug-ins/common/despeckle.c:454 #, fuzzy msgid "Median" msgstr "Radianak" -#: plug-ins/common/despeckle.c:462 +#: plug-ins/common/despeckle.c:460 msgid "_Adaptive" msgstr "_Moldagarria" -#: plug-ins/common/despeckle.c:472 +#: plug-ins/common/despeckle.c:470 msgid "R_ecursive" msgstr "Er_rekurtsiboa" -#: plug-ins/common/despeckle.c:496 plug-ins/common/neon.c:728 +#: plug-ins/common/despeckle.c:494 plug-ins/common/neon.c:727 #: plug-ins/common/nlfilt.c:1083 plug-ins/common/nova.c:359 -#: plug-ins/common/unsharp.c:694 plug-ins/common/whirlpinch.c:588 +#: plug-ins/common/unsharp.c:665 plug-ins/common/whirlpinch.c:588 #: plug-ins/gflare/gflare.c:2686 plug-ins/imagemap/imap_circle.c:278 msgid "_Radius:" msgstr "Err_adioa:" -#: plug-ins/common/despeckle.c:512 +#: plug-ins/common/despeckle.c:510 #, fuzzy msgid "_Black level:" msgstr "_Beltz-maila:" -#: plug-ins/common/despeckle.c:528 +#: plug-ins/common/despeckle.c:526 #, fuzzy msgid "_White level:" msgstr "_Zuri-maila:" @@ -3420,7 +3420,7 @@ msgid "_Displace..." msgstr "Desplazatzen..." -#: plug-ins/common/displace.c:228 +#: plug-ins/common/displace.c:231 msgid "Displacing..." msgstr "Desplazatzen..." @@ -3460,32 +3460,32 @@ msgid "Difference of Gaussians..." msgstr "Gauss-en lausotze selektiboa..." -#: plug-ins/common/dog.c:222 plug-ins/common/dog.c:273 +#: plug-ins/common/dog.c:227 plug-ins/common/dog.c:274 #, fuzzy msgid "DoG Edge Detect" msgstr "Ertz-detekzioa" -#: plug-ins/common/dog.c:294 +#: plug-ins/common/dog.c:295 #, fuzzy msgid "Smoothing parameters" msgstr "Kopiatu parametroak" -#: plug-ins/common/dog.c:308 +#: plug-ins/common/dog.c:309 #, fuzzy msgid "_Radius 1:" msgstr "Err_adioa:" -#: plug-ins/common/dog.c:312 +#: plug-ins/common/dog.c:313 #, fuzzy msgid "R_adius 2:" msgstr "Err_adioa:" -#: plug-ins/common/dog.c:324 plug-ins/common/normalize.c:88 +#: plug-ins/common/dog.c:325 plug-ins/common/normalize.c:88 #, fuzzy msgid "_Normalize" msgstr "_Normala" -#: plug-ins/common/dog.c:335 plug-ins/gimpressionist/paper.c:149 +#: plug-ins/common/dog.c:336 plug-ins/gimpressionist/paper.c:149 msgid "_Invert" msgstr "_Alderantzikatu" @@ -3546,7 +3546,7 @@ msgid "_Emboss..." msgstr "_Bozeldu" -#: plug-ins/common/emboss.c:374 plug-ins/common/emboss.c:439 +#: plug-ins/common/emboss.c:376 plug-ins/common/emboss.c:439 msgid "Emboss" msgstr "Bozeldu" @@ -3571,7 +3571,7 @@ msgid "En_grave..." msgstr "Grabatzen..." -#: plug-ins/common/engrave.c:181 +#: plug-ins/common/engrave.c:182 msgid "Engraving..." msgstr "Grabatzen..." @@ -4000,41 +4000,41 @@ msgid "_Gaussian Blur..." msgstr "/Iragazkiak/Lausotuak/Gauss-en _lausotzea (_IIR)..." -#: plug-ins/common/gauss.c:407 +#: plug-ins/common/gauss.c:413 #, fuzzy msgid "Gaussian Blur..." msgstr "/Iragazkiak/Lausotuak/Gauss-en _lausotzea (_IIR)..." -#: plug-ins/common/gauss.c:460 +#: plug-ins/common/gauss.c:461 #, fuzzy msgid "Gaussian Blur" msgstr "IIR Gauss-en lausotzea" #. parameter settings -#: plug-ins/common/gauss.c:483 +#: plug-ins/common/gauss.c:484 msgid "Blur Radius" msgstr "Lausotze-erradioa" -#: plug-ins/common/gauss.c:497 plug-ins/common/jigsaw.c:2456 -#: plug-ins/common/spread.c:378 +#: plug-ins/common/gauss.c:498 plug-ins/common/jigsaw.c:2456 +#: plug-ins/common/spread.c:379 msgid "_Horizontal:" msgstr "_Horizontala:" -#: plug-ins/common/gauss.c:501 plug-ins/common/jigsaw.c:2473 -#: plug-ins/common/spread.c:382 +#: plug-ins/common/gauss.c:502 plug-ins/common/jigsaw.c:2473 +#: plug-ins/common/spread.c:383 msgid "_Vertical:" msgstr "_Bertikala:" -#: plug-ins/common/gauss.c:524 +#: plug-ins/common/gauss.c:525 #, fuzzy msgid "Blur Method" msgstr "Lausotze-mota" -#: plug-ins/common/gauss.c:528 +#: plug-ins/common/gauss.c:529 msgid "_IIR" msgstr "" -#: plug-ins/common/gauss.c:529 +#: plug-ins/common/gauss.c:530 #, fuzzy msgid "_RLE" msgstr "RLE" @@ -4356,20 +4356,20 @@ msgid "_Glass Tile..." msgstr "Beirazko mosaikoa..." -#: plug-ins/common/glasstile.c:208 +#: plug-ins/common/glasstile.c:209 msgid "Glass Tile..." msgstr "Beirazko mosaikoa..." -#: plug-ins/common/glasstile.c:251 +#: plug-ins/common/glasstile.c:250 msgid "Glass Tile" msgstr "Beirazko mosaikoa" -#: plug-ins/common/glasstile.c:282 +#: plug-ins/common/glasstile.c:281 #, fuzzy msgid "Tile _width:" msgstr "Mosaikoaren _zabalera:" -#: plug-ins/common/glasstile.c:296 plug-ins/common/mosaic.c:621 +#: plug-ins/common/glasstile.c:295 plug-ins/common/mosaic.c:621 #, fuzzy msgid "Tile _height:" msgstr "Mosaikoaren al_tuera:" @@ -5437,17 +5437,17 @@ msgid "_Neon..." msgstr "Bideoa/RGB..." -#: plug-ins/common/neon.c:204 +#: plug-ins/common/neon.c:207 #, fuzzy msgid "Neon..." msgstr "Prentsa-papera..." -#: plug-ins/common/neon.c:698 +#: plug-ins/common/neon.c:697 #, fuzzy msgid "Neon Detection" msgstr "Ertz-detekzioa" -#: plug-ins/common/neon.c:743 plug-ins/common/unsharp.c:707 +#: plug-ins/common/neon.c:742 plug-ins/common/unsharp.c:678 msgid "_Amount:" msgstr "_Kopurua:" @@ -5617,7 +5617,7 @@ msgid "_Scatter RGB..." msgstr "HSV barreiatzen..." -#: plug-ins/common/noisify.c:284 +#: plug-ins/common/noisify.c:285 msgid "Adding Noise..." msgstr "Zarata gehitzen..." @@ -5693,7 +5693,7 @@ msgid "Oili_fy..." msgstr "Olioz pintatu" -#: plug-ins/common/oilify.c:188 +#: plug-ins/common/oilify.c:189 msgid "Oil Painting..." msgstr "Olioz pintatzen..." @@ -5838,7 +5838,7 @@ msgid "Photocopy" msgstr "Argazkia" -#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:513 +#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:509 #: plug-ins/common/softglow.c:687 msgid "_Sharpness:" msgstr "_Enfokatze-maila:" @@ -6525,7 +6525,7 @@ msgid "_Ripple..." msgstr "Izurtzen..." -#: plug-ins/common/ripple.c:219 +#: plug-ins/common/ripple.c:222 msgid "Rippling..." msgstr "Izurtzen..." @@ -6758,20 +6758,20 @@ msgid "_Selective Gaussian Blur..." msgstr "Gauss-en lausotze selektiboa..." -#: plug-ins/common/sel_gauss.c:186 +#: plug-ins/common/sel_gauss.c:187 msgid "Selective Gaussian Blur..." msgstr "Gauss-en lausotze selektiboa..." -#: plug-ins/common/sel_gauss.c:224 +#: plug-ins/common/sel_gauss.c:225 msgid "Selective Gaussian Blur" msgstr "Gauss-en lausotze selektiboa" -#: plug-ins/common/sel_gauss.c:256 +#: plug-ins/common/sel_gauss.c:257 #, fuzzy msgid "_Blur radius:" msgstr "_Lausotu erradioa:" -#: plug-ins/common/sel_gauss.c:266 +#: plug-ins/common/sel_gauss.c:267 #, fuzzy msgid "_Max. delta:" msgstr "_Geh. delta:" @@ -6793,11 +6793,11 @@ #. #. * Let the user know what we're doing... #. -#: plug-ins/common/sharpen.c:315 +#: plug-ins/common/sharpen.c:311 msgid "Sharpening..." msgstr "Enfokatzen..." -#: plug-ins/common/sharpen.c:484 +#: plug-ins/common/sharpen.c:480 msgid "Sharpen" msgstr "Enfokatu" @@ -6806,7 +6806,7 @@ msgid "_Shift..." msgstr "Desplazatzen..." -#: plug-ins/common/shift.c:191 +#: plug-ins/common/shift.c:194 msgid "Shifting..." msgstr "Desplazatzen..." @@ -7017,24 +7017,24 @@ msgid "_Sobel..." msgstr "_Sobel" -#: plug-ins/common/sobel.c:226 +#: plug-ins/common/sobel.c:227 msgid "Sobel Edge Detection" msgstr "Sobel ertz-detekzioa" -#: plug-ins/common/sobel.c:248 +#: plug-ins/common/sobel.c:249 msgid "Sobel _Horizontally" msgstr "Sobel _horizontalki" -#: plug-ins/common/sobel.c:260 +#: plug-ins/common/sobel.c:261 msgid "Sobel _Vertically" msgstr "Sobel _bertikalki" -#: plug-ins/common/sobel.c:272 +#: plug-ins/common/sobel.c:273 #, fuzzy msgid "_Keep sign of result (one direction only)" msgstr "_Mantendu emaitzaren zeinua (noranzko batean bakarrik)" -#: plug-ins/common/sobel.c:358 +#: plug-ins/common/sobel.c:359 msgid "Sobel Edge Detecting..." msgstr "Sobel: ertzak detektatzen..." @@ -7359,15 +7359,15 @@ msgid "Sp_read..." msgstr "Sakabanatzen..." -#: plug-ins/common/spread.c:179 +#: plug-ins/common/spread.c:182 msgid "Spreading..." msgstr "Sakabanatzen..." -#: plug-ins/common/spread.c:345 +#: plug-ins/common/spread.c:346 msgid "Spread" msgstr "Sakabanatu" -#: plug-ins/common/spread.c:363 +#: plug-ins/common/spread.c:364 msgid "Spread Amount" msgstr "Sakabanatze-kopurua" @@ -7668,7 +7668,8 @@ msgid "_Tile..." msgstr "Mosaikoa..." -#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:321 +#. Set the tile cache size +#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:320 msgid "Tiling..." msgstr "Mosaikoa egiten..." @@ -7690,45 +7691,45 @@ msgstr "_Lauza guztiak" #. Get the preview image -#: plug-ins/common/tileit.c:364 +#: plug-ins/common/tileit.c:363 msgid "TileIt" msgstr "Egin mosaikoa" #. Area for buttons etc #. Flip -#: plug-ins/common/tileit.c:407 plug-ins/ifscompose/ifscompose.c:628 +#: plug-ins/common/tileit.c:406 plug-ins/ifscompose/ifscompose.c:628 msgid "Flip" msgstr "Irauli" -#: plug-ins/common/tileit.c:455 +#: plug-ins/common/tileit.c:454 #, fuzzy msgid "A_ll tiles" msgstr "_Lauza guztiak" -#: plug-ins/common/tileit.c:469 +#: plug-ins/common/tileit.c:468 #, fuzzy msgid "Al_ternate tiles" msgstr "T_xandakatu lauzak" -#: plug-ins/common/tileit.c:483 +#: plug-ins/common/tileit.c:482 #, fuzzy msgid "_Explicit tile" msgstr "L_auza esplizitua" -#: plug-ins/common/tileit.c:489 +#: plug-ins/common/tileit.c:488 msgid "Ro_w:" msgstr "Er_renkada:" -#: plug-ins/common/tileit.c:513 +#: plug-ins/common/tileit.c:512 msgid "Col_umn:" msgstr "Zu_tabea:" -#: plug-ins/common/tileit.c:565 +#: plug-ins/common/tileit.c:564 msgid "O_pacity:" msgstr "_Opakutasuna:" #. Lower frame saying howmany segments -#: plug-ins/common/tileit.c:574 +#: plug-ins/common/tileit.c:573 #, fuzzy msgid "Number of Segments" msgstr "_Segmentu-kopurua:" @@ -7881,16 +7882,16 @@ msgid "Unit Editor" msgstr "Unitate-editorea" -#: plug-ins/common/unsharp.c:149 +#: plug-ins/common/unsharp.c:143 #, fuzzy msgid "_Unsharp Mask..." msgstr "Desenfokatze-maskara" -#: plug-ins/common/unsharp.c:493 +#: plug-ins/common/unsharp.c:468 msgid "Merging..." msgstr "Batzen..." -#: plug-ins/common/unsharp.c:664 +#: plug-ins/common/unsharp.c:635 msgid "Unsharp Mask" msgstr "Desenfokatze-maskara" @@ -9002,19 +9003,19 @@ msgid "_Zoom:" msgstr "_Zooma:" -#: plug-ins/gfig/gfig-bezier.c:452 +#: plug-ins/gfig/gfig-bezier.c:448 msgid "Closed" msgstr "Itxita" -#: plug-ins/gfig/gfig-bezier.c:457 +#: plug-ins/gfig/gfig-bezier.c:453 msgid "Close curve on completion" msgstr "Itxi kurba osatutakoan" -#: plug-ins/gfig/gfig-bezier.c:462 +#: plug-ins/gfig/gfig-bezier.c:458 msgid "Show Line Frame" msgstr "Erakutsi marraren markoa" -#: plug-ins/gfig/gfig-bezier.c:467 +#: plug-ins/gfig/gfig-bezier.c:463 msgid "Draws lines between the control points. Only during curve creation" msgstr "Marraztu marrak kontrol-puntuen artean. Kurba sortzean bakarrik" diff -uraN gimp-2.2.0/po-plug-ins/fi.gmo gimp-2.2.1/po-plug-ins/fi.gmo --- gimp-2.2.0/po-plug-ins/fi.gmo 2004-12-19 03:34:22.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/fi.gmo 2004-12-28 16:59:06.000000000 +0100 @@ -1,158 +1,382 @@ -'=8R9R1ARsR"RRRR R S -'SV2SQSSSS S TT -T'T XNXiXmXrXvXzXXXXXXXX X?XY#-Y/QY'Y&YYYJ Z&XZZ -Z -ZZhZh[4[4[([)\'?\lg\*\5\55]4k] ]$]]4] ^^'^3^__%_?_F_M_U_ ]_g_ -y____ ______` -` )`7`F` -b`m````````` ```aa (a$4aYapaa+aa a aa -ab+ b5b#Qb#ub1bbb>c8Cc|cc<c|c'Zdd9d dd de e &e2eRe Xedele -se ~e -ee eeeeeee eeef f &f2f :fFf0Ufff f ff!fffg +g8g@gUg^g -eg pg |gg g -g gg ggggh(h :h GhSh)eh/h#h2h+iBiQi Yi"fiiiiii'j?j)_j.jj j#jk'k-k#4k$Xk }kkk6k'k l l%l:lOldlylllllll -ll m m m)mBmKm[m -jm -um -mmmm m m mm m)m nn"n'n;n -Jn Uncnin nnznnnnnnn n nnn o ooo #o-o/5oBeo -o ooooooooo pnp~p\qCcq -qqqKq1r6rJr Rr\r6mr rr r(r s s$s (s5s vJv Ov[vcv<lv%v v -vvv w w(w /wlj)/O4npՊ=F%xJ ڌ- " , 8Db{ ҍ؍%ߍ )BK jv,Q:BW*iǏ͏ՏjA$0=U - ƑUˑ!'.3;UmƒՒؒޒSQ`c  Ɠғړ "+4 9F MW]fnw   -ʔՔ -ޔ  #*28> G S`ejp  ĕ Ε ڕ  -  - &2; -CNW ` jw|  - Ȗ Ζ -ږ  % /;BJS[ -do -x   ɗЗ ؗ -  (. 4> BLPX\ctz ˘ט   - /:D[7;$W|$ϛ -:@? - ǜ՜*Hck !՝ + CMR XIe:;99s< Ɵҟ -؟  -=HN Uck - - -àˠԠ #)2A^bgjnt{  Fǡ$'5L$%+͢A,[ qq1((̤*+ +Lx4&4&[% ئ" B-R- ܧ - -&.6 <H Wev ʨب  #=NW^f o{ -ҩ 4O Vdu -$"ڪ)4')\.BOHd6hO(B* m y -ҭ ح - -=HPW _i{ Į֮ޮDJQ b p}  ͯ -#(/ 6 DNV_v|ð԰ #2>-q<+ܱ  (Hd ,+/:9j$ij$()0.Z-7Ӵ$ 0>OfεԵ  ! 7ASd - -Ķ϶Զ۶ .(W^pu - ַ & 9GK `jsy 4B˸  %+4TZajpvVk޹BJ@ -κٺ+'- @ -MXGl/ֻ6 = JVZjsռ -ڼ & -: ?%M%s%$%% - 0 : FR X dr{ Ծ <W q~ E-  -)@Wjr { -   %2J -b mz    2Ol E  93UF " 8F\u - - !!!( -> -ITd lv  # '5 -9DL S ` m y#    $ 1;LU[ -b -mx*   *0 7CRe& ". 7A _i  +3KZo # -   - -   # 1!;!]!' - -% -0 ;HQc}16Th}   *FNb -k -v -   ,;OW_t(   ) 1>Qi -   - - -/: -Va   8;A R\t  D Q5a>! .'Fn"%3gI&&; 8 ",2 B P"] + 7"Eh -2A+(m+oD4*y, - > T^flt -  # --Q8   - '07< EOXairz -    - - -'2:CJR -[ fs y   - - - ( 0 -< GS\ -c n -|    -  ! -. 9EK Z dry     - - - - 4 A OYah nx |   3 ; I S` iu(  d:[V'mw7&xhB8}ty9E\hM) Q_=hK'qR}fuk(R;$@X[T?!E;&TgY= vdAmyW'-j-qr"z?#P ~3@Fy5;6tJV^ {WGB>AgkiufcK^%K/mZQ],^8a6BCDJ% <eV9 I5Mp!-2~R{I"\Xp+AA$_nW*$,Kyhr#.@o Z `;.:WUN]fe`#\gjHsL77DDG>3LMT<bvz3ucG+J14j=Q{"TgBPEbi^]l_'@t%d<OCp8n -G=,6Qk - O*>)s5s}v<q- -:xZlS$)L4\0PJO_?0~V.Coxb,(lCYm e 0w2`sk> `H9r n+|E14+c(ZaN[b8jXueS:5!S[n 3/ Fo Ux NF#2o%YNHI|Y)|]Rc(aHPI1wLUr&*O"fDw1aF~&pzdX{izl4M -}0*?9 SU!//7.2qit6|v%d x %d'%s' is corrupt. Line %d Option section incorrect'%s' is not a DICOM file.'%s' is not a FractalExplorer file'%s' is not a PCX file'%s' is not a regular file'%s' is not a valid BMP file'%s' is not a valid GFlare file.(None)A less-obsolete creation of Adam D. Moss / adam@gimp.org / adam@foxbox.org / 1998-2000A unit definition will only be saved before GIMP exits if this column is checked.ALT te_xt: (optional)A_boutA_llA_mbient:A_mplitude:A_nimateA_utomaticA_verage under brushAbbreviationAboutAbout Gimp-Print ActionAd_vancedAdd FractalExplorer PathAdding Checkerboard...AdditionAdds random noise to the colorAdjusting Foreground/Background...AlienMap2AlienMap2: Transforming...Align Visible LayersAll JNGAll PNGAll blackAll grayAll text fields must contain a value.All whiteAlphaAlpha:Ambient:Amount of original color to show where no direct light fallsAn obsolete creation of Adam D. Moss / adam@gimp.org / adam@foxbox.org / 1998-2000Animated GIF OptionsAntialiasing quality. Higher is better, but slowerApply active gradient to final imageApplying lens...Are you sure you want to delete "%s" from the list and from disk?Area:As specified aboveAsciiAspect ratio:Assembling Jigsaw...Author:Auto-Stretching HSV...AutomaticAvailable Images:B/WBack:BackgroundBackground (%d%s)Background:Bad colormapBarnsley 1Barnsley 2Barnsley 3Bevel EdgesBlackBlack:BlueBlue:Blur ParametersBlur RadiusBlur TypeBorderBot_hBottom Border:Bottom:BoxBumpBump MapBump-mapping...CML_explorer: evoluting...CMYCMYKCX:CY:C_MYKC_ameraC_aptionC_enter of brushC_ircleC_reate New ImageC_urvedC_yanC_ylinderCan operate on layers only (but was called on channel or mask).Can't create a new imageCannot operate on empty selections.Cannot operate on gray or indexed color images.Cannot operate on indexed color images.Cannot operate on unknown image types.Cannot read extension from '%s'Cannot read footer from '%s'Cannot save RGB color images. Convert to indexed color or grayscale first.Cannot save images with alpha channel.CenterCenter _x:Center _y:Center of SuperNovaChange the CX value (changes aspect of fractal, active with every fractal but Mandelbrot and Sierpinski)Change the CY value (changes aspect of fractal, active with every fractal but Mandelbrot and Sierpinski)Change the first (minimal) x-coordinate delimitationChange the first (minimal) y-coordinate delimitationChange the intensity of the blue channelChange the intensity of the green channelChange the intensity of the red channelChange the iteration value. The higher it is, the more details will be calculated, which will take more timeChange the number of colors in the mappingChange the second (maximal) x-coordinate delimitationChange the second (maximal) y-coordinate delimitationChanges the gamma (brightness) of the selected brushChannel MixerChannel Mixer File Operation WarningChannelsCheck if you would like to have the table captioned.CheckerboardChecking this tag will cause GTM to leave no whitespace between the TD tags and the cellcontent. This is only necessary for pixel level positioning control.Choose Fractal by double-clicking on itChoose a high compression level for small file sizeCircleClearClose curve on completionClosedCo_lorCo_lor:Co_lorsCo_mment:Co_mpress TD tagsCo_ntrast:Col_umn:CollectColorColor DensityColor Enhance...Color ExchangeColor Exchange...Color Exchange: From ColorColor Exchange: To ColorColor FunctionColor ModeColor _noise:Color to AlphaColor to Alpha Color PickerColor_map:Colorcube AnalysisColorcube Analysis...ColorifyColorify Custom ColorColorifying...ColoringColorsColors:CombineComm_ent:Command:Comment:Composing Images...Compressed size: %sCompressionCompression ratio (approx.): %d to 1Constrain aspect ratioContinuous grad. w/o gapContinuous gradientControls how intense the highlights will beCopyCopy GFlareCopy SettingsCopy an objectCopyright:CosineCould not execute specified web browser: -%sCould not load PNG defaultsCould not open '%s' for reading: %sCould not open '%s' for writing: %sCould not parse specified web browser command: -%sCould not read header from '%s'Could not write '%s': %sCouldn't losslessly save transparency, saving opacity instead.Couldn't simply reduce colors further. Saving as opaque.Coupled-Map-Lattice ExplorerCreateCreate a color-map using a gradient from the gradient editorCreate a color-map with the options you specified above (color density/function). The result is visible in the preview imageCreate a new image when applying filterCreate a new unit from scratch.Create bezier curve. Shift + Button ends object creation.Create circleCreate ellipseCreate lineCreate reg polygonCreate spiralCreate starCreating diffraction pattern...Cro_pCropping...Cu_rve:CubismCurve BendCurve Bend...Curve TypeCurve for BorderCustom Color:CutCyanCyan:CylinderCylinder lengthCylinder radiusD_ivisor:DarkerData CompressionData FormattingDate:Deform ModeDegreesDeinterlaceDeinterlace...Delay inserted to prevent evil CPU-sucking anim.DeleteDelete FractalDelete GFlareDelete PointDelete an objectDelete currently selected fractalDelta functionDelta function steppedDeriving Smooth Palette...Description:DiamondDiffraction PatternsDiffuse:DigitsDimensionsDimensions:DirectionDirection VectorDirectionalDirectionsDirections:Drawing Flame...Drop ShadowE_xtendEach piece has curved sidesEach piece has straight sidesEdge DetectionEdge Detection...Edge darken:Edit ObjectEdit fractal nameEnable/disable bump-mapping (image depth)Enable/disable environment-mapping (reflection)Enable/disable high quality previewEnable/disable jagged edges removal (antialiasing)Enable/disable real time preview of changesEncapsulation:EngraveEngraving...Enter a name for the copied GFlareEnter a name for the new GFlareEnvironment image to useError grabbing the pointerError in GIMP brush file '%s'Error obtaining Screen ShotError reading BMP file header from '%s'Error starting ghostscript (%s)Error while reading '%s'. File corrupted?Error while saving '%s'. Could not save image.Error writing output file.Error: failed to load parametersError: it's not CML parameter file.Export PreviewF_ileFactorFailed to open GFlare file '%s': %sFailed to write GFlare file '%s': %sFast IntegerFileFile '%s' exists. +|De ܈pPq¹  ֺ1."Hk ۻ +V Qd ּ̼ݼ  +" *4 =IQZb +w  ýͽ)9BY xLӾ$)ѿ'}&V"}% + 'BWpx+ %  <QRY 2 @ FS$bA 0 >HNTg m{ + + &=AUfx +~ + + + +  3% Y eo~  " )5;@ O [iq u  $,5 DP ao w "?:#S/w'$&;JX&' +# +* +5@W*k(h hv#448(m)'l*U554 !.M _$m4 '3$7UL +' /9 S`r +  (A +P[s  +  +':PYo~   $&K\+s4  $+.ZAm ) 2 +R&] +(+! & B#c #1#"B>[85G N\n<|':b? +9 $ 5AR e s  + (9J +S ^ +lw   0@P V`u $y:  0 ' 6 DQ!b +  *7LT o|4 + +  $0 +B MY2k0=1 =?/} + !1Dbs ; Ygv   ( 8DX)m/#2+Jhw "'4 1M`'x). 8 S#t # +$L q1~16'Ow $:?Ffw  +*I \ j w +"  +& 1 +?J`fmr{    +%0)F p}  +  #7 +F Q_e jv  ' , 6C R\bt   + +# * 4BF +X c o{ -2/5Be= +  + *9 +HS d q{    28 +> IVfnvvm\CA  +  (@ P\q K!5=R a k y 6   1(R*{   + '>U \iox    +/"R Wa g s}%$%5$[%$%7<E L V` gu +  0E Uc|  + '> V bp  <% 6 +@Kay    # *7O +g r      $30H y  +  + BPf +     %1D I S] s  (  9  C P U d  l  +x       I   + +, += +E + +N +Y +:q +0 + + + +. + " ) 1 @ Q  b         7 W  s }           % D X  a m |   +         &/8 =G ]iy7  0 <IR eo v       $ ( +2=W^g o +|   +'-B +I Taiy#  +   ' +. 9C +Xci p z     (1 : F R^u8  /:G'    )5 H T ^hq  +   +" +*5<DZn u     +$3FK\ t~ -A Ij|    +8I]t" +#  -19,k  +  +"-3;DK Z d nx  "4!Ik{    +  +',>N_ g s +  # +  # 0 J  Y  +c n      *  !!-! I! U!c! t!! ! ! ! ! !!! !" " " -" :" F" R"^"*t" """" " +""##8#G#M# \# f# p# }## ##### #.#' $4$;$ D$ P$\$n$ u$$$$$ $$ %%-% A% N% \%+j%%% +% %%%% %%&,& <& J& V& +b&m&~&&&#&&0'4']S']'f(v(( ( (?(()) 4) A) N)[)n)/)*)C)$*B*+^*!**'*** + +1+ :+G+ V+d+ m+y+ ++++++ +++,,$, +7, B, +L,W, h,v,,,, +,, +,, ,,- -- +&-1- 6-'@-h-n-Yu--- +--- +.. +.. 9.F.L.d.y... ... ..-//0/ `/ j/t// ////// //'0 >0H0O0_0 s0}00000000001 $1 21 ?1M1^1 +c17n11 111 1 1 1 11 22,222H2\2 c2 +p2{22 22 2 +22 2 23 +3 3303B3J3]3u3~33R3&3404ZL4S445150Q55>55667)17[7x774778p8=8%8,8 99J: P: +\:g: v:: ::-:::: +: ; ;;; &;3;9; B;L; Q;[;v; ;; ;; ;;;; <1<J<P<T<\<v<<<< <<<<%<</=7= @=M=i=&===== +==> > >)>G>Z>j>>>,>>Q>:D?????*? ?@@9@R@Y@_@f@u@@@ @@@@ +@ @ @@ @ A A&A!,ANAaAxAAj.BAB$B=C>C +VC aCkC qC{CUCnCEDKDTD,dDDDDDDDDEE E-E2EGEVEeE hEtEzE EEEEEEEEEEESEC"F:fFFFFFFFF GGG&G 6G @GJG \GhGoGGGG GGG GGGGH H #H/H +AH LH ZHdH kHyHHHHHH HH HHHH H HH H I +I I1I8IGI ZI gIqII +II IIII(IJ J J*J3JLJUJ +dJ oJ {JJJJJ JJ JJ +JK KK +%K0K9KIKYK oK yKKKKKKKKK KL L +L "L0LCLKL]LfLLL L LL L LLLLLL LM +M MM-M5M>MDMLM +RM ]M kMwM MMMMMMMMM MMM N(N [M[:b[[[[ +[ +[[@[w]k`a a$a>aMaVa7faa$aaa$ b2b Ob]bxb +b:b@bc &c3c;cKcZc bc pc~c c +c ccccc ccd dd#d,d;dKd^d|ddd dddVdPece$}ee-f%fhg&qggg$gghh,h oMo\o eo sooooooooooo oo ppp +p9pApJp Qp [php{pFpp$p< q$]q'q&q+qqAr-_r,r r rrrr r ss)s&=sds&|s sssqsqKtt(t(u*)u+Tu+uu43v&hv&v%v vvww (wIw"Qw tw wBw-ww-x.@xoxpyyz %z 2z }I}Z}b} u}}*}3} } } ~3~ E~ +R~4]~~D~ ~~ ~ ,*>i! & +$$3Of"%Ȁ)4 M)n.Bǁ +%&DOk ׂ 6OM(ƃ"؃ B H T` q {   +,ۄ  4 +T_ho ~ +υڅ  +- +FQks |  † ҆ + 2Lf|q &8DM   Ĉш 5= S a ʼnΉ +4%Zbhmt { !ˊ)7'O,w"Nj֋ۋ*E\wŒҌ"،"1 MWwˍ܍/Icz  Ŏ֎2 +-=<k+ԏ   ,-Hsv& 0Ol Ǒ,ۑ++4/`9ʒ$$4FK\ kw )2Փ.7;J$-ϔ7$5Zo Е!8>G\m Ȗ%Җ    /;R hr ˗ +ח #4 = KU +r}  ȘԘ  )= P^.w +͙ԙ   '9K`ew + ǚ֚ +    2@_ x ě̛ޛ $;Qk˜ ߜ    +5>E MZo!0˝4B1@t  ̞ ۞ + + < IW]oΟ & ,:K^VpkǠT3B@ˡ  !', C +Q +\ g s  ɢբ ++> R_e +x  +  У +ݣGDL +fq/63 + J Vcg Х٥,Ia~ +  +ɦԦ  5:?FMT[b i w%%%$%-%S y +  ɨߨ    .E` t֩ :Uo ժ ' 1 ? MYirzE-  +*AXnάެ  # ,9Q +i t ֭ +   # +8JA`  Ԯ + 4*C n$z'ǯ#֯  (08IYy ɰ    * 8F VczDZױ  ' 6 BP bnE    '49M3 +ƳFͳ   )3ET2iӴ $:S +l +w  ̵!ݵ!!!C +_jy + + +Ķ +϶ +ڶ  ! 4>FKPbq *߷  '. 6D]lp ȸ׸  -1 :Fc +ju}- ҹ޹   &$#Kov  к#  ",5 =GY jt  + + ˻л ׻' : G Ubz  ȼ Ҽbܼ?:S +  +¾Ծܾ:%3`!ɿݿ#6E*V + +   .7M U _ iw}  #1&O v   / E O] {  (<Ql  ,?P W#e + .)Ge|   +   # 0 =Gd t!~!!  'GVeu   ) <J R ^ +ju $AV_o1$4Gey !    - AN ^ ky   1 1F]l    '8 +H S ]g9p  + +  ( :H[n  -BXm~  #;(W"JMBM&?[m $78R!j7 -@G]o~  + 4Le { 6E +LWfl q D ( +2=Ma +u #?R$e     +! ,9Ig    "@ H U_q  ! +8" *8> DR c q{   # 0 <I ^ lx   +0 ;#EDi(5>8w!', (G_"n%g&J&qA;X 84= CM R`i +oz   + +  + ,9@"\!8 A+K w", 6? ]g| "/"Nq-2A(8ax+/5:@Oaq  +    ' +<G`ioD*, +8 CQXg>oS  *@HNVg  -3 9FKPWZ`fk p +zQ91CJMV_ h r|    + +$ /;BJYl   +    (09B KUe mw} +       "9 AM +cnw  ( 1> +NY b oy     +3 > +LW_t   + +"+KT cqy +     (/6 H T an     -:IO` gs{    #&+4;Oin} %6 +EP i w +   +   $ > KYqy    +/ >J ]g o +| +  + +    + +' 2> GSg w     $4 <F Wc +ju   %.6E Xel   + 09?F +MX ku   8  B L X dp  + +;   ) :DL\%o*  + $ 7C U a n{  +    2 < J Xbk|      +     %28AV[ lx    (, U ao t  TXyFnK2p o)@|*1' cUuU= 9&+Kn85/?Q=:b8=[ZR+4 {Iid\.&<<{<;&ku"'kv} B)>(x>gh#ry!aSm`.;^00;_"&\=!dR8m5WX[Kd&"z]0 +FTTYhG8 DAwO&oh4?>{2 bg CJ?N a[MDD>]t0idZv~ +hO{(pz=<-6$! /!nE;TDf FL?7j48W]xH}(_sIMps_T>%*x9w. g-|i;1LxaPa\QIboon]chl WzT +,DJ\/4*zsArJi"`)Ni{+]nE9ty &wWQmz3 :h%f,'l"q*61?x3f@#% fa!WmE`p}|`]trXp%r +@K7}3XV,cq(_E>yi]sHELGqA|B j3r: tqzN;QRLcp,*M|*+yPU{?YQMF!5S*CPoes[Rj|`24, jJ9VdtuS>R +K/Q:_ +K}Aw/yc qW|5fr1W#U/>=*I+#dO~%nb +X:w2f26%tF"Y*ZE\nUQ:v\_r S^7G^ZGNLX,yC{xoP kS.Ge#)M2B'(@-)W}i[B.@lG-52}X,m4=# R% @5X#<:f`NVA,HA9[.V sd3vVDIP)L\kp uom.]PQgk?HuErce6<Ovv&g,lDqwZ6BlBg 6lU"RjM\Ul+d V^Z CM7CdagbDJ +)3R }+yu;~Ng N4. YNK^"8pP(UhNT n1eSe$P$-|ux^r5Yx(OK1  qeE!@1Z4$ #+u``05A2sOYoH;#M :I_Ox@8{y7f@$(SjJ0Vj/(j^K}[-jVz?tte!bqk6789:siO~I'sz$C-L"XJ9/ 7`tB\lA<fEIH&eGqHHVw>^gC8w][hSo$/bc .hU?{ +JC $a$!=YZ_pCM1G6W3B6Tv1_^ka4u 0RHz w~-=i<S;'%[O|B% Db0)YvAkmm2'I~GF~~L93lZF LFvT~k5<cF 3)+YJn7abc-'Q0'e97mP + +Copyright (C) 1997-2001 Michael Sweet, Robert Krawitz, +and the rest of the Gimp-Print Development Team. + +Please visit our web site at http://gimp-print.sourceforge.net. + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +"Fix seed" button is an alias of me. +The same seed produces the same image, if (1) the widths of images are same (this is the reason why image on drawable is different from preview), and (2) all mutation rates equal to zero.# of Spikes:# of subranges:%d Plug-In Interfaces%d Procedures%d x %d%s -- Print v%s'%s' is corrupt. Line %d Option section incorrect'%s' is not a DICOM file.'%s' is not a FractalExplorer file'%s' is not a PCX file'%s' is not a regular file'%s' is not a valid BMP file'%s' is not a valid GFlare file.(None)1 Plug-In Interface1 ProcedureA less-obsolete creation of Adam D. Moss / adam@gimp.org / adam@foxbox.org / 1998-2000A unit definition will only be saved before GIMP exits if this column is checked.ALT te_xt: (optional)ASCII artA_boutA_daptive supersamplingA_dd borderA_llA_ll tilesA_lpha-weightingA_lpha:A_mbient:A_mount:A_mplitude:A_ngle:A_nimateA_ppendA_uto update previewA_utomaticA_verage under brushAbbreviationAboutAbout Gimp-Print ActionAd_vancedAdaptive s_upersampleAdd Additional GuidesAdd FractalExplorer PathAdding Checkerboard...Adding Noise...AdditionAdditional InformationAdds random noise to the colorAdjust _FG-BGAdjust color balance, brightness, contrast, saturation, and dither algorithmAdjust output...Adjust the Luminosity ThresholdAdjust the cyan balance of the printAdjust the density (amount of ink) of the print. Reduce the density if the ink bleeds through the paper or smears; increase the density if black regions are not solid.Adjust the gamma of the print. Larger values will produce a generally brighter print, while smaller values will produce a generally darker print. Black and white will remain the same, unlike with the brightness adjustment.Adjust the magenta balance of the printAdjust the saturation (color balance) of the print +Use zero saturation to produce grayscale output using color and black inksAdjust the yellow balance of the printAdjusting Foreground/Background...Advanced OptionsAggressive RLE +(not supported by SGI)Al_ternateAl_ternate tilesAlias|Wavefront PIX imageAlien Map _2...AlienMap2AlienMap2: Transforming...Align Visible LayersAlign _Visible Layers...All JNGAll PNGAll Values are Fractions of the Film HeightAll blackAll grayAll text fields must contain a value.All whiteAlphaAlpha ChannelsAlpha:Ambient:Amount of original color to show where no direct light fallsAmount:An obsolete creation of Adam D. Moss / adam@gimp.org / adam@foxbox.org / 1998-2000Ang_le offset:Angle:Animated GIF OptionsAnimated MNG optionsAnimation Playback:AntialiasingAntialiasing quality. Higher is better, but slowerApplyApply CanvasApply _Lens...Apply active gradient to final imageApplying Canvas...Applying convolutionApplying lens...Applying the Filter Pack...Are you sure you want to delete "%s" from the list and from disk?Area #%d SettingsArea SettingsArea listArea:ArrowAs specified aboveAsciiAspect ratio:Assembling Jigsaw...Asymmetry:At _bottomAt _topAut_hor:Author:AutoAuto-Stretching Contrast...Auto-Stretching HSV...AutomaticAutomatic pre_viewAvailable Images:B, G, R, X (bmp style)B/WB_lack pullout (%):B_lue threshold:Bac_kground colorBack:BackgroundBackground (%d%s)Background ColorBackground TypeBackground:Bad colormapBarnsley 1Barnsley 2Barnsley 3Base _URL:Basic OptionsBefore and AfterBentBest for images dominated by regions of solid colorBevel EdgesBili_nearBl_ack & whiteBlackBlack and whiteBlack:Blend SettingsBlueBlue freq_uency:Blue pha_seshift:Blue:Blur CenterBlur MethodBlur ParametersBlur RadiusBlur TypeBlurring...BorderBorder SizeBot_hBothBottom Border:Bottom edgeBottom-_rightBottom:BoxBrightness:BrowseBumpBump MapBump-mapping...Bumpm_ap image:BumpmapC source codeC source code headerCML _Explorer...CML_explorer: evoluting...CMYCMYKCX:CY:C_MYKC_ameraC_aptionC_ell content:C_ell size:C_enter of brushC_hoose here:C_ircleC_ompose...C_reate New ImageC_rossesC_urvedC_yanC_ylinderCa_rtoon...Calculation SettingsCan only operate on RGB drawables.Can operate on layers only (but was called on channel or mask).Can't create a new imageCannot operate on empty selections.Cannot operate on gray or indexed color images.Cannot operate on indexed color images.Cannot operate on layers with masks.Cannot operate on unknown image types.Cannot read extension from '%s'Cannot read footer from '%s'Cannot save RGB color images. Convert to indexed color or grayscale first.Cannot save images with alpha channel.Cannot save images with alpha channels.CartoonCell size:Cell-_padding:Cell-_spacing:CenterCenter _x:Center _y:Center of Flare EffectCenter of SuperNovaCenter the image horizontally on the paperCenter the image on the paperCenter the image vertically on the paperCenter:Ch. sensitivity:Change order of arrowsChange the CX value (changes aspect of fractal, active with every fractal but Mandelbrot and Sierpinski)Change the CY value (changes aspect of fractal, active with every fractal but Mandelbrot and Sierpinski)Change the exponent of the strengthChange the first (minimal) x-coordinate delimitationChange the first (minimal) y-coordinate delimitationChange the intensity of the blue channelChange the intensity of the green channelChange the intensity of the red channelChange the iteration value. The higher it is, the more details will be calculated, which will take more timeChange the number of colors in the mappingChange the second (maximal) x-coordinate delimitationChange the second (maximal) y-coordinate delimitationChanges the gamma (brightness) of the selected brushChannel #%d:Channel Independent ParametersChannel Mi_xer...Channel MixerChannel Mixer File Operation WarningChannelsCheck if you would like to have the table captioned.CheckerCheckerboardChecking this tag will cause GTM to leave no whitespace between the TD tags and the cellcontent. This is only necessary for pixel level positioning control.Choose Fractal by double-clicking on itChoose PPD FileChoose a high compression level for small file sizeChoose the PPD file for your printerChoose the dither algorithm to be used. +Adaptive Hybrid usually produces the best all-around quality. +Ordered is faster and produces almost as good quality on photographs. +Fast and Very Fast are considerably faster, and work well for text and line art. +Hybrid Floyd-Steinberg generally produces inferior output.Choose the printer model, PPD file, and command that is used to print to this printerCircleCircle _depth in percent:Cleanup...ClearClear transparentClose curve on completionClosedCo_lorCo_lor averagingCo_lor:Co_lorsCo_mment:Co_mpensate for darkeningCo_mplexity:Co_mpress TD tagsCo_mpression level:Co_ntiguous RegionCo_ntrast:Co_rrelated noiseCol_umn:CollectColorColor DensityColor Enhance...Color ExchangeColor Exchange...Color Exchange: From ColorColor Exchange: To ColorColor FunctionColor ModeColor Range _Mapping...Color TransformationColor _noise:Color _variation:Color fillColor outputColor to AlphaColor to Alpha Color PickerColor to _Alpha...Color:Color_map:Colorcube A_nalysis...Colorcube AnalysisColorcube Analysis...ColorifyColorify Custom ColorColorifying...ColoringColormap _Rotation...ColorsColors:CombineComm_ent:Command:CommentComment:Composing Images...Composing...Composition:Compressed size: %sCompressionCompression ratio (approx.): %d to 1Compression typeConstrain aspect ratioConstructing maze using Prim's Algorithm...Constructing tileable maze using Prim's Algorithm...ContextContinuous grad. w/o gapContinuous gradientContinuous updateContoursContrast:Controls how intense the highlights will beConvolution MatrixConvolution Matrix does not work on layers smaller than 3 pixels.ConvolveCopyCopy GFlareCopy SettingsCopy an objectCopy parametersCopy the active curve to the other borderCopy to ClipboardCopying IFS to image (%d/%d)...Copying...Copyright(c) 1999-2004 by Maurits RijkCopyright:CosineCould not create working folder '%s': %sCould not execute specified web browser: +%sCould not get layers for image %dCould not interpret '%s'Could not load PNG defaultsCould not open '%s' for reading.Could not open '%s' for reading: %sCould not open '%s' for writing.Could not open '%s' for writing: %sCould not parse specified web browser command: +%sCould not read XWD header from '%s'Could not read header from '%s'Could not write '%s': %sCouldn't losslessly save transparency, saving opacity instead.Couldn't read file:Couldn't save file:Couldn't save resource file:Couldn't simply reduce colors further. Saving as opaque.Coupled-Map-Lattice ExplorerCre_ate new imageCreateCreate GuidesCreate _New layerCreate _histogramCreate a color-map using a gradient from the gradient editorCreate a color-map with the options you specified above (color density/function). The result is visible in the preview imageCreate a new image when applying filterCreate a new unit from scratch.Create a new unit with the currently selected unit as template.Create arcCreate bezier curve. Shift + Button ends object creation.Create circleCreate ellipseCreate guides...Create lineCreate new imageCreate reg polygonCreate spiralCreate starCreateDIBSection failedCreating diffraction pattern...Cro_pCropping...Cu_rve:CubismCubistic Transformation...Cumulative layers (combine)Curl LayerCurl LocationCurl OrientationCurrent gradientCurrent:Curve BendCurve Bend...Curve TypeCurve for BorderCustom Color:Custom gradientCutCyanCyan:CylinderCylinder lengthCylinder radiusDCT method:DICOM imageD_eform amount:D_ivisor:DarkerDarker:Data CompressionData FormattingData formattingDate:DecomposeDecompose to _layersDecomposing...Default Map TypeDefault _URL:Default chunks type:Default frame delay:Default frame disposal:Define Circle/Oval areaDefine New PrinterDefine Polygon areaDefine Rectangle areaDefine a new logical printer. This can be used to name a collection of settings that you wish to remember for future use.Deform ModeDegreesDeinterlaceDeinterlace...Delay inserted to prevent evil CPU-sucking anim.DeleteDelete AreaDelete FractalDelete GFlareDelete PointDelete an objectDelete currently selected fractalDelete selected areaDelta functionDelta function steppedDensity:Depth firstDepth map:Deriving Smooth Palette...Description:Deselect _allDestination channel:Destination:Deviation threshold:DiamondDifference of Gaussians...DifferentialDiffraction PatternsDiffuse:Diffusion dist.:Digital Imaging and Communications in Medicine imageDigitsDimension:DimensionsDimensions:DirectionDirection VectorDirectionalDirectional lightDirectionsDirections:Displacement map:Distance from the bottom of the paper to the imageDistance from the left of the paper to the imageDistance from the left of the paper to the right of the imageDistance from the right of the paper to the imageDistance from the top of the paper to the bottom of the imageDistance from the top of the paper to the imageDither Algorithm:DivisionDo _PreviewDo you really want to discard your changes?Do you really want to overwrite?DoG Edge DetectDocument not foundDrawables have different sizeDrawing Flame...Drawing Grid...Drawing Maze...Drawing SettingsDrop ShadowEOF encountered on readingEXIF data will be ignored.E_nable bump mappingE_nable environment mappingE_xtendEach piece has curved sidesEach piece has straight sidesEdge AffectedEdge DetectionEdge Detection...Edge darken:EdgesEditEdit Area Info...Edit Map Info...Edit ObjectEdit area info...Edit fractal nameEdit map infoEdit selected area infoEffect ChannelEffect OperatorEn_grave...En_vironment image:Enable _antialiasingEnable/disable bump-mapping (image depth)Enable/disable environment-mapping (reflection)Enable/disable high quality previewEnable/disable jagged edges removal (antialiasing)Enable/disable real time preview of changesEncapsulated PostScript imageEncapsulation:EngraveEngraving...Enter a name for the copied GFlareEnter a name for the new GFlareEnter the PPD filename for your printerEnter the command to print to your printer. Note: Please do not remove the `-l' or `-oraw' from the command string, or printing will probably fail!Enter the name you wish to give this logical printerEntire LayerEnv. sensitivity:Environment image to useError grabbing the pointerError in GIMP brush file '%s'Error obtaining Screen ShotError opening fileError opening file '%s'Error reading BMP file header from '%s'Error starting ghostscript (%s)Error starting ghostscript: %sError while reading '%s'. File corrupted?Error while saving '%s'. Could not save image.Error writing output file.Error: failed to load parametersError: it's not CML parameter file.Evenly distributedExp.:Export PreviewExtract ChannelsFG colorF_ileF_irst Color:F_lare intensity:FactorFailed to open GFlare file '%s': %sFailed to save PPM file '%s': %sFailed to write GFlare file '%s': %sFast IntegerFastest and brightest color for text and line artFileFile "%s" saved.File '%s' doesn't seem to be an IFS Fractal file.File '%s' exists. Overwrite it?File '%s' is corrupt. -Line %d Option section incorrectFile '%s' is not a FractalExplorer fileFilename:Filename: %sFill (bottom to top)Fill (left to right)Fill (right to left)Fill (top to bottom)Fill with parameter kFilmFinding Animation Background...Finding Edges...FlameFlareFXFloating-PointForegroundFractal ParametersFractal TraceFractal TypeFractal name:FractalExplorer GradientFrame %dFrame %d (%d%s)Frame %d of %dFrame (%i)From ColorFrom paperFrom:Front:GFlareGFlare EditorGIF OptionsGIF WarningGIMP ExtensionGIMP Plug-InGIMP brushes are either GRAYSCALE or RGBAGamma:General OptionsGfigGimp-Print Version GimpressionistGlass TileGlass Tile...Gr_eyGrabGrab _AfterGrab a single windowGrab the whole screenGradient Flare...GrayGreenGreen:GreyGrid spacing:Guillotine...HSVHTML Page OptionsH_ighlight:H_ighlightsH_ueH_ue:He_xagonsHeight:Higher values makes the highlights more focusedHigher values makes the object reflect more light (appear lighter)Highlight:Highlights:HotHot...How many units make up an inch.HueHue:IDITER:IWarpI_nteractiveIf checked GTM will output a full HTML document with , , etc. tags instead of just the table html.If checked GTM will replace any rectangular sections of identically colored blocks with one large cell with ROWSPAN and COLSPAN values.If you enable this option higher color values will be swapped with lower ones and vice versaIf you enable this option the preview will be redrawn automaticallyImage SizeImage dimensions: %d x %dImages for the Cap FacesImport path elements of the SVG so they can be used with the GIMP path toolInchInclude decorationsIntegerIntensityIntensity LevelsIntensity of original color when lit by a light sourceInterlaceInternal GIMP procedureInvalid UTF-8 string in PSD fileInvalid UTF-8 string in brush file '%s'.InversionIsometricJNGJPEG previewJigsawJigsaw StyleJuliaKeep image's valuesKeep originalKeep the first valueLZ77L_eadingL_eft BorderL_ength:LambdaLandscapeLayer %s doesn't have an alpha channel, skippedLeft:Lens EffectLightLight SettingsLight source X direction in XYZ spaceLight source X position in XYZ spaceLight source Y direction in XYZ spaceLight source Y position in XYZ spaceLight source Z direction in XYZ spaceLight source Z position in XYZ spaceLighterLighting EffectsLighting Effects...LineLinearList ViewLo_wer BorderLoad Channel Mixer SettingsLoad Curve Points from fileLoad FlameLoad Fractal ParametersLoad Gfig object collectionLoad KISS PaletteLoad Parameters fromLoad PostScriptLoad a fractal from fileLoad the curves from a fileLoading Screen Shot...LogarithmicLoopMNG OptionsMagentaMagenta:Make destination image transparent where bump height is zeroMake image transparent outside objectMan'o'warMandelbrotMandelbrot ParametersMap Images to Box FacesMap to ObjectMap to:MatrixMax (x+d, -)Max (x+d, -), (0.5 < x)Max (x+d, -), (x < 0.5)Max (x, -)Max (x-d, -)Max (x-d, -), (0.5 < x)Max (x-d, -), (x < 0.5)Maximum height for bumpsMidtones:Min (x+d, -)Min (x+d, -), (0.5 < x)Min (x+d, -), (x < 0.5)Min (x, -)Min (x-d, -)Min (x-d, -), (0.5 < x)Min (x-d, -), (x < 0.5)ModeModify CurvesMosaicMotion BlurMotion Blurring...Move a single pointMove an objectMultiply gradient (0,1)Multiply rand. value (0,1)Multiply rand. value (0,2)My first fractalNameNew FractalNew GFlareNew UnitNo %s in gimprc: +Line %d Option section incorrectFile '%s' is not a FractalExplorer fileFile already existsFile size: %02.01f kBFile size: unknownFilename:Filename: %sFillFill (bottom to top)Fill (left to right)Fill (right to left)Fill (top to bottom)Fill with parameter kFilmFilterFinding Animation Background...Finding Edges...First Destination ColorFirst Source ColorFirst colorFix seedFlameFlareFXFlexible Image Transport SystemFlipFloating-PointFo_reground colorForce baseline JPEGForegroundForeground / background colorsFractal ParametersFractal TraceFractal TypeFractal name:FractalExplorer GradientFrame %dFrame %d (%d%s)Frame %d of %dFrame (%i)Frame disposal where unspecified: FrequenciesFrequency (rows):FromFrom ClipboardFrom ColorFrom gradientFrom paperFrom reverse gradientFrom:Front:FullFunctionFunction type:Fuzzy SelectG-QbistG3 fax imageGEE-SLIMEGFlare EditorGIF OptionsGIF WarningGIF imageGIMP ExtensionGIMP Help browserGIMP Plug-InGIMP Table MagicGIMP brushGIMP brush (animated)GIMP brushes are either GRAYSCALE or RGBAGIMP patternG_lowG_reen threshold:Gamma:Gaussian BlurGaussian Blur...Gee-_SlimeGee-_ZoomGeneralGeneral OptionsGeneral PreferencesGeneral optionsGet sample colorsGfigGimp-Print Version GimpressionistGlass TileGlass Tile...Gr_eyGrabGrab _AfterGrab a single windowGrab the whole screenGradientGradient Flare...Gradient Map...Gradient fillGradient scale:GradientsGraph of the current settingsGraphic antialiasingGrayGray ModeGray OptionsGray ThresholdGrayscaleGreenGreen fr_equency:Green ph_aseshift:Green:GreyGridGrid GranularityGrid OffsetGrid SettingsGrid Settings...Grid Visibility and TypeGrid color:Grid settings...Grid spacing:Grid type:GuidesGuides...Guillotine...HSVHTML Page OptionsHTML tableH_ighlight:H_ighlightsH_ueH_ue:He_xagonsHeight (pixels):Height of the paper that you wish to print toHeight:Help ID '%s' unknownHigh _Quality previewHigher values increase the magnitude of the effectHigher values makes the highlights more focusedHigher values makes the object reflect more light (appear lighter)Higher values restrict the effect to fewer areas of the imageHighlight:Highlights:Ho_le width:Ho_rizontal base:Hol_e height:Hold intensityHole sp_acing:HorizontalHorizontal ColorHorizontallyHorseshoeHotHot spot _X:Hot spot _Y:Hot...How many units make up an inch.HueHue Rotation:Hue VariationsHue _frequency:Hue _phaseshift:Hue:I don't careIDIFS Fractal Render OptionsITER:IWarpI_ntensityI_nteractiveI_nvert bumpmapI_nverted imageIf checked GTM will output a full HTML document with , , etc. tags instead of just the table html.If checked GTM will replace any rectangular sections of identically colored blocks with one large cell with ROWSPAN and COLSPAN values.If unchecked the image will be circularly mapped onto a rectangle. If checked the image will be mapped onto a circle.If you enable this option higher color values will be swapped with lower ones and vice versaIf you enable this option the preview will be redrawn automaticallyIllusionIllusion...Im_ageImageImage / Output SettingsImage SelectionImage SizeImage TypesImage _Type:Image _height:Image dimensions: %d x %dImage name:Image size has changed.Image spac_ing:Image type:Imagemap plug-in 2.2Images for the Cap FacesImages have different sizeImport _pathsImport path elements of the SVG so they can be used with the GIMP path toolIn_tegration steps:In_verseInchInclude decorationsIndexedIndexed Palette TypeInitial value:Ink type:Input levels:Insert PointInsertion DateIntegerIntensityIntensity LevelsIntensity of original color when lit by a light sourceInterlaceInternal GIMP procedureIntersectionIntersection ColorInvalid UTF-8 string in PSD fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in pattern file '%s'.InversionInverts the Papers textureIsometricIterations:JNGJNG + delta PNGJPEG compression quality:JPEG imageJPEG previewJPEG quality parameterJPEG smoothing factor:JigsawJigsaw StyleJuliaKISS CELKeep _even fieldsKeep image's valuesKeep o_dd fieldsKeep originalKeep the first valueLZ77L_eadingL_eft BorderL_ength:L_inearLambdaLandscapeLaplaceLaplace...Layer %s doesn't have an alpha channel, skippedLeftLeft edgeLeft:Lens EffectLess Sat:LevelLightLight 1Light 2Light 3Light 4Light 5Light 6Light SettingsLight _direction:Light intensityLight source X direction in XYZ spaceLight source X position in XYZ spaceLight source Y direction in XYZ spaceLight source Y position in XYZ spaceLight source Z direction in XYZ spaceLight source Z position in XYZ spaceLighterLighter:Lighting EffectsLighting Effects...Lighting preset:Lightsource color:Lightsource type:LineLine artLinearLink TypeList ViewLizardLo_wer BorderLoad Channel Mixer SettingsLoad Curve Points from fileLoad FITS FileLoad FlameLoad Fractal ParametersLoad Gfig object collectionLoad ImagemapLoad KISS PaletteLoad Lighting PresetLoad Parameters fromLoad PostScriptLoad QBE fileLoad a fractal from fileLoad the curves from a fileLoading Screen Shot...Lock _thresholdsLogarithmicLoopLower leftLower rightLower selected objectLower t_hreshold:Luminosity _Threshold:Luminosity freq_uency:Luminosity pha_seshift:MNG OptionsMNG animationM_aximum value:Ma_x depth:Ma_ximum height:Magen_taMagentaMagenta:Magnitude map:Main OptionsMake destination image transparent where bump height is zeroMake image transparent outside objectMan'o'warMandelbrotMandelbrot ParametersMap Images to Box FacesMap _Object...Map file formatMap from _topMap to Box...Map to Cylinder...Map to ObjectMap to Plane...Map to Sphere...Map to:MarbleMask FileMaterial propertiesMatrixMax (x+d, -)Max (x+d, -), (0.5 < x)Max (x+d, -), (x < 0.5)Max (x, -)Max (x-d, -)Max (x-d, -), (0.5 < x)Max (x-d, -), (x < 0.5)Max. Memory:Maximum height for bumpsMaximum size:MazeMedia size:Media source:Media type:MedianMenuMenu PathMenu Path/NameMerge imported pathsMiddle-click inside preview to pick "From Color"Midtones:Min (x+d, -)Min (x+d, -), (0.5 < x)Min (x+d, -), (x < 0.5)Min (x, -)Min (x-d, -)Min (x-d, -), (0.5 < x)Min (x-d, -), (x < 0.5)Minimum size:Mirror the active curve to the other borderMisc arrange:Mo_dify green channelMo_dify saturation channelMod. rate:Mod_ify blue channelMod_ify luminosity channelModeMode _1Mode _2Modify CurvesMor_e opaqueMore Advanced OptionsMore Sat:More t_ransparentMosaicMotion BlurMotion Blurring...MoveMove DownMove SashMove Selected ObjectsMove To FrontMove UpMove a single pointMove an objectMultiple (57):Multiply gradient (0,1)Multiply rand. value (0,1)Multiply rand. value (0,2)Mutation dist.:Mutation rate:My first fractalNL FilterNL Filter...NameNeon DetectionNeon...New FractalNew GFlareNew UnitNew printer...New seedNewsprin_t...NewsprintNewsprint...No %s in gimprc: You need to add an entry like (%s "%s") -to your %s file.No colorsNo data capturedNo matchesNo sensible extension, attempting to load with file magic.No sensible extension, saving as compressed XCF.Non-square pixels. Image might look squashed.NoneNormalNumber of ColorsNumber of TilesNumber of _Frames:Number of colors:Number of pieces going acrossNumber of pieces going downNumber of times to apply filterNumber of unique colors: %dNumberingO_ffset:O_pacity:O_ptionsO_rientationO_thersObject X position in XYZ spaceObject Y position in XYZ spaceObject Z position in XYZ spaceOil Painting...OilifyOn Film:Only one unique colorOp_acity:Op_tionsOpening '%s'...OptimizeOptimizing Animation...OptionsOr_ientationOr_igin at bottom leftOrientationOrientation:OriginalOutputOutput Levels:Outside TypePNGPPD File:PPIP_reviewPage %dPages:Painting...Parameter k:ParametersPercentPercentage of pixels to be filteredPhotographPixel _Height:Pixel _Width:PixelizePixelizing...PlanePlasmaPlasma...Play/StopPluralPointPolarizePolarizing...PolygonPortraitPositionPre_viewPreviewPrinter Model:Printer SettingsProgressiveQuality:RGBRGBARLER_adius:R_andomization (%):R_edR_epeat:R_everseRadiansRadians/PiRadiusRadius:RandomRandom Seed:Random sharedRandom, ch. independentRandoms from seedRandoms from seed (shared)RawRays Paint OptionsRe_dRealtime PreviewRecompute preview imageRectangleRedRed:Redo last zoomRedrawRedraw previewReduce _LuminanceReduce _SaturationReflectivityRemo_veRemoving Animation Background...Removing color...Render Flare...Render Scalable Vector GraphicsRendered SVGRenderingRendering Fractal...Rendering SVG...Rendering SuperNova...Rendering Tiles...ReplaceRescan for FractalsReset parameters to default valuesResolutionResolution:RewindRight Border:Right:Ro_tation:Ro_w:Rotat_e:Rotate X:Rotate Y:Rotate Z:RotationRotation angle about X axisRotation angle about Y axisRotation angle about Z axisRoundSVG file does not -specify a size!S_elect Window AfterS_hrinkS_ineS_ubject:S_wapS_wirl CCWSameSat_urationSatu_rationSaturationSaturation:SaveSave BrushSave Channel Mixer SettingsSave Curve Points to fileSave EXIF dataSave FlameSave Fractal ParametersSave Gfig DrawingSave Parameters toSave _color values from transparent pixelsSave active fractal to fileSave as BMPSave as BrushSave as C-SourceSave as GIFSave as JPEGSave as MNGSave as PNGSave as PNMSave as PSPSave as PostScriptSave as TGASave as TIFFSave as TextSave the curves to a fileSavedSaving '%s'...Sc_attering:Scale X:Scale Y:Scale Z:Scale:Scaling:Screen ShotSe_lection OnlySearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeascapeSeconds DelaySeed of Random (only for "From Seed" Modes)Seed:SelectSelect Film ColorSelect Number ColorSelect folder and rescan collectionSelect:SelectionSeparate to:Set light source colorSettingsShadow blur:Shadow darken:Shadow depth:Shadows:SharpenSharpening...Show all objectsShow next objectShow previous objectShow/hide preview wireframeSi_ngular:SierpinskiSineSingularSinusoidalSizeSize (%):Size:SmearSmoo_thingSmoot_hSmooth PaletteSmoothing:Solid colored backgroundSpacing:Specified window not foundSpecifies the aspect ratio of the brushSpecular:SphereSphericalSpiderStandardStar Number of PointsStart angle:StepStop when pixel differences are smaller than this valueStrongSubsampling:SuperNovaSuperNova Color PickerSw_irl CWSymbolTIFF ChannelT_urbulence:Table Creation OptionsTable OptionsTel_netTemporaryTemporary ProcedureThe GIF format only supports comments in 7bit ASCII encoding. No comment is saved.The GIMPressionistThe PNG file specifies an offset that caused the layer to be positioned outside the image.The TIFF format only supports comments in -7bit ASCII encoding. No comment is saved.The amount of cellpadding.The amount of cellspacing.The default comment is limited to %d characters.The first row of the imageThe height for each table cell. Can be a number or a percent.The name '%s' is used already!The name `%s' is used already!The number of pixels in the table border.The text for the table caption.The text to go into each cell.The unit's abbreviation (e.g. "cm" for centimeters).The unit's plural form.The unit's singular form.The unit's symbol if it has one (e.g. "'" for inches). The unit's abbreviation is used if doesn't have a symbol.The width for each table cell. Can be a number or a percent.There are not enough layers to align.This field is a hint for numerical input fields. It specifies how many decimal digits the input field should provide to get approximately the same accuracy as an "inch" input field with two decimal digits.This is not a GIF fileThis string will be used to identify a unit in GIMP's configuration files.Thresho_ld:Tile source image: useful for infinite planesTo ColorTop:Tr_ailingTransparentTurbulence:Type of light source to applyType of object to map toType:Uncompressed size: %sUndo last zoomUnitUnit EditorUnit factor must not be 0.UnitsUnits:Unknown color model in PNG file '%s'.UnnamedUnsupported bit depth (%d)!Unsupported brush formatUntitledUnusual PCX flavour, giving upUpside downUse average valueUse cosine-function for this color componentUse linear mapping instead of any trigonometrical function for this color channelUse log log smoothing to eliminate "banding" in the resultUse loglog smoothingUse reverse valueUse sine-function for this color componentV_alueValueValue:Vector _Angle:Vector _Length:WAI_SWarningWarning: +to your %s file.No colorsNo compressionNo data capturedNo fillNo lightNo matchesNo selection to convertNo sensible extension, attempting to load with file magic.No sensible extension, saving as compressed XCF.No. _Down:NoiseNon-square pixels. Image might look squashed.NoneNormalNormal:Normalizing...Nothing to crop.Number of ColorsNumber of M_RU entries (1 - 16):Number of SegmentsNumber of TilesNumber of _Frames:Number of _Undo levels (1 - 99):Number of cells:Number of colors:Number of pieces going acrossNumber of pieces going downNumber of times to apply filterNumber of unique colors: %dNumberingO_ffset:O_nly foregroundO_pacity:O_ptionsO_rientationO_thersO_utput channel:O_verlap:O_versample:Object X position in XYZ spaceObject Y position in XYZ spaceObject Z position in XYZ spaceOc_tagons & squaresOff_set:Offset (1):Offset _angle:Offset:Oil Painting...Oili_fy...OilifyOn Edges:On Film:On edges:One frame per layer (replace)Only b_ackgroundOnly one unique colorOp_acity:Op_timal estimationOp_tionsOpacity:OpenOpen FileOpen IFS Fraktal fileOpen recentOpening '%s'...Opening thumbnail for '%s'...OptimizeOptimize (for _GIF)Optimize the output for the type of image being printedOptimizing Animation...OptionsOr_ientationOr_igin at bottom leftOrientationOrientation:OriginalOriginal intensityOriginal:Ot_herOther optionsOutputOutput Levels:Output type:Outside TypeP(ower factor):PDF documentPGM imagePNGPNG + delta PNGPNG compression level:PNM ImagePNM imagePPD File:PPIPPM imagePS DiamondPS Square (Euclidean Dot)P_aperP_reviewPage %dPage Curl...Page SetupPageSetupDlg failed: %dPagecurl EffectPages:Painting...Pal_ette File:PaletteParameter k:ParametersParameters were saved to '%s'Parse error in '%s': +%sPastePaste from ClipboardPastedPasting...Pattern fillPercentPercent _black:Percent _white:Percentage of pixels to be filteredPhase angle, range 0-360PhongPhotocopyPhotographPieces:Ping pongPixel _Height:Pixel _Width:PixelizePixelizing...PixelsPl_acementPlacementPlanar (RRR,GGG,BBB)Planar RGBPlanePlasmaPlasma...Play/StopPlayback:Please check your installation.Plot a graph of the settingsPlug-In BrowserPluralPo_larization:PointPoint lightPolarPolarizePolarizing...PolygonPortraitPositionPosition X:Position Y:Position Z:Position the image on the page. +Click and drag with the primary button to position the image. +Click and drag with the second button to move the image with finer precision; each unit of motion moves the image one point (1/72") +Click and drag with the third (middle) button to move the image in units of the image size. +Holding down the shift key while clicking and dragging constrains the image to only horizontal or vertical motion. +If you click another button while dragging the mouse, the image will return to its original position.PostScript documentPostScript save cannot handle images with alpha channelsPre_viewPreferencesPreserve _luminosityPreviewPreview _size:PrewittPrim's algorithmPrint Color AdjustPrint and +Save SettingsPrint in black and white (no color, and no shades of gray)Print in shades of gray using black inkPrint to FilePrintDlg failed: %dPrinter Model:Printer SettingsPrinter doesn't support bitmapsPrinter model:Printer name:Printing...Procedure _BrowserProgressivePropagateQbist ...Quality:R, G, B (normal)RGBRGB Save TypeRGBARLERLE compressionR_adius 2:R_adius:R_andom hue:R_andom seed:R_andomization (%):R_ecursiveR_edR_ed threshold:R_epeat:R_everseRadiansRadians/PiRadiusRadius:Raise selected objectRando_m saturation:RandomRandom Seed:Random _seed:Random seedRandom sharedRandom, ch. independentRandomlyRandoms from seedRandoms from seed (shared)Range high:Range low:RawRaw Image LoaderRaw Image SaveRays Paint OptionsRe_dRealtime PreviewRecompute preview imageRectangleRedRed _frequency:Red _phaseshift:Red:RedoRedo last zoomRedrawRedraw previewReduce _LuminanceReduce _SaturationReflectivityRelati_ve linkReleased under the GNU General Public LicenseRemo_veRemoving Animation Background...Removing color...Render Flare...Render Scalable Vector GraphicsRender Windows MetafileRender optionsRendered SVGRendered WMFRenderingRendering Blast...Rendering Fractal...Rendering IFS (%d/%d)...Rendering SVG...Rendering Sphere...Rendering SuperNova...Rendering Tiles...Rendering Wind...ReplaceRescan for FractalsReset parameters to default valuesReset the active curveResize area's?ResolutionResolution and quality of the printResolution:Resulting Guide Bounds: %d,%d to %d,%d (%d areas)Resulting Guide Bounds: 0,0 to 0,0 (0 areas)Retinex (4/4): updated...Retinex Image EnhancementRetinex: Filtering...RewindRightRight Border:Right edgeRight:RippleRippling...Ro_tation:Ro_w:RobertsRotat_e:RotateRotate / ScaleRotate X:Rotate Y:Rotate Z:RotatedRotating the colormap...Rotating...RotationRotation angle about X axisRotation angle about Y axisRotation angle about Z axisRotation angle:Rotation:RoundRunLength EncodedSUN Rasterfile imageSVG file does not +specify a size!S_catter HSV...S_econd Color:S_elect Window AfterS_elect here:S_electorS_how cursorS_hrinkS_ineS_trength exp.:S_trength:S_ubject:S_wapS_wirl CCWSa_ve alpha channel (RGBA/RGB)SameSample Analyze...Sample ColorizeSample _density:Sample:Sat_urationSatu_rationSaturationSaturation fr_equency:Saturation ph_aseshift:Saturation:SaveSave +SettingsSave (middle transform) as QBE fileSave BrushSave Channel Mixer SettingsSave CurrentSave Curve Points to fileSave EXIF dataSave FileSave FlameSave Fractal ParametersSave Gfig DrawingSave ImagemapSave Lighting PresetSave Parameters toSave _background colorSave _color values from transparent pixelsSave _gammaSave _resolutionSave active fractal to fileSave as BMPSave as BrushSave as C-SourceSave as GIFSave as IFS Fraktal fileSave as JPEGSave as MNGSave as PNGSave as PNMSave as PSPSave as PatternSave as PostScriptSave as SGISave as SUNRASSave as TGASave as TIFFSave as TextSave as XBMSave as XJTSave as XPMSave background colorSave color _values from transparent pixelsSave comme_ntSave creation _timeSave creation timeSave current...Save failedSave gammaSave layer o_ffsetSave resolutionSave the curves to a fileSave thumbnailSavedSaving '%s'...Saw_toothSc_ale 1:Sc_attering:Sca_le 2:Scalable SVG imageScale Hue by:Scale Value by:Scale X:Scale Y:Scale Z:Scale by:Scale the print to the number of dots per inchScale the print to the size of the pageScale:Scaling:Scatter HSVScatter RGBScattering HSV...ScreenScreen ShotSe_lection OnlySearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeascapeSecond Destination ColorSecond Source ColorSecond colorSeconds DelaySeconds delaySeed of Random (only for "From Seed" Modes)Seed:SelectSelect AllSelect ColorSelect Film ColorSelect HTML fileSelect Image FileSelect NextSelect Number ColorSelect Palette File to LoadSelect PreviousSelect RegionSelect _AllSelect _allSelect allSelect an objectSelect contiguous regionSelect contiguous regionsSelect existing areaSelect folder and rescan collectionSelect lightsource colorSelect the base unit of measurement for printingSelect the desired output typeSelect the name of the printer (not the type, or model, of printer) that you wish to print toSelect the orientation: portrait, landscape, upside down, or seascape (upside down landscape)Select whether scaling is measured as percent of available page size or number of output dots per inchSelect your printer modelSelect:Selected:SelectionSelection size is not even. +Tileable maze won't work perfectly.Selection to Path...Selective Gaussian BlurSelective Gaussian Blur...Send To BackSend as MailSeparate to:September 31, 1999Set light source colorSet the base unit of measurement to centimetresSet the base unit of measurement to inchesSet the brightness of the print. +0 is solid black, 2 is solid whiteSet the contrast of the printSet the height of the printSet the print size to the size of the imageSet the scale (size) of the imageSet the width of the printSetStretchBltMode failed (warning only)SettingsSettings for this MapfileSetup PrinterSetup printer...Sha_dowsShadow blur:Shadow darken:Shadow depth:Shadows:Sharp edgesSharpenSharpening...Shear:ShiftShift _amount:Shift _horizontallyShift _verticallyShifting...ShowShow _Preview in image windowShow all objectsShow area URL _tipShow area _handlesShow colorShow gridShow imageShow next objectShow positionShow preview _wireframeShow previous objectShow selectionShow/hide preview wireframeSi_ngular:Sides:SierpinskiSimpleSin_usoidalSineSingularSinusSinus: rendering...SinusoidalSizeSize (%):Size of paper that you wish to print toSize:Sizes:Slowest, but most accurate and smoothest color for continuous tone images and photographsSmearSmoo_th Palette...Smoo_thingSmoot_hSmooth PaletteSmooth samplesSmoothing parametersSmoothing:Snap to gridSobelSobel Edge Detecting...Sobel Edge DetectionSobel _HorizontallySobel _VerticallySolidSolid NoiseSolid Noise...Solid colored backgroundSolid colorsSome data has been changed!Sorry, channels and masks can not be rotated.Source (input slot) of media you're printing toSource 1:Source 2:Source channel in file:Source channel:Source...Sp_ike points:Spa_tial oversample:Spacing (percent):Spacing:SparkleSparkling...Specified window not foundSpecifies the aspect ratio of the brushSpecular:SphereSphere DesignerSphere _Designer...SphericalSpi_ke angle (-1: random):SpiderSpik_e density:Spike Thickness:SpiralSpiral Number of TurnsSpotsSt_rength exp.:StandardStandard (R,G,B)Star Number of PointsStart _index:Start angle:Start offset:StartPage failedStepStep size:Stop when pixel differences are smaller than this valueStretchStretch _HSVStrongStyleSu_perNova...Subsampling:Substeps:SuperNovaSuperNova Color PickerSw_irl CWSwap the two curvesSwirlSwitch to c/clockwiseSwitch to clockwiseSymbolTIFF ChannelTIFF imageT_ilableT_ile saturation:T_ile size:T_ransparent backgroundT_urbulence:T_urbulentTable Creation OptionsTable OptionsTarGA imageTargetTel_netTemporaryTemporary ProcedureText antialiasingTextureTexture PropertiesTexture TransformationsTexture:TexturesThank you for choosing GIMPThe GIF format only supports comments in 7bit ASCII encoding. No comment is saved.The GIMP help files are not installed.The GIMPressionistThe Gimpressionist DefaultsThe PNG file specifies an offset that caused the layer to be positioned outside the image.The TIFF format only supports comments in +7bit ASCII encoding. No comment is saved.The amount of cellpadding.The amount of cellspacing.The colors are white and black.The default comment is limited to %d characters.The first row of the imageThe height for each table cell. Can be a number or a percent.The image which you are trying to save as a GIF +contains layers which extend beyond the actual +borders of the image. This isn't allowed in GIFs, +I'm afraid. + +You may choose whether to crop all of the layers to +the image borders, or cancel this save.The largest brush to createThe name '%s' is used already!The name `%s' is used already!The number of pixels in the table border.The smallest brush to createThe text for the table caption.The text to go into each cell.The unit's abbreviation (e.g. "cm" for centimeters).The unit's plural form.The unit's singular form.The unit's symbol if it has one (e.g. "'" for inches). The unit's abbreviation is used if doesn't have a symbol.The width for each table cell. Can be a number or a percent.There are not enough layers to align.There is a problem with the GIMP help files.This field is a hint for numerical input fields. It specifies how many decimal digits the input field should provide to get approximately the same accuracy as an "inch" input field with two decimal digits.This is not a GIF fileThis string will be used to identify a unit in GIMP's configuration files.Thresho_ld:Threshold:Til_e spacing:Tile _height:Tile _neatness:Tile _width:Tile source imageTile source image: useful for infinite planesTileableToTo ColorTo _bottomTo _polarTo _rightTo _topTo l_eftTool optionsToolsTop edgeTop-_leftTop:Tr_ailingTransferring TWAIN data...Transformation %sTransparentTransparent backgroundTree ViewTry Bounding BoxTurbulence:TypeType of ink in the printerType of light source to applyType of media you're printing toType of object to map toType:URLURL: %sUnOptimizing Animation...Uncompressed size: %sUndoUndo last zoomUnitUnit EditorUnit factor must not be 0.UnitsUnits:Unknown color model in PNG file '%s'.UnnamedUnrecognized or invalid BMP compression format.UnselectUnselect AllUnsupported bit depth (%d)!Unsupported brush formatUnsupported format or Clipboard empty!UntitledUnusual PCX flavour, giving upUpdateUpdate _PreviewUpper leftUpper left _x:Upper left _y:Upper rightUpside downUs_e macros instead of structUse GIMP guides...Use Gimp GuidesUse Original +Image SizeUse _1 byte Run-Length-EncodingUse average valueUse cosine-function for this color componentUse cyclic rangeUse linear mapping instead of any trigonometrical function for this color channelUse log log smoothing to eliminate "banding" in the resultUse loglog smoothingUse magnitude mapUse restart markersUse reverse valueUse sine-function for this color componentUse subcolorsUse the background colorUse the color of the imageUse the foreground colorV_alueValueValue:Van Gogh (LIC)Van Gogh (LIC)...Vector _Angle:Vector _Length:Vector mag:Ver_tical base:VerticalVertical ColorVerticallyVery darkVi_deo...VideoVideo PatternVideo/RGB...View SourceWAI_SWMF file does not +specify a size!W_ith source imageW_rite extra mask fileWarningWarning: The image you are loading has 16 bits per channel. GIMP can only handle 8 bit, so it will be converted for you. Information will be lost because of this conversion.Warning: -Transparent color in written file might be incorrect on viewers which don't support transparency.Warning: '%s' is a parameter file for newer CML_explorer than me.Warning: '%s' is an old format file.Warning: the source and the destination are the same channel.Warping Frame No. %d...Warping...WavesWaving...WeakWeb browser not specified. -Please specify a web browser using the Preferences Dialog.WhiteWidth:WindWindowsWith gradient power (0,1)With p and random (0,1)With random power (0,1)With random power (0,10)X scale (size)X:XMAX:XMIN:X_1:X_2:Y scale (size)Y:YMAX:YMIN:Y_1:Y_2:YellowYellow:You are about to create a huge +Transparent color in written file might be incorrect on viewers which don't support transparency.Warning: '%s' is a parameter file for newer CML_explorer than me.Warning: '%s' is an old format file.Warning: the source and the destination are the same channel.Warping Frame No. %d...Warping...Wave TypeWavesWaving...WeakWeb browser not specified. +Please specify a web browser using the Preferences Dialog.When toggled, the resulting image will be scaled to fit into the given size without changing the aspect ratio.WhiteWi_nd...Width (pixels):Width of the paper that you wish to print toWidth:WindWindowsWindows BMP imageWith gradient power (0,1)With p and random (0,1)With random power (0,1)With random power (0,10)WoodWork on cop_yWrapWrite error occurredX BitMap imageX scale (size)X:XBM OptionsXMAX:XMIN:XY position:X_1:X_2:Y scale (size)Y:YMAX:YMIN:Y_1:Y_2:YellowYellow:You are about to create a huge HTML file which will most likely -crash your browser.Z scale (size)Z:Zoom in (make image bigger)Zoom out (make image smaller)_Abbreviation:_Advanced_Alpha_Amount:_Amplitude:_Angle:_Animate_Antialiasing_Azimuth:_Bilinear_Blacken_Blast_Blue_Blue:_Border:_Bottom:_Box_Brightness:_Brush_Bump Map_Copy_Deflate_Depth:_Digits:_Displacement:_Elevation:_Encapsulated PostScript_Entire Image_Environment Map_Exponent:_Factor:_Filename:_Font:_Fractals_Free_Gamma:_General_Gopher_Gradient_Green_Green:_Grey_Grow_Height:_Horizontal_Horizontal:_Hue_ID:_Inch_Interlacing (Adam7)_JPEG_JavaScript_LZW_Left_Light_Linear_Link_Lower_MIME_Material_Max Depth:_Midtones_Millimeter_Mirror_Misc Ops._Monochrome_Move_None_Pack Bits_Parameters_Period:_Phase:_Ping Pong_Plural:_Preview_Preview!_Psychobilly_RGB_RLE compression_RLE encoded_Radial_Radius:_Randomize_Rays_Recipient:_Red:_Reflective_Rendering_Right_Right Border_Saturation_Saturation:_Search:_Sender:_Settings_Sharpness:_Size:_Speed:_Spokes:_Square_Squares_Strength:_Symbol:_Threshold_Threshold:_Top:_Transparent_Update_Upper_Upper Border_Uuencode_Value_Value:_Variation:_Vertical_Vertical:_Warp_Waterlevel:_Wavelength:_White_Width:_Wind_Wrap_X Scale:_X:_Y Scale:_Y:_Yellow_Z:_Zoom:a _Single Windowafteralphabluecmcyane-_mailgreenhuek(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedmagentamillisecondspixelspixels/%aredsaturationsin^p, steppedsin^p-based functionsome sort of error with the file extension or lack thereofthe _Whole ScreenvalueyellowProject-Id-Version: gimp-plug-ins 1.1.26 +crash your browser.You can not rotate the whole image if there's a floating selection.You can not rotate the whole image if there's a selection.Z scale (size)Z:ZoomZoom inZoom in (make image bigger)Zoom outZoom out (make image smaller)Zoom scale:Zoom to_Abbreviation:_About ImageMap_Adaptive_Advanced_Advanced Options_Algorithm:_Alpha_Alpha threshold:_Alpha trimmed mean_Alpha:_Amount:_Amplitude:_Angle:_Animate_Antialiasing_Apply Canvas..._Autocrop Image_Autocrop Layer_Automatically convert_Azimuth:_Background_Background color_Base URL:_Bevel width:_Bilinear_Black_Black level:_Blacken_Blast_Blend_Blue_Blue:_Blur_Blur radius:_Border:_Bottom-left_Bottom:_Box_Bright:_Brightness_Brightness:_Brush_Bump Map_Bump Map..._Bump map:_Checkerboard..._Clear_Color Enhance_Color Exchange..._Colorify..._Contents_Convolution Matrix..._Copy_Cubism..._Curve Bend..._Decompose..._Deflate_Deform radius:_Deinterlace..._Delay between frames where unspecified:_Depth:_Derivative_Description:_Detail:_Diffraction Patterns..._Digits:_Displacement:_Distorted_Divisions:_Dynamic:_Edge enhancement_Edge..._Edit_Effect Image:_Elevation:_Encapsulated PostScript_Entire Image_Environment Map_Exponent:_Factor:_Factory defaults_File_Filename:_Film..._Filter Pack..._Filter length:_Fit height to images_Flame..._FlareFX..._Font:_Force_Force tiling?_Foreground & background_Foreground color_Format:_Fractal Explorer..._Fractal Trace..._Fractals_Free_Ftp Site_GFlare..._GIF comment:_GIMPressionist..._Gamma:_Gaussian Blur..._General_Generate full HTML document_Gfig..._Glass Tile..._Glow radius:_Glowing:_Gopher_Gradient_Gradient Map_Gray:_Green_Green:_Grey_Grid_Grid size:_Grid..._Grow_Guillotine_HSL color model_Height_Height:_Help_Hidden_High_Holdness:_Hole offset:_Horizontal_Horizontal style:_Horizontal:_Horz. Spacing:_Hot..._Hue_Hue rotation:_Hurl..._ID:_IFS Fractal..._IIR_IWarp..._Ideal_Identifier prefix:_Ignore_Ignore the bottom layer even if visible_Illusion..._ImageMap..._Inch_Independent RGB_Insert_Intensity:_Interlace_Interlacing (Adam7)_Invert_JPEG_JavaScript_Jigsaw..._Keep NCSA circles true_Keep aspect ratio_Keep original surroundings_Keep sign of result (one direction only)_LZW_Laplace_Left_Left Start at:_Lens refraction index:_Light_Lighting Effects..._Limit line width_Linear_Lines_Link_Load defaults_Lock channels_Loop forever_Low_Lower_MIME_Mail Image..._Make surroundings transparent_Map backwards_Map type:_Mapping_Mask file extension:_Mask radius:_Mask size:_Material_Max (%):_Max Depth:_Max. delta:_Maze..._Midtones_Millimeter_Minimum value:_Mirror_Misc Ops._Modify hue channel_Modify red channel_Monochrome_Mosaic..._Motion Blur..._Move_NL Filter..._Natural color_Neon..._No. Across:_Noise magnitude:_None_Normalize_Number height:_Number of segments:_Opacity:_Optimize (Difference)_Pack Bits_Pagecurl..._Palette Type:_Parameters_Percent black:_Period:_Phase:_Photocopy..._Pinch amount:_Ping Pong_Pixelize..._Plasma..._Playback..._Plug-In Browser_Plural:_Polygon_PostScript level 2_Prefixed name:_Preserve luminosity_Presets_Preview_Preview once_Preview!_Print_Print..._Prompt for area info_Propagating rate:_Psychobilly_Qbist..._Quality:_RGB_RGB color model_RLE_RLE compression_RLE encoded_Radial_Radius 1:_Radius:_Random hue:_Random seed:_Randomize_Rays_Recipient:_Rectangle_Red:_Redo %s_Reflective_Remove_Rendering_Require default URL_Retain tilability_Right_Right Border_Ripple..._Sample Colorize..._Saturation_Saturation:_Save comment to file_Save defaults_Scale division:_Scale:_Scatter RGB..._Screen Shot..._Search depth:_Search:_Selective Gaussian Blur..._Sender:_Set surroundings to background color_Set surroundings to index 0_Settings_Shade under curl_Sharpen..._Sharpness:_Shift..._Shiny:_Show cursor_Sinus..._Size_Size:_Smear_Smoothing:_Snap-To Grid Enabled_Sobel..._Solid Noise..._Sparkle..._Speed:_Spike length:_Spokes:_Spot function:_Square_Squares_Strength:_Stretch Contrast_Stroke_Symbol:_Target frame name/ID: (optional - used for FRAMES only)_Thickness:_Threshold_Threshold Alpha..._Threshold:_Tile bumpmap_Tile size:_Title:_Tools_Top Start at:_Top-right_Top:_Transparent_URL to activate when this area is clicked: (required)_Undo_Undo %s_Uniform_Unit Editor_Update_Upper_Upper Border_Upper threshold:_Use GLib types (guint8*)_Use background color_Use cellspan_Use double-sized grab handles_Use the (invisible) bottom layer as the base_Uuencode_Value_Value Invert_Value:_Van Gogh (LIC)..._Variation:_Vert. Spacing:_Vertical_Vertical style:_Vertical:_View_Warp_Waterlevel:_Wavelength:_Waves..._Web Site_Whirl angle:_White_White level:_Width_Width:_Wind_With white noise_Wrap_Wrap around_Write hot spot values_X Scale:_X displacement:_X offset:_X ratio:_X size:_X10 format bitmap_X:_Y Scale:_Y displacement:_Y offset:_Y ratio:_Y size:_Y:_Yellow_Z:_Zoom_Zoom:a _Single Windowafteralphabluebzip archivecmcyane-_mailgreengzip archivehuek(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedmagentamillisecondspixelspixels from _toppixels from l_eftpixels/%aredsaturationsin^p, steppedsin^p-based functionsome sort of error with the file extension or lack thereofthe _Whole Screento alphavaluex (pixels)y (pixels)yellowProject-Id-Version: gimp-plug-ins 1.1.26 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 -PO-Revision-Date: 2004-03-19 02:25+0200 +POT-Creation-Date: 2004-12-28 15:41+0100 +PO-Revision-Date: 2004-12-18 05:22+0200 Last-Translator: Mikko Paananen -Language-Team: Finnish +Language-Team: Finnish MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit -%d × %dTiedosto '%s' on epäkelpo. Virhe havaittu rivillä %d.'%s' ei ole DICOM-tiedosto.'%s' ei ole FractalExplorer-tiedosto'%s' ei ole PCX tiedosto'%s' ei ole tiedosto'%s' ei ole kelvollinen BMP-tiedosto'%s' ei ole GFlare-tiedosto(Ei mitään)Adam D. Moss / adam@gimp.org / adam@foxbox.org / 1998-2000Määritelmä talletetaan vain jos tässä sarakkeessa on rasti.Vaihtoehtoinen teksti:Tietoja_KaikkiY_mpäristö:Amplitudi:AnimoiAutomaattinenKeskiarvo siveltimen altaLyhenneTietojaTiedot Gimp-Print ToimintoLisäasetuksetLisää FractalExplorer-polkuLisätään Šakkilauta...LisäysLisää satunnaisuutta väriinSäädetään edusta/tausta...AlienMap2AlienMap2: Muunnos käynnissä...Kohista näkyvät tasotKokonaan JNGKokonaan PNGMustaaHarmaataKaikissa tekstikentissä pitää olla arvo.ValkoistaAlfaAlfa:Ympäristö:Näytettävän alkuperäisen värin määrä, kun suora valo epäonnistuuAdam D. Moss / adam@gimp.org / adam@foxbox.org / 1998-2000AnimaatioasetuksetAntialiasoinnin laatu. Korkeampi on parempi, mutta hitaampiSovella käytössä oleva väriliukuma lopulliseen kuvaanLinssiefekti...Oletko varma, että haluat tuhota "%s" listasta ja levyltä?Alue:Kuten ylläASCIIKuvasuhde:Kootaan palapeli...Tekijä:Laajennetaan...AutomaattinenKäytettävissä olevat kuvat:MustavalkoTaka:TaustaTausta (%d%s)Tausta:Virheellinen värikarttaBarnsley 1Barnsley 2Barnsley 3Särmää reunatMustaMusta:SininenSininen:SumennusparametritSäde:SumennustyyppiReunaMolemmatAlaraja:Ala:LaatikkoKuhmuKuhmutusKuhmutetaan...CML_explorer: evoluoidaan...CMYCMYKCXCY:C_MYKKameraNimiöSiveltimen keskeltäYmpyräLuo uusi kuvaKäyrä:SyaaniSylinteriToimii vain tasoilla. (Yritettiin operaatiota kanavalle tai maskille.)Ei voi luoda uutta kuvaaEi voi toimia tyhjillä valinnoilla.Ei voi toimia harmaasävy tai indeksoiduilla kuvilla.Ei voi toimia indeksoiduilla kuvillaEi voi toimia tuntemattomilla kuvillaVirhe luettaessa tiedoston '%s' laajennostaVirhe luettaessa tiedostoa '%s'Ei tue täysvärikuvia. Muunna indeksoiduksi tai harmaasävyihin.Ei voi tallennaa kuvia joissa on alfa-kanavaKeskustaKeskusta _x:Keskusta _y:Supernovan keskustaSäädä CX-arvoa (muuttaa fraktaalin aspektia, vaikuttaa kaikkiin fraktaaleihin paitsi Mandelbrot ja Sierpinski)Säädä CY-arvoa (muuttaa fraktaalin aspektia, vaikuttaa kaikkiin fraktaaleihin paitsi Mandelbrot ja Sierpinski)Säädä x-koordinaatin vähimmäisrajaaSäädä y-koordinaatin vähimmäisrajaaSäädä sinisen värikanavan voimakkuuttaSäädä vihreän värikanavan voimakkuuttaSäädä punaisen värikanavan voimakkuuttaSäädä iteraatiokierrosten lukumäärää. Mitä suurempi arvo on, sitä enemmän yksityiskohtia lasketaan, mikä vie enemmän aikaaSäädä kuvauksen käyttämää värilukumäärääSäädä x-koordinaatin enimmäisrajaaSäädä y-koordinaatin enimmäisrajaaMuuta siveltimen gammaa (valoisuutta)KanavasekoitusKanavasekoitus: tiedostovaroitusKanavatJos haluat antaa taulukolle nimen.ŠakkilautaJos päällä, TD elementtien väriin ei jätetä välilyöntejä.Valitse fraktaali kaksoisnapsauttamalla sitäSuuri pakkaustaso tarkoittaa pienempiä kuviaYmpyräTyhjennäSulje käyrä lopetettaessaSuljettuVäri_Väri:VäriäKommentti:Pakkaa TD elementit.Kontrasti:Sarake:KerääVäriVäritiheysVärinkorostusVärin vaihtoVärin vaihto...Värin vaihto: väristäVärin vaihto: väriksiVärifunktioVäritilaVärikohinaVäri -> AlfaVäri -> Alfa värivalitsinVäritVärianalyysiVärianalyysi...VäritysVäritä omalla värilläVäritetään...VäritysVäritVärit:YhdistäKomm_entti:Komento:Kommentti:Yhdistetään kuvat...Pakattu koko: %sPakkausPakkaussuhde: %d/1Säilytä kuvasuhdeJatkuva gradientti ilman aukkojaJatkuva gradienttiKontrolloi sitä, miten voimakkaita korostukset ovatKopioiKopioi GFlareKopioi asetuksetKopioi objektiCopyright:kosiniEi voinut suorittaa Web-selainta: -%sEi voinut ladata PNG asetuksiaEi voi avata '%s' lukua varten: %sEi voi avata %s kirjoittamista varten: %sEi pystynyt jäsentämään Web-selain komentoa: %s.Virhe luettaessa otsikko tiedostosta '%s'Tiedoston '%s' kirjoittaminen epäonnistui: %sLäpinäkyvyyttä voi voitu tallentaa, tallennetaan peittävänä.Ei voinut vähentää värien määrää. Tallennetaan ilman läpinäkyvyyttä.Coupled-Map-Lattice -selainLuoMuodosta värikuvaus käyttäen väriliukumamuokkaintaMuodosta värikuvaus ylläolevilla asetuksilla. Tulos näkyy esikatselukuvassa.Luo uusi kuva käyttäessäsi filtteriäLuo uusi yksikköLuo bezier-käyrä. Shift + painike päättää käyrän luomisen.Luo ympyräLuo ellipsiLuo viivaLuo polygoniLuo spiraaliLuo tähtiLuodaan diffraktiokuvioita...RajaaRajataan..._Käyrä:KubismiTaivutus käyriinKäyrien muokkaus...Käyrän tyyppiKäyrä rajalleOma väri:LeikkaaSyaaniSyaani:SylinteriSylinterin pituusSylinterin sädeJakaja:TummempiPakkausTiedostomuotoPäivämäärä:MuodonmuutosmalliAstettaLomituksen poistoLomituksen poisto...Ruutujen väliin jätetään tauko jotta animaatio on katseltavissa.PoistaPoista fraktaaliPoista GFlarePoista pistePoista objektiPoista valittu fraktaaliDelta funktioDelta funktio porrastettuEtsitään tasoitettu paletti...Kuvaus:TimanttiDiffraktiokuviotDiffuusio:NumeroaKokoMitat:SuuntasuuntavektorisuunnattuSuunnatSuunnat:Piirretään liekki...VarjoLaajennaJoka palalla on käyrät reunatJoka palalla on suorat reunatReunan tunnistusReunan tunnistus...Reunan tummennusMuokkaa objektiMuokkaa fraktaalin nimeäPäälle pois bump-mappingKytke ympäristönkuvaus (heijastus) päälle/poisKytke hyvälaatuinen esikatselu päälle/poisPäälle/pois sahalaitaiset reunojen poisto (antialiasointi)Kytke tosiaikainen esikatselu päälle/poisKoodaus:KaiverrusKaiverran...Anna nimi kopioidulle GFlarelleAnna nimi uudelle GFlarelleKäytettävä ympäristökuva:Ei saanut kaapattua osoitintaVirhe sivellintiedostossa '%s'Virhe otettaessa kuvankaappaustaVirhe luettaessa BMP tiedoston '%s' otsikkoaEi voinut käynnistää ghostscriptiä (%s)Virhe luettaessa '%s'. Tiedosto korruptoitunut?Virhe tallennettaessa tiedostoa '%s'. Ei voitu tallentaa.Virhe kirjoitettaessa tiedostoaVirhe: ei voinut ladata parametrejäVirhe: ei ole CML parametritiedosto.VientiesikatseluTiedostoKerroinTiedoston '%s' avaaminen epäonnistui: %sTiedoston '%s' kirjoittaminen epäonnistui: %sNopea kokonaislukuTiedostoTiedosto '%s' on olemassa. -Ylikirjoitetaanko?Tiedosto '%s' on epäkelpo. Virhe havaittu rivillä %d.'%s' ei ole FractalExplorer-tiedostoTiedostonimi:Tiedostonimi: %sTäytä alhaalta ylösTäytä vasemmalta oikealleTäytä oikealta vasemmalleTäytä ylhäältä alasTäytä k parametrillaFilmiEtsitään tausta...Etsin reunoja...LiekkiHeijastusLiukulukuEdustaväriFraktaalin parametritFraktaaliFraktaalin tyyppiFraktaalin nimi:FraktalExplorer-väriliukumaRuutu %dRuutu %d (%d%s)Ruutu %d/%dRuutu (%i)VäriksiPaperistaVäristä:Etu:GFlareGFlare editoriGIF asetuksetGIF varoitusGIMP laajennosGIMP liitännäinenGIMP siveltimet ovat harmaasävyisiä tai RGBAGamma:Yleiset asetuksetGfigGimp-Print versioGimpressionistiLasitiiletLasitiilet...HarmaaKaappaaKaappaa tauon jälkeenKaappaa ikkunaKaappaa koko ruutuGFlare...HarmaasävyVihreäVihreä:HarmaaApuviivojen väli:Giljotiini...HSVHTML sivun asetuksetKorostus:KorostusSävySävy:KuusikulmiotKorkeus:Suuremmat arvot tekevät korostuksista terävämpiäSuuremmilla arvoilla objekti heijastaa enemmän valoa (valoisampi)Korostus:Korostukset:KuumaKuuma...Montako yksikköä on tuumalla.SävySävy:TunnisteITER:IWarp_InteraktiivinenJos päällä, luodaan kokonainen, hyvinmuodostettu HTML sivu pelkän taulukon sijaan.Jos päällä, samanväriset ruudut optiomoidaan yhdeksi suureksi soluksi ROWSPAN ja COLSPAN -määreillä.Jos käytät tätä, voimakkaat ja heikot värit vaihtavat paikkaaJos valitset tämän esikatselukuva muodostetaan automaattisestiKuvan kokoKuvan koko: %d×%dPäädyn kuvatTuo polut GIMPin polkutyökalun käyttöönTuumaSisällytä reunatKokonaislukuVoimakkuusIntensiteetti tasotAlkuperäisen värin intensiteteetti, kun käynnistetty valolähteestäLomitusSisäinen GIMP proseduuriVirheellinen unicode merkkijono PSD tiedostossaEpäkelpo unicode-merkkijono sivellintiedostossa '%s'.KäänteinenIsometrinenJNGJPEG esikatseluPalapeliPalapelin tyyliJuliaPidetään kuvan arvotSäilytä alkuperäinenPidetään ensimmäinen arvoLZ77Edeltävä_Vasen rajaPituus:LambdavaakaTasolla %s ei ole alfa-kanavaa.Vasen:LinssiefektiValoValoasetuksetValolähteen X suunta XYZ avaruudessaValolähteen X paikka XYZ avaruudessaValolähteen Y suunta XYZ avaruudessaValolahteen Y paikka XYZ avaruudessaValolähteen Z suunta XYZ avaruudessaValolähteen Z paikka XYZ avaruudessaVaaleampiValoefektitValoefektitLiivalineaarinenListanäyttö_AlarajaLataa kanava-asetuksetLataa käyrät tiedostostaLataa LiekkiLataa fraktaaliparametritLataa Gfig kokoelmaLadataan KISS palettiLataa parametritLataa PostScriptLataa fraktaali tiedostostaLataa käyrät tiedostostaLadataan kuvankaappaus...logaritminenToistoAsetuksetMagentaMagenta:Tee tuloskuvasta läpinäkyvä kohdissa jossa kuhmun korkeus on nollaObjektin ulkopuolisesti kuvasta läpinäkyväMan'o'warMandelbrotMandelbrot parameteritKuvaa laatikon kylkiinKuvaa kappaleeseenKuvaus:MatriisiMax (x+d, -)Max (x+d, -), (0.5 < x)Max (x+d, -), (x < 0.5)Max (x, -)Max (x-d, -)Max (x-d, -), (0.5 < x)Max (x-d, -), (x < 0.5)Kuhmujen maksimikorkeusKeskisävyt:Min (x+d, -)Min (x+d, -), (0.5 < x)Min (x+d, -), (x < 0.5)Min (x, -)Min (x-d, -)Min (x-d, -), (0.5 < x)Min (x-d, -), (x < 0.5)ToimintatapaMuokkaa käyriäMosaiikkiLiike-epäterävyysLiike-epäterävyys...Siirrä pisteSiirrä objektiKerro gradientti (0,1)Kerro satunnaisarvolla (0,1)Kerro satunnaisarvolla (0,2)Ensimmäinen fraktaaliniNimiUusi fraktaaliUusi GFlareUusi yksikkögimprc-tiedostosta puuttuu %s + + +Copyright © 1997-2001 Michael Sweet, Robert Krawitz, +ja Gimp-Print kehitysryhmä. + +Web sivut osoitteessa: http://gimp-print.sourceforge.net. + +Tämä on vapaa ohjelma; voit levittää ja muuttaa sitä GNU yleisen +julkisen lisenssin sopimusehtojen mukaisesti sellaisina kun Free +Software Foundation on ne julkaissut. Voit soveltaa lisenssin versiota +2 tai myöhempää. + +Tämä ohjelma levitetään siinä toivossa, että siitä on hyötyä, mutta +ILMAN MITÄÄN TAKUUTA; jopa ilman konkludenttista takuuta +MYYNTIKELPOISUUDESTA TAI SOVELTUMISESTA TIETTYYN ERITYISEEN +TARKOITUKSEEN. Yksityiskohtien osalta katso GNU yleistä julkista +lisenssiä. + +Sinun olisi pitänyt saada kopio GNU:n yleisestä julkisesta lisenssistä +tämän ohjelman mukana; jos et sitä saanut, niin lähetä kirje +osoitteella: +Free Software Foundation, Inc. +59 Temple Place - Suite 330 +Boston, MA 02111-1307, USA. +Sama siemen tuottaa samanlaisen kuvan, jos kuvien levydet ovat samat ja kaikki mutaationopeudet ovat nolla.Piikkien lukumäärä:Alivälejä:%d liitännäisrajapintaa%d proseduuria%d × %d%s -- Print v%sTiedosto '%s' on epäkelpo. Virhe havaittu rivillä %d."%s" ei ole DICOM-tiedosto.'%s' ei ole FractalExplorer-tiedosto'%s' ei ole PCX tiedosto'%s' ei ole tiedosto'%s' ei ole kelvollinen BMP-tiedosto'%s' ei ole GFlare-tiedosto.(Ei mitään)yksi liitännäisrajapintayksi proseduuriAdam D. Moss / adam@gimp.org / adam@foxbox.org / 1998-2000Määritelmä talletetaan vain jos tässä sarakkeessa on rasti.Vaihtoehtoinen teksti:ASCII kuvanaTietojaYlinäytteistysLisää reunus_KaikkiKaikki lohkot_AlfapainotusA_lfa:Y_mpäristö:_Määrä:_Amplitudi:Kulma:AnimoiLisääAutomaattinen esikatseluAutomaattinenKeskiarvo siveltimen altaLyhenneTietojaGimp-Print tiedotToimintoLisäasetuksetYlinäytteistysLisää apulinjojaLisää FractalExplorer-polkuLisätään Šakkilauta...Lisätään kohinaa...LisäysLisätietojaLisää satunnaisuutta väriinSäädä edusta-taustaSäädä väritasapainoa, kirkkautta, kontrastia, kylläisyyttä ja sekoitusalgoritmiaSäädä värit...Säädä valovoiman rajaaSäädä tulosteen syaanin tasapainoSäädä käytettävän musteen määrä. Vähennä jos muste kostuttaa paperia liikaa. Lisää jos tummat alueet eivät tulostu kunnolla.Säädä tulosteen gamma. Suuremmat arvot tuottavat kirkkaamman tulosteen ja pienemmät tummemman. Musta ja valkoinen säilyvät samoina, päinvastoin kuin kirkkauden säädössä.Säädä tulosteen magentan tasapainoSäädä tulosteen värikylläisyys. +Nolla tuottaa harmaasävykuvan käyttäen väri- ja mustaa mustettaSäädä tulosteen keltaisen tasapainoSäädetään edusta/tausta...Kehittyneet asetuksetAggressiivinen RLE +(ei SGI:n tukema)VaihtoehtoinenJoka toinen lohkoAlias|Wavefront PIX kuvaAlien Map _2...AlienMap2AlienMap2: Muunnos käynnissä...Kohista näkyvät tasotKohdista näkyvät tasot...Kokonaan JNGKokonaan PNGKaikki arvot ovat osia filmin korkeudestaMustaaHarmaataKaikissa tekstikentissä pitää olla arvo.ValkoistaAlfaAlfakanavatAlfa:Ympäristö:Näytettävän alkuperäisen värin määrä, kun suora valo epäonnistuuMäärä:Adam D. Moss / adam@gimp.org / adam@foxbox.org / 1998-2000Kulmasiirtymä:Kulma:AnimaatioasetuksetAnimoitu MNG asetuksetAnimaation toisto:AntialiasointiAntialiasoinnin laatu. Korkeampi on parempi, mutta hitaampiKäytäLisää kangasLinssiefekti...Sovella käytössä oleva väriliukuma lopulliseen kuvaanLisätään kangas...Sovelletaan konvoluutio...Linssiefekti...Ajetaan Filter Pack...Oletko varma, että haluat tuhota "%s" listasta ja levyltä?Alueen %d asetuksetAlueen asetuksetListaa alueetAlue:NuoliKuten ylläASCIIKuvasuhde:Kootaan palapeli...Epäsymmetrisyys:AlhaallaYlhäällä_Tekijä:Tekijä:AutomaattinenAutomaattinen kontrastin laajennos...Laajennetaan...AutomaattinenAutomaattinen esikatseluKäytettävissä olevat kuvat:B, G, R, X (BMP-tyylinen)MustavalkoMustan poisto (%):_Sinisen kynnysarvo:TaustaväriTaka:TaustaTausta (%d%s)TaustaväriTaustan tyyppiTausta:Virheellinen värikarttaBarnsley 1Barnsley 2Barnsley 3_URL juuri:PerusasetuksetEnnen ja jälkeenTaipunutParas kuville joissa on laajoja, yhtenäisiä värialueitaSärmää reunat_BilineaarinenMusta & valkoinenMustaMustavalkoinenMusta:SekoitusasetuksetSininenSinisen taajuus:Sinisen vaihesiirto:Sininen:KeskustaSumennustyyppiSumennusparametritSäde:SumennustyyppiSumennetaan...ReunaReunan kokoMolemmatMolemmatAlamarginaali:AlareunaAla-oikeaAla:LaatikkoKirkkaus:SelaaKuhmuKuhmutusKuhmutetaan..._Bumpmap kuva:KuhmutusC-lähdekoodiC-lähdekoodiCML _Explorer...CML_explorer: evoluoidaan...CMYCMYKCX:CY:C_MYK_Kamera_Nimiö_Solun sisältö:Solun koko:Siveltimen keskeltäValitse:YmpyräYhdistetään...Luo uusi kuva_RistitKäyrä:SyaaniSylinteriSarjakuva...Laskenta-asetuksetToimii vain RGB piirtotasoilla.Toimii vain tasoilla. (Yritettiin operaatiota kanavalle tai maskille.)Ei voi luoda uutta kuvaaEi voi toimia tyhjillä valinnoilla.Ei voi toimia harmaasävyisillä tai indeksoiduilla kuvilla.Ei voi toimia indeksoiduilla kuvillaEi voi toimia tasoilla joilla on maski.Ei voi toimia tuntemattomilla kuvilla.Virhe luettaessa tiedoston '%s' laajennostaVirhe luettaessa tiedostoa '%s'Ei tue täysvärikuvia. Muunna indeksoiduksi tai harmaasävyihin.Ei voi tallentaa kuvia joissa on alfa-kanava.Ei voi tallentaa kuvia joissa on alfakanava.SarjakuvaSolun koko:Solun _reunustus:Solujen _väli:KeskustaKeskusta _x:Keskusta _y:Heijastuksen keskusSupernovan keskustaKeskitä kuva vaakasuunnassa paperilleKeskitä kuva paperilleKeskitä kuva pystysuunnassa paperilleKeskitä:Kanavan herkkyys:Vaihda nuolien järjestysSäädä CX-arvoa (muuttaa fraktaalin aspektia, vaikuttaa kaikkiin fraktaaleihin paitsi Mandelbrot ja Sierpinski)Säädä CY-arvoa (muuttaa fraktaalin aspektia, vaikuttaa kaikkiin fraktaaleihin paitsi Mandelbrot ja Sierpinski)Vaihda voiman exponenttiaSäädä x-koordinaatin vähimmäisrajaaSäädä y-koordinaatin vähimmäisrajaaSäädä sinisen värikanavan voimakkuuttaSäädä vihreän värikanavan voimakkuuttaSäädä punaisen värikanavan voimakkuuttaSäädä iteraatiokierrosten lukumäärää. Mitä suurempi arvo on, sitä enemmän yksityiskohtia lasketaan, mikä vie enemmän aikaaSäädä kuvauksen käyttämää värilukumäärääSäädä x-koordinaatin enimmäisrajaaSäädä y-koordinaatin enimmäisrajaaMuuta siveltimen gammaa (valoisuutta)Kanava #%d:Kanavariippumattomat asetuksetKanavasekoitus...KanavasekoitusKanavasekoitus: tiedostovaroitusKanavatJos haluat antaa taulukolle nimen.ŠakkilautaŠakkilautaJos päällä, TD elementtien väriin ei jätetä välilyöntejä.Valitse fraktaali kaksoisnapsauttamalla sitäValitse PPD-tiedostoSuuri pakkaustaso tarkoittaa pienempiä kuviaValitse kirjoittimelle soveltuva PPD tiedosto.Valitse käytettävä sekoitusalgoritmi. +Adaptiivinen hybridi tuottaa yleensä parhaimman tuloksen. +Järjestetty on nopeampi ja yhtä hyvä valokuvissa. +Nopeat algoritmit ovat nopeampia ja toimivat hyvin tekstille ja viivapiirroksielle. +Floyd-Steinberg on yleisesti heikompilaatuinen.Valitse kirjoittimen malli, PPD-asetustiedosto ja komento jota käytetään tulostuksessa tälle kirjoittimelle.YmpyräYmpyrän _syvyys prosentteina: Siivotaan...TyhjennäLäpinäkyväSulje käyrä lopetettaessaSuljettu_VäriVäritys_Väri:VäriäKommentti:Kompensoi tummeneminenKompleksisuus:P_akkaa TD elementit.Pakkaustaso:Jatkuva alueKontrasti:Korreloitu kohinaSarake:KerääVäriVäritiheysVärikorostus...Värin vaihtoVärin vaihto...Värin vaihto: väristäVärin vaihto: väriksiVärifunktioVäritila_Värivälikuvaus...VärimuunnosVärikohina:Värivaihtelu:VäritäyttöVäritulostusVäri -> AlfaVäri -> Alfa värivalitsinVäri -> Alfa...Väri:Värikartta:Värianalyysi...VärianalyysiVärianalyysi...VäritysVäritä omalla värilläVäritetään...VäritysVärikartan _kierto...VäritVärit:YhdistäKomm_entti:Komento:KommenttiKommentti:Yhdistetään kuvat...Yhdistetään...Koostumus:Pakattu koko: %sPakkausPakkaussuhde: %d/1PakkausmuotoSäilytä kuvasuhdeLuodaan labyrintti Primin algoritmillä...Luodaan saumaton labyrintti Primin algoritmillä...SisältöJatkuva gradientti ilman aukkojaJatkuva gradienttiJatkuva päivitysÄäriviivatKontrasti:Kontrolloi sitä, miten voimakkaita korostukset ovatKonvoluutiomatriisiKonvoluutiomatriisi ei toimi kolmea pikseliä pienemmillä tasoilla.KonvoluutioKopioiKopioi GFlareKopioi asetuksetKopioi objektiKopioi parametritKopioi aktiivinen käyrä toiselle rajalleKopioi leikepöydälleKopioidaan IFS kuvaksi (%d/%d)...Kopioidaan...Copyright © 1999-2004 by Maurits RijkCopyright:kosiniEi voi luoda työhakemistoa '%s': %sEi voinut suorittaa Web-selainta: +%sKuvasta %d ei saatu tasoja.Ei voinut tulkita '%s'Ei voinut ladata PNG asetuksiaEi voi avata "%s" lukua varten.Ei voi avata '%s' lukua varten: %sEi voi avata '%s' kirjoitusta varten.Ei voi avata %s kirjoittamista varten: %sEi pystynyt jäsentämään Web-selain komentoa: %s.Ei XWD otsikoita tiedostosa '%s'Virhe luettaessa otsikko tiedostosta '%s'Tiedoston '%s' kirjoittaminen epäonnistui: %sLäpinäkyvyyttä voi voitu tallentaa, tallennetaan peittävänä.Ei voinut lukea tiedostoa:Ei voinut tallentaa tiedostoa:Ei voinut tallentaa resurssitiedostoa:Ei voinut vähentää värien määrää. Tallennetaan ilman läpinäkyvyyttä.Coupled-Map-Lattice -selainLuo uusi kuvaLuoLuo apulinjatLuo _uusi tasoLuo histogrammiMuodosta värikuvaus käyttäen väriliukumamuokkaintaMuodosta värikuvaus ylläolevilla asetuksilla. Tulos näkyy esikatselukuvassa.Luo uusi kuva käyttäessäsi filtteriäLuo uusi yksikköLuo uusi yksikkö nykyinen mallinaLuo kaariLuo bezier-käyrä. Shift + painike päättää käyrän luomisen.Luo ympyräLuo ellipsiLuo apuviivat...Luo viivaLuo uusi kuvaLuo polygoniLuo spiraaliLuo tähtiCreateDIBSection -funktiokutsu epäonnistui.Luodaan diffraktiokuvioita..._RajaaRajataan..._Käyrä:KubismiKubistinen muunnos...Kumulatiiviset tasot (yhdistä)TaitostasoSijaintiSuuntaOma väriliukuNykyinen:Taivutus käyriinTaivutus käyriin...Käyrän tyyppiKäyrä rajalleOma väri:Oma väriliukuLeikkaaSyaaniSyaani:SylinteriSylinterin pituusSylinterin sädeKosinimuunnosmenetelmä:DICOM-kuvaMuodonmuutoksen määrä:Jakaja:TummempiTummempi:PakkausTiedostomuotoTiedostomuotoPäivämäärä:HajotaHajota tasoihinHajotetaan...Kartan oletustyyppiVakio URL:Lohkojen tyyppi:Ruutujen väli:Ruutujen korvaus:Määritä ympyrä/ovaaliMääritä uusi kirjoitinMääritä monikulmioMääritä neliömäinen alueMäärittele uusi kirjoitin. Tätä voi käyttää tallentamaan tulostusasetuksen myöhempää käyttöä varten.MuodonmuutosmalliAstettaLomituksen poistoLomituksen poisto...Ruutujen väliin jätetään tauko jotta animaatio on katseltavissa.PoistaPoista aluePoista fraktaaliPoista GFlarePoista pistePoista objektiPoista valittu fraktaaliPoista valittu alueDelta-funktioDelta-funktio porrastettuTiheys:Syvyyteen ensin -hakuSyvyyskartta:Etsitään tasoitettu paletti...Kuvaus:Poista k_aikki valinnatKohdekanava:Kohde:Poikkeamaraja:TimanttiGaussilaisten erotus...DifferentiaaliDiffraktiokuviotDiffuusio:Diffuusioetäisyys:Digital Imaging and Communications in Medicine -kuvaNumeroaKoko:KokoMitat:Suuntasuuntavektorisuunnattusuunnattu valolähdeSuunnatSuunnat:Poikkeutuskartta:Kuvan etäisyys sivun alareunastaKuvan etäisyys sivun vasemmasta laidastaKuvan oikean reunan etäisyys sivun vasemmasta reunastaKuvan etäisyys sivun oikeasta reunastaKuvan alareunan etäisyys sivun ylälaidastaKuvan etäisyys sivun ylälaidastaVärisekoitus:JakoTee esikatseluHaluatko hylätä muutoksesiYlikirjoitetaanko?Reunan tunnistus gaussilaisten erotuksellaTiedostoa ei löytynytPiirtotasoilla on eri kootPiirretään liekki...Piirretään ristikko...Piirretään labyrintti...PiirtoasetuksetVarjoTiedosto päättyi kesken lukiessaEXIF-tiedot jätetään huomiotta.Käytä kuhmutustaKäytä ympäristökuvausta_LaajennaJoka palalla on käyrät reunatJoka palalla on suorat reunatVaikutus reunaanReunan tunnistusReunan tunnistus...Reunan tummennusReunatMuokkaaMuokkaa alueen tietoja...Muokkaa kartan tietoja...Muokkaa objektiMuokkaa alueen tietoja...Muokkaa fraktaalin nimeäMuokkaa kartan tietojaMuokkaa valitun alueen tietojaEfektikanavaEfektioperaattoriKaiverran...Ympäristökuva:Käytä _antialiasointiaPäälle pois bump-mappingKytke ympäristönkuvaus (heijastus) päälle/poisKytke hyvälaatuinen esikatselu päälle/poisPäälle/pois sahalaitaiset reunojen poisto (antialiasointi)Kytke tosiaikainen esikatselu päälle/poisEnkapsuloitu PostScriptKoodaus:KaiverrusKaiverran...Anna nimi kopioidulle GFlarelleAnna nimi uudelle GFlarelleValitse kirjoittimelle soveltuva PPD tiedostoSyötä käytettävä tulostuskomento. Älä poista komennon perästä parametrejä, tai tulostus voi epäonnistua.Syötä loogiselle kirjoittimelle nimiKoko tasoYmpäristöherkkyys:Käytettävä ympäristökuva:Osoitinta ei saatu kaapattuaVirhe sivellintiedostossa "%s"Virhe otettaessa kuvankaappaustaVirhe avattaessa tiedostoaVirhe avattaessa %sVirhe luettaessa BMP-tiedoston "%s" otsikkoaEi voinut käynnistää ghostscriptiä (%s)Ei voinut käynnistää ghostscriptiä (%s)Virhe luettaessa '%s'. Tiedosto korruptoitunut?Virhe tallennettaessa tiedostoa "%s". Ei voitu tallentaa.Virhe kirjoitettaessa tiedostoaVirhe: ei voinut ladata parametrejäVirhe: ei ole CML parametritiedosto.Tasaisesti jaettuExp:VientiesikatseluHajota kanavatEdustaväriTiedosto_Ensimmäinen väri:IntensiteettiKerroinTiedoston '%s' avaaminen epäonnistui: %sPPM tiedoston '%s' kirjoittaminen epäonnistui: %sTiedoston '%s' kirjoittaminen epäonnistui: %sNopea kokonaislukuNopein ja kirkkaimmat värit tekstille ja viivapiirroksilleTiedostoTiedosto "%s" tallennettu."%s" ei ole FractalExplorer-tiedostoTiedosto '%s' on olemassa. +Ylikirjoitetaanko?Tiedosto '%s' on epäkelpo. Virhe havaittu rivillä %d.'%s' ei ole FractalExplorer-tiedostoTiedosto on olemassaKoko: %02.01f kBKoko: tuntematonTiedostonimi:Tiedostonimi: %sTäyttöTäytä alhaalta ylösTäytä vasemmalta oikealleTäytä oikealta vasemmalleTäytä ylhäältä alasTäytä k-parametrillaFilmiSuodatinEtsitään tausta...Etsin reunoja...Ensimmäinen kohdeväriEnsimmäinen lähdeväriEnsimmäinen väriKiinteä siemenLiekkiHeijastusFlexible Image Transport System -kuvaKäännäLiukulukuEdustaväriPakota perustason JPEGEdustaväriEdusta- ja taustaväriFraktaalin parametritFraktaaliFraktaalin tyyppiFraktaalin nimi:FraktalExplorer-väriliukumaRuutu %dRuutu %d (%d%s)Ruutu %d/%dRuutu (%i)Ruutujen poistotapa:TaajuudetVirheenkorjaus per riviä:MistäLeikepöydältäVäriksiVäliliu'ustaPaperistaTakaperoisesta väriliu'ustaVäristä:Etu:TäysiFunktioFunktiotyyppi:Epätarkka valintaG-QbistiG3-fax-kuvaHuihai-limaGFlare editoriGIF asetuksetGIF varoitusGIF-kuvaGIMP laajennosGIMP avustusselainGIMP liitännäinenGIMP HTML taulukkoGIMP sivellinGIMP sivellin (animoitu)GIMP siveltimet ovat harmaasävyisiä tai RGBAGIMP kuvioHohto_Vihreän kynnysarvo:Gamma:Gauss-sumennusGauss-sumennus...Huihai-limaHuihai-ZoomYleisetYleiset asetuksetYleiset asetuksetYleiset asetuksetHae näytteen väritGfigGimp-Print versioGimpressionistiLasitiiletLasitiilet..._HarmaaKaappaaKaappaa tauon jälkeenKaappaa ikkunaKaappaa koko ruutuVäriliukuGFlare...Gradientti...VäriliukutäyttöVäriliu'n skaala:VäriliukumatGraafi nykyisistä asetuksistaGrafiikan antialiasointiHarmaasävyHarmaasävytilaHarmaa-asetuksetHarmaan kynnysarvoHarmaasävyVihreäVihreän taajuus:Vihreän vaihesiirto:Vihreä:HarmaaRistikkoApuviivaston rakeisuusApuviivaston siirtymäApuviivojen asetuksetApuviivaston asetukset...Apuviivojen näkyvyys ja tyyppiApuviivojen väri:Apuviivaston asetukset...Apuviivojen väli:Apuviivojen tyyppi:ApulinjatApulinjat...Giljotiini...HSVHTML sivun asetuksetHTML taulukkoKorostus:KorostusS_ävyS_ävy:KuusikulmiotKorkeus (pikseliä):Tulostusmedian korkeusKorkeus:Avustus: koodi '%s' on tuntematonHyvälaatuinen esikatseluSuuremmat arvot suurentavat efektin voimakkuuttaSuuremmat arvot tekevät korostuksista terävämpiäSuuremmilla arvoilla objekti heijastaa enemmän valoa (valoisampi)Suuremmat arvot rajoittavat efektin pienemmille alueille kuvastaKorostus:Korostukset:Reiän leveys:Vaakaperusta:Reiän korkeus:Säilytä voimakkuusReiän välistys:VaakasuoraVaakasuora väriVaakasuoraanHevosenkenkäKuumaKohdistuspiste X:Kohdistuspiste X:Kuuma...Montako yksikköä on tuumalla.SävySävyn kierto:SävyvaihtelutVärisävyn taajuus:Sävyn vaihesiirto:Sävy:OletusTunnisteYleiset asetuksetITER:IWarpIntensiteetti_InteraktiivinenKäännä kuhmutusKää_nnetty kuvaJos päällä, luodaan kokonainen, hyvinmuodostettu HTML sivu pelkän taulukon sijaan.Jos päällä, samanväriset ruudut optiomoidaan yhdeksi suureksi soluksi ROWSPAN ja COLSPAN -määreillä.Jos pois päältä, kuva kuvataan neliöön. Jos päällä kuva kuvataan ympyrään.Jos käytät tätä, voimakkaat ja heikot värit vaihtavat paikkaaJos valitset tämän esikatselukuva muodostetaan automaattisestiIlluusioIlluusio...Kuv_aKuvaKuva/tulostusasetuksetKuvan valintaKuvan kokoKuvatyypitKuvatyyppi:Kuvan korkeusKuvan koko: %d×%dKuvan nimi:Kuvan koko on muuttunut.Kuvan välistysKuvatyyppi:Kuvakartta 2.2Päädyn kuvatKuvilla on eri kootTuo _polutTuo polut GIMPin polkutyökalun käyttöönIntegraatioaskelia:KäänteinenTuumaSisällytä reunatIndeksoituIndeksoitu palettiAlkuarvo:Muste:Tulotasot:Lisää pistePäivämääräKokonaislukuVoimakkuusIntensiteetti tasotAlkuperäisen värin intensiteteetti, kun käynnistetty valolähteestäLomitusSisäinen GIMP proseduuriRisteyksetRisteyksien väriVirheellinen unicode merkkijono PSD tiedostossaEpäkelpo unicode-merkkijono sivellintiedostossa "%s".Epäkelpo unicode merkkijono kuviotiedostossa '%s'.KäänteinenKääntää paperin tekstuurinIsometrinenIteraatiota:JNGJNG + muutokset PNG:näJPEG pakkauslaatu:JPEG-kuvaJPEG esikatseluJPEG parametritJPEG pehmennystaso:PalapeliPalapelin tyyliJuliaKISS CELSäilytä parilliset kentätPidetään kuvan arvotSäilytä parittomat kentätSäilytä alkuperäinenPidetään ensimmäinen arvoLZ77EdeltäväVasen marginaaliPituus:_LineaarinenLambdavaakaLaplaceLaplace...Tasolla %s ei ole alfa-kanavaa.VasenVasen reunaVasen:LinssiefektiVähemmän kylläisyyttä:TasoValoValo 1Valo 2Valo 3Valo 4Valo 5Valo 6ValoasetuksetValon suunta:Valon voimakkuusValolähteen X suunta XYZ avaruudessaValolähteen X paikka XYZ avaruudessaValolähteen Y suunta XYZ avaruudessaValolahteen Y paikka XYZ avaruudessaValolähteen Z suunta XYZ avaruudessaValolähteen Z paikka XYZ avaruudessaVaaleampiVaaleampi:ValoefektitValoefektit...Esivalinta:Valolähteen väri:Valonlähteen tyyppi:LiivaViivapiirroslineaarinenLinkkityyppiListanäyttöLisko_AlamarginaaliLataa kanava-asetuksetLataa käyrät tiedostostaLataa FITS tiedostoLataa LiekkiLataa fraktaaliparametritLataa Gfig kokoelmaLataa kuvakarttaLadataan KISS palettiLataa esiasetuksetLataa parametritLataa PostScriptLataa QBE tiedostoLataa fraktaali tiedostostaLataa käyrät tiedostostaLadataan kuvankaappaus..._Lukitse kynnysarvotlogaritminenToistoAlhaalla vasemmallaAlhaalla oikeallaLaske valitut objektitAlempi kynnysarvo:Valovoiman raja:Valoisuuden taajuus:Valoisuuden vaihesiirto:AsetuksetMNG animaatio_Maksimiarvo:Max syvyys:Maksimikorkeus:Magen_taMagentaMagenta:Suuruuskartta:PääasetuksetTee tuloskuvasta läpinäkyvä kohdissa jossa kuhmun korkeus on nollaObjektin ulkopuolisesti kuvasta läpinäkyväMan'o'warMandelbrotMandelbrot parameteritKuvaa laatikon kylkiinKuvaa kappaleeseen...Kuvakartan muotoKuvaa _ylhäältäKuvaa laatikkoon...Kuvaa sylinteriin...Kuvaa kappaleeseenKuvaa tasoon...Kuvaa palloon...Kuvaus:MarmoriMaskitiedostoPinnoitusominaisuudetMatriisiMax (x+d, -)Max (x+d, -), (0.5 < x)Max (x+d, -), (x < 0.5)Max (x, -)Max (x-d, -)Max (x-d, -), (0.5 < x)Max (x-d, -), (x < 0.5)Max. muisti:Kuhmujen maksimikorkeusMaksimikorkeus:LabyrinttiPaperin koko:Paperilokero:Mediatyyppi:MediaaniValikkoValikkopolkuValikkopolku/nimiYhdistä tuodut polutKäytä keskinäppäintä esikatselussa valitaksesi lähtövärinKeskisävyt:Min (x+d, -)Min (x+d, -), (0.5 < x)Min (x+d, -), (x < 0.5)Min (x, -)Min (x-d, -)Min (x-d, -), (0.5 < x)Min (x-d, -), (x < 0.5)Minimikorkeus:Peilaa aktiivinen käyrä toiselle rajalleSekalaiset:Säädä vihreän värin (G) kanavaaSäädä värikylläisyyden (S) kanavaaMuunnosnopeus:Säädä sinisen värin (B) kanavaaSäädä valoisuuden (L) kanavaaToimintatapaTila _1Tila _2Muokkaa käyriäLisää peittoaLisää kehittyneitä asetuksiaLisää kylläisyyttä:Lisää läpinäkyvyyttäMosaiikkiLiike-epäterävyysLiike-epäterävyys...SiirräSiirrä alasSiirrä nauhaSiirrä valitut objektitSiirrä eteenSiirrä ylösSiirrä pisteSiirrä objektiToisto (57):Kerro gradientti (0,1)Kerro satunnaisarvolla (0,1)Kerro satunnaisarvolla (0,2)Mutaatioetäisyys:Mutaationopeus:Ensimmäinen fraktaaliniNL suodatinNL suodatin...NimiNeon-tunnistusNeon...Uusi fraktaaliUusi GFlareUusi yksikköUusi kirjoitin...Uusi siemenSanomaleh_tipaino...SanomalehtipainoSanomalehtipaino...gimprc-tiedostosta puuttuu %s Lisää kohta: (%s "%s") -tiedostoon %s.Ei värejäEi dataaEi löytynytEi tunnettua päätettä, yritetään tunnistaa tiedosto.Ei tunnettua päätettä, tallennetaan pakattu XCF.Pikselisuhde ei ole neliömäinen. Kuva voi näyttää litistyneeltä.Ei mitäänNormaaliVärien lukumääräPalojen lukumääräRuutujen määrä:Värien lukumäärä:Paloja rinnanPaloja päällekkäinSuodattimen toistokerratVärien lukumäärä: %dNumerointiSiirtymä:Peitto:AsetuksetAsentoMuutObjektin X paikka XYZ avaruudessaObjektin Y paikka XYZ avaruudessaObjektin Z paikka XYZ avaruudessaÖljyväritetään...ÖljyväriFilmillä:Vain yksi väriPeitto:AsetuksetLadataan '%s'...OptimoiOptimoidaan animaatio...AsetuksetAsentoAlkukohta alhaalla vasemmallaAsentoSuunta:AlkuperäinenTulostusIntensiteetti tasotUlkopuolen tyyppiPNGPPD-tiedosto:PPIEsikatseluSivu %dSivut:Maalataan...Parametri k:ParametrejaProsenttiProsenttia pikseleistä suodatetaanValokuvaPikselin korkeus:Pikselin leveys:PikselöiPikselöidään...TasoPlasmaPlasma...Toista/pysäytäMonikkomuotopistemäinenPolarisoiPolarisoidaan...PolygonipystyPaikkaEsikatseluEsikatseluKirjoittimen malli:KirjoitinasetuksetProgressiivinen (Web esikatselu ladatessa)Laatu:RGBRGBARLESäde:Satunnaistus (%):PunainenToisto:TakaperinRadiaaniaRadiaania/piiSädeSäde:SatunnainenSatunnaisluku:Satunnainen jaettuSatunnainen, kanava riippumatonSatunnaiset luvut siemenestäSatunnaiset luvut siemenestä (jaettu)RaakaSäteiden piirron asetuksetPunainenTosiaikainen esikatseluLaske esikatselukuvaSuorakulmioPunainenPunainen:Zoomaa uudestaan saman verranVirkistäVirkistä esikatselukuvaVähennä _valovoimaaVähennä _kylläisyyttäHeijastavuusPoistaPoistetaan tausta...Poistetaan väri...Luodaan heijastus...Lataa SVG vektorigrafiikkaLadattu SVGLuodaanMuodostan fraktaalia...Luodaan SVG...Luodaan SuperNova...Luodaan ruutuja...KorvaaLue uudelleenPalauta parametrit oletusarvoisiksiResoluutioResoluutio:KelaaOikea raja:Oikea:Pyöritys:Rivi:Pyöritä:Pyörittä X:Pyörittä Y:Pyörittä Z:PyöritysPyöritys kulma X akselin ympäriPyöritys kulma Y akselin ympäriPyöritys kulma Z akselin ympäriPyöreäSVG tiedostossa ei -määritellä kokoa!_Valitse ikkunaKutistaSini_Aihe:VaihdaKierrä vastapäiväänSamaSaturaatioSaturaatioSaturaatioKylläisyys:TallennaTallenna sivellinTallenna kanava-asetuksetTalleta käyrät tiedostoonTalleta EXIF tiedotTallenna LiekkiTallenna fraktaaliparametritTallenna Gfig piirrosTallenna parametritTallenna väriarvot läpinäkyvistä pikseleistäTallenna fraktaali tiedostoonTalletetaan BMP:näTalleta siveltimenäTallenna C-lähdekoodinaTalleta GIFTalletetaan JPEG:näTalleta MNGTalleta PNGTalleta PNMTallenna PSPTallenna PostScriptTallenna TGATallenna TIFFTallenna tekstinäTalleta käyrät tiedostoonTalletaTalletetaan '%s'...Sironta:Skaalaa X:Skaalaa X:Skaalaa Z:Skaala:Skaalaus:Kuvan kaappausVain valintaEtsi kuvauksellaEtsi nimelläEtsitään - odotaEtsitään - odotaEtsitään - odotaylösalasin vaakasuuntaansekunnin taukoSatunnaislukusiemenSiemen:ValitseValitse filmin väriValitse numeron väriValitse kansio ja lue kokoelma uudelleenValitse:ValintaErottele:Valitse valolähteen väriAsetuksetVarjon epäterävyys:Varjon tummennusVarjon syvyys:Varjot:TerävöintiTerävöidään...Näytä kaikki objektitNäytä seuraava objektiNäytä edellinen objektiNäytä/piilota rautalankamalliYksikkömuoto:SierpinskisiniYksikkömuotoSiniKokoKoko (%):Koko:TöhriPehmennys_PehmennysTasoita palettiPehmennys:Tasainen värillinen taustaVälistys:Annettua ikkunaa ei löytynytMääritä siveltimen kuvasuhdeHeijastava:PalloPallomainenHämähäkkiStandardiTähden kärkien määräAloituskulma:AskelLopeta kun pikselien erotus on pienempi kuin tämä arvoVahvaAlinäytteistys:SuperNovaSuperNova värivalitsinKierrä myötäpäiväänSymboliTIFF kanavaT_urbulenssiTaulukon luonnin asetuksetTaulukon asetuksetTel_netVäliaikainenVäliaikainen proseduuriGIF muodon kommentit tukevat vain ASCIIta. Kommenttia ei tallenneta.GIMPressionistiTaso joutui ladattaessa PNG kuvaa kuvan ulkopuolelle.TIFF tukee vain ASCII kommennetteja. Kommenttia ei tallenneta.Solun reunustuksen leveys.Solun reunustuksen leveys.Kommentti on rajattu %d merkkiin.Ensimmäinen kuvan riviSolun korkeus (pikseliä tai prosentti)Nimi '%s' on jo käytössä!Nimi '%s' on jo käytössä!Pikseleitä taulukon reunassaTaulukon nimi.Teksti joka laitetaan joka soluun.Lyhenne, (esim. "cm" senttimetrille.)Nimi monikkomuodossaNimi yksikkömuodossaYksikön symboli (esim. "'" tuumille.) Yksiköstä käytetään lyhennettä jos sillä ei ole symbolia.Solun leveys (pikseliä tai prosentti)Tasoja ei ole tarpeeksi kohdistukseen.Tämä kenttä kertoo montako desimaalia kenttiin pitäisi mahtua jotta saavutettaisiin sama tarkkuus kuin tuumilla kahdella desimaalilla.Tämä ei ole GIF-kuvaTämä tunnistaa yksikön GIMPin konfiguraatiotiedostoissa.Kynnysarvo:Toista lähdekuva: käytännöllinen jatkuvilla tasoillaVäristäYlä:JäljessäolevaLäpinäkyväTurbulenssi:Käytettävän valolähteen tyyppiKappale johon kuvataanTyyppi:Pakkaamaton koko: %sPeru äskeinen zoomYksikköYksikköeditoriKerroin ei voi olla 0.YksikköYksikkö:Tuntematon värimalli PNG tiedostossa '%s'.NimeämätönVärejä on väärä määrä (%d)Tuntematon siveltimen muotoNimetönOuto PCX malli, ei voi jatkaaylösalasinKäytä keskiarvoaKäytä tälle värikanavalle kosinifunktiotaKäytä tälle värikanavalle lineaarista kuvaustaKäytä kaksoislogaritmista pehmennystä raitojen välttämiseksiKäytä kaksoislogaritmista pehmennystäKäytä käänteistä arvoaKäytä tälle värikanavalle sinifunktiotaArvoArvoArvo:Vektorinkulma:Vektorin pituus:WAI_SVaroitusVaroitus: -Kuvassa on 16 bittiä värikanavaa kohti. GIMP voi käsitellä vain 8 bittiä per kanava. Tiedosto muunnetaan ja tarkkuutta katoaa tämän muutoksen vuoksi.Varoitus: tallennettu läpinäkyvyysväri voi näkyä väärin katselimilla jotka eivät tue läpinäkyvyyttä.Varoitus: '%s' on tätä versiota uudemmain CML:n parametritiedosto.Varoitus: '%s' on vanhanmallinen tiedosto.Varoitus: lähde- ja kohdekanava ovat samat.Käsitellään ruutu %d...Warping...AallotAallotetaan...VähänWeb-selainta ei ole määritetty, aseta sellainen asetuksissa.ValkoinenLeveys:TuuliIkkunatGradientti potenssiin (0,1)P:llä ja satunnaisella (0,1)Satunnaispotenssiin (0,1)Satunnaispotenssiin (0,10)X kokoX:XMAX:XMIN:X_1:X_2:Y kokoY:YMAX:YMIN:Y_1:Y_2:KeltainenKeltainen:Olet tallentamassa valtavaa +tiedostoon %s.Ei värejäEi pakkaustaEi dataaEi täyttöäEi valoaEi löytynytEi muunnettavaa valintaaEi tunnettua päätettä, yritetään tunnistaa tiedosto.Ei tunnettua päätettä, tallennetaan pakattu XCF.Alaspäin:KohinaPikselisuhde ei ole neliömäinen. Kuva voi näyttää litistyneeltä.Ei mitäänNormaaliNormaali:Normalisoidaan...Ei rajattavaa.Värien lukumääräEnnen käsiteltyjä tiedostoja valikossa (1 - 16):Se_gmenttejä:Palojen lukumääräRuutujen määrä:Kumoamistasoja (1-99):Solujen lukumäärä:Värien lukumäärä:Paloja rinnanPaloja päällekkäinSuodattimen toistokerratVärien lukumäärä: %dNumerointiSiirtymä:Vain edustaPeitto:AsetuksetAsentoMuutNäyttökanava:Osittaispeitto:Ylinäytteistys:Objektin X paikka XYZ avaruudessaObjektin Y paikka XYZ avaruudessaObjektin Z paikka XYZ avaruudessaKahdeksankulmiot ja neliötSiirtymä:Siirtymä (1):_KulmasiirtymäSiirtymä:Öljyväritetään..._Öljyväri...ÖljyväriReunoilla:Filmillä:Reunoilla:Ruutu per taso (korvaa)Vain taustaVain yksi väriPeitto:Optimaalinen arvioAsetuksetPeitto:AvaaAvaaAvaa IFS-tiedostoAvaa viimeisinLadataan '%s'...Ladataan "%s":n esikatselu...OptimoiOptimoi GIFOptimoi tuloste määrätylle kuvatyypilleOptimoidaan animaatio...AsetuksetAsentoAlkukohta alhaalla vasemmallaSuuntaSuunta:AlkuperäinenAlkuperäinen voimakkuusAlkuperäinen:MuuMuut asetuksetTulostusLähtötasot:Tulostetyyppi:Ulkopuolen tyyppiPotenssikerroin:PDF dokumenttiPGM-kuvaPNGPNG + muutokset PNG:näPNG pakkaustaso:PNM-kuvaPNM-kuvaPPD-tiedosto:PPIPPM-kuvaPS timanttiPS Neliö (Euklidinen piste)PaperiEsikatseluSivu %dLuodaan koirankorva...Sivun asetuksetKirjoittimen ominaisuuksia ei voitu avata: %dKoirankorvaSivut:Maalataan...Palettitiedosto:PalettiParametri k:ParametrejaParametrit tallennettu tiedostoon '%s'Jäsennysvirhe tiedostossa '%s': +%sLiitäLiitä leikepöydältäLiitettyLiitetään...KuviotäyttöProsenttiMustan prosentti:Valkoisen prosentti:Prosenttia pikseleistä suodatetaanVaihekulma 0-360°PhongValokopioValokuvaPaloja:Ping PongPikselin korkeus:Pikselin leveys:PikselöiPikselöidään...PikseliäSijoitteluSijoitteluPlanaari (RRR,GGG,BBB)Planaari-RGBTasoPlasmaPlasma...Toista/pysäytäToisto:Tarkista asennuksesi.Luo graafi asetuksistaLiitännäisselainMonikkomuotoPolarisaatio:pistemäinenpistemäinen valolähdePolaariPolaarikoordinaatitPolaarimuunnos...PolygonipystyPaikkaPaikka X:Paikka Y:Paikka Z:Aseta kuvan paikka sivulla +Napsauta ja vedä siirtääksesi kuvaa. +Napsauta ja vedä kakkosnappulalla siirtääksesi kuvaa tarkemmin. +Napsauta ja vedä keskinappulalla siirtääksesi kuvaa sen koon verran. +Shift rajaa siirron suunnan vain pysty- tai vaakasuuntaan. +Toisen hiiren nappulan painaminen siirron aikana palauttaa kuvan alkuperäiseen paikkaan.PostScript tiedostoPostScript ei voi tallentaa kuvia joissa on läpinäkyvyysEsikatseluAsetuksetSäilytä valovoimaEsikatseluEsikatselun koko:PrewittPrimin algoritmiTulostuksen värisäätöTulosta ja +tallenna asetuksetTulosta mustavalkoisena (ei värejä eikä harmaasävyjä)Tulosta harmaasävyissä käyttäen mustaa mustettaTulosta tiedostoonKirjoitindialogi epäonnistui: %dKirjoittimen malli:KirjoitinasetuksetKirjoitin ei tue bittikarttojaKirjoittimen malli:Kirjoittimen nimi:Tulostetaan...ProseduuriselainProgressiivinen (Web esikatselu ladatessa)EtenemisnopeusQbisti ...Laatu:R, G, B (normaali)RGBRGB-tyyppiRGBARLE_RLE pakkausSäde _2:Säde:Satunnaiss_ävy:Satunnaissiemen:Satunnaistus (%):_RekursiivinenPunainen_Punaisen kynnysarvo:Toisto:TakaperinRadiaaniaRadiaania/piiSädeSäde:Nosta valitut objektitSatunnainen _kylläisyys:SatunnainenSatunnaisluku:Satunnaissiemen:SatunnaissiemenSatunnainen jaettuSatunnainen, kanavariippumatonSatunnaisestiSatunnaiset luvut siemenestäSatunnaiset luvut siemenestä (jaettu)Yläraja:Alaraja:RaakaRAW-lataajaPakkaamattoman kuvan kokoSäteiden piirron asetukset_PunainenTosiaikainen esikatseluLaske esikatselukuvaSuorakulmioPunainenPunaisen taajuus:Punaisen vaihesiirto:Punainen:Tee uudelleenZoomaa uudestaan saman verranVirkistäVirkistä esikatselukuvaVähennä _valovoimaaVähennä _kylläisyyttäHeijastavuusSuhteellinen linkki Julkaistu GNU LisenssilläPoistaPoistetaan tausta...Poistetaan väri...Luodaan heijastus...Lataa SVG vektorigrafiikkaLataa Windows MetafileYleiset asetuksetLadattu SVGLuotu WMFLuodaanLuodaan puuska...Muodostan fraktaalia...Luodaan IFS (%d/%d)...Luodaan SVG...Muodostan palloa...Luodaan SuperNova...Luodaan ruutuja...Luodaan tuuli...KorvaaLue uudelleenPalauta parametrit oletusarvoisiksiNollaa aktiivinen käyräMuuta alueiden kokoa?ResoluutioTulosteen resoluutio ja laatuResoluutio:Apulinja rajoittaa: %d,%d - %d,%d (%d aluetta)Apulinja rajoittaa: 0,0 - 0,0 (0 aluetta)Retinex (4/4): päivitetty...Retinex kuvan parannusRetinex: suodatetaan...KelaaOikeaOikea marginaali:Oikea reunaOikea:VäreilyVäreily...Kierto:Rivi:_RobertsPyöritä:KierrettyKierrä/skaalaaPyöritä X:Pyöritä Y:Pyöritä Z:KierrettyKierretään värikarttaa...Kierretään...PyöritysPyöritys kulma X akselin ympäriPyöritys kulma Y akselin ympäriPyöritys kulma Z akselin ympäriKierroskulma:Kierto:PyöreäRLE pakattuSUN-rasterikuvaSVG tiedostossa ei +määritellä kokoa!Ha_jota HSV..._Toinen väri:_Valitse ikkunaValitse tästä:ValitsinNäytä kursoriKutista_SiniVoima exp.:Voimakkuus:_Aihe:_VaihdaKierrä vastapäiväänTallenna alfakanava (RGBA/RGB)SamaNäytteen analysointi...Näytteen väritysNäytetiheys:Näyte:_Saturaatio_SaturaatioSaturaatioKylläisyyden taajuus:Kylläisyyden vaihesiirto:Kylläisyys:TallennaTallenna +asetuksetTallenna QBE tiedostoTallenna sivellinTallenna kanava-asetuksetTallenna nykyinenTallenna käyrät tiedostoonTallenna EXIF tiedotTallennaTallenna LiekkiTallenna fraktaaliparametritTallenna Gfig piirrosTallenna kuvakarttaTallenna asetuksetTallenna parametritTallenna taustaväriTallenna väriarvot läpinäkyvistä pikseleistäTallenna _gammaTalleta resoluutioTallenna fraktaali tiedostoonTalletetaan BMP:näTallenna siveltimenäTallenna C-lähdekoodinaTallenna GIFTallenna IFS-fraktaali tiedostoonTalletetaan JPEGTallenna MNGTallenna PNGTallenna PNMTallenna PSPTallenna kuvionaTallenna PostScriptTallenna SGITallenna SUNRASTallenna TGATallenna TIFFTallenna tekstinäTallenna XBMTallenna XJTTallenna XPMTallenna taustaväriTallenna väriarvot läpinäkyvistä pikseleistäTallenna kommenttiTalleta aikaleimaTalleta aikaleimaTallenna nykyinen...Tallennus epäonnistuiTallenna gammaTallenna tason siirtymäTalleta resoluutioTallenna käyrät tiedostoonTallenna esikatseluTallennettuTalletetaan "%s"...Sa_ha-aaltoSkaala 1:Sironta:Skaala 2:Skaalattava SVG kuvaSävyn skaalaus:Arvon skaalaus:Skaalaa X:Skaala X:Skaala Z:Skaalaa:Skaalaa tuloste tähän tarkkuuteen (pistettä per tuuma)Skaalaa tuloste paperin kokoonSkaala:Skaalaus:Hajota HSVHajota RGBHajotetaan HSV...NäyttöKuvan kaappausVain valintaEtsi _kuvauksellaEtsi nimelläEtsitään - odotaEtsitään - odotaEtsitään - odotaylösalaisin vaakasuuntaanToinen kohdeväriToinen lähdeväriToinen värisekunnin taukosekunnin taukoSatunnaislukusiemenSiemen:ValitseValitse kaikkiValitse väriValitse filmin väriValitse HTML tiedostoValitse kuvatiedostoValitse seuraavaValitse numeron väriValitse ladattava palettiValitse edellinenValitse alueValitse k_aikkiValitse kaikkiValitse kaikkiValitse objektiValitse jatkuvat alueetValitse jatkuvat alueetValitse olemassa oleva alueValitse kansio ja lue kokoelma uudelleenValitse valolähteen väriValitse perusmittayksikköValitse haluttu tulostetyyppiValitse halutun kirjoittimen nimi.Valitse suunta: pysty, vaaka, ylösalaisin tai ylösalaisin vaakasuuntaan.Valitse mitataanko skaalaus prosentteina sivun koosta vai tulostustarkkuutenaValitse kirjoittimen malliValitse:Valittu:ValintaValinnan koko ei ole parillinen. +Saumaton labyrintti ei toimi täydellisesti.Valinta poluksi...Valikoiva Gauss-sumennusValikoiva Gauss-sumennus...Siirrä taustalleLähetä sähköpostinaErottele:Syyskuun 31. 1999Valitse valolähteen väriAsettaa mittayksikön millimetreiksiAsettaa mittayksikön tuumiksiAseta tulosteen kirkkaus. +0 musta, 2 puhtaan valkoinen.Aseta tulosteen kontrastiAseta tulosteen korkeusAseta tulosteen koko kuvan kokoonAseta kuvan skaala (koko)Aseta tulosteen leveysVaroitus: SetStretchBltMode -funktiokutsu epäonnistui.AsetuksetAsetukset tälle kuvakartalleAseta kirjoitinAseta kirjoitin...VarjotVarjon epäterävyys:Varjon tummennus:Varjon syvyys:Varjot:Terävät reunatTerävöintiTerävöidään...Vääntö:SiirräMäärä:Siirrä _vaakasuuntaanSiirrä _pystysuuntaanSiirretään...NäytäEsikatselu kuva-ikkunassaNäytä kaikki objektitNäytä alueen URL vihjeNäytä alueen kahvatNäytä väriNäytä apuviivatNäytä kuvaNäytä seuraava objektiNäytä sijaintiNäytä rautalankamallinaNäytä edellinen objektiNäytä valintaNäytä/piilota rautalankamalliYksikkömuoto:Sivut:SierpinskiYksinkertainen_SinisiniYksikkömuotoSiniSini: luodaan...SiniKokoKoko (%):Tulostusmedian kokoKoko:Koot:Hitain, mutta tarkin ja paras monimutkaisille kuville ja valokuvilleTöhriTasoita paletti...Pehmennys_PehmennysTasoita palettiPehmennä näytteetPehmennysparametritPehmennys:Tartu apuviivastoonSobelSobel reunantunnistus...Sobel reunantunnistusSobel _vaakasuoraanSobel _pystysuoraanTasainenYhtenäinen kohinaYhtenäinen kohina...Tasainen värillinen taustaYhtenäiset väritDataa on muutettu!Kanavia ja maskeja ei voi kiertää.PaperinsyöttölokeroLähde 1:Lähde 2:Lähtökanava tiedostossa:Lähtökanava:Lähde...Piikin pisteet:Ylinäytteistys:Välistys (prosenttia):Välistys:SäkenöintiSäkenöinti...Annettua ikkunaa ei löytynytMääritä siveltimen kuvasuhdeHeijastava:PalloPallosuunnitteluPallos_uunnittelu...PallomainenPiikin kulma (-1: satunnainen):HämähäkkiPiikkien tiheys:Piikin paksuus:SpiraaliSpiraalin kierrosten määräPisteetVoiman exp.:StandardiStandardi (R,G,B)Tähden kärkien määrä_Alkuindeksi:Aloituskulma:Alkusiirtymä:Tulostuksen aloitus epäonnistui.AskelAskelkoko:Lopeta kun pikselien erotus on pienempi kuin tämä arvoVenytäLaajenna _HSVVahvaTyyliSu_perNova...Alinäytteistys:Aliaskeleita:SuperNovaSuperNova värivalitsinKierrä myötäpäiväänVaihda käyrät keskenäänPyörreVaihda vastapäiväiseenVaihda myötäpäiväiseenSymboliTIFF kanavaTIFF kuvaSaumattomuusSaturaatio:Ruudun koko:Läpinäkyvä taustaT_urbulenssi:TurbulenssiTaulukon luonnin asetuksetTaulukon asetuksetTarga-kuva (TGA)KohdeTel_netVäliaikainenVäliaikainen proseduuriTekstin antialiasointiKuvioPinnoitusominaisuudetTekstuurimuunnosPinnoitus:Pinnoitus*** Kiitos kun valitsit GIMPin! ***GIF-muodon kommentit tukevat vain ASCIIta. Kommenttia ei tallenneta.Gimp avustustiedostoja ei ole asennettu.GIMPressionistiGimpressionistin oletuksetTaso joutui ladattaessa PNG-kuvaa kuvan ulkopuolelle.TIFF tukee vain ASCII kommennetteja. Kommenttia ei tallenneta.Solujen reunustuksen leveys.Solujen välin leveys.Värit ovat musta ja valkoinenKommentti on rajattu %d merkkiin.Ensimmäinen kuvan riviSolun korkeus (pikseliä tai prosentti)Kuvassa jota tallennat on taso joka ulottuu kuvan reunojen +ulkopuolelle. GIF-tiedostomuoto ei tue tätä. + +Voit rajata kuvan tasot kuvan rajoihin tai perua tallennuksen.Suurin luotava sivellinNimi '%s' on jo käytössä!Nimi '%s' on jo käytössä!Pikseleitä taulukon reunassa.Pienin luotava sivellinTaulukon nimi.Teksti joka laitetaan joka soluun.Lyhenne, (esim. "cm" senttimetrille.)Nimi monikkomuodossaNimi yksikkömuodossaYksikön symboli (esim. "'" tuumille.) Yksiköstä käytetään lyhennettä jos sillä ei ole symbolia.Solun leveys (pikseliä tai prosentti)Tasoja ei ole tarpeeksi kohdistukseen.GIMP avustustiedosto ongelma.Tämä kenttä kertoo montako desimaalia kenttiin pitäisi mahtua jotta saavutettaisiin sama tarkkuus kuin tuumilla kahdella desimaalilla.Tämä ei ole GIF-kuvaTämä tunnistaa yksikön GIMPin konfiguraatiotiedostoissa.Kynnysarvo:Raja:Ruutujen väli:Tiilen _korkeus:Ruudun _siisteys:Tiilen _leveys:Toista lähdekuvaToista lähdekuva: käytännöllinen jatkuvilla tasoillaSaumatonMihinVäristäAlas_PolaariseksiOikealleYlösVasemmalleTyökaluasetuksetTyökalutYläreunaYlä-vasenYlä:JäljessäolevaSiirretään TWAIN data...Muunnos %sLäpinäkyväLäpinäkyvä taustaPuunäyttöKäytä: Bounding BoxTurbulenssi:TyyppiKirjoittimen musteen tyyppiKäytettävän valolähteen tyyppiTulostumedian tyyppiKappale johon kuvataanTyyppi:URLURL: %sPoistetaan optimointia...Pakkaamaton koko: %sKumoaPeru äskeinen zoomYksikköYksikköeditoriKerroin ei voi olla 0.YksikköYksikkö:Tuntematon värimalli PNG tiedostossa '%s'.NimeämätönTunnistamaton BMP pakkaustapa.Poista valintaPoista kaikki valinnatVärejä on väärä määrä (%d)Tuntematon siveltimen muotoTuntematon muoto tai leikepöytä on tyhjä!NimetönOuto PCX malli, ei voi jatkaaPäivitäVirkistä esikatseluYlhäällä vasemmallaYlempi vasen _X:Ylempi vasen _Y:Ylhäällä oikeallaylösalaisinKäytä C-makroja structien sijaanKäytä GIMP apuviivastoa...Käytä GIMP apulinjojaKäytä kuvan +alkuperäiskokoaKäytä yksitavuista RLE-pakkaustaKäytä keskiarvoaKäytä tälle värikanavalle kosinifunktiotaKiertävä väliKäytä tälle värikanavalle lineaarista kuvaustaKäytä kaksoislogaritmista pehmennystä raitojen välttämiseksiKäytä kaksoislogaritmista pehmennystäKäytä suuruuskarttaaEdistynyt virheenkorjausKäytä käänteistä arvoaKäytä tälle värikanavalle sinifunktiotaKäytä alivärejäKäytä taustaväriäKäytä kuvan väriäKäytä edustaväriä_ArvoArvoArvo:Van Gogh (LIC)Van Gogh (LIC)...Vektorinkulm_a:Vektorin pituus:Vektorin suuruus:Pystyperusta:PystysuoraPystysuora väriPystysuoraanHyvin tummaVi_deo...VideoKuvioVideo/RGB...Näytä lähdekoodiWAI_SWMF tiedostossa ei +määritellä kokoa!Lähdekuva_Luo myös maskitiedostoVaroitusVaroitus: +Kuvassa on 16 bittiä värikanavaa kohti. GIMP voi käsitellä vain 8 bittiä per kanava. Tiedosto muunnetaan ja tarkkuutta katoaa tämän muutoksen vuoksi.Varoitus: tallennettu läpinäkyvyysväri voi näkyä väärin katselimilla jotka eivät tue läpinäkyvyyttä.Varoitus: '%s' on tätä versiota uudemmain CML:n parametritiedosto.Varoitus: '%s' on vanhanmallinen tiedosto.Varoitus: lähde- ja kohdekanava ovat samat.Käsitellään ruutu %d...Warping...Aallon tyyppiAallotAallotetaan...VähänWeb-selainta ei ole määritetty, aseta sellainen asetuksissa.Jos päällä, kuva skaalataan mahtumaan valittuun kokoon muuttamatta kuvasuhdetta.Valkoinen_Tuuli...Leveys (pikseliä):Tulostusmedian leveysLeveys:TuuliIkkunatWindows BMP kuvaGradientti potenssiin (0,1)P:llä ja satunnaisella (0,1)Satunnaispotenssiin (0,1)Satunnaispotenssiin (0,10)PuuToimi kopiollaKäärivirhe kirjoitettaessaX-BitMap-kuvaX kokoX:XBM asetuksetXMAX:XMIN:XY-sijainti:X_1:X_2:Y kokoY:YMAX:YMIN:Y_1:Y_2:KeltainenKeltainen:Olet tallentamassa valtavaa HTML sivua joka todennäköisesti -jumittaa selaimesi.Z kokoZSuurennaPienennäLyhenne:KehittyneetAlfaMäärä:Amplitudi:Kulma:_AnimoiAntialiasointi_AtsimuuttiBilineaarinen_Tummenna_PuuskaSininenSininen:Reuna:Ala:LaatikkoKirkkaus:SivellinKuhmutus_Kopioi_DeflateSyvyys:Numeroa:Siirtymä:_Korotus:_Enkapsuloitu PostScriptKoko kuvaYmpäristökuvaus_Exponentti:Kerroin:_Tiedostonimi:_Kirjasin:Fraktaalit_Vapaa_Gamma:Yleiset_GopherGradienttiVihreäVihreä:HarmaaKasvataKorkeus:Vaakasuora_Vaakasuora:SävyTunniste:TuumaLom_itus (Adam7)_JPEG_JavaScript_LZW_VasenValolineaarinen_Linkki_Alempi_MIMEMateriaaliSyvyys:KeskisävytMillimetriPeilaaSekalaisetYksivärinenSiirräEi mitään_Pack BitsParametrejaPeriodi:Vaihe:_Ping PongMonikkomuoto:Esikatselu_Esikatselu_Psykobilly_RGB_RLE pakkaus_RLE pakattuSäteittäinenSäde:SatunnaistaSäteet_Vastaanottaja:Punainen:HeijastavaMuodostan..._Oikea_Oikea raja:SaturaatioSaturaatio:Haku:_Lähettäjä:AsetuksetTerävöinti:_Koko:Nopeus:_Säteitä:NeliöNeliötVoima:_Symboli:Kynnysarvo:Kynnysarvo:Ylä:LäpinäkyväVirkistä_Ylempi_Yläraja_UuencodeArvoArvo:Variaatio:Pystysuora_Pystysuora:Kierto_Veden taso:Aallonpituus:ValkoinenLeveys:_TuuliKiedoX Skaala:_X:Y Skaala:_Y:Keltainen_Z:_Zoom:_Ikkuna alfasininencmsyaaniSähköpostivihreäsävyk(1-x^p)k(1-x^p) porrastettukx^pkx^p porrastettuk{x(1-x)}^pk{x(1-x)}^p porrastettumagentamillisekuntiapikseliäpikseliä/%apunainenkylläisyyssin^p, porrastettusin^p-perusteinen funktioTiedostopääte virheellinen tai puuttuu_Koko ruutuarvokeltainen \ No newline at end of file +jumittaa selaimesi.Koko kuvaa ei voi kiertää jos siinä on kelluva valintaKoko kuvaa ei voi kiertää jos siinä on valintaZ kokoZ:SuurennaSuurennaSuurennaPienennäPienennäSuurennusskaala:SuurennaLyhenne:Tietoja kuvakartasta..._AdaptiivinenKehittyneetKehittyneet asetukset_Algoritmi:_AlfaAlfa-raja:Alfasäädetty keskiarvo_Alfa:_Määrä:_Amplitudi:Kulma:_AnimoiAntialiasointi_Lisää kangas...Kuvan automaattinen rajausTason automaattinen rajausMuunna automaattisesti_Atsimuutti:_Tausta_TaustaväriURL juuri:Särmäyksen leveys:Bilineaarinen_Musta_Mustan taso:_Tummenna_PuuskaSekoit_a_SininenSininen:_SumennusPehmennyssäde:_Reuna:Ala-vasen_Ala:Laatikko_Kirkkaus:_KirkkausKirkkaus:SivellinKuhmutusKuhmutus...Kuhmutus:_Šakkilauta...TyhjennäVärikorostus_Värin vaihto...Väritetään...SisältöKonvoluutiomatriisi..._Kopioi_Kubismi..._Taivutus käyriin..._Hajota..._DeflateMuodonmuutoksen säde:Lomituksen poisto...Tauko ruutujen välissä:Syvyys:_Derivaatta_Kuvaus:Yksityiskohtaisuus:_Diffraktiokuviot...Numeroa:_Syrjäytys:_Vääristynyt_Jakoja:_Dynaaminen:Reunan korostus_Reunat..._Muokkaa_Efektikuva:_Korotus:_Enkapsuloitu PostScriptKoko kuvaYmpäristökuvaus_Exponentti:Kerroin:_Oletusasetukset_Tiedosto_Tiedostonimi:_Filmi..._Filter Pack..._Suodattimen pituus:Sovita korkeus kuviin_Liekki..._Heijastus..._Kirjasin:_PakotaPakota saumattomuus?Edusta- ja taustaväri_Edustaväri_Muoto:_Fractal Explorer..._Fraktaali...Fraktaalit_Vapaa_FTP_GFlare...GIF kommentti:_GIMPressionisti..._Gamma:Gauss-sumennus..._Yleiset_Luo kokonainen HTML dokumentti_Gfig..._Lasitiilet...Hohdon säde:_Hehku:_GopherGradientti_Gradientti_Harmaa:_VihreäVihreä:HarmaaRistikko_Ristikon koko:_Ristikko...Kasvata_Giljotiini_HSL-värimalli_Korkeus_Korkeus:_Apu_PiilotettuKorkea_Pito:Reiän siirtymä:_Vaakasuora_Vaakatyyli:_Vaakasuora:Vaakasuora väli:_Kuuma...S_ävy_Sävyn kierto:Luodaan koirankorva...Tunniste:IFS-_Fraktaali..._IIR_IWarp..._Ideaalinen_Tunnistusvakio:_Jätä huomiottaJätä huomiotta pohjataso_Illuusio..._Kuvakartta...Tuuma_Itsenäinen RGBLiitäVoimakkuus:LomitusLom_itus (Adam7)Käänteinen_JPEG_JavaScript_Palapeli...Pidä NCSA:n ympyrät pyöreinäSäilytä kuvasuhdeSäilytä alkuperäiset ympäryksetVain yhteen suuntaan_LZW_Laplace_VasenAloitus vasemmalta:Linssin refraktiokerroin:ValoValoefektit...Rajoita viivan leveyslineaarinen_Viivat_Linkki_Lataa asetukset_Lukitse kanavatIkuinen silmukkaMatala_Alempi_MIME_Postita kuva...Ympärykset läpinäkyväksi_Kuvaa takaperinKartan tyyppi:_Kartoitus_Maskitiedoston pääte:Maskin säde:_Maskin koko:Materiaali_Max (%):Syvyys:Suurin erotus:_Labyrintti...KeskisävytMillimetri_Minimiarvo:_Peilaa_SekalaisetSäädä värisävyn (H) kanavaaSäädä punaisen värin (R) kanavaaYksivärinen_Mosaiikki..._Liike-epäterävyys...Siirrä_NL suodatin..._Luonnollinen väri_Neon...Poikittain:_Kohinan suuruus:Ei mitään_NormalisoiNumeron korkeus:Se_gmenttejä:Peitto:_Optimoi erotus_Pack Bits_Koirankorva...Palettityyppi:ParametrejaProsenttia mustaa:_Periodi:_Vaihe:Valokopio..._Määrä:_Ping Pong_Pikselöi..._Plasma..._Toisto...LiitännäisselainMonikkomuoto:_Polygoni_PostScript taso 2Nimi:Säilytä valovoima_EsiasetuksetEsikatseluEsikatsele_Esikatselu_Tulosta_Tulosta...Kysy alueen tietojaEtenemisnopeus:_Psykobilly_Qbisti ...Laatu:_RGB_RGB-värimalliRLE_RLE pakkaus_RLE pakattuSäteittäinenSäde _1:_Säde:Satunnainen _sävy:Satunnaissiemen:Satunnaista_Säteet_Vastaanottaja:_NeliöPunainen:Tee uudelleen %s_HeijastavaPoista_MuodostanVaadi vakio URL_Säilytä saumattomuus_Oikea_Oikea marginaali_Väreily..._Näytteen väritys..._Saturaatio_Saturaatio:Tallenna kommentti tiedostoon_Tallenna asetukset_Jakoja:Skaala:Ha_jota RGB..._Kuvan kaappaus..._Hakusyvyys:_Haku:_Valikoiva Gauss-sumennus..._Lähettäjä:Ympärykset taustaväriksiYmpärykset väriksi 0AsetuksetVarjo taitoksen alle_Terävöinti...Terävöinti:_Siirto...Kiiltävä:_Näytä osoitin_Sini..._Koko_Koko:_SotkePehmennys:Tartu apuviivoihin_Sobel..._Yhtenäinen kohina..._Säkenöinti...Nopeus:Piikin pituus:_Säteitä:Pistefunktio:NeliöNeliöt_Voima:Laajenna kontrastiPiirto_Symboli:_Kohdekehyksen nimi/ID: (vain kehyksiä käytettäessä)_Paksuus:Kynnysarvo:Kynnysarvo:Kynnysarvo:Toista kuhmutusKoko:_Otsikko:_TyökalutAloitus ylhäältä:Ylä-oikea_Ylä:_LäpinäkyväAktivoitu _URL kun tätä aluetta napsautetaan (pakollinen)Kumoa_Kumoa %sYhtenäinen_YksikköeditoriVirkistä_Ylempi_YlämarginaaliYlempi kynnysarvo:Käytä GLib tietotyyppejä (guint8*)Käytä taustaväriäKäytä _CELLSPAN:iaTuplakokoiset kahvatKäytä näkymätöntä pohjatasoa pohjana_Uuencode_ArvoKäänteinen_Arvo:_Van Gogh (LIC)..._Variaatio:Pystysuora väli:_Pystysuora_Pystytyyli:_Pystysuora:_NäytäKierto_Veden taso:Aallon_pituus:_Aallot..._Web sivusto_Kulma:Valkoinen_Valkoisen taso:_Leveys_Leveys:_TuuliValkoinen kohina_KiedoKiedoKirjoita kohdistuspisteetX Skaala:X-syrjäytys:_X-siirtymä:_X suhde:_X koko:_X10 bittikartta_X:Y Skaala:Y-syrjäytys:_Y-siirtymä:_Y suhde:_Y koko:_Y:Keltainen_Z:_Suurennus_Suurennus:_Ikkuna alfasininenbzip paketticmsyaaniSähköpostivihreägzip pakettisävyk(1-x^p)k(1-x^p) porrastettukx^pkx^p porrastettuk{x(1-x)}^pk{x(1-x)}^p porrastettumagentamillisekuntiapikseliäpikseliä _ylhäältäpikseliä _vasemmaltapikseliä/%apunainenkylläisyyssin^p, porrastettusin^p perusteinen funktioTiedostopääte virheellinen tai puuttuu_Koko ruutualfakanavaksiarvox (pikseliä)y (pikseliä)keltainen \ No newline at end of file diff -uraN gimp-2.2.0/po-plug-ins/fi.po gimp-2.2.1/po-plug-ins/fi.po --- gimp-2.2.0/po-plug-ins/fi.po 2004-12-19 03:34:09.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/fi.po 2004-12-28 16:58:53.000000000 +0100 @@ -1,17 +1,17 @@ -# Finnish translation of GIMP 1.1 +# Finnish translation for GIMP plug-ins # Copyright (C) 1999 Free Software Foundation, Inc. # Ville Hautamäki , 1998, 2000. # Tor Lillqvist , 1999, 2000. # Mikko Paananen 2004 -# Pahasti kesken. Kuka jaksaisi jatkaa... +# msgid "" msgstr "" "Project-Id-Version: gimp-plug-ins 1.1.26\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" -"PO-Revision-Date: 2004-03-19 02:25+0200\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" +"PO-Revision-Date: 2004-12-18 05:22+0200\n" "Last-Translator: Mikko Paananen \n" -"Language-Team: Finnish \n" +"Language-Team: Finnish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -55,7 +55,7 @@ #. Zoom Options #: plug-ins/FractalExplorer/Dialogs.c:627 plug-ins/imagemap/imap_popup.c:146 msgid "Zoom" -msgstr "" +msgstr "Suurenna" #: plug-ins/FractalExplorer/Dialogs.c:655 msgid "Undo last zoom" @@ -119,7 +119,7 @@ #: plug-ins/FractalExplorer/Dialogs.c:752 msgid "CX:" -msgstr "CX" +msgstr "CX:" #: plug-ins/FractalExplorer/Dialogs.c:755 msgid "" @@ -441,9 +441,8 @@ msgstr "Tiedosto '%s' on epäkelpo. Virhe havaittu rivillä %d." #: plug-ins/FractalExplorer/FractalExplorer.c:269 -#, fuzzy msgid "_Fractal Explorer..." -msgstr "Lisää FractalExplorer-polku" +msgstr "_Fractal Explorer..." #: plug-ins/FractalExplorer/FractalExplorer.c:400 msgid "Rendering Fractal..." @@ -510,12 +509,11 @@ #: plug-ins/Lighting/lighting_apply.c:103 msgid "Lighting Effects..." -msgstr "Valoefektit" +msgstr "Valoefektit..." #: plug-ins/Lighting/lighting_main.c:197 -#, fuzzy msgid "_Lighting Effects..." -msgstr "Valoefektit" +msgstr "Valoefektit..." #. General options #: plug-ins/Lighting/lighting_ui.c:261 @@ -523,7 +521,6 @@ msgstr "Yleiset asetukset" #: plug-ins/Lighting/lighting_ui.c:269 -#, fuzzy msgid "T_ransparent background" msgstr "Läpinäkyvä tausta" @@ -532,7 +529,6 @@ msgstr "Tee tuloskuvasta läpinäkyvä kohdissa jossa kuhmun korkeus on nolla" #: plug-ins/Lighting/lighting_ui.c:282 -#, fuzzy msgid "Cre_ate new image" msgstr "Luo uusi kuva" @@ -541,7 +537,6 @@ msgstr "Luo uusi kuva käyttäessäsi filtteriä" #: plug-ins/Lighting/lighting_ui.c:294 -#, fuzzy msgid "High _Quality preview" msgstr "Hyvälaatuinen esikatselu" @@ -554,34 +549,28 @@ msgstr "Valoasetukset" #: plug-ins/Lighting/lighting_ui.c:344 -#, fuzzy msgid "Light 1" -msgstr "Valo" +msgstr "Valo 1" #: plug-ins/Lighting/lighting_ui.c:345 -#, fuzzy msgid "Light 2" -msgstr "Valo" +msgstr "Valo 2" #: plug-ins/Lighting/lighting_ui.c:346 -#, fuzzy msgid "Light 3" -msgstr "Valo" +msgstr "Valo 3" #: plug-ins/Lighting/lighting_ui.c:347 -#, fuzzy msgid "Light 4" -msgstr "Valo" +msgstr "Valo 4" #: plug-ins/Lighting/lighting_ui.c:348 -#, fuzzy msgid "Light 5" -msgstr "Valo" +msgstr "Valo 5" #: plug-ins/Lighting/lighting_ui.c:349 -#, fuzzy msgid "Light 6" -msgstr "Valo" +msgstr "Valo 6" #. row labels #: plug-ins/Lighting/lighting_ui.c:358 plug-ins/common/spheredesigner.c:2624 @@ -589,9 +578,8 @@ msgstr "Tyyppi:" #: plug-ins/Lighting/lighting_ui.c:363 -#, fuzzy msgid "Color:" -msgstr "_Väri:" +msgstr "Väri:" #: plug-ins/Lighting/lighting_ui.c:370 msgid "Directional" @@ -606,7 +594,6 @@ msgstr "Käytettävän valolähteen tyyppi" #: plug-ins/Lighting/lighting_ui.c:388 plug-ins/MapObject/mapobject_ui.c:679 -#, fuzzy msgid "Select lightsource color" msgstr "Valitse valolähteen väri" @@ -615,14 +602,12 @@ msgstr "Valitse valolähteen väri" #: plug-ins/Lighting/lighting_ui.c:408 -#, fuzzy msgid "_Intensity:" -msgstr "Voimakkuus" +msgstr "Voimakkuus:" #: plug-ins/Lighting/lighting_ui.c:414 -#, fuzzy msgid "Light intensity" -msgstr "Alkuperäinen" +msgstr "Valon voimakkuus" #: plug-ins/Lighting/lighting_ui.c:417 plug-ins/MapObject/mapobject_ui.c:694 #: plug-ins/MapObject/mapobject_ui.c:1021 @@ -699,7 +684,7 @@ #: plug-ins/MapObject/mapobject_ui.c:1103 #: plug-ins/MapObject/mapobject_ui.c:1202 msgid "Z:" -msgstr "Z" +msgstr "Z:" #: plug-ins/Lighting/lighting_ui.c:499 plug-ins/MapObject/mapobject_ui.c:798 msgid "Light source Z direction in XYZ space" @@ -711,36 +696,32 @@ msgstr "_Deflate" #: plug-ins/Lighting/lighting_ui.c:512 -#, fuzzy msgid "Lighting preset:" -msgstr "Valoefektit" +msgstr "Esivalinta:" #: plug-ins/Lighting/lighting_ui.c:558 msgid "Material properties" -msgstr "" +msgstr "Pinnoitusominaisuudet" #: plug-ins/Lighting/lighting_ui.c:576 -#, fuzzy msgid "_Glowing:" -msgstr "Pehmennys:" +msgstr "_Hehku:" #: plug-ins/Lighting/lighting_ui.c:592 plug-ins/MapObject/mapobject_ui.c:859 msgid "Amount of original color to show where no direct light falls" msgstr "Näytettävän alkuperäisen värin määrä, kun suora valo epäonnistuu" #: plug-ins/Lighting/lighting_ui.c:605 -#, fuzzy msgid "_Bright:" -msgstr "Kirkkaus:" +msgstr "_Kirkkaus:" #: plug-ins/Lighting/lighting_ui.c:621 plug-ins/MapObject/mapobject_ui.c:888 msgid "Intensity of original color when lit by a light source" msgstr "Alkuperäisen värin intensiteteetti, kun käynnistetty valolähteestä" #: plug-ins/Lighting/lighting_ui.c:634 -#, fuzzy msgid "_Shiny:" -msgstr "Sini" +msgstr "Kiiltävä:" #: plug-ins/Lighting/lighting_ui.c:650 plug-ins/MapObject/mapobject_ui.c:960 msgid "Controls how intense the highlights will be" @@ -760,7 +741,6 @@ msgstr "" #: plug-ins/Lighting/lighting_ui.c:723 -#, fuzzy msgid "E_nable bump mapping" msgstr "Käytä kuhmutusta" @@ -769,7 +749,6 @@ msgstr "Päälle pois bump-mapping" #: plug-ins/Lighting/lighting_ui.c:755 -#, fuzzy msgid "Bumpm_ap image:" msgstr "_Bumpmap kuva:" @@ -798,7 +777,6 @@ msgstr "_Käyrä:" #: plug-ins/Lighting/lighting_ui.c:776 -#, fuzzy msgid "Ma_ximum height:" msgstr "Maksimikorkeus:" @@ -807,7 +785,6 @@ msgstr "Kuhmujen maksimikorkeus" #: plug-ins/Lighting/lighting_ui.c:811 -#, fuzzy msgid "E_nable environment mapping" msgstr "Käytä ympäristökuvausta" @@ -816,7 +793,6 @@ msgstr "Kytke ympäristönkuvaus (heijastus) päälle/pois" #: plug-ins/Lighting/lighting_ui.c:847 -#, fuzzy msgid "En_vironment image:" msgstr "Ympäristökuva:" @@ -866,37 +842,32 @@ msgstr "Kytke tosiaikainen esikatselu päälle/pois" #: plug-ins/Lighting/lighting_ui.c:1044 -#, fuzzy msgid "Save Lighting Preset" -msgstr "Valoefektit" +msgstr "Tallenna asetukset" #: plug-ins/Lighting/lighting_ui.c:1177 -#, fuzzy msgid "Load Lighting Preset" -msgstr "Valoefektit" +msgstr "Lataa esiasetukset" #: plug-ins/MapObject/mapobject_apply.c:273 msgid "Map to Plane..." -msgstr "" +msgstr "Kuvaa tasoon..." #: plug-ins/MapObject/mapobject_apply.c:276 msgid "Map to Sphere..." -msgstr "" +msgstr "Kuvaa palloon..." #: plug-ins/MapObject/mapobject_apply.c:279 -#, fuzzy msgid "Map to Box..." -msgstr "Kuvaus:" +msgstr "Kuvaa laatikkoon..." #: plug-ins/MapObject/mapobject_apply.c:282 -#, fuzzy msgid "Map to Cylinder..." -msgstr "Sylinteri" +msgstr "Kuvaa sylinteriin..." #: plug-ins/MapObject/mapobject_main.c:199 -#, fuzzy msgid "Map _Object..." -msgstr "Kuvaa kappaleeseen" +msgstr "Kuvaa kappaleeseen..." #: plug-ins/MapObject/mapobject_ui.c:248 #: plug-ins/MapObject/mapobject_ui.c:1340 @@ -910,7 +881,6 @@ #. General options #: plug-ins/MapObject/mapobject_ui.c:496 -#, fuzzy msgid "General options" msgstr "Yleiset asetukset" @@ -939,7 +909,6 @@ msgstr "Kappale johon kuvataan" #: plug-ins/MapObject/mapobject_ui.c:532 -#, fuzzy msgid "Transparent background" msgstr "Läpinäkyvä tausta" @@ -948,7 +917,6 @@ msgstr "Objektin ulkopuolisesti kuvasta läpinäkyvä" #: plug-ins/MapObject/mapobject_ui.c:545 -#, fuzzy msgid "Tile source image" msgstr "Toista lähdekuva" @@ -957,14 +925,12 @@ msgstr "Toista lähdekuva: käytännöllinen jatkuvilla tasoilla" #: plug-ins/MapObject/mapobject_ui.c:559 -#, fuzzy msgid "Create new image" msgstr "Luo uusi kuva" #: plug-ins/MapObject/mapobject_ui.c:578 -#, fuzzy msgid "Enable _antialiasing" -msgstr "Käytä antialiasointia" +msgstr "Käytä _antialiasointia" #: plug-ins/MapObject/mapobject_ui.c:585 msgid "Enable/disable jagged edges removal (antialiasing)" @@ -980,7 +946,7 @@ msgid "Antialiasing quality. Higher is better, but slower" msgstr "Antialiasoinnin laatu. Korkeampi on parempi, mutta hitaampi" -#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:720 +#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:691 #: plug-ins/common/wind.c:993 plug-ins/imagemap/imap_preferences.c:539 msgid "_Threshold:" msgstr "Kynnysarvo:" @@ -990,27 +956,22 @@ msgstr "Lopeta kun pikselien erotus on pienempi kuin tämä arvo" #: plug-ins/MapObject/mapobject_ui.c:658 -#, fuzzy msgid "Point light" msgstr "pistemäinen valolähde" #: plug-ins/MapObject/mapobject_ui.c:659 -#, fuzzy msgid "Directional light" msgstr "suunnattu valolähde" #: plug-ins/MapObject/mapobject_ui.c:660 -#, fuzzy msgid "No light" msgstr "Ei valoa" #: plug-ins/MapObject/mapobject_ui.c:674 -#, fuzzy msgid "Lightsource type:" msgstr "Valonlähteen tyyppi:" #: plug-ins/MapObject/mapobject_ui.c:684 -#, fuzzy msgid "Lightsource color:" msgstr "Valolähteen väri:" @@ -1126,11 +1087,11 @@ #: plug-ins/MapObject/mapobject_ui.c:1228 msgid "_Top:" -msgstr "Ylä:" +msgstr "_Ylä:" #: plug-ins/MapObject/mapobject_ui.c:1228 msgid "_Bottom:" -msgstr "Ala:" +msgstr "_Ala:" #: plug-ins/MapObject/mapobject_ui.c:1233 msgid "Images for the Cap Faces" @@ -1182,7 +1143,6 @@ msgstr "Suurenna" #: plug-ins/MapObject/mapobject_ui.c:1455 -#, fuzzy msgid "Show preview _wireframe" msgstr "Näytä rautalankamallina" @@ -1192,7 +1152,7 @@ #: plug-ins/bmp/bmp.c:120 plug-ins/bmp/bmp.c:139 msgid "Windows BMP image" -msgstr "" +msgstr "Windows BMP kuva" #: plug-ins/bmp/bmpread.c:86 msgid "Bad colormap" @@ -1234,11 +1194,11 @@ #: plug-ins/bmp/bmpread.c:312 #, c-format msgid "Error reading BMP file header from '%s'" -msgstr "Virhe luettaessa BMP tiedoston '%s' otsikkoa" +msgstr "Virhe luettaessa BMP-tiedoston \"%s\" otsikkoa" #: plug-ins/bmp/bmpread.c:439 plug-ins/bmp/bmpread.c:474 msgid "Unrecognized or invalid BMP compression format." -msgstr "" +msgstr "Tunnistamaton BMP pakkaustapa." #. #. * Create the "background" layer to hold the image... @@ -1265,13 +1225,13 @@ #: plug-ins/bmp/bmpwrite.c:136 plug-ins/common/dicom.c:617 #: plug-ins/common/pcx.c:579 msgid "Cannot save images with alpha channel." -msgstr "Ei voi tallennaa kuvia joissa on alfa-kanava" +msgstr "Ei voi tallentaa kuvia joissa on alfa-kanava." #: plug-ins/bmp/bmpwrite.c:182 plug-ins/common/dicom.c:632 #: plug-ins/common/postscript.c:1114 plug-ins/common/xwd.c:568 #: plug-ins/fits/fits.c:441 plug-ins/xjt/xjt.c:1677 msgid "Cannot operate on unknown image types." -msgstr "Ei voi toimia tuntemattomilla kuvilla" +msgstr "Ei voi toimia tuntemattomilla kuvilla." #. And let's begin the progress #. init the progress meter @@ -1290,7 +1250,7 @@ #: plug-ins/winicon/icosave.c:954 plug-ins/xjt/xjt.c:1682 #, c-format msgid "Saving '%s'..." -msgstr "Talletetaan '%s'..." +msgstr "Talletetaan \"%s\"..." #: plug-ins/bmp/bmpwrite.c:554 msgid "Save as BMP" @@ -1301,99 +1261,80 @@ msgstr "_RLE pakattu" #: plug-ins/common/AlienMap2.c:145 -#, fuzzy msgid "_Modify red channel" -msgstr "Säädä punaisen värin (R) tai värisävyn (H) kanavaa" +msgstr "Säädä punaisen värin (R) kanavaa" #: plug-ins/common/AlienMap2.c:145 -#, fuzzy msgid "_Modify hue channel" -msgstr "Säädä punaisen värin (R) tai värisävyn (H) kanavaa" +msgstr "Säädä värisävyn (H) kanavaa" #: plug-ins/common/AlienMap2.c:146 -#, fuzzy msgid "Mo_dify green channel" -msgstr "Säädä vihreän värin (G) tai värikylläisyyden (S) kanavaa" +msgstr "Säädä vihreän värin (G) kanavaa" #: plug-ins/common/AlienMap2.c:146 -#, fuzzy msgid "Mo_dify saturation channel" -msgstr "Säädä vihreän värin (G) tai värikylläisyyden (S) kanavaa" +msgstr "Säädä värikylläisyyden (S) kanavaa" #: plug-ins/common/AlienMap2.c:147 -#, fuzzy msgid "Mod_ify blue channel" -msgstr "Säädä sinisen värin (B) tai valoisuuden (L) kanavaa" +msgstr "Säädä sinisen värin (B) kanavaa" #: plug-ins/common/AlienMap2.c:147 -#, fuzzy msgid "Mod_ify luminosity channel" -msgstr "Säädä sinisen värin (B) tai valoisuuden (L) kanavaa" +msgstr "Säädä valoisuuden (L) kanavaa" #: plug-ins/common/AlienMap2.c:152 -#, fuzzy msgid "Red _frequency:" -msgstr "R/H-taajuus:" +msgstr "Punaisen taajuus:" #: plug-ins/common/AlienMap2.c:152 -#, fuzzy msgid "Hue _frequency:" -msgstr "R/H-taajuus:" +msgstr "Värisävyn taajuus:" #: plug-ins/common/AlienMap2.c:153 -#, fuzzy msgid "Green fr_equency:" -msgstr "G/S-taajuus:" +msgstr "Vihreän taajuus:" #: plug-ins/common/AlienMap2.c:153 -#, fuzzy msgid "Saturation fr_equency:" -msgstr "Kylläisyys:" +msgstr "Kylläisyyden taajuus:" #: plug-ins/common/AlienMap2.c:154 -#, fuzzy msgid "Blue freq_uency:" -msgstr "B/L-taajuus:" +msgstr "Sinisen taajuus:" #: plug-ins/common/AlienMap2.c:154 -#, fuzzy msgid "Luminosity freq_uency:" -msgstr "B/L-taajuus:" +msgstr "Valoisuuden taajuus:" #: plug-ins/common/AlienMap2.c:156 -#, fuzzy msgid "Red _phaseshift:" -msgstr "R/H-vaihesiirto:" +msgstr "Punaisen vaihesiirto:" #: plug-ins/common/AlienMap2.c:156 -#, fuzzy msgid "Hue _phaseshift:" -msgstr "R/H-vaihesiirto:" +msgstr "Sävyn vaihesiirto:" #: plug-ins/common/AlienMap2.c:157 -#, fuzzy msgid "Green ph_aseshift:" -msgstr "G/S-vaihesiirto:" +msgstr "Vihreän vaihesiirto:" #: plug-ins/common/AlienMap2.c:157 -#, fuzzy msgid "Saturation ph_aseshift:" -msgstr "G/S-vaihesiirto:" +msgstr "Kylläisyyden vaihesiirto:" #: plug-ins/common/AlienMap2.c:158 -#, fuzzy msgid "Blue pha_seshift:" -msgstr "B/L-vaihesiirto:" +msgstr "Sinisen vaihesiirto:" #: plug-ins/common/AlienMap2.c:158 -#, fuzzy msgid "Luminosity pha_seshift:" -msgstr "B/L-vaihesiirto:" +msgstr "Valoisuuden vaihesiirto:" #: plug-ins/common/AlienMap2.c:193 -#, fuzzy msgid "Alien Map _2..." -msgstr "AlienMap2" +msgstr "Alien Map _2..." #: plug-ins/common/AlienMap2.c:325 msgid "AlienMap2: Transforming..." @@ -1411,7 +1352,7 @@ #: plug-ins/common/AlienMap2.c:450 plug-ins/common/AlienMap2.c:474 #: plug-ins/common/AlienMap2.c:498 msgid "Phase angle, range 0-360" -msgstr "" +msgstr "Vaihekulma 0-360°" #. Propagate Mode #: plug-ins/common/AlienMap2.c:512 plug-ins/common/hot.c:588 @@ -1420,18 +1361,16 @@ msgstr "Toimintatapa" #: plug-ins/common/AlienMap2.c:516 -#, fuzzy msgid "_RGB color model" -msgstr "RGB-värimalli" +msgstr "_RGB-värimalli" #: plug-ins/common/AlienMap2.c:517 -#, fuzzy msgid "_HSL color model" -msgstr "HSL-värimalli" +msgstr "_HSL-värimalli" #: plug-ins/common/CEL.c:112 plug-ins/common/CEL.c:130 msgid "KISS CEL" -msgstr "" +msgstr "KISS CEL" #: plug-ins/common/CEL.c:191 msgid "Load KISS Palette" @@ -1456,7 +1395,7 @@ #: plug-ins/common/CML_explorer.c:133 msgid "Fill with parameter k" -msgstr "Täytä k parametrilla" +msgstr "Täytä k-parametrilla" #: plug-ins/common/CML_explorer.c:134 msgid "k{x(1-x)}^p" @@ -1484,15 +1423,15 @@ #: plug-ins/common/CML_explorer.c:140 msgid "Delta function" -msgstr "Delta funktio" +msgstr "Delta-funktio" #: plug-ins/common/CML_explorer.c:141 msgid "Delta function stepped" -msgstr "Delta funktio porrastettu" +msgstr "Delta-funktio porrastettu" #: plug-ins/common/CML_explorer.c:142 msgid "sin^p-based function" -msgstr "sin^p-perusteinen funktio" +msgstr "sin^p perusteinen funktio" #: plug-ins/common/CML_explorer.c:143 msgid "sin^p, stepped" @@ -1621,7 +1560,7 @@ #: plug-ins/common/CML_explorer.c:231 msgid "Random, ch. independent" -msgstr "Satunnainen, kanava riippumaton" +msgstr "Satunnainen, kanavariippumaton" #: plug-ins/common/CML_explorer.c:232 msgid "Random shared" @@ -1657,9 +1596,8 @@ msgstr "(Ei mitään)" #: plug-ins/common/CML_explorer.c:470 -#, fuzzy msgid "CML _Explorer..." -msgstr "CML_explorer: evoluoidaan..." +msgstr "CML _Explorer..." #: plug-ins/common/CML_explorer.c:760 msgid "CML_explorer: evoluting..." @@ -1670,54 +1608,47 @@ msgstr "Coupled-Map-Lattice -selain" #: plug-ins/common/CML_explorer.c:1225 -#, fuzzy msgid "New seed" msgstr "Uusi siemen" #: plug-ins/common/CML_explorer.c:1236 -#, fuzzy msgid "Fix seed" -msgstr "Korjaa siemen" +msgstr "Kiinteä siemen" #: plug-ins/common/CML_explorer.c:1247 -#, fuzzy msgid "Random seed" msgstr "Satunnaissiemen" #: plug-ins/common/CML_explorer.c:1289 plug-ins/common/fp.c:663 #: plug-ins/common/lic.c:669 msgid "_Hue" -msgstr "Sävy" +msgstr "S_ävy" #: plug-ins/common/CML_explorer.c:1293 msgid "Sat_uration" -msgstr "Saturaatio" +msgstr "_Saturaatio" #: plug-ins/common/CML_explorer.c:1297 plug-ins/common/fp.c:671 msgid "_Value" -msgstr "Arvo" +msgstr "_Arvo" #: plug-ins/common/CML_explorer.c:1301 msgid "_Advanced" msgstr "Kehittyneet" #: plug-ins/common/CML_explorer.c:1316 -#, fuzzy msgid "Channel Independent Parameters" -msgstr "Ei-kanavakohtaiset asetukset" +msgstr "Kanavariippumattomat asetukset" #: plug-ins/common/CML_explorer.c:1338 -#, fuzzy msgid "Initial value:" -msgstr "Alkuarvo" +msgstr "Alkuarvo:" #: plug-ins/common/CML_explorer.c:1344 -#, fuzzy msgid "Zoom scale:" msgstr "Suurennusskaala:" #: plug-ins/common/CML_explorer.c:1353 -#, fuzzy msgid "Start offset:" msgstr "Alkusiirtymä:" @@ -1740,6 +1671,8 @@ "(this is the reason why image on drawable is different from preview), and " "(2) all mutation rates equal to zero." msgstr "" +"Sama siemen tuottaa samanlaisen kuvan, jos kuvien levydet ovat samat ja " +"kaikki mutaationopeudet ovat nolla." #: plug-ins/common/CML_explorer.c:1406 msgid "O_thers" @@ -1750,17 +1683,14 @@ msgstr "Kopioi asetukset" #: plug-ins/common/CML_explorer.c:1440 -#, fuzzy msgid "Source channel:" msgstr "Lähtökanava:" #: plug-ins/common/CML_explorer.c:1455 plug-ins/common/CML_explorer.c:1503 -#, fuzzy msgid "Destination channel:" msgstr "Kohdekanava:" #: plug-ins/common/CML_explorer.c:1459 -#, fuzzy msgid "Copy parameters" msgstr "Kopioi parametrit" @@ -1769,53 +1699,48 @@ msgstr "" #: plug-ins/common/CML_explorer.c:1488 -#, fuzzy msgid "Source channel in file:" -msgstr "Tiedoston lähtökanava:" +msgstr "Lähtökanava tiedostossa:" #: plug-ins/common/CML_explorer.c:1509 msgid "_Misc Ops." -msgstr "Sekalaiset" +msgstr "_Sekalaiset" #: plug-ins/common/CML_explorer.c:1558 -#, fuzzy msgid "Function type:" msgstr "Funktiotyyppi:" #: plug-ins/common/CML_explorer.c:1574 msgid "Composition:" -msgstr "" +msgstr "Koostumus:" #: plug-ins/common/CML_explorer.c:1588 msgid "Misc arrange:" -msgstr "" +msgstr "Sekalaiset:" #: plug-ins/common/CML_explorer.c:1592 msgid "Use cyclic range" -msgstr "" +msgstr "Kiertävä väli" #: plug-ins/common/CML_explorer.c:1602 msgid "Mod. rate:" -msgstr "" +msgstr "Muunnosnopeus:" #: plug-ins/common/CML_explorer.c:1611 -#, fuzzy msgid "Env. sensitivity:" -msgstr "Kanavan herkkyys:" +msgstr "Ympäristöherkkyys:" #: plug-ins/common/CML_explorer.c:1620 -#, fuzzy msgid "Diffusion dist.:" -msgstr "Mutaatioetäisyys:" +msgstr "Diffuusioetäisyys:" #: plug-ins/common/CML_explorer.c:1629 msgid "# of subranges:" -msgstr "" +msgstr "Alivälejä:" #: plug-ins/common/CML_explorer.c:1638 -#, fuzzy msgid "P(ower factor):" -msgstr "Potenssikerroin" +msgstr "Potenssikerroin:" #: plug-ins/common/CML_explorer.c:1647 msgid "Parameter k:" @@ -1823,36 +1748,31 @@ #: plug-ins/common/CML_explorer.c:1656 msgid "Range low:" -msgstr "" +msgstr "Alaraja:" #: plug-ins/common/CML_explorer.c:1665 -#, fuzzy msgid "Range high:" -msgstr "Kuvan korkeus" +msgstr "Yläraja:" #: plug-ins/common/CML_explorer.c:1677 -#, fuzzy msgid "Plot a graph of the settings" -msgstr "Parametrit" +msgstr "Luo graafi asetuksista" #: plug-ins/common/CML_explorer.c:1722 -#, fuzzy msgid "Ch. sensitivity:" msgstr "Kanavan herkkyys:" #: plug-ins/common/CML_explorer.c:1732 -#, fuzzy msgid "Mutation rate:" msgstr "Mutaationopeus:" #: plug-ins/common/CML_explorer.c:1742 -#, fuzzy msgid "Mutation dist.:" msgstr "Mutaatioetäisyys:" #: plug-ins/common/CML_explorer.c:1819 msgid "Graph of the current settings" -msgstr "" +msgstr "Graafi nykyisistä asetuksista" #: plug-ins/common/CML_explorer.c:1889 msgid "Warning: the source and the destination are the same channel." @@ -1863,7 +1783,7 @@ msgstr "Tallenna parametrit" #: plug-ins/common/CML_explorer.c:2056 plug-ins/common/channel_mixer.c:1052 -#, fuzzy, c-format +#, c-format msgid "Parameters were saved to '%s'" msgstr "Parametrit tallennettu tiedostoon '%s'" @@ -1908,7 +1828,7 @@ #: plug-ins/common/aa.c:94 msgid "ASCII art" -msgstr "" +msgstr "ASCII kuvana" #. Create the actual window. #: plug-ins/common/aa.c:345 @@ -1916,14 +1836,12 @@ msgstr "Tallenna tekstinä" #: plug-ins/common/aa.c:360 -#, fuzzy msgid "_Format:" -msgstr "_Kirjasin:" +msgstr "_Muoto:" #: plug-ins/common/align_layers.c:135 -#, fuzzy msgid "Align _Visible Layers..." -msgstr "Kohista näkyvät tasot" +msgstr "Kohdista näkyvät tasot..." #: plug-ins/common/align_layers.c:173 msgid "There are not enough layers to align." @@ -1948,17 +1866,14 @@ #. "snap to grid" checkbutton at bottom of style frame #: plug-ins/common/align_layers.c:420 plug-ins/common/align_layers.c:451 #: plug-ins/gfig/gfig-dialog.c:495 -#, fuzzy msgid "Snap to grid" msgstr "Tartu apuviivastoon" #: plug-ins/common/align_layers.c:429 -#, fuzzy msgid "_Horizontal style:" -msgstr "Vaakasuora:" +msgstr "_Vaakatyyli:" #: plug-ins/common/align_layers.c:433 -#, fuzzy msgid "Left edge" msgstr "Vasen reuna" @@ -1968,12 +1883,10 @@ msgstr "Keskusta" #: plug-ins/common/align_layers.c:435 -#, fuzzy msgid "Right edge" msgstr "Oikea reuna" #: plug-ins/common/align_layers.c:444 -#, fuzzy msgid "Ho_rizontal base:" msgstr "Vaakaperusta:" @@ -1986,52 +1899,42 @@ msgstr "Täytä alhaalta ylös" #: plug-ins/common/align_layers.c:460 -#, fuzzy msgid "_Vertical style:" -msgstr "Pystysuora:" +msgstr "_Pystytyyli:" #: plug-ins/common/align_layers.c:463 -#, fuzzy msgid "Top edge" msgstr "Yläreuna" #: plug-ins/common/align_layers.c:465 -#, fuzzy msgid "Bottom edge" msgstr "Alareuna" #: plug-ins/common/align_layers.c:474 -#, fuzzy msgid "Ver_tical base:" msgstr "Pystyperusta:" #: plug-ins/common/align_layers.c:478 -#, fuzzy msgid "_Grid size:" -msgstr "Ristikon koko:" +msgstr "_Ristikon koko:" #: plug-ins/common/align_layers.c:487 -#, fuzzy msgid "_Ignore the bottom layer even if visible" msgstr "Jätä huomiotta pohjataso" #: plug-ins/common/align_layers.c:497 -#, fuzzy msgid "_Use the (invisible) bottom layer as the base" msgstr "Käytä näkymätöntä pohjatasoa pohjana" #: plug-ins/common/animationplay.c:181 -#, fuzzy msgid "_Playback..." -msgstr "Toisto:" +msgstr "_Toisto..." #: plug-ins/common/animationplay.c:413 -#, fuzzy msgid "Animation Playback:" msgstr "Animaation toisto:" #: plug-ins/common/animationplay.c:431 -#, fuzzy msgid "Playback:" msgstr "Toisto:" @@ -2054,22 +1957,19 @@ #: plug-ins/common/animoptimize.c:140 msgid "Optimize (for _GIF)" -msgstr "" +msgstr "Optimoi GIF" #: plug-ins/common/animoptimize.c:158 -#, fuzzy msgid "_Optimize (Difference)" -msgstr "/Filters/Animation/_Optimoi erotus" +msgstr "_Optimoi erotus" #: plug-ins/common/animoptimize.c:175 -#, fuzzy msgid "_UnOptimize" -msgstr "Optimoi" +msgstr "" #: plug-ins/common/animoptimize.c:198 -#, fuzzy msgid "_Remove Backdrop" -msgstr "Toimintatapa" +msgstr "" #: plug-ins/common/animoptimize.c:214 msgid "_Find Backdrop" @@ -2077,7 +1977,7 @@ #: plug-ins/common/animoptimize.c:429 msgid "UnOptimizing Animation..." -msgstr "" +msgstr "Poistetaan optimointia..." #: plug-ins/common/animoptimize.c:432 msgid "Removing Animation Background..." @@ -2092,7 +1992,6 @@ msgstr "Optimoidaan animaatio..." #: plug-ins/common/apply_lens.c:112 -#, fuzzy msgid "Apply _Lens..." msgstr "Linssiefekti..." @@ -2105,47 +2004,40 @@ msgstr "Linssiefekti" #: plug-ins/common/apply_lens.c:417 -#, fuzzy msgid "_Keep original surroundings" msgstr "Säilytä alkuperäiset ympärykset" #: plug-ins/common/apply_lens.c:432 -#, fuzzy msgid "_Set surroundings to index 0" msgstr "Ympärykset väriksi 0" #: plug-ins/common/apply_lens.c:433 -#, fuzzy msgid "_Set surroundings to background color" msgstr "Ympärykset taustaväriksi" #: plug-ins/common/apply_lens.c:448 -#, fuzzy msgid "_Make surroundings transparent" msgstr "Ympärykset läpinäkyväksi" #: plug-ins/common/apply_lens.c:465 -#, fuzzy msgid "_Lens refraction index:" -msgstr "Refraktiokerroin:" +msgstr "Linssin refraktiokerroin:" #: plug-ins/common/autocrop.c:85 -#, fuzzy msgid "_Autocrop Image" -msgstr "Koko kuva" +msgstr "Kuvan automaattinen rajaus" #: plug-ins/common/autocrop.c:99 msgid "_Autocrop Layer" -msgstr "" +msgstr "Tason automaattinen rajaus" #: plug-ins/common/autocrop.c:146 msgid "Cropping..." msgstr "Rajataan..." #: plug-ins/common/autostretch_hsv.c:80 -#, fuzzy msgid "Stretch _HSV" -msgstr "Pituus:" +msgstr "Laajenna _HSV" #: plug-ins/common/autostretch_hsv.c:116 msgid "Auto-Stretching HSV..." @@ -2170,40 +2062,38 @@ #. Orientation toggle box #: plug-ins/common/blinds.c:255 plug-ins/common/ripple.c:535 msgid "Orientation" -msgstr "Asento" +msgstr "Suunta" #: plug-ins/common/blinds.c:259 plug-ins/common/ripple.c:539 -#: plug-ins/common/tileit.c:419 plug-ins/pagecurl/pagecurl.c:530 +#: plug-ins/common/tileit.c:418 plug-ins/pagecurl/pagecurl.c:530 msgid "_Horizontal" -msgstr "Vaakasuora" +msgstr "_Vaakasuora" #: plug-ins/common/blinds.c:260 plug-ins/common/ripple.c:540 -#: plug-ins/common/tileit.c:429 plug-ins/pagecurl/pagecurl.c:529 +#: plug-ins/common/tileit.c:428 plug-ins/pagecurl/pagecurl.c:529 msgid "_Vertical" -msgstr "Pystysuora" +msgstr "_Pystysuora" #: plug-ins/common/blinds.c:277 plug-ins/common/fractaltrace.c:733 #: plug-ins/common/papertile.c:358 msgid "_Transparent" -msgstr "Läpinäkyvä" +msgstr "_Läpinäkyvä" #: plug-ins/common/blinds.c:303 msgid "_Displacement:" -msgstr "Siirtymä:" +msgstr "_Syrjäytys:" #: plug-ins/common/blinds.c:315 -#, fuzzy msgid "_Number of segments:" -msgstr "Segmenttejä:" +msgstr "Se_gmenttejä:" #: plug-ins/common/blur.c:147 -#, fuzzy msgid "_Blur" -msgstr "Sininen" +msgstr "_Sumennus" -#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:383 +#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:432 msgid "Blurring..." -msgstr "" +msgstr "Sumennetaan..." #: plug-ins/common/borderaverage.c:101 msgid "_Border Average..." @@ -2219,20 +2109,19 @@ #: plug-ins/common/borderaverage.c:362 msgid "Border Size" -msgstr "" +msgstr "Reunan koko" #: plug-ins/common/borderaverage.c:370 msgid "_Thickness:" -msgstr "" +msgstr "_Paksuus:" #: plug-ins/common/borderaverage.c:413 msgid "_Bucket size:" msgstr "" #: plug-ins/common/bumpmap.c:341 -#, fuzzy msgid "_Bump Map..." -msgstr "Kuhmutus" +msgstr "Kuhmutus..." #: plug-ins/common/bumpmap.c:490 msgid "Bump-mapping..." @@ -2243,42 +2132,37 @@ msgstr "Kuhmutus" #: plug-ins/common/bumpmap.c:893 -#, fuzzy msgid "_Bump map:" -msgstr "Kuhmutus" +msgstr "Kuhmutus:" #: plug-ins/common/bumpmap.c:908 -#, fuzzy msgid "_Map type:" -msgstr "Kartan tyyppi" +msgstr "Kartan tyyppi:" #. Compensate darkening #: plug-ins/common/bumpmap.c:913 msgid "Co_mpensate for darkening" -msgstr "" +msgstr "Kompensoi tummeneminen" #. Invert bumpmap #: plug-ins/common/bumpmap.c:927 -#, fuzzy msgid "I_nvert bumpmap" -msgstr "Käännä kartta" +msgstr "Käännä kuhmutus" #. Tile bumpmap #: plug-ins/common/bumpmap.c:941 -#, fuzzy msgid "_Tile bumpmap" -msgstr "Käännä kartta" +msgstr "Toista kuhmutus" #: plug-ins/common/bumpmap.c:956 plug-ins/common/emboss.c:485 msgid "_Azimuth:" -msgstr "_Atsimuutti" +msgstr "_Atsimuutti:" #: plug-ins/common/bumpmap.c:968 msgid "_Elevation:" msgstr "_Korotus:" #: plug-ins/common/bumpmap.c:994 plug-ins/common/postscript.c:3137 -#, fuzzy msgid "_X offset:" msgstr "_X-siirtymä:" @@ -2289,7 +2173,6 @@ msgstr "" #: plug-ins/common/bumpmap.c:1008 plug-ins/common/postscript.c:3146 -#, fuzzy msgid "_Y offset:" msgstr "_Y-siirtymä:" @@ -2303,46 +2186,41 @@ #: plug-ins/common/c_astretch.c:78 msgid "_Stretch Contrast" -msgstr "" +msgstr "Laajenna kontrasti" #: plug-ins/common/c_astretch.c:112 msgid "Auto-Stretching Contrast..." -msgstr "" +msgstr "Automaattinen kontrastin laajennos..." #: plug-ins/common/c_astretch.c:152 msgid "c_astretch: cmap was NULL! Quitting...\n" msgstr "" #: plug-ins/common/cartoon.c:147 -#, fuzzy msgid "Ca_rtoon..." -msgstr "Nimiö" +msgstr "Sarjakuva..." -#: plug-ins/common/cartoon.c:228 plug-ins/common/dog.c:246 -#: plug-ins/common/gauss.c:430 plug-ins/common/neon.c:222 -#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:203 +#: plug-ins/common/cartoon.c:229 plug-ins/common/dog.c:247 +#: plug-ins/common/gauss.c:431 plug-ins/common/neon.c:221 +#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:204 #: plug-ins/common/softglow.c:220 plug-ins/gflare/gflare.c:972 #: plug-ins/sgi/sgi.c:528 plug-ins/xjt/xjt.c:1673 msgid "Cannot operate on indexed color images." msgstr "Ei voi toimia indeksoiduilla kuvilla" -#: plug-ins/common/cartoon.c:807 -#, fuzzy +#: plug-ins/common/cartoon.c:808 msgid "Cartoon" -msgstr "Nimiö" +msgstr "Sarjakuva" -#: plug-ins/common/cartoon.c:837 plug-ins/common/photocopy.c:867 -#, fuzzy +#: plug-ins/common/cartoon.c:838 plug-ins/common/photocopy.c:867 msgid "_Mask radius:" -msgstr "Säde:" +msgstr "Maskin säde:" -#: plug-ins/common/cartoon.c:851 -#, fuzzy +#: plug-ins/common/cartoon.c:852 msgid "_Percent black:" -msgstr "Prosentti" +msgstr "Prosenttia mustaa:" #: plug-ins/common/ccanalyze.c:110 -#, fuzzy msgid "Colorcube A_nalysis..." msgstr "Värianalyysi..." @@ -2394,16 +2272,14 @@ msgstr "Pakkaussuhde: %d/1" #: plug-ins/common/channel_mixer.c:197 -#, fuzzy msgid "Channel Mi_xer..." -msgstr "Kanavasekoitus" +msgstr "Kanavasekoitus..." #: plug-ins/common/channel_mixer.c:485 msgid "Channel Mixer" msgstr "Kanavasekoitus" #: plug-ins/common/channel_mixer.c:514 -#, fuzzy msgid "O_utput channel:" msgstr "Näyttökanava:" @@ -2434,7 +2310,6 @@ msgstr "Yksivärinen" #: plug-ins/common/channel_mixer.c:628 -#, fuzzy msgid "Preserve _luminosity" msgstr "Säilytä valovoima" @@ -2451,9 +2326,8 @@ msgstr "Kanavasekoitus: tiedostovaroitus" #: plug-ins/common/checkerboard.c:93 -#, fuzzy msgid "_Checkerboard..." -msgstr "Šakkilauta" +msgstr "_Šakkilauta..." #: plug-ins/common/checkerboard.c:161 msgid "Adding Checkerboard..." @@ -2473,16 +2347,14 @@ msgstr "_Koko:" #: plug-ins/common/color_enhance.c:80 -#, fuzzy msgid "_Color Enhance" -msgstr "Värinkorostus" +msgstr "Värikorostus" #: plug-ins/common/color_enhance.c:115 msgid "Color Enhance..." -msgstr "Värinkorostus" +msgstr "Värikorostus..." #: plug-ins/common/colorify.c:110 -#, fuzzy msgid "_Colorify..." msgstr "Väritetään..." @@ -2502,32 +2374,30 @@ msgid "Colorify Custom Color" msgstr "Väritä omalla värillä" -#: plug-ins/common/colortoalpha.c:105 -#, fuzzy +#: plug-ins/common/colortoalpha.c:104 msgid "Color to _Alpha..." -msgstr "Väri -> Alfa" +msgstr "Väri -> Alfa..." -#: plug-ins/common/colortoalpha.c:183 +#: plug-ins/common/colortoalpha.c:181 msgid "Removing color..." msgstr "Poistetaan väri..." -#: plug-ins/common/colortoalpha.c:364 +#: plug-ins/common/colortoalpha.c:377 msgid "Color to Alpha" msgstr "Väri -> Alfa" -#: plug-ins/common/colortoalpha.c:389 plug-ins/common/mapcolor.c:424 +#: plug-ins/common/colortoalpha.c:402 plug-ins/common/mapcolor.c:424 #: plug-ins/gfli/gfli.c:835 plug-ins/gfli/gfli.c:898 msgid "From:" msgstr "Väristä:" -#: plug-ins/common/colortoalpha.c:393 +#: plug-ins/common/colortoalpha.c:406 msgid "Color to Alpha Color Picker" msgstr "Väri -> Alfa värivalitsin" -#: plug-ins/common/colortoalpha.c:407 -#, fuzzy +#: plug-ins/common/colortoalpha.c:420 msgid "to alpha" -msgstr " " +msgstr "alfakanavaksi" #: plug-ins/common/compose.c:127 plug-ins/common/decompose.c:130 #: plug-ins/common/raw.c:953 @@ -2642,26 +2512,25 @@ msgstr "" #: plug-ins/common/compose.c:294 -#, fuzzy msgid "C_ompose..." -msgstr "Yhdistetään kuvat..." +msgstr "Yhdistetään..." #: plug-ins/common/compose.c:360 #, c-format msgid "Could not get layers for image %d" -msgstr "" +msgstr "Kuvasta %d ei saatu tasoja." #: plug-ins/common/compose.c:411 msgid "Composing..." -msgstr "" +msgstr "Yhdistetään..." #: plug-ins/common/compose.c:480 msgid "Drawables have different size" -msgstr "" +msgstr "Piirtotasoilla on eri koot" #: plug-ins/common/compose.c:497 msgid "Images have different size" -msgstr "" +msgstr "Kuvilla on eri koot" #: plug-ins/common/compose.c:511 msgid "Error in getting layer IDs" @@ -2691,11 +2560,11 @@ #: plug-ins/common/compressor.c:153 msgid "gzip archive" -msgstr "" +msgstr "gzip paketti" #: plug-ins/common/compressor.c:174 msgid "bzip archive" -msgstr "" +msgstr "bzip paketti" #: plug-ins/common/compressor.c:367 msgid "No sensible extension, saving as compressed XCF." @@ -2707,52 +2576,52 @@ #: plug-ins/common/convmatrix.c:87 msgid "Gr_ey" -msgstr "Harmaa" +msgstr "_Harmaa" #: plug-ins/common/convmatrix.c:88 msgid "Re_d" -msgstr "Punainen" +msgstr "_Punainen" #: plug-ins/common/convmatrix.c:89 plug-ins/common/newsprint.c:363 msgid "_Green" -msgstr "Vihreä" +msgstr "_Vihreä" #: plug-ins/common/convmatrix.c:90 plug-ins/common/newsprint.c:371 msgid "_Blue" -msgstr "Sininen" +msgstr "_Sininen" #: plug-ins/common/convmatrix.c:91 msgid "_Alpha" -msgstr "Alfa" +msgstr "_Alfa" #: plug-ins/common/convmatrix.c:96 msgid "E_xtend" -msgstr "Laajenna" +msgstr "_Laajenna" #: plug-ins/common/convmatrix.c:97 plug-ins/common/displace.c:394 #: plug-ins/common/edge.c:716 plug-ins/common/ripple.c:560 msgid "_Wrap" -msgstr "Kiedo" +msgstr "_Kiedo" #: plug-ins/common/convmatrix.c:98 msgid "Cro_p" -msgstr "Rajaa" +msgstr "_Rajaa" #: plug-ins/common/convmatrix.c:195 msgid "_Convolution Matrix..." -msgstr "" +msgstr "Konvoluutiomatriisi..." #: plug-ins/common/convmatrix.c:229 msgid "Convolution Matrix does not work on layers smaller than 3 pixels." -msgstr "" +msgstr "Konvoluutiomatriisi ei toimi kolmea pikseliä pienemmillä tasoilla." #: plug-ins/common/convmatrix.c:302 msgid "Applying convolution" -msgstr "" +msgstr "Sovelletaan konvoluutio..." #: plug-ins/common/convmatrix.c:877 msgid "Convolution Matrix" -msgstr "" +msgstr "Konvoluutiomatriisi" #: plug-ins/common/convmatrix.c:902 msgid "Matrix" @@ -2773,7 +2642,7 @@ #: plug-ins/common/convmatrix.c:992 msgid "A_lpha-weighting" -msgstr "" +msgstr "_Alfapainotus" #: plug-ins/common/convmatrix.c:1008 msgid "Border" @@ -2784,16 +2653,14 @@ msgstr "Kanavat" #: plug-ins/common/csource.c:108 -#, fuzzy msgid "C source code" -msgstr "Väritila" +msgstr "C-lähdekoodi" #: plug-ins/common/csource.c:635 msgid "Save as C-Source" msgstr "Tallenna C-lähdekoodina" #: plug-ins/common/csource.c:659 -#, fuzzy msgid "_Prefixed name:" msgstr "Nimi:" @@ -2804,84 +2671,72 @@ #. Use Comment #. #: plug-ins/common/csource.c:675 -#, fuzzy msgid "_Save comment to file" msgstr "Tallenna kommentti tiedostoon" #. GLib types #. #: plug-ins/common/csource.c:687 -#, fuzzy msgid "_Use GLib types (guint8*)" msgstr "Käytä GLib tietotyyppejä (guint8*)" #. Use Macros #. #: plug-ins/common/csource.c:699 -#, fuzzy msgid "Us_e macros instead of struct" -msgstr "Käytä makroja structien sijaan" +msgstr "Käytä C-makroja structien sijaan" #. Use RLE #. #: plug-ins/common/csource.c:711 -#, fuzzy msgid "Use _1 byte Run-Length-Encoding" msgstr "Käytä yksitavuista RLE-pakkausta" #. Alpha #. #: plug-ins/common/csource.c:723 -#, fuzzy msgid "Sa_ve alpha channel (RGBA/RGB)" -msgstr "Talleta alfakanava (RGBA/RGB)" +msgstr "Tallenna alfakanava (RGBA/RGB)" #: plug-ins/common/csource.c:741 plug-ins/common/sparkle.c:427 msgid "Op_acity:" msgstr "Peitto:" #: plug-ins/common/cubism.c:156 -#, fuzzy msgid "_Cubism..." -msgstr "Kubismi" +msgstr "_Kubismi..." -#: plug-ins/common/cubism.c:267 +#: plug-ins/common/cubism.c:269 msgid "Cubism" msgstr "Kubismi" -#: plug-ins/common/cubism.c:296 -#, fuzzy +#: plug-ins/common/cubism.c:298 msgid "_Tile size:" -msgstr "Koko" +msgstr "Koko:" -#: plug-ins/common/cubism.c:309 -#, fuzzy +#: plug-ins/common/cubism.c:311 msgid "T_ile saturation:" -msgstr "Saturaatio" +msgstr "Saturaatio:" -#: plug-ins/common/cubism.c:320 -#, fuzzy +#: plug-ins/common/cubism.c:322 msgid "_Use background color" msgstr "Käytä taustaväriä" -#: plug-ins/common/cubism.c:410 -#, fuzzy +#: plug-ins/common/cubism.c:412 msgid "Cubistic Transformation..." -msgstr "Kubistinen muunnos" +msgstr "Kubistinen muunnos..." #: plug-ins/common/curve_bend.c:572 -#, fuzzy msgid "_Curve Bend..." -msgstr "Käyrien muokkaus..." +msgstr "_Taivutus käyriin..." #: plug-ins/common/curve_bend.c:708 msgid "Can operate on layers only (but was called on channel or mask)." msgstr "Toimii vain tasoilla. (Yritettiin operaatiota kanavalle tai maskille.)" #: plug-ins/common/curve_bend.c:726 -#, fuzzy msgid "Cannot operate on layers with masks." -msgstr "Ei voi toimia indeksoiduilla kuvilla" +msgstr "Ei voi toimia tasoilla joilla on maski." #: plug-ins/common/curve_bend.c:741 msgid "Cannot operate on empty selections." @@ -2901,13 +2756,11 @@ #. The preview button #: plug-ins/common/curve_bend.c:1307 -#, fuzzy msgid "_Preview once" msgstr "Esikatsele" #. The preview toggle #: plug-ins/common/curve_bend.c:1316 -#, fuzzy msgid "Automatic pre_view" msgstr "Automaattinen esikatselu" @@ -2937,9 +2790,8 @@ #. The work_on_copy toggle #: plug-ins/common/curve_bend.c:1378 -#, fuzzy msgid "Work on cop_y" -msgstr "Operoi kopioilla" +msgstr "Toimi kopiolla" #. The curves graph #: plug-ins/common/curve_bend.c:1388 @@ -2977,29 +2829,29 @@ #: plug-ins/common/curve_bend.c:1456 msgid "Copy the active curve to the other border" -msgstr "" +msgstr "Kopioi aktiivinen käyrä toiselle rajalle" #. The CopyInv button #: plug-ins/common/curve_bend.c:1463 msgid "_Mirror" -msgstr "Peilaa" +msgstr "_Peilaa" #: plug-ins/common/curve_bend.c:1468 msgid "Mirror the active curve to the other border" -msgstr "" +msgstr "Peilaa aktiivinen käyrä toiselle rajalle" #. The Swap button #: plug-ins/common/curve_bend.c:1476 msgid "S_wap" -msgstr "Vaihda" +msgstr "_Vaihda" #: plug-ins/common/curve_bend.c:1481 msgid "Swap the two curves" -msgstr "" +msgstr "Vaihda käyrät keskenään" #: plug-ins/common/curve_bend.c:1493 msgid "Reset the active curve" -msgstr "" +msgstr "Nollaa aktiivinen käyrä" #: plug-ins/common/curve_bend.c:1510 msgid "Load the curves from a file" @@ -3007,7 +2859,7 @@ #: plug-ins/common/curve_bend.c:1522 msgid "Save the curves to a file" -msgstr "Talleta käyrät tiedostoon" +msgstr "Tallenna käyrät tiedostoon" #: plug-ins/common/curve_bend.c:2057 msgid "Load Curve Points from file" @@ -3015,11 +2867,11 @@ #: plug-ins/common/curve_bend.c:2084 msgid "Save Curve Points to file" -msgstr "Talleta käyrät tiedostoon" +msgstr "Tallenna käyrät tiedostoon" #: plug-ins/common/curve_bend.c:2969 msgid "Curve Bend..." -msgstr "Käyrien muokkaus..." +msgstr "Taivutus käyriin..." #: plug-ins/common/decompose.c:130 plug-ins/common/decompose.c:133 #: plug-ins/common/decompose.c:135 @@ -3158,28 +3010,26 @@ #: plug-ins/common/decompose.c:245 msgid "_Decompose..." -msgstr "" +msgstr "_Hajota..." #: plug-ins/common/decompose.c:330 msgid "Decomposing..." -msgstr "" +msgstr "Hajotetaan..." #: plug-ins/common/decompose.c:1198 msgid "Decompose" -msgstr "" +msgstr "Hajota" #. parameter settings #: plug-ins/common/decompose.c:1214 -#, fuzzy msgid "Extract Channels" -msgstr "Kanavat" +msgstr "Hajota kanavat" #: plug-ins/common/decompose.c:1242 msgid "Decompose to _layers" -msgstr "" +msgstr "Hajota tasoihin" #: plug-ins/common/deinterlace.c:99 -#, fuzzy msgid "_Deinterlace..." msgstr "Lomituksen poisto..." @@ -3192,19 +3042,16 @@ msgstr "Lomituksen poisto" #: plug-ins/common/deinterlace.c:340 -#, fuzzy msgid "Keep o_dd fields" msgstr "Säilytä parittomat kentät" #: plug-ins/common/deinterlace.c:341 -#, fuzzy msgid "Keep _even fields" msgstr "Säilytä parilliset kentät" #: plug-ins/common/depthmerge.c:192 -#, fuzzy msgid "_Depth Merge..." -msgstr "Lomituksen poisto..." +msgstr "" #: plug-ins/common/depthmerge.c:382 msgid "Depth-merging..." @@ -3216,82 +3063,74 @@ #: plug-ins/common/depthmerge.c:676 msgid "Source 1:" -msgstr "" +msgstr "Lähde 1:" #: plug-ins/common/depthmerge.c:691 plug-ins/common/depthmerge.c:721 -#, fuzzy msgid "Depth map:" -msgstr "Syvyys:" +msgstr "Syvyyskartta:" #: plug-ins/common/depthmerge.c:706 msgid "Source 2:" -msgstr "" +msgstr "Lähde 2:" #: plug-ins/common/depthmerge.c:738 -#, fuzzy msgid "O_verlap:" -msgstr "Käänteinen" +msgstr "Osittaispeitto:" #: plug-ins/common/depthmerge.c:758 -#, fuzzy msgid "Sc_ale 1:" -msgstr "Skaalaa Z:" +msgstr "Skaala 1:" #: plug-ins/common/depthmerge.c:768 -#, fuzzy msgid "Sca_le 2:" -msgstr "Skaalaa Z:" +msgstr "Skaala 2:" #: plug-ins/common/despeckle.c:177 msgid "Des_peckle..." msgstr "" -#: plug-ins/common/despeckle.c:420 plug-ins/common/despeckle.c:642 +#: plug-ins/common/despeckle.c:418 plug-ins/common/despeckle.c:640 msgid "Despeckle" msgstr "" #. #. * Filter type controls... #. -#: plug-ins/common/despeckle.c:446 plug-ins/gimpressionist/orientmap.c:616 +#: plug-ins/common/despeckle.c:444 plug-ins/gimpressionist/orientmap.c:616 msgid "Type" -msgstr "" +msgstr "Tyyppi" #. parameter settings -#: plug-ins/common/despeckle.c:456 -#, fuzzy +#: plug-ins/common/despeckle.c:454 msgid "Median" -msgstr "Radiaania" +msgstr "Mediaani" -#: plug-ins/common/despeckle.c:462 +#: plug-ins/common/despeckle.c:460 msgid "_Adaptive" -msgstr "" +msgstr "_Adaptiivinen" -#: plug-ins/common/despeckle.c:472 +#: plug-ins/common/despeckle.c:470 msgid "R_ecursive" -msgstr "" +msgstr "_Rekursiivinen" -#: plug-ins/common/despeckle.c:496 plug-ins/common/neon.c:728 +#: plug-ins/common/despeckle.c:494 plug-ins/common/neon.c:727 #: plug-ins/common/nlfilt.c:1083 plug-ins/common/nova.c:359 -#: plug-ins/common/unsharp.c:694 plug-ins/common/whirlpinch.c:588 +#: plug-ins/common/unsharp.c:665 plug-ins/common/whirlpinch.c:588 #: plug-ins/gflare/gflare.c:2686 plug-ins/imagemap/imap_circle.c:278 msgid "_Radius:" -msgstr "Säde:" +msgstr "_Säde:" -#: plug-ins/common/despeckle.c:512 -#, fuzzy +#: plug-ins/common/despeckle.c:510 msgid "_Black level:" -msgstr "_Tummenna" +msgstr "_Mustan taso:" -#: plug-ins/common/despeckle.c:528 -#, fuzzy +#: plug-ins/common/despeckle.c:526 msgid "_White level:" -msgstr "_Veden taso:" +msgstr "_Valkoisen taso:" #: plug-ins/common/destripe.c:113 -#, fuzzy msgid "Des_tripe..." -msgstr "Lomituksen poisto..." +msgstr "" #: plug-ins/common/destripe.c:276 msgid "Destriping..." @@ -3307,31 +3146,28 @@ #: plug-ins/common/tile.c:417 plug-ins/imagemap/imap_cmd_guides.c:167 #: plug-ins/imagemap/imap_rectangle.c:403 msgid "_Width:" -msgstr "Leveys:" +msgstr "_Leveys:" #: plug-ins/common/destripe.c:480 -#, fuzzy msgid "Create _histogram" -msgstr "Luo tähti" +msgstr "Luo histogrammi" #: plug-ins/common/dicom.c:134 -#, fuzzy msgid "DICOM image" -msgstr "GIF varoitus" +msgstr "DICOM-kuva" #: plug-ins/common/dicom.c:159 msgid "Digital Imaging and Communications in Medicine image" -msgstr "" +msgstr "Digital Imaging and Communications in Medicine -kuva" #: plug-ins/common/dicom.c:318 #, c-format msgid "'%s' is not a DICOM file." -msgstr "'%s' ei ole DICOM-tiedosto." +msgstr "\"%s\" ei ole DICOM-tiedosto." #: plug-ins/common/diffraction.c:177 -#, fuzzy msgid "_Diffraction Patterns..." -msgstr "Diffraktiokuviot" +msgstr "_Diffraktiokuviot..." #: plug-ins/common/diffraction.c:334 msgid "Creating diffraction pattern..." @@ -3342,17 +3178,14 @@ msgstr "Diffraktiokuviot" #: plug-ins/common/diffraction.c:524 -#, fuzzy msgid "Frequencies" -msgstr "Taajuudet:" +msgstr "Taajuudet" #: plug-ins/common/diffraction.c:562 -#, fuzzy msgid "Contours" msgstr "Ääriviivat" #: plug-ins/common/diffraction.c:600 -#, fuzzy msgid "Sharp edges" msgstr "Terävät reunat" @@ -3366,21 +3199,18 @@ msgstr "Sironta:" #: plug-ins/common/diffraction.c:630 -#, fuzzy msgid "Po_larization:" msgstr "Polarisaatio:" #: plug-ins/common/diffraction.c:638 -#, fuzzy msgid "Other options" msgstr "Muut asetukset" #: plug-ins/common/displace.c:154 -#, fuzzy msgid "_Displace..." -msgstr "Lomituksen poisto..." +msgstr "" -#: plug-ins/common/displace.c:228 +#: plug-ins/common/displace.c:231 msgid "Displacing..." msgstr "" @@ -3390,69 +3220,60 @@ #. X options #: plug-ins/common/displace.c:297 -#, fuzzy msgid "_X displacement:" -msgstr "Siirtymä:" +msgstr "X-syrjäytys:" #. Y Options #: plug-ins/common/displace.c:344 -#, fuzzy msgid "_Y displacement:" -msgstr "Siirtymä:" +msgstr "Y-syrjäytys:" #: plug-ins/common/displace.c:390 msgid "On Edges:" -msgstr "" +msgstr "Reunoilla:" #: plug-ins/common/displace.c:396 plug-ins/common/edge.c:729 #: plug-ins/common/ripple.c:561 plug-ins/common/waves.c:274 msgid "_Smear" -msgstr "" +msgstr "_Sotke" #: plug-ins/common/displace.c:398 plug-ins/common/edge.c:742 #: plug-ins/common/fractaltrace.c:735 plug-ins/common/newsprint.c:408 #: plug-ins/common/ripple.c:562 msgid "_Black" -msgstr "" +msgstr "_Musta" #: plug-ins/common/dog.c:139 -#, fuzzy msgid "Difference of Gaussians..." -msgstr "RLE Gauss-sumennus" +msgstr "Gaussilaisten erotus..." -#: plug-ins/common/dog.c:222 plug-ins/common/dog.c:273 -#, fuzzy +#: plug-ins/common/dog.c:227 plug-ins/common/dog.c:274 msgid "DoG Edge Detect" -msgstr "Reunan tunnistus" +msgstr "Reunan tunnistus gaussilaisten erotuksella" -#: plug-ins/common/dog.c:294 -#, fuzzy +#: plug-ins/common/dog.c:295 msgid "Smoothing parameters" -msgstr "Kopioi parametrit" +msgstr "Pehmennysparametrit" -#: plug-ins/common/dog.c:308 -#, fuzzy +#: plug-ins/common/dog.c:309 msgid "_Radius 1:" -msgstr "Säde:" +msgstr "Säde _1:" -#: plug-ins/common/dog.c:312 -#, fuzzy +#: plug-ins/common/dog.c:313 msgid "R_adius 2:" -msgstr "Säde:" +msgstr "Säde _2:" -#: plug-ins/common/dog.c:324 plug-ins/common/normalize.c:88 -#, fuzzy +#: plug-ins/common/dog.c:325 plug-ins/common/normalize.c:88 msgid "_Normalize" -msgstr "Normaali" +msgstr "_Normalisoi" -#: plug-ins/common/dog.c:335 plug-ins/gimpressionist/paper.c:149 -#, fuzzy +#: plug-ins/common/dog.c:336 plug-ins/gimpressionist/paper.c:149 msgid "_Invert" msgstr "Käänteinen" #: plug-ins/common/edge.c:162 msgid "_Edge..." -msgstr "" +msgstr "_Reunat..." #: plug-ins/common/edge.c:234 msgid "Edge Detection..." @@ -3464,53 +3285,47 @@ #: plug-ins/common/edge.c:675 msgid "Sobel" -msgstr "" +msgstr "Sobel" #: plug-ins/common/edge.c:676 -#, fuzzy msgid "Prewitt" -msgstr "pistemäinen" +msgstr "Prewitt" #: plug-ins/common/edge.c:677 plug-ins/common/sinus.c:897 msgid "Gradient" -msgstr "" +msgstr "Väriliuku" #: plug-ins/common/edge.c:678 msgid "Roberts" -msgstr "" +msgstr "_Roberts" #: plug-ins/common/edge.c:679 -#, fuzzy msgid "Differential" msgstr "Differentiaali" #: plug-ins/common/edge.c:680 -#, fuzzy msgid "Laplace" -msgstr "Korvaa" +msgstr "Laplace" #: plug-ins/common/edge.c:689 -#, fuzzy msgid "_Algorithm:" -msgstr "Algoritmi" +msgstr "_Algoritmi:" #: plug-ins/common/edge.c:697 -#, fuzzy msgid "A_mount:" -msgstr "Ympäristö:" +msgstr "_Määrä:" #: plug-ins/common/emboss.c:133 -#, fuzzy msgid "_Emboss..." -msgstr "Tietoja" +msgstr "" -#: plug-ins/common/emboss.c:374 plug-ins/common/emboss.c:439 +#: plug-ins/common/emboss.c:376 plug-ins/common/emboss.c:439 msgid "Emboss" msgstr "" #: plug-ins/common/emboss.c:460 msgid "Function" -msgstr "" +msgstr "Funktio" #: plug-ins/common/emboss.c:464 msgid "_Bumpmap" @@ -3525,11 +3340,10 @@ msgstr "" #: plug-ins/common/engrave.c:108 -#, fuzzy msgid "En_grave..." msgstr "Kaiverran..." -#: plug-ins/common/engrave.c:181 +#: plug-ins/common/engrave.c:182 msgid "Engraving..." msgstr "Kaiverran..." @@ -3544,17 +3358,15 @@ #: plug-ins/imagemap/imap_cmd_guides.c:177 #: plug-ins/imagemap/imap_rectangle.c:410 msgid "_Height:" -msgstr "Korkeus:" +msgstr "_Korkeus:" #: plug-ins/common/engrave.c:249 -#, fuzzy msgid "_Limit line width" msgstr "Rajoita viivan leveys" #: plug-ins/common/exchange.c:133 -#, fuzzy msgid "_Color Exchange..." -msgstr "Värin vaihto..." +msgstr "_Värin vaihto..." #: plug-ins/common/exchange.c:218 msgid "Color Exchange..." @@ -3566,9 +3378,8 @@ msgstr "Värin vaihto" #: plug-ins/common/exchange.c:308 -#, fuzzy msgid "Middle-click inside preview to pick \"From Color\"" -msgstr "Esikatselu: Valitse vaihdettava väri" +msgstr "Käytä keskinäppäintä esikatselussa valitaksesi lähtövärin" #: plug-ins/common/exchange.c:346 msgid "To Color" @@ -3587,29 +3398,24 @@ msgstr "Värin vaihto: väristä" #: plug-ins/common/exchange.c:423 -#, fuzzy msgid "R_ed threshold:" -msgstr "Punaisen kynnysarvo:" +msgstr "_Punaisen kynnysarvo:" #: plug-ins/common/exchange.c:484 -#, fuzzy msgid "G_reen threshold:" -msgstr "Vihreän kynnysarvo:" +msgstr "_Vihreän kynnysarvo:" #: plug-ins/common/exchange.c:545 -#, fuzzy msgid "B_lue threshold:" -msgstr "Sinisen kynnysarvo:" +msgstr "_Sinisen kynnysarvo:" #: plug-ins/common/exchange.c:573 -#, fuzzy msgid "Lock _thresholds" -msgstr "Lukitse kynnysarvot" +msgstr "_Lukitse kynnysarvot" #: plug-ins/common/film.c:240 -#, fuzzy msgid "_Film..." -msgstr "Filmi" +msgstr "_Filmi..." #: plug-ins/common/film.c:325 msgid "Composing Images..." @@ -3646,7 +3452,6 @@ #. Keep maximum image height #: plug-ins/common/film.c:1185 -#, fuzzy msgid "_Fit height to images" msgstr "Sovita korkeus kuviin" @@ -3666,9 +3471,8 @@ msgstr "Numerointi" #: plug-ins/common/film.c:1253 -#, fuzzy msgid "Start _index:" -msgstr "_Alku:" +msgstr "_Alkuindeksi:" #: plug-ins/common/film.c:1267 msgid "_Font:" @@ -3680,67 +3484,57 @@ msgstr "Valitse numeron väri" #: plug-ins/common/film.c:1287 -#, fuzzy msgid "At _bottom" msgstr "Alhaalla" #: plug-ins/common/film.c:1288 -#, fuzzy msgid "At _top" msgstr "Ylhäällä" #. ** The right frame keeps the image selection ** #: plug-ins/common/film.c:1301 msgid "Image Selection" -msgstr "" +msgstr "Kuvan valinta" #: plug-ins/common/film.c:1329 msgid "All Values are Fractions of the Film Height" -msgstr "" +msgstr "Kaikki arvot ovat osia filmin korkeudesta" #: plug-ins/common/film.c:1332 msgid "Ad_vanced" msgstr "Lisäasetukset" #: plug-ins/common/film.c:1351 -#, fuzzy msgid "Image _height:" msgstr "Kuvan korkeus" #: plug-ins/common/film.c:1362 -#, fuzzy msgid "Image spac_ing:" msgstr "Kuvan välistys" #: plug-ins/common/film.c:1373 -#, fuzzy msgid "_Hole offset:" msgstr "Reiän siirtymä:" #: plug-ins/common/film.c:1384 -#, fuzzy msgid "Ho_le width:" msgstr "Reiän leveys:" #: plug-ins/common/film.c:1395 -#, fuzzy msgid "Hol_e height:" msgstr "Reiän korkeus:" #: plug-ins/common/film.c:1406 -#, fuzzy msgid "Hole sp_acing:" msgstr "Reiän välistys:" #: plug-ins/common/film.c:1417 -#, fuzzy msgid "_Number height:" msgstr "Numeron korkeus:" #: plug-ins/common/flarefx.c:196 -#, fuzzy msgid "_FlareFX..." -msgstr "Heijastus" +msgstr "_Heijastus..." #: plug-ins/common/flarefx.c:271 msgid "Render Flare..." @@ -3751,40 +3545,37 @@ msgstr "Heijastus" #: plug-ins/common/flarefx.c:741 -#, fuzzy msgid "Center of Flare Effect" msgstr "Heijastuksen keskus" #: plug-ins/common/flarefx.c:777 -#, fuzzy msgid "_Show cursor" msgstr "_Näytä osoitin" #: plug-ins/common/fp.c:224 msgid "Darker:" -msgstr "" +msgstr "Tummempi:" #: plug-ins/common/fp.c:225 msgid "Lighter:" -msgstr "" +msgstr "Vaaleampi:" #: plug-ins/common/fp.c:227 msgid "More Sat:" -msgstr "" +msgstr "Lisää kylläisyyttä:" #: plug-ins/common/fp.c:228 msgid "Less Sat:" -msgstr "" +msgstr "Vähemmän kylläisyyttä:" #. All the previews #: plug-ins/common/fp.c:230 plug-ins/common/fp.c:477 msgid "Current:" -msgstr "" +msgstr "Nykyinen:" #: plug-ins/common/fp.c:321 -#, fuzzy msgid "_Filter Pack..." -msgstr "Lomituksen poisto..." +msgstr "_Filter Pack..." #: plug-ins/common/fp.c:361 msgid "Convert the image to RGB first!" @@ -3792,19 +3583,19 @@ #: plug-ins/common/fp.c:366 msgid "Applying the Filter Pack..." -msgstr "" +msgstr "Ajetaan Filter Pack..." #: plug-ins/common/fp.c:474 msgid "Before and After" -msgstr "" +msgstr "Ennen ja jälkeen" #: plug-ins/common/fp.c:481 msgid "Original:" -msgstr "" +msgstr "Alkuperäinen:" #: plug-ins/common/fp.c:540 msgid "Hue Variations" -msgstr "" +msgstr "Sävyvaihtelut" #: plug-ins/common/fp.c:594 msgid "Roughness" @@ -3816,7 +3607,7 @@ #: plug-ins/common/fp.c:641 msgid "Sha_dows" -msgstr "" +msgstr "Varjot" #: plug-ins/common/fp.c:642 msgid "_Midtones" @@ -3832,7 +3623,7 @@ #: plug-ins/common/fp.c:667 plug-ins/common/lic.c:670 msgid "_Saturation" -msgstr "Saturaatio" +msgstr "_Saturaatio" #: plug-ins/common/fp.c:675 msgid "A_dvanced" @@ -3852,19 +3643,19 @@ #: plug-ins/common/fp.c:796 msgid "H_ue" -msgstr "Sävy" +msgstr "S_ävy" #: plug-ins/common/fp.c:797 msgid "Satu_ration" -msgstr "Saturaatio" +msgstr "_Saturaatio" #: plug-ins/common/fp.c:798 msgid "V_alue" -msgstr "Arvo" +msgstr "_Arvo" #: plug-ins/common/fp.c:824 msgid "Show" -msgstr "" +msgstr "Näytä" #: plug-ins/common/fp.c:829 msgid "_Entire Image" @@ -3911,9 +3702,8 @@ msgstr "" #: plug-ins/common/fractaltrace.c:126 -#, fuzzy msgid "_Fractal Trace..." -msgstr "Fraktaali" +msgstr "_Fraktaali..." #: plug-ins/common/fractaltrace.c:466 plug-ins/common/fractaltrace.c:693 msgid "Fractal Trace" @@ -3953,52 +3743,47 @@ msgstr "Y_2:" #: plug-ins/common/gauss.c:157 -#, fuzzy msgid "_Gaussian Blur..." -msgstr "/Filters/Blur/Gauss-sumennus (_IIR)..." +msgstr "Gauss-sumennus..." -#: plug-ins/common/gauss.c:407 -#, fuzzy +#: plug-ins/common/gauss.c:413 msgid "Gaussian Blur..." -msgstr "/Filters/Blur/Gauss-sumennus (_IIR)..." +msgstr "Gauss-sumennus..." -#: plug-ins/common/gauss.c:460 -#, fuzzy +#: plug-ins/common/gauss.c:461 msgid "Gaussian Blur" -msgstr "RLE Gauss-sumennus" +msgstr "Gauss-sumennus" #. parameter settings -#: plug-ins/common/gauss.c:483 +#: plug-ins/common/gauss.c:484 msgid "Blur Radius" msgstr "Säde:" -#: plug-ins/common/gauss.c:497 plug-ins/common/jigsaw.c:2456 -#: plug-ins/common/spread.c:378 +#: plug-ins/common/gauss.c:498 plug-ins/common/jigsaw.c:2456 +#: plug-ins/common/spread.c:379 msgid "_Horizontal:" msgstr "_Vaakasuora:" -#: plug-ins/common/gauss.c:501 plug-ins/common/jigsaw.c:2473 -#: plug-ins/common/spread.c:382 +#: plug-ins/common/gauss.c:502 plug-ins/common/jigsaw.c:2473 +#: plug-ins/common/spread.c:383 msgid "_Vertical:" msgstr "_Pystysuora:" -#: plug-ins/common/gauss.c:524 -#, fuzzy +#: plug-ins/common/gauss.c:525 msgid "Blur Method" msgstr "Sumennustyyppi" -#: plug-ins/common/gauss.c:528 +#: plug-ins/common/gauss.c:529 msgid "_IIR" -msgstr "" +msgstr "_IIR" -#: plug-ins/common/gauss.c:529 -#, fuzzy +#: plug-ins/common/gauss.c:530 msgid "_RLE" msgstr "RLE" #: plug-ins/common/gbr.c:130 plug-ins/common/gbr.c:151 msgid "GIMP brush" -msgstr "" +msgstr "GIMP sivellin" #: plug-ins/common/gbr.c:369 plug-ins/common/gbr.c:381 msgid "Unsupported brush format" @@ -4007,12 +3792,12 @@ #: plug-ins/common/gbr.c:392 #, c-format msgid "Error in GIMP brush file '%s'" -msgstr "Virhe sivellintiedostossa '%s'" +msgstr "Virhe sivellintiedostossa \"%s\"" #: plug-ins/common/gbr.c:400 #, c-format msgid "Invalid UTF-8 string in brush file '%s'." -msgstr "Epäkelpo unicode-merkkijono sivellintiedostossa '%s'." +msgstr "Epäkelpo unicode-merkkijono sivellintiedostossa \"%s\"." #: plug-ins/common/gbr.c:406 plug-ins/common/gih.c:497 #: plug-ins/common/gih.c:1154 plug-ins/gflare/gflare.c:2991 @@ -4025,7 +3810,7 @@ #: plug-ins/common/gbr.c:663 msgid "Save as Brush" -msgstr "Talleta siveltimenä" +msgstr "Tallenna siveltimenä" #. attach labels #: plug-ins/common/gbr.c:683 plug-ins/common/grid.c:769 @@ -4039,14 +3824,13 @@ #: plug-ins/common/gee.c:94 msgid "Gee-_Slime" -msgstr "" +msgstr "Huihai-lima" #: plug-ins/common/gee.c:152 msgid "GEE-SLIME" -msgstr "" +msgstr "Huihai-lima" #: plug-ins/common/gee.c:158 plug-ins/common/gee_zoom.c:191 -#, fuzzy msgid "Thank you for choosing GIMP" msgstr "*** Kiitos kun valitsit GIMPin! ***" @@ -4057,9 +3841,8 @@ msgstr "Adam D. Moss / adam@gimp.org / adam@foxbox.org / 1998-2000" #: plug-ins/common/gee_zoom.c:124 -#, fuzzy msgid "Gee-_Zoom" -msgstr "_Zoom:" +msgstr "Huihai-Zoom" #: plug-ins/common/gee_zoom.c:185 msgid "GEE-ZOOM" @@ -4072,9 +3855,8 @@ msgstr "Adam D. Moss / adam@gimp.org / adam@foxbox.org / 1998-2000" #: plug-ins/common/gif.c:402 plug-ins/common/gifload.c:143 -#, fuzzy msgid "GIF image" -msgstr "GIF varoitus" +msgstr "GIF-kuva" #: plug-ins/common/gif.c:687 msgid "Couldn't simply reduce colors further. Saving as opaque." @@ -4084,7 +3866,7 @@ msgid "" "The GIF format only supports comments in 7bit ASCII encoding. No comment is " "saved." -msgstr "GIF muodon kommentit tukevat vain ASCIIta. Kommenttia ei tallenneta." +msgstr "GIF-muodon kommentit tukevat vain ASCIIta. Kommenttia ei tallenneta." #: plug-ins/common/gif.c:970 msgid "" @@ -4118,10 +3900,14 @@ "You may choose whether to crop all of the layers to\n" "the image borders, or cancel this save." msgstr "" +"Kuvassa jota tallennat on taso joka ulottuu kuvan reunojen\n" +"ulkopuolelle. GIF-tiedostomuoto ei tue tätä.\n" +"\n" +"Voit rajata kuvan tasot kuvan rajoihin tai perua tallennuksen." #: plug-ins/common/gif.c:1254 msgid "Save as GIF" -msgstr "Talleta GIF" +msgstr "Tallenna GIF" #. regular gif parameter settings #: plug-ins/common/gif.c:1269 @@ -4129,12 +3915,10 @@ msgstr "GIF asetukset" #: plug-ins/common/gif.c:1275 -#, fuzzy msgid "_Interlace" msgstr "Lomitus" #: plug-ins/common/gif.c:1291 -#, fuzzy msgid "_GIF comment:" msgstr "GIF kommentti:" @@ -4144,12 +3928,10 @@ msgstr "Animaatioasetukset" #: plug-ins/common/gif.c:1354 -#, fuzzy msgid "_Loop forever" msgstr "Ikuinen silmukka" #: plug-ins/common/gif.c:1367 -#, fuzzy msgid "_Delay between frames where unspecified:" msgstr "Tauko ruutujen välissä:" @@ -4158,22 +3940,18 @@ msgstr "millisekuntia" #: plug-ins/common/gif.c:1390 -#, fuzzy msgid "Frame disposal where unspecified: " msgstr "Ruutujen poistotapa:" #: plug-ins/common/gif.c:1394 -#, fuzzy msgid "I don't care" msgstr "Oletus" #: plug-ins/common/gif.c:1396 -#, fuzzy msgid "Cumulative layers (combine)" msgstr "Kumulatiiviset tasot (yhdistä)" #: plug-ins/common/gif.c:1398 -#, fuzzy msgid "One frame per layer (replace)" msgstr "Ruutu per taso (korvaa)" @@ -4219,7 +3997,7 @@ #: plug-ins/common/gih.c:205 plug-ins/common/gih.c:226 msgid "GIMP brush (animated)" -msgstr "" +msgstr "GIMP sivellin (animoitu)" #: plug-ins/common/gih.c:319 #, c-format @@ -4243,22 +4021,20 @@ msgstr "" #: plug-ins/common/gih.c:890 -#, fuzzy msgid "Spacing (percent):" -msgstr "Välistys:" +msgstr "Välistys (prosenttia):" #: plug-ins/common/gih.c:957 msgid "Pixels" -msgstr "" +msgstr "Pikseliä" #: plug-ins/common/gih.c:962 msgid "Cell size:" -msgstr "" +msgstr "Solun koko:" #: plug-ins/common/gih.c:974 -#, fuzzy msgid "Number of cells:" -msgstr "Värien lukumäärä:" +msgstr "Solujen lukumäärä:" #: plug-ins/common/gih.c:999 msgid " Rows of " @@ -4282,92 +4058,86 @@ #: plug-ins/common/gih.c:1033 msgid "Dimension:" -msgstr "" +msgstr "Koko:" #: plug-ins/common/gih.c:1110 msgid "Ranks:" msgstr "" #: plug-ins/common/glasstile.c:129 -#, fuzzy msgid "_Glass Tile..." -msgstr "Lasitiilet..." +msgstr "_Lasitiilet..." -#: plug-ins/common/glasstile.c:208 +#: plug-ins/common/glasstile.c:209 msgid "Glass Tile..." msgstr "Lasitiilet..." -#: plug-ins/common/glasstile.c:251 +#: plug-ins/common/glasstile.c:250 msgid "Glass Tile" msgstr "Lasitiilet" -#: plug-ins/common/glasstile.c:282 -#, fuzzy +#: plug-ins/common/glasstile.c:281 msgid "Tile _width:" msgstr "Tiilen _leveys:" -#: plug-ins/common/glasstile.c:296 plug-ins/common/mosaic.c:621 -#, fuzzy +#: plug-ins/common/glasstile.c:295 plug-ins/common/mosaic.c:621 msgid "Tile _height:" msgstr "Tiilen _korkeus:" #: plug-ins/common/gqbist.c:415 -#, fuzzy msgid "_Qbist..." -msgstr "Tietoja" +msgstr "_Qbisti ..." #: plug-ins/common/gqbist.c:514 msgid "Qbist ..." -msgstr "" +msgstr "Qbisti ..." #: plug-ins/common/gqbist.c:695 -#, fuzzy msgid "Load QBE file" -msgstr "Lataa Liekki" +msgstr "Lataa QBE tiedosto" #: plug-ins/common/gqbist.c:733 msgid "Save (middle transform) as QBE file" -msgstr "" +msgstr "Tallenna QBE tiedosto" #: plug-ins/common/gqbist.c:781 msgid "G-Qbist" -msgstr "" +msgstr "G-Qbisti" #: plug-ins/common/gradmap.c:86 -#, fuzzy msgid "_Gradient Map" -msgstr "Gradientti" +msgstr "_Gradientti" #: plug-ins/common/gradmap.c:124 msgid "Gradient Map..." -msgstr "" +msgstr "Gradientti..." #: plug-ins/common/grid.c:149 msgid "_Grid..." -msgstr "" +msgstr "_Ristikko..." #: plug-ins/common/grid.c:242 msgid "Drawing Grid..." -msgstr "" +msgstr "Piirretään ristikko..." #: plug-ins/common/grid.c:621 plug-ins/gfig/gfig-dialog.c:1355 #: plug-ins/imagemap/imap_menu.c:385 plug-ins/imagemap/imap_popup.c:153 #: plug-ins/imagemap/imap_toolbar.c:163 msgid "Grid" -msgstr "" +msgstr "Ristikko" #. attach labels #: plug-ins/common/grid.c:696 msgid "Horizontal" -msgstr "" +msgstr "Vaakasuora" #: plug-ins/common/grid.c:698 msgid "Vertical" -msgstr "" +msgstr "Pystysuora" #: plug-ins/common/grid.c:700 msgid "Intersection" -msgstr "" +msgstr "Risteykset" #. Width and Height #: plug-ins/common/grid.c:703 plug-ins/common/svg.c:761 @@ -4379,28 +4149,28 @@ #. attach labels #: plug-ins/common/grid.c:836 msgid "Offset:" -msgstr "" +msgstr "Siirtymä:" #. attach color selectors #: plug-ins/common/grid.c:875 msgid "Horizontal Color" -msgstr "" +msgstr "Vaakasuora väri" #: plug-ins/common/grid.c:893 msgid "Vertical Color" -msgstr "" +msgstr "Pystysuora väri" #: plug-ins/common/grid.c:911 msgid "Intersection Color" -msgstr "" +msgstr "Risteyksien väri" #: plug-ins/common/gtm.c:154 msgid "HTML table" -msgstr "" +msgstr "HTML taulukko" #: plug-ins/common/gtm.c:399 msgid "GIMP Table Magic" -msgstr "" +msgstr "GIMP HTML taulukko" #: plug-ins/common/gtm.c:419 msgid "Warning" @@ -4422,9 +4192,8 @@ msgstr "HTML sivun asetukset" #: plug-ins/common/gtm.c:446 -#, fuzzy msgid "_Generate full HTML document" -msgstr "Luo kokonainen HTML dokumentti" +msgstr "_Luo kokonainen HTML dokumentti" #: plug-ins/common/gtm.c:452 msgid "" @@ -4440,9 +4209,8 @@ msgstr "Taulukon luonnin asetukset" #: plug-ins/common/gtm.c:473 -#, fuzzy msgid "_Use cellspan" -msgstr "Käytä CELLSPANia" +msgstr "Käytä _CELLSPAN:ia" #: plug-ins/common/gtm.c:479 msgid "" @@ -4454,7 +4222,7 @@ #: plug-ins/common/gtm.c:488 msgid "Co_mpress TD tags" -msgstr "Pakkaa TD elementit." +msgstr "P_akkaa TD elementit." #: plug-ins/common/gtm.c:494 msgid "" @@ -4465,7 +4233,7 @@ #: plug-ins/common/gtm.c:504 msgid "C_aption" -msgstr "Nimiö" +msgstr "_Nimiö" #: plug-ins/common/gtm.c:510 msgid "Check if you would like to have the table captioned." @@ -4476,9 +4244,8 @@ msgstr "Taulukon nimi." #: plug-ins/common/gtm.c:538 -#, fuzzy msgid "C_ell content:" -msgstr "Solun sisältö:" +msgstr "_Solun sisältö:" #: plug-ins/common/gtm.c:542 msgid "The text to go into each cell." @@ -4491,11 +4258,11 @@ #: plug-ins/common/gtm.c:563 msgid "_Border:" -msgstr "Reuna:" +msgstr "_Reuna:" #: plug-ins/common/gtm.c:567 msgid "The number of pixels in the table border." -msgstr "Pikseleitä taulukon reunassa" +msgstr "Pikseleitä taulukon reunassa." #: plug-ins/common/gtm.c:582 msgid "The width for each table cell. Can be a number or a percent." @@ -4506,27 +4273,24 @@ msgstr "Solun korkeus (pikseliä tai prosentti)" #: plug-ins/common/gtm.c:609 -#, fuzzy msgid "Cell-_padding:" -msgstr "Solun reunustus" +msgstr "Solun _reunustus:" #: plug-ins/common/gtm.c:613 msgid "The amount of cellpadding." -msgstr "Solun reunustuksen leveys." +msgstr "Solujen reunustuksen leveys." #: plug-ins/common/gtm.c:622 -#, fuzzy msgid "Cell-_spacing:" -msgstr "Solun reunustus" +msgstr "Solujen _väli:" #: plug-ins/common/gtm.c:626 msgid "The amount of cellspacing." -msgstr "Solun reunustuksen leveys." +msgstr "Solujen välin leveys." #: plug-ins/common/guillotine.c:72 -#, fuzzy msgid "_Guillotine" -msgstr "Giljotiini..." +msgstr "_Giljotiini" #: plug-ins/common/guillotine.c:104 msgid "Guillotine..." @@ -4534,12 +4298,11 @@ #: plug-ins/common/header.c:75 msgid "C source code header" -msgstr "" +msgstr "C-lähdekoodi" #: plug-ins/common/hot.c:217 -#, fuzzy msgid "_Hot..." -msgstr "Kuuma..." +msgstr "_Kuuma..." #: plug-ins/common/hot.c:379 msgid "Hot..." @@ -4550,7 +4313,6 @@ msgstr "Kuuma" #: plug-ins/common/hot.c:600 -#, fuzzy msgid "Create _New layer" msgstr "Luo _uusi taso" @@ -4572,33 +4334,31 @@ #: plug-ins/common/illusion.c:101 msgid "_Illusion..." -msgstr "" +msgstr "_Illuusio..." #: plug-ins/common/illusion.c:173 msgid "Illusion..." -msgstr "" +msgstr "Illuusio..." #: plug-ins/common/illusion.c:394 msgid "Illusion" -msgstr "" +msgstr "Illuusio" #: plug-ins/common/illusion.c:423 -#, fuzzy msgid "_Divisions:" -msgstr "Mitat:" +msgstr "_Jakoja:" #: plug-ins/common/illusion.c:433 msgid "Mode _1" -msgstr "" +msgstr "Tila _1" #: plug-ins/common/illusion.c:448 msgid "Mode _2" -msgstr "" +msgstr "Tila _2" #: plug-ins/common/iwarp.c:254 -#, fuzzy msgid "_IWarp..." -msgstr "Warping..." +msgstr "_IWarp..." #: plug-ins/common/iwarp.c:688 msgid "Warping..." @@ -4610,7 +4370,6 @@ msgstr "Käsitellään ruutu %d..." #: plug-ins/common/iwarp.c:806 -#, fuzzy msgid "Ping pong" msgstr "Ping Pong" @@ -4663,12 +4422,10 @@ msgstr "Kierrä myötäpäivään" #: plug-ins/common/iwarp.c:1059 -#, fuzzy msgid "_Deform radius:" msgstr "Muodonmuutoksen säde:" #: plug-ins/common/iwarp.c:1069 -#, fuzzy msgid "D_eform amount:" msgstr "Muodonmuutoksen määrä:" @@ -4677,12 +4434,10 @@ msgstr "Bilineaarinen" #: plug-ins/common/iwarp.c:1092 -#, fuzzy msgid "Adaptive s_upersample" msgstr "Ylinäytteistys" #: plug-ins/common/iwarp.c:1112 -#, fuzzy msgid "Ma_x depth:" msgstr "Max syvyys:" @@ -4700,9 +4455,8 @@ msgstr "IWarp" #: plug-ins/common/jigsaw.c:364 -#, fuzzy msgid "_Jigsaw..." -msgstr "Palapeli" +msgstr "_Palapeli..." #: plug-ins/common/jigsaw.c:418 msgid "Assembling Jigsaw..." @@ -4729,7 +4483,6 @@ msgstr "Särmää reunat" #: plug-ins/common/jigsaw.c:2500 -#, fuzzy msgid "_Bevel width:" msgstr "Särmäyksen leveys:" @@ -4767,9 +4520,8 @@ msgstr "Joka palalla on käyrät reunat" #: plug-ins/common/jpeg.c:372 plug-ins/common/jpeg.c:410 -#, fuzzy msgid "JPEG image" -msgstr "JPEG esikatselu" +msgstr "JPEG-kuva" #: plug-ins/common/jpeg.c:516 msgid "Export Preview" @@ -4777,58 +4529,50 @@ #: plug-ins/common/jpeg.c:880 msgid "EXIF data will be ignored." -msgstr "" +msgstr "EXIF-tiedot jätetään huomiotta." #: plug-ins/common/jpeg.c:1094 msgid "JPEG preview" msgstr "JPEG esikatselu" #: plug-ins/common/jpeg.c:1356 -#, fuzzy, c-format +#, c-format msgid "File size: %02.01f kB" -msgstr "Koko: %ld tavua (%02.01f kB)" +msgstr "Koko: %02.01f kB" #: plug-ins/common/jpeg.c:1809 plug-ins/common/jpeg.c:1909 -#, fuzzy msgid "File size: unknown" msgstr "Koko: tuntematon" #: plug-ins/common/jpeg.c:1874 msgid "Save as JPEG" -msgstr "Talletetaan JPEG:nä" +msgstr "Talletetaan JPEG" #: plug-ins/common/jpeg.c:1895 -#, fuzzy msgid "_Quality:" msgstr "Laatu:" #: plug-ins/common/jpeg.c:1899 -#, fuzzy msgid "JPEG quality parameter" -msgstr "Parametreja" +msgstr "JPEG parametrit" #: plug-ins/common/jpeg.c:1918 -#, fuzzy msgid "Show _Preview in image window" -msgstr "Esikatselu (kuva-ikkunassa)" +msgstr "Esikatselu kuva-ikkunassa" #: plug-ins/common/jpeg.c:1931 -#, fuzzy msgid "_Advanced Options" -msgstr "Talletus asetukset" +msgstr "Kehittyneet asetukset" #: plug-ins/common/jpeg.c:1959 -#, fuzzy msgid "_Smoothing:" msgstr "Pehmennys:" #: plug-ins/common/jpeg.c:1972 -#, fuzzy msgid "Frequency (rows):" msgstr "Virheenkorjaus per riviä:" #: plug-ins/common/jpeg.c:1986 -#, fuzzy msgid "Use restart markers" msgstr "Edistynyt virheenkorjaus" @@ -4842,16 +4586,15 @@ #: plug-ins/common/jpeg.c:2034 msgid "Force baseline JPEG" -msgstr "" +msgstr "Pakota perustason JPEG" #: plug-ins/common/jpeg.c:2050 msgid "Save EXIF data" -msgstr "Talleta EXIF tiedot" +msgstr "Tallenna EXIF tiedot" #: plug-ins/common/jpeg.c:2064 -#, fuzzy msgid "Save thumbnail" -msgstr "Tallenna" +msgstr "Tallenna esikatselu" #. Subsampling #: plug-ins/common/jpeg.c:2078 @@ -4861,7 +4604,7 @@ #. DCT method #: plug-ins/common/jpeg.c:2105 msgid "DCT method:" -msgstr "" +msgstr "Kosinimuunnosmenetelmä:" #: plug-ins/common/jpeg.c:2111 msgid "Fast Integer" @@ -4877,48 +4620,48 @@ #: plug-ins/common/jpeg.c:2127 msgid "Comment" -msgstr "" +msgstr "Kommentti" #: plug-ins/common/jpeg.c:2280 -#, fuzzy, c-format +#, c-format msgid "Opening thumbnail for '%s'..." -msgstr "Ladataan '%s'..." +msgstr "Ladataan \"%s\":n esikatselu..." #: plug-ins/common/laplace.c:95 msgid "_Laplace" -msgstr "" +msgstr "_Laplace" #: plug-ins/common/laplace.c:228 msgid "Laplace..." -msgstr "" +msgstr "Laplace..." #: plug-ins/common/laplace.c:305 msgid "Cleanup..." -msgstr "" +msgstr "Siivotaan..." #: plug-ins/common/lic.c:571 msgid "Van Gogh (LIC)..." -msgstr "" +msgstr "Van Gogh (LIC)..." #: plug-ins/common/lic.c:646 msgid "Van Gogh (LIC)" -msgstr "" +msgstr "Van Gogh (LIC)" #: plug-ins/common/lic.c:664 msgid "Effect Channel" -msgstr "" +msgstr "Efektikanava" #: plug-ins/common/lic.c:671 msgid "_Brightness" -msgstr "" +msgstr "_Kirkkaus" #: plug-ins/common/lic.c:677 msgid "Effect Operator" -msgstr "" +msgstr "Efektioperaattori" #: plug-ins/common/lic.c:682 msgid "_Derivative" -msgstr "" +msgstr "_Derivaatta" #: plug-ins/common/lic.c:683 msgid "_Gradient" @@ -4926,56 +4669,49 @@ #: plug-ins/common/lic.c:689 msgid "Convolve" -msgstr "" +msgstr "Konvoluutio" #: plug-ins/common/lic.c:694 msgid "_With white noise" -msgstr "" +msgstr "Valkoinen kohina" #: plug-ins/common/lic.c:695 -#, fuzzy msgid "W_ith source image" -msgstr "Toista lähdekuva" +msgstr "Lähdekuva" #: plug-ins/common/lic.c:714 msgid "_Effect Image:" -msgstr "" +msgstr "_Efektikuva:" #: plug-ins/common/lic.c:725 -#, fuzzy msgid "_Filter length:" -msgstr "Pituus:" +msgstr "_Suodattimen pituus:" #: plug-ins/common/lic.c:734 msgid "_Noise magnitude:" -msgstr "" +msgstr "_Kohinan suuruus:" #: plug-ins/common/lic.c:743 -#, fuzzy msgid "In_tegration steps:" -msgstr "Mutaationopeus:" +msgstr "Integraatioaskelia:" #: plug-ins/common/lic.c:752 -#, fuzzy msgid "_Minimum value:" -msgstr "Minimikorkeus:" +msgstr "_Minimiarvo:" #: plug-ins/common/lic.c:761 -#, fuzzy msgid "M_aximum value:" -msgstr "Maksimikorkeus:" +msgstr "_Maksimiarvo:" #: plug-ins/common/lic.c:812 msgid "_Van Gogh (LIC)..." -msgstr "" +msgstr "_Van Gogh (LIC)..." #: plug-ins/common/mail.c:253 -#, fuzzy msgid "_Mail Image..." -msgstr "/File/Postita kuva..." +msgstr "_Postita kuva..." #: plug-ins/common/mail.c:474 -#, fuzzy msgid "Send as Mail" msgstr "Lähetä sähköpostina" @@ -5018,32 +4754,31 @@ #: plug-ins/common/mapcolor.c:113 msgid "First Source Color" -msgstr "" +msgstr "Ensimmäinen lähdeväri" #: plug-ins/common/mapcolor.c:114 msgid "Second Source Color" -msgstr "" +msgstr "Toinen lähdeväri" #: plug-ins/common/mapcolor.c:115 msgid "First Destination Color" -msgstr "" +msgstr "Ensimmäinen kohdeväri" #: plug-ins/common/mapcolor.c:116 msgid "Second Destination Color" -msgstr "" +msgstr "Toinen kohdeväri" #: plug-ins/common/mapcolor.c:154 msgid "Adjust _FG-BG" -msgstr "" +msgstr "Säädä edusta-tausta" #: plug-ins/common/mapcolor.c:172 -#, fuzzy msgid "Color Range _Mapping..." -msgstr "Värin vaihto..." +msgstr "_Värivälikuvaus..." #: plug-ins/common/mapcolor.c:219 plug-ins/common/mapcolor.c:507 msgid "Cannot operate on gray or indexed color images." -msgstr "Ei voi toimia harmaasävy tai indeksoiduilla kuvilla." +msgstr "Ei voi toimia harmaasävyisillä tai indeksoiduilla kuvilla." #: plug-ins/common/mapcolor.c:240 msgid "Adjusting Foreground/Background..." @@ -5076,7 +4811,7 @@ #: plug-ins/common/max_rgb.c:145 msgid "Can only operate on RGB drawables." -msgstr "" +msgstr "Toimii vain RGB piirtotasoilla." #: plug-ins/common/max_rgb.c:245 msgid "Max RGB..." @@ -5095,9 +4830,8 @@ msgstr "" #: plug-ins/common/mblur.c:176 -#, fuzzy msgid "_Motion Blur..." -msgstr "Liike-epäterävyys..." +msgstr "_Liike-epäterävyys..." #: plug-ins/common/mblur.c:796 msgid "Motion Blurring..." @@ -5121,7 +4855,7 @@ #: plug-ins/common/mblur.c:921 msgid "_Zoom" -msgstr "" +msgstr "_Suurennus" #: plug-ins/common/mblur.c:930 msgid "Blur Parameters" @@ -5132,7 +4866,6 @@ msgstr "Kulma:" #: plug-ins/common/mblur.c:969 -#, fuzzy msgid "Blur Center" msgstr "Keskusta" @@ -5144,7 +4877,7 @@ #: plug-ins/common/mng.c:1309 msgid "Save as MNG" -msgstr "Talleta MNG" +msgstr "Tallenna MNG" #: plug-ins/common/mng.c:1322 msgid "MNG Options" @@ -5155,22 +4888,18 @@ msgstr "Lomitus" #: plug-ins/common/mng.c:1340 -#, fuzzy msgid "Save background color" -msgstr "Tausta" +msgstr "Tallenna taustaväri" #: plug-ins/common/mng.c:1351 -#, fuzzy msgid "Save gamma" -msgstr "Talleta gamma" +msgstr "Tallenna gamma" #: plug-ins/common/mng.c:1361 -#, fuzzy msgid "Save resolution" msgstr "Talleta resoluutio" #: plug-ins/common/mng.c:1372 -#, fuzzy msgid "Save creation time" msgstr "Talleta aikaleima" @@ -5183,12 +4912,10 @@ msgstr "JNG" #: plug-ins/common/mng.c:1395 -#, fuzzy msgid "PNG + delta PNG" msgstr "PNG + muutokset PNG:nä" #: plug-ins/common/mng.c:1396 -#, fuzzy msgid "JNG + delta PNG" msgstr "JNG + muutokset PNG:nä" @@ -5201,7 +4928,6 @@ msgstr "Kokonaan JNG" #: plug-ins/common/mng.c:1410 -#, fuzzy msgid "Default chunks type:" msgstr "Lohkojen tyyppi:" @@ -5214,31 +4940,26 @@ msgstr "Korvaa" #: plug-ins/common/mng.c:1425 -#, fuzzy msgid "Default frame disposal:" msgstr "Ruutujen korvaus:" #: plug-ins/common/mng.c:1437 -#, fuzzy msgid "PNG compression level:" -msgstr "PNG pakkaustaso" +msgstr "PNG pakkaustaso:" #: plug-ins/common/mng.c:1445 plug-ins/common/png.c:1703 msgid "Choose a high compression level for small file size" msgstr "Suuri pakkaustaso tarkoittaa pienempiä kuvia" #: plug-ins/common/mng.c:1459 -#, fuzzy msgid "JPEG compression quality:" msgstr "JPEG pakkauslaatu:" #: plug-ins/common/mng.c:1476 -#, fuzzy msgid "JPEG smoothing factor:" msgstr "JPEG pehmennystaso:" #: plug-ins/common/mng.c:1486 -#, fuzzy msgid "Animated MNG options" msgstr "Animoitu MNG asetukset" @@ -5247,19 +4968,16 @@ msgstr "Toisto" #: plug-ins/common/mng.c:1506 -#, fuzzy msgid "Default frame delay:" msgstr "Ruutujen väli:" #: plug-ins/common/mng.c:1584 -#, fuzzy msgid "MNG animation" -msgstr "Asetukset" +msgstr "MNG animaatio" #: plug-ins/common/mosaic.c:309 -#, fuzzy msgid "_Mosaic..." -msgstr "Mosaiikki" +msgstr "_Mosaiikki..." #. progress bar for gradient finding #: plug-ins/common/mosaic.c:435 @@ -5276,7 +4994,6 @@ msgstr "Mosaiikki" #: plug-ins/common/mosaic.c:544 -#, fuzzy msgid "Co_lor averaging" msgstr "Väritys" @@ -5306,7 +5023,6 @@ msgstr "Kuusikulmiot" #: plug-ins/common/mosaic.c:594 -#, fuzzy msgid "Oc_tagons & squares" msgstr "Kahdeksankulmiot ja neliöt" @@ -5316,27 +5032,22 @@ msgstr "Asetukset" #: plug-ins/common/mosaic.c:612 -#, fuzzy msgid "T_ile size:" msgstr "Ruudun koko:" #: plug-ins/common/mosaic.c:630 -#, fuzzy msgid "Til_e spacing:" -msgstr "Ruudun väli:" +msgstr "Ruutujen väli:" #: plug-ins/common/mosaic.c:639 -#, fuzzy msgid "Tile _neatness:" -msgstr "Uusi korkeus:" +msgstr "Ruudun _siisteys:" #: plug-ins/common/mosaic.c:649 -#, fuzzy msgid "Light _direction:" msgstr "Valon suunta:" #: plug-ins/common/mosaic.c:658 -#, fuzzy msgid "Color _variation:" msgstr "Värivaihtelu:" @@ -5345,23 +5056,20 @@ msgstr "" #: plug-ins/common/neon.c:135 -#, fuzzy msgid "_Neon..." -msgstr "Kuuma..." +msgstr "_Neon..." -#: plug-ins/common/neon.c:204 -#, fuzzy +#: plug-ins/common/neon.c:207 msgid "Neon..." -msgstr "Kuuma..." +msgstr "Neon..." -#: plug-ins/common/neon.c:698 -#, fuzzy +#: plug-ins/common/neon.c:697 msgid "Neon Detection" -msgstr "Reunan tunnistus" +msgstr "Neon-tunnistus" -#: plug-ins/common/neon.c:743 plug-ins/common/unsharp.c:707 +#: plug-ins/common/neon.c:742 plug-ins/common/unsharp.c:678 msgid "_Amount:" -msgstr "Määrä:" +msgstr "_Määrä:" #: plug-ins/common/newsprint.c:135 msgid "Round" @@ -5377,11 +5085,11 @@ #: plug-ins/common/newsprint.c:161 msgid "PS Square (Euclidean Dot)" -msgstr "" +msgstr "PS Neliö (Euklidinen piste)" #: plug-ins/common/newsprint.c:170 msgid "PS Diamond" -msgstr "" +msgstr "PS timantti" #: plug-ins/common/newsprint.c:342 msgid "_Grey" @@ -5397,7 +5105,7 @@ #: plug-ins/common/newsprint.c:392 msgid "Magen_ta" -msgstr "" +msgstr "Magen_ta" #: plug-ins/common/newsprint.c:400 msgid "_Yellow" @@ -5408,22 +5116,20 @@ msgstr "Voimakkuus" #: plug-ins/common/newsprint.c:537 -#, fuzzy msgid "Newsprin_t..." -msgstr "Uusi kirjoitin..." +msgstr "Sanomaleh_tipaino..." #: plug-ins/common/newsprint.c:638 msgid "Newsprint..." -msgstr "" +msgstr "Sanomalehtipaino..." #: plug-ins/common/newsprint.c:1042 -#, fuzzy msgid "_Spot function:" -msgstr "Delta funktio" +msgstr "Pistefunktio:" #: plug-ins/common/newsprint.c:1199 msgid "Newsprint" -msgstr "" +msgstr "Sanomalehtipaino" #. resolution settings #: plug-ins/common/newsprint.c:1243 @@ -5439,17 +5145,15 @@ msgstr "" #: plug-ins/common/newsprint.c:1289 -#, fuzzy msgid "C_ell size:" -msgstr "Koko" +msgstr "Solun koko:" #. screen settings #: plug-ins/common/newsprint.c:1302 plug-ins/gflare/gflare.c:562 msgid "Screen" -msgstr "" +msgstr "Näyttö" #: plug-ins/common/newsprint.c:1321 -#, fuzzy msgid "B_lack pullout (%):" msgstr "Mustan poisto (%):" @@ -5467,104 +5171,97 @@ #: plug-ins/common/newsprint.c:1381 msgid "I_ntensity" -msgstr "" +msgstr "Intensiteetti" #: plug-ins/common/newsprint.c:1406 -#, fuzzy msgid "_Lock channels" -msgstr "Kanavat" +msgstr "_Lukitse kanavat" #: plug-ins/common/newsprint.c:1419 -#, fuzzy msgid "_Factory defaults" -msgstr "_Talleta asetukset" +msgstr "_Oletusasetukset" #. anti-alias control #: plug-ins/common/newsprint.c:1445 plug-ins/gfig/gfig-dialog.c:1258 msgid "Antialiasing" -msgstr "" +msgstr "Antialiasointi" #: plug-ins/common/newsprint.c:1453 msgid "O_versample:" -msgstr "" +msgstr "Ylinäytteistys:" #: plug-ins/common/nlfilt.c:126 -#, fuzzy msgid "_NL Filter..." -msgstr "Uusi kirjoitin..." +msgstr "_NL suodatin..." #: plug-ins/common/nlfilt.c:954 msgid "NL Filter..." -msgstr "" +msgstr "NL suodatin..." #: plug-ins/common/nlfilt.c:1017 msgid "NL Filter" -msgstr "" +msgstr "NL suodatin" #: plug-ins/common/nlfilt.c:1038 msgid "Filter" -msgstr "" +msgstr "Suodatin" #: plug-ins/common/nlfilt.c:1042 msgid "_Alpha trimmed mean" -msgstr "" +msgstr "Alfasäädetty keskiarvo" #: plug-ins/common/nlfilt.c:1044 -#, fuzzy msgid "Op_timal estimation" -msgstr "Asento" +msgstr "Optimaalinen arvio" #: plug-ins/common/nlfilt.c:1046 msgid "_Edge enhancement" -msgstr "" +msgstr "Reunan korostus" #: plug-ins/common/nlfilt.c:1071 msgid "A_lpha:" -msgstr "" +msgstr "A_lfa:" #: plug-ins/common/noisify.c:157 msgid "_Scatter RGB..." -msgstr "" +msgstr "Ha_jota RGB..." -#: plug-ins/common/noisify.c:284 +#: plug-ins/common/noisify.c:285 msgid "Adding Noise..." -msgstr "" +msgstr "Lisätään kohinaa..." #: plug-ins/common/noisify.c:451 -#, fuzzy msgid "Scatter RGB" -msgstr "Sironta:" +msgstr "Hajota RGB" #: plug-ins/common/noisify.c:477 -#, fuzzy msgid "Co_rrelated noise" -msgstr "Luo ellipsi" +msgstr "Korreloitu kohina" #: plug-ins/common/noisify.c:492 msgid "_Independent RGB" -msgstr "" +msgstr "_Itsenäinen RGB" #: plug-ins/common/noisify.c:516 plug-ins/common/noisify.c:520 msgid "_Gray:" -msgstr "" +msgstr "_Harmaa:" #: plug-ins/common/noisify.c:521 plug-ins/common/noisify.c:536 msgid "_Alpha:" -msgstr "" +msgstr "_Alfa:" #: plug-ins/common/noisify.c:546 #, c-format msgid "Channel #%d:" -msgstr "" +msgstr "Kanava #%d:" #: plug-ins/common/normalize.c:122 msgid "Normalizing..." -msgstr "" +msgstr "Normalisoidaan..." #: plug-ins/common/nova.c:179 -#, fuzzy msgid "Su_perNova..." -msgstr "SuperNova" +msgstr "Su_perNova..." #: plug-ins/common/nova.c:262 msgid "Rendering SuperNova..." @@ -5583,7 +5280,6 @@ msgstr "_Säteitä:" #: plug-ins/common/nova.c:386 -#, fuzzy msgid "R_andom hue:" msgstr "Satunnaiss_ävy:" @@ -5592,16 +5288,14 @@ msgstr "Supernovan keskusta" #: plug-ins/common/nova.c:472 -#, fuzzy msgid "S_how cursor" msgstr "Näytä kursori" #: plug-ins/common/oilify.c:111 -#, fuzzy msgid "Oili_fy..." -msgstr "Öljyväri" +msgstr "_Öljyväri..." -#: plug-ins/common/oilify.c:188 +#: plug-ins/common/oilify.c:189 msgid "Oil Painting..." msgstr "Öljyväritetään..." @@ -5610,9 +5304,8 @@ msgstr "Öljyväri" #: plug-ins/common/oilify.c:504 -#, fuzzy msgid "_Mask size:" -msgstr "Maksimikorkeus:" +msgstr "_Maskin koko:" #: plug-ins/common/oilify.c:515 msgid "_Use intensity algorithm" @@ -5624,7 +5317,7 @@ #: plug-ins/common/papertile.c:254 msgid "Division" -msgstr "" +msgstr "Jako" #: plug-ins/common/papertile.c:293 msgid "Fractional Pixels" @@ -5632,15 +5325,15 @@ #: plug-ins/common/papertile.c:298 msgid "_Background" -msgstr "" +msgstr "_Tausta" #: plug-ins/common/papertile.c:300 msgid "_Ignore" -msgstr "" +msgstr "_Jätä huomiotta" #: plug-ins/common/papertile.c:302 msgid "_Force" -msgstr "" +msgstr "_Pakota" #: plug-ins/common/papertile.c:309 msgid "C_entering" @@ -5652,43 +5345,39 @@ #: plug-ins/common/papertile.c:337 msgid "_Max (%):" -msgstr "" +msgstr "_Max (%):" #: plug-ins/common/papertile.c:343 -#, fuzzy msgid "_Wrap around" -msgstr "Läpinäkyvä tausta" +msgstr "Kiedo" #: plug-ins/common/papertile.c:353 msgid "Background Type" -msgstr "" +msgstr "Taustan tyyppi" #: plug-ins/common/papertile.c:360 -#, fuzzy msgid "I_nverted image" -msgstr "Käännä kartta" +msgstr "Kää_nnetty kuva" #: plug-ins/common/papertile.c:362 msgid "Im_age" -msgstr "" +msgstr "Kuv_a" #: plug-ins/common/papertile.c:364 -#, fuzzy msgid "Fo_reground color" msgstr "Edustaväri" #: plug-ins/common/papertile.c:366 -#, fuzzy msgid "Bac_kground color" -msgstr "Tausta" +msgstr "Taustaväri" #: plug-ins/common/papertile.c:368 msgid "S_elect here:" -msgstr "" +msgstr "Valitse tästä:" #: plug-ins/common/papertile.c:375 msgid "Background Color" -msgstr "" +msgstr "Taustaväri" #: plug-ins/common/papertile.c:527 msgid "Paper Tile..." @@ -5696,26 +5385,24 @@ #: plug-ins/common/papertile.c:815 msgid "September 31, 1999" -msgstr "" +msgstr "Syyskuun 31. 1999" #: plug-ins/common/papertile.c:816 -#, fuzzy msgid "_Paper Tile..." -msgstr "Lasitiilet..." +msgstr "" #: plug-ins/common/pat.c:104 plug-ins/common/pat.c:126 -#, fuzzy msgid "GIMP pattern" -msgstr "Kuvio" +msgstr "GIMP kuvio" #: plug-ins/common/pat.c:343 #, c-format msgid "Invalid UTF-8 string in pattern file '%s'." -msgstr "" +msgstr "Epäkelpo unicode merkkijono kuviotiedostossa '%s'." #: plug-ins/common/pat.c:501 msgid "Save as Pattern" -msgstr "" +msgstr "Tallenna kuviona" #: plug-ins/common/pcx.c:96 plug-ins/common/pcx.c:115 msgid "ZSoft PCX image" @@ -5736,38 +5423,33 @@ msgstr "Outo PCX malli, ei voi jatkaa" #: plug-ins/common/photocopy.c:158 -#, fuzzy msgid "_Photocopy..." -msgstr "Kuuma..." +msgstr "Valokopio..." #: plug-ins/common/photocopy.c:837 -#, fuzzy msgid "Photocopy" -msgstr "Valokuva" +msgstr "Valokopio" -#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:513 +#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:509 #: plug-ins/common/softglow.c:687 msgid "_Sharpness:" msgstr "Terävöinti:" #: plug-ins/common/photocopy.c:895 -#, fuzzy msgid "Percent _black:" -msgstr "Prosentti" +msgstr "Mustan prosentti:" #: plug-ins/common/photocopy.c:909 -#, fuzzy msgid "Percent _white:" -msgstr "Prosentti" +msgstr "Valkoisen prosentti:" #: plug-ins/common/pix.c:141 plug-ins/common/pix.c:158 msgid "Alias|Wavefront PIX image" -msgstr "" +msgstr "Alias|Wavefront PIX kuva" #: plug-ins/common/pixelize.c:173 -#, fuzzy msgid "_Pixelize..." -msgstr "Pikselöidään..." +msgstr "_Pikselöi..." #: plug-ins/common/pixelize.c:275 msgid "Pixelizing..." @@ -5786,9 +5468,8 @@ msgstr "Pikselin korkeus:" #: plug-ins/common/plasma.c:185 -#, fuzzy msgid "_Plasma..." -msgstr "Plasma..." +msgstr "_Plasma..." #: plug-ins/common/plasma.c:268 msgid "Plasma..." @@ -5799,13 +5480,12 @@ msgstr "Plasma" #: plug-ins/common/plasma.c:334 -#, fuzzy msgid "Random _seed:" -msgstr "Satunnaissiemen" +msgstr "Satunnaissiemen:" #: plug-ins/common/plasma.c:345 msgid "T_urbulence:" -msgstr "T_urbulenssi" +msgstr "T_urbulenssi:" #: plug-ins/common/png.c:249 plug-ins/common/png.c:266 #: plug-ins/common/png.c:281 plug-ins/common/png.c:295 @@ -5827,93 +5507,80 @@ msgid "" "The PNG file specifies an offset that caused the layer to be positioned " "outside the image." -msgstr "Taso joutui ladattaessa PNG kuvaa kuvan ulkopuolelle." +msgstr "Taso joutui ladattaessa PNG-kuvaa kuvan ulkopuolelle." #: plug-ins/common/png.c:1163 #, c-format msgid "Error while saving '%s'. Could not save image." -msgstr "Virhe tallennettaessa tiedostoa '%s'. Ei voitu tallentaa." +msgstr "Virhe tallennettaessa tiedostoa \"%s\". Ei voitu tallentaa." #: plug-ins/common/png.c:1591 msgid "Save as PNG" -msgstr "Talleta PNG" +msgstr "Tallenna PNG" #: plug-ins/common/png.c:1595 -#, fuzzy msgid "_Load defaults" msgstr "_Lataa asetukset" #: plug-ins/common/png.c:1596 -#, fuzzy msgid "_Save defaults" -msgstr "_Talleta asetukset" +msgstr "_Tallenna asetukset" #: plug-ins/common/png.c:1617 msgid "_Interlacing (Adam7)" msgstr "Lom_itus (Adam7)" #: plug-ins/common/png.c:1628 -#, fuzzy msgid "Save _background color" -msgstr "Tausta" +msgstr "Tallenna taustaväri" #: plug-ins/common/png.c:1636 -#, fuzzy msgid "Save _gamma" -msgstr "Talleta _gamma" +msgstr "Tallenna _gamma" #: plug-ins/common/png.c:1645 -#, fuzzy msgid "Save layer o_ffset" -msgstr "Talleta tason siirtymä" +msgstr "Tallenna tason siirtymä" #: plug-ins/common/png.c:1654 -#, fuzzy msgid "Save _resolution" msgstr "Talleta resoluutio" #: plug-ins/common/png.c:1663 -#, fuzzy msgid "Save creation _time" msgstr "Talleta aikaleima" #: plug-ins/common/png.c:1671 -#, fuzzy msgid "Save comme_nt" -msgstr "Talleta kommentti" +msgstr "Tallenna kommentti" #: plug-ins/common/png.c:1686 -#, fuzzy msgid "Save color _values from transparent pixels" msgstr "Tallenna väriarvot läpinäkyvistä pikseleistä" #: plug-ins/common/png.c:1699 -#, fuzzy msgid "Co_mpression level:" -msgstr "Pakkaustaso" +msgstr "Pakkaustaso:" #: plug-ins/common/png.c:1819 msgid "Could not load PNG defaults" msgstr "Ei voinut ladata PNG asetuksia" #: plug-ins/common/pnm.c:228 -#, fuzzy msgid "PNM Image" -msgstr "Näytä kuva" +msgstr "PNM-kuva" #: plug-ins/common/pnm.c:248 msgid "PNM image" -msgstr "" +msgstr "PNM-kuva" #: plug-ins/common/pnm.c:260 -#, fuzzy msgid "PGM image" -msgstr "JPEG esikatselu" +msgstr "PGM-kuva" #: plug-ins/common/pnm.c:272 -#, fuzzy msgid "PPM image" -msgstr "Näytä kuva" +msgstr "PPM-kuva" #: plug-ins/common/pnm.c:465 plug-ins/common/pnm.c:486 #: plug-ins/common/pnm.c:493 plug-ins/common/pnm.c:502 @@ -5951,11 +5618,10 @@ #: plug-ins/common/pnm.c:949 msgid "Save as PNM" -msgstr "Talleta PNM" +msgstr "Tallenna PNM" #. file save type #: plug-ins/common/pnm.c:959 -#, fuzzy msgid "Data formatting" msgstr "Tiedostomuoto" @@ -5973,25 +5639,23 @@ #: plug-ins/common/polar.c:357 msgid "Polarizing..." -msgstr "Polarisoidaan..." +msgstr "Polaarimuunnos..." #: plug-ins/common/polar.c:589 msgid "Polarize" -msgstr "Polarisoi" +msgstr "Polaarikoordinaatit" #: plug-ins/common/polar.c:620 -#, fuzzy msgid "Circle _depth in percent:" -msgstr "Ympyrän syvyys prosentteina: " +msgstr "Ympyrän _syvyys prosentteina: " #: plug-ins/common/polar.c:632 -#, fuzzy msgid "Offset _angle:" -msgstr "Kulmasiirtymä" +msgstr "_Kulmasiirtymä" #: plug-ins/common/polar.c:647 msgid "_Map backwards" -msgstr "" +msgstr "_Kuvaa takaperin" #: plug-ins/common/polar.c:653 msgid "" @@ -6000,9 +5664,8 @@ msgstr "" #: plug-ins/common/polar.c:664 -#, fuzzy msgid "Map from _top" -msgstr "Kuvaus:" +msgstr "Kuvaa _ylhäältä" #: plug-ins/common/polar.c:670 msgid "" @@ -6011,38 +5674,36 @@ msgstr "" #: plug-ins/common/polar.c:682 -#, fuzzy msgid "To _polar" -msgstr "Väristä" +msgstr "_Polaariseksi" #: plug-ins/common/polar.c:688 msgid "" "If unchecked the image will be circularly mapped onto a rectangle. If " "checked the image will be mapped onto a circle." msgstr "" +"Jos pois päältä, kuva kuvataan neliöön. Jos päällä kuva kuvataan ympyrään." #: plug-ins/common/postscript.c:576 plug-ins/common/postscript.c:662 -#, fuzzy msgid "PostScript document" -msgstr "_PostScript taso 2" +msgstr "PostScript tiedosto" #: plug-ins/common/postscript.c:595 plug-ins/common/postscript.c:677 -#, fuzzy msgid "Encapsulated PostScript image" -msgstr "_Enkapsuloitu PostScript" +msgstr "Enkapsuloitu PostScript" #: plug-ins/common/postscript.c:614 msgid "PDF document" -msgstr "" +msgstr "PDF dokumentti" #: plug-ins/common/postscript.c:1005 #, c-format msgid "Could not interpret '%s'" -msgstr "" +msgstr "Ei voinut tulkita '%s'" #: plug-ins/common/postscript.c:1103 msgid "PostScript save cannot handle images with alpha channels" -msgstr "" +msgstr "PostScript ei voi tallentaa kuvia joissa on läpinäkyvyys" #: plug-ins/common/postscript.c:1622 #, c-format @@ -6050,7 +5711,7 @@ msgstr "Ei voinut käynnistää ghostscriptiä (%s)" #: plug-ins/common/postscript.c:1652 -#, fuzzy, c-format +#, c-format msgid "Error starting ghostscript: %s" msgstr "Ei voinut käynnistää ghostscriptiä (%s)" @@ -6058,9 +5719,8 @@ #: plug-ins/common/postscript.c:2757 plug-ins/common/postscript.c:2886 #: plug-ins/common/sunras.c:1454 plug-ins/common/sunras.c:1562 #: plug-ins/fits/fits.c:826 plug-ins/fits/fits.c:950 -#, fuzzy msgid "Write error occurred" -msgstr "Kirjoitusvirhe" +msgstr "virhe kirjoitettaessa" #: plug-ins/common/postscript.c:2913 msgid "Load PostScript" @@ -6087,7 +5747,7 @@ #: plug-ins/common/postscript.c:2985 msgid "Try Bounding Box" -msgstr "" +msgstr "Käytä: Bounding Box" #. Colouring #: plug-ins/common/postscript.c:2998 @@ -6113,7 +5773,6 @@ msgstr "Automaattinen" #: plug-ins/common/postscript.c:3015 -#, fuzzy msgid "Text antialiasing" msgstr "Tekstin antialiasointi" @@ -6126,7 +5785,6 @@ msgstr "Vahva" #: plug-ins/common/postscript.c:3027 -#, fuzzy msgid "Graphic antialiasing" msgstr "Grafiikan antialiasointi" @@ -6140,15 +5798,16 @@ msgstr "Kuvan koko" #: plug-ins/common/postscript.c:3152 -#, fuzzy msgid "_Keep aspect ratio" -msgstr "Säilytä suhde" +msgstr "Säilytä kuvasuhde" #: plug-ins/common/postscript.c:3158 msgid "" "When toggled, the resulting image will be scaled to fit into the given size " "without changing the aspect ratio." msgstr "" +"Jos päällä, kuva skaalataan mahtumaan valittuun kokoon muuttamatta " +"kuvasuhdetta." #. Unit #: plug-ins/common/postscript.c:3167 @@ -6169,7 +5828,6 @@ msgstr "Tulostus" #: plug-ins/common/postscript.c:3204 -#, fuzzy msgid "_PostScript level 2" msgstr "_PostScript taso 2" @@ -6182,7 +5840,6 @@ msgstr "Esikatselu" #: plug-ins/common/postscript.c:3243 -#, fuzzy msgid "Preview _size:" msgstr "Esikatselun koko:" @@ -6243,7 +5900,7 @@ #: plug-ins/common/randomize.c:244 msgid "_Hurl..." -msgstr "" +msgstr "Luodaan koirankorva..." #: plug-ins/common/randomize.c:256 msgid "_Pick..." @@ -6254,9 +5911,8 @@ msgstr "" #: plug-ins/common/randomize.c:756 plug-ins/common/snoise.c:614 -#, fuzzy msgid "_Random seed:" -msgstr "Satunnaissiemen" +msgstr "Satunnaissiemen:" #: plug-ins/common/randomize.c:765 msgid "R_andomization (%):" @@ -6280,281 +5936,255 @@ #: plug-ins/common/raw.c:915 msgid "Raw Image Loader" -msgstr "" +msgstr "RAW-lataaja" #: plug-ins/common/raw.c:943 -#, fuzzy msgid "Image" -msgstr "GIF varoitus" +msgstr "Kuva" #: plug-ins/common/raw.c:955 msgid "Planar RGB" -msgstr "" +msgstr "Planaari-RGB" #: plug-ins/common/raw.c:956 msgid "Indexed" -msgstr "" +msgstr "Indeksoitu" #: plug-ins/common/raw.c:961 -#, fuzzy msgid "Image _Type:" -msgstr "Valonlähteen tyyppi:" +msgstr "Kuvatyyppi:" #: plug-ins/common/raw.c:1011 -#, fuzzy msgid "Palette" -msgstr "Tasoita paletti" +msgstr "Paletti" #: plug-ins/common/raw.c:1021 plug-ins/common/raw.c:1109 msgid "R, G, B (normal)" -msgstr "" +msgstr "R, G, B (normaali)" #: plug-ins/common/raw.c:1022 plug-ins/common/raw.c:1111 msgid "B, G, R, X (bmp style)" -msgstr "" +msgstr "B, G, R, X (BMP-tyylinen)" #: plug-ins/common/raw.c:1027 -#, fuzzy msgid "_Palette Type:" -msgstr "Valinta tyyppi:" +msgstr "Palettityyppi:" #: plug-ins/common/raw.c:1038 -#, fuzzy msgid "Off_set:" msgstr "Siirtymä:" #: plug-ins/common/raw.c:1050 msgid "Select Palette File to Load" -msgstr "" +msgstr "Valitse ladattava paletti" #: plug-ins/common/raw.c:1053 -#, fuzzy msgid "Pal_ette File:" -msgstr "Kuvio" +msgstr "Palettitiedosto:" #: plug-ins/common/raw.c:1081 -#, fuzzy msgid "Raw Image Save" -msgstr "Kuvan koko" +msgstr "Pakkaamattoman kuvan koko" #: plug-ins/common/raw.c:1095 -#, fuzzy msgid "RGB Save Type" -msgstr "Käyrän tyyppi" +msgstr "RGB-tyyppi" #: plug-ins/common/raw.c:1099 -#, fuzzy msgid "Standard (R,G,B)" -msgstr "Standardi" +msgstr "Standardi (R,G,B)" #: plug-ins/common/raw.c:1100 msgid "Planar (RRR,GGG,BBB)" -msgstr "" +msgstr "Planaari (RRR,GGG,BBB)" #: plug-ins/common/raw.c:1105 msgid "Indexed Palette Type" -msgstr "" +msgstr "Indeksoitu paletti" #: plug-ins/common/retinex.c:167 -#, fuzzy msgid "_Retinex..." -msgstr "Sininen:" +msgstr "" #: plug-ins/common/retinex.c:250 -#, fuzzy msgid "Retinex..." -msgstr "Lomituksen poisto..." +msgstr "" #: plug-ins/common/retinex.c:252 msgid "Retinex (4/4): updated..." -msgstr "" +msgstr "Retinex (4/4): päivitetty..." #: plug-ins/common/retinex.c:289 msgid "Retinex Image Enhancement" -msgstr "" +msgstr "Retinex kuvan parannus" #: plug-ins/common/retinex.c:310 msgid "Level" -msgstr "" +msgstr "Taso" #: plug-ins/common/retinex.c:314 -#, fuzzy msgid "_Uniform" -msgstr "Yksikköeditori" +msgstr "Yhtenäinen" #: plug-ins/common/retinex.c:316 -#, fuzzy msgid "_Low" -msgstr "_Alempi" +msgstr "Matala" #: plug-ins/common/retinex.c:318 -#, fuzzy msgid "_High" -msgstr "Uusi korkeus:" +msgstr "Korkea" #: plug-ins/common/retinex.c:343 -#, fuzzy msgid "_Scale:" msgstr "Skaala:" #: plug-ins/common/retinex.c:358 -#, fuzzy msgid "_Scale division:" -msgstr "Mitat:" +msgstr "_Jakoja:" #: plug-ins/common/retinex.c:373 msgid "_Dynamic:" -msgstr "" +msgstr "_Dynaaminen:" #: plug-ins/common/retinex.c:647 -#, fuzzy msgid "Retinex: Filtering..." -msgstr "Liike-epäterävyys..." +msgstr "Retinex: suodatetaan..." #: plug-ins/common/ripple.c:138 msgid "_Ripple..." -msgstr "" +msgstr "_Väreily..." -#: plug-ins/common/ripple.c:219 +#: plug-ins/common/ripple.c:222 msgid "Rippling..." -msgstr "" +msgstr "Väreily..." #: plug-ins/common/ripple.c:472 msgid "Ripple" -msgstr "" +msgstr "Väreily" #: plug-ins/common/ripple.c:522 msgid "_Retain tilability" -msgstr "" +msgstr "_Säilytä saumattomuus" #. Edges toggle box #: plug-ins/common/ripple.c:556 msgid "Edges" -msgstr "" +msgstr "Reunat" #. Wave toggle box #: plug-ins/common/ripple.c:584 msgid "Wave Type" -msgstr "" +msgstr "Aallon tyyppi" #: plug-ins/common/ripple.c:588 msgid "Saw_tooth" -msgstr "" +msgstr "Sa_ha-aalto" #: plug-ins/common/ripple.c:589 msgid "S_ine" -msgstr "Sini" +msgstr "_Sini" #: plug-ins/common/ripple.c:612 msgid "_Period:" -msgstr "Periodi:" +msgstr "_Periodi:" #: plug-ins/common/ripple.c:625 msgid "A_mplitude:" -msgstr "Amplitudi:" +msgstr "_Amplitudi:" #: plug-ins/common/rotate.c:421 msgid "You can not rotate the whole image if there's a selection." -msgstr "" +msgstr "Koko kuvaa ei voi kiertää jos siinä on valinta" #: plug-ins/common/rotate.c:428 msgid "You can not rotate the whole image if there's a floating selection." -msgstr "" +msgstr "Koko kuvaa ei voi kiertää jos siinä on kelluva valinta" #: plug-ins/common/rotate.c:439 msgid "Sorry, channels and masks can not be rotated." -msgstr "" +msgstr "Kanavia ja maskeja ei voi kiertää." #: plug-ins/common/rotate.c:445 msgid "Rotating..." -msgstr "" +msgstr "Kierretään..." #: plug-ins/common/sample_colorize.c:296 msgid "_Sample Colorize..." -msgstr "" +msgstr "_Näytteen väritys..." #: plug-ins/common/sample_colorize.c:1310 msgid "Sample Colorize" -msgstr "" +msgstr "Näytteen väritys" #: plug-ins/common/sample_colorize.c:1315 msgid "Get sample colors" -msgstr "" +msgstr "Hae näytteen värit" #: plug-ins/common/sample_colorize.c:1317 msgid "Apply" -msgstr "" +msgstr "Käytä" #. layer combo_box (Dst) #: plug-ins/common/sample_colorize.c:1335 msgid "Destination:" -msgstr "" +msgstr "Kohde:" #. layer combo_box (Sample) #: plug-ins/common/sample_colorize.c:1351 msgid "Sample:" -msgstr "" +msgstr "Näyte:" #: plug-ins/common/sample_colorize.c:1361 -#, fuzzy msgid "From reverse gradient" -msgstr "Väliliu'usta" +msgstr "Takaperoisesta väriliu'usta" #: plug-ins/common/sample_colorize.c:1366 -#, fuzzy msgid "From gradient" msgstr "Väliliu'usta" #. check button #: plug-ins/common/sample_colorize.c:1387 #: plug-ins/common/sample_colorize.c:1414 -#, fuzzy msgid "Show selection" -msgstr "Valinta" +msgstr "Näytä valinta" #. check button #: plug-ins/common/sample_colorize.c:1398 #: plug-ins/common/sample_colorize.c:1425 -#, fuzzy msgid "Show color" -msgstr "Ei värejä" +msgstr "Näytä väri" #: plug-ins/common/sample_colorize.c:1538 -#, fuzzy msgid "Input levels:" -msgstr "Intensiteetti tasot:" +msgstr "Tulotasot:" #: plug-ins/common/sample_colorize.c:1588 msgid "Output Levels:" -msgstr "Intensiteetti tasot" +msgstr "Lähtötasot:" #. check button #: plug-ins/common/sample_colorize.c:1628 -#, fuzzy msgid "Hold intensity" -msgstr "Voimakkuus" +msgstr "Säilytä voimakkuus" #. check button #: plug-ins/common/sample_colorize.c:1639 -#, fuzzy msgid "Original intensity" -msgstr "Alkuperäinen" +msgstr "Alkuperäinen voimakkuus" #. check button #: plug-ins/common/sample_colorize.c:1657 -#, fuzzy msgid "Use subcolors" -msgstr "Ei värejä" +msgstr "Käytä alivärejä" #. check button #: plug-ins/common/sample_colorize.c:1668 -#, fuzzy msgid "Smooth samples" -msgstr "Tasoita paletti" +msgstr "Pehmennä näytteet" #: plug-ins/common/sample_colorize.c:2632 msgid "Sample Analyze..." -msgstr "" +msgstr "Näytteen analysointi..." #: plug-ins/common/sample_colorize.c:3002 msgid "Remap Colorized..." @@ -6562,40 +6192,39 @@ #: plug-ins/common/scatter_hsv.c:113 msgid "S_catter HSV..." -msgstr "" +msgstr "Ha_jota HSV..." #: plug-ins/common/scatter_hsv.c:208 msgid "Scattering HSV..." -msgstr "" +msgstr "Hajotetaan HSV..." #: plug-ins/common/scatter_hsv.c:344 msgid "Scatter HSV" -msgstr "" +msgstr "Hajota HSV" #: plug-ins/common/scatter_hsv.c:372 msgid "_Holdness:" -msgstr "" +msgstr "_Pito:" #: plug-ins/common/scatter_hsv.c:384 msgid "H_ue:" -msgstr "Sävy:" +msgstr "S_ävy:" #: plug-ins/common/scatter_hsv.c:396 msgid "_Saturation:" -msgstr "Saturaatio:" +msgstr "_Saturaatio:" #: plug-ins/common/scatter_hsv.c:408 msgid "_Value:" -msgstr "Arvo:" +msgstr "_Arvo:" #: plug-ins/common/screenshot.c:257 plug-ins/winsnap/winsnap.c:990 -#, fuzzy msgid "_Screen Shot..." -msgstr "Kuvan kaappaus" +msgstr "_Kuvan kaappaus..." #: plug-ins/common/screenshot.c:395 msgid "Error grabbing the pointer" -msgstr "Ei saanut kaapattua osoitinta" +msgstr "Osoitinta ei saatu kaapattua" #: plug-ins/common/screenshot.c:471 msgid "Loading Screen Shot..." @@ -6640,27 +6269,24 @@ msgstr "Kaappaa tauon jälkeen" #: plug-ins/common/sel_gauss.c:107 -#, fuzzy msgid "_Selective Gaussian Blur..." -msgstr "RLE Gauss-sumennus" +msgstr "_Valikoiva Gauss-sumennus..." -#: plug-ins/common/sel_gauss.c:186 +#: plug-ins/common/sel_gauss.c:187 msgid "Selective Gaussian Blur..." -msgstr "" +msgstr "Valikoiva Gauss-sumennus..." -#: plug-ins/common/sel_gauss.c:224 +#: plug-ins/common/sel_gauss.c:225 msgid "Selective Gaussian Blur" -msgstr "" +msgstr "Valikoiva Gauss-sumennus" -#: plug-ins/common/sel_gauss.c:256 -#, fuzzy +#: plug-ins/common/sel_gauss.c:257 msgid "_Blur radius:" -msgstr "Säde:" +msgstr "Pehmennyssäde:" -#: plug-ins/common/sel_gauss.c:266 -#, fuzzy +#: plug-ins/common/sel_gauss.c:267 msgid "_Max. delta:" -msgstr "Syvyys:" +msgstr "Suurin erotus:" #: plug-ins/common/semiflatten.c:77 msgid "_Semi-Flatten" @@ -6671,66 +6297,61 @@ msgstr "" #: plug-ins/common/sharpen.c:124 -#, fuzzy msgid "_Sharpen..." -msgstr "Terävöidään..." +msgstr "_Terävöinti..." #. #. * Let the user know what we're doing... #. -#: plug-ins/common/sharpen.c:315 +#: plug-ins/common/sharpen.c:311 msgid "Sharpening..." msgstr "Terävöidään..." -#: plug-ins/common/sharpen.c:484 +#: plug-ins/common/sharpen.c:480 msgid "Sharpen" msgstr "Terävöinti" #: plug-ins/common/shift.c:113 msgid "_Shift..." -msgstr "" +msgstr "_Siirto..." -#: plug-ins/common/shift.c:191 +#: plug-ins/common/shift.c:194 msgid "Shifting..." -msgstr "" +msgstr "Siirretään..." #: plug-ins/common/shift.c:349 msgid "Shift" -msgstr "" +msgstr "Siirrä" #: plug-ins/common/shift.c:373 -#, fuzzy msgid "Shift _horizontally" -msgstr "Vaakasuora" +msgstr "Siirrä _vaakasuuntaan" #: plug-ins/common/shift.c:374 -#, fuzzy msgid "Shift _vertically" -msgstr "pallomainen" +msgstr "Siirrä _pystysuuntaan" #: plug-ins/common/shift.c:404 -#, fuzzy msgid "Shift _amount:" msgstr "Määrä:" #: plug-ins/common/sinus.c:191 -#, fuzzy msgid "_Sinus..." -msgstr "Talletetaan '%s'..." +msgstr "_Sini..." #: plug-ins/common/sinus.c:284 msgid "Sinus: rendering..." -msgstr "" +msgstr "Sini: luodaan..." #. Create Main window with a vbox #. ============================== #: plug-ins/common/sinus.c:648 msgid "Sinus" -msgstr "" +msgstr "Sini" #: plug-ins/common/sinus.c:683 msgid "Drawing Settings" -msgstr "" +msgstr "Piirtoasetukset" #: plug-ins/common/sinus.c:693 msgid "_X Scale:" @@ -6742,28 +6363,27 @@ #: plug-ins/common/sinus.c:711 msgid "Co_mplexity:" -msgstr "" +msgstr "Kompleksisuus:" #: plug-ins/common/sinus.c:721 msgid "Calculation Settings" -msgstr "" +msgstr "Laskenta-asetukset" #: plug-ins/common/sinus.c:734 -#, fuzzy msgid "R_andom seed:" -msgstr "Satunnaissiemen" +msgstr "Satunnaissiemen:" #: plug-ins/common/sinus.c:743 msgid "_Force tiling?" -msgstr "" +msgstr "Pakota saumattomuus?" #: plug-ins/common/sinus.c:756 msgid "_Ideal" -msgstr "" +msgstr "_Ideaalinen" #: plug-ins/common/sinus.c:757 msgid "_Distorted" -msgstr "" +msgstr "_Vääristynyt" #: plug-ins/common/sinus.c:775 plug-ins/common/sinus.c:791 #: plug-ins/imagemap/imap_preferences.c:516 @@ -6773,62 +6393,55 @@ #. if in grey scale, the colors are necessarily black and white #: plug-ins/common/sinus.c:784 msgid "The colors are white and black." -msgstr "" +msgstr "Värit ovat musta ja valkoinen" #: plug-ins/common/sinus.c:795 -#, fuzzy msgid "Bl_ack & white" -msgstr "Mustavalkoinen" +msgstr "Musta & valkoinen" #: plug-ins/common/sinus.c:797 -#, fuzzy msgid "_Foreground & background" -msgstr "Läpinäkyvä tausta" +msgstr "Edusta- ja taustaväri" #: plug-ins/common/sinus.c:799 msgid "C_hoose here:" -msgstr "" +msgstr "Valitse:" #: plug-ins/common/sinus.c:812 -#, fuzzy msgid "First color" -msgstr "Väriksi" +msgstr "Ensimmäinen väri" #: plug-ins/common/sinus.c:822 -#, fuzzy msgid "Second color" -msgstr "Tausta" +msgstr "Toinen väri" #: plug-ins/common/sinus.c:835 msgid "Alpha Channels" -msgstr "" +msgstr "Alfakanavat" #: plug-ins/common/sinus.c:848 msgid "F_irst Color:" -msgstr "" +msgstr "_Ensimmäinen väri:" #: plug-ins/common/sinus.c:863 msgid "S_econd Color:" -msgstr "" +msgstr "_Toinen väri:" #: plug-ins/common/sinus.c:888 msgid "Blend Settings" -msgstr "" +msgstr "Sekoitusasetukset" #: plug-ins/common/sinus.c:901 -#, fuzzy msgid "L_inear" -msgstr "lineaarinen" +msgstr "_Lineaarinen" #: plug-ins/common/sinus.c:902 -#, fuzzy msgid "Bili_near" -msgstr "bilineaarinen" +msgstr "_Bilineaarinen" #: plug-ins/common/sinus.c:903 -#, fuzzy msgid "Sin_usoidal" -msgstr "Sini" +msgstr "_Sini" #: plug-ins/common/sinus.c:915 msgid "_Exponent:" @@ -6836,17 +6449,15 @@ #: plug-ins/common/sinus.c:925 msgid "_Blend" -msgstr "" +msgstr "Sekoit_a" #: plug-ins/common/sinus.c:1042 -#, fuzzy msgid "Do _Preview" -msgstr "Esikatselu" +msgstr "Tee esikatselu" #: plug-ins/common/smooth_palette.c:88 -#, fuzzy msgid "Smoo_th Palette..." -msgstr "Tasoita paletti" +msgstr "Tasoita paletti..." #: plug-ins/common/smooth_palette.c:180 msgid "Deriving Smooth Palette..." @@ -6857,118 +6468,111 @@ msgstr "Tasoita paletti" #: plug-ins/common/smooth_palette.c:445 -#, fuzzy msgid "_Search depth:" msgstr "_Hakusyvyys:" #: plug-ins/common/snoise.c:186 msgid "_Solid Noise..." -msgstr "" +msgstr "_Yhtenäinen kohina..." #: plug-ins/common/snoise.c:336 msgid "Solid Noise..." -msgstr "" +msgstr "Yhtenäinen kohina..." #. Dialog initialization #: plug-ins/common/snoise.c:583 msgid "Solid Noise" -msgstr "" +msgstr "Yhtenäinen kohina" #: plug-ins/common/snoise.c:627 msgid "_Detail:" -msgstr "" +msgstr "Yksityiskohtaisuus:" #. Turbulent #: plug-ins/common/snoise.c:637 msgid "T_urbulent" -msgstr "" +msgstr "Turbulenssi" #. Tilable #: plug-ins/common/snoise.c:651 msgid "T_ilable" -msgstr "" +msgstr "Saumattomuus" #: plug-ins/common/snoise.c:666 -#, fuzzy msgid "_X size:" msgstr "_X koko:" #: plug-ins/common/snoise.c:679 -#, fuzzy msgid "_Y size:" msgstr "_Y koko:" #: plug-ins/common/sobel.c:119 msgid "_Sobel..." -msgstr "" +msgstr "_Sobel..." -#: plug-ins/common/sobel.c:226 +#: plug-ins/common/sobel.c:227 msgid "Sobel Edge Detection" -msgstr "" +msgstr "Sobel reunantunnistus" -#: plug-ins/common/sobel.c:248 +#: plug-ins/common/sobel.c:249 msgid "Sobel _Horizontally" -msgstr "" +msgstr "Sobel _vaakasuoraan" -#: plug-ins/common/sobel.c:260 +#: plug-ins/common/sobel.c:261 msgid "Sobel _Vertically" -msgstr "" +msgstr "Sobel _pystysuoraan" -#: plug-ins/common/sobel.c:272 +#: plug-ins/common/sobel.c:273 msgid "_Keep sign of result (one direction only)" -msgstr "" +msgstr "Vain yhteen suuntaan" -#: plug-ins/common/sobel.c:358 +#: plug-ins/common/sobel.c:359 msgid "Sobel Edge Detecting..." -msgstr "" +msgstr "Sobel reunantunnistus..." #: plug-ins/common/softglow.c:138 -#, fuzzy msgid "_Softglow..." -msgstr "Kuuma..." +msgstr "" #: plug-ins/common/softglow.c:629 msgid "Softglow" msgstr "" #: plug-ins/common/softglow.c:659 -#, fuzzy msgid "_Glow radius:" -msgstr "Säde:" +msgstr "Hohdon säde:" #: plug-ins/common/sparkle.c:186 msgid "_Sparkle..." -msgstr "" +msgstr "_Säkenöinti..." #: plug-ins/common/sparkle.c:292 msgid "Sparkling..." -msgstr "" +msgstr "Säkenöinti..." #: plug-ins/common/sparkle.c:343 msgid "Sparkle" -msgstr "" +msgstr "Säkenöinti" #: plug-ins/common/sparkle.c:366 msgid "Luminosity _Threshold:" -msgstr "" +msgstr "Valovoiman raja:" #: plug-ins/common/sparkle.c:369 msgid "Adjust the Luminosity Threshold" -msgstr "" +msgstr "Säädä valovoiman rajaa" #: plug-ins/common/sparkle.c:376 -#, fuzzy msgid "F_lare intensity:" -msgstr "Voimakkuus" +msgstr "Intensiteetti" #: plug-ins/common/sparkle.c:379 msgid "Adjust the Flare Intensity" msgstr "" #: plug-ins/common/sparkle.c:386 -#, fuzzy msgid "_Spike length:" -msgstr "Aallonpituus:" +msgstr "Piikin pituus:" #: plug-ins/common/sparkle.c:389 msgid "Adjust the Spike Length" @@ -6976,7 +6580,7 @@ #: plug-ins/common/sparkle.c:396 msgid "Sp_ike points:" -msgstr "" +msgstr "Piikin pisteet:" #: plug-ins/common/sparkle.c:399 msgid "Adjust the Number of Spikes" @@ -6984,16 +6588,15 @@ #: plug-ins/common/sparkle.c:406 msgid "Spi_ke angle (-1: random):" -msgstr "" +msgstr "Piikin kulma (-1: satunnainen):" #: plug-ins/common/sparkle.c:409 msgid "Adjust the Spike Angle (-1 means a Random Angle is chosen)" msgstr "" #: plug-ins/common/sparkle.c:417 -#, fuzzy msgid "Spik_e density:" -msgstr "Väritiheys" +msgstr "Piikkien tiheys:" #: plug-ins/common/sparkle.c:420 msgid "Adjust the Spike Density" @@ -7004,25 +6607,22 @@ msgstr "" #: plug-ins/common/sparkle.c:437 -#, fuzzy msgid "_Random hue:" -msgstr "Satunnaiss_ävy:" +msgstr "Satunnainen _sävy:" #: plug-ins/common/sparkle.c:440 msgid "Adjust the Value how much the Hue should be changed randomly" msgstr "" #: plug-ins/common/sparkle.c:448 -#, fuzzy msgid "Rando_m saturation:" -msgstr "Saturaatio" +msgstr "Satunnainen _kylläisyys:" #: plug-ins/common/sparkle.c:451 msgid "Adjust the Value how much the Saturation should be changed randomly" msgstr "" #: plug-ins/common/sparkle.c:465 -#, fuzzy msgid "_Preserve luminosity" msgstr "Säilytä valovoima" @@ -7031,7 +6631,6 @@ msgstr "" #: plug-ins/common/sparkle.c:478 -#, fuzzy msgid "In_verse" msgstr "Käänteinen" @@ -7040,88 +6639,80 @@ msgstr "" #: plug-ins/common/sparkle.c:490 -#, fuzzy msgid "A_dd border" -msgstr "Reuna:" +msgstr "Lisää reunus" #: plug-ins/common/sparkle.c:496 msgid "Draw a Border of Spikes around the Image" msgstr "" #: plug-ins/common/sparkle.c:507 -#, fuzzy msgid "_Natural color" -msgstr "Ei värejä" +msgstr "_Luonnollinen väri" #: plug-ins/common/sparkle.c:508 -#, fuzzy msgid "_Foreground color" -msgstr "Edustaväri" +msgstr "_Edustaväri" #: plug-ins/common/sparkle.c:509 -#, fuzzy msgid "_Background color" -msgstr "Tausta" +msgstr "_Taustaväri" #: plug-ins/common/sparkle.c:516 -#, fuzzy msgid "Use the color of the image" -msgstr "Ensimmäinen kuvan rivi" +msgstr "Käytä kuvan väriä" #: plug-ins/common/sparkle.c:517 -#, fuzzy msgid "Use the foreground color" -msgstr "Käytä taustaväriä" +msgstr "Käytä edustaväriä" #: plug-ins/common/sparkle.c:518 -#, fuzzy msgid "Use the background color" msgstr "Käytä taustaväriä" #: plug-ins/common/spheredesigner.c:280 plug-ins/gimpressionist/general.c:147 msgid "Solid" -msgstr "" +msgstr "Tasainen" #: plug-ins/common/spheredesigner.c:281 msgid "Checker" -msgstr "" +msgstr "Šakkilauta" #: plug-ins/common/spheredesigner.c:282 msgid "Marble" -msgstr "" +msgstr "Marmori" #: plug-ins/common/spheredesigner.c:283 msgid "Lizard" -msgstr "" +msgstr "Lisko" #: plug-ins/common/spheredesigner.c:284 msgid "Phong" -msgstr "" +msgstr "Phong" #: plug-ins/common/spheredesigner.c:285 msgid "Noise" -msgstr "" +msgstr "Kohina" #: plug-ins/common/spheredesigner.c:286 msgid "Wood" -msgstr "" +msgstr "Puu" #: plug-ins/common/spheredesigner.c:287 msgid "Spiral" -msgstr "" +msgstr "Spiraali" #: plug-ins/common/spheredesigner.c:288 msgid "Spots" -msgstr "" +msgstr "Pisteet" #: plug-ins/common/spheredesigner.c:1741 plug-ins/common/spheredesigner.c:2615 msgid "Texture" -msgstr "" +msgstr "Kuvio" #: plug-ins/common/spheredesigner.c:1743 -#, fuzzy msgid "Bumpmap" -msgstr "kuhmurainen" +msgstr "Kuhmutus" #: plug-ins/common/spheredesigner.c:1745 plug-ins/common/spheredesigner.c:2617 msgid "Light" @@ -7129,29 +6720,27 @@ #: plug-ins/common/spheredesigner.c:2164 msgid "Open File" -msgstr "" +msgstr "Avaa" #: plug-ins/common/spheredesigner.c:2164 -#, fuzzy msgid "Save File" msgstr "Tallenna" #: plug-ins/common/spheredesigner.c:2481 msgid "Sphere Designer" -msgstr "" +msgstr "Pallosuunnittelu" #: plug-ins/common/spheredesigner.c:2518 -#, fuzzy msgid "Update _Preview" msgstr "Virkistä esikatselu" #: plug-ins/common/spheredesigner.c:2572 msgid "Textures" -msgstr "" +msgstr "Pinnoitus" #: plug-ins/common/spheredesigner.c:2600 msgid "Texture Properties" -msgstr "" +msgstr "Pinnoitusominaisuudet" #: plug-ins/common/spheredesigner.c:2616 msgid "Bump" @@ -7159,7 +6748,7 @@ #: plug-ins/common/spheredesigner.c:2644 msgid "Texture:" -msgstr "" +msgstr "Pinnoitus:" #: plug-ins/common/spheredesigner.c:2649 msgid "Colors:" @@ -7180,115 +6769,104 @@ msgstr "Turbulenssi:" #: plug-ins/common/spheredesigner.c:2689 -#, fuzzy msgid "Amount:" -msgstr "Ympäristö:" +msgstr "Määrä:" #: plug-ins/common/spheredesigner.c:2696 msgid "Exp.:" -msgstr "" +msgstr "Exp:" #: plug-ins/common/spheredesigner.c:2703 -#, fuzzy msgid "Texture Transformations" -msgstr "Saturaatio" +msgstr "Tekstuurimuunnos" #: plug-ins/common/spheredesigner.c:2726 msgid "Scale Y:" -msgstr "Skaalaa X:" +msgstr "Skaala X:" #: plug-ins/common/spheredesigner.c:2732 msgid "Scale Z:" -msgstr "Skaalaa Z:" +msgstr "Skaala Z:" #: plug-ins/common/spheredesigner.c:2739 msgid "Rotate X:" -msgstr "Pyörittä X:" +msgstr "Pyöritä X:" #: plug-ins/common/spheredesigner.c:2746 msgid "Rotate Y:" -msgstr "Pyörittä Y:" +msgstr "Pyöritä Y:" #: plug-ins/common/spheredesigner.c:2753 msgid "Rotate Z:" -msgstr "Pyörittä Z:" +msgstr "Pyöritä Z:" #: plug-ins/common/spheredesigner.c:2760 -#, fuzzy msgid "Position X:" -msgstr "Paikka" +msgstr "Paikka X:" #: plug-ins/common/spheredesigner.c:2767 -#, fuzzy msgid "Position Y:" -msgstr "Paikka" +msgstr "Paikka Y:" #: plug-ins/common/spheredesigner.c:2774 -#, fuzzy msgid "Position Z:" -msgstr "Paikka" +msgstr "Paikka Z:" #: plug-ins/common/spheredesigner.c:2922 -#, fuzzy msgid "Rendering Sphere..." -msgstr "Muodostan fraktaalia..." +msgstr "Muodostan palloa..." #: plug-ins/common/spheredesigner.c:2979 msgid "Sphere _Designer..." -msgstr "" +msgstr "Pallos_uunnittelu..." #: plug-ins/common/spread.c:99 msgid "Sp_read..." msgstr "" -#: plug-ins/common/spread.c:179 +#: plug-ins/common/spread.c:182 msgid "Spreading..." msgstr "" -#: plug-ins/common/spread.c:345 +#: plug-ins/common/spread.c:346 msgid "Spread" msgstr "" -#: plug-ins/common/spread.c:363 +#: plug-ins/common/spread.c:364 msgid "Spread Amount" msgstr "" #: plug-ins/common/struc.c:1146 -#, fuzzy msgid "_Apply Canvas..." -msgstr "Linssiefekti..." +msgstr "_Lisää kangas..." #: plug-ins/common/struc.c:1227 msgid "Applying Canvas..." -msgstr "" +msgstr "Lisätään kangas..." #: plug-ins/common/struc.c:1264 msgid "Apply Canvas" -msgstr "" +msgstr "Lisää kangas" #: plug-ins/common/struc.c:1290 -#, fuzzy msgid "_Top-right" -msgstr "Oikea:" +msgstr "Ylä-oikea" #: plug-ins/common/struc.c:1291 -#, fuzzy msgid "Top-_left" -msgstr "Vasen:" +msgstr "Ylä-vasen" #: plug-ins/common/struc.c:1292 -#, fuzzy msgid "_Bottom-left" -msgstr "Ala:" +msgstr "Ala-vasen" #: plug-ins/common/struc.c:1293 -#, fuzzy msgid "Bottom-_right" -msgstr "Ala:" +msgstr "Ala-oikea" #: plug-ins/common/sunras.c:217 plug-ins/common/sunras.c:237 msgid "SUN Rasterfile image" -msgstr "" +msgstr "SUN-rasterikuva" #: plug-ins/common/sunras.c:392 #, c-format @@ -7326,11 +6904,11 @@ #: plug-ins/common/xwd.c:1572 plug-ins/common/xwd.c:1772 #: plug-ins/common/xwd.c:2029 plug-ins/fits/fits.c:673 msgid "EOF encountered on reading" -msgstr "" +msgstr "Tiedosto päättyi kesken lukiessa" #: plug-ins/common/sunras.c:1579 msgid "Save as SUNRAS" -msgstr "" +msgstr "Tallenna SUNRAS" #. file save type #: plug-ins/common/sunras.c:1589 @@ -7339,12 +6917,11 @@ #: plug-ins/common/sunras.c:1593 msgid "RunLength Encoded" -msgstr "" +msgstr "RLE pakattu" #: plug-ins/common/svg.c:136 -#, fuzzy msgid "Scalable SVG image" -msgstr "Käytettävissä olevat kuvat:" +msgstr "Skaalattava SVG kuva" #: plug-ins/common/svg.c:313 plug-ins/common/svg.c:696 msgid "Unknown reason" @@ -7383,14 +6960,12 @@ msgstr "Korkeus:" #: plug-ins/common/svg.c:841 plug-ins/common/wmf.c:628 -#, fuzzy msgid "_X ratio:" -msgstr "Sävyn vaihtelu:" +msgstr "_X suhde:" #: plug-ins/common/svg.c:863 plug-ins/common/wmf.c:650 -#, fuzzy msgid "_Y ratio:" -msgstr "Sävyn vaihtelu:" +msgstr "_Y suhde:" #: plug-ins/common/svg.c:877 plug-ins/common/wmf.c:664 msgid "Constrain aspect ratio" @@ -7403,7 +6978,6 @@ #. Path Import #: plug-ins/common/svg.c:908 -#, fuzzy msgid "Import _paths" msgstr "Tuo _polut" @@ -7413,13 +6987,12 @@ msgstr "Tuo polut GIMPin polkutyökalun käyttöön" #: plug-ins/common/svg.c:927 -#, fuzzy msgid "Merge imported paths" msgstr "Yhdistä tuodut polut" #: plug-ins/common/tga.c:233 plug-ins/common/tga.c:249 msgid "TarGA image" -msgstr "" +msgstr "Targa-kuva (TGA)" #: plug-ins/common/tga.c:428 #, c-format @@ -7446,7 +7019,6 @@ msgstr "Alkukohta alhaalla vasemmalla" #: plug-ins/common/threshold_alpha.c:95 -#, fuzzy msgid "_Threshold Alpha..." msgstr "Kynnysarvo:" @@ -7468,13 +7040,12 @@ #: plug-ins/common/threshold_alpha.c:239 msgid "Threshold:" -msgstr "" +msgstr "Raja:" #: plug-ins/common/tiff.c:211 plug-ins/common/tiff.c:232 #: plug-ins/common/tiff.c:249 -#, fuzzy msgid "TIFF image" -msgstr "TIFF kanava" +msgstr "TIFF kuva" #: plug-ins/common/tiff.c:835 #, c-format @@ -7540,11 +7111,11 @@ msgstr "Kommentti:" #: plug-ins/common/tile.c:112 -#, fuzzy msgid "_Tile..." -msgstr "Sininen:" +msgstr "" -#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:321 +#. Set the tile cache size +#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:320 msgid "Tiling..." msgstr "" @@ -7561,51 +7132,48 @@ msgstr "Luo uusi kuva" #: plug-ins/common/tileit.c:224 -#, fuzzy msgid "_Small Tiles..." -msgstr "Lasitiilet..." +msgstr "" #. Get the preview image -#: plug-ins/common/tileit.c:364 +#: plug-ins/common/tileit.c:363 msgid "TileIt" msgstr "" #. Area for buttons etc #. Flip -#: plug-ins/common/tileit.c:407 plug-ins/ifscompose/ifscompose.c:628 +#: plug-ins/common/tileit.c:406 plug-ins/ifscompose/ifscompose.c:628 msgid "Flip" -msgstr "" +msgstr "Käännä" -#: plug-ins/common/tileit.c:455 -#, fuzzy +#: plug-ins/common/tileit.c:454 msgid "A_ll tiles" -msgstr "Lasitiilet..." +msgstr "Kaikki lohkot" -#: plug-ins/common/tileit.c:469 +#: plug-ins/common/tileit.c:468 msgid "Al_ternate tiles" -msgstr "" +msgstr "Joka toinen lohko" -#: plug-ins/common/tileit.c:483 +#: plug-ins/common/tileit.c:482 msgid "_Explicit tile" msgstr "" -#: plug-ins/common/tileit.c:489 +#: plug-ins/common/tileit.c:488 msgid "Ro_w:" msgstr "Rivi:" -#: plug-ins/common/tileit.c:513 +#: plug-ins/common/tileit.c:512 msgid "Col_umn:" msgstr "Sarake:" -#: plug-ins/common/tileit.c:565 +#: plug-ins/common/tileit.c:564 msgid "O_pacity:" msgstr "Peitto:" #. Lower frame saying howmany segments -#: plug-ins/common/tileit.c:574 -#, fuzzy +#: plug-ins/common/tileit.c:573 msgid "Number of Segments" -msgstr "Segmenttejä:" +msgstr "Se_gmenttejä:" #: plug-ins/common/tiler.c:66 msgid "_Make Seamless" @@ -7617,7 +7185,7 @@ #: plug-ins/common/uniteditor.c:94 msgid "Saved" -msgstr "Talleta" +msgstr "Tallennettu" #: plug-ins/common/uniteditor.c:94 msgid "" @@ -7696,14 +7264,12 @@ msgstr "Luo uusi yksikkö" #: plug-ins/common/uniteditor.c:127 -#, fuzzy msgid "Create a new unit with the currently selected unit as template." msgstr "Luo uusi yksikkö nykyinen mallina" #: plug-ins/common/uniteditor.c:151 -#, fuzzy msgid "_Unit Editor" -msgstr "Yksikköeditori" +msgstr "_Yksikköeditori" #: plug-ins/common/uniteditor.c:210 msgid "New Unit" @@ -7749,21 +7315,21 @@ msgid "Unit Editor" msgstr "Yksikköeditori" -#: plug-ins/common/unsharp.c:149 +#: plug-ins/common/unsharp.c:143 msgid "_Unsharp Mask..." msgstr "" -#: plug-ins/common/unsharp.c:493 +#: plug-ins/common/unsharp.c:468 msgid "Merging..." msgstr "" -#: plug-ins/common/unsharp.c:664 +#: plug-ins/common/unsharp.c:635 msgid "Unsharp Mask" msgstr "" #: plug-ins/common/url.c:85 plug-ins/imagemap/imap_selection.c:421 msgid "URL" -msgstr "" +msgstr "URL" #: plug-ins/common/video.c:44 msgid "_Staggered" @@ -7803,19 +7369,18 @@ #: plug-ins/common/video.c:1817 msgid "Vi_deo..." -msgstr "" +msgstr "Vi_deo..." #: plug-ins/common/video.c:1889 msgid "Video/RGB..." -msgstr "" +msgstr "Video/RGB..." #: plug-ins/common/video.c:2020 msgid "Video" -msgstr "" +msgstr "Video" #. frame for the radio buttons #: plug-ins/common/video.c:2035 -#, fuzzy msgid "Video Pattern" msgstr "Kuvio" @@ -7828,7 +7393,6 @@ msgstr "" #: plug-ins/common/vinvert.c:84 -#, fuzzy msgid "_Value Invert" msgstr "Käänteinen" @@ -7851,26 +7415,23 @@ #: plug-ins/common/vpropagate.c:202 #, fuzzy msgid "_Foreground to peaks" -msgstr "Läpinäkyvä tausta" +msgstr "_Edustaväri" #: plug-ins/common/vpropagate.c:205 -#, fuzzy msgid "O_nly foreground" -msgstr "Tausta" +msgstr "Vain edusta" #: plug-ins/common/vpropagate.c:208 -#, fuzzy msgid "Only b_ackground" -msgstr "Tausta" +msgstr "Vain tausta" #: plug-ins/common/vpropagate.c:211 msgid "Mor_e opaque" -msgstr "" +msgstr "Lisää peittoa" #: plug-ins/common/vpropagate.c:214 -#, fuzzy msgid "More t_ransparent" -msgstr "Läpinäkyvä tausta" +msgstr "Lisää läpinäkyvyyttä" #: plug-ins/common/vpropagate.c:242 msgid "_Value Propagate..." @@ -7897,41 +7458,35 @@ #. Parameter settings #: plug-ins/common/vpropagate.c:1116 msgid "Propagate" -msgstr "" +msgstr "Etenemisnopeus" #: plug-ins/common/vpropagate.c:1129 -#, fuzzy msgid "Lower t_hreshold:" -msgstr "Kynnysarvo:" +msgstr "Alempi kynnysarvo:" #: plug-ins/common/vpropagate.c:1141 -#, fuzzy msgid "_Upper threshold:" -msgstr "Kynnysarvo:" +msgstr "Ylempi kynnysarvo:" #: plug-ins/common/vpropagate.c:1153 msgid "_Propagating rate:" -msgstr "" +msgstr "Etenemisnopeus:" #: plug-ins/common/vpropagate.c:1164 -#, fuzzy msgid "To l_eft" -msgstr "Vasen:" +msgstr "Vasemmalle" #: plug-ins/common/vpropagate.c:1167 -#, fuzzy msgid "To _right" -msgstr "Valo" +msgstr "Oikealle" #: plug-ins/common/vpropagate.c:1170 -#, fuzzy msgid "To _top" -msgstr "Ylä:" +msgstr "Ylös" #: plug-ins/common/vpropagate.c:1173 -#, fuzzy msgid "To _bottom" -msgstr "Ala:" +msgstr "Alas" #: plug-ins/common/vpropagate.c:1182 msgid "Propagating _Alpha Channel" @@ -7942,44 +7497,39 @@ msgstr "" #: plug-ins/common/warp.c:247 -#, fuzzy msgid "_Warp..." -msgstr "Warping..." +msgstr "" #: plug-ins/common/warp.c:391 msgid "Warp" msgstr "" #: plug-ins/common/warp.c:405 -#, fuzzy msgid "Basic Options" -msgstr "Talletus asetukset" +msgstr "Perusasetukset" #: plug-ins/common/warp.c:427 -#, fuzzy msgid "Step size:" -msgstr "Koko:" +msgstr "Askelkoko:" #: plug-ins/common/warp.c:441 plug-ins/ifscompose/ifscompose.c:1214 msgid "Iterations:" -msgstr "" +msgstr "Iteraatiota:" #. Displacement map menu #: plug-ins/common/warp.c:450 -#, fuzzy msgid "Displacement map:" -msgstr "Siirtymä:" +msgstr "Poikkeutuskartta:" #. ======================================================================= #. Displacement Type #: plug-ins/common/warp.c:468 -#, fuzzy msgid "On edges:" -msgstr "Terävät reunat" +msgstr "Reunoilla:" #: plug-ins/common/warp.c:479 msgid "Wrap" -msgstr "" +msgstr "Kääri" #: plug-ins/common/warp.c:494 msgid "Smear" @@ -7991,66 +7541,59 @@ msgstr "Musta" #: plug-ins/common/warp.c:524 -#, fuzzy msgid "FG color" -msgstr "Ei värejä" +msgstr "Edustaväri" #. -------------------------------------------------------------------- #. --------- The secondary table -------------------------- #: plug-ins/common/warp.c:544 -#, fuzzy msgid "Advanced Options" -msgstr "Talletus asetukset" +msgstr "Kehittyneet asetukset" #: plug-ins/common/warp.c:560 #, fuzzy msgid "Dither size:" -msgstr "Koko" +msgstr "Koko:" #: plug-ins/common/warp.c:573 -#, fuzzy msgid "Rotation angle:" -msgstr "Aloituskulma:" +msgstr "Kierroskulma:" #: plug-ins/common/warp.c:586 msgid "Substeps:" -msgstr "" +msgstr "Aliaskeleita:" #. Magnitude map menu #: plug-ins/common/warp.c:595 -#, fuzzy msgid "Magnitude map:" -msgstr "Magenta:" +msgstr "Suuruuskartta:" #: plug-ins/common/warp.c:617 msgid "Use magnitude map" -msgstr "" +msgstr "Käytä suuruuskarttaa" #. -------------------------------------------------------------------- #. --------- The "other" table -------------------------- #: plug-ins/common/warp.c:630 -#, fuzzy msgid "More Advanced Options" -msgstr "Esikatselun asetukset" +msgstr "Lisää kehittyneitä asetuksia" #: plug-ins/common/warp.c:647 -#, fuzzy msgid "Gradient scale:" -msgstr "Väriliuku:" +msgstr "Väriliu'n skaala:" #: plug-ins/common/warp.c:670 msgid "Gradient map selection menu" msgstr "" #: plug-ins/common/warp.c:680 -#, fuzzy msgid "Vector mag:" -msgstr "Vektorinkulma:" +msgstr "Vektorin suuruus:" #. Angle #: plug-ins/common/warp.c:695 plug-ins/ifscompose/ifscompose.c:586 msgid "Angle:" -msgstr "" +msgstr "Kulma:" #: plug-ins/common/warp.c:718 msgid "Fixed-direction-vector map selection menu" @@ -8081,9 +7624,8 @@ msgstr "" #: plug-ins/common/waves.c:127 -#, fuzzy msgid "_Waves..." -msgstr "Aallot" +msgstr "_Aallot..." #: plug-ins/common/waves.c:249 msgid "Waves" @@ -8091,19 +7633,19 @@ #: plug-ins/common/waves.c:287 msgid "_Reflective" -msgstr "Heijastava" +msgstr "_Heijastava" #: plug-ins/common/waves.c:306 msgid "_Amplitude:" -msgstr "Amplitudi:" +msgstr "_Amplitudi:" #: plug-ins/common/waves.c:318 msgid "_Phase:" -msgstr "Vaihe:" +msgstr "_Vaihe:" #: plug-ins/common/waves.c:330 msgid "_Wavelength:" -msgstr "Aallonpituus:" +msgstr "Aallon_pituus:" #: plug-ins/common/waves.c:431 msgid "Waving..." @@ -8144,35 +7686,32 @@ msgstr "" #: plug-ins/common/whirlpinch.c:564 -#, fuzzy msgid "_Whirl angle:" -msgstr "Aloituskulma:" +msgstr "_Kulma:" #: plug-ins/common/whirlpinch.c:576 -#, fuzzy msgid "_Pinch amount:" -msgstr "Ympäristö:" +msgstr "_Määrä:" #: plug-ins/common/winclipboard.c:109 msgid "Copy to Clipboard" -msgstr "" +msgstr "Kopioi leikepöydälle" #: plug-ins/common/winclipboard.c:121 msgid "Paste from Clipboard" -msgstr "" +msgstr "Liitä leikepöydältä" #: plug-ins/common/winclipboard.c:133 -#, fuzzy msgid "From Clipboard" -msgstr "Väriksi" +msgstr "Leikepöydältä" #: plug-ins/common/winclipboard.c:331 msgid "Copying..." -msgstr "" +msgstr "Kopioidaan..." #: plug-ins/common/winclipboard.c:494 msgid "Unsupported format or Clipboard empty!" -msgstr "" +msgstr "Tuntematon muoto tai leikepöytä on tyhjä!" #: plug-ins/common/winclipboard.c:505 msgid "Can't get Clipboard data." @@ -8182,24 +7721,23 @@ #. #: plug-ins/common/winclipboard.c:587 msgid "Pasted" -msgstr "" +msgstr "Liitetty" #: plug-ins/common/winclipboard.c:600 msgid "Pasting..." -msgstr "" +msgstr "Liitetään..." #: plug-ins/common/wind.c:183 -#, fuzzy msgid "Wi_nd..." -msgstr "Aallotetaan..." +msgstr "_Tuuli..." #: plug-ins/common/wind.c:315 msgid "Rendering Blast..." -msgstr "" +msgstr "Luodaan puuska..." #: plug-ins/common/wind.c:438 msgid "Rendering Wind..." -msgstr "" +msgstr "Luodaan tuuli..." #: plug-ins/common/wind.c:873 msgid "Wind" @@ -8210,7 +7748,7 @@ #. ***************************************************** #: plug-ins/common/wind.c:906 msgid "Style" -msgstr "" +msgstr "Tyyli" #: plug-ins/common/wind.c:910 msgid "_Wind" @@ -8233,7 +7771,7 @@ #. ************************************************** #: plug-ins/common/wind.c:954 msgid "Edge Affected" -msgstr "" +msgstr "Vaikutus reunaan" #: plug-ins/common/wind.c:958 msgid "L_eading" @@ -8249,50 +7787,48 @@ #: plug-ins/common/wind.c:997 msgid "Higher values restrict the effect to fewer areas of the image" -msgstr "" +msgstr "Suuremmat arvot rajoittavat efektin pienemmille alueille kuvasta" #: plug-ins/common/wind.c:1012 plug-ins/gimpressionist/orientmap.c:669 msgid "_Strength:" -msgstr "Voima:" +msgstr "_Voima:" #: plug-ins/common/wind.c:1016 msgid "Higher values increase the magnitude of the effect" -msgstr "" +msgstr "Suuremmat arvot suurentavat efektin voimakkuutta" #: plug-ins/common/winprint.c:224 -#, fuzzy msgid "_Print" -msgstr "pistemäinen" +msgstr "_Tulosta" #: plug-ins/common/winprint.c:236 -#, fuzzy msgid "Page Setup" -msgstr "Asetukset" +msgstr "Sivun asetukset" #: plug-ins/common/winprint.c:341 #, c-format msgid "PrintDlg failed: %d" -msgstr "" +msgstr "Kirjoitindialogi epäonnistui: %d" #: plug-ins/common/winprint.c:377 msgid "Printer doesn't support bitmaps" -msgstr "" +msgstr "Kirjoitin ei tue bittikarttoja" #: plug-ins/common/winprint.c:418 msgid "StartPage failed" -msgstr "" +msgstr "Tulostuksen aloitus epäonnistui." #: plug-ins/common/winprint.c:427 plug-ins/print/print-image-gimp.c:320 msgid "Printing..." -msgstr "" +msgstr "Tulostetaan..." #: plug-ins/common/winprint.c:459 msgid "CreateDIBSection failed" -msgstr "" +msgstr "CreateDIBSection -funktiokutsu epäonnistui." #: plug-ins/common/winprint.c:495 msgid "SetStretchBltMode failed (warning only)" -msgstr "" +msgstr "Varoitus: SetStretchBltMode -funktiokutsu epäonnistui." #: plug-ins/common/winprint.c:558 #, c-format @@ -8308,37 +7844,36 @@ #: plug-ins/common/winprint.c:634 #, c-format msgid "PageSetupDlg failed: %d" -msgstr "" +msgstr "Kirjoittimen ominaisuuksia ei voitu avata: %d" #: plug-ins/common/wmf.c:131 msgid "Microsoft WMF file" msgstr "" #: plug-ins/common/wmf.c:336 -#, fuzzy msgid "" "WMF file does not\n" "specify a size!" msgstr "" -"SVG tiedostossa ei\n" +"WMF tiedostossa ei\n" "määritellä kokoa!" #: plug-ins/common/wmf.c:484 msgid "Render Windows Metafile" -msgstr "" +msgstr "Lataa Windows Metafile" #: plug-ins/common/wmf.c:947 plug-ins/sgi/sgi.c:318 -#, fuzzy, c-format +#, c-format msgid "Could not open '%s' for reading." -msgstr "Ei voi avata %s" +msgstr "Ei voi avata \"%s\" lukua varten." #: plug-ins/common/wmf.c:963 msgid "Rendered WMF" -msgstr "" +msgstr "Luotu WMF" #: plug-ins/common/xbm.c:169 plug-ins/common/xbm.c:187 msgid "X BitMap image" -msgstr "" +msgstr "X-BitMap-kuva" #: plug-ins/common/xbm.c:241 msgid "Created with The GIMP" @@ -8389,56 +7924,56 @@ #: plug-ins/common/xbm.c:1148 msgid "Save as XBM" -msgstr "" +msgstr "Tallenna XBM" #. parameter settings #: plug-ins/common/xbm.c:1158 msgid "XBM Options" -msgstr "" +msgstr "XBM asetukset" #. X10 format #: plug-ins/common/xbm.c:1167 msgid "_X10 format bitmap" -msgstr "" +msgstr "_X10 bittikartta" #: plug-ins/common/xbm.c:1187 msgid "_Identifier prefix:" -msgstr "" +msgstr "_Tunnistusvakio:" #. hotspot toggle #: plug-ins/common/xbm.c:1209 msgid "_Write hot spot values" -msgstr "" +msgstr "Kirjoita kohdistuspisteet" #: plug-ins/common/xbm.c:1231 msgid "Hot spot _X:" -msgstr "" +msgstr "Kohdistuspiste X:" #: plug-ins/common/xbm.c:1241 msgid "Hot spot _Y:" -msgstr "" +msgstr "Kohdistuspiste X:" #. mask file #: plug-ins/common/xbm.c:1248 msgid "Mask File" -msgstr "" +msgstr "Maskitiedosto" #: plug-ins/common/xbm.c:1258 msgid "W_rite extra mask file" -msgstr "" +msgstr "_Luo myös maskitiedosto" #: plug-ins/common/xbm.c:1271 msgid "_Mask file extension:" -msgstr "" +msgstr "_Maskitiedoston pääte:" #: plug-ins/common/xpm.c:170 plug-ins/common/xpm.c:195 msgid "X PixMap image" msgstr "" #: plug-ins/common/xpm.c:354 -#, fuzzy, c-format +#, c-format msgid "Error opening file '%s'" -msgstr "Ei voi avata: %s" +msgstr "Virhe avattaessa %s" #: plug-ins/common/xpm.c:359 msgid "XPM file invalid" @@ -8446,12 +7981,11 @@ #: plug-ins/common/xpm.c:780 msgid "Save as XPM" -msgstr "" +msgstr "Tallenna XPM" #: plug-ins/common/xpm.c:796 -#, fuzzy msgid "_Alpha threshold:" -msgstr "Kynnysarvo:" +msgstr "Alfa-raja:" #: plug-ins/common/xwd.c:277 plug-ins/common/xwd.c:297 msgid "X window dump" @@ -8460,12 +7994,11 @@ #: plug-ins/common/xwd.c:430 #, c-format msgid "Could not read XWD header from '%s'" -msgstr "" +msgstr "Ei XWD otsikoita tiedostosa '%s'" #: plug-ins/common/xwd.c:468 -#, fuzzy msgid "Can't read color entries" -msgstr "Virhe luettaessa tiedostoa '%s'" +msgstr "" #: plug-ins/common/xwd.c:527 #, c-format @@ -8477,7 +8010,7 @@ #: plug-ins/common/xwd.c:557 msgid "Cannot save images with alpha channels." -msgstr "" +msgstr "Ei voi tallentaa kuvia joissa on alfakanava." #: plug-ins/common/xwd.c:2160 msgid "Error during writing indexed/gray image" @@ -8497,7 +8030,7 @@ #: plug-ins/common/zealouscrop.c:234 msgid "Nothing to crop." -msgstr "" +msgstr "Ei rajattavaa." #: plug-ins/dbbrowser/gimpprocbrowser.c:128 #: plug-ins/dbbrowser/gimpprocbrowser.c:142 @@ -8513,12 +8046,12 @@ #: plug-ins/dbbrowser/gimpprocbrowser.c:133 #: plug-ins/dbbrowser/gimpprocbrowser.c:147 msgid "Search by _Blurb" -msgstr "Etsi kuvauksella" +msgstr "Etsi _kuvauksella" #: plug-ins/dbbrowser/gimpprocbrowser.c:224 #: plug-ins/dbbrowser/plugin-browser.c:718 msgid "_Search:" -msgstr "Haku:" +msgstr "_Haku:" #: plug-ins/dbbrowser/gimpprocbrowser.c:386 #: plug-ins/dbbrowser/plugin-browser.c:397 @@ -8534,14 +8067,13 @@ msgstr "Etsitään - odota" #: plug-ins/dbbrowser/gimpprocbrowser.c:428 -#, fuzzy msgid "1 Procedure" -msgstr "Väliaikainen proseduuri" +msgstr "yksi proseduuri" #: plug-ins/dbbrowser/gimpprocbrowser.c:430 -#, fuzzy, c-format +#, c-format msgid "%d Procedures" -msgstr "Väliaikainen proseduuri" +msgstr "%d proseduuria" #: plug-ins/dbbrowser/gimpprocbrowser.c:476 #: plug-ins/dbbrowser/plugin-browser.c:516 @@ -8566,7 +8098,7 @@ #: plug-ins/dbbrowser/gimpprocview.c:159 msgid "Additional Information" -msgstr "" +msgstr "Lisätietoja" #: plug-ins/dbbrowser/gimpprocview.c:198 msgid "Author:" @@ -8597,24 +8129,21 @@ msgstr "Väliaikainen proseduuri" #: plug-ins/dbbrowser/plugin-browser.c:151 -#, fuzzy msgid "_Plug-In Browser" -msgstr "DB Selain" +msgstr "Liitännäisselain" #: plug-ins/dbbrowser/plugin-browser.c:418 -#, fuzzy msgid "1 Plug-In Interface" -msgstr "Liitännäisiä: %d" +msgstr "yksi liitännäisrajapinta" #: plug-ins/dbbrowser/plugin-browser.c:420 -#, fuzzy, c-format +#, c-format msgid "%d Plug-In Interfaces" -msgstr "Liitännäisiä: %d" +msgstr "%d liitännäisrajapintaa" #: plug-ins/dbbrowser/plugin-browser.c:544 -#, fuzzy msgid "Plug-In Browser" -msgstr "DB Selain" +msgstr "Liitännäisselain" #: plug-ins/dbbrowser/plugin-browser.c:595 msgid "Name" @@ -8622,18 +8151,15 @@ #: plug-ins/dbbrowser/plugin-browser.c:603 #: plug-ins/dbbrowser/plugin-browser.c:672 -#, fuzzy msgid "Insertion Date" -msgstr "Mutaationopeus:" +msgstr "Päivämäärä" #: plug-ins/dbbrowser/plugin-browser.c:611 -#, fuzzy msgid "Menu Path" -msgstr "Valikkopolku:" +msgstr "Valikkopolku" #: plug-ins/dbbrowser/plugin-browser.c:619 #: plug-ins/dbbrowser/plugin-browser.c:681 -#, fuzzy msgid "Image Types" msgstr "Kuvatyypit" @@ -8642,26 +8168,24 @@ msgstr "Listanäyttö" #: plug-ins/dbbrowser/plugin-browser.c:663 -#, fuzzy msgid "Menu Path/Name" -msgstr "Menupolku/nimi" +msgstr "Valikkopolku/nimi" #: plug-ins/dbbrowser/plugin-browser.c:704 -#, fuzzy msgid "Tree View" msgstr "Puunäyttö" #: plug-ins/dbbrowser/procedure-browser.c:89 msgid "Procedure _Browser" -msgstr "" +msgstr "Proseduuriselain" #: plug-ins/faxg3/faxg3.c:100 msgid "G3 fax image" -msgstr "" +msgstr "G3-fax-kuva" #: plug-ins/fits/fits.c:159 plug-ins/fits/fits.c:178 msgid "Flexible Image Transport System" -msgstr "" +msgstr "Flexible Image Transport System -kuva" #: plug-ins/fits/fits.c:346 msgid "Error during open of FITS file" @@ -8677,7 +8201,7 @@ #: plug-ins/fits/fits.c:969 msgid "Load FITS File" -msgstr "" +msgstr "Lataa FITS tiedosto" #: plug-ins/fits/fits.c:984 msgid "BLANK/NaN Pixel Replacement" @@ -8701,9 +8225,8 @@ msgstr "" #: plug-ins/flame/flame.c:133 -#, fuzzy msgid "_Flame..." -msgstr "Liekki" +msgstr "_Liekki..." #: plug-ins/flame/flame.c:227 msgid "Drawing Flame..." @@ -8749,23 +8272,23 @@ #: plug-ins/flame/flame.c:736 msgid "Swirl" -msgstr "" +msgstr "Pyörre" #: plug-ins/flame/flame.c:737 msgid "Horseshoe" -msgstr "" +msgstr "Hevosenkenkä" #: plug-ins/flame/flame.c:738 plug-ins/gfig/gfig-dialog.c:1403 msgid "Polar" -msgstr "" +msgstr "Polaari" #: plug-ins/flame/flame.c:739 msgid "Bent" -msgstr "" +msgstr "Taipunut" #: plug-ins/flame/flame.c:752 msgid "_Variation:" -msgstr "Variaatio:" +msgstr "_Variaatio:" #: plug-ins/flame/flame.c:774 msgid "Load Flame" @@ -8781,7 +8304,7 @@ #: plug-ins/flame/flame.c:1025 msgid "_Rendering" -msgstr "Muodostan..." +msgstr "_Muodostan" #: plug-ins/flame/flame.c:1051 msgid "Co_ntrast:" @@ -8792,13 +8315,12 @@ msgstr "_Gamma:" #: plug-ins/flame/flame.c:1079 -#, fuzzy msgid "Sample _density:" -msgstr "Näytetiheys" +msgstr "Näytetiheys:" #: plug-ins/flame/flame.c:1090 msgid "Spa_tial oversample:" -msgstr "" +msgstr "Ylinäytteistys:" #: plug-ins/flame/flame.c:1101 msgid "Spatial _filter radius:" @@ -8806,34 +8328,33 @@ #: plug-ins/flame/flame.c:1120 msgid "Color_map:" -msgstr "Värit" +msgstr "Värikartta:" #: plug-ins/flame/flame.c:1162 -#, fuzzy msgid "Custom gradient" msgstr "Oma väriliuku" #: plug-ins/flame/flame.c:1188 msgid "C_amera" -msgstr "Kamera" +msgstr "_Kamera" #: plug-ins/flame/flame.c:1193 msgid "_Zoom:" -msgstr "_Zoom:" +msgstr "_Suurennus:" -#: plug-ins/gfig/gfig-bezier.c:452 +#: plug-ins/gfig/gfig-bezier.c:448 msgid "Closed" msgstr "Suljettu" -#: plug-ins/gfig/gfig-bezier.c:457 +#: plug-ins/gfig/gfig-bezier.c:453 msgid "Close curve on completion" msgstr "Sulje käyrä lopetettaessa" -#: plug-ins/gfig/gfig-bezier.c:462 +#: plug-ins/gfig/gfig-bezier.c:458 msgid "Show Line Frame" msgstr "" -#: plug-ins/gfig/gfig-bezier.c:467 +#: plug-ins/gfig/gfig-bezier.c:463 msgid "Draws lines between the control points. Only during curve creation" msgstr "" @@ -8844,49 +8365,41 @@ #. Tool options notebook #: plug-ins/gfig/gfig-dialog.c:341 -#, fuzzy msgid "Tool options" -msgstr "Ei valintoja..." +msgstr "Työkaluasetukset" #: plug-ins/gfig/gfig-dialog.c:358 -#, fuzzy msgid "_Stroke" -msgstr "_Säteitä:" +msgstr "Piirto" #. Fill frame on right side #: plug-ins/gfig/gfig-dialog.c:405 -#, fuzzy msgid "Fill" -msgstr "Filmi" +msgstr "Täyttö" #: plug-ins/gfig/gfig-dialog.c:419 msgid "No fill" -msgstr "" +msgstr "Ei täyttöä" #: plug-ins/gfig/gfig-dialog.c:420 -#, fuzzy msgid "Color fill" -msgstr "Väri" +msgstr "Väritäyttö" #: plug-ins/gfig/gfig-dialog.c:421 -#, fuzzy msgid "Pattern fill" -msgstr "Kuvio" +msgstr "Kuviotäyttö" #: plug-ins/gfig/gfig-dialog.c:422 -#, fuzzy msgid "Gradient fill" -msgstr "Gradientti" +msgstr "Väriliukutäyttö" #. "show image" checkbutton at bottom of style frame #: plug-ins/gfig/gfig-dialog.c:482 -#, fuzzy msgid "Show image" msgstr "Näytä kuva" #. "show grid" checkbutton at bottom of style frame #: plug-ins/gfig/gfig-dialog.c:504 -#, fuzzy msgid "Show grid" msgstr "Näytä apuviivat" @@ -8899,42 +8412,38 @@ msgstr "Tallenna Gfig piirros" #: plug-ins/gfig/gfig-dialog.c:820 -#, fuzzy msgid "First Gfig" -msgstr "Tietoja" +msgstr "" #: plug-ins/gfig/gfig-dialog.c:859 -#, fuzzy msgid "_Undo" -msgstr "Yksikköeditori" +msgstr "Kumoa" #: plug-ins/gfig/gfig-dialog.c:863 -#, fuzzy msgid "_Clear" msgstr "Tyhjennä" #: plug-ins/gfig/gfig-dialog.c:867 -#, fuzzy msgid "_Grid" -msgstr "Ristikon koko:" +msgstr "Ristikko" #: plug-ins/gfig/gfig-dialog.c:875 -#, fuzzy msgid "Raise selected object" -msgstr "Poista objekti" +msgstr "Nosta valitut objektit" #: plug-ins/gfig/gfig-dialog.c:879 -#, fuzzy msgid "Lower selected object" -msgstr "Näytä seuraava objekti" +msgstr "Laske valitut objektit" #: plug-ins/gfig/gfig-dialog.c:883 +#, fuzzy msgid "Raise selected object to top" -msgstr "" +msgstr "Siirrä valitut objektit" #: plug-ins/gfig/gfig-dialog.c:887 +#, fuzzy msgid "Lower selected object to bottom" -msgstr "" +msgstr "Siirrä valitut objektit" #: plug-ins/gfig/gfig-dialog.c:891 msgid "Show previous object" @@ -8961,7 +8470,6 @@ msgstr "Luo ellipsi" #: plug-ins/gfig/gfig-dialog.c:914 -#, fuzzy msgid "Create arc" msgstr "Luo kaari" @@ -8998,9 +8506,8 @@ msgstr "Poista objekti" #: plug-ins/gfig/gfig-dialog.c:942 -#, fuzzy msgid "Select an object" -msgstr "Poista objekti" +msgstr "Valitse objekti" #: plug-ins/gfig/gfig-dialog.c:1023 msgid "This tool has no options" @@ -9008,14 +8515,13 @@ #. Put buttons in #: plug-ins/gfig/gfig-dialog.c:1230 -#, fuzzy msgid "Show position" msgstr "Näytä sijainti" #: plug-ins/gfig/gfig-dialog.c:1242 #, fuzzy msgid "Show control points" -msgstr "Ei värejä" +msgstr "Näytä väri" #: plug-ins/gfig/gfig-dialog.c:1276 #, fuzzy @@ -9048,9 +8554,8 @@ msgstr "Tausta:" #: plug-ins/gfig/gfig-dialog.c:1307 -#, fuzzy msgid "Feather" -msgstr " " +msgstr "" #: plug-ins/gfig/gfig-dialog.c:1331 msgid "Radius:" @@ -9070,7 +8575,6 @@ msgstr "Isometrinen" #: plug-ins/gfig/gfig-dialog.c:1413 -#, fuzzy msgid "Grid type:" msgstr "Apuviivojen tyyppi:" @@ -9091,29 +8595,24 @@ msgstr "Vaaleampi" #: plug-ins/gfig/gfig-dialog.c:1426 -#, fuzzy msgid "Very dark" msgstr "Hyvin tumma" #: plug-ins/gfig/gfig-dialog.c:1435 -#, fuzzy msgid "Grid color:" msgstr "Apuviivojen väri:" #: plug-ins/gfig/gfig-dialog.c:1638 -#, fuzzy msgid "Sides:" -msgstr "Koko:" +msgstr "Sivut:" #: plug-ins/gfig/gfig-dialog.c:1648 -#, fuzzy msgid "Right" -msgstr "_Oikea" +msgstr "Oikea" #: plug-ins/gfig/gfig-dialog.c:1649 -#, fuzzy msgid "Left" -msgstr "_Vasen" +msgstr "Vasen" #: plug-ins/gfig/gfig-dialog.c:1659 plug-ins/gimpressionist/orientation.c:130 #: plug-ins/print/gimp_main_window.c:500 @@ -9142,23 +8641,20 @@ #. Position labels #: plug-ins/gfig/gfig-preview.c:383 -#, fuzzy msgid "XY position:" -msgstr "XY sijainti:" +msgstr "XY-sijainti:" #: plug-ins/gfig/gfig-spiral.c:59 -#, fuzzy msgid "Spiral Number of Turns" -msgstr "Spiraalin pisteiden määrä" +msgstr "Spiraalin kierrosten määrä" #: plug-ins/gfig/gfig-star.c:57 msgid "Star Number of Points" msgstr "Tähden kärkien määrä" #: plug-ins/gfig/gfig.c:132 -#, fuzzy msgid "_Gfig..." -msgstr "Gfig" +msgstr "_Gfig..." #: plug-ins/gfig/gfig.c:726 msgid "" @@ -9180,9 +8676,8 @@ msgstr "" #: plug-ins/gflare/gflare.c:821 -#, fuzzy msgid "_GFlare..." -msgstr "GFlare" +msgstr "_GFlare..." #: plug-ins/gflare/gflare.c:960 msgid "Gradient Flare..." @@ -9196,7 +8691,7 @@ #: plug-ins/gflare/gflare.c:1270 #, c-format msgid "'%s' is not a valid GFlare file." -msgstr "'%s' ei ole GFlare-tiedosto" +msgstr "'%s' ei ole GFlare-tiedosto." #: plug-ins/gflare/gflare.c:1324 #, c-format @@ -9221,10 +8716,9 @@ #. #: plug-ins/gflare/gflare.c:2294 msgid "GFlare" -msgstr "GFlare" +msgstr "" #: plug-ins/gflare/gflare.c:2346 -#, fuzzy msgid "A_uto update preview" msgstr "Automaattinen esikatselu" @@ -9238,23 +8732,21 @@ #: plug-ins/gflare/gflare.c:2699 msgid "Ro_tation:" -msgstr "Pyöritys:" +msgstr "Kierto:" #: plug-ins/gflare/gflare.c:2711 -#, fuzzy msgid "_Hue rotation:" -msgstr "Sävyn vaihtelu:" +msgstr "_Sävyn kierto:" #: plug-ins/gflare/gflare.c:2723 msgid "Vector _Angle:" -msgstr "Vektorinkulma:" +msgstr "Vektorinkulm_a:" #: plug-ins/gflare/gflare.c:2735 msgid "Vector _Length:" msgstr "Vektorin pituus:" #: plug-ins/gflare/gflare.c:2756 -#, fuzzy msgid "A_daptive supersampling" msgstr "Ylinäytteistys" @@ -9267,9 +8759,8 @@ msgstr "Kynnysarvo:" #: plug-ins/gflare/gflare.c:2923 -#, fuzzy msgid "S_elector" -msgstr "Heijastavuus" +msgstr "Valitsin" #: plug-ins/gflare/gflare.c:2987 msgid "New GFlare" @@ -9326,7 +8817,7 @@ #: plug-ins/gflare/gflare.c:3378 plug-ins/gflare/gflare.c:3406 #: plug-ins/gflare/gflare.c:3434 msgid "Opacity:" -msgstr "" +msgstr "Peitto:" #: plug-ins/gflare/gflare.c:3391 plug-ins/gflare/gflare.c:3419 #: plug-ins/gflare/gflare.c:3447 @@ -9345,7 +8836,7 @@ #: plug-ins/gflare/gflare.c:3450 plug-ins/gimpressionist/general.c:115 msgid "_General" -msgstr "Yleiset" +msgstr "_Yleiset" #. #. * Gradient Menus @@ -9353,7 +8844,7 @@ #: plug-ins/gflare/gflare.c:3476 plug-ins/gflare/gflare.c:3579 #: plug-ins/gflare/gflare.c:3718 msgid "Gradients" -msgstr "" +msgstr "Väriliukumat" #: plug-ins/gflare/gflare.c:3487 plug-ins/gflare/gflare.c:3592 #: plug-ins/gflare/gflare.c:3729 @@ -9376,28 +8867,28 @@ #: plug-ins/gflare/gflare.c:3527 plug-ins/gflare/gflare.c:3632 #: plug-ins/gflare/gflare.c:3769 msgid "Rotation:" -msgstr "" +msgstr "Kierto:" #: plug-ins/gflare/gflare.c:3539 plug-ins/gflare/gflare.c:3645 #: plug-ins/gflare/gflare.c:3782 msgid "Hue Rotation:" -msgstr "" +msgstr "Sävyn kierto:" #: plug-ins/gflare/gflare.c:3553 msgid "G_low" -msgstr "" +msgstr "Hohto" #: plug-ins/gflare/gflare.c:3657 msgid "# of Spikes:" -msgstr "" +msgstr "Piikkien lukumäärä:" #: plug-ins/gflare/gflare.c:3669 msgid "Spike Thickness:" -msgstr "" +msgstr "Piikin paksuus:" #: plug-ins/gflare/gflare.c:3683 msgid "_Rays" -msgstr "Säteet" +msgstr "_Säteet" #: plug-ins/gflare/gflare.c:3733 msgid "Size Factor Gradient:" @@ -9429,9 +8920,8 @@ msgstr "Satunnaisluku:" #: plug-ins/gflare/gflare.c:3871 -#, fuzzy msgid "_Second Flares" -msgstr "Tausta" +msgstr "" #: plug-ins/gfli/gfli.c:158 plug-ins/gfli/gfli.c:178 msgid "AutoDesk FLIC animation" @@ -9496,7 +8986,7 @@ #: plug-ins/gimpressionist/color.c:42 msgid "Co_lor" -msgstr "Väri" +msgstr "_Väri" #: plug-ins/gimpressionist/color.c:52 msgid "A_verage under brush" @@ -9516,7 +9006,7 @@ #: plug-ins/gimpressionist/color.c:76 msgid "Color _noise:" -msgstr "Värikohina" +msgstr "Värikohina:" #: plug-ins/gimpressionist/color.c:80 msgid "Adds random noise to the color" @@ -9557,7 +9047,7 @@ #. Tileable checkbox #: plug-ins/gimpressionist/general.c:194 plug-ins/maze/maze_face.c:264 msgid "Tileable" -msgstr "" +msgstr "Saumaton" #: plug-ins/gimpressionist/general.c:198 msgid "Selects if the resulting image should be seamlessly tileable" @@ -9581,7 +9071,7 @@ #: plug-ins/gimpressionist/general.c:230 msgid "Shadow darken:" -msgstr "Varjon tummennus" +msgstr "Varjon tummennus:" #: plug-ins/gimpressionist/general.c:234 msgid "How much to \"darken\" the drop shadow" @@ -9605,18 +9095,16 @@ msgstr "" #: plug-ins/gimpressionist/general.c:257 -#, fuzzy msgid "Deviation threshold:" -msgstr "Kohdekanava:" +msgstr "Poikkeamaraja:" #: plug-ins/gimpressionist/general.c:261 msgid "A bailout-value for adaptive selections" msgstr "" #: plug-ins/gimpressionist/gimp.c:79 -#, fuzzy msgid "_GIMPressionist..." -msgstr "GIMPressionisti" +msgstr "_GIMPressionisti..." #: plug-ins/gimpressionist/gimp.c:350 msgid "Painting..." @@ -9653,7 +9141,7 @@ #: plug-ins/gimpressionist/orientation.c:104 #, fuzzy msgid "The starting angle of the first brush to create" -msgstr "Säädä vihreän värin (G) tai värikylläisyyden (S) kanavan vaihetta" +msgstr "Suurin luotava sivellin" #: plug-ins/gimpressionist/orientation.c:112 msgid "Angle span:" @@ -9802,18 +9290,16 @@ msgstr "" #: plug-ins/gimpressionist/orientmap.c:647 -#, fuzzy msgid "A_ngle:" -msgstr "Sininen:" +msgstr "Kulma:" #: plug-ins/gimpressionist/orientmap.c:651 msgid "Change the angle of the selected vector" msgstr "" #: plug-ins/gimpressionist/orientmap.c:658 -#, fuzzy msgid "Ang_le offset:" -msgstr "Y-siirtymä:" +msgstr "Kulmasiirtymä:" #: plug-ins/gimpressionist/orientmap.c:662 msgid "Offset all vectors with a given angle" @@ -9824,28 +9310,25 @@ msgstr "" #: plug-ins/gimpressionist/orientmap.c:680 -#, fuzzy msgid "S_trength exp.:" -msgstr "Pituus:" +msgstr "Voima exp.:" #: plug-ins/gimpressionist/orientmap.c:684 #: plug-ins/gimpressionist/sizemap.c:513 msgid "Change the exponent of the strength" -msgstr "" +msgstr "Vaihda voiman exponenttia" #: plug-ins/gimpressionist/paper.c:120 -#, fuzzy msgid "P_aper" -msgstr "Materiaali" +msgstr "Paperi" #: plug-ins/gimpressionist/paper.c:155 msgid "Inverts the Papers texture" -msgstr "" +msgstr "Kääntää paperin tekstuurin" #: plug-ins/gimpressionist/paper.c:159 -#, fuzzy msgid "O_verlay" -msgstr "Käänteinen" +msgstr "" #: plug-ins/gimpressionist/paper.c:164 msgid "Applies the paper as it is (without embossing it)" @@ -9857,19 +9340,19 @@ #: plug-ins/gimpressionist/placement.c:49 msgid "Pl_acement" -msgstr "" +msgstr "Sijoittelu" #: plug-ins/gimpressionist/placement.c:55 msgid "Placement" -msgstr "" +msgstr "Sijoittelu" #: plug-ins/gimpressionist/placement.c:59 msgid "Randomly" -msgstr "" +msgstr "Satunnaisesti" #: plug-ins/gimpressionist/placement.c:63 msgid "Evenly distributed" -msgstr "" +msgstr "Tasaisesti jaettu" #: plug-ins/gimpressionist/placement.c:71 msgid "Place strokes randomly around the image" @@ -9880,9 +9363,8 @@ msgstr "" #: plug-ins/gimpressionist/placement.c:91 -#, fuzzy msgid "Stroke _density:" -msgstr "Väritiheys" +msgstr "" #: plug-ins/gimpressionist/placement.c:95 msgid "The relative density of the brush strokes" @@ -9901,27 +9383,25 @@ #. * that need not and should not be freed. So this call is OK. #. * #: plug-ins/gimpressionist/ppmtool.c:630 -#, fuzzy, c-format +#, c-format msgid "Failed to save PPM file '%s': %s" -msgstr "Tiedoston kirjoittaminen epäonnistui\n" +msgstr "PPM tiedoston '%s' kirjoittaminen epäonnistui: %s" #: plug-ins/gimpressionist/presets.c:621 msgid "Save Current" -msgstr "" +msgstr "Tallenna nykyinen" #: plug-ins/gimpressionist/presets.c:863 -#, fuzzy msgid "The Gimpressionist Defaults" -msgstr "Gimpressionisti" +msgstr "Gimpressionistin oletukset" #: plug-ins/gimpressionist/presets.c:979 -#, fuzzy msgid "_Presets" -msgstr "Värit" +msgstr "_Esiasetukset" #: plug-ins/gimpressionist/presets.c:994 msgid "Save current..." -msgstr "" +msgstr "Tallenna nykyinen..." #: plug-ins/gimpressionist/presets.c:999 msgid "Save the current settings to the specified file" @@ -9949,38 +9429,35 @@ #: plug-ins/gimpressionist/repaint.c:1160 msgid "Update" -msgstr "" +msgstr "Päivitä" #: plug-ins/gimpressionist/size.c:77 -#, fuzzy msgid "_Size" -msgstr "Koko" +msgstr "_Koko" #: plug-ins/gimpressionist/size.c:91 msgid "Sizes:" -msgstr "" +msgstr "Koot:" #: plug-ins/gimpressionist/size.c:95 msgid "The number of sizes of brushes to use" msgstr "" #: plug-ins/gimpressionist/size.c:103 -#, fuzzy msgid "Minimum size:" msgstr "Minimikorkeus:" #: plug-ins/gimpressionist/size.c:107 msgid "The smallest brush to create" -msgstr "" +msgstr "Pienin luotava sivellin" #: plug-ins/gimpressionist/size.c:115 -#, fuzzy msgid "Maximum size:" msgstr "Maksimikorkeus:" #: plug-ins/gimpressionist/size.c:119 msgid "The largest brush to create" -msgstr "" +msgstr "Suurin luotava sivellin" #: plug-ins/gimpressionist/size.c:133 msgid "Size:" @@ -10055,18 +9532,16 @@ msgstr "" #: plug-ins/gimpressionist/sizemap.c:498 -#, fuzzy msgid "S_trength:" -msgstr "Pituus:" +msgstr "Voimakkuus:" #: plug-ins/gimpressionist/sizemap.c:502 msgid "Change the strength of the selected smvector" msgstr "" #: plug-ins/gimpressionist/sizemap.c:509 -#, fuzzy msgid "St_rength exp.:" -msgstr "Pituus:" +msgstr "Voiman exp.:" #: plug-ins/gimpressionist/sizemap.c:525 msgid "" @@ -10085,35 +9560,35 @@ #: plug-ins/help/domain.c:175 msgid "The GIMP help files are not installed." -msgstr "" +msgstr "Gimp avustustiedostoja ei ole asennettu." #: plug-ins/help/domain.c:177 msgid "There is a problem with the GIMP help files." -msgstr "" +msgstr "GIMP avustustiedosto ongelma." #: plug-ins/help/domain.c:182 msgid "Please check your installation." -msgstr "" +msgstr "Tarkista asennuksesi." #: plug-ins/help/domain.c:190 #, c-format msgid "Help ID '%s' unknown" -msgstr "" +msgstr "Avustus: koodi '%s' on tuntematon" #: plug-ins/help/domain.c:447 -#, fuzzy, c-format +#, c-format msgid "" "Parse error in '%s':\n" "%s" -msgstr "Ei voi avata: %s" +msgstr "" +"Jäsennysvirhe tiedostossa '%s':\n" +"%s" #: plug-ins/helpbrowser/dialog.c:157 -#, fuzzy msgid "GIMP Help browser" -msgstr "GIMPin apuselain" +msgstr "GIMP avustusselain" #: plug-ins/helpbrowser/dialog.c:409 -#, fuzzy msgid "Document not found" msgstr "Tiedostoa ei löytynyt" @@ -10122,24 +9597,23 @@ msgstr "" #: plug-ins/ifscompose/ifscompose.c:357 -#, fuzzy msgid "_IFS Fractal..." -msgstr "Fraktaali" +msgstr "IFS-_Fraktaali..." #. Asym #: plug-ins/ifscompose/ifscompose.c:600 msgid "Asymmetry:" -msgstr "" +msgstr "Epäsymmetrisyys:" #. Shear #: plug-ins/ifscompose/ifscompose.c:614 msgid "Shear:" -msgstr "" +msgstr "Vääntö:" #. Simple color control section #: plug-ins/ifscompose/ifscompose.c:659 msgid "Simple" -msgstr "" +msgstr "Yksinkertainen" #: plug-ins/ifscompose/ifscompose.c:668 #, fuzzy @@ -10148,16 +9622,16 @@ #: plug-ins/ifscompose/ifscompose.c:674 msgid "Scale Hue by:" -msgstr "" +msgstr "Sävyn skaalaus:" #: plug-ins/ifscompose/ifscompose.c:689 msgid "Scale Value by:" -msgstr "" +msgstr "Arvon skaalaus:" #. Full color control section #: plug-ins/ifscompose/ifscompose.c:706 msgid "Full" -msgstr "" +msgstr "Täysi" #: plug-ins/ifscompose/ifscompose.c:713 #, fuzzy @@ -10190,16 +9664,16 @@ #: plug-ins/ifscompose/ifscompose.c:878 msgid "Color Transformation" -msgstr "" +msgstr "Värimuunnos" #: plug-ins/ifscompose/ifscompose.c:888 +#, fuzzy msgid "Relative probability:" -msgstr "" +msgstr "Suhteellinen linkki" #: plug-ins/ifscompose/ifscompose.c:1063 -#, fuzzy msgid "Select _All" -msgstr "Valitse filmin väri" +msgstr "Valitse k_aikki" #: plug-ins/ifscompose/ifscompose.c:1067 #, fuzzy @@ -10207,42 +9681,37 @@ msgstr "Laske esikatselukuva" #: plug-ins/ifscompose/ifscompose.c:1067 -#, fuzzy msgid "Recompute Center" -msgstr "Laske esikatselukuva" +msgstr "" #: plug-ins/ifscompose/ifscompose.c:1071 -#, fuzzy msgid "Render options" msgstr "Yleiset asetukset" #: plug-ins/ifscompose/ifscompose.c:1077 plug-ins/imagemap/imap_cmd_move.c:86 #: plug-ins/imagemap/imap_cmd_object_move.c:57 msgid "Move" -msgstr "" +msgstr "Siirrä" #: plug-ins/ifscompose/ifscompose.c:1080 -#, fuzzy msgid "Rotate" -msgstr "Pyöritä:" +msgstr "Kierretty" #: plug-ins/ifscompose/ifscompose.c:1080 -#, fuzzy msgid "Rotate / Scale" -msgstr "Pyöritä:" +msgstr "Kierrä/skaalaa" #: plug-ins/ifscompose/ifscompose.c:1083 msgid "Stretch" -msgstr "" +msgstr "Venytä" #: plug-ins/ifscompose/ifscompose.c:1180 -#, fuzzy msgid "IFS Fractal Render Options" msgstr "Yleiset asetukset" #: plug-ins/ifscompose/ifscompose.c:1201 msgid "Max. Memory:" -msgstr "" +msgstr "Max. muisti:" #: plug-ins/ifscompose/ifscompose.c:1228 msgid "Subdivide:" @@ -10255,54 +9724,49 @@ #: plug-ins/ifscompose/ifscompose.c:1313 #, c-format msgid "Rendering IFS (%d/%d)..." -msgstr "" +msgstr "Luodaan IFS (%d/%d)..." #. transfer the image to the drawable #: plug-ins/ifscompose/ifscompose.c:1333 #, c-format msgid "Copying IFS to image (%d/%d)..." -msgstr "" +msgstr "Kopioidaan IFS kuvaksi (%d/%d)..." #: plug-ins/ifscompose/ifscompose.c:1476 -#, fuzzy, c-format +#, c-format msgid "Transformation %s" -msgstr "Saturaatio" +msgstr "Muunnos %s" #: plug-ins/ifscompose/ifscompose.c:2400 -#, fuzzy msgid "Save failed" -msgstr "Tallenna" +msgstr "Tallennus epäonnistui" #: plug-ins/ifscompose/ifscompose.c:2481 plug-ins/ifscompose/ifscompose.c:2494 msgid "Open failed" msgstr "" #: plug-ins/ifscompose/ifscompose.c:2489 -#, fuzzy, c-format +#, c-format msgid "File '%s' doesn't seem to be an IFS Fractal file." -msgstr "'%s' ei ole FractalExplorer-tiedosto" +msgstr "\"%s\" ei ole FractalExplorer-tiedosto" #: plug-ins/ifscompose/ifscompose.c:2529 -#, fuzzy msgid "Save as IFS Fraktal file" -msgstr "Tallenna fraktaali tiedostoon" +msgstr "Tallenna IFS-fraktaali tiedostoon" #: plug-ins/ifscompose/ifscompose.c:2559 msgid "Open IFS Fraktal file" -msgstr "" +msgstr "Avaa IFS-tiedosto" #: plug-ins/imagemap/imap_about.c:43 -#, fuzzy msgid "Imagemap plug-in 2.2" -msgstr "Kuvakartta 2.0" +msgstr "Kuvakartta 2.2" #: plug-ins/imagemap/imap_about.c:44 -#, fuzzy msgid "Copyright(c) 1999-2004 by Maurits Rijk" -msgstr "Copyright(c) 1999-2003 Maurits Rijk" +msgstr "Copyright © 1999-2004 by Maurits Rijk" #: plug-ins/imagemap/imap_about.c:46 -#, fuzzy msgid "Released under the GNU General Public License" msgstr " Julkaistu GNU Lisenssillä" @@ -10363,11 +9827,11 @@ #: plug-ins/imagemap/imap_cmd_gimp_guides.c:147 #: plug-ins/imagemap/imap_cmd_gimp_guides.c:251 msgid "Use Gimp Guides" -msgstr "" +msgstr "Käytä GIMP apulinjoja" #: plug-ins/imagemap/imap_cmd_gimp_guides.c:160 msgid "Al_ternate" -msgstr "" +msgstr "Vaihtoehtoinen" #: plug-ins/imagemap/imap_cmd_gimp_guides.c:165 msgid "A_ll" @@ -10375,37 +9839,37 @@ #: plug-ins/imagemap/imap_cmd_gimp_guides.c:169 msgid "Add Additional Guides" -msgstr "" +msgstr "Lisää apulinjoja" #: plug-ins/imagemap/imap_cmd_gimp_guides.c:177 msgid "L_eft Border" -msgstr "_Vasen raja" +msgstr "Vasen marginaali" #: plug-ins/imagemap/imap_cmd_gimp_guides.c:181 msgid "_Right Border" -msgstr "_Oikea raja:" +msgstr "_Oikea marginaali" #: plug-ins/imagemap/imap_cmd_gimp_guides.c:185 msgid "_Upper Border" -msgstr "_Yläraja" +msgstr "_Ylämarginaali" #: plug-ins/imagemap/imap_cmd_gimp_guides.c:189 msgid "Lo_wer Border" -msgstr "_Alaraja" +msgstr "_Alamarginaali" #: plug-ins/imagemap/imap_cmd_gimp_guides.c:197 msgid "_Base URL:" -msgstr "" +msgstr "URL juuri:" #: plug-ins/imagemap/imap_cmd_guides.c:72 #: plug-ins/imagemap/imap_cmd_guides.c:138 msgid "Create Guides" -msgstr "" +msgstr "Luo apulinjat" #: plug-ins/imagemap/imap_cmd_guides.c:111 #, c-format msgid "Resulting Guide Bounds: %d,%d to %d,%d (%d areas)" -msgstr "" +msgstr "Apulinja rajoittaa: %d,%d - %d,%d (%d aluetta)" #: plug-ins/imagemap/imap_cmd_guides.c:142 msgid "" @@ -10417,75 +9881,75 @@ #: plug-ins/imagemap/imap_cmd_guides.c:172 msgid "_Left Start at:" -msgstr "" +msgstr "Aloitus vasemmalta:" #: plug-ins/imagemap/imap_cmd_guides.c:182 msgid "_Top Start at:" -msgstr "" +msgstr "Aloitus ylhäältä:" #: plug-ins/imagemap/imap_cmd_guides.c:187 msgid "_Horz. Spacing:" -msgstr "" +msgstr "Vaakasuora väli:" #: plug-ins/imagemap/imap_cmd_guides.c:193 msgid "_No. Across:" -msgstr "" +msgstr "Poikittain:" #: plug-ins/imagemap/imap_cmd_guides.c:199 msgid "_Vert. Spacing:" -msgstr "" +msgstr "Pystysuora väli:" #: plug-ins/imagemap/imap_cmd_guides.c:205 msgid "No. _Down:" -msgstr "" +msgstr "Alaspäin:" #: plug-ins/imagemap/imap_cmd_guides.c:214 msgid "Base _URL:" -msgstr "" +msgstr "_URL juuri:" #: plug-ins/imagemap/imap_cmd_guides.c:238 msgid "Resulting Guide Bounds: 0,0 to 0,0 (0 areas)" -msgstr "" +msgstr "Apulinja rajoittaa: 0,0 - 0,0 (0 aluetta)" #: plug-ins/imagemap/imap_cmd_guides.c:273 msgid "Guides" -msgstr "" +msgstr "Apulinjat" #: plug-ins/imagemap/imap_cmd_insert_point.c:62 #: plug-ins/imagemap/imap_polygon.c:737 msgid "Insert Point" -msgstr "" +msgstr "Lisää piste" #: plug-ins/imagemap/imap_cmd_move_down.c:53 #: plug-ins/imagemap/imap_cmd_object_down.c:55 #: plug-ins/imagemap/imap_object_popup.c:109 #: plug-ins/imagemap/imap_selection.c:163 msgid "Move Down" -msgstr "" +msgstr "Siirrä alas" #: plug-ins/imagemap/imap_cmd_move_sash.c:68 msgid "Move Sash" -msgstr "" +msgstr "Siirrä nauha" #: plug-ins/imagemap/imap_cmd_move_selected.c:56 msgid "Move Selected Objects" -msgstr "" +msgstr "Siirrä valitut objektit" #: plug-ins/imagemap/imap_cmd_move_to_front.c:51 #: plug-ins/imagemap/imap_toolbar.c:151 msgid "Move To Front" -msgstr "" +msgstr "Siirrä eteen" #: plug-ins/imagemap/imap_cmd_move_up.c:53 #: plug-ins/imagemap/imap_cmd_object_up.c:55 #: plug-ins/imagemap/imap_object_popup.c:107 #: plug-ins/imagemap/imap_selection.c:159 msgid "Move Up" -msgstr "" +msgstr "Siirrä ylös" #: plug-ins/imagemap/imap_cmd_paste.c:51 plug-ins/imagemap/imap_toolbar.c:129 msgid "Paste" -msgstr "" +msgstr "Liitä" #: plug-ins/imagemap/imap_cmd_select.c:53 plug-ins/imagemap/imap_tools.c:144 msgid "Select" @@ -10493,44 +9957,44 @@ #: plug-ins/imagemap/imap_cmd_select_all.c:51 msgid "Select All" -msgstr "" +msgstr "Valitse kaikki" #: plug-ins/imagemap/imap_cmd_select_next.c:51 msgid "Select Next" -msgstr "" +msgstr "Valitse seuraava" #: plug-ins/imagemap/imap_cmd_select_prev.c:51 msgid "Select Previous" -msgstr "" +msgstr "Valitse edellinen" #: plug-ins/imagemap/imap_cmd_select_region.c:64 msgid "Select Region" -msgstr "" +msgstr "Valitse alue" #: plug-ins/imagemap/imap_cmd_send_to_back.c:51 #: plug-ins/imagemap/imap_toolbar.c:157 msgid "Send To Back" -msgstr "" +msgstr "Siirrä taustalle" #: plug-ins/imagemap/imap_cmd_unselect.c:53 msgid "Unselect" -msgstr "" +msgstr "Poista valinta" #: plug-ins/imagemap/imap_cmd_unselect_all.c:53 msgid "Unselect All" -msgstr "" +msgstr "Poista kaikki valinnat" #: plug-ins/imagemap/imap_edit_area_info.c:196 msgid "Link Type" -msgstr "" +msgstr "Linkkityyppi" #: plug-ins/imagemap/imap_edit_area_info.c:205 msgid "_Web Site" -msgstr "" +msgstr "_Web sivusto" #: plug-ins/imagemap/imap_edit_area_info.c:211 msgid "_Ftp Site" -msgstr "" +msgstr "_FTP" #: plug-ins/imagemap/imap_edit_area_info.c:217 msgid "_Gopher" @@ -10538,7 +10002,7 @@ #: plug-ins/imagemap/imap_edit_area_info.c:223 msgid "Ot_her" -msgstr "" +msgstr "Muu" #: plug-ins/imagemap/imap_edit_area_info.c:229 msgid "F_ile" @@ -10558,19 +10022,19 @@ #: plug-ins/imagemap/imap_edit_area_info.c:253 msgid "_URL to activate when this area is clicked: (required)" -msgstr "" +msgstr "Aktivoitu _URL kun tätä aluetta napsautetaan (pakollinen)" #: plug-ins/imagemap/imap_edit_area_info.c:255 msgid "Select HTML file" -msgstr "" +msgstr "Valitse HTML tiedosto" #: plug-ins/imagemap/imap_edit_area_info.c:264 msgid "Relati_ve link" -msgstr "" +msgstr "Suhteellinen linkki" #: plug-ins/imagemap/imap_edit_area_info.c:270 msgid "_Target frame name/ID: (optional - used for FRAMES only)" -msgstr "" +msgstr "_Kohdekehyksen nimi/ID: (vain kehyksiä käytettäessä)" #: plug-ins/imagemap/imap_edit_area_info.c:273 msgid "ALT te_xt: (optional)" @@ -10594,85 +10058,80 @@ #: plug-ins/imagemap/imap_edit_area_info.c:451 msgid "Area Settings" -msgstr "" +msgstr "Alueen asetukset" #: plug-ins/imagemap/imap_edit_area_info.c:493 #, c-format msgid "Area #%d Settings" -msgstr "" +msgstr "Alueen %d asetukset" #: plug-ins/imagemap/imap_file.c:49 plug-ins/imagemap/imap_menu.c:65 msgid "Error opening file" -msgstr "" +msgstr "Virhe avattaessa tiedostoa" #: plug-ins/imagemap/imap_file.c:69 msgid "Load Imagemap" -msgstr "" +msgstr "Lataa kuvakartta" #: plug-ins/imagemap/imap_file.c:114 msgid "File already exists" -msgstr "" +msgstr "Tiedosto on olemassa" #: plug-ins/imagemap/imap_file.c:115 -#, fuzzy msgid "Do you really want to overwrite?" -msgstr "Oletko varma että haluat poistaa" +msgstr "Ylikirjoitetaanko?" #: plug-ins/imagemap/imap_file.c:166 msgid "Save Imagemap" -msgstr "" +msgstr "Tallenna kuvakartta" #: plug-ins/imagemap/imap_grid.c:201 msgid "Grid Settings" -msgstr "" +msgstr "Apuviivojen asetukset" #: plug-ins/imagemap/imap_grid.c:205 msgid "_Snap-To Grid Enabled" -msgstr "" +msgstr "Tartu apuviivoihin" #: plug-ins/imagemap/imap_grid.c:211 msgid "Grid Visibility and Type" -msgstr "" +msgstr "Apuviivojen näkyvyys ja tyyppi" #: plug-ins/imagemap/imap_grid.c:218 msgid "_Hidden" -msgstr "" +msgstr "_Piilotettu" #: plug-ins/imagemap/imap_grid.c:226 -#, fuzzy msgid "_Lines" -msgstr "lineaarinen" +msgstr "_Viivat" #: plug-ins/imagemap/imap_grid.c:235 -#, fuzzy msgid "C_rosses" -msgstr "Värit" +msgstr "_Ristit" #: plug-ins/imagemap/imap_grid.c:243 msgid "Grid Granularity" -msgstr "" +msgstr "Apuviivaston rakeisuus" #: plug-ins/imagemap/imap_grid.c:250 -#, fuzzy msgid "_Width" -msgstr "Uusi leveys:" +msgstr "_Leveys" #: plug-ins/imagemap/imap_grid.c:256 -#, fuzzy msgid "_Height" -msgstr "Uusi korkeus:" +msgstr "_Korkeus" #: plug-ins/imagemap/imap_grid.c:270 msgid "Grid Offset" -msgstr "" +msgstr "Apuviivaston siirtymä" #: plug-ins/imagemap/imap_grid.c:277 msgid "pixels from l_eft" -msgstr "" +msgstr "pikseliä _vasemmalta" #: plug-ins/imagemap/imap_grid.c:282 msgid "pixels from _top" -msgstr "" +msgstr "pikseliä _ylhäältä" #: plug-ins/imagemap/imap_grid.c:293 msgid "_Preview" @@ -10680,7 +10139,7 @@ #: plug-ins/imagemap/imap_main.c:128 msgid "_ImageMap..." -msgstr "" +msgstr "_Kuvakartta..." #: plug-ins/imagemap/imap_main.c:594 plug-ins/imagemap/imap_settings.c:171 msgid "" @@ -10688,280 +10147,263 @@ #: plug-ins/imagemap/imap_main.c:746 msgid "Some data has been changed!" -msgstr "" +msgstr "Dataa on muutettu!" #: plug-ins/imagemap/imap_main.c:747 msgid "Do you really want to discard your changes?" -msgstr "" +msgstr "Haluatko hylätä muutoksesi" #: plug-ins/imagemap/imap_main.c:955 #, c-format msgid "File \"%s\" saved." -msgstr "" +msgstr "Tiedosto \"%s\" tallennettu." #: plug-ins/imagemap/imap_main.c:959 msgid "Couldn't save file:" -msgstr "" +msgstr "Ei voinut tallentaa tiedostoa:" #: plug-ins/imagemap/imap_main.c:985 msgid "Image size has changed." -msgstr "" +msgstr "Kuvan koko on muuttunut." #: plug-ins/imagemap/imap_main.c:986 msgid "Resize area's?" -msgstr "" +msgstr "Muuta alueiden kokoa?" #: plug-ins/imagemap/imap_main.c:1014 msgid "Couldn't read file:" -msgstr "" +msgstr "Ei voinut lukea tiedostoa:" #: plug-ins/imagemap/imap_main.c:1061 #, c-format msgid "URL: %s" -msgstr "" +msgstr "URL: %s" #: plug-ins/imagemap/imap_menu.c:181 msgid "_File" -msgstr "" +msgstr "_Tiedosto" #: plug-ins/imagemap/imap_menu.c:187 -#, fuzzy msgid "Open recent" -msgstr "Prosentti" +msgstr "Avaa viimeisin" #: plug-ins/imagemap/imap_menu.c:209 #, c-format msgid "_Undo %s" -msgstr "" +msgstr "_Kumoa %s" #: plug-ins/imagemap/imap_menu.c:225 -#, fuzzy, c-format +#, c-format msgid "_Redo %s" -msgstr "Punainen:" +msgstr "Tee uudelleen %s" #: plug-ins/imagemap/imap_menu.c:253 msgid "_Edit" -msgstr "" +msgstr "_Muokkaa" #: plug-ins/imagemap/imap_menu.c:271 -#, fuzzy msgid "Select _all" -msgstr "Valitse filmin väri" +msgstr "Valitse kaikki" #: plug-ins/imagemap/imap_menu.c:274 -#, fuzzy msgid "Deselect _all" -msgstr "Valitse filmin väri" +msgstr "Poista k_aikki valinnat" #: plug-ins/imagemap/imap_menu.c:279 msgid "Edit area info..." -msgstr "" +msgstr "Muokkaa alueen tietoja..." #: plug-ins/imagemap/imap_menu.c:294 msgid "_View" -msgstr "" +msgstr "_Näytä" #: plug-ins/imagemap/imap_menu.c:298 -#, fuzzy msgid "Area list" -msgstr "Luo ellipsi" +msgstr "Listaa alueet" #: plug-ins/imagemap/imap_menu.c:302 msgid "Source..." -msgstr "" +msgstr "Lähde..." #: plug-ins/imagemap/imap_menu.c:310 plug-ins/print/gimp_main_window.c:1410 msgid "Grayscale" -msgstr "" +msgstr "Harmaasävy" #: plug-ins/imagemap/imap_menu.c:328 -#, fuzzy msgid "Zoom to" -msgstr "Zoom-asetukset" +msgstr "Suurenna" #: plug-ins/imagemap/imap_menu.c:358 msgid "_Mapping" -msgstr "" +msgstr "_Kartoitus" #: plug-ins/imagemap/imap_menu.c:361 plug-ins/imagemap/imap_popup.c:134 msgid "Arrow" -msgstr "" +msgstr "Nuoli" #: plug-ins/imagemap/imap_menu.c:365 -#, fuzzy msgid "Select contiguous region" -msgstr "Jatkuva gradientti" +msgstr "Valitse jatkuvat alueet" #: plug-ins/imagemap/imap_menu.c:384 msgid "_Tools" -msgstr "" +msgstr "_Työkalut" #: plug-ins/imagemap/imap_menu.c:386 -#, fuzzy msgid "Grid settings..." -msgstr "Kirjoitinasetukset" +msgstr "Apuviivaston asetukset..." #: plug-ins/imagemap/imap_menu.c:389 msgid "Use GIMP guides..." -msgstr "" +msgstr "Käytä GIMP apuviivastoa..." #: plug-ins/imagemap/imap_menu.c:391 -#, fuzzy msgid "Create guides..." -msgstr "Luo viiva" +msgstr "Luo apuviivat..." #: plug-ins/imagemap/imap_menu.c:399 msgid "_Help" -msgstr "" +msgstr "_Apu" #: plug-ins/imagemap/imap_menu.c:401 -#, fuzzy msgid "_Contents" -msgstr "_Exponentti:" +msgstr "Sisältö" #: plug-ins/imagemap/imap_menu.c:405 -#, fuzzy msgid "_About ImageMap" -msgstr "Tietoja AlienMap:ista" +msgstr "Tietoja kuvakartasta..." #: plug-ins/imagemap/imap_object_popup.c:103 msgid "Edit Area Info..." -msgstr "" +msgstr "Muokkaa alueen tietoja..." #: plug-ins/imagemap/imap_object_popup.c:105 -#, fuzzy msgid "Delete Area" -msgstr "Poista fraktaali" +msgstr "Poista alue" #: plug-ins/imagemap/imap_polygon.c:71 msgid "_Polygon" -msgstr "" +msgstr "_Polygoni" #: plug-ins/imagemap/imap_polygon.c:473 msgid "x (pixels)" -msgstr "" +msgstr "x (pikseliä)" #: plug-ins/imagemap/imap_polygon.c:482 msgid "y (pixels)" -msgstr "" +msgstr "y (pikseliä)" #: plug-ins/imagemap/imap_polygon.c:520 msgid "_Insert" -msgstr "" +msgstr "Liitä" #: plug-ins/imagemap/imap_polygon.c:526 msgid "A_ppend" -msgstr "" +msgstr "Lisää" #: plug-ins/imagemap/imap_polygon.c:532 -#, fuzzy msgid "_Remove" -msgstr "Toimintatapa" +msgstr "Poista" #: plug-ins/imagemap/imap_popup.c:133 msgid "Tools" -msgstr "" +msgstr "Työkalut" #: plug-ins/imagemap/imap_popup.c:154 msgid "Grid Settings..." -msgstr "" +msgstr "Apuviivaston asetukset..." #: plug-ins/imagemap/imap_popup.c:156 msgid "Guides..." -msgstr "" +msgstr "Apulinjat..." #: plug-ins/imagemap/imap_preferences.c:213 msgid "Couldn't save resource file:" -msgstr "" +msgstr "Ei voinut tallentaa resurssitiedostoa:" #: plug-ins/imagemap/imap_preferences.c:358 msgid "Select Color" -msgstr "" +msgstr "Valitse väri" #: plug-ins/imagemap/imap_preferences.c:443 -#, fuzzy msgid "General" msgstr "Yleiset" #: plug-ins/imagemap/imap_preferences.c:447 msgid "Default Map Type" -msgstr "" +msgstr "Kartan oletustyyppi" #: plug-ins/imagemap/imap_preferences.c:466 msgid "_Prompt for area info" -msgstr "" +msgstr "Kysy alueen tietoja" #: plug-ins/imagemap/imap_preferences.c:468 msgid "_Require default URL" -msgstr "" +msgstr "Vaadi vakio URL" #: plug-ins/imagemap/imap_preferences.c:470 msgid "Show area _handles" -msgstr "" +msgstr "Näytä alueen kahvat" #: plug-ins/imagemap/imap_preferences.c:472 msgid "_Keep NCSA circles true" -msgstr "" +msgstr "Pidä NCSA:n ympyrät pyöreinä" #: plug-ins/imagemap/imap_preferences.c:474 msgid "Show area URL _tip" -msgstr "" +msgstr "Näytä alueen URL vihje" #: plug-ins/imagemap/imap_preferences.c:477 msgid "_Use double-sized grab handles" -msgstr "" +msgstr "Tuplakokoiset kahvat" #: plug-ins/imagemap/imap_preferences.c:484 -#, fuzzy msgid "Menu" -msgstr "Toimintatapa" +msgstr "Valikko" #: plug-ins/imagemap/imap_preferences.c:488 msgid "Number of _Undo levels (1 - 99):" -msgstr "" +msgstr "Kumoamistasoja (1-99):" #: plug-ins/imagemap/imap_preferences.c:493 -#, fuzzy msgid "Number of M_RU entries (1 - 16):" -msgstr "Värien lukumäärä:" +msgstr "Ennen käsiteltyjä tiedostoja valikossa (1 - 16):" #: plug-ins/imagemap/imap_preferences.c:518 msgid "Normal:" -msgstr "" +msgstr "Normaali:" #: plug-ins/imagemap/imap_preferences.c:524 msgid "Selected:" -msgstr "" +msgstr "Valittu:" #: plug-ins/imagemap/imap_preferences.c:535 -#, fuzzy msgid "Co_ntiguous Region" -msgstr "Jatkuva gradientti" +msgstr "Jatkuva alue" #: plug-ins/imagemap/imap_preferences.c:541 msgid "_Automatically convert" -msgstr "" +msgstr "Muunna automaattisesti" #: plug-ins/imagemap/imap_preferences.c:563 msgid "General Preferences" -msgstr "" +msgstr "Yleiset asetukset" #: plug-ins/imagemap/imap_rectangle.c:69 -#, fuzzy msgid "_Rectangle" -msgstr "Kerää uudelleen" +msgstr "_Neliö" #: plug-ins/imagemap/imap_rectangle.c:389 msgid "Upper left _x:" -msgstr "" +msgstr "Ylempi vasen _X:" #: plug-ins/imagemap/imap_rectangle.c:396 msgid "Upper left _y:" -msgstr "" +msgstr "Ylempi vasen _Y:" #: plug-ins/imagemap/imap_selection.c:168 plug-ins/imagemap/imap_tools.c:169 msgid "Edit" -msgstr "" +msgstr "Muokkaa" #: plug-ins/imagemap/imap_selection.c:410 msgid "#" @@ -10973,11 +10415,11 @@ #: plug-ins/imagemap/imap_selection.c:449 msgid "Target" -msgstr "" +msgstr "Kohde" #: plug-ins/imagemap/imap_settings.c:90 msgid "Settings for this Mapfile" -msgstr "" +msgstr "Asetukset tälle kuvakartalle" #: plug-ins/imagemap/imap_settings.c:94 msgid "Filename:" @@ -10985,45 +10427,43 @@ #: plug-ins/imagemap/imap_settings.c:97 msgid "Image name:" -msgstr "" +msgstr "Kuvan nimi:" #: plug-ins/imagemap/imap_settings.c:98 msgid "Select Image File" -msgstr "" +msgstr "Valitse kuvatiedosto" #: plug-ins/imagemap/imap_settings.c:102 -#, fuzzy msgid "_Title:" -msgstr "Sininen:" +msgstr "_Otsikko:" #: plug-ins/imagemap/imap_settings.c:104 msgid "Aut_hor:" -msgstr "" +msgstr "_Tekijä:" #: plug-ins/imagemap/imap_settings.c:106 msgid "Default _URL:" -msgstr "" +msgstr "Vakio URL:" #: plug-ins/imagemap/imap_settings.c:108 -#, fuzzy msgid "_Description:" -msgstr "Syvyys:" +msgstr "_Kuvaus:" #: plug-ins/imagemap/imap_settings.c:130 msgid "Map file format" -msgstr "" +msgstr "Kuvakartan muoto" #: plug-ins/imagemap/imap_source.c:63 msgid "View Source" -msgstr "" +msgstr "Näytä lähdekoodi" #: plug-ins/imagemap/imap_stock.c:45 msgid "Edit Map Info..." -msgstr "" +msgstr "Muokkaa kartan tietoja..." #: plug-ins/imagemap/imap_toolbar.c:102 msgid "Open" -msgstr "" +msgstr "Avaa" #: plug-ins/imagemap/imap_toolbar.c:104 msgid "Save" @@ -11031,227 +10471,224 @@ #: plug-ins/imagemap/imap_toolbar.c:107 msgid "Preferences" -msgstr "" +msgstr "Asetukset" #: plug-ins/imagemap/imap_toolbar.c:112 msgid "Undo" -msgstr "" +msgstr "Kumoa" #: plug-ins/imagemap/imap_toolbar.c:116 msgid "Redo" -msgstr "" +msgstr "Tee uudelleen" #: plug-ins/imagemap/imap_toolbar.c:137 msgid "Zoom in" -msgstr "" +msgstr "Suurenna" #: plug-ins/imagemap/imap_toolbar.c:142 msgid "Zoom out" -msgstr "" +msgstr "Pienennä" #: plug-ins/imagemap/imap_toolbar.c:147 msgid "Edit map info" -msgstr "" +msgstr "Muokkaa kartan tietoja" #: plug-ins/imagemap/imap_tools.c:145 msgid "Select existing area" -msgstr "" +msgstr "Valitse olemassa oleva alue" #: plug-ins/imagemap/imap_tools.c:150 msgid "Fuzzy Select" -msgstr "" +msgstr "Epätarkka valinta" #: plug-ins/imagemap/imap_tools.c:151 msgid "Select contiguous regions" -msgstr "" +msgstr "Valitse jatkuvat alueet" #: plug-ins/imagemap/imap_tools.c:157 msgid "Define Rectangle area" -msgstr "" +msgstr "Määritä neliömäinen alue" #: plug-ins/imagemap/imap_tools.c:161 msgid "Define Circle/Oval area" -msgstr "" +msgstr "Määritä ympyrä/ovaali" #: plug-ins/imagemap/imap_tools.c:165 msgid "Define Polygon area" -msgstr "" +msgstr "Määritä monikulmio" #: plug-ins/imagemap/imap_tools.c:170 msgid "Edit selected area info" -msgstr "" +msgstr "Muokkaa valitun alueen tietoja" #: plug-ins/imagemap/imap_tools.c:175 msgid "Delete selected area" -msgstr "" +msgstr "Poista valittu alue" #: plug-ins/maze/algorithms.c:287 msgid "Constructing maze using Prim's Algorithm..." -msgstr "" +msgstr "Luodaan labyrintti Primin algoritmillä..." #: plug-ins/maze/algorithms.c:463 msgid "Constructing tileable maze using Prim's Algorithm..." -msgstr "" +msgstr "Luodaan saumaton labyrintti Primin algoritmillä..." #: plug-ins/maze/maze.c:163 msgid "_Maze..." -msgstr "" +msgstr "_Labyrintti..." #: plug-ins/maze/maze.c:450 msgid "Drawing Maze..." -msgstr "" +msgstr "Piirretään labyrintti..." #: plug-ins/maze/maze.h:2 msgid "Maze" -msgstr "" +msgstr "Labyrintti" #. entscale == Entry and Scale pair function found in pixelize.c #: plug-ins/maze/maze_face.c:202 msgid "Width (pixels):" -msgstr "" +msgstr "Leveys (pikseliä):" #: plug-ins/maze/maze_face.c:214 plug-ins/maze/maze_face.c:230 msgid "Pieces:" -msgstr "" +msgstr "Paloja:" #: plug-ins/maze/maze_face.c:219 -#, fuzzy msgid "Height (pixels):" -msgstr "Korkeus:" +msgstr "Korkeus (pikseliä):" #: plug-ins/maze/maze_face.c:242 msgid "Multiple (57):" -msgstr "" +msgstr "Toisto (57):" #: plug-ins/maze/maze_face.c:255 msgid "Offset (1):" -msgstr "" +msgstr "Siirtymä (1):" #: plug-ins/maze/maze_face.c:287 -#, fuzzy msgid "Depth first" -msgstr "Pidetään ensimmäinen arvo" +msgstr "Syvyyteen ensin -haku" #: plug-ins/maze/maze_face.c:288 -#, fuzzy msgid "Prim's algorithm" -msgstr "Algoritmi" +msgstr "Primin algoritmi" #: plug-ins/maze/maze_face.c:397 msgid "" "Selection size is not even.\n" "Tileable maze won't work perfectly." msgstr "" +"Valinnan koko ei ole parillinen.\n" +"Saumaton labyrintti ei toimi täydellisesti." #: plug-ins/pagecurl/pagecurl.c:224 msgid "_Pagecurl..." -msgstr "" +msgstr "_Koirankorva..." #: plug-ins/pagecurl/pagecurl.c:443 msgid "Pagecurl Effect" -msgstr "" +msgstr "Koirankorva" #: plug-ins/pagecurl/pagecurl.c:458 msgid "Curl Location" -msgstr "" +msgstr "Sijainti" #: plug-ins/pagecurl/pagecurl.c:477 -#, fuzzy msgid "Lower right" -msgstr "Ei valoa" +msgstr "Alhaalla oikealla" #: plug-ins/pagecurl/pagecurl.c:478 -#, fuzzy msgid "Lower left" -msgstr "_Alempi" +msgstr "Alhaalla vasemmalla" #: plug-ins/pagecurl/pagecurl.c:479 -#, fuzzy msgid "Upper left" -msgstr "_Ylempi" +msgstr "Ylhäällä vasemmalla" #: plug-ins/pagecurl/pagecurl.c:480 msgid "Upper right" -msgstr "" +msgstr "Ylhäällä oikealla" #: plug-ins/pagecurl/pagecurl.c:520 msgid "Curl Orientation" -msgstr "" +msgstr "Suunta" #: plug-ins/pagecurl/pagecurl.c:564 msgid "_Shade under curl" -msgstr "" +msgstr "Varjo taitoksen alle" #: plug-ins/pagecurl/pagecurl.c:577 msgid "Current gradient (reversed)" msgstr "" #: plug-ins/pagecurl/pagecurl.c:582 -#, fuzzy msgid "Current gradient" msgstr "Oma väriliuku" #: plug-ins/pagecurl/pagecurl.c:587 -#, fuzzy msgid "Foreground / background colors" -msgstr "Läpinäkyvä tausta" +msgstr "Edusta- ja taustaväri" #: plug-ins/pagecurl/pagecurl.c:607 -#, fuzzy msgid "_Opacity:" msgstr "Peitto:" #: plug-ins/pagecurl/pagecurl.c:730 msgid "Curl Layer" -msgstr "" +msgstr "Taitostaso" #: plug-ins/pagecurl/pagecurl.c:1018 msgid "Page Curl..." -msgstr "" +msgstr "Luodaan koirankorva..." #: plug-ins/print/gimp_color_window.c:208 msgid "Print Color Adjust" -msgstr "" +msgstr "Tulostuksen värisäätö" #: plug-ins/print/gimp_color_window.c:268 msgid "Brightness:" -msgstr "" +msgstr "Kirkkaus:" #: plug-ins/print/gimp_color_window.c:276 msgid "" "Set the brightness of the print.\n" "0 is solid black, 2 is solid white" msgstr "" +"Aseta tulosteen kirkkaus.\n" +"0 musta, 2 puhtaan valkoinen." #: plug-ins/print/gimp_color_window.c:288 msgid "Contrast:" -msgstr "" +msgstr "Kontrasti:" #: plug-ins/print/gimp_color_window.c:296 msgid "Set the contrast of the print" -msgstr "" +msgstr "Aseta tulosteen kontrasti" #: plug-ins/print/gimp_color_window.c:315 msgid "Adjust the cyan balance of the print" -msgstr "" +msgstr "Säädä tulosteen syaanin tasapaino" #: plug-ins/print/gimp_color_window.c:334 msgid "Adjust the magenta balance of the print" -msgstr "" +msgstr "Säädä tulosteen magentan tasapaino" #: plug-ins/print/gimp_color_window.c:353 msgid "Adjust the yellow balance of the print" -msgstr "" +msgstr "Säädä tulosteen keltaisen tasapaino" #: plug-ins/print/gimp_color_window.c:372 msgid "" "Adjust the saturation (color balance) of the print\n" "Use zero saturation to produce grayscale output using color and black inks" msgstr "" +"Säädä tulosteen värikylläisyys.\n" +"Nolla tuottaa harmaasävykuvan käyttäen väri- ja mustaa mustetta" #: plug-ins/print/gimp_color_window.c:385 msgid "Density:" -msgstr "" +msgstr "Tiheys:" #: plug-ins/print/gimp_color_window.c:393 msgid "" @@ -11259,6 +10696,8 @@ "ink bleeds through the paper or smears; increase the density if black " "regions are not solid." msgstr "" +"Säädä käytettävän musteen määrä. Vähennä jos muste kostuttaa paperia liikaa. " +"Lisää jos tummat alueet eivät tulostu kunnolla." #: plug-ins/print/gimp_color_window.c:415 msgid "" @@ -11266,10 +10705,13 @@ "brighter print, while smaller values will produce a generally darker print. " "Black and white will remain the same, unlike with the brightness adjustment." msgstr "" +"Säädä tulosteen gamma. Suuremmat arvot tuottavat kirkkaamman tulosteen ja " +"pienemmät tummemman. Musta ja valkoinen säilyvät samoina, päinvastoin kuin " +"kirkkauden säädössä." #: plug-ins/print/gimp_color_window.c:432 msgid "Dither Algorithm:" -msgstr "" +msgstr "Värisekoitus:" #: plug-ins/print/gimp_color_window.c:440 msgid "" @@ -11280,6 +10722,12 @@ "art.\n" "Hybrid Floyd-Steinberg generally produces inferior output." msgstr "" +"Valitse käytettävä sekoitusalgoritmi.\n" +"Adaptiivinen hybridi tuottaa yleensä parhaimman tuloksen.\n" +"Järjestetty on nopeampi ja yhtä hyvä valokuvissa.\n" +"Nopeat algoritmit ovat nopeampia ja toimivat hyvin tekstille ja " +"viivapiirroksielle.\n" +"Floyd-Steinberg on yleisesti heikompilaatuinen." #. #. * Create the main dialog @@ -11287,19 +10735,23 @@ #: plug-ins/print/gimp_main_window.c:359 #, c-format msgid "%s -- Print v%s" -msgstr "" +msgstr "%s -- Print v%s" #: plug-ins/print/gimp_main_window.c:368 msgid "" "Save\n" "Settings" msgstr "" +"Tallenna\n" +"asetukset" #: plug-ins/print/gimp_main_window.c:369 msgid "" "Print and\n" "Save Settings" msgstr "" +"Tulosta ja\n" +"tallenna asetukset" #: plug-ins/print/gimp_main_window.c:438 msgid "" @@ -11314,10 +10766,17 @@ "If you click another button while dragging the mouse, the image will return " "to its original position." msgstr "" +"Aseta kuvan paikka sivulla\n" +"Napsauta ja vedä siirtääksesi kuvaa.\n" +"Napsauta ja vedä kakkosnappulalla siirtääksesi kuvaa tarkemmin.\n" +"Napsauta ja vedä keskinappulalla siirtääksesi kuvaa sen koon verran.\n" +"Shift rajaa siirron suunnan vain pysty- tai vaakasuuntaan.\n" +"Toisen hiiren nappulan painaminen siirron aikana palauttaa kuvan " +"alkuperäiseen paikkaan." #: plug-ins/print/gimp_main_window.c:481 msgid "Auto" -msgstr "" +msgstr "Automaattinen" #: plug-ins/print/gimp_main_window.c:482 msgid "Portrait" @@ -11329,84 +10788,82 @@ #: plug-ins/print/gimp_main_window.c:484 msgid "Upside down" -msgstr "ylösalasin" +msgstr "ylösalaisin" #: plug-ins/print/gimp_main_window.c:485 msgid "Seascape" -msgstr "ylösalasin vaakasuuntaan" +msgstr "ylösalaisin vaakasuuntaan" #: plug-ins/print/gimp_main_window.c:495 msgid "" "Select the orientation: portrait, landscape, upside down, or seascape " "(upside down landscape)" msgstr "" +"Valitse suunta: pysty, vaaka, ylösalaisin tai ylösalaisin vaakasuuntaan." #: plug-ins/print/gimp_main_window.c:514 msgid "Distance from the left of the paper to the image" -msgstr "" +msgstr "Kuvan etäisyys sivun vasemmasta laidasta" #: plug-ins/print/gimp_main_window.c:527 msgid "Distance from the top of the paper to the image" -msgstr "" +msgstr "Kuvan etäisyys sivun ylälaidasta" #: plug-ins/print/gimp_main_window.c:540 msgid "Distance from the left of the paper to the right of the image" -msgstr "" +msgstr "Kuvan oikean reunan etäisyys sivun vasemmasta reunasta" #: plug-ins/print/gimp_main_window.c:550 msgid "Right Border:" -msgstr "Oikea raja:" +msgstr "Oikea marginaali:" #: plug-ins/print/gimp_main_window.c:554 msgid "Distance from the right of the paper to the image" -msgstr "" +msgstr "Kuvan etäisyys sivun oikeasta reunasta" #: plug-ins/print/gimp_main_window.c:568 msgid "Distance from the top of the paper to the bottom of the image" -msgstr "" +msgstr "Kuvan alareunan etäisyys sivun ylälaidasta" #: plug-ins/print/gimp_main_window.c:578 msgid "Bottom Border:" -msgstr "Alaraja:" +msgstr "Alamarginaali:" #: plug-ins/print/gimp_main_window.c:582 msgid "Distance from the bottom of the paper to the image" -msgstr "" +msgstr "Kuvan etäisyys sivun alareunasta" #: plug-ins/print/gimp_main_window.c:595 -#, fuzzy msgid "Center:" -msgstr "Kirjoitin:" +msgstr "Keskitä:" #: plug-ins/print/gimp_main_window.c:599 -#, fuzzy msgid "Vertically" -msgstr "pallomainen" +msgstr "Pystysuoraan" #: plug-ins/print/gimp_main_window.c:604 msgid "Center the image vertically on the paper" -msgstr "" +msgstr "Keskitä kuva pystysuunnassa paperille" #: plug-ins/print/gimp_main_window.c:610 msgid "Both" -msgstr "" +msgstr "Molemmat" #: plug-ins/print/gimp_main_window.c:615 msgid "Center the image on the paper" -msgstr "" +msgstr "Keskitä kuva paperille" #: plug-ins/print/gimp_main_window.c:622 msgid "Horizontally" -msgstr "" +msgstr "Vaakasuoraan" #: plug-ins/print/gimp_main_window.c:627 msgid "Center the image horizontally on the paper" -msgstr "" +msgstr "Keskitä kuva vaakasuunnassa paperille" #: plug-ins/print/gimp_main_window.c:643 -#, fuzzy msgid "Setup Printer" -msgstr "Kirjoitin:" +msgstr "Aseta kirjoitin" #. #. * Printer driver option menu. @@ -11417,7 +10874,7 @@ #: plug-ins/print/gimp_main_window.c:684 msgid "Select your printer model" -msgstr "" +msgstr "Valitse kirjoittimen malli" #. #. * PPD file. @@ -11428,15 +10885,15 @@ #: plug-ins/print/gimp_main_window.c:739 msgid "Enter the PPD filename for your printer" -msgstr "" +msgstr "Valitse kirjoittimelle soveltuva PPD tiedosto" #: plug-ins/print/gimp_main_window.c:742 msgid "Browse" -msgstr "" +msgstr "Selaa" #: plug-ins/print/gimp_main_window.c:748 msgid "Choose the PPD file for your printer" -msgstr "" +msgstr "Valitse kirjoittimelle soveltuva PPD tiedosto." #. #. * Print command. @@ -11450,28 +10907,28 @@ "Enter the command to print to your printer. Note: Please do not remove the `-" "l' or `-oraw' from the command string, or printing will probably fail!" msgstr "" +"Syötä käytettävä tulostuskomento. Älä poista komennon perästä parametrejä, " +"tai tulostus voi epäonnistua." #: plug-ins/print/gimp_main_window.c:781 -#, fuzzy msgid "Choose PPD File" -msgstr "PPD-tiedosto?" +msgstr "Valitse PPD-tiedosto" #: plug-ins/print/gimp_main_window.c:802 msgid "Define New Printer" -msgstr "" +msgstr "Määritä uusi kirjoitin" #: plug-ins/print/gimp_main_window.c:825 plug-ins/print/gimp_main_window.c:920 -#, fuzzy msgid "Printer name:" -msgstr "Tulostin:" +msgstr "Kirjoittimen nimi:" #: plug-ins/print/gimp_main_window.c:829 msgid "Enter the name you wish to give this logical printer" -msgstr "" +msgstr "Syötä loogiselle kirjoittimelle nimi" #: plug-ins/print/gimp_main_window.c:842 msgid "About Gimp-Print " -msgstr "Tiedot Gimp-Print " +msgstr "Gimp-Print tiedot" #: plug-ins/print/gimp_main_window.c:855 msgid "Gimp-Print Version " @@ -11500,19 +10957,42 @@ "along with this program; if not, write to the Free Software\n" "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n" msgstr "" - -#: plug-ins/print/gimp_main_window.c:903 -msgid "Printer Settings" -msgstr "Kirjoitinasetukset" +"\n" +"\n" +"Copyright © 1997-2001 Michael Sweet, Robert Krawitz,\n" +"ja Gimp-Print kehitysryhmä.\n" +"\n" +"Web sivut osoitteessa: http://gimp-print.sourceforge.net.\n" +"\n" +"Tämä on vapaa ohjelma; voit levittää ja muuttaa sitä GNU yleisen\n" +"julkisen lisenssin sopimusehtojen mukaisesti sellaisina kun Free\n" +"Software Foundation on ne julkaissut. Voit soveltaa lisenssin versiota\n" +"2 tai myöhempää.\n" +"\n" +"Tämä ohjelma levitetään siinä toivossa, että siitä on hyötyä, mutta\n" +"ILMAN MITÄÄN TAKUUTA; jopa ilman konkludenttista takuuta\n" +"MYYNTIKELPOISUUDESTA TAI SOVELTUMISESTA TIETTYYN ERITYISEEN\n" +"TARKOITUKSEEN. Yksityiskohtien osalta katso GNU yleistä julkista\n" +"lisenssiä.\n" +"\n" +"Sinun olisi pitänyt saada kopio GNU:n yleisestä julkisesta lisenssistä\n" +"tämän ohjelman mukana; jos et sitä saanut, niin lähetä kirje\n" +"osoitteella:\n" +"Free Software Foundation, Inc.\n" +"59 Temple Place - Suite 330\n" +"Boston, MA 02111-1307, USA.\n" + +#: plug-ins/print/gimp_main_window.c:903 +msgid "Printer Settings" +msgstr "Kirjoitinasetukset" #: plug-ins/print/gimp_main_window.c:916 msgid "" "Select the name of the printer (not the type, or model, of printer) that you " "wish to print to" -msgstr "" +msgstr "Valitse halutun kirjoittimen nimi." #: plug-ins/print/gimp_main_window.c:926 -#, fuzzy msgid "Printer model:" msgstr "Kirjoittimen malli:" @@ -11520,21 +11000,21 @@ #. * Setup printer button #. #: plug-ins/print/gimp_main_window.c:937 -#, fuzzy msgid "Setup printer..." -msgstr "Kirjoitin:" +msgstr "Aseta kirjoitin..." #: plug-ins/print/gimp_main_window.c:939 msgid "" "Choose the printer model, PPD file, and command that is used to print to " "this printer" msgstr "" +"Valitse kirjoittimen malli, PPD-asetustiedosto ja komento jota käytetään " +"tulostuksessa tälle kirjoittimelle." #. #. * New printer button #. #: plug-ins/print/gimp_main_window.c:954 -#, fuzzy msgid "New printer..." msgstr "Uusi kirjoitin..." @@ -11543,13 +11023,14 @@ "Define a new logical printer. This can be used to name a collection of " "settings that you wish to remember for future use." msgstr "" +"Määrittele uusi kirjoitin. Tätä voi käyttää tallentamaan tulostusasetuksen " +"myöhempää käyttöä varten." #: plug-ins/print/gimp_main_window.c:977 msgid "Size of paper that you wish to print to" -msgstr "" +msgstr "Tulostusmedian koko" #: plug-ins/print/gimp_main_window.c:980 -#, fuzzy msgid "Media size:" msgstr "Paperin koko:" @@ -11559,62 +11040,58 @@ #: plug-ins/print/gimp_main_window.c:1003 msgid "Width of the paper that you wish to print to" -msgstr "" +msgstr "Tulostusmedian leveys" #: plug-ins/print/gimp_main_window.c:1020 msgid "Height of the paper that you wish to print to" -msgstr "" +msgstr "Tulostusmedian korkeus" #: plug-ins/print/gimp_main_window.c:1036 msgid "Type of media you're printing to" -msgstr "" +msgstr "Tulostumedian tyyppi" #: plug-ins/print/gimp_main_window.c:1039 -#, fuzzy msgid "Media type:" msgstr "Mediatyyppi:" #: plug-ins/print/gimp_main_window.c:1052 msgid "Source (input slot) of media you're printing to" -msgstr "" +msgstr "Paperinsyöttölokero" #: plug-ins/print/gimp_main_window.c:1055 -#, fuzzy msgid "Media source:" msgstr "Paperilokero:" #: plug-ins/print/gimp_main_window.c:1068 msgid "Type of ink in the printer" -msgstr "" +msgstr "Kirjoittimen musteen tyyppi" #: plug-ins/print/gimp_main_window.c:1071 -#, fuzzy msgid "Ink type:" msgstr "Muste:" #: plug-ins/print/gimp_main_window.c:1084 msgid "Resolution and quality of the print" -msgstr "" +msgstr "Tulosteen resoluutio ja laatu" #: plug-ins/print/gimp_main_window.c:1121 msgid "Scaling:" msgstr "Skaalaus:" #: plug-ins/print/gimp_main_window.c:1127 -#, fuzzy msgid "Set the scale (size) of the image" -msgstr "Ensimmäinen kuvan rivi" +msgstr "Aseta kuvan skaala (koko)" #: plug-ins/print/gimp_main_window.c:1152 -#, fuzzy msgid "Scale by:" -msgstr "Skaalaa Z:" +msgstr "Skaalaa:" #: plug-ins/print/gimp_main_window.c:1157 msgid "" "Select whether scaling is measured as percent of available page size or " "number of output dots per inch" msgstr "" +"Valitse mitataanko skaalaus prosentteina sivun koosta vai tulostustarkkuutena" #: plug-ins/print/gimp_main_window.c:1162 msgid "Percent" @@ -11622,7 +11099,7 @@ #: plug-ins/print/gimp_main_window.c:1169 msgid "Scale the print to the size of the page" -msgstr "" +msgstr "Skaalaa tuloste paperin kokoon" #: plug-ins/print/gimp_main_window.c:1175 msgid "PPI" @@ -11630,15 +11107,15 @@ #: plug-ins/print/gimp_main_window.c:1181 msgid "Scale the print to the number of dots per inch" -msgstr "" +msgstr "Skaalaa tuloste tähän tarkkuuteen (pistettä per tuuma)" #: plug-ins/print/gimp_main_window.c:1203 msgid "Set the width of the print" -msgstr "" +msgstr "Aseta tulosteen leveys" #: plug-ins/print/gimp_main_window.c:1216 msgid "Set the height of the print" -msgstr "" +msgstr "Aseta tulosteen korkeus" #: plug-ins/print/gimp_main_window.c:1237 msgid "Units:" @@ -11646,7 +11123,7 @@ #: plug-ins/print/gimp_main_window.c:1242 msgid "Select the base unit of measurement for printing" -msgstr "" +msgstr "Valitse perusmittayksikkö" #: plug-ins/print/gimp_main_window.c:1245 msgid "Inch" @@ -11654,7 +11131,7 @@ #: plug-ins/print/gimp_main_window.c:1252 msgid "Set the base unit of measurement to inches" -msgstr "" +msgstr "Asettaa mittayksikön tuumiksi" #: plug-ins/print/gimp_main_window.c:1258 msgid "cm" @@ -11662,7 +11139,7 @@ #: plug-ins/print/gimp_main_window.c:1264 msgid "Set the base unit of measurement to centimetres" -msgstr "" +msgstr "Asettaa mittayksikön millimetreiksi" #. #. * The "image size" button @@ -11672,42 +11149,40 @@ "Use Original\n" "Image Size" msgstr "" +"Käytä kuvan\n" +"alkuperäiskokoa" #: plug-ins/print/gimp_main_window.c:1280 msgid "Set the print size to the size of the image" -msgstr "" +msgstr "Aseta tulosteen koko kuvan kokoon" #: plug-ins/print/gimp_main_window.c:1303 -#, fuzzy msgid "Image / Output Settings" -msgstr "Kuva-asetukset" +msgstr "Kuva/tulostusasetukset" #: plug-ins/print/gimp_main_window.c:1317 -#, fuzzy msgid "Image type:" -msgstr "Valonlähteen tyyppi:" +msgstr "Kuvatyyppi:" #: plug-ins/print/gimp_main_window.c:1325 msgid "Optimize the output for the type of image being printed" -msgstr "" +msgstr "Optimoi tuloste määrätylle kuvatyypille" #: plug-ins/print/gimp_main_window.c:1329 -#, fuzzy msgid "Line art" msgstr "Viivapiirros" #: plug-ins/print/gimp_main_window.c:1336 msgid "Fastest and brightest color for text and line art" -msgstr "" +msgstr "Nopein ja kirkkaimmat värit tekstille ja viivapiirroksille" #: plug-ins/print/gimp_main_window.c:1343 -#, fuzzy msgid "Solid colors" msgstr "Yhtenäiset värit" #: plug-ins/print/gimp_main_window.c:1350 msgid "Best for images dominated by regions of solid color" -msgstr "" +msgstr "Paras kuville joissa on laajoja, yhtenäisiä värialueita" #: plug-ins/print/gimp_main_window.c:1358 msgid "Photograph" @@ -11717,56 +11192,53 @@ msgid "" "Slowest, but most accurate and smoothest color for continuous tone images " "and photographs" -msgstr "" +msgstr "Hitain, mutta tarkin ja paras monimutkaisille kuville ja valokuville" #: plug-ins/print/gimp_main_window.c:1389 -#, fuzzy msgid "Output type:" -msgstr "Intensiteetti tasot" +msgstr "Tulostetyyppi:" #: plug-ins/print/gimp_main_window.c:1396 msgid "Select the desired output type" -msgstr "" +msgstr "Valitse haluttu tulostetyyppi" #: plug-ins/print/gimp_main_window.c:1405 -#, fuzzy msgid "Color output" -msgstr "Väritila" +msgstr "Väritulostus" #: plug-ins/print/gimp_main_window.c:1417 msgid "Print in shades of gray using black ink" -msgstr "" +msgstr "Tulosta harmaasävyissä käyttäen mustaa mustetta" #: plug-ins/print/gimp_main_window.c:1424 -#, fuzzy msgid "Black and white" msgstr "Mustavalkoinen" #: plug-ins/print/gimp_main_window.c:1431 msgid "Print in black and white (no color, and no shades of gray)" -msgstr "" +msgstr "Tulosta mustavalkoisena (ei värejä eikä harmaasävyjä)" #. #. * Color adjust button #. #: plug-ins/print/gimp_main_window.c:1442 msgid "Adjust output..." -msgstr "" +msgstr "Säädä värit..." #: plug-ins/print/gimp_main_window.c:1449 msgid "" "Adjust color balance, brightness, contrast, saturation, and dither algorithm" msgstr "" +"Säädä väritasapainoa, kirkkautta, kontrastia, kylläisyyttä ja " +"sekoitusalgoritmia" #: plug-ins/print/gimp_main_window.c:1483 -#, fuzzy msgid "Print to File" -msgstr "Tulosta tiedostoon?" +msgstr "Tulosta tiedostoon" #: plug-ins/print/print.c:164 -#, fuzzy msgid "_Print..." -msgstr "Maalataan..." +msgstr "_Tulosta..." #: plug-ins/print/print.c:694 plug-ins/print/print.c:695 #: plug-ins/print/print.c:785 plug-ins/print/print.c:1124 @@ -11774,13 +11246,12 @@ msgstr "Tiedosto" #: plug-ins/rcm/rcm.c:106 -#, fuzzy msgid "Colormap _Rotation..." -msgstr "Värivaihtelu:" +msgstr "Värikartan _kierto..." #: plug-ins/rcm/rcm.c:270 msgid "Rotating the colormap..." -msgstr "" +msgstr "Kierretään värikarttaa..." #: plug-ins/rcm/rcm_dialog.c:114 msgid "Original" @@ -11788,11 +11259,11 @@ #: plug-ins/rcm/rcm_dialog.c:127 msgid "Rotated" -msgstr "" +msgstr "Kierretty" #: plug-ins/rcm/rcm_dialog.c:140 msgid "Continuous update" -msgstr "" +msgstr "Jatkuva päivitys" #: plug-ins/rcm/rcm_dialog.c:153 msgid "Area:" @@ -11800,27 +11271,26 @@ #: plug-ins/rcm/rcm_dialog.c:157 msgid "Entire Layer" -msgstr "" +msgstr "Koko taso" #: plug-ins/rcm/rcm_dialog.c:159 msgid "Context" -msgstr "" +msgstr "Sisältö" #. spinbutton 1 #: plug-ins/rcm/rcm_dialog.c:284 plug-ins/rcm/rcm_dialog.c:362 msgid "From" -msgstr "" +msgstr "Mistä" #. spinbutton 2 #: plug-ins/rcm/rcm_dialog.c:310 plug-ins/rcm/rcm_dialog.c:363 msgid "To" -msgstr "" +msgstr "Mihin" #. * Gray: Operation-Mode * #: plug-ins/rcm/rcm_dialog.c:499 -#, fuzzy msgid "Gray Mode" -msgstr "Väritila" +msgstr "Harmaasävytila" #. Gray: Operation-Mode: two radio buttons #: plug-ins/rcm/rcm_dialog.c:508 @@ -11833,9 +11303,8 @@ #. * Gray: What is gray? * #: plug-ins/rcm/rcm_dialog.c:533 -#, fuzzy msgid "Gray Threshold" -msgstr "Vihreän kynnysarvo:" +msgstr "Harmaan kynnysarvo" #. * Misc: Used unit selection * #: plug-ins/rcm/rcm_dialog.c:572 plug-ins/rcm/rcm_dialog.c:676 @@ -11862,37 +11331,36 @@ #: plug-ins/rcm/rcm_dialog.c:670 msgid "Main Options" -msgstr "" +msgstr "Pääasetukset" #: plug-ins/rcm/rcm_dialog.c:673 -#, fuzzy msgid "Gray Options" -msgstr "Yleiset asetukset" +msgstr "Harmaa-asetukset" #: plug-ins/rcm/rcm_stock.c:35 msgid "Switch to clockwise" -msgstr "" +msgstr "Vaihda myötäpäiväiseen" #: plug-ins/rcm/rcm_stock.c:37 msgid "Switch to c/clockwise" -msgstr "" +msgstr "Vaihda vastapäiväiseen" #: plug-ins/rcm/rcm_stock.c:39 msgid "Change order of arrows" -msgstr "" +msgstr "Vaihda nuolien järjestys" #: plug-ins/rcm/rcm_stock.c:41 msgid "Select all" -msgstr "" +msgstr "Valitse kaikki" #. printf("width = %d, height = %d\n",BITMAP_WIDTH(marked),BITMAP_HEIGHT(marked)); #: plug-ins/sel2path/pxl-outline.c:83 msgid "Selection to Path..." -msgstr "" +msgstr "Valinta poluksi..." #: plug-ins/sel2path/sel2path.c:185 msgid "No selection to convert" -msgstr "" +msgstr "Ei muunnettavaa valintaa" #: plug-ins/sel2path/sel2path.c:302 msgid "Selection To Path Advanced Settings" @@ -11903,26 +11371,23 @@ msgstr "" #: plug-ins/sgi/sgi.c:540 -#, fuzzy, c-format +#, c-format msgid "Could not open '%s' for writing." -msgstr "Ei voi avata %s" +msgstr "Ei voi avata '%s' kirjoitusta varten." #: plug-ins/sgi/sgi.c:622 msgid "Save as SGI" -msgstr "" +msgstr "Tallenna SGI" #: plug-ins/sgi/sgi.c:631 -#, fuzzy msgid "Compression type" -msgstr "Pakkaus" +msgstr "Pakkausmuoto" #: plug-ins/sgi/sgi.c:635 -#, fuzzy msgid "No compression" -msgstr "_RLE pakkaus" +msgstr "Ei pakkausta" #: plug-ins/sgi/sgi.c:637 -#, fuzzy msgid "RLE compression" msgstr "_RLE pakkaus" @@ -11931,6 +11396,8 @@ "Aggressive RLE\n" "(not supported by SGI)" msgstr "" +"Aggressiivinen RLE\n" +"(ei SGI:n tukema)" #: plug-ins/twain/twain.c:313 msgid "TWAIN (Dump)..." @@ -11947,7 +11414,7 @@ #. Initialize our progress dialog #: plug-ins/twain/twain.c:489 msgid "Transferring TWAIN data..." -msgstr "" +msgstr "Siirretään TWAIN data..." #: plug-ins/winicon/icodialog.c:123 msgid "1 bpp, 1-bit alpha, 2-slot palette" @@ -11999,7 +11466,6 @@ msgstr " " #: plug-ins/winsnap/winsnap.c:919 -#, fuzzy msgid "Seconds delay" msgstr "sekunnin tauko" @@ -12047,10 +11513,9 @@ #: plug-ins/xjt/xjt.c:844 msgid "Save as XJT" -msgstr "" +msgstr "Tallenna XJT" #: plug-ins/xjt/xjt.c:870 -#, fuzzy msgid "Clear transparent" msgstr "Läpinäkyvä" @@ -12063,9 +11528,9 @@ msgstr "Pehmennys:" #: plug-ins/xjt/xjt.c:1693 plug-ins/xjt/xjt.c:3323 -#, fuzzy, c-format +#, c-format msgid "Could not create working folder '%s': %s" -msgstr "Tiedoston kirjoittaminen epäonnistui\n" +msgstr "Ei voi luoda työhakemistoa '%s': %s" #: plug-ins/xjt/xjt.c:3189 #, c-format @@ -12073,23 +11538,23 @@ msgstr "" #: plug-ins/xjt/xjt.c:3195 -#, fuzzy, c-format +#, c-format msgid "Error: XJT property file '%s' is empty." -msgstr "Ei voi avata: %s" +msgstr "" #, fuzzy #~ msgid "Gfig layer %d" #~ msgstr "Gfig taso %d" #, fuzzy -#~ msgid "TIFF images" -#~ msgstr "TIFF kanava" +#~ msgid "Stro_ke" +#~ msgstr "Vahva" #~ msgid "Paint" #~ msgstr "Maalaa" #~ msgid "All" -#~ msgstr "KAIKKI" +#~ msgstr "Kaikki" #~ msgid "Clockwise" #~ msgstr "Myötäpäivään" @@ -12099,23 +11564,13 @@ #, fuzzy #~ msgid "Ifs_Compose..." -#~ msgstr "Yhdistetään kuvat..." - -#, fuzzy -#~ msgid "/Move" -#~ msgstr "Toimintatapa" +#~ msgstr "Yhdistetään..." -#, fuzzy -#~ msgid "/Stretch" -#~ msgstr "Pituus:" - -#, fuzzy -#~ msgid "/Delete" -#~ msgstr "Poista" +#~ msgid "Opening %s" +#~ msgstr "Avataan %s" -#, fuzzy -#~ msgid "/Redo" -#~ msgstr "Punainen" +#~ msgid "See %s" +#~ msgstr "Katso %s" #~ msgid "Loading %s:" #~ msgstr "Ladataan %s:" @@ -12123,146 +11578,60 @@ #~ msgid "Saving %s:" #~ msgstr "Talletetaan %s:" -#~ msgid "Bezier Settings" -#~ msgstr "Bezier asetukset" - -#~ msgid "Number of Sides/Points/Turns:" -#~ msgstr "Sivuja/pisteitä/käännöksiä:" - -#~ msgid "Could not locate help document" -#~ msgstr "Aputiedostoa ei löytynyt" - -#, fuzzy #~ msgid "/Filters/Render" -#~ msgstr "/Suotimet/Kuvan muodostus/Kuviot/Fractal Explorer..." +#~ msgstr "/Suotimet/Kuvan muodostus" -#, fuzzy #~ msgid "/Filters/Light Effects" -#~ msgstr "/Filters/Light Effects/_GFlare..." +#~ msgstr "/Suotimet/Valoefektit" -#, fuzzy #~ msgid "/Filters/Map" -#~ msgstr "/Filters/Map/Map Object..." +#~ msgstr "/Suotimet/Kuvaus" -#, fuzzy #~ msgid "/Filters/Colors/Map" -#~ msgstr "/Filters/Colors/_Kuuma..." +#~ msgstr "/Suotimet/Värit/Kuvaus" -#, fuzzy #~ msgid "/Filters/Render/Pattern" -#~ msgstr "/Suotimet/Kuvan muodostus/Kuviot/Fractal Explorer..." +#~ msgstr "/Suotimet/Kuvan muodostus/Kuvio" -#, fuzzy #~ msgid "/Filters/Animation" -#~ msgstr "/Filters/Animation/_Toisto..." +#~ msgstr "/Suotimet/Animaatio" -#, fuzzy #~ msgid "/Filters/Glass Effects" -#~ msgstr "/Filters/Glass Effects/Lasitiilet..." +#~ msgstr "/Suotimet/Linssiefektit" -#, fuzzy #~ msgid "/Image/Crop" -#~ msgstr "/Image/Transform/_Automaattirajaus" +#~ msgstr "/Image/Rajaa" -#, fuzzy #~ msgid "/Layer/Crop" -#~ msgstr "/Layer/Colors/Auto/Laajenna väriskaala" +#~ msgstr "/Layer/Rajaa" -#, fuzzy #~ msgid "/Layer/Colors/Auto" -#~ msgstr "/Layer/Colors/Auto/Laajenna väriskaala" - -#, fuzzy -#~ msgid "/Filters/Distorts" -#~ msgstr "/Filters/Distorts/Tuuli..." +#~ msgstr "/Layer/Colors/Auto/_Normalisoi" -#, fuzzy #~ msgid "/Filters/Blur" -#~ msgstr "/Filters/Blur/_Pikselöi..." - -#, fuzzy -#~ msgid "/Filters/Colors" -#~ msgstr "/Filters/Colors/_Kuuma..." - -#, fuzzy -#~ msgid "/Layer/Colors/Info" -#~ msgstr "/Layer/Colors/Auto/Laajenna väriskaala" - -#, fuzzy -#~ msgid "/Image/Mode" -#~ msgstr "/Image/Transform/_Giljotiini" - -#, fuzzy -#~ msgid "/Filters/Generic" -#~ msgstr "/Suotimet/Kuvan muodostus/Kuviot/Fractal Explorer..." - -#, fuzzy -#~ msgid "/Filters/Artistic" -#~ msgstr "/Filters/Artistic/_Kubismi..." - -#, fuzzy -#~ msgid "/Filters/Enhance" -#~ msgstr "/Filters/Enhance/_Terävöitä..." +#~ msgstr "/Filters/Sumennus" -#, fuzzy -#~ msgid "/Filters/Combine" -#~ msgstr "/Filters/Combine/_Filmi..." +#~ msgid "_Spherical" +#~ msgstr "Pallomainen" -#, fuzzy -#~ msgid "/Filters/Edge-Detect" -#~ msgstr "/Filters/Edge-Detect/_Reunan tunnistus..." +#~ msgid "S_inusoidal" +#~ msgstr "Sini" #, fuzzy -#~ msgid "/Filters/Toys" -#~ msgstr "/Suotimet/Lelut/Huihai-Zoom..." +#~ msgid "Source" +#~ msgstr "Lähde 1:" -#, fuzzy -#~ msgid "/Image/Transform" -#~ msgstr "/Image/Transform/_Automaattirajaus" +#~ msgid "Do pre_view" +#~ msgstr "Tee esikatselu" -#, fuzzy #~ msgid "/File/Send" -#~ msgstr "/Filters/Map/Map Object..." +#~ msgstr "/File/Lähetä" -#, fuzzy #~ msgid "_Do preview" #~ msgstr "_Esikatselu" -#, fuzzy -#~ msgid "/Filters/Noise" -#~ msgstr "/Suotimet/Lelut/Huihai-Zoom..." - -#, fuzzy -#~ msgid "/Filters/Render/Clouds" -#~ msgstr "/Filters/Render/Clouds/_Plasma..." - -#, fuzzy -#~ msgid "/File/Acquire" -#~ msgstr "/File/Acquire/_Kuvan kaappaus..." - -#, fuzzy -#~ msgid "/Xtns/Extensions" -#~ msgstr "/Xtns/_Yksikköeditori" - -#, fuzzy -#~ msgid "/Filters/Render/Nature" -#~ msgstr "/Filters/Render/Nature/Liekki..." - -#, fuzzy -#~ msgid "/Filters/Web" -#~ msgstr "/Filters/Map/Map Object..." - -#, fuzzy -#~ msgid "Source" -#~ msgstr "Neliö" - -#, fuzzy -#~ msgid "Do pre_view" -#~ msgstr "Esikatselu" - -#, fuzzy #~ msgid "_Plugin Details" -#~ msgstr "Liitännäisten kuvaukset" +#~ msgstr "_Liitännäisten kuvaukset" #~ msgid "Details <<" #~ msgstr "Yksityiskohdat <<" @@ -12285,44 +11654,98 @@ #~ msgid "Search by Name" #~ msgstr "Etsi nimellä" -#, fuzzy #~ msgid "Ins date" #~ msgstr "Asennuspäivämäärä" -#, fuzzy #~ msgid "Menu path" -#~ msgstr "Menupolku" +#~ msgstr "Valikkopolku" #~ msgid "Search:" #~ msgstr "Haku:" +#~ msgid "Pos X:" +#~ msgstr "Paikka X:" + +#~ msgid "Pos Y:" +#~ msgstr "Paikka Y:" + +#~ msgid "Pos Z:" +#~ msgstr "Paikka Z:" + +#~ msgid "TIFF images" +#~ msgstr "TIFF kuvat" + +#~ msgid "Rendering %s" +#~ msgstr "Luodaan %s" + +#~ msgid "Scale (log 2):" +#~ msgstr "Skaalaa (log 2):" + #~ msgid "In:" #~ msgstr "Syöte:" #~ msgid "Out:" #~ msgstr "Tuloste:" -#, fuzzy -#~ msgid "_Spherical" -#~ msgstr "Pallomainen" +#~ msgid "Bezier Settings" +#~ msgstr "Bezier asetukset" -#, fuzzy -#~ msgid "S_inusoidal" -#~ msgstr "Sini" +#~ msgid "Number of Sides/Points/Turns:" +#~ msgstr "Sivuja/pisteitä/käännöksiä:" + +#~ msgid "Could not locate help document" +#~ msgstr "Aputiedostoa ei löytynyt" + +#~ msgid "" +#~ "The requested document could not be found in your GIMP help path as shown " +#~ "above. This means that the topic has not yet been written or your " +#~ "installation is not complete. Ensure that your installation is complete " +#~ "before reporting this error as a bug." +#~ msgstr "" +#~ "Dokumenttia ei löytynyt. Tämä tarkoittaa että avustustiedostoja ei ole " +#~ "kirjoitettu tai asennuksesi on epätäydellinen." #, fuzzy -#~ msgid "E_nable antialiasing" +#~ msgid "Rotate/scale" +#~ msgstr "Kierrä/skaalaa" + +#~ msgid "/Move" +#~ msgstr "/Siirrä" + +#~ msgid "/Stretch" +#~ msgstr "/Voima" + +#~ msgid "/New" +#~ msgstr "/Uusi" + +#~ msgid "/Delete" +#~ msgstr "/Poista" + +#~ msgid "/Undo" +#~ msgstr "/Kumoa" + +#~ msgid "/Redo" +#~ msgstr "/Uudelleen" + +#~ msgid "/Select All" +#~ msgstr "/Valitse kaikki" + +#~ msgid "m.rijk@chello.nl" +#~ msgstr "m.rijk@chello.nl" + +#~ msgid "Selection:" +#~ msgstr "Valinta:" + +#~ msgid "E_nable Antialiasing" #~ msgstr "Käytä antialiasointia" #~ msgid "T_hreshold:" #~ msgstr "Kynnysarvo:" -#, fuzzy -#~ msgid "L_ight yype:" +#~ msgid "L_ight Type:" #~ msgstr "Valonlähteen tyyppi:" -#, fuzzy -#~ msgid "Lig_ht color:" +#~ msgid "Lig_ht Color:" #~ msgstr "Valolähteen väri:" #~ msgid "_Ambient:" @@ -12340,6 +11763,15 @@ #~ msgid "_Highlight:" #~ msgstr "Korostus:" +#~ msgid "Random Seed" +#~ msgstr "Satunnaissiemen" + +#~ msgid "_Blur..." +#~ msgstr "Sumennetaan..." + +#~ msgid "R_andomization %:" +#~ msgstr "Satunnaistus %:" + #~ msgid "Parameters were Saved to '%s'" #~ msgstr "Parametrit tallennettu tiedostoon '%s'" @@ -12352,30 +11784,86 @@ #~ msgid "Image must be RGB or GRAY" #~ msgstr "Kuvan täytyy olla RGB tai harmaasävy" -#~ msgid "Brush" -#~ msgstr "Sivellin" +#~ msgid "Image Preview" +#~ msgstr "Esikatselu" -#~ msgid "Airbrush" -#~ msgstr "Ruisku" +#~ msgid "Force baseline JPEG (Readable by all decoders)" +#~ msgstr "Perustason JPEG (luettavissa kaikille ohjelmilla)" -#~ msgid "Pencil" -#~ msgstr "Kynä" +#~ msgid "DCT method (Speed/quality tradeoff):" +#~ msgstr "DCT menetelmä (nopes/laatu):" -#~ msgid "New" -#~ msgstr "Uusi" +#~ msgid "Save Background Color" +#~ msgstr "Tallenna taustaväri" -#~ msgid "Multiple" -#~ msgstr "Monta" +#~ msgid "Save Resolution" +#~ msgstr "Tallenna resoluutio" -#, fuzzy -#~ msgid "" -#~ "Draw all objects on one layer (original or new) or one object per layer." -#~ msgstr "" -#~ "Piirrä kaikki objektit samalle tasolle (alkuperäinen tai uusi) tai yksi " -#~ "objekti per taso" +#~ msgid "Save Creation Time" +#~ msgstr "Tallenna luontiaika" -#~ msgid "Draw on:" -#~ msgstr "Piirrä tasolle:" +#~ msgid "Tile _Height:" +#~ msgstr "Tiilen _korkeus:" + +#~ msgid "C_ell Size:" +#~ msgstr "Solun koko:" + +#~ msgid "_Noisify..." +#~ msgstr "_Kohina..." + +#~ msgid "Noisify" +#~ msgstr "Kohina" + +#~ msgid "Random _Seed:" +#~ msgstr "Satunnaissiemen:" + +#~ msgid "Save _Background Color" +#~ msgstr "Tallenna taustaväri" + +#~ msgid "Save _Resolution" +#~ msgstr "Tallenna _resoluutio" + +#~ msgid "Save Creation _Time" +#~ msgstr "Tallenna aikaleima" + +#~ msgid "Save Color _Values From Transparent Pixels" +#~ msgstr "Tallenna läpinäkyvien pikselien väriarvot" + +#~ msgid "_X Offset:" +#~ msgstr "_X-siirtymä:" + +#~ msgid "_Y Offset:" +#~ msgstr "_Y-siirtymä:" + +#~ msgid "_Random Seed:" +#~ msgstr "Satunnaisluvun siemen:" + +#~ msgid "R_andom Seed:" +#~ msgstr "Satunnaisluku:" + +#~ msgid "Brush" +#~ msgstr "Sivellin" + +#~ msgid "Airbrush" +#~ msgstr "Ruisku" + +#~ msgid "Pencil" +#~ msgstr "Kynä" + +#~ msgid "New" +#~ msgstr "Uusi" + +#~ msgid "Multiple" +#~ msgstr "Monta" + +#~ msgid "" +#~ "Draw all objects on one layer (original or new) or one object per layer." +#~ msgstr "" +#~ "Piirrä kaikki objektit samalle tasolle (alkuperäinen tai uusi) tai yksi " +#~ "objekti per taso." + +#~ msgid "Draw on:" +#~ msgstr "Piirrä tasolle:" #~ msgid "Selection+Fill" #~ msgstr "Valinta+Täyttö" @@ -12383,25 +11871,16 @@ #~ msgid "Using:" #~ msgstr "Käyttäen:" -#, fuzzy -#~ msgid "Reverse line" -#~ msgstr "Takaperin" - -#, fuzzy -#~ msgid "Scale to image" -#~ msgstr "Käytettävissä olevat kuvat:" - #~ msgid "Gfig Brush Selection" #~ msgstr "Gfig siveltimen valinta" -#~ msgid "Gradient:" -#~ msgstr "Väriliuku:" - #~ msgid "Pressure:" #~ msgstr "Paine:" -#, fuzzy -#~ msgid "Set brush..." +#~ msgid "No Options..." +#~ msgstr "Ei valintoja..." + +#~ msgid "Set Brush..." #~ msgstr "Aseta sivellin..." #~ msgid "Add" @@ -12413,19 +11892,16 @@ #~ msgid "Intersect" #~ msgstr "Leikkaa" -#, fuzzy -#~ msgid "Fill type:" +#~ msgid "Fill Type:" #~ msgstr "Täyttötyyppi:" #~ msgid "Fill Opacity:" #~ msgstr "Täyttöpeitto:" -#, fuzzy -#~ msgid "Each selection" +#~ msgid "Each Selection" #~ msgstr "Jokainen valinta" -#, fuzzy -#~ msgid "All selections" +#~ msgid "All Selections" #~ msgstr "Kaikki valinnat" #~ msgid "Segment" @@ -12434,6 +11910,9 @@ #~ msgid "Sector" #~ msgstr "Sektori" +#~ msgid "Snap to Grid" +#~ msgstr "Tartu apuviivastoon" + #~ msgid "Object" #~ msgstr "Objekti" @@ -12446,20 +11925,10 @@ #~ msgid "%d unsaved Gfig objects. Continue with exiting?" #~ msgstr "%d tallentamatonta Gfig objektia. Poistutaanko?" -#, fuzzy -#~ msgid "Enter Gfig object name" -#~ msgstr "Gfig objektin nimi:" - -#, fuzzy -#~ msgid "Gfig object name:" +#~ msgid "Gfig Object Name:" #~ msgstr "Gfig objektin nimi:" -#, fuzzy -#~ msgid "Rescan for Gfig objects" -#~ msgstr "Lue uudelleen" - -#, fuzzy -#~ msgid "Add Gfig path" +#~ msgid "Add Gfig Path" #~ msgstr "Lisää Gfig polku" #~ msgid "Gfig - GIMP plug-in" @@ -12468,15 +11937,10 @@ #~ msgid "Release 2.0" #~ msgstr "Julkaisu 2.0" -#, fuzzy -#~ msgid "Delete Gfig drawing" -#~ msgstr "Tallenna Gfig piirros" - #~ msgid "%s copy" #~ msgstr "%s kopio" -#, fuzzy -#~ msgid "Draw name:" +#~ msgid "Draw Name:" #~ msgstr "Piirrosnimi:" #~ msgid "(none)" @@ -12485,186 +11949,145 @@ #~ msgid "" #~ msgstr "" -#~ msgid "Random Seed" -#~ msgstr "Satunnaissiemen" - -#, fuzzy -#~ msgid "_Blur..." -#~ msgstr "Sininen" - -#~ msgid "R_andomization %:" -#~ msgstr "Satunnaistus %:" +#~ msgid "Select Contiguous Region" +#~ msgstr "Valitse jatkuva alue" -#~ msgid "Blur Radius:" -#~ msgstr "Säde:" +#~ msgid "Curl Opacity" +#~ msgstr "Taitoksen peitto" -#, fuzzy -#~ msgid "Gaussian Blur (_RLE)..." -#~ msgstr "/Filters/Blur/Gauss-sumennus (_RLE)..." - -#~ msgid "Image Preview" -#~ msgstr "Esikatselu" - -#~ msgid "Force baseline JPEG (Readable by all decoders)" -#~ msgstr "Perustason JPEG (luettavissa kaikille ohjelmilla)" +#~ msgid "" +#~ "Use Current Gradient\n" +#~ "instead of FG/BG-Color" +#~ msgstr "" +#~ "Käytä väriliukua\n" +#~ "edusta/taustavärin sijaan" -#~ msgid "DCT method (Speed/quality tradeoff):" -#~ msgstr "DCT menetelmä (nopes/laatu):" +#~ msgid "RLE Compression" +#~ msgstr "RLE pakkaus" -#~ msgid "Save Background Color" -#~ msgstr "Talleta taustaväri" +#~ msgid "_Num Segments:" +#~ msgstr "Se_gmenttejä:" -#~ msgid "Save Resolution" -#~ msgstr "Talleta resoluutio" +#~ msgid "_Linear Map" +#~ msgstr "_Lineaarinen" -#~ msgid "Save Creation Time" -#~ msgstr "Talleta luontiaika" +#~ msgid "_Spherical Map" +#~ msgstr "_Pallomainen" -#~ msgid "Tile _Height:" -#~ msgstr "Tiilen _korkeus:" +#~ msgid "S_inusoidal Map" +#~ msgstr "_Sinimäinen" -#~ msgid "Random _Seed:" -#~ msgstr "Satunnaissiemen" +#~ msgid "_Selection" +#~ msgstr "_Valinta" -#~ msgid "Save _Background Color" -#~ msgstr "Talleta taustaväri" +#~ msgid "You must specify either horizontal or vertical (or both)" +#~ msgstr "Määritä vaakasuora tai pystysuora tai molemmat" -#~ msgid "Save _Resolution" -#~ msgstr "Talleta _resoluutio" +#~ msgid "Blur Horizontally" +#~ msgstr "Sumenna vaakasuoraan" -#~ msgid "Save Creation _Time" -#~ msgstr "Talleta aikaleima" +#~ msgid "Blur Vertically" +#~ msgstr "Sumenna pystysuoraan" -#~ msgid "Save Color _Values From Transparent Pixels" -#~ msgstr "Talleta läpinäkyvien pikselien väriarvot" +#~ msgid "Blur Radius:" +#~ msgstr "Säde:" -#~ msgid "_X Offset:" -#~ msgstr "_X-siirtymä:" +#~ msgid "Gaussian Blur (_RLE)..." +#~ msgstr "Gauss-sumennus (_RLE)..." -#~ msgid "_Y Offset:" -#~ msgstr "_Y-siirtymä:" +#~ msgid "RLE Gaussian Blur" +#~ msgstr "RLE Gauss-sumennus" -#~ msgid "_Random Seed:" -#~ msgstr "Satunnaisluvun siemen:" +#~ msgid "Milliseconds" +#~ msgstr "millisekuntia" -#~ msgid "R_andom Seed:" -#~ msgstr "Satunnaisluku:" +#~ msgid "Brush Preview:" +#~ msgstr "Siveltimen esikatselu:" -#~ msgid "Snap to Grid" -#~ msgstr "Tartu apuviivastoon" +#~ msgid "Paper Preview:" +#~ msgstr "Paperi esikatselu:" -#~ msgid "Save: No filename given" -#~ msgstr "Tiedoston nimi puuttuu" +#~ msgid "(Desc)" +#~ msgstr "(Kuvaus)" -#~ msgid "Cannot save to a folder." -#~ msgstr "Kansioon ei voi tallentaa" +#, fuzzy +#~ msgid "" +#~ "File already exists.\n" +#~ "\n" +#~ "Do you really want to overwrite?" +#~ msgstr "" +#~ "Tiedosto on olemassa.\n" +#~ " Ylikirjoitetaanko?" -#~ msgid "/Filters/Render/_Fractal Explorer..." -#~ msgstr "/Suotimet/Kuvan muodostus/Kuviot/Fractal Explorer..." +#~ msgid "Main" +#~ msgstr "Pää" -#~ msgid "/Filters/Light Effects/_Lighting Effects..." -#~ msgstr "/Suotimet/Valoefektit/Valaistusefektit..." +#~ msgid "Misc" +#~ msgstr "Sekalaiset" -#~ msgid "/Filters/Map/Map _Object..." -#~ msgstr "/Filters/Map/Kuvaa kappaleeseen..." +#~ msgid "The Graph" +#~ msgstr "Graafi" -#~ msgid "/Filters/Colors/Map/_Alien Map..." -#~ msgstr "/Suotimet/Värit/Kuvaus/Alien Map..." +#~ msgid "CML File Operation Warning" +#~ msgstr "CML Tiedostovaroitus" -#~ msgid "AlienMap: Transforming..." -#~ msgstr "AlienMap: Muunnos käynnissä..." +#~ msgid "Parameter Settings" +#~ msgstr "Parametrit" -#~ msgid "AlienMap" -#~ msgstr "AlienMap" +#~ msgid "Results" +#~ msgstr "Tulokset" -#~ msgid "Change intensity of the red channel" -#~ msgstr "Säädä punaisen värikanavan voimakkuutta" +#~ msgid "Image comments" +#~ msgstr "Kommentit" -#~ msgid "Change intensity of the green channel" -#~ msgstr "Säädä vihreän värikanavan voimakkuutta" +#~ msgid "_X-Offset:" +#~ msgstr "_X-siirtymä:" -#~ msgid "Change intensity of the blue channel" -#~ msgstr "Säädä sinisen värikanavan voimakkuutta" +#~ msgid "_Y-Offset:" +#~ msgstr "_Y-siirtymä:" -#~ msgid "Cos_ine" -#~ msgstr "Kosini" +#~ msgid "Preview (1:4) - Right Click to Jump" +#~ msgstr "Esikatselu (1:4) - Napsauta oikealla siirtyäksesi" -#~ msgid "Use sine-function for red component." -#~ msgstr "Käytä punaiselle värikanavalle sinifunktiota." +#~ msgid "Open SVG" +#~ msgstr "Lataa SVG" -#~ msgid "Use cosine-function for red component." -#~ msgstr "Käytä punaiselle värikanavalle kosinifunktiota." +#~ msgid "Ratio _X:" +#~ msgstr "Suhde _X:" -#~ msgid "" -#~ "Red channel: use linear mapping instead of any trigonometrical function" -#~ msgstr "Käytä punaiselle värikanavalle lineaarista kuvausta." +#~ msgid "Targa Options" +#~ msgstr "Targa asetukset" -#~ msgid "Use sine-function for green component." -#~ msgstr "Käytä vihreälle värikanavalle sinifunktiota." +#~ msgid "Secondary Options" +#~ msgstr "Toissijaiset optiot" -#~ msgid "Use cosine-function for green component." -#~ msgstr "Käytä vihreälle värikanavalle kosinifunktiota." +#~ msgid "lpeek.mrijk@consunet.nl" +#~ msgstr "" -#~ msgid "" -#~ "Green channel: use linear mapping instead of any trigonometrical function" -#~ msgstr "Käytä vihreälle värikanavalle lineaarista kuvausta." +#~ msgid "Selection is %dx%d" +#~ msgstr "Valinta on %d×%d" -#~ msgid "Use sine-function for blue component." -#~ msgstr "Käytä siniselle värikanavalle sinifunktiota" +#~ msgid "/Filters/Render/_Fractal Explorer..." +#~ msgstr "/Suotimet/Kuvan muodostus/Kuviot/Fractal Explorer..." -#~ msgid "Use cosine-function for blue component." -#~ msgstr "Käytä siniselle värikanavalle kosinifunktiota" +#~ msgid "/Filters/Light Effects/_Lighting Effects..." +#~ msgstr "/Suotimet/Valoefektit/Valaistusefektit..." -#~ msgid "" -#~ "Blue channel: use linear mapping instead of any trigonometrical function" -#~ msgstr "Käytä siniselle värikanavalle lineaarista kuvausta." +#~ msgid "/Filters/Map/Map _Object..." +#~ msgstr "/Filters/Map/Kuvaa kappaleeseen..." #~ msgid "/Filters/Colors/Map/Alien Map _2..." #~ msgstr "/Suotimet/Värit/Kuvaus/Alien Map _2..." -#~ msgid "Change frequency of the red/hue channel" -#~ msgstr "Säädä punaisen värin (R) tai värisävyn (H) kanavan taajuutta" - -#~ msgid "Change angle of the red/hue channel" -#~ msgstr "Säädä punaisen värin (R) tai värisävyn (H) kanavan vaihetta" - -#~ msgid "Change frequency of the green/saturation channel" -#~ msgstr "Säädä vihreän värin (G) tai värikylläisyyden (H) kanavan taajuutta" - -#~ msgid "Change frequency of the blue/luminance channel" -#~ msgstr "Säädä sinisen värin (B) tai valoisuuden (L) kanavan taajuutta" - -#~ msgid "Change angle of the blue/luminance channel" -#~ msgstr "Säädä sinisen värin (B) tai valoisuuden (L) kanavan vaihetta" - -#~ msgid "Use function for red/hue component" -#~ msgstr "Käytä funktiota punaisen värin (R) tai värisävyn (H) kanavalle" - -#~ msgid "Use function for green/saturation component" -#~ msgstr "" -#~ "Käytä funktiota vihreän värin (G) tai värikylläisyyden (S) kanavalle" - -#~ msgid "Use function for blue/luminance component" -#~ msgstr "Käytä funktiota sinisen värin (B) tai valoisuuden (L) kanavalle" - -#~ msgid "About AlienMap2" -#~ msgstr "Tietoja AlienMap2:sta" - #~ msgid "/Filters/Render/Pattern/CML _Explorer..." #~ msgstr "/Suotimet/Kuvan muodostus/Kuviot/CML Explorer..." -#~ msgid "NULL" -#~ msgstr "NULL" - -#~ msgid "The Graph" -#~ msgstr "Graafi" - -#~ msgid "CML File Operation Warning" -#~ msgstr "CML Tiedostovaroitus" - #~ msgid "/Layer/Align _Visible Layers..." #~ msgstr "/Layer/Kohdista näkyvät tasot..." +#~ msgid "/Filters/Animation/_Playback..." +#~ msgstr "/Filters/Animation/_Toisto..." + #~ msgid "/Filters/Animation/Optimize (for _GIF)" #~ msgstr "/Filters/Animation/Optimoi _GIF" @@ -12677,24 +12100,15 @@ #~ msgid "/Filters/Glass Effects/Apply _Lens..." #~ msgstr "/Suotimet/Valoefektit/Linssiefekti..." -#~ msgid "/Filters/Map/_Bump Map..." -#~ msgstr "/Filters/Map/Kuhmutus..." - -#~ msgid "_Linear Map" -#~ msgstr "Lineaarinen" - -#~ msgid "_Spherical Map" -#~ msgstr "Pallomainen" +#~ msgid "/Layer/Colors/Auto/Stretch _HSV" +#~ msgstr "/Layer/Colors/Auto/Laajenna väriskaala" -#~ msgid "S_inuosidal Map" -#~ msgstr "Sinikäyrä" +#~ msgid "/Layer/Colors/Auto/_Stretch Contrast" +#~ msgstr "/Layer/Colors/Auto/_Laajenna kontrasti" #~ msgid "/Filters/Colors/Colorcube A_nalysis..." #~ msgstr "/Filters/Colors/Värianalyysi..." -#~ msgid "Results" -#~ msgstr "Tulokset" - #~ msgid "/Filters/Colors/Channel Mi_xer.." #~ msgstr "/Filters/Colors/Kanavasekoitus" @@ -12710,6 +12124,12 @@ #~ msgid "/Filters/Colors/Color to _Alpha..." #~ msgstr "/Filters/Colors/Väri -> _Alfa..." +#~ msgid "/Filters/Colors/C_ompose..." +#~ msgstr "/Filters/Colors/Yhdistä..." + +#~ msgid "/Filters/Generic/_Convolution Matrix..." +#~ msgstr "/Filters/Generic/_Konvoluutiomatriisi..." + #~ msgid "/Filters/Distorts/_Curve Bend..." #~ msgstr "/Filters/Distorts/_Taivutus käyriin..." @@ -12719,15 +12139,15 @@ #~ msgid "/Filters/Render/Pattern/_Diffraction Patterns..." #~ msgstr "/Filters/Render/Pattern/_Diffraktiokuviot..." +#~ msgid "/Filters/Edge-Detect/_Edge..." +#~ msgstr "/Filters/Edge-Detect/_Reunan tunnistus..." + #~ msgid "/Filters/Distorts/En_grave..." #~ msgstr "/Filters/Distorts/Kaiverrus..." #~ msgid "/Filters/Colors/Map/_Color Exchange..." #~ msgstr "/Filters/Colors/Map/_Värin vaihto..." -#~ msgid "_Selection" -#~ msgstr "Valinta" - #~ msgid "/Filters/Light Effects/_FlareFX..." #~ msgstr "/Filters/Light Effects/_Heijastus..." @@ -12737,14 +12157,14 @@ #~ msgid "/Filters/Toys/Gee-_Slime" #~ msgstr "/Suotimet/Lelut/Huihai-Lima..." -#~ msgid "Save as GIcon" -#~ msgstr "Talleta GIcon" +#~ msgid "/Filters/Render/Pattern/_Qbist..." +#~ msgstr "/Filters/Render/Pattern/_Qbisti..." -#~ msgid "Icon Name:" -#~ msgstr "Ikonin nimi:" +#~ msgid "/Filters/Render/Pattern/_Grid..." +#~ msgstr "/Filters/Render/Pattern/_Ristikko..." -#~ msgid "Milliseconds" -#~ msgstr "millisekuntia" +#~ msgid "/Filters/Map/_Illusion..." +#~ msgstr "/Filters/Map/_Illuusio..." #~ msgid "/Filters/Distorts/_IWarp..." #~ msgstr "/Filters/Distorts/_IWarp..." @@ -12752,11 +12172,8 @@ #~ msgid "/Filters/Render/Pattern/_Jigsaw..." #~ msgstr "/Filters/Render/Pattern/_Palapeli..." -#~ msgid "Preview (in image window, will modify image's undo history!)" -#~ msgstr "Esikatselu kuvaikkunassa (muuttaa toimintohistoriaa!)" - -#~ msgid "Image comments" -#~ msgstr "Kommentit" +#~ msgid "/Filters/Map/_Van Gogh (LIC)..." +#~ msgstr "/Filters/Map/_Van Gogh (LIC)..." #~ msgid "/Filters/Colors/Map/Adjust _FG-BG" #~ msgstr "/Filters/Colors/Map/Vaihda edusta-tausta" @@ -12770,64 +12187,217 @@ #~ msgid "/Filters/Distorts/_Mosaic..." #~ msgstr "/Filters/Distorts/_Mosaiikki..." +#~ msgid "/Filters/Distorts/Newsprin_t..." +#~ msgstr "/Filters/Distorts/Sanomalehtipaino..." + +#~ msgid "/Filters/Enhance/_NL Filter..." +#~ msgstr "/Filters/Enhance/_NL suodatin..." + +#~ msgid "/Filters/Light Effects/Su_perNova..." +#~ msgstr "/Filters/Light Effects/Su_perNova..." + #~ msgid "/Filters/Artistic/Oili_fy..." #~ msgstr "/Filters/Artistic/Öljyväri..." -#~ msgid "/Xtns/_Plugin Details" -#~ msgstr "/Xtns/_Liitännäisten tiedot" +#~ msgid "/Filters/Blur/_Pixelize..." +#~ msgstr "/Filters/Blur/_Pikselöi..." + +#~ msgid "/Xtns/Extensions/_Plugin Details" +#~ msgstr "/Xtns/Laajennukset/_Liitännäisten tiedot" #~ msgid "/Filters/Distorts/P_olar Coords..." -#~ msgstr "/Filters/Distorts/P_olaari koordinaatit..." +#~ msgstr "/Filters/Distorts/P_olaarikoordinaatit..." -#~ msgid "_X-Offset:" -#~ msgstr "_X-siirtymä:" +#~ msgid "/Filters/Distorts/_Ripple..." +#~ msgstr "/Filters/Distorts/_Väreily..." -#~ msgid "_Y-Offset:" -#~ msgstr "_Y-siirtymä:" +#~ msgid "/Filters/Colors/Map/_Sample Colorize..." +#~ msgstr "/Filters/Colors/Map/_Näytteen väritys..." + +#~ msgid "/Filters/Noise/S_catter HSV..." +#~ msgstr "/Filters/Noise/Hajota HSV..." + +#~ msgid "/File/Acquire/_Screen Shot..." +#~ msgstr "/File/Acquire/_Kuvan kaappaus..." + +#~ msgid "/Filters/Blur/_Selective Gaussian Blur..." +#~ msgstr "/Filters/Blur/_Valikoiva Gauss-sumennus..." + +#~ msgid "/Filters/Distorts/_Shift..." +#~ msgstr "/Filters/Distorts/_Siirto..." + +#~ msgid "/Filters/Render/Pattern/_Sinus..." +#~ msgstr "/Filters/Render/Pattern/_Sini..." #~ msgid "/Filters/Colors/Smoo_th Palette..." #~ msgstr "/Filters/Colors/Tasoita paletti..." -#~ msgid "Open SVG" -#~ msgstr "Lataa SVG" +#~ msgid "/Filters/Render/Clouds/_Solid Noise..." +#~ msgstr "/Filters/Render/Clouds/_Yhtenäinen kohina..." -#~ msgid "Ratio _X:" -#~ msgstr "Suhde _X:" +#~ msgid "/Filters/Edge-Detect/_Sobel..." +#~ msgstr "/Filters/Edge-Detect/_Sobel..." -#~ msgid "Targa Options" -#~ msgstr "Targa asetukset" +#~ msgid "/Filters/Light Effects/_Sparkle..." +#~ msgstr "/Filters/Light Effects/_Säkenöinti..." + +#~ msgid "/Filters/Render/Sphere _Designer..." +#~ msgstr "/Filters/Render/Pallo..." + +#~ msgid "/Filters/Artistic/_Apply Canvas..." +#~ msgstr "/Filters/Artistic/_Lisää kangas..." + +#~ msgid "/Xtns/Extensions/_Unit Editor" +#~ msgstr "/Xtns/Laajennukset/_Yksikköeditori" #~ msgid "/Filters/Distorts/_Waves..." #~ msgstr "/Filters/Distorts/_Aallot" -#~ msgid "/Xtns/_DB Browser" -#~ msgstr "/Xtns/_DB Selain" +#~ msgid "/File/Acquire/From Clipboard" +#~ msgstr "/File/Acquire/Leikepöydältä" + +#~ msgid "/File/Page Setup" +#~ msgstr "/File/Sivun asetukset" #~ msgid "Display" #~ msgstr "Näyttö" -#~ msgid "none" -#~ msgstr "ei mitään" - -#~ msgid "Not found \"%s\": used \"%s\" instead" -#~ msgstr "Ei löytynyt: '%s' käytetään '%s'" - -#~ msgid "Brush Preview:" -#~ msgstr "Siveltimen esikatselu:" - #~ msgid "/Filters/Artistic/_GIMPressionist..." #~ msgstr "/Filters/Artistic/_GIMPressionisti..." -#~ msgid "lpeek.mrijk@consunet.nl" -#~ msgstr "lpeek.mrijk@consunet.nl" +#~ msgid "" +#~ "Generates a maze using either the depth-first search method or Prim's " +#~ "algorithm. Can make tileable mazes too. See %s for more help." +#~ msgstr "" +#~ "Luo labyrintin syvyyteen-ensin haulla tai Primin algoritmillä. Voi luoda " +#~ "myös saumattomia labyrinttejä. Katso %s:sta lisätietoja." + +#~ msgid "Draws a maze." +#~ msgstr "Piirtää labyrintin." -#, fuzzy #~ msgid "/Filters/Distorts/_Pagecurl..." -#~ msgstr "/Suotimet/Värit/Kuvaus/Alien Map..." +#~ msgstr "/Filters/Distorts/_Koirankorva..." + +#~ msgid "/File/Save/_Print..." +#~ msgstr "/File/_Tulosta..." -#, fuzzy #~ msgid "/Filters/Colors/Map/Colormap _Rotation..." -#~ msgstr "/Suotimet/Värit/Kuvaus/Värivälikuvaus..." +#~ msgstr "/Filters/Colors/Map/Värikartan kiertäminen..." + +#~ msgid "Save: No filename given" +#~ msgstr "Tiedoston nimi puuttuu" + +#~ msgid "Cannot save to a folder." +#~ msgstr "Kansioon ei voi tallentaa" + +#~ msgid "/Filters/Colors/Map/_Alien Map..." +#~ msgstr "/Suotimet/Värit/Kuvaus/Alien Map..." + +#~ msgid "AlienMap: Transforming..." +#~ msgstr "AlienMap: Muunnos käynnissä..." + +#~ msgid "AlienMap" +#~ msgstr "AlienMap" + +#~ msgid "Change intensity of the red channel" +#~ msgstr "Säädä punaisen värikanavan voimakkuutta" + +#~ msgid "Change intensity of the green channel" +#~ msgstr "Säädä vihreän värikanavan voimakkuutta" + +#~ msgid "Change intensity of the blue channel" +#~ msgstr "Säädä sinisen värikanavan voimakkuutta" + +#~ msgid "Cos_ine" +#~ msgstr "Kosini" + +#~ msgid "Use sine-function for red component." +#~ msgstr "Käytä punaiselle värikanavalle sinifunktiota." + +#~ msgid "Use cosine-function for red component." +#~ msgstr "Käytä punaiselle värikanavalle kosinifunktiota." + +#~ msgid "" +#~ "Red channel: use linear mapping instead of any trigonometrical function" +#~ msgstr "Käytä punaiselle värikanavalle lineaarista kuvausta." + +#~ msgid "Use sine-function for green component." +#~ msgstr "Käytä vihreälle värikanavalle sinifunktiota." + +#~ msgid "Use cosine-function for green component." +#~ msgstr "Käytä vihreälle värikanavalle kosinifunktiota." + +#~ msgid "" +#~ "Green channel: use linear mapping instead of any trigonometrical function" +#~ msgstr "Käytä vihreälle värikanavalle lineaarista kuvausta." + +#~ msgid "Use sine-function for blue component." +#~ msgstr "Käytä siniselle värikanavalle sinifunktiota" + +#~ msgid "Use cosine-function for blue component." +#~ msgstr "Käytä siniselle värikanavalle kosinifunktiota" + +#~ msgid "" +#~ "Blue channel: use linear mapping instead of any trigonometrical function" +#~ msgstr "Käytä siniselle värikanavalle lineaarista kuvausta." + +#~ msgid "About AlienMap" +#~ msgstr "Tietoja AlienMap:ista" + +#~ msgid "Change frequency of the red/hue channel" +#~ msgstr "Säädä punaisen värin (R) tai värisävyn (H) kanavan taajuutta" + +#~ msgid "Change angle of the red/hue channel" +#~ msgstr "Säädä punaisen värin (R) tai värisävyn (H) kanavan vaihetta" + +#~ msgid "Change frequency of the green/saturation channel" +#~ msgstr "Säädä vihreän värin (G) tai värikylläisyyden (H) kanavan taajuutta" + +#~ msgid "Change angle of the green/saturation channel" +#~ msgstr "Säädä vihreän värin (G) tai värikylläisyyden (S) kanavan vaihetta" + +#~ msgid "Change frequency of the blue/luminance channel" +#~ msgstr "Säädä sinisen värin (B) tai valoisuuden (L) kanavan taajuutta" + +#~ msgid "Change angle of the blue/luminance channel" +#~ msgstr "Säädä sinisen värin (B) tai valoisuuden (L) kanavan vaihetta" + +#~ msgid "Use function for red/hue component" +#~ msgstr "Käytä funktiota punaisen värin (R) tai värisävyn (H) kanavalle" + +#~ msgid "Use function for green/saturation component" +#~ msgstr "" +#~ "Käytä funktiota vihreän värin (G) tai värikylläisyyden (S) kanavalle" + +#~ msgid "Use function for blue/luminance component" +#~ msgstr "Käytä funktiota sinisen värin (B) tai valoisuuden (L) kanavalle" + +#~ msgid "About AlienMap2" +#~ msgstr "Tietoja AlienMap2:sta" + +#~ msgid "NULL" +#~ msgstr "NULL" + +#~ msgid "1 (nonsense?)" +#~ msgstr "1 (järjetön)" + +#~ msgid "256 (nonsense?)" +#~ msgstr "256 (järjetön)" + +#~ msgid "Save as GIcon" +#~ msgstr "Tallenna GIcon" + +#~ msgid "Icon Name:" +#~ msgstr "Ikonin nimi:" + +#~ msgid "Preview (in image window, will modify image's undo history!)" +#~ msgstr "Esikatselu kuvaikkunassa (muuttaa toimintohistoriaa!)" + +#~ msgid "none" +#~ msgstr "ei mitään" + +#~ msgid "Not found \"%s\": used \"%s\" instead" +#~ msgstr "Ei löytynyt: '%s' käytetään '%s'" #~ msgid "M_inimum Height:" #~ msgstr "Minimikorkeus:" @@ -13072,5 +12642,8 @@ #~ msgid "Transpararent Background" #~ msgstr "Läpinäkyvä tausta" +#~ msgid "Are you sure you want to delete" +#~ msgstr "Oletko varma että haluat poistaa" + #~ msgid "\"%s\" from the list and from disk?" #~ msgstr "'%s' sekä listalta että levyltä?" diff -uraN gimp-2.2.0/po-plug-ins/fr.gmo gimp-2.2.1/po-plug-ins/fr.gmo --- gimp-2.2.0/po-plug-ins/fr.gmo 2004-12-19 03:34:22.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/fr.gmo 2004-12-28 16:59:06.000000000 +0100 @@ -387,7 +387,7 @@ cmcyancyan_ke-_mailgreengzip archivehueinvalid formatted GFlare file: %s k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftpixels/%aredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsin^p, steppedsin^p-based functionsome sort of error with the file extension or lack thereofthe _Whole Screento alphavaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: gimp-plug-ins 2.2.0pre1 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-11-13 17:52+0100 Last-Translator: Raymond Ostertag Language-Team: GNOME French Team diff -uraN gimp-2.2.0/po-plug-ins/fr.po gimp-2.2.1/po-plug-ins/fr.po --- gimp-2.2.0/po-plug-ins/fr.po 2004-12-19 03:34:10.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/fr.po 2004-12-28 16:58:54.000000000 +0100 @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: gimp-plug-ins 2.2.0pre1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-11-13 17:52+0100\n" "Last-Translator: Raymond Ostertag \n" "Language-Team: GNOME French Team \n" @@ -966,7 +966,7 @@ "Qualité de l'anticrénelage. Plus elle est élevée, meilleur est " "l'anticrénelage - et plus élevé est le temps de calcul." -#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:720 +#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:691 #: plug-ins/common/wind.c:993 plug-ins/imagemap/imap_preferences.c:539 msgid "_Threshold:" msgstr "_Seuil :" @@ -2092,12 +2092,12 @@ msgstr "Orientation" #: plug-ins/common/blinds.c:259 plug-ins/common/ripple.c:539 -#: plug-ins/common/tileit.c:419 plug-ins/pagecurl/pagecurl.c:530 +#: plug-ins/common/tileit.c:418 plug-ins/pagecurl/pagecurl.c:530 msgid "_Horizontal" msgstr "_Horizontal" #: plug-ins/common/blinds.c:260 plug-ins/common/ripple.c:540 -#: plug-ins/common/tileit.c:429 plug-ins/pagecurl/pagecurl.c:529 +#: plug-ins/common/tileit.c:428 plug-ins/pagecurl/pagecurl.c:529 msgid "_Vertical" msgstr "_Vertical" @@ -2118,7 +2118,7 @@ msgid "_Blur" msgstr "_Flou" -#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:383 +#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:432 msgid "Blurring..." msgstr "Flou en cours..." @@ -2233,23 +2233,23 @@ msgid "Ca_rtoon..." msgstr "Bande dessinée" -#: plug-ins/common/cartoon.c:228 plug-ins/common/dog.c:246 -#: plug-ins/common/gauss.c:430 plug-ins/common/neon.c:222 -#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:203 +#: plug-ins/common/cartoon.c:229 plug-ins/common/dog.c:247 +#: plug-ins/common/gauss.c:431 plug-ins/common/neon.c:221 +#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:204 #: plug-ins/common/softglow.c:220 plug-ins/gflare/gflare.c:972 #: plug-ins/sgi/sgi.c:528 plug-ins/xjt/xjt.c:1673 msgid "Cannot operate on indexed color images." msgstr "Impossible d'opérer sur des images en couleurs indexées." -#: plug-ins/common/cartoon.c:807 +#: plug-ins/common/cartoon.c:808 msgid "Cartoon" msgstr "Bande dessinée" -#: plug-ins/common/cartoon.c:837 plug-ins/common/photocopy.c:867 +#: plug-ins/common/cartoon.c:838 plug-ins/common/photocopy.c:867 msgid "_Mask radius:" msgstr "Rayon du _masque :" -#: plug-ins/common/cartoon.c:851 +#: plug-ins/common/cartoon.c:852 msgid "_Percent black:" msgstr "Pour_centage de noir :" @@ -2408,28 +2408,28 @@ msgid "Colorify Custom Color" msgstr "Coloriser, couleur personnalisée" -#: plug-ins/common/colortoalpha.c:105 +#: plug-ins/common/colortoalpha.c:104 msgid "Color to _Alpha..." msgstr "Couleur vers _alpha..." -#: plug-ins/common/colortoalpha.c:183 +#: plug-ins/common/colortoalpha.c:181 msgid "Removing color..." msgstr "Suppression de la couleur..." -#: plug-ins/common/colortoalpha.c:364 +#: plug-ins/common/colortoalpha.c:377 msgid "Color to Alpha" msgstr "Couleur vers alpha" -#: plug-ins/common/colortoalpha.c:389 plug-ins/common/mapcolor.c:424 +#: plug-ins/common/colortoalpha.c:402 plug-ins/common/mapcolor.c:424 #: plug-ins/gfli/gfli.c:835 plug-ins/gfli/gfli.c:898 msgid "From:" msgstr "Depuis :" -#: plug-ins/common/colortoalpha.c:393 +#: plug-ins/common/colortoalpha.c:406 msgid "Color to Alpha Color Picker" msgstr "Couleur vers alpha : sélection de la couleur" -#: plug-ins/common/colortoalpha.c:407 +#: plug-ins/common/colortoalpha.c:420 msgid "to alpha" msgstr "vers alpha" @@ -2743,23 +2743,23 @@ msgid "_Cubism..." msgstr "_Cubisme..." -#: plug-ins/common/cubism.c:267 +#: plug-ins/common/cubism.c:269 msgid "Cubism" msgstr "Cubisme" -#: plug-ins/common/cubism.c:296 +#: plug-ins/common/cubism.c:298 msgid "_Tile size:" msgstr "_Taille des carreaux :" -#: plug-ins/common/cubism.c:309 +#: plug-ins/common/cubism.c:311 msgid "T_ile saturation:" msgstr "_Saturation des carreaux :" -#: plug-ins/common/cubism.c:320 +#: plug-ins/common/cubism.c:322 msgid "_Use background color" msgstr "_Utiliser la couleur d'arrière-plan" -#: plug-ins/common/cubism.c:410 +#: plug-ins/common/cubism.c:412 msgid "Cubistic Transformation..." msgstr "Transformation cubiste..." @@ -3128,43 +3128,43 @@ msgid "Des_peckle..." msgstr "Anti-_parasites..." -#: plug-ins/common/despeckle.c:420 plug-ins/common/despeckle.c:642 +#: plug-ins/common/despeckle.c:418 plug-ins/common/despeckle.c:640 msgid "Despeckle" msgstr "Anti-parasite" #. #. * Filter type controls... #. -#: plug-ins/common/despeckle.c:446 plug-ins/gimpressionist/orientmap.c:616 +#: plug-ins/common/despeckle.c:444 plug-ins/gimpressionist/orientmap.c:616 msgid "Type" msgstr "Type" #. parameter settings -#: plug-ins/common/despeckle.c:456 +#: plug-ins/common/despeckle.c:454 #, fuzzy msgid "Median" msgstr "Radians" -#: plug-ins/common/despeckle.c:462 +#: plug-ins/common/despeckle.c:460 msgid "_Adaptive" msgstr "_Adaptatif" -#: plug-ins/common/despeckle.c:472 +#: plug-ins/common/despeckle.c:470 msgid "R_ecursive" msgstr "Ré_cursif" -#: plug-ins/common/despeckle.c:496 plug-ins/common/neon.c:728 +#: plug-ins/common/despeckle.c:494 plug-ins/common/neon.c:727 #: plug-ins/common/nlfilt.c:1083 plug-ins/common/nova.c:359 -#: plug-ins/common/unsharp.c:694 plug-ins/common/whirlpinch.c:588 +#: plug-ins/common/unsharp.c:665 plug-ins/common/whirlpinch.c:588 #: plug-ins/gflare/gflare.c:2686 plug-ins/imagemap/imap_circle.c:278 msgid "_Radius:" msgstr "_Rayon :" -#: plug-ins/common/despeckle.c:512 +#: plug-ins/common/despeckle.c:510 msgid "_Black level:" msgstr "Niveau de _noir :" -#: plug-ins/common/despeckle.c:528 +#: plug-ins/common/despeckle.c:526 msgid "_White level:" msgstr "Niveau de _blanc :" @@ -3251,7 +3251,7 @@ msgid "_Displace..." msgstr "_Déplacer selon une carte..." -#: plug-ins/common/displace.c:228 +#: plug-ins/common/displace.c:231 msgid "Displacing..." msgstr "Déplacement..." @@ -3288,27 +3288,27 @@ msgid "Difference of Gaussians..." msgstr "Différence gaussienne..." -#: plug-ins/common/dog.c:222 plug-ins/common/dog.c:273 +#: plug-ins/common/dog.c:227 plug-ins/common/dog.c:274 msgid "DoG Edge Detect" msgstr "Détection gaussienne des bords" -#: plug-ins/common/dog.c:294 +#: plug-ins/common/dog.c:295 msgid "Smoothing parameters" msgstr "Paramètres d'adoucissement" -#: plug-ins/common/dog.c:308 +#: plug-ins/common/dog.c:309 msgid "_Radius 1:" msgstr "Rayon _1 :" -#: plug-ins/common/dog.c:312 +#: plug-ins/common/dog.c:313 msgid "R_adius 2:" msgstr "Rayon _2 :" -#: plug-ins/common/dog.c:324 plug-ins/common/normalize.c:88 +#: plug-ins/common/dog.c:325 plug-ins/common/normalize.c:88 msgid "_Normalize" msgstr "N_ormaliser" -#: plug-ins/common/dog.c:335 plug-ins/gimpressionist/paper.c:149 +#: plug-ins/common/dog.c:336 plug-ins/gimpressionist/paper.c:149 msgid "_Invert" msgstr "_Inverser" @@ -3360,7 +3360,7 @@ msgid "_Emboss..." msgstr "_Repoussage..." -#: plug-ins/common/emboss.c:374 plug-ins/common/emboss.c:439 +#: plug-ins/common/emboss.c:376 plug-ins/common/emboss.c:439 msgid "Emboss" msgstr "Repoussage" @@ -3384,7 +3384,7 @@ msgid "En_grave..." msgstr "_Gravure..." -#: plug-ins/common/engrave.c:181 +#: plug-ins/common/engrave.c:182 msgid "Engraving..." msgstr "Gravure..." @@ -3788,38 +3788,38 @@ msgid "_Gaussian Blur..." msgstr "Flou _gaussien..." -#: plug-ins/common/gauss.c:407 +#: plug-ins/common/gauss.c:413 msgid "Gaussian Blur..." msgstr "Flou gaussien..." -#: plug-ins/common/gauss.c:460 +#: plug-ins/common/gauss.c:461 msgid "Gaussian Blur" msgstr "Flou gaussien" #. parameter settings -#: plug-ins/common/gauss.c:483 +#: plug-ins/common/gauss.c:484 msgid "Blur Radius" msgstr "Rayon du flou" -#: plug-ins/common/gauss.c:497 plug-ins/common/jigsaw.c:2456 -#: plug-ins/common/spread.c:378 +#: plug-ins/common/gauss.c:498 plug-ins/common/jigsaw.c:2456 +#: plug-ins/common/spread.c:379 msgid "_Horizontal:" msgstr "_Horizontal :" -#: plug-ins/common/gauss.c:501 plug-ins/common/jigsaw.c:2473 -#: plug-ins/common/spread.c:382 +#: plug-ins/common/gauss.c:502 plug-ins/common/jigsaw.c:2473 +#: plug-ins/common/spread.c:383 msgid "_Vertical:" msgstr "_Vertical :" -#: plug-ins/common/gauss.c:524 +#: plug-ins/common/gauss.c:525 msgid "Blur Method" msgstr "Méthode de flou" -#: plug-ins/common/gauss.c:528 +#: plug-ins/common/gauss.c:529 msgid "_IIR" msgstr "_IIR" -#: plug-ins/common/gauss.c:529 +#: plug-ins/common/gauss.c:530 msgid "_RLE" msgstr "_RLE" @@ -4130,19 +4130,19 @@ msgid "_Glass Tile..." msgstr "_Carreau de verre..." -#: plug-ins/common/glasstile.c:208 +#: plug-ins/common/glasstile.c:209 msgid "Glass Tile..." msgstr "Carreau de verre..." -#: plug-ins/common/glasstile.c:251 +#: plug-ins/common/glasstile.c:250 msgid "Glass Tile" msgstr "Carreau de verre" -#: plug-ins/common/glasstile.c:282 +#: plug-ins/common/glasstile.c:281 msgid "Tile _width:" msgstr "_Largeur des carreaux :" -#: plug-ins/common/glasstile.c:296 plug-ins/common/mosaic.c:621 +#: plug-ins/common/glasstile.c:295 plug-ins/common/mosaic.c:621 msgid "Tile _height:" msgstr "_Hauteur des carreaux :" @@ -5140,15 +5140,15 @@ msgid "_Neon..." msgstr "_Néon..." -#: plug-ins/common/neon.c:204 +#: plug-ins/common/neon.c:207 msgid "Neon..." msgstr "Néon..." -#: plug-ins/common/neon.c:698 +#: plug-ins/common/neon.c:697 msgid "Neon Detection" msgstr "Détection néon" -#: plug-ins/common/neon.c:743 plug-ins/common/unsharp.c:707 +#: plug-ins/common/neon.c:742 plug-ins/common/unsharp.c:678 msgid "_Amount:" msgstr "_Quantité :" @@ -5307,7 +5307,7 @@ msgid "_Scatter RGB..." msgstr "Dispersion _RVB..." -#: plug-ins/common/noisify.c:284 +#: plug-ins/common/noisify.c:285 msgid "Adding Noise..." msgstr "Ajout de bruit..." @@ -5377,7 +5377,7 @@ msgid "Oili_fy..." msgstr "Peinture à l'_huile..." -#: plug-ins/common/oilify.c:188 +#: plug-ins/common/oilify.c:189 msgid "Oil Painting..." msgstr "Peinture à l'huile..." @@ -5512,7 +5512,7 @@ msgid "Photocopy" msgstr "Photocopie" -#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:513 +#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:509 #: plug-ins/common/softglow.c:687 msgid "_Sharpness:" msgstr "Augmention de contra_ste :" @@ -6159,7 +6159,7 @@ msgid "_Ripple..." msgstr "Ond_uler..." -#: plug-ins/common/ripple.c:219 +#: plug-ins/common/ripple.c:222 msgid "Rippling..." msgstr "Ondulation en cours..." @@ -6383,19 +6383,19 @@ msgid "_Selective Gaussian Blur..." msgstr "Flou gaussien _sélectif..." -#: plug-ins/common/sel_gauss.c:186 +#: plug-ins/common/sel_gauss.c:187 msgid "Selective Gaussian Blur..." msgstr "Flou gaussien sélectif..." -#: plug-ins/common/sel_gauss.c:224 +#: plug-ins/common/sel_gauss.c:225 msgid "Selective Gaussian Blur" msgstr "Flou gaussien sélectif" -#: plug-ins/common/sel_gauss.c:256 +#: plug-ins/common/sel_gauss.c:257 msgid "_Blur radius:" msgstr "Rayon du _flou :" -#: plug-ins/common/sel_gauss.c:266 +#: plug-ins/common/sel_gauss.c:267 msgid "_Max. delta:" msgstr "_Max. delta :" @@ -6414,11 +6414,11 @@ #. #. * Let the user know what we're doing... #. -#: plug-ins/common/sharpen.c:315 +#: plug-ins/common/sharpen.c:311 msgid "Sharpening..." msgstr "Augmentation des contrastes..." -#: plug-ins/common/sharpen.c:484 +#: plug-ins/common/sharpen.c:480 msgid "Sharpen" msgstr "Augmentation des contrastes" @@ -6426,7 +6426,7 @@ msgid "_Shift..." msgstr "Dép_lacer..." -#: plug-ins/common/shift.c:191 +#: plug-ins/common/shift.c:194 msgid "Shifting..." msgstr "Déplacement en cours..." @@ -6621,23 +6621,23 @@ msgid "_Sobel..." msgstr "_Sobel..." -#: plug-ins/common/sobel.c:226 +#: plug-ins/common/sobel.c:227 msgid "Sobel Edge Detection" msgstr "Détection de bord Sobel" -#: plug-ins/common/sobel.c:248 +#: plug-ins/common/sobel.c:249 msgid "Sobel _Horizontally" msgstr "Sobel _horizontal" -#: plug-ins/common/sobel.c:260 +#: plug-ins/common/sobel.c:261 msgid "Sobel _Vertically" msgstr "Sobel _vertical" -#: plug-ins/common/sobel.c:272 +#: plug-ins/common/sobel.c:273 msgid "_Keep sign of result (one direction only)" msgstr "_Garder le signe du résultat (une direction seulement)" -#: plug-ins/common/sobel.c:358 +#: plug-ins/common/sobel.c:359 msgid "Sobel Edge Detecting..." msgstr "Détection de bord Sobel en cours..." @@ -6940,15 +6940,15 @@ msgid "Sp_read..." msgstr "_Répandre..." -#: plug-ins/common/spread.c:179 +#: plug-ins/common/spread.c:182 msgid "Spreading..." msgstr "Épandage en cours..." -#: plug-ins/common/spread.c:345 +#: plug-ins/common/spread.c:346 msgid "Spread" msgstr "Répandre" -#: plug-ins/common/spread.c:363 +#: plug-ins/common/spread.c:364 msgid "Spread Amount" msgstr "Quantité d'épandage :" @@ -7237,7 +7237,8 @@ msgid "_Tile..." msgstr "_Raccorder..." -#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:321 +#. Set the tile cache size +#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:320 msgid "Tiling..." msgstr "Raccordement en cours..." @@ -7258,42 +7259,42 @@ msgstr "Petits ra_ccords" #. Get the preview image -#: plug-ins/common/tileit.c:364 +#: plug-ins/common/tileit.c:363 msgid "TileIt" msgstr "Petits raccords" #. Area for buttons etc #. Flip -#: plug-ins/common/tileit.c:407 plug-ins/ifscompose/ifscompose.c:628 +#: plug-ins/common/tileit.c:406 plug-ins/ifscompose/ifscompose.c:628 msgid "Flip" msgstr "Retourner" -#: plug-ins/common/tileit.c:455 +#: plug-ins/common/tileit.c:454 msgid "A_ll tiles" msgstr "_Tous les carreaux" -#: plug-ins/common/tileit.c:469 +#: plug-ins/common/tileit.c:468 msgid "Al_ternate tiles" msgstr "Carreaux _alternés" -#: plug-ins/common/tileit.c:483 +#: plug-ins/common/tileit.c:482 msgid "_Explicit tile" msgstr "Carreau _explicite" -#: plug-ins/common/tileit.c:489 +#: plug-ins/common/tileit.c:488 msgid "Ro_w:" msgstr "_Ligne :" -#: plug-ins/common/tileit.c:513 +#: plug-ins/common/tileit.c:512 msgid "Col_umn:" msgstr "_Colonne :" -#: plug-ins/common/tileit.c:565 +#: plug-ins/common/tileit.c:564 msgid "O_pacity:" msgstr "_Opacité :" #. Lower frame saying howmany segments -#: plug-ins/common/tileit.c:574 +#: plug-ins/common/tileit.c:573 msgid "Number of Segments" msgstr "Nombre de segments :" @@ -7442,15 +7443,15 @@ msgid "Unit Editor" msgstr "Éditeur d'unité" -#: plug-ins/common/unsharp.c:149 +#: plug-ins/common/unsharp.c:143 msgid "_Unsharp Mask..." msgstr "Renforcer la _netteté..." -#: plug-ins/common/unsharp.c:493 +#: plug-ins/common/unsharp.c:468 msgid "Merging..." msgstr "Fusion en cours..." -#: plug-ins/common/unsharp.c:664 +#: plug-ins/common/unsharp.c:635 msgid "Unsharp Mask" msgstr "Renforcer la netteté" @@ -8496,19 +8497,19 @@ msgid "_Zoom:" msgstr "_Zoom :" -#: plug-ins/gfig/gfig-bezier.c:452 +#: plug-ins/gfig/gfig-bezier.c:448 msgid "Closed" msgstr "Courbe fermée" -#: plug-ins/gfig/gfig-bezier.c:457 +#: plug-ins/gfig/gfig-bezier.c:453 msgid "Close curve on completion" msgstr "Fermer la courbe lorsqu'elle est terminée" -#: plug-ins/gfig/gfig-bezier.c:462 +#: plug-ins/gfig/gfig-bezier.c:458 msgid "Show Line Frame" msgstr "Afficher les lignes de l'image" -#: plug-ins/gfig/gfig-bezier.c:467 +#: plug-ins/gfig/gfig-bezier.c:463 msgid "Draws lines between the control points. Only during curve creation" msgstr "" "Montre les lignes entre les points de contrôle (seulement pendant la " diff -uraN gimp-2.2.0/po-plug-ins/ga.gmo gimp-2.2.1/po-plug-ins/ga.gmo --- gimp-2.2.0/po-plug-ins/ga.gmo 2004-12-19 03:34:22.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/ga.gmo 2004-12-28 16:59:06.000000000 +0100 @@ -28,7 +28,7 @@ - 8 B H N Ub67v:cJgi,-aP";se~_wk x(F2jm*5rY![0Ap'n&Q O|Ih^uMSy] W. {`ET/}q\3)%V4t<Cfold+>$XzL ZD91?@G#HRN=K8B%d x %dA_ddA_lpha:AboutAlienMap2All JNGAll PNGAlphaBackgroundBackground (%d%s)Barnsley 1Barnsley 2Barnsley 3Black:BlueBlue:Bottom:BoxCMYCMYKC_MYKCenterChannel #%d:Channel MixerCo_lor:Co_lorsCo_mment:ColorColor ModeColor to AlphaComm_ent:Comment:Custom Color:Delete FractalDescription:Do _PreviewFractal TypeFrom:G-QbistGIF OptionsGIF WarningGr_eyGreenGreen:Guillotine...Height:HorizontalHorizontal ColorHotHot...IDIWarpIf you enable this option the preview will be redrawn automaticallyJNGJPEG previewJuliaLambdaLaplace...Left:Luma_y470f:MNG OptionsMan'o'warMandelbrotMax RGBMax RGB...ModeMode _1Mode _2New FractalNoneNumber of ColorsNumber of colors:O_ptionsO_rientationOp_tionsOpening '%s'...OptionsOrientationOrientation:PNGP_aperP_reviewPositionPreviewR_edRe_dRealtime PreviewRedRed:Remo_veRight:S_ubject:Save as GIFSave as JPEGSave as MNGSave as TGASave as TIFFSavedSaving '%s'...ScreenSierpinskiSizeSpiderStandardTable OptionsTemporaryTo:Top:TypeType:UnnamedUntitledValueValue:Van Gogh (LIC)Van Gogh (LIC)...VerticalVideoVideo/RGB...WarningWidth:X:XMAX:XMIN:X_1:X_2:Y:YMAX:YMIN:Y_1:Y_2:YellowYellow:Z:Zoom in (make image bigger)Zoom out (make image smaller)_Advanced_Alpha_Alpha:_Black_Blue_Blue:_Bottom:_Box_Copy_Filename:_Font:_Free_Gradient_Gray:_Green_Green:_Grey_Height:_Help_Horizontal_Horizontal:_JPEG_Kill_LZW_Laplace_MIME_Move_None_Normal_Preview_Preview!_RGB_Red:_Settings_Size_Size:_Top:_Uuencode_Value_Vertical_Vertical:_Voronoi_White_Width:_X:_Y:_Yellow_Z:_Zoomalphablackbluegreenk(1-x^p)luma_y470luma_y709fpixels/%aredvalueyellowProject-Id-Version: gimp po-plug-ins CVS Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-03-21 00:23+0000 Last-Translator: Alastair McKinstry Language-Team: Gaeilge diff -uraN gimp-2.2.0/po-plug-ins/ga.po gimp-2.2.1/po-plug-ins/ga.po --- gimp-2.2.0/po-plug-ins/ga.po 2004-12-19 03:34:10.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/ga.po 2004-12-28 16:58:54.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: gimp po-plug-ins CVS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-03-21 00:23+0000\n" "Last-Translator: Alastair McKinstry \n" "Language-Team: Gaeilge \n" @@ -956,7 +956,7 @@ msgid "Antialiasing quality. Higher is better, but slower" msgstr "" -#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:720 +#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:691 #: plug-ins/common/wind.c:993 plug-ins/imagemap/imap_preferences.c:539 msgid "_Threshold:" msgstr "" @@ -2091,12 +2091,12 @@ msgstr "Treosuíomh" #: plug-ins/common/blinds.c:259 plug-ins/common/ripple.c:539 -#: plug-ins/common/tileit.c:419 plug-ins/pagecurl/pagecurl.c:530 +#: plug-ins/common/tileit.c:418 plug-ins/pagecurl/pagecurl.c:530 msgid "_Horizontal" msgstr "_Cothromach" #: plug-ins/common/blinds.c:260 plug-ins/common/ripple.c:540 -#: plug-ins/common/tileit.c:429 plug-ins/pagecurl/pagecurl.c:529 +#: plug-ins/common/tileit.c:428 plug-ins/pagecurl/pagecurl.c:529 msgid "_Vertical" msgstr "_Ingearach" @@ -2119,7 +2119,7 @@ msgid "_Blur" msgstr "Go_rm" -#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:383 +#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:432 msgid "Blurring..." msgstr "" @@ -2230,24 +2230,24 @@ msgid "Ca_rtoon..." msgstr "Fís/RGB..." -#: plug-ins/common/cartoon.c:228 plug-ins/common/dog.c:246 -#: plug-ins/common/gauss.c:430 plug-ins/common/neon.c:222 -#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:203 +#: plug-ins/common/cartoon.c:229 plug-ins/common/dog.c:247 +#: plug-ins/common/gauss.c:431 plug-ins/common/neon.c:221 +#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:204 #: plug-ins/common/softglow.c:220 plug-ins/gflare/gflare.c:972 #: plug-ins/sgi/sgi.c:528 plug-ins/xjt/xjt.c:1673 msgid "Cannot operate on indexed color images." msgstr "" -#: plug-ins/common/cartoon.c:807 +#: plug-ins/common/cartoon.c:808 msgid "Cartoon" msgstr "" -#: plug-ins/common/cartoon.c:837 plug-ins/common/photocopy.c:867 +#: plug-ins/common/cartoon.c:838 plug-ins/common/photocopy.c:867 #, fuzzy msgid "_Mask radius:" msgstr "_Gradán" -#: plug-ins/common/cartoon.c:851 +#: plug-ins/common/cartoon.c:852 msgid "_Percent black:" msgstr "" @@ -2406,29 +2406,29 @@ msgid "Colorify Custom Color" msgstr "" -#: plug-ins/common/colortoalpha.c:105 +#: plug-ins/common/colortoalpha.c:104 #, fuzzy msgid "Color to _Alpha..." msgstr "Dath do Alpha" -#: plug-ins/common/colortoalpha.c:183 +#: plug-ins/common/colortoalpha.c:181 msgid "Removing color..." msgstr "" -#: plug-ins/common/colortoalpha.c:364 +#: plug-ins/common/colortoalpha.c:377 msgid "Color to Alpha" msgstr "Dath do Alpha" -#: plug-ins/common/colortoalpha.c:389 plug-ins/common/mapcolor.c:424 +#: plug-ins/common/colortoalpha.c:402 plug-ins/common/mapcolor.c:424 #: plug-ins/gfli/gfli.c:835 plug-ins/gfli/gfli.c:898 msgid "From:" msgstr "Ó:" -#: plug-ins/common/colortoalpha.c:393 +#: plug-ins/common/colortoalpha.c:406 msgid "Color to Alpha Color Picker" msgstr "" -#: plug-ins/common/colortoalpha.c:407 +#: plug-ins/common/colortoalpha.c:420 #, fuzzy msgid "to alpha" msgstr "alpha" @@ -2742,25 +2742,25 @@ msgid "_Cubism..." msgstr "" -#: plug-ins/common/cubism.c:267 +#: plug-ins/common/cubism.c:269 msgid "Cubism" msgstr "" -#: plug-ins/common/cubism.c:296 +#: plug-ins/common/cubism.c:298 msgid "_Tile size:" msgstr "" -#: plug-ins/common/cubism.c:309 +#: plug-ins/common/cubism.c:311 #, fuzzy msgid "T_ile saturation:" msgstr "_Treosuíomh" -#: plug-ins/common/cubism.c:320 +#: plug-ins/common/cubism.c:322 #, fuzzy msgid "_Use background color" msgstr "Sábháail Dath Chúlra" -#: plug-ins/common/cubism.c:410 +#: plug-ins/common/cubism.c:412 msgid "Cubistic Transformation..." msgstr "" @@ -3129,43 +3129,43 @@ msgid "Des_peckle..." msgstr "" -#: plug-ins/common/despeckle.c:420 plug-ins/common/despeckle.c:642 +#: plug-ins/common/despeckle.c:418 plug-ins/common/despeckle.c:640 msgid "Despeckle" msgstr "" #. #. * Filter type controls... #. -#: plug-ins/common/despeckle.c:446 plug-ins/gimpressionist/orientmap.c:616 +#: plug-ins/common/despeckle.c:444 plug-ins/gimpressionist/orientmap.c:616 msgid "Type" msgstr "Saghas" #. parameter settings -#: plug-ins/common/despeckle.c:456 +#: plug-ins/common/despeckle.c:454 msgid "Median" msgstr "" -#: plug-ins/common/despeckle.c:462 +#: plug-ins/common/despeckle.c:460 msgid "_Adaptive" msgstr "" -#: plug-ins/common/despeckle.c:472 +#: plug-ins/common/despeckle.c:470 msgid "R_ecursive" msgstr "" -#: plug-ins/common/despeckle.c:496 plug-ins/common/neon.c:728 +#: plug-ins/common/despeckle.c:494 plug-ins/common/neon.c:727 #: plug-ins/common/nlfilt.c:1083 plug-ins/common/nova.c:359 -#: plug-ins/common/unsharp.c:694 plug-ins/common/whirlpinch.c:588 +#: plug-ins/common/unsharp.c:665 plug-ins/common/whirlpinch.c:588 #: plug-ins/gflare/gflare.c:2686 plug-ins/imagemap/imap_circle.c:278 msgid "_Radius:" msgstr "" -#: plug-ins/common/despeckle.c:512 +#: plug-ins/common/despeckle.c:510 #, fuzzy msgid "_Black level:" msgstr "_Dubh" -#: plug-ins/common/despeckle.c:528 +#: plug-ins/common/despeckle.c:526 #, fuzzy msgid "_White level:" msgstr "_Bán" @@ -3258,7 +3258,7 @@ msgid "_Displace..." msgstr "Laplace..." -#: plug-ins/common/displace.c:228 +#: plug-ins/common/displace.c:231 msgid "Displacing..." msgstr "" @@ -3295,28 +3295,28 @@ msgid "Difference of Gaussians..." msgstr "" -#: plug-ins/common/dog.c:222 plug-ins/common/dog.c:273 +#: plug-ins/common/dog.c:227 plug-ins/common/dog.c:274 msgid "DoG Edge Detect" msgstr "" -#: plug-ins/common/dog.c:294 +#: plug-ins/common/dog.c:295 msgid "Smoothing parameters" msgstr "" -#: plug-ins/common/dog.c:308 +#: plug-ins/common/dog.c:309 msgid "_Radius 1:" msgstr "" -#: plug-ins/common/dog.c:312 +#: plug-ins/common/dog.c:313 msgid "R_adius 2:" msgstr "" -#: plug-ins/common/dog.c:324 plug-ins/common/normalize.c:88 +#: plug-ins/common/dog.c:325 plug-ins/common/normalize.c:88 #, fuzzy msgid "_Normalize" msgstr "_Gnáth" -#: plug-ins/common/dog.c:335 plug-ins/gimpressionist/paper.c:149 +#: plug-ins/common/dog.c:336 plug-ins/gimpressionist/paper.c:149 msgid "_Invert" msgstr "" @@ -3375,7 +3375,7 @@ msgid "_Emboss..." msgstr "Faoi" -#: plug-ins/common/emboss.c:374 plug-ins/common/emboss.c:439 +#: plug-ins/common/emboss.c:376 plug-ins/common/emboss.c:439 msgid "Emboss" msgstr "" @@ -3399,7 +3399,7 @@ msgid "En_grave..." msgstr "" -#: plug-ins/common/engrave.c:181 +#: plug-ins/common/engrave.c:182 msgid "Engraving..." msgstr "" @@ -3809,39 +3809,39 @@ msgid "_Gaussian Blur..." msgstr "Go_rm" -#: plug-ins/common/gauss.c:407 +#: plug-ins/common/gauss.c:413 #, fuzzy msgid "Gaussian Blur..." msgstr "Go_rm" -#: plug-ins/common/gauss.c:460 +#: plug-ins/common/gauss.c:461 msgid "Gaussian Blur" msgstr "" #. parameter settings -#: plug-ins/common/gauss.c:483 +#: plug-ins/common/gauss.c:484 msgid "Blur Radius" msgstr "" -#: plug-ins/common/gauss.c:497 plug-ins/common/jigsaw.c:2456 -#: plug-ins/common/spread.c:378 +#: plug-ins/common/gauss.c:498 plug-ins/common/jigsaw.c:2456 +#: plug-ins/common/spread.c:379 msgid "_Horizontal:" msgstr "_Cothromach:" -#: plug-ins/common/gauss.c:501 plug-ins/common/jigsaw.c:2473 -#: plug-ins/common/spread.c:382 +#: plug-ins/common/gauss.c:502 plug-ins/common/jigsaw.c:2473 +#: plug-ins/common/spread.c:383 msgid "_Vertical:" msgstr "_Ingearach:" -#: plug-ins/common/gauss.c:524 +#: plug-ins/common/gauss.c:525 msgid "Blur Method" msgstr "" -#: plug-ins/common/gauss.c:528 +#: plug-ins/common/gauss.c:529 msgid "_IIR" msgstr "" -#: plug-ins/common/gauss.c:529 +#: plug-ins/common/gauss.c:530 msgid "_RLE" msgstr "" @@ -4130,20 +4130,20 @@ msgid "_Glass Tile..." msgstr "" -#: plug-ins/common/glasstile.c:208 +#: plug-ins/common/glasstile.c:209 msgid "Glass Tile..." msgstr "" -#: plug-ins/common/glasstile.c:251 +#: plug-ins/common/glasstile.c:250 msgid "Glass Tile" msgstr "" -#: plug-ins/common/glasstile.c:282 +#: plug-ins/common/glasstile.c:281 #, fuzzy msgid "Tile _width:" msgstr "_Leitheid:" -#: plug-ins/common/glasstile.c:296 plug-ins/common/mosaic.c:621 +#: plug-ins/common/glasstile.c:295 plug-ins/common/mosaic.c:621 #, fuzzy msgid "Tile _height:" msgstr "_Airde:" @@ -5144,16 +5144,16 @@ msgid "_Neon..." msgstr "Fís/RGB..." -#: plug-ins/common/neon.c:204 +#: plug-ins/common/neon.c:207 #, fuzzy msgid "Neon..." msgstr "Fís/RGB..." -#: plug-ins/common/neon.c:698 +#: plug-ins/common/neon.c:697 msgid "Neon Detection" msgstr "" -#: plug-ins/common/neon.c:743 plug-ins/common/unsharp.c:707 +#: plug-ins/common/neon.c:742 plug-ins/common/unsharp.c:678 msgid "_Amount:" msgstr "" @@ -5315,7 +5315,7 @@ msgid "_Scatter RGB..." msgstr "Uas. RGB..." -#: plug-ins/common/noisify.c:284 +#: plug-ins/common/noisify.c:285 msgid "Adding Noise..." msgstr "" @@ -5385,7 +5385,7 @@ msgid "Oili_fy..." msgstr "" -#: plug-ins/common/oilify.c:188 +#: plug-ins/common/oilify.c:189 msgid "Oil Painting..." msgstr "" @@ -5524,7 +5524,7 @@ msgid "Photocopy" msgstr "" -#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:513 +#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:509 #: plug-ins/common/softglow.c:687 msgid "_Sharpness:" msgstr "" @@ -6160,7 +6160,7 @@ msgid "_Ripple..." msgstr "Laplace..." -#: plug-ins/common/ripple.c:219 +#: plug-ins/common/ripple.c:222 msgid "Rippling..." msgstr "" @@ -6380,19 +6380,19 @@ msgid "_Selective Gaussian Blur..." msgstr "" -#: plug-ins/common/sel_gauss.c:186 +#: plug-ins/common/sel_gauss.c:187 msgid "Selective Gaussian Blur..." msgstr "" -#: plug-ins/common/sel_gauss.c:224 +#: plug-ins/common/sel_gauss.c:225 msgid "Selective Gaussian Blur" msgstr "" -#: plug-ins/common/sel_gauss.c:256 +#: plug-ins/common/sel_gauss.c:257 msgid "_Blur radius:" msgstr "" -#: plug-ins/common/sel_gauss.c:266 +#: plug-ins/common/sel_gauss.c:267 msgid "_Max. delta:" msgstr "" @@ -6411,11 +6411,11 @@ #. #. * Let the user know what we're doing... #. -#: plug-ins/common/sharpen.c:315 +#: plug-ins/common/sharpen.c:311 msgid "Sharpening..." msgstr "" -#: plug-ins/common/sharpen.c:484 +#: plug-ins/common/sharpen.c:480 msgid "Sharpen" msgstr "" @@ -6423,7 +6423,7 @@ msgid "_Shift..." msgstr "" -#: plug-ins/common/shift.c:191 +#: plug-ins/common/shift.c:194 msgid "Shifting..." msgstr "" @@ -6625,23 +6625,23 @@ msgid "_Sobel..." msgstr "_Sobel" -#: plug-ins/common/sobel.c:226 +#: plug-ins/common/sobel.c:227 msgid "Sobel Edge Detection" msgstr "" -#: plug-ins/common/sobel.c:248 +#: plug-ins/common/sobel.c:249 msgid "Sobel _Horizontally" msgstr "" -#: plug-ins/common/sobel.c:260 +#: plug-ins/common/sobel.c:261 msgid "Sobel _Vertically" msgstr "" -#: plug-ins/common/sobel.c:272 +#: plug-ins/common/sobel.c:273 msgid "_Keep sign of result (one direction only)" msgstr "" -#: plug-ins/common/sobel.c:358 +#: plug-ins/common/sobel.c:359 msgid "Sobel Edge Detecting..." msgstr "" @@ -6950,15 +6950,15 @@ msgid "Sp_read..." msgstr "" -#: plug-ins/common/spread.c:179 +#: plug-ins/common/spread.c:182 msgid "Spreading..." msgstr "" -#: plug-ins/common/spread.c:345 +#: plug-ins/common/spread.c:346 msgid "Spread" msgstr "" -#: plug-ins/common/spread.c:363 +#: plug-ins/common/spread.c:364 msgid "Spread Amount" msgstr "" @@ -7239,7 +7239,8 @@ msgid "_Tile..." msgstr "" -#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:321 +#. Set the tile cache size +#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:320 msgid "Tiling..." msgstr "" @@ -7260,42 +7261,42 @@ msgstr "" #. Get the preview image -#: plug-ins/common/tileit.c:364 +#: plug-ins/common/tileit.c:363 msgid "TileIt" msgstr "" #. Area for buttons etc #. Flip -#: plug-ins/common/tileit.c:407 plug-ins/ifscompose/ifscompose.c:628 +#: plug-ins/common/tileit.c:406 plug-ins/ifscompose/ifscompose.c:628 msgid "Flip" msgstr "" -#: plug-ins/common/tileit.c:455 +#: plug-ins/common/tileit.c:454 msgid "A_ll tiles" msgstr "" -#: plug-ins/common/tileit.c:469 +#: plug-ins/common/tileit.c:468 msgid "Al_ternate tiles" msgstr "" -#: plug-ins/common/tileit.c:483 +#: plug-ins/common/tileit.c:482 msgid "_Explicit tile" msgstr "" -#: plug-ins/common/tileit.c:489 +#: plug-ins/common/tileit.c:488 msgid "Ro_w:" msgstr "" -#: plug-ins/common/tileit.c:513 +#: plug-ins/common/tileit.c:512 msgid "Col_umn:" msgstr "" -#: plug-ins/common/tileit.c:565 +#: plug-ins/common/tileit.c:564 msgid "O_pacity:" msgstr "" #. Lower frame saying howmany segments -#: plug-ins/common/tileit.c:574 +#: plug-ins/common/tileit.c:573 #, fuzzy msgid "Number of Segments" msgstr "Uimhir na Dathanna" @@ -7436,15 +7437,15 @@ msgid "Unit Editor" msgstr "" -#: plug-ins/common/unsharp.c:149 +#: plug-ins/common/unsharp.c:143 msgid "_Unsharp Mask..." msgstr "" -#: plug-ins/common/unsharp.c:493 +#: plug-ins/common/unsharp.c:468 msgid "Merging..." msgstr "" -#: plug-ins/common/unsharp.c:664 +#: plug-ins/common/unsharp.c:635 msgid "Unsharp Mask" msgstr "" @@ -8476,19 +8477,19 @@ msgid "_Zoom:" msgstr "" -#: plug-ins/gfig/gfig-bezier.c:452 +#: plug-ins/gfig/gfig-bezier.c:448 msgid "Closed" msgstr "" -#: plug-ins/gfig/gfig-bezier.c:457 +#: plug-ins/gfig/gfig-bezier.c:453 msgid "Close curve on completion" msgstr "" -#: plug-ins/gfig/gfig-bezier.c:462 +#: plug-ins/gfig/gfig-bezier.c:458 msgid "Show Line Frame" msgstr "" -#: plug-ins/gfig/gfig-bezier.c:467 +#: plug-ins/gfig/gfig-bezier.c:463 msgid "Draws lines between the control points. Only during curve creation" msgstr "" diff -uraN gimp-2.2.0/po-plug-ins/gimp20-std-plug-ins.pot gimp-2.2.1/po-plug-ins/gimp20-std-plug-ins.pot --- gimp-2.2.0/po-plug-ins/gimp20-std-plug-ins.pot 2004-12-18 01:47:59.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/gimp20-std-plug-ins.pot 2004-12-28 15:41:48.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -934,7 +934,7 @@ msgid "Antialiasing quality. Higher is better, but slower" msgstr "" -#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:720 +#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:691 #: plug-ins/common/wind.c:993 plug-ins/imagemap/imap_preferences.c:539 msgid "_Threshold:" msgstr "" @@ -2049,12 +2049,12 @@ msgstr "" #: plug-ins/common/blinds.c:259 plug-ins/common/ripple.c:539 -#: plug-ins/common/tileit.c:419 plug-ins/pagecurl/pagecurl.c:530 +#: plug-ins/common/tileit.c:418 plug-ins/pagecurl/pagecurl.c:530 msgid "_Horizontal" msgstr "" #: plug-ins/common/blinds.c:260 plug-ins/common/ripple.c:540 -#: plug-ins/common/tileit.c:429 plug-ins/pagecurl/pagecurl.c:529 +#: plug-ins/common/tileit.c:428 plug-ins/pagecurl/pagecurl.c:529 msgid "_Vertical" msgstr "" @@ -2075,7 +2075,7 @@ msgid "_Blur" msgstr "" -#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:383 +#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:432 msgid "Blurring..." msgstr "" @@ -2184,23 +2184,23 @@ msgid "Ca_rtoon..." msgstr "" -#: plug-ins/common/cartoon.c:228 plug-ins/common/dog.c:246 -#: plug-ins/common/gauss.c:430 plug-ins/common/neon.c:222 -#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:203 +#: plug-ins/common/cartoon.c:229 plug-ins/common/dog.c:247 +#: plug-ins/common/gauss.c:431 plug-ins/common/neon.c:221 +#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:204 #: plug-ins/common/softglow.c:220 plug-ins/gflare/gflare.c:972 #: plug-ins/sgi/sgi.c:528 plug-ins/xjt/xjt.c:1673 msgid "Cannot operate on indexed color images." msgstr "" -#: plug-ins/common/cartoon.c:807 +#: plug-ins/common/cartoon.c:808 msgid "Cartoon" msgstr "" -#: plug-ins/common/cartoon.c:837 plug-ins/common/photocopy.c:867 +#: plug-ins/common/cartoon.c:838 plug-ins/common/photocopy.c:867 msgid "_Mask radius:" msgstr "" -#: plug-ins/common/cartoon.c:851 +#: plug-ins/common/cartoon.c:852 msgid "_Percent black:" msgstr "" @@ -2358,28 +2358,28 @@ msgid "Colorify Custom Color" msgstr "" -#: plug-ins/common/colortoalpha.c:105 +#: plug-ins/common/colortoalpha.c:104 msgid "Color to _Alpha..." msgstr "" -#: plug-ins/common/colortoalpha.c:183 +#: plug-ins/common/colortoalpha.c:181 msgid "Removing color..." msgstr "" -#: plug-ins/common/colortoalpha.c:364 +#: plug-ins/common/colortoalpha.c:377 msgid "Color to Alpha" msgstr "" -#: plug-ins/common/colortoalpha.c:389 plug-ins/common/mapcolor.c:424 +#: plug-ins/common/colortoalpha.c:402 plug-ins/common/mapcolor.c:424 #: plug-ins/gfli/gfli.c:835 plug-ins/gfli/gfli.c:898 msgid "From:" msgstr "" -#: plug-ins/common/colortoalpha.c:393 +#: plug-ins/common/colortoalpha.c:406 msgid "Color to Alpha Color Picker" msgstr "" -#: plug-ins/common/colortoalpha.c:407 +#: plug-ins/common/colortoalpha.c:420 msgid "to alpha" msgstr "" @@ -2690,23 +2690,23 @@ msgid "_Cubism..." msgstr "" -#: plug-ins/common/cubism.c:267 +#: plug-ins/common/cubism.c:269 msgid "Cubism" msgstr "" -#: plug-ins/common/cubism.c:296 +#: plug-ins/common/cubism.c:298 msgid "_Tile size:" msgstr "" -#: plug-ins/common/cubism.c:309 +#: plug-ins/common/cubism.c:311 msgid "T_ile saturation:" msgstr "" -#: plug-ins/common/cubism.c:320 +#: plug-ins/common/cubism.c:322 msgid "_Use background color" msgstr "" -#: plug-ins/common/cubism.c:410 +#: plug-ins/common/cubism.c:412 msgid "Cubistic Transformation..." msgstr "" @@ -3073,42 +3073,42 @@ msgid "Des_peckle..." msgstr "" -#: plug-ins/common/despeckle.c:420 plug-ins/common/despeckle.c:642 +#: plug-ins/common/despeckle.c:418 plug-ins/common/despeckle.c:640 msgid "Despeckle" msgstr "" #. #. * Filter type controls... #. -#: plug-ins/common/despeckle.c:446 plug-ins/gimpressionist/orientmap.c:616 +#: plug-ins/common/despeckle.c:444 plug-ins/gimpressionist/orientmap.c:616 msgid "Type" msgstr "" #. parameter settings -#: plug-ins/common/despeckle.c:456 +#: plug-ins/common/despeckle.c:454 msgid "Median" msgstr "" -#: plug-ins/common/despeckle.c:462 +#: plug-ins/common/despeckle.c:460 msgid "_Adaptive" msgstr "" -#: plug-ins/common/despeckle.c:472 +#: plug-ins/common/despeckle.c:470 msgid "R_ecursive" msgstr "" -#: plug-ins/common/despeckle.c:496 plug-ins/common/neon.c:728 +#: plug-ins/common/despeckle.c:494 plug-ins/common/neon.c:727 #: plug-ins/common/nlfilt.c:1083 plug-ins/common/nova.c:359 -#: plug-ins/common/unsharp.c:694 plug-ins/common/whirlpinch.c:588 +#: plug-ins/common/unsharp.c:665 plug-ins/common/whirlpinch.c:588 #: plug-ins/gflare/gflare.c:2686 plug-ins/imagemap/imap_circle.c:278 msgid "_Radius:" msgstr "" -#: plug-ins/common/despeckle.c:512 +#: plug-ins/common/despeckle.c:510 msgid "_Black level:" msgstr "" -#: plug-ins/common/despeckle.c:528 +#: plug-ins/common/despeckle.c:526 msgid "_White level:" msgstr "" @@ -3194,7 +3194,7 @@ msgid "_Displace..." msgstr "" -#: plug-ins/common/displace.c:228 +#: plug-ins/common/displace.c:231 msgid "Displacing..." msgstr "" @@ -3231,27 +3231,27 @@ msgid "Difference of Gaussians..." msgstr "" -#: plug-ins/common/dog.c:222 plug-ins/common/dog.c:273 +#: plug-ins/common/dog.c:227 plug-ins/common/dog.c:274 msgid "DoG Edge Detect" msgstr "" -#: plug-ins/common/dog.c:294 +#: plug-ins/common/dog.c:295 msgid "Smoothing parameters" msgstr "" -#: plug-ins/common/dog.c:308 +#: plug-ins/common/dog.c:309 msgid "_Radius 1:" msgstr "" -#: plug-ins/common/dog.c:312 +#: plug-ins/common/dog.c:313 msgid "R_adius 2:" msgstr "" -#: plug-ins/common/dog.c:324 plug-ins/common/normalize.c:88 +#: plug-ins/common/dog.c:325 plug-ins/common/normalize.c:88 msgid "_Normalize" msgstr "" -#: plug-ins/common/dog.c:335 plug-ins/gimpressionist/paper.c:149 +#: plug-ins/common/dog.c:336 plug-ins/gimpressionist/paper.c:149 msgid "_Invert" msgstr "" @@ -3303,7 +3303,7 @@ msgid "_Emboss..." msgstr "" -#: plug-ins/common/emboss.c:374 plug-ins/common/emboss.c:439 +#: plug-ins/common/emboss.c:376 plug-ins/common/emboss.c:439 msgid "Emboss" msgstr "" @@ -3327,7 +3327,7 @@ msgid "En_grave..." msgstr "" -#: plug-ins/common/engrave.c:181 +#: plug-ins/common/engrave.c:182 msgid "Engraving..." msgstr "" @@ -3730,38 +3730,38 @@ msgid "_Gaussian Blur..." msgstr "" -#: plug-ins/common/gauss.c:407 +#: plug-ins/common/gauss.c:413 msgid "Gaussian Blur..." msgstr "" -#: plug-ins/common/gauss.c:460 +#: plug-ins/common/gauss.c:461 msgid "Gaussian Blur" msgstr "" #. parameter settings -#: plug-ins/common/gauss.c:483 +#: plug-ins/common/gauss.c:484 msgid "Blur Radius" msgstr "" -#: plug-ins/common/gauss.c:497 plug-ins/common/jigsaw.c:2456 -#: plug-ins/common/spread.c:378 +#: plug-ins/common/gauss.c:498 plug-ins/common/jigsaw.c:2456 +#: plug-ins/common/spread.c:379 msgid "_Horizontal:" msgstr "" -#: plug-ins/common/gauss.c:501 plug-ins/common/jigsaw.c:2473 -#: plug-ins/common/spread.c:382 +#: plug-ins/common/gauss.c:502 plug-ins/common/jigsaw.c:2473 +#: plug-ins/common/spread.c:383 msgid "_Vertical:" msgstr "" -#: plug-ins/common/gauss.c:524 +#: plug-ins/common/gauss.c:525 msgid "Blur Method" msgstr "" -#: plug-ins/common/gauss.c:528 +#: plug-ins/common/gauss.c:529 msgid "_IIR" msgstr "" -#: plug-ins/common/gauss.c:529 +#: plug-ins/common/gauss.c:530 msgid "_RLE" msgstr "" @@ -4046,19 +4046,19 @@ msgid "_Glass Tile..." msgstr "" -#: plug-ins/common/glasstile.c:208 +#: plug-ins/common/glasstile.c:209 msgid "Glass Tile..." msgstr "" -#: plug-ins/common/glasstile.c:251 +#: plug-ins/common/glasstile.c:250 msgid "Glass Tile" msgstr "" -#: plug-ins/common/glasstile.c:282 +#: plug-ins/common/glasstile.c:281 msgid "Tile _width:" msgstr "" -#: plug-ins/common/glasstile.c:296 plug-ins/common/mosaic.c:621 +#: plug-ins/common/glasstile.c:295 plug-ins/common/mosaic.c:621 msgid "Tile _height:" msgstr "" @@ -5030,15 +5030,15 @@ msgid "_Neon..." msgstr "" -#: plug-ins/common/neon.c:204 +#: plug-ins/common/neon.c:207 msgid "Neon..." msgstr "" -#: plug-ins/common/neon.c:698 +#: plug-ins/common/neon.c:697 msgid "Neon Detection" msgstr "" -#: plug-ins/common/neon.c:743 plug-ins/common/unsharp.c:707 +#: plug-ins/common/neon.c:742 plug-ins/common/unsharp.c:678 msgid "_Amount:" msgstr "" @@ -5197,7 +5197,7 @@ msgid "_Scatter RGB..." msgstr "" -#: plug-ins/common/noisify.c:284 +#: plug-ins/common/noisify.c:285 msgid "Adding Noise..." msgstr "" @@ -5266,7 +5266,7 @@ msgid "Oili_fy..." msgstr "" -#: plug-ins/common/oilify.c:188 +#: plug-ins/common/oilify.c:189 msgid "Oil Painting..." msgstr "" @@ -5401,7 +5401,7 @@ msgid "Photocopy" msgstr "" -#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:513 +#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:509 #: plug-ins/common/softglow.c:687 msgid "_Sharpness:" msgstr "" @@ -6022,7 +6022,7 @@ msgid "_Ripple..." msgstr "" -#: plug-ins/common/ripple.c:219 +#: plug-ins/common/ripple.c:222 msgid "Rippling..." msgstr "" @@ -6240,19 +6240,19 @@ msgid "_Selective Gaussian Blur..." msgstr "" -#: plug-ins/common/sel_gauss.c:186 +#: plug-ins/common/sel_gauss.c:187 msgid "Selective Gaussian Blur..." msgstr "" -#: plug-ins/common/sel_gauss.c:224 +#: plug-ins/common/sel_gauss.c:225 msgid "Selective Gaussian Blur" msgstr "" -#: plug-ins/common/sel_gauss.c:256 +#: plug-ins/common/sel_gauss.c:257 msgid "_Blur radius:" msgstr "" -#: plug-ins/common/sel_gauss.c:266 +#: plug-ins/common/sel_gauss.c:267 msgid "_Max. delta:" msgstr "" @@ -6271,11 +6271,11 @@ #. #. * Let the user know what we're doing... #. -#: plug-ins/common/sharpen.c:315 +#: plug-ins/common/sharpen.c:311 msgid "Sharpening..." msgstr "" -#: plug-ins/common/sharpen.c:484 +#: plug-ins/common/sharpen.c:480 msgid "Sharpen" msgstr "" @@ -6283,7 +6283,7 @@ msgid "_Shift..." msgstr "" -#: plug-ins/common/shift.c:191 +#: plug-ins/common/shift.c:194 msgid "Shifting..." msgstr "" @@ -6478,23 +6478,23 @@ msgid "_Sobel..." msgstr "" -#: plug-ins/common/sobel.c:226 +#: plug-ins/common/sobel.c:227 msgid "Sobel Edge Detection" msgstr "" -#: plug-ins/common/sobel.c:248 +#: plug-ins/common/sobel.c:249 msgid "Sobel _Horizontally" msgstr "" -#: plug-ins/common/sobel.c:260 +#: plug-ins/common/sobel.c:261 msgid "Sobel _Vertically" msgstr "" -#: plug-ins/common/sobel.c:272 +#: plug-ins/common/sobel.c:273 msgid "_Keep sign of result (one direction only)" msgstr "" -#: plug-ins/common/sobel.c:358 +#: plug-ins/common/sobel.c:359 msgid "Sobel Edge Detecting..." msgstr "" @@ -6792,15 +6792,15 @@ msgid "Sp_read..." msgstr "" -#: plug-ins/common/spread.c:179 +#: plug-ins/common/spread.c:182 msgid "Spreading..." msgstr "" -#: plug-ins/common/spread.c:345 +#: plug-ins/common/spread.c:346 msgid "Spread" msgstr "" -#: plug-ins/common/spread.c:363 +#: plug-ins/common/spread.c:364 msgid "Spread Amount" msgstr "" @@ -7077,7 +7077,8 @@ msgid "_Tile..." msgstr "" -#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:321 +#. Set the tile cache size +#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:320 msgid "Tiling..." msgstr "" @@ -7098,42 +7099,42 @@ msgstr "" #. Get the preview image -#: plug-ins/common/tileit.c:364 +#: plug-ins/common/tileit.c:363 msgid "TileIt" msgstr "" #. Area for buttons etc #. Flip -#: plug-ins/common/tileit.c:407 plug-ins/ifscompose/ifscompose.c:628 +#: plug-ins/common/tileit.c:406 plug-ins/ifscompose/ifscompose.c:628 msgid "Flip" msgstr "" -#: plug-ins/common/tileit.c:455 +#: plug-ins/common/tileit.c:454 msgid "A_ll tiles" msgstr "" -#: plug-ins/common/tileit.c:469 +#: plug-ins/common/tileit.c:468 msgid "Al_ternate tiles" msgstr "" -#: plug-ins/common/tileit.c:483 +#: plug-ins/common/tileit.c:482 msgid "_Explicit tile" msgstr "" -#: plug-ins/common/tileit.c:489 +#: plug-ins/common/tileit.c:488 msgid "Ro_w:" msgstr "" -#: plug-ins/common/tileit.c:513 +#: plug-ins/common/tileit.c:512 msgid "Col_umn:" msgstr "" -#: plug-ins/common/tileit.c:565 +#: plug-ins/common/tileit.c:564 msgid "O_pacity:" msgstr "" #. Lower frame saying howmany segments -#: plug-ins/common/tileit.c:574 +#: plug-ins/common/tileit.c:573 msgid "Number of Segments" msgstr "" @@ -7273,15 +7274,15 @@ msgid "Unit Editor" msgstr "" -#: plug-ins/common/unsharp.c:149 +#: plug-ins/common/unsharp.c:143 msgid "_Unsharp Mask..." msgstr "" -#: plug-ins/common/unsharp.c:493 +#: plug-ins/common/unsharp.c:468 msgid "Merging..." msgstr "" -#: plug-ins/common/unsharp.c:664 +#: plug-ins/common/unsharp.c:635 msgid "Unsharp Mask" msgstr "" @@ -8292,19 +8293,19 @@ msgid "_Zoom:" msgstr "" -#: plug-ins/gfig/gfig-bezier.c:452 +#: plug-ins/gfig/gfig-bezier.c:448 msgid "Closed" msgstr "" -#: plug-ins/gfig/gfig-bezier.c:457 +#: plug-ins/gfig/gfig-bezier.c:453 msgid "Close curve on completion" msgstr "" -#: plug-ins/gfig/gfig-bezier.c:462 +#: plug-ins/gfig/gfig-bezier.c:458 msgid "Show Line Frame" msgstr "" -#: plug-ins/gfig/gfig-bezier.c:467 +#: plug-ins/gfig/gfig-bezier.c:463 msgid "Draws lines between the control points. Only during curve creation" msgstr "" diff -uraN gimp-2.2.0/po-plug-ins/gl.gmo gimp-2.2.1/po-plug-ins/gl.gmo --- gimp-2.2.0/po-plug-ins/gl.gmo 2004-12-19 03:34:23.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/gl.gmo 2004-12-28 16:59:06.000000000 +0100 @@ -1,6 +1,6 @@ $,89Project-Id-Version: gimp-plugins VERSION Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2000-12-23 11:40-0800 Last-Translator: Nobody Language-Team: Galician diff -uraN gimp-2.2.0/po-plug-ins/gl.po gimp-2.2.1/po-plug-ins/gl.po --- gimp-2.2.0/po-plug-ins/gl.po 2004-12-19 03:34:10.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/gl.po 2004-12-28 16:58:54.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: gimp-plugins VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2000-12-23 11:40-0800\n" "Last-Translator: Nobody\n" "Language-Team: Galician\n" @@ -933,7 +933,7 @@ msgid "Antialiasing quality. Higher is better, but slower" msgstr "" -#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:720 +#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:691 #: plug-ins/common/wind.c:993 plug-ins/imagemap/imap_preferences.c:539 msgid "_Threshold:" msgstr "" @@ -2049,12 +2049,12 @@ msgstr "" #: plug-ins/common/blinds.c:259 plug-ins/common/ripple.c:539 -#: plug-ins/common/tileit.c:419 plug-ins/pagecurl/pagecurl.c:530 +#: plug-ins/common/tileit.c:418 plug-ins/pagecurl/pagecurl.c:530 msgid "_Horizontal" msgstr "" #: plug-ins/common/blinds.c:260 plug-ins/common/ripple.c:540 -#: plug-ins/common/tileit.c:429 plug-ins/pagecurl/pagecurl.c:529 +#: plug-ins/common/tileit.c:428 plug-ins/pagecurl/pagecurl.c:529 msgid "_Vertical" msgstr "" @@ -2075,7 +2075,7 @@ msgid "_Blur" msgstr "" -#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:383 +#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:432 msgid "Blurring..." msgstr "" @@ -2185,23 +2185,23 @@ msgid "Ca_rtoon..." msgstr "" -#: plug-ins/common/cartoon.c:228 plug-ins/common/dog.c:246 -#: plug-ins/common/gauss.c:430 plug-ins/common/neon.c:222 -#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:203 +#: plug-ins/common/cartoon.c:229 plug-ins/common/dog.c:247 +#: plug-ins/common/gauss.c:431 plug-ins/common/neon.c:221 +#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:204 #: plug-ins/common/softglow.c:220 plug-ins/gflare/gflare.c:972 #: plug-ins/sgi/sgi.c:528 plug-ins/xjt/xjt.c:1673 msgid "Cannot operate on indexed color images." msgstr "" -#: plug-ins/common/cartoon.c:807 +#: plug-ins/common/cartoon.c:808 msgid "Cartoon" msgstr "" -#: plug-ins/common/cartoon.c:837 plug-ins/common/photocopy.c:867 +#: plug-ins/common/cartoon.c:838 plug-ins/common/photocopy.c:867 msgid "_Mask radius:" msgstr "" -#: plug-ins/common/cartoon.c:851 +#: plug-ins/common/cartoon.c:852 msgid "_Percent black:" msgstr "" @@ -2360,29 +2360,29 @@ msgid "Colorify Custom Color" msgstr "" -#: plug-ins/common/colortoalpha.c:105 +#: plug-ins/common/colortoalpha.c:104 #, fuzzy msgid "Color to _Alpha..." msgstr "/Filters/Colors/Map/Alien Map..." -#: plug-ins/common/colortoalpha.c:183 +#: plug-ins/common/colortoalpha.c:181 msgid "Removing color..." msgstr "" -#: plug-ins/common/colortoalpha.c:364 +#: plug-ins/common/colortoalpha.c:377 msgid "Color to Alpha" msgstr "" -#: plug-ins/common/colortoalpha.c:389 plug-ins/common/mapcolor.c:424 +#: plug-ins/common/colortoalpha.c:402 plug-ins/common/mapcolor.c:424 #: plug-ins/gfli/gfli.c:835 plug-ins/gfli/gfli.c:898 msgid "From:" msgstr "" -#: plug-ins/common/colortoalpha.c:393 +#: plug-ins/common/colortoalpha.c:406 msgid "Color to Alpha Color Picker" msgstr "" -#: plug-ins/common/colortoalpha.c:407 +#: plug-ins/common/colortoalpha.c:420 msgid "to alpha" msgstr "" @@ -2694,23 +2694,23 @@ msgid "_Cubism..." msgstr "" -#: plug-ins/common/cubism.c:267 +#: plug-ins/common/cubism.c:269 msgid "Cubism" msgstr "" -#: plug-ins/common/cubism.c:296 +#: plug-ins/common/cubism.c:298 msgid "_Tile size:" msgstr "" -#: plug-ins/common/cubism.c:309 +#: plug-ins/common/cubism.c:311 msgid "T_ile saturation:" msgstr "" -#: plug-ins/common/cubism.c:320 +#: plug-ins/common/cubism.c:322 msgid "_Use background color" msgstr "" -#: plug-ins/common/cubism.c:410 +#: plug-ins/common/cubism.c:412 msgid "Cubistic Transformation..." msgstr "" @@ -3077,42 +3077,42 @@ msgid "Des_peckle..." msgstr "" -#: plug-ins/common/despeckle.c:420 plug-ins/common/despeckle.c:642 +#: plug-ins/common/despeckle.c:418 plug-ins/common/despeckle.c:640 msgid "Despeckle" msgstr "" #. #. * Filter type controls... #. -#: plug-ins/common/despeckle.c:446 plug-ins/gimpressionist/orientmap.c:616 +#: plug-ins/common/despeckle.c:444 plug-ins/gimpressionist/orientmap.c:616 msgid "Type" msgstr "" #. parameter settings -#: plug-ins/common/despeckle.c:456 +#: plug-ins/common/despeckle.c:454 msgid "Median" msgstr "" -#: plug-ins/common/despeckle.c:462 +#: plug-ins/common/despeckle.c:460 msgid "_Adaptive" msgstr "" -#: plug-ins/common/despeckle.c:472 +#: plug-ins/common/despeckle.c:470 msgid "R_ecursive" msgstr "" -#: plug-ins/common/despeckle.c:496 plug-ins/common/neon.c:728 +#: plug-ins/common/despeckle.c:494 plug-ins/common/neon.c:727 #: plug-ins/common/nlfilt.c:1083 plug-ins/common/nova.c:359 -#: plug-ins/common/unsharp.c:694 plug-ins/common/whirlpinch.c:588 +#: plug-ins/common/unsharp.c:665 plug-ins/common/whirlpinch.c:588 #: plug-ins/gflare/gflare.c:2686 plug-ins/imagemap/imap_circle.c:278 msgid "_Radius:" msgstr "" -#: plug-ins/common/despeckle.c:512 +#: plug-ins/common/despeckle.c:510 msgid "_Black level:" msgstr "" -#: plug-ins/common/despeckle.c:528 +#: plug-ins/common/despeckle.c:526 msgid "_White level:" msgstr "" @@ -3199,7 +3199,7 @@ msgid "_Displace..." msgstr "" -#: plug-ins/common/displace.c:228 +#: plug-ins/common/displace.c:231 msgid "Displacing..." msgstr "" @@ -3237,28 +3237,28 @@ msgid "Difference of Gaussians..." msgstr "/Filters/Colors/Map/Alien Map..." -#: plug-ins/common/dog.c:222 plug-ins/common/dog.c:273 +#: plug-ins/common/dog.c:227 plug-ins/common/dog.c:274 msgid "DoG Edge Detect" msgstr "" -#: plug-ins/common/dog.c:294 +#: plug-ins/common/dog.c:295 #, fuzzy msgid "Smoothing parameters" msgstr "/Filters/Colors/Map/Alien Map..." -#: plug-ins/common/dog.c:308 +#: plug-ins/common/dog.c:309 msgid "_Radius 1:" msgstr "" -#: plug-ins/common/dog.c:312 +#: plug-ins/common/dog.c:313 msgid "R_adius 2:" msgstr "" -#: plug-ins/common/dog.c:324 plug-ins/common/normalize.c:88 +#: plug-ins/common/dog.c:325 plug-ins/common/normalize.c:88 msgid "_Normalize" msgstr "" -#: plug-ins/common/dog.c:335 plug-ins/gimpressionist/paper.c:149 +#: plug-ins/common/dog.c:336 plug-ins/gimpressionist/paper.c:149 msgid "_Invert" msgstr "" @@ -3310,7 +3310,7 @@ msgid "_Emboss..." msgstr "" -#: plug-ins/common/emboss.c:374 plug-ins/common/emboss.c:439 +#: plug-ins/common/emboss.c:376 plug-ins/common/emboss.c:439 msgid "Emboss" msgstr "" @@ -3334,7 +3334,7 @@ msgid "En_grave..." msgstr "" -#: plug-ins/common/engrave.c:181 +#: plug-ins/common/engrave.c:182 msgid "Engraving..." msgstr "" @@ -3739,40 +3739,40 @@ msgid "_Gaussian Blur..." msgstr "/Filters/Colors/Map/Alien Map..." -#: plug-ins/common/gauss.c:407 +#: plug-ins/common/gauss.c:413 #, fuzzy msgid "Gaussian Blur..." msgstr "/Filters/Colors/Map/Alien Map..." -#: plug-ins/common/gauss.c:460 +#: plug-ins/common/gauss.c:461 #, fuzzy msgid "Gaussian Blur" msgstr "/Filters/Colors/Map/Alien Map..." #. parameter settings -#: plug-ins/common/gauss.c:483 +#: plug-ins/common/gauss.c:484 msgid "Blur Radius" msgstr "" -#: plug-ins/common/gauss.c:497 plug-ins/common/jigsaw.c:2456 -#: plug-ins/common/spread.c:378 +#: plug-ins/common/gauss.c:498 plug-ins/common/jigsaw.c:2456 +#: plug-ins/common/spread.c:379 msgid "_Horizontal:" msgstr "" -#: plug-ins/common/gauss.c:501 plug-ins/common/jigsaw.c:2473 -#: plug-ins/common/spread.c:382 +#: plug-ins/common/gauss.c:502 plug-ins/common/jigsaw.c:2473 +#: plug-ins/common/spread.c:383 msgid "_Vertical:" msgstr "" -#: plug-ins/common/gauss.c:524 +#: plug-ins/common/gauss.c:525 msgid "Blur Method" msgstr "" -#: plug-ins/common/gauss.c:528 +#: plug-ins/common/gauss.c:529 msgid "_IIR" msgstr "" -#: plug-ins/common/gauss.c:529 +#: plug-ins/common/gauss.c:530 msgid "_RLE" msgstr "" @@ -4057,19 +4057,19 @@ msgid "_Glass Tile..." msgstr "" -#: plug-ins/common/glasstile.c:208 +#: plug-ins/common/glasstile.c:209 msgid "Glass Tile..." msgstr "" -#: plug-ins/common/glasstile.c:251 +#: plug-ins/common/glasstile.c:250 msgid "Glass Tile" msgstr "" -#: plug-ins/common/glasstile.c:282 +#: plug-ins/common/glasstile.c:281 msgid "Tile _width:" msgstr "" -#: plug-ins/common/glasstile.c:296 plug-ins/common/mosaic.c:621 +#: plug-ins/common/glasstile.c:295 plug-ins/common/mosaic.c:621 msgid "Tile _height:" msgstr "" @@ -5046,15 +5046,15 @@ msgid "_Neon..." msgstr "" -#: plug-ins/common/neon.c:204 +#: plug-ins/common/neon.c:207 msgid "Neon..." msgstr "" -#: plug-ins/common/neon.c:698 +#: plug-ins/common/neon.c:697 msgid "Neon Detection" msgstr "" -#: plug-ins/common/neon.c:743 plug-ins/common/unsharp.c:707 +#: plug-ins/common/neon.c:742 plug-ins/common/unsharp.c:678 msgid "_Amount:" msgstr "" @@ -5213,7 +5213,7 @@ msgid "_Scatter RGB..." msgstr "" -#: plug-ins/common/noisify.c:284 +#: plug-ins/common/noisify.c:285 msgid "Adding Noise..." msgstr "" @@ -5282,7 +5282,7 @@ msgid "Oili_fy..." msgstr "" -#: plug-ins/common/oilify.c:188 +#: plug-ins/common/oilify.c:189 msgid "Oil Painting..." msgstr "" @@ -5417,7 +5417,7 @@ msgid "Photocopy" msgstr "" -#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:513 +#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:509 #: plug-ins/common/softglow.c:687 msgid "_Sharpness:" msgstr "" @@ -6039,7 +6039,7 @@ msgid "_Ripple..." msgstr "" -#: plug-ins/common/ripple.c:219 +#: plug-ins/common/ripple.c:222 msgid "Rippling..." msgstr "" @@ -6259,19 +6259,19 @@ msgid "_Selective Gaussian Blur..." msgstr "/Filters/Colors/Map/Alien Map..." -#: plug-ins/common/sel_gauss.c:186 +#: plug-ins/common/sel_gauss.c:187 msgid "Selective Gaussian Blur..." msgstr "" -#: plug-ins/common/sel_gauss.c:224 +#: plug-ins/common/sel_gauss.c:225 msgid "Selective Gaussian Blur" msgstr "" -#: plug-ins/common/sel_gauss.c:256 +#: plug-ins/common/sel_gauss.c:257 msgid "_Blur radius:" msgstr "" -#: plug-ins/common/sel_gauss.c:266 +#: plug-ins/common/sel_gauss.c:267 msgid "_Max. delta:" msgstr "" @@ -6290,11 +6290,11 @@ #. #. * Let the user know what we're doing... #. -#: plug-ins/common/sharpen.c:315 +#: plug-ins/common/sharpen.c:311 msgid "Sharpening..." msgstr "" -#: plug-ins/common/sharpen.c:484 +#: plug-ins/common/sharpen.c:480 msgid "Sharpen" msgstr "" @@ -6302,7 +6302,7 @@ msgid "_Shift..." msgstr "" -#: plug-ins/common/shift.c:191 +#: plug-ins/common/shift.c:194 msgid "Shifting..." msgstr "" @@ -6498,23 +6498,23 @@ msgid "_Sobel..." msgstr "" -#: plug-ins/common/sobel.c:226 +#: plug-ins/common/sobel.c:227 msgid "Sobel Edge Detection" msgstr "" -#: plug-ins/common/sobel.c:248 +#: plug-ins/common/sobel.c:249 msgid "Sobel _Horizontally" msgstr "" -#: plug-ins/common/sobel.c:260 +#: plug-ins/common/sobel.c:261 msgid "Sobel _Vertically" msgstr "" -#: plug-ins/common/sobel.c:272 +#: plug-ins/common/sobel.c:273 msgid "_Keep sign of result (one direction only)" msgstr "" -#: plug-ins/common/sobel.c:358 +#: plug-ins/common/sobel.c:359 msgid "Sobel Edge Detecting..." msgstr "" @@ -6813,15 +6813,15 @@ msgid "Sp_read..." msgstr "" -#: plug-ins/common/spread.c:179 +#: plug-ins/common/spread.c:182 msgid "Spreading..." msgstr "" -#: plug-ins/common/spread.c:345 +#: plug-ins/common/spread.c:346 msgid "Spread" msgstr "" -#: plug-ins/common/spread.c:363 +#: plug-ins/common/spread.c:364 msgid "Spread Amount" msgstr "" @@ -7098,7 +7098,8 @@ msgid "_Tile..." msgstr "" -#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:321 +#. Set the tile cache size +#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:320 msgid "Tiling..." msgstr "" @@ -7120,43 +7121,43 @@ msgstr "/Filters/Colors/Map/Alien Map..." #. Get the preview image -#: plug-ins/common/tileit.c:364 +#: plug-ins/common/tileit.c:363 msgid "TileIt" msgstr "" #. Area for buttons etc #. Flip -#: plug-ins/common/tileit.c:407 plug-ins/ifscompose/ifscompose.c:628 +#: plug-ins/common/tileit.c:406 plug-ins/ifscompose/ifscompose.c:628 msgid "Flip" msgstr "" -#: plug-ins/common/tileit.c:455 +#: plug-ins/common/tileit.c:454 #, fuzzy msgid "A_ll tiles" msgstr "/Filters/Colors/Map/Alien Map..." -#: plug-ins/common/tileit.c:469 +#: plug-ins/common/tileit.c:468 msgid "Al_ternate tiles" msgstr "" -#: plug-ins/common/tileit.c:483 +#: plug-ins/common/tileit.c:482 msgid "_Explicit tile" msgstr "" -#: plug-ins/common/tileit.c:489 +#: plug-ins/common/tileit.c:488 msgid "Ro_w:" msgstr "" -#: plug-ins/common/tileit.c:513 +#: plug-ins/common/tileit.c:512 msgid "Col_umn:" msgstr "" -#: plug-ins/common/tileit.c:565 +#: plug-ins/common/tileit.c:564 msgid "O_pacity:" msgstr "" #. Lower frame saying howmany segments -#: plug-ins/common/tileit.c:574 +#: plug-ins/common/tileit.c:573 msgid "Number of Segments" msgstr "" @@ -7296,15 +7297,15 @@ msgid "Unit Editor" msgstr "" -#: plug-ins/common/unsharp.c:149 +#: plug-ins/common/unsharp.c:143 msgid "_Unsharp Mask..." msgstr "" -#: plug-ins/common/unsharp.c:493 +#: plug-ins/common/unsharp.c:468 msgid "Merging..." msgstr "" -#: plug-ins/common/unsharp.c:664 +#: plug-ins/common/unsharp.c:635 msgid "Unsharp Mask" msgstr "" @@ -8317,19 +8318,19 @@ msgid "_Zoom:" msgstr "" -#: plug-ins/gfig/gfig-bezier.c:452 +#: plug-ins/gfig/gfig-bezier.c:448 msgid "Closed" msgstr "" -#: plug-ins/gfig/gfig-bezier.c:457 +#: plug-ins/gfig/gfig-bezier.c:453 msgid "Close curve on completion" msgstr "" -#: plug-ins/gfig/gfig-bezier.c:462 +#: plug-ins/gfig/gfig-bezier.c:458 msgid "Show Line Frame" msgstr "" -#: plug-ins/gfig/gfig-bezier.c:467 +#: plug-ins/gfig/gfig-bezier.c:463 msgid "Draws lines between the control points. Only during curve creation" msgstr "" diff -uraN gimp-2.2.0/po-plug-ins/he.gmo gimp-2.2.1/po-plug-ins/he.gmo --- gimp-2.2.0/po-plug-ins/he.gmo 2004-12-19 03:34:23.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/he.gmo 2004-12-28 16:59:06.000000000 +0100 @@ -11,7 +11,7 @@ 'B R^vA & 6@S[=d~!60 gs x]7{GBRd m{ $<3M ePK*# NX-xR+%12A;3)+8- ?%6!:"*.= C'9/, & <4>B570@( $#Adds random noise to the colorAll grayAmount of original color to show where no direct light fallsBackground ColorCenterCenter of SuperNovaCenterizeChange the number of colors in the mappingColorColor DensityColor Enhance...Color ExchangeColor Exchange...Color Exchange: From ColorColor Exchange: To ColorColor FunctionColor ModeColor Selection DialogColor TransformationColor is computed from the average of all pixels under the brushColor to AlphaColor to Alpha Color PickerColor:ColorifyColorify Custom ColorColorifying...ColoringColormap RotationColorsColors:Create a color-map using a gradient from the gradient editorCreate a color-map with the options you specified above (color density/function). The result is visible in the preview imageCustom Color:Focus the brush strokes around the center of the imageFrom ColorGrayGrayscaleHorizontal ColorIf checked GTM will replace any rectangular sections of identically colored blocks with one large cell with ROWSPAN and COLSPAN values.If you enable this option higher color values will be swapped with lower ones and vice versaIntensity of original color when lit by a light sourceIntersection ColorLet the direction from the center determine the direction of the strokeLet the direction from the center determine the size of the strokeNumber of ColorsPixelizePixelizing...PolarizePolarizing...RGBA/GRAYA drawable is not selected.Remap Colorized...Rotating the colormap...Sample ColorizeSamples the color from the pixel in the center of the brushSolid colored backgroundSuperNova Color PickerThe colors are white and black.The distance from the center of the image determines the direction of the strokeThe distance from the center of the image determines the size of the strokeThreshold Alpha: Coloring Transparency...To ColorType of colormap not supportedUse cosine-function for this color componentUse linear mapping instead of any trigonometrical function for this color channelUse sine-function for this color componentVertical ColorProject-Id-Version: gimp CVS Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2000-02-02 14:07+0000 Last-Translator: Gil 'Dolfin' Osher Language-Team: Hebrew diff -uraN gimp-2.2.0/po-plug-ins/he.po gimp-2.2.1/po-plug-ins/he.po --- gimp-2.2.0/po-plug-ins/he.po 2004-12-19 03:34:11.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/he.po 2004-12-28 16:58:55.000000000 +0100 @@ -2,7 +2,7 @@ msgstr "" "Project-Id-Version: gimp CVS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2000-02-02 14:07+0000\n" "Last-Translator: Gil 'Dolfin' Osher \n" "Language-Team: Hebrew \n" @@ -969,7 +969,7 @@ msgid "Antialiasing quality. Higher is better, but slower" msgstr "" -#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:720 +#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:691 #: plug-ins/common/wind.c:993 plug-ins/imagemap/imap_preferences.c:539 msgid "_Threshold:" msgstr "" @@ -2123,13 +2123,13 @@ msgstr "" #: plug-ins/common/blinds.c:259 plug-ins/common/ripple.c:539 -#: plug-ins/common/tileit.c:419 plug-ins/pagecurl/pagecurl.c:530 +#: plug-ins/common/tileit.c:418 plug-ins/pagecurl/pagecurl.c:530 #, fuzzy msgid "_Horizontal" msgstr "Horizontal Colour" #: plug-ins/common/blinds.c:260 plug-ins/common/ripple.c:540 -#: plug-ins/common/tileit.c:429 plug-ins/pagecurl/pagecurl.c:529 +#: plug-ins/common/tileit.c:428 plug-ins/pagecurl/pagecurl.c:529 #, fuzzy msgid "_Vertical" msgstr "Vertical Colour" @@ -2153,7 +2153,7 @@ msgid "_Blur" msgstr "" -#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:383 +#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:432 msgid "Blurring..." msgstr "" @@ -2265,26 +2265,26 @@ msgid "Ca_rtoon..." msgstr "Colour Variation:" -#: plug-ins/common/cartoon.c:228 plug-ins/common/dog.c:246 -#: plug-ins/common/gauss.c:430 plug-ins/common/neon.c:222 -#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:203 +#: plug-ins/common/cartoon.c:229 plug-ins/common/dog.c:247 +#: plug-ins/common/gauss.c:431 plug-ins/common/neon.c:221 +#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:204 #: plug-ins/common/softglow.c:220 plug-ins/gflare/gflare.c:972 #: plug-ins/sgi/sgi.c:528 plug-ins/xjt/xjt.c:1673 #, fuzzy msgid "Cannot operate on indexed color images." msgstr "xjt: cannot operate on indexed colour images" -#: plug-ins/common/cartoon.c:807 +#: plug-ins/common/cartoon.c:808 #, fuzzy msgid "Cartoon" msgstr "Colour Variation:" -#: plug-ins/common/cartoon.c:837 plug-ins/common/photocopy.c:867 +#: plug-ins/common/cartoon.c:838 plug-ins/common/photocopy.c:867 #, fuzzy msgid "_Mask radius:" msgstr "Colour Mode" -#: plug-ins/common/cartoon.c:851 +#: plug-ins/common/cartoon.c:852 msgid "_Percent black:" msgstr "" @@ -2450,30 +2450,30 @@ msgid "Colorify Custom Color" msgstr "Colourify Custom Colour" -#: plug-ins/common/colortoalpha.c:105 +#: plug-ins/common/colortoalpha.c:104 #, fuzzy msgid "Color to _Alpha..." msgstr "Colour to Alpha" -#: plug-ins/common/colortoalpha.c:183 +#: plug-ins/common/colortoalpha.c:181 #, fuzzy msgid "Removing color..." msgstr "Rotating the colourmap..." -#: plug-ins/common/colortoalpha.c:364 +#: plug-ins/common/colortoalpha.c:377 msgid "Color to Alpha" msgstr "Colour to Alpha" -#: plug-ins/common/colortoalpha.c:389 plug-ins/common/mapcolor.c:424 +#: plug-ins/common/colortoalpha.c:402 plug-ins/common/mapcolor.c:424 #: plug-ins/gfli/gfli.c:835 plug-ins/gfli/gfli.c:898 msgid "From:" msgstr "" -#: plug-ins/common/colortoalpha.c:393 +#: plug-ins/common/colortoalpha.c:406 msgid "Color to Alpha Color Picker" msgstr "Colour to Alpha Colour Picker" -#: plug-ins/common/colortoalpha.c:407 +#: plug-ins/common/colortoalpha.c:420 #, fuzzy msgid "to alpha" msgstr "Colour to Alpha" @@ -2791,25 +2791,25 @@ msgid "_Cubism..." msgstr "" -#: plug-ins/common/cubism.c:267 +#: plug-ins/common/cubism.c:269 msgid "Cubism" msgstr "" -#: plug-ins/common/cubism.c:296 +#: plug-ins/common/cubism.c:298 msgid "_Tile size:" msgstr "" -#: plug-ins/common/cubism.c:309 +#: plug-ins/common/cubism.c:311 #, fuzzy msgid "T_ile saturation:" msgstr "Colour Variation:" -#: plug-ins/common/cubism.c:320 +#: plug-ins/common/cubism.c:322 #, fuzzy msgid "_Use background color" msgstr "Use Background Colour" -#: plug-ins/common/cubism.c:410 +#: plug-ins/common/cubism.c:412 #, fuzzy msgid "Cubistic Transformation..." msgstr "Colour Transformation" @@ -3186,42 +3186,42 @@ msgid "Des_peckle..." msgstr "" -#: plug-ins/common/despeckle.c:420 plug-ins/common/despeckle.c:642 +#: plug-ins/common/despeckle.c:418 plug-ins/common/despeckle.c:640 msgid "Despeckle" msgstr "" #. #. * Filter type controls... #. -#: plug-ins/common/despeckle.c:446 plug-ins/gimpressionist/orientmap.c:616 +#: plug-ins/common/despeckle.c:444 plug-ins/gimpressionist/orientmap.c:616 msgid "Type" msgstr "" #. parameter settings -#: plug-ins/common/despeckle.c:456 +#: plug-ins/common/despeckle.c:454 msgid "Median" msgstr "" -#: plug-ins/common/despeckle.c:462 +#: plug-ins/common/despeckle.c:460 msgid "_Adaptive" msgstr "" -#: plug-ins/common/despeckle.c:472 +#: plug-ins/common/despeckle.c:470 msgid "R_ecursive" msgstr "" -#: plug-ins/common/despeckle.c:496 plug-ins/common/neon.c:728 +#: plug-ins/common/despeckle.c:494 plug-ins/common/neon.c:727 #: plug-ins/common/nlfilt.c:1083 plug-ins/common/nova.c:359 -#: plug-ins/common/unsharp.c:694 plug-ins/common/whirlpinch.c:588 +#: plug-ins/common/unsharp.c:665 plug-ins/common/whirlpinch.c:588 #: plug-ins/gflare/gflare.c:2686 plug-ins/imagemap/imap_circle.c:278 msgid "_Radius:" msgstr "" -#: plug-ins/common/despeckle.c:512 +#: plug-ins/common/despeckle.c:510 msgid "_Black level:" msgstr "" -#: plug-ins/common/despeckle.c:528 +#: plug-ins/common/despeckle.c:526 msgid "_White level:" msgstr "" @@ -3312,7 +3312,7 @@ msgid "_Displace..." msgstr "" -#: plug-ins/common/displace.c:228 +#: plug-ins/common/displace.c:231 msgid "Displacing..." msgstr "" @@ -3350,30 +3350,30 @@ msgid "Difference of Gaussians..." msgstr "/Filters/Blur/Pixelise..." -#: plug-ins/common/dog.c:222 plug-ins/common/dog.c:273 +#: plug-ins/common/dog.c:227 plug-ins/common/dog.c:274 msgid "DoG Edge Detect" msgstr "" -#: plug-ins/common/dog.c:294 +#: plug-ins/common/dog.c:295 #, fuzzy msgid "Smoothing parameters" msgstr "Colours" -#: plug-ins/common/dog.c:308 +#: plug-ins/common/dog.c:309 #, fuzzy msgid "_Radius 1:" msgstr "Colour Mode" -#: plug-ins/common/dog.c:312 +#: plug-ins/common/dog.c:313 #, fuzzy msgid "R_adius 2:" msgstr "Colour Mode" -#: plug-ins/common/dog.c:324 plug-ins/common/normalize.c:88 +#: plug-ins/common/dog.c:325 plug-ins/common/normalize.c:88 msgid "_Normalize" msgstr "" -#: plug-ins/common/dog.c:335 plug-ins/gimpressionist/paper.c:149 +#: plug-ins/common/dog.c:336 plug-ins/gimpressionist/paper.c:149 #, fuzzy msgid "_Invert" msgstr "Intersection Colour" @@ -3429,7 +3429,7 @@ msgid "_Emboss..." msgstr "" -#: plug-ins/common/emboss.c:374 plug-ins/common/emboss.c:439 +#: plug-ins/common/emboss.c:376 plug-ins/common/emboss.c:439 msgid "Emboss" msgstr "" @@ -3453,7 +3453,7 @@ msgid "En_grave..." msgstr "" -#: plug-ins/common/engrave.c:181 +#: plug-ins/common/engrave.c:182 msgid "Engraving..." msgstr "" @@ -3877,42 +3877,42 @@ msgid "_Gaussian Blur..." msgstr "/Filters/Blur/Pixelise..." -#: plug-ins/common/gauss.c:407 +#: plug-ins/common/gauss.c:413 #, fuzzy msgid "Gaussian Blur..." msgstr "/Filters/Blur/Pixelise..." -#: plug-ins/common/gauss.c:460 +#: plug-ins/common/gauss.c:461 #, fuzzy msgid "Gaussian Blur" msgstr "/Filters/Blur/Pixelise..." #. parameter settings -#: plug-ins/common/gauss.c:483 +#: plug-ins/common/gauss.c:484 msgid "Blur Radius" msgstr "" -#: plug-ins/common/gauss.c:497 plug-ins/common/jigsaw.c:2456 -#: plug-ins/common/spread.c:378 +#: plug-ins/common/gauss.c:498 plug-ins/common/jigsaw.c:2456 +#: plug-ins/common/spread.c:379 #, fuzzy msgid "_Horizontal:" msgstr "Horizontal Colour" -#: plug-ins/common/gauss.c:501 plug-ins/common/jigsaw.c:2473 -#: plug-ins/common/spread.c:382 +#: plug-ins/common/gauss.c:502 plug-ins/common/jigsaw.c:2473 +#: plug-ins/common/spread.c:383 #, fuzzy msgid "_Vertical:" msgstr "Vertical Colour" -#: plug-ins/common/gauss.c:524 +#: plug-ins/common/gauss.c:525 msgid "Blur Method" msgstr "" -#: plug-ins/common/gauss.c:528 +#: plug-ins/common/gauss.c:529 msgid "_IIR" msgstr "" -#: plug-ins/common/gauss.c:529 +#: plug-ins/common/gauss.c:530 msgid "_RLE" msgstr "" @@ -4207,19 +4207,19 @@ msgid "_Glass Tile..." msgstr "" -#: plug-ins/common/glasstile.c:208 +#: plug-ins/common/glasstile.c:209 msgid "Glass Tile..." msgstr "" -#: plug-ins/common/glasstile.c:251 +#: plug-ins/common/glasstile.c:250 msgid "Glass Tile" msgstr "" -#: plug-ins/common/glasstile.c:282 +#: plug-ins/common/glasstile.c:281 msgid "Tile _width:" msgstr "" -#: plug-ins/common/glasstile.c:296 plug-ins/common/mosaic.c:621 +#: plug-ins/common/glasstile.c:295 plug-ins/common/mosaic.c:621 #, fuzzy msgid "Tile _height:" msgstr "Lightsource colour" @@ -5235,17 +5235,17 @@ msgid "_Neon..." msgstr "Polarising..." -#: plug-ins/common/neon.c:204 +#: plug-ins/common/neon.c:207 #, fuzzy msgid "Neon..." msgstr "Centre" -#: plug-ins/common/neon.c:698 +#: plug-ins/common/neon.c:697 #, fuzzy msgid "Neon Detection" msgstr "Vertical Colour" -#: plug-ins/common/neon.c:743 plug-ins/common/unsharp.c:707 +#: plug-ins/common/neon.c:742 plug-ins/common/unsharp.c:678 msgid "_Amount:" msgstr "" @@ -5410,7 +5410,7 @@ msgid "_Scatter RGB..." msgstr "" -#: plug-ins/common/noisify.c:284 +#: plug-ins/common/noisify.c:285 msgid "Adding Noise..." msgstr "" @@ -5483,7 +5483,7 @@ msgid "Oili_fy..." msgstr "" -#: plug-ins/common/oilify.c:188 +#: plug-ins/common/oilify.c:189 msgid "Oil Painting..." msgstr "" @@ -5625,7 +5625,7 @@ msgid "Photocopy" msgstr "" -#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:513 +#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:509 #: plug-ins/common/softglow.c:687 msgid "_Sharpness:" msgstr "" @@ -6269,7 +6269,7 @@ msgid "_Ripple..." msgstr "" -#: plug-ins/common/ripple.c:219 +#: plug-ins/common/ripple.c:222 msgid "Rippling..." msgstr "" @@ -6496,20 +6496,20 @@ msgid "_Selective Gaussian Blur..." msgstr "/Filters/Blur/Pixelise..." -#: plug-ins/common/sel_gauss.c:186 +#: plug-ins/common/sel_gauss.c:187 msgid "Selective Gaussian Blur..." msgstr "" -#: plug-ins/common/sel_gauss.c:224 +#: plug-ins/common/sel_gauss.c:225 msgid "Selective Gaussian Blur" msgstr "" -#: plug-ins/common/sel_gauss.c:256 +#: plug-ins/common/sel_gauss.c:257 #, fuzzy msgid "_Blur radius:" msgstr "Colour Mode" -#: plug-ins/common/sel_gauss.c:266 +#: plug-ins/common/sel_gauss.c:267 msgid "_Max. delta:" msgstr "" @@ -6529,11 +6529,11 @@ #. #. * Let the user know what we're doing... #. -#: plug-ins/common/sharpen.c:315 +#: plug-ins/common/sharpen.c:311 msgid "Sharpening..." msgstr "" -#: plug-ins/common/sharpen.c:484 +#: plug-ins/common/sharpen.c:480 msgid "Sharpen" msgstr "" @@ -6541,7 +6541,7 @@ msgid "_Shift..." msgstr "" -#: plug-ins/common/shift.c:191 +#: plug-ins/common/shift.c:194 msgid "Shifting..." msgstr "" @@ -6745,25 +6745,25 @@ msgid "_Sobel..." msgstr "" -#: plug-ins/common/sobel.c:226 +#: plug-ins/common/sobel.c:227 msgid "Sobel Edge Detection" msgstr "" -#: plug-ins/common/sobel.c:248 +#: plug-ins/common/sobel.c:249 #, fuzzy msgid "Sobel _Horizontally" msgstr "Horizontal Colour" -#: plug-ins/common/sobel.c:260 +#: plug-ins/common/sobel.c:261 #, fuzzy msgid "Sobel _Vertically" msgstr "Vertical Colour" -#: plug-ins/common/sobel.c:272 +#: plug-ins/common/sobel.c:273 msgid "_Keep sign of result (one direction only)" msgstr "" -#: plug-ins/common/sobel.c:358 +#: plug-ins/common/sobel.c:359 msgid "Sobel Edge Detecting..." msgstr "" @@ -7086,15 +7086,15 @@ msgid "Sp_read..." msgstr "" -#: plug-ins/common/spread.c:179 +#: plug-ins/common/spread.c:182 msgid "Spreading..." msgstr "" -#: plug-ins/common/spread.c:345 +#: plug-ins/common/spread.c:346 msgid "Spread" msgstr "" -#: plug-ins/common/spread.c:363 +#: plug-ins/common/spread.c:364 msgid "Spread Amount" msgstr "" @@ -7375,7 +7375,8 @@ msgid "_Tile..." msgstr "" -#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:321 +#. Set the tile cache size +#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:320 msgid "Tiling..." msgstr "" @@ -7398,44 +7399,44 @@ msgstr "/Filters/Colors/Map/Sample Colourise..." #. Get the preview image -#: plug-ins/common/tileit.c:364 +#: plug-ins/common/tileit.c:363 msgid "TileIt" msgstr "" #. Area for buttons etc #. Flip -#: plug-ins/common/tileit.c:407 plug-ins/ifscompose/ifscompose.c:628 +#: plug-ins/common/tileit.c:406 plug-ins/ifscompose/ifscompose.c:628 msgid "Flip" msgstr "" -#: plug-ins/common/tileit.c:455 +#: plug-ins/common/tileit.c:454 #, fuzzy msgid "A_ll tiles" msgstr "/Filters/Colors/Map/Sample Colourise..." -#: plug-ins/common/tileit.c:469 +#: plug-ins/common/tileit.c:468 #, fuzzy msgid "Al_ternate tiles" msgstr "Intersection Colour" -#: plug-ins/common/tileit.c:483 +#: plug-ins/common/tileit.c:482 msgid "_Explicit tile" msgstr "" -#: plug-ins/common/tileit.c:489 +#: plug-ins/common/tileit.c:488 msgid "Ro_w:" msgstr "" -#: plug-ins/common/tileit.c:513 +#: plug-ins/common/tileit.c:512 msgid "Col_umn:" msgstr "" -#: plug-ins/common/tileit.c:565 +#: plug-ins/common/tileit.c:564 msgid "O_pacity:" msgstr "" #. Lower frame saying howmany segments -#: plug-ins/common/tileit.c:574 +#: plug-ins/common/tileit.c:573 #, fuzzy msgid "Number of Segments" msgstr "Number of Colours:" @@ -7578,15 +7579,15 @@ msgid "Unit Editor" msgstr "" -#: plug-ins/common/unsharp.c:149 +#: plug-ins/common/unsharp.c:143 msgid "_Unsharp Mask..." msgstr "" -#: plug-ins/common/unsharp.c:493 +#: plug-ins/common/unsharp.c:468 msgid "Merging..." msgstr "" -#: plug-ins/common/unsharp.c:664 +#: plug-ins/common/unsharp.c:635 msgid "Unsharp Mask" msgstr "" @@ -8639,20 +8640,20 @@ msgid "_Zoom:" msgstr "" -#: plug-ins/gfig/gfig-bezier.c:452 +#: plug-ins/gfig/gfig-bezier.c:448 #, fuzzy msgid "Closed" msgstr "Colours" -#: plug-ins/gfig/gfig-bezier.c:457 +#: plug-ins/gfig/gfig-bezier.c:453 msgid "Close curve on completion" msgstr "" -#: plug-ins/gfig/gfig-bezier.c:462 +#: plug-ins/gfig/gfig-bezier.c:458 msgid "Show Line Frame" msgstr "" -#: plug-ins/gfig/gfig-bezier.c:467 +#: plug-ins/gfig/gfig-bezier.c:463 msgid "Draws lines between the control points. Only during curve creation" msgstr "" diff -uraN gimp-2.2.0/po-plug-ins/hr.gmo gimp-2.2.1/po-plug-ins/hr.gmo --- gimp-2.2.0/po-plug-ins/hr.gmo 2004-12-19 03:34:23.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/hr.gmo 2004-12-28 16:59:07.000000000 +0100 @@ -305,7 +305,7 @@ which has no alpha channel.Z scale (size)Z:ZealousCropping(tm)...ZoomZoom inZoom in (make image bigger)Zoom outZoom out (make image smaller)_3x3_Abbreviation:_Adaptive_Additive_Advanced_Alpha_Alpha:_Amount:_Amplitude:_Angle:_Animate_Antialiasing_Automatically convert_Azimuth:_Background_Base URL:_Bilinear_Black_Blacken_Blast_Blend_Blue_Blue:_Border:_Bottom:_Box_Brightness_Brightness:_Brush_Bump Map_Bumpmap_Copy_Deflate_Depth:_Derivative_Description:_Detail:_Digits:_Displacement:_Distorted_Dots_Edit_Effect Image:_Elevation:_Emboss_Encapsulated PostScript_Entire Image_Environment Map_Exponent:_Factor:_File_Filename:_Font:_Force_Fractals_Free_Ftp Site_Gamma:_General_Gopher_Gradient_Gray:_Green_Green:_Grey_Grow_Height_Height:_Help_Hex_Hidden_Holdness:_Horizontal_Horizontal:_Horz. Spacing:_Hue_ID:_Ideal_Ignore_Inch_Input SPI:_Insert_Interlacing (Adam7)_Invert_JPEG_JavaScript_Keep NCSA circles true_Kill_LZW_Laplace_Large staggered_Left_Left Start at:_Light_Linear_Lines_Link_Lower_MIME_Mapping_Material_Max (%):_Max Depth:_Midtones_Millimeter_Mirror_Misc Ops._Monochrome_Move_No. Across:_None_Normal_Pack Bits_Parameters_Period:_Phase:_Ping Pong_Plural:_Polygon_Presets_Preview_Preview!_Prompt for area info_Psychobilly_RGB_RLE compression_RLE encoded_Radial_Radius:_Randomize_Rays_Recipient:_Rectangle_Red:_Redo %s_Reflective_Remove_Rendering_Require default URL_Right_Right Border_Rotated_Saturation_Saturation:_Search:_Second Flares_Sender:_Settings_Sharpness:_Size_Size:_Smear_Snap-To Grid Enabled_Speed:_Spokes:_Square_Squares_Staggered_Strength:_Symbol:_Target frame name/ID: (optional - used for FRAMES only)_Thickness:_Threshold_Threshold:_Title:_Tools_Top Start at:_Top:_Transparent_URL to activate when this area is clicked: (required)_Undo %s_Update_Upper_Upper Border_Use double-sized grab handles_Uuencode_Value_Value:_Variation:_Vert. Spacing:_Vertical_Vertical:_View_Voronoi_Warp_Waterlevel:_Wavelength:_Web Site_White_Wide-striped_Width_Width:_Wind_Wrap_X Scale:_X:_Y Scale:_Y:_Yellow_Z:_Zoom_Zoom:`Default' is created.a _Single Windowafteralphablackblueblueness_cb470blueness_cb470fblueness_cb709blueness_cb709fcmcyancyan_ke-_mailgreenhueinvalid formatted GFlare file: %s k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftpixels/%aredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsin^p, steppedsin^p-based functionsome sort of error with the file extension or lack thereofthe _Whole Screenvaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: gimp-plug-ins 0 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-03-20 14:49+CET Last-Translator: auto Language-Team: Croatian diff -uraN gimp-2.2.0/po-plug-ins/hr.po gimp-2.2.1/po-plug-ins/hr.po --- gimp-2.2.0/po-plug-ins/hr.po 2004-12-19 03:34:12.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/hr.po 2004-12-28 16:58:55.000000000 +0100 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: gimp-plug-ins 0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-03-20 14:49+CET\n" "Last-Translator: auto\n" "Language-Team: Croatian \n" @@ -986,7 +986,7 @@ msgid "Antialiasing quality. Higher is better, but slower" msgstr "Kvaliteta antialiasinga.Više je bolje,ali sporije" -#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:720 +#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:691 #: plug-ins/common/wind.c:993 plug-ins/imagemap/imap_preferences.c:539 msgid "_Threshold:" msgstr "_Prag:" @@ -2189,12 +2189,12 @@ msgstr "Orijentacija" #: plug-ins/common/blinds.c:259 plug-ins/common/ripple.c:539 -#: plug-ins/common/tileit.c:419 plug-ins/pagecurl/pagecurl.c:530 +#: plug-ins/common/tileit.c:418 plug-ins/pagecurl/pagecurl.c:530 msgid "_Horizontal" msgstr "_Horizontalno" #: plug-ins/common/blinds.c:260 plug-ins/common/ripple.c:540 -#: plug-ins/common/tileit.c:429 plug-ins/pagecurl/pagecurl.c:529 +#: plug-ins/common/tileit.c:428 plug-ins/pagecurl/pagecurl.c:529 msgid "_Vertical" msgstr "_Okomito" @@ -2217,7 +2217,7 @@ msgid "_Blur" msgstr "Zamućivanje" -#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:383 +#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:432 msgid "Blurring..." msgstr "Zamućujem..." @@ -2338,25 +2338,25 @@ msgid "Ca_rtoon..." msgstr "_Opis" -#: plug-ins/common/cartoon.c:228 plug-ins/common/dog.c:246 -#: plug-ins/common/gauss.c:430 plug-ins/common/neon.c:222 -#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:203 +#: plug-ins/common/cartoon.c:229 plug-ins/common/dog.c:247 +#: plug-ins/common/gauss.c:431 plug-ins/common/neon.c:221 +#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:204 #: plug-ins/common/softglow.c:220 plug-ins/gflare/gflare.c:972 #: plug-ins/sgi/sgi.c:528 plug-ins/xjt/xjt.c:1673 msgid "Cannot operate on indexed color images." msgstr "Ne mogu raditi s indeksiranim slikama" -#: plug-ins/common/cartoon.c:807 +#: plug-ins/common/cartoon.c:808 #, fuzzy msgid "Cartoon" msgstr "_Opis" -#: plug-ins/common/cartoon.c:837 plug-ins/common/photocopy.c:867 +#: plug-ins/common/cartoon.c:838 plug-ins/common/photocopy.c:867 #, fuzzy msgid "_Mask radius:" msgstr "_Polumjer Zamućenja:" -#: plug-ins/common/cartoon.c:851 +#: plug-ins/common/cartoon.c:852 #, fuzzy msgid "_Percent black:" msgstr "Postotak" @@ -2522,29 +2522,29 @@ msgid "Colorify Custom Color" msgstr "Obojaj posebnu boju" -#: plug-ins/common/colortoalpha.c:105 +#: plug-ins/common/colortoalpha.c:104 #, fuzzy msgid "Color to _Alpha..." msgstr "Boja u Alfu" -#: plug-ins/common/colortoalpha.c:183 +#: plug-ins/common/colortoalpha.c:181 msgid "Removing color..." msgstr "Uklanjam boju..." -#: plug-ins/common/colortoalpha.c:364 +#: plug-ins/common/colortoalpha.c:377 msgid "Color to Alpha" msgstr "Boja u Alfu" -#: plug-ins/common/colortoalpha.c:389 plug-ins/common/mapcolor.c:424 +#: plug-ins/common/colortoalpha.c:402 plug-ins/common/mapcolor.c:424 #: plug-ins/gfli/gfli.c:835 plug-ins/gfli/gfli.c:898 msgid "From:" msgstr "Od:" -#: plug-ins/common/colortoalpha.c:393 +#: plug-ins/common/colortoalpha.c:406 msgid "Color to Alpha Color Picker" msgstr "Boja u Kapaljku Alfa Boje" -#: plug-ins/common/colortoalpha.c:407 +#: plug-ins/common/colortoalpha.c:420 #, fuzzy msgid "to alpha" msgstr "u Alfu" @@ -2866,26 +2866,26 @@ msgid "_Cubism..." msgstr "Kubizam" -#: plug-ins/common/cubism.c:267 +#: plug-ins/common/cubism.c:269 msgid "Cubism" msgstr "Kubizam" -#: plug-ins/common/cubism.c:296 +#: plug-ins/common/cubism.c:298 #, fuzzy msgid "_Tile size:" msgstr "_Veličina djelića:" -#: plug-ins/common/cubism.c:309 +#: plug-ins/common/cubism.c:311 #, fuzzy msgid "T_ile saturation:" msgstr "_Zasićenje djelića:" -#: plug-ins/common/cubism.c:320 +#: plug-ins/common/cubism.c:322 #, fuzzy msgid "_Use background color" msgstr "Koristi _boju pozadine" -#: plug-ins/common/cubism.c:410 +#: plug-ins/common/cubism.c:412 #, fuzzy msgid "Cubistic Transformation..." msgstr "Kubistička transformacija" @@ -3270,44 +3270,44 @@ msgid "Des_peckle..." msgstr "Despeckle..." -#: plug-ins/common/despeckle.c:420 plug-ins/common/despeckle.c:642 +#: plug-ins/common/despeckle.c:418 plug-ins/common/despeckle.c:640 msgid "Despeckle" msgstr "Despeckle..." #. #. * Filter type controls... #. -#: plug-ins/common/despeckle.c:446 plug-ins/gimpressionist/orientmap.c:616 +#: plug-ins/common/despeckle.c:444 plug-ins/gimpressionist/orientmap.c:616 msgid "Type" msgstr "Tip" #. parameter settings -#: plug-ins/common/despeckle.c:456 +#: plug-ins/common/despeckle.c:454 #, fuzzy msgid "Median" msgstr "Radijani" -#: plug-ins/common/despeckle.c:462 +#: plug-ins/common/despeckle.c:460 msgid "_Adaptive" msgstr "_Dodavanje" -#: plug-ins/common/despeckle.c:472 +#: plug-ins/common/despeckle.c:470 msgid "R_ecursive" msgstr "_Rekurzivno" -#: plug-ins/common/despeckle.c:496 plug-ins/common/neon.c:728 +#: plug-ins/common/despeckle.c:494 plug-ins/common/neon.c:727 #: plug-ins/common/nlfilt.c:1083 plug-ins/common/nova.c:359 -#: plug-ins/common/unsharp.c:694 plug-ins/common/whirlpinch.c:588 +#: plug-ins/common/unsharp.c:665 plug-ins/common/whirlpinch.c:588 #: plug-ins/gflare/gflare.c:2686 plug-ins/imagemap/imap_circle.c:278 msgid "_Radius:" msgstr "_Polumjer:" -#: plug-ins/common/despeckle.c:512 +#: plug-ins/common/despeckle.c:510 #, fuzzy msgid "_Black level:" msgstr "_Vrijednost crne:" -#: plug-ins/common/despeckle.c:528 +#: plug-ins/common/despeckle.c:526 #, fuzzy msgid "_White level:" msgstr "Vrijednost bijele:" @@ -3404,7 +3404,7 @@ msgid "_Displace..." msgstr "Izmještanje..." -#: plug-ins/common/displace.c:228 +#: plug-ins/common/displace.c:231 msgid "Displacing..." msgstr "Izmještanje..." @@ -3444,32 +3444,32 @@ msgid "Difference of Gaussians..." msgstr "Selektivno Gausian zamućenje..." -#: plug-ins/common/dog.c:222 plug-ins/common/dog.c:273 +#: plug-ins/common/dog.c:227 plug-ins/common/dog.c:274 #, fuzzy msgid "DoG Edge Detect" msgstr "Detekcija Ruba" -#: plug-ins/common/dog.c:294 +#: plug-ins/common/dog.c:295 #, fuzzy msgid "Smoothing parameters" msgstr "Parametri Kopiranja" -#: plug-ins/common/dog.c:308 +#: plug-ins/common/dog.c:309 #, fuzzy msgid "_Radius 1:" msgstr "_Polumjer:" -#: plug-ins/common/dog.c:312 +#: plug-ins/common/dog.c:313 #, fuzzy msgid "R_adius 2:" msgstr "_Polumjer:" -#: plug-ins/common/dog.c:324 plug-ins/common/normalize.c:88 +#: plug-ins/common/dog.c:325 plug-ins/common/normalize.c:88 #, fuzzy msgid "_Normalize" msgstr "_Obično" -#: plug-ins/common/dog.c:335 plug-ins/gimpressionist/paper.c:149 +#: plug-ins/common/dog.c:336 plug-ins/gimpressionist/paper.c:149 msgid "_Invert" msgstr "_Inverzno" @@ -3530,7 +3530,7 @@ msgid "_Emboss..." msgstr "_Reljef" -#: plug-ins/common/emboss.c:374 plug-ins/common/emboss.c:439 +#: plug-ins/common/emboss.c:376 plug-ins/common/emboss.c:439 msgid "Emboss" msgstr "Reljef" @@ -3555,7 +3555,7 @@ msgid "En_grave..." msgstr "Rezabrenje..." -#: plug-ins/common/engrave.c:181 +#: plug-ins/common/engrave.c:182 msgid "Engraving..." msgstr "Rezabrenje..." @@ -3984,41 +3984,41 @@ msgid "_Gaussian Blur..." msgstr "/Filteri/Zamućenje/Gausian zamućenje (_IIR)..." -#: plug-ins/common/gauss.c:407 +#: plug-ins/common/gauss.c:413 #, fuzzy msgid "Gaussian Blur..." msgstr "/Filteri/Zamućenje/Gausian zamućenje (_IIR)..." -#: plug-ins/common/gauss.c:460 +#: plug-ins/common/gauss.c:461 #, fuzzy msgid "Gaussian Blur" msgstr "IIR Gaussian Zamućenje" #. parameter settings -#: plug-ins/common/gauss.c:483 +#: plug-ins/common/gauss.c:484 msgid "Blur Radius" msgstr "Polumjer Zamućenja" -#: plug-ins/common/gauss.c:497 plug-ins/common/jigsaw.c:2456 -#: plug-ins/common/spread.c:378 +#: plug-ins/common/gauss.c:498 plug-ins/common/jigsaw.c:2456 +#: plug-ins/common/spread.c:379 msgid "_Horizontal:" msgstr "Horizontalno:" -#: plug-ins/common/gauss.c:501 plug-ins/common/jigsaw.c:2473 -#: plug-ins/common/spread.c:382 +#: plug-ins/common/gauss.c:502 plug-ins/common/jigsaw.c:2473 +#: plug-ins/common/spread.c:383 msgid "_Vertical:" msgstr "Vertikalno:" -#: plug-ins/common/gauss.c:524 +#: plug-ins/common/gauss.c:525 #, fuzzy msgid "Blur Method" msgstr "Vrsta Zamućenja" -#: plug-ins/common/gauss.c:528 +#: plug-ins/common/gauss.c:529 msgid "_IIR" msgstr "" -#: plug-ins/common/gauss.c:529 +#: plug-ins/common/gauss.c:530 #, fuzzy msgid "_RLE" msgstr "RLE" @@ -4339,20 +4339,20 @@ msgid "_Glass Tile..." msgstr "Djelići čaše..." -#: plug-ins/common/glasstile.c:208 +#: plug-ins/common/glasstile.c:209 msgid "Glass Tile..." msgstr "Djelići čaše..." -#: plug-ins/common/glasstile.c:251 +#: plug-ins/common/glasstile.c:250 msgid "Glass Tile" msgstr "Djelići čaše" -#: plug-ins/common/glasstile.c:282 +#: plug-ins/common/glasstile.c:281 #, fuzzy msgid "Tile _width:" msgstr "Ši_rina djelića:" -#: plug-ins/common/glasstile.c:296 plug-ins/common/mosaic.c:621 +#: plug-ins/common/glasstile.c:295 plug-ins/common/mosaic.c:621 #, fuzzy msgid "Tile _height:" msgstr "_Visina djelića:" @@ -5410,17 +5410,17 @@ msgid "_Neon..." msgstr "Video/RGB..." -#: plug-ins/common/neon.c:204 +#: plug-ins/common/neon.c:207 #, fuzzy msgid "Neon..." msgstr "Novinski tekst..." -#: plug-ins/common/neon.c:698 +#: plug-ins/common/neon.c:697 #, fuzzy msgid "Neon Detection" msgstr "Detekcija Ruba" -#: plug-ins/common/neon.c:743 plug-ins/common/unsharp.c:707 +#: plug-ins/common/neon.c:742 plug-ins/common/unsharp.c:678 msgid "_Amount:" msgstr "_Vrijednost:" @@ -5590,7 +5590,7 @@ msgid "_Scatter RGB..." msgstr "HSV _Raspršivanje..." -#: plug-ins/common/noisify.c:284 +#: plug-ins/common/noisify.c:285 msgid "Adding Noise..." msgstr "Dodavam šum..." @@ -5666,7 +5666,7 @@ msgid "Oili_fy..." msgstr "Slikanje Uljem" -#: plug-ins/common/oilify.c:188 +#: plug-ins/common/oilify.c:189 msgid "Oil Painting..." msgstr "Slikanje Uljem..." @@ -5811,7 +5811,7 @@ msgid "Photocopy" msgstr "Fotografija" -#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:513 +#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:509 #: plug-ins/common/softglow.c:687 msgid "_Sharpness:" msgstr "_Oštrina:" @@ -6496,7 +6496,7 @@ msgid "_Ripple..." msgstr "Umnožavanje..." -#: plug-ins/common/ripple.c:219 +#: plug-ins/common/ripple.c:222 msgid "Rippling..." msgstr "Umnožavanje..." @@ -6729,20 +6729,20 @@ msgid "_Selective Gaussian Blur..." msgstr "Selektivno Gausian zamućenje..." -#: plug-ins/common/sel_gauss.c:186 +#: plug-ins/common/sel_gauss.c:187 msgid "Selective Gaussian Blur..." msgstr "Selektivno Gausian zamućenje..." -#: plug-ins/common/sel_gauss.c:224 +#: plug-ins/common/sel_gauss.c:225 msgid "Selective Gaussian Blur" msgstr "Selektivno Gaussian zamućenje" -#: plug-ins/common/sel_gauss.c:256 +#: plug-ins/common/sel_gauss.c:257 #, fuzzy msgid "_Blur radius:" msgstr "_Polumjer Zamućenja:" -#: plug-ins/common/sel_gauss.c:266 +#: plug-ins/common/sel_gauss.c:267 #, fuzzy msgid "_Max. delta:" msgstr "_Maks. Delta:" @@ -6764,11 +6764,11 @@ #. #. * Let the user know what we're doing... #. -#: plug-ins/common/sharpen.c:315 +#: plug-ins/common/sharpen.c:311 msgid "Sharpening..." msgstr "Izoštravanje..." -#: plug-ins/common/sharpen.c:484 +#: plug-ins/common/sharpen.c:480 msgid "Sharpen" msgstr "Izoštri" @@ -6777,7 +6777,7 @@ msgid "_Shift..." msgstr "Pomicanje..." -#: plug-ins/common/shift.c:191 +#: plug-ins/common/shift.c:194 msgid "Shifting..." msgstr "Pomicanje..." @@ -6988,24 +6988,24 @@ msgid "_Sobel..." msgstr "_Sobel" -#: plug-ins/common/sobel.c:226 +#: plug-ins/common/sobel.c:227 msgid "Sobel Edge Detection" msgstr "Sobel Detekcija Ruba" -#: plug-ins/common/sobel.c:248 +#: plug-ins/common/sobel.c:249 msgid "Sobel _Horizontally" msgstr "Sobel _vodoravno" -#: plug-ins/common/sobel.c:260 +#: plug-ins/common/sobel.c:261 msgid "Sobel _Vertically" msgstr "Sobel _okomito" -#: plug-ins/common/sobel.c:272 +#: plug-ins/common/sobel.c:273 #, fuzzy msgid "_Keep sign of result (one direction only)" msgstr "Zadrži oznaku rezultata (samo jedan smjer)" -#: plug-ins/common/sobel.c:358 +#: plug-ins/common/sobel.c:359 msgid "Sobel Edge Detecting..." msgstr "Sobel Detekcija Ruba..." @@ -7330,15 +7330,15 @@ msgid "Sp_read..." msgstr "Rastezanje..." -#: plug-ins/common/spread.c:179 +#: plug-ins/common/spread.c:182 msgid "Spreading..." msgstr "Rastezanje..." -#: plug-ins/common/spread.c:345 +#: plug-ins/common/spread.c:346 msgid "Spread" msgstr "Rastezanje" -#: plug-ins/common/spread.c:363 +#: plug-ins/common/spread.c:364 msgid "Spread Amount" msgstr "Vrijednost Rastezanja" @@ -7637,7 +7637,8 @@ msgid "_Tile..." msgstr "Djelitelj..." -#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:321 +#. Set the tile cache size +#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:320 msgid "Tiling..." msgstr "Djelići..." @@ -7659,45 +7660,45 @@ msgstr "Svi dijelovi" #. Get the preview image -#: plug-ins/common/tileit.c:364 +#: plug-ins/common/tileit.c:363 msgid "TileIt" msgstr "Razdijeli" #. Area for buttons etc #. Flip -#: plug-ins/common/tileit.c:407 plug-ins/ifscompose/ifscompose.c:628 +#: plug-ins/common/tileit.c:406 plug-ins/ifscompose/ifscompose.c:628 msgid "Flip" msgstr "Zrcali" -#: plug-ins/common/tileit.c:455 +#: plug-ins/common/tileit.c:454 #, fuzzy msgid "A_ll tiles" msgstr "Svi dijelovi" -#: plug-ins/common/tileit.c:469 +#: plug-ins/common/tileit.c:468 #, fuzzy msgid "Al_ternate tiles" msgstr "Dodatni djelići" -#: plug-ins/common/tileit.c:483 +#: plug-ins/common/tileit.c:482 #, fuzzy msgid "_Explicit tile" msgstr "_Eksplicitno dijeljenje" -#: plug-ins/common/tileit.c:489 +#: plug-ins/common/tileit.c:488 msgid "Ro_w:" msgstr "_Redak:" -#: plug-ins/common/tileit.c:513 +#: plug-ins/common/tileit.c:512 msgid "Col_umn:" msgstr "_Stupac:" -#: plug-ins/common/tileit.c:565 +#: plug-ins/common/tileit.c:564 msgid "O_pacity:" msgstr "_Neprozirnost:" #. Lower frame saying howmany segments -#: plug-ins/common/tileit.c:574 +#: plug-ins/common/tileit.c:573 #, fuzzy msgid "Number of Segments" msgstr "Broj _dijelova:" @@ -7849,16 +7850,16 @@ msgid "Unit Editor" msgstr "Urednik Mjera" -#: plug-ins/common/unsharp.c:149 +#: plug-ins/common/unsharp.c:143 #, fuzzy msgid "_Unsharp Mask..." msgstr "Skini oštrinu maske" -#: plug-ins/common/unsharp.c:493 +#: plug-ins/common/unsharp.c:468 msgid "Merging..." msgstr "Stapanje..." -#: plug-ins/common/unsharp.c:664 +#: plug-ins/common/unsharp.c:635 msgid "Unsharp Mask" msgstr "Skini oštrinu maske" @@ -8971,19 +8972,19 @@ msgid "_Zoom:" msgstr "_Zumiraj:" -#: plug-ins/gfig/gfig-bezier.c:452 +#: plug-ins/gfig/gfig-bezier.c:448 msgid "Closed" msgstr "Zatvoreno" -#: plug-ins/gfig/gfig-bezier.c:457 +#: plug-ins/gfig/gfig-bezier.c:453 msgid "Close curve on completion" msgstr "Zatvori krivulju na kraju" -#: plug-ins/gfig/gfig-bezier.c:462 +#: plug-ins/gfig/gfig-bezier.c:458 msgid "Show Line Frame" msgstr "Prikaži Linije okvira" -#: plug-ins/gfig/gfig-bezier.c:467 +#: plug-ins/gfig/gfig-bezier.c:463 msgid "Draws lines between the control points. Only during curve creation" msgstr "Crta linije između kontrolnih točaka. Samo tokom izrade krivulje" diff -uraN gimp-2.2.0/po-plug-ins/hu.gmo gimp-2.2.1/po-plug-ins/hu.gmo --- gimp-2.2.0/po-plug-ins/hu.gmo 2004-12-19 03:34:23.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/hu.gmo 2004-12-28 16:59:06.000000000 +0100 @@ -1,387 +1,394 @@ -= -R P *4 $4 JX`1p" .*O"z "&#F$j -'VQkt   -  -'/ -DO dqw 0@I)` L0P l:<C6$zG'&N}n&"6Sd%s - 2:+B nx% <)R1  21M $A] o }  - -6 NXk} - / ; -H -S -^ -i t3 $):LRbs    + 7EM Q]dir #'+19B Q] -n y  "?_x$2#/''W$&J&S'z - - -*F(d hh0)'#44D(y)'l*a55,*%P4_  $4&[ cp'63F$z7U-4 -NY_q   -$/AJR Xfw - *8 -J@U  - -3<Raj|    ($4Yj+4) 2<+EqA  )-6W -& -(+-!Y{& # #=1a#&/>G8!3 :HZ<l|'& N ?n  - 9   - - ! -- -> - Q - _ -k - - - - - - - - - -   * ; L h  -q  |  -                 + 5 < D U e u  {          * = Q yg  $  &05f my  !7F] f r -~      - "/ 8F[c ~4 - -  " 3? -Q \hq  20=1?=q/  + ?`p(B  O[v  %4 FSY^ -p{  :,< COc)x/#2+)Us "'4 '1Yx'2Zm9N)5._-' # DW]l}%2 #  0$Q v116%'\  '<Qgls -   ) G "M p x      6  ! -!!,!K! ^! l! y!!!!!! -!"! ""&"+" -:" E" -S"^"t"z"""" "" " """" ## # # # #g#H$W$ i$v$$ -$$($)$% .%;%A%S% Z%h% -y% %%%%%%%%% -& &&0&6& ;&G&\&r&{&& &&& &&&' ' #'0' ?'I'O'a't'{''' ' ''' '' ' -((( ) )-)1) -C) N) Z)f)k) q){)-)))))2 */@*Bp*=* -* *+ #+0+ B+P+_+ -n+y+ + ++ + +++$+3 , ?,`, d,r,,,, ,, ,,,,--'-;-A- -G- R-_-o--- -n- .Y.v.f/\/CG00 000000 -0 0 0 11"21 U1a1y1 1111 1K182L2U2Z2n2v22 2 2 222 2262 (323 J3W3 j3(3*3 33 4]4 l4x4|44 -4 4444 4555!555 F5T5i5m5r5 {5555 55 -5 -5/5`5Y6 ^6h6 n6 z6G6B6N7I^777777777778%8$;8%`8$8%8$88899,9=9P9b9g9p9 w9 999 9999 -9:: 6:D:V:k:: ::::: :; - ; ;#;9;Y; -k; v; -; ;;;; ; ;; <<&</<7< @<J< Y<<f<%< < -<<<'< #=D=T=l={= = == =====> ->>(> /><>T> -l> w>>>> -> > >> >? -? ? $?0?7? O JO VObOyQ8QQ QQ+QR $R1R@RTR\RmRR:R'R R SS,S=S]S lS zSSSS S SSS TTT0T 4TBT$GTlTpT -TT T TT -TTTTTTT U -U U'U/UEUbUvU}UU UU U U UUUVV 0V -[ T[b[[[ [ -[[[ [ -[[[[[[ [ \ \\\ 6\B\K\g\\\ \ \\\\4\!%]G]W]f] {] ] ]]]] -]] ]] -]] ^^#^3^D^;L^ ^ ^ -^^^^ ^^ _#_ -3_>_ Z_g__ _ -___ ___`*` G`S`d` ` ``` `` ` ` ` a a a0a CaOa ^a ja wa a a aa*a aa bb .b -:bEbXb/hbbbbb b b b bc c"c2c;cDc Mc.Wc'ccc c ccc cc dd,d Ddeddddd d d d+e,e2eHe -Oe Zegeyee eeeee e f f -f*f;fTfnf#fffffg0gIg]hg]gf$hhh h h#h?h%i:iRimii)i%i<iE&jlj j j jjj/j*kC+kokk+k!kk'l:lCl ]lkl|l ll lll ll llll m!m 3m!?m#ammmmmmm -mm n -n#n 4nBnZnon~n -nn -nnn nnnnn -oo o(o>o'Novo|oYooo -op pp'p?pWp -lpwp p pppppppq qq(q AqNq/jq-q/q q r r$r4r GrQr -`rkrrrr rrrrDr'@s@hs ssss sst -tt+t2t ItVt\t ct qt~tttt t t ttt -t7u@u HuZUuuuu u -u u u uv v)v=v(Cvlvvv v -vvvvv vv w -!w,w Cw Qw]wdw lwvwwwwwwwwRw&PxwxxZxSyUypy5y+yFy4z0TzMzEzP{Kj{{>{<|7M||}~!9~[~z~.~)~%~Q)j&/]3&0'4Xp~0=%,@!0JG )DŽ -   .;-M{ ą -ͅ ؅   ' ,6Q co   ߆ 9RX\d ~o{ ƈ%#/+[ d q~&ډ  -$3 B NZxFӊ,,YQj: 2*D o}ʌь׌ $3ET dpx -   ō Ӎ RP?!ҎjƏA1$s=.֐--3af -~  Unm},8A[s ѓ   &%B%h[ -06<AFMUS^C:F1xږ  ) 9 C MW iu| Ǘ Зޗ & 0< -N Y gq x - ɘܘ   " ) 7 A -NYbsz  ʙ -Йۙ (!JZ b n|  -˚ ֚   ". -6A Zhy - -ěϛ؛  '3:APi{ ʜ М -ڜ  )FO ^ lv ~  ĝ͝ ӝߝ  -5 @ NZ mzĞ ɞӞڞ(  ,9? P\ d -p{  -͟)&,1:KQayˠ ڠ 7 -FQZ p ~     á ̡֡   -&: N -Zeu { Ƣ -΢٢  - *7F Uaqz  - ģ -ѣ ܣ -+;PY b pz    ˤդڤ  -! * 7 -EP V -bms | - ԥ  -   )6L[lt צ% 1; M Y eo w  ǧ ݧ  '0@H -Q -\gy 8 ͨ -٨   '/6 -EP V6c  ˩ܩ  % ;Ih-  Ϊ   # -4?ENT ] j w    ë˫ѫ   -( 3=FY ]g -x  ׬-"(-<L[ k(x ˭"ϭ   * > -H S -]h p z ήخ ܮ  -!0:E - -Aǯ4 >Vp ' ˵  ?,l'ƶC8G#!#Ʒ  .,J/w0 ظ/X{m  - * IVmv  - ̺ Ժ$ ! 9FOfox$)Ż5P dp2+bg*)ʽ.W#{8;0+\14,;h- G$h& ! 1;W"v - ->  , 4!@bgw }X N;M`g| PFF2#4KJi   * FSY _i r#~  +A9{   - -% -0 -;F_ -rD}   '16H^dt +< K -W b o { -  -  '5&Jq*  -+1B -Ze -lw57 )-J,x&W,$JQ27(501fc,() R ^kt  $='&>N i++(E@n@23#5W51CgC//O?l 76 -L<W - -/bE1#JBGet} -F` w - $ 4> ^? /M`gw -  -19 B N\ e q ~  02H-cS -"& = -I -T%_/K  $%.Tm0; -' H$a - 3-+!)3K(+.+,/8\4:/56Uc-(LV- /XI=.+T;v,!Dfz!$# -=H\en!$ -%0!Oq   -     -'@ -I T `n} #3=$q,'!$<&cl$8Ur  4 I#Sw  .63S  -      '7.G4vA56#0Z"!1N(mN<E0b & '#,P `l{ %%%E"`3G #0AT6p?0C@\  / &<1c3C w 8  ;!\~)*#82k*)Wa.;5&?),i) *28Hk G.,E[ T C*&nJ-#$H` -x  -&+3$Ns - 0) F/  -v      -  ; , -B -!K -m - - - -! - - - -  +,  X e x      -      -   )  -1 <  -B "M p   (      --14_ -    ;Vq / - LZx&%$9 ANev  =Kc tS   & 2 > -K V bn+ -";<QNO -- 8 Ef|   - *4(P8y* . -I T am76 S _ m zv[' pI c mz -  & 9C] w)l q          !!/! 6!B!CX! !! !!0!:"<M" "&" "]" %#1#5#E# d#n#~########$7$K$e$i$n$ v$$ -$$$$ -$ $:$p$n% r%|%%%H%H%F8&F&&&&&&&&&''&''7'(_'''('''(( *( 6( C(Q(b((((( (( ((((- )'9)a)x) )%)))(*"-*P*g*}**** * -* + -+'+/F+v+++++++ ,&,9,H,],n,, ,,,,,>,%,- R- -\-g----*--,-'.@.Y.q....... / -/&/:/ B/O/g/ -/ //// -/// -0(0 -;0F0V0g0w0000$0001X1x1 111 -1 11122!2 T2a2%222#22233'3":3 ]3k3 33333 344$(4M4^4p44444!4!4515C5 -W5 b5p5u55 55555 56 -6`6 t6666 66!6@6:77r77B7777778C8a8 r88'888389,9$H9m9 -9 -99999999 : -:$:!;: ]: ~: :: -: ::.; 7;A;]; m; y; ; ;-;;;;<<*< -><I<([<<<<$<,<(=@=P=Gk=== -== >>/>7>?>S>\>d>z>>>> >>>>>>??&?</?$l? ? ??"?@ -+@6@ -:@E@c@k@ @ @@@$@@0A2A;ALA`A vAAA AAA A3A"B +B8B SB_B{B -BBB#B)BC C %C/C>CFCOCeC}C CCC C<C DD*D3D8D ?DID bDoD"DD DDDDE EE(E1E8E @E NE \EnjEGIG 9HEHTH)mH -HHHHHH!I&&IGMI@II I -JJ(6J_JrJ J JJJ J JJK 'K -1KxT"T'T -U& U 4UA@U<UUU -UUV +VLV[V `V -lVwV }VV VVV V VV V V W WW =W JW'TW'|W&WW W WWWXJ*X!uXXXXX XX YYY 2Y >YJYSY$ZY"YYYYYYAY%Z4Z CZQZmZZZZZ4Z [*[E["][[[[[[[%[%"\H\7`\\\#\\\]+]?])W]]]]]]]^.^F^a^y^^^^^^7_>_%T_$z______9`K`e`z`` `` ````aa&a6a Fa0Sa(a a aaaa -b bb.bLbdb-~b'bbb4b.cDcScicVc-cd !d-dAdVdudddd(d -e%e:ePeeezee"e$ee;f&Kf!rf!fff7f(,gfUgmgp*h!h h -h h4hRiiiii$ii0i0/j6`j-jjjjkk'%k0Mk-~k`k l-l4Al)vll<ll'm*mBm ]mim}mm mm m mm m nn'n=n Tn`n|nnnnn*o-,oZopooo$ooo p3p1Op pp -pp p -pp ppp -qq q'qCq(^qq qqr%r ->rIrOrdryrrr -rrrrs ss0sNsms -}sss sss7s.0t=_t t tttt -tu u!uAu Zufumu|uu u=u!vE0v vvv vv v$vvvvvw "w/w6w?w Tw`w vwwww www +&.3Of ~  +!,>O _ k +x + + + 3 !'7>MTYj|   ' 3AGL [ gu}  /JNSW[air  +    +"B?[$2 #?/c'$&'JD&' + + +!,C*W( hhl)'#'4K4()'l0*55,4*a4  $AY4b 'Jr3$7Uip +  '9M +`k}  +":Q ft +@  + +$/FYox  " 6 CP d$p+4&?Se nx+A"+ 0 <JY)i6 +& +.9(@+i!& #4 X#y1#&:/S>8@]o v<|'b  ?  + 9  / += +L + ] +i +z + + + + + + + +   1  +M  X f w    +   +          /  ?  K W  g q x            ! 6 N f y  y  $)N Vb0q   !'@Ws   +     '1F ^k t 4+ +2 += H T^ o{ +   20 ==1{=/ -: C+O {('7BH   +5 Sap  +  :Yhx )/#22+e "'%M4 #5N'm 'CV'n9N")q.-' ;#\%2 !/A#H l$ 11A6a' +  '49Ncx  +& 1  D P )Y  "       !6!I! +]!h!! ! ! !!!!!" +""!" D"P"b"g" +v" " +""""""" "" " "##*#E#L# # # $ $g$$$ $$$ +$$($)&%P% j%w%}%% %% +% %%%%%&&&1& +@& K&Y&l&r& w&&&&&& &&' '';'P' U' _'l' {'''''''' ' ''' ("( 3( +A(L(S( Q) [)i)m) +) ) ))) ))-)))*3*2I*/|*B*=* +-+ 8+D+ _+l+ ~+++ +++ + ++ + ++,$",3G, {,, ,,,,, ,, ,,---?-R-c-w-}- +- ----- -n-I.Y.v+//\&0C00 000011 +!1 ,1 81E1T1"n1 111 1111 2K(2t2222222 2 2 22 +3 336-3 d3n3 33 3(3*3 4%4 @4]J4 4444 +4 445(5 /5<5B5K5]5q5 55555 5555 55 +5 +5/6`466 66 6 6G6B7NK7I777778888 8/8A8%Q8$w8%8$8%8$ 929:9C9T9h9y99999 9 999 99:$: +3:>:V: r::::: :::;&; 7;C; +H; S;_;u;; +; ; +; ;;;< < '<5< E<Q<b<k<s< |<< <<<%< = +==0='7= _===== = == =>>%>->?> F>P>d> k>x>> +> >>>> +> ? ?? 3?A? F? R? `?l?s? x??? +???0? @ @#@;@ +S@ ^@k@@ @+@ @@@ +AA4AOATA\A dA rAA AAAAA AAB B B'B =BKBSBgBvBBBBBBBB C C#C(C7C ?C +KCVC_CnC wC C CIC CCCDD +!D,D:DD0D +DD.DDDDEE$E 5EVEiEyE EEE*EEF5FUF qF{FF FF FF FF FF FF +G)GHGgG{G GG%GGG +GG GG H H*H;H QH[HoHxHH HH H HHH#HI-I6I7JIII II II III JJ #J1J8J GJ TJaJiJ yJ JJJJ J J J2J K%K@K[KnKK KK K +KKKKKL L +L$L!|<`|7||}m~!~~~.~)%BQh)& (/3݀&8X0w4݁p~=%=,c!^J ) +AL[ `n ~-˅܅  + ( 2<DM Q^d mw |  ֆ   /J h ·o{_ۈ +17%>ds/{  Ή&*3RY +it  ȊۊF#j,|Q: G\n* ͌!'7G\mt ȍ؍ +    # 0R<P!"6I`hjA$Ð=.&-U- +Α ّ UnN͒,29>F8XÓۓ  !0? N\ _&k%%ޔ[ Wdin}SC:FFȖזږ*3 Q]ejy    ŗ̗ޗ  .?O_ v  +   Ș֘ߘ + , 5BKP Y er y   +Ùʙٙ   + + :HQa(q  ̚՚   + &2 8BT]c r~ + ɛ +؛ +(8HW m w˜   +* 5CV^py  Ɲ Ν ؝  #/@HQW\dj +   ʞڞ #*>(F o |   +˟  +0)Lv|ɠР  *8=DJYh +  Ρ ڡ     & = GSc +kv  +Ţ ˢ٢  +)9 NX +o z ʣ ң +  +! ,9J +S^g{  ʤ Ѥۤ   %*;@ Q^ +fq z  +  +å ̥إ + $0 7 +EPY m yĦԦ  '5%>d     ǧ ԧާ  - 7D T`hw + +ɨѨ ڨ8  +)4 H T bnw + 6  ,4 ;I[u -Ѫ   2: MY is +   ǫ ѫ ۫   !3 9F ]g +x   +Ȭ Ӭݬ  +'8>-Drx} (ȭ "BK\ a nz  +  +  ʮ׮  ( ,: IW +fq:Я + +A4Y ٴ'  2 LYa?|'۶5CS8#з!# :F _.k,/Ǹ0 (/4Xd{ 9E +e pz ƺϺ޺  +  $0$? dq Ȼѻ$)?Uk 2ּ+ 5bTн*).DWs˾8;?0{4V,-i $&  3@Xq " + +> > J,W ! X 2N< 8PEF2#FjJ  8 FPVf lz   # )5M` {A )7 HR +j +u + + +D %2A HV^ w 3C T`i{  +    +  +,E V w&*  ( 8F +^i{ + +517Q -,&W,,J27/(g51c,\(    $-=H'>  %E+M+y(@@2P355CC /O/? :N7^ +< + + +/E 1QJW!(>F O]} % +7 BPn  ?0p +% @ +NYs      ,: S0a-S +E"Ps  + +%/K+ w %0;.j'$ + 3-/+]!3(+.4+c,84:*/e6cPh-L-1 IVuX=.@+oTvy!!)$?d#y +! 2H$` +!  * +4 ?K R ` n +| +   1Bb#y3$,#;Wt';!?$a<$&=\{  "6Nh #  +!5JR ky3  +   %2L U _l.4A 5M60%">a( +7NM0 &  GU'd#  %.%Bh%"3G_p 6?0GCx@ ' CP/l&13  8A z !)*'R#n8*) W6a;5,&b?,) >S\u 2H )<GD.E T couC&J-@n# +  +2Ng$  +   / ; 0X  F  +    + + + +6 +A +;P + + +! + + + +  ! 8  H V k } +        +  4 ; K  +R ] o   +   + "    (+>R[(:Q +p{-4 + (9@Oa h t  /-]f oy &8N%^  (.?Od |  SF Zhl    +  + +"AY;u<NO= +   0< N\cjz (8* =G^w +  7;Xv    '0N[kpIy   +% 0 =J\&r  ) + J ld    !!!3!H!W!i!z!! !!C! ! +" "-"0A":r"<" "&" #]'# #### ####$$/$5$>$Y$y$$$$$$ $$ +$$$% + % %:"%p]%% %%%%H&HO&F&F&&','2':'B'J'R'Z'b'v''''('''(('9((a( ( ( ((((( )) ) ) 4)@)F)[)-k)'))) )% *1*K*(d*"*****+9+ Q+ +^+ i+ +s+'~+/++++ ,,1,P,i,,,,,,, ,--!-8->M-%- - +-----*.>.,Z......//0/G/Y/ q/ +{/// /// +/ //0'0 +/0:0U0j00 +00000001$1@1T1h1X11 112 +&2 12>2V2n222 22%233#53Y3^3g3p33"3 33 3 +44 494 U4b4t4$444445 +55!75!Y5{555 +5 5555 556.6?6 T6`6 +h6`s6 6667 7%7!47@V7:777B73898A8J8\8n8C}88 88'89-93=9q99$99 +9 +99 :!:1:A:J:Y: m: +y::!: : : : ; +=; H;V;.h; ;;; ; ; ; ;-;+<:<P<e<z<< +<<(<<<=$%=,J=(w===G=>2> +A>L>i>p>>>>>>>>>>? ?%?4?C?L?P?`?}???<?$? ? @<@"V@y@ +@@@ +@@@@ @ A A A$2AWA0sAAAAA AAB BB)B 9B3FB"zB BB BBB +C C!C#5C)YCC C CCCCCCC DD*D 3D<@D }DDDDD DD DD"D!E 9EGEWE\EtE {EEEEE E E EnEKHIaH HHH)H + II'I?IZIbI!vI&IGI@JHJ [J|JJ(JJJ J K"K7K MK ZKdKK K +KKKKKXK7L;L +MLXLaL.}LL +LLL L L MM/M +7MBMIM'QM1yMM MM!M-N=N.ZN NNNNN) O7OIO ]OgOmO|OO*OOO,O"P;PWP uPPPPPPPPPQ;QVQeQQQQQ%Q R!R4T")U'LU +tU&U UAU<U1VNV +dVoVV VVV V +VV VV WW W (W 4W>W YW gW uW WW W W'W'W&X=X OX \XfXkXXJX!X YY0YCY RY_Y wYYY Y YYY$Y"YZZ,Z^V^n^^^^^^__1_I_a_7x__%_$_`,`G`V`o`9````` aa $a2aCaZaraaaa a0a(a b ,b9bKb]b +rb}bbbbb-b'cFcXc4kcccccVc-Hdvd dddddee3e(Se|eeeeeef"f$=fbf;f&f!f!g(gGg7fg(gfgm.hph! i /i +{C{ -K{V{k{{{{ { -{){n{+i||%|R|o}}})}/}@#~d~;~O~;NJNE9@9z!)(Kt."݂$U%%{ *11D d&I!8G$؇,4*"_U, - %-3 akʊ<  --8'U } Ëȋϋԋ -  5 FRg~  '"%).Xksw4*ߍw$ ?%Lr,ˏݏ.  +;5q"!Ɛ3 ;0E v - đБ#ߑ!%D*cJْ;/`OM!=W9vƔ&.GZp  ͕ݕ ) -8C J VdSzSΖ " -, -7B Hi×T41;>B6Ay ǚ F$k: AK-f R&:Wr ȝ ֝   36S5ƞ̞s Xfk p~v@&8gQ  -) -4? Xf~ -& ڡ  %5R -Y dr z Ȣ   '4 MZb q ~   ͣ - -   '5<N`u äҤ  - "@Qf%}7ۥ  - - ) B -P[l {     ͦ   .;T eo  §˧ݧ" #-<L]} èۨ  .@U] p'} ԩ  &/ 6 D N \h -y  Ϫ  $ -= -HSk  ëͫ -D 3A S]m |  ʬ Ь -ܬ87 pz֭ݭ - #0Pg }$  ;IY `j { Я  !'I -i -t Ͱְ4G\y ˱ٱ & @J_ -q| IJβ  " 6 CO ^  ϳԳ -.6ev - -  δ% =IO^ o|͵ - !4 -JUj '"̶!! 1 =J` x    Ƿ  - $0?G W a m z D  +;Z -kv }  Aȹ - +9 MYv $Ⱥ#>7b Ļ ۻ  -DS[ dq  Ƽμݼ    !)1O` p -} - ѽ -޽ -  !. N[]+bȾؾ&  '.4 CHM ȿԿ 1?H@X  -;L;d    "aA  ! Ny5 c) 8\+ p `93D=WF 5u.( ^be Q } NW74Kw <6% ^OIb; V6inwd)' - -;8 l#6' -?& {6 Zn7t }S`d ZT  T w\mr ?  <9 $-  7:Y`yE1n568S, -(N&P;c_ u)zivf 6Bj Wu,Id$ wk<] m: [g o\ -c|v7zPc - LS)  Z] ? 9fPGwFKafp o &q -bxJcMe= 8 v - ae kl>  p"&Bt[s -Z]Hr` A'@"  XrC" -84>. B*] -@ &O A2?\h6 - @ k + IXRUNKAZ \RREsJ%p8K1zR~  - C  -zD Y. + Y 1f$ plQ b# -Gq CX -VZ>"$CnrpE0 U,z= -A${h xm^ !r FykH .3Y '^{^ks_1O f !,| tn" -Ndu($ - 5 t:d  X Ic! -bJz 1"'IL 0 m@X#~<GV.e?\k% n!%` f/ -,s2 #3< eJ?}i:q3x `_ %U*Dw= -2Eg],7 JQ{ D R  (  -= l8 B'v %6cWyV rd*0W P>  #_i  @q2 - d z%PN-(Rq5 ?2 -lh . 4 :) # v~Vp!-xa p -,  :L ]eZ=! KO \ _m -Fj 8R3oS YE >H 7 :OS c`yj  L J -23!V }jC\(8 -DP Xe.0 -\gvi - -*+ -M, j i -2=F -& /  *'S Hh =J YX -,VUM NSQQ)$ b k&04$h0Ow< z) -,E;Z-I|+%t  tp ]o o* %n 9 !{EsSi.aPMBH1 -0 &G > 05Wh+UCt[JUHu^4 |0<6 -R{ B jC (|I3 )- "~PY .4 -< d 9 -K ;f l h2N_ -   -vLlL4Q!m x+W QSyo u H   |0t g Mv >H|=c*7 - ;9 9x /]j7[7huu -#  $&L F7|,g)1 -[> }xZ -k'mnjmG( -gIk9y_;FU5/`so~< -sQ    ^ |$ * -  -m i K x< :~E(` "f: -R - M# fVk-qGV'Y: -G j& -}~Tj 55Tq b -5 -o-Dn  -5 rJ[ O { Cz628rD4u -g y A~ >Bab3 ? A  -Yd@$Ws =% - E -4F[ -+D l _C1b_I Aws/9mM[ne F#. -_  T / '}rWYgaDA1w ?/IO )qKJN{~i/;  8 -Lo] 7M oG3 - #2\<p( lr^0 -ag * ( ?Mfx;; --}{ qE9Pa L  -Ov Lv"TGDR}| h - - >K2. {"3H ^WgTyX Q % Sh^Ts@ } B;F[4TK~!iBM B A/lGeq ]N &@O*tb =c ' zdV4 - +/wU U+#: - -teZ XHQ * -1@  [ + 1 ) UTXyPu 3`/ -@a9Cx6 +qq 0q +:qEq MqYqaq |qq qqq(qq r rrr +rrrrrs!s +9sDsXsasus{sssss +ss t t}o}~~);~/e~@~~;~O0;NN ZEl99&!(. "O$rU% 2S*'1R1 օ&I!h.G$J,o4"щU ,_ + - ӊ݊ (<<U  +'Nj   #-5:AF +\ g t Čٌ  ('/"W%z)ʍݍ4*&Q %,=O.`  ;""!8Z3y 0  + ' 6B#Q!u*ՒJK;e`M"p!ɔ9"8Tr̕ # 1?OX ly +  Ȗ֖SS@  + + ۗ %5T1;->iBA -9Wf vFݛq -؜ !R2&ɝ : H Vd{~36Ş528>sV ʟ؟ݟ  v!@8٠Q dru + + ʡء +&% L V`i Ģ +ˢ ֢  :W r   ̣ԣ     #-? +R +]h o { Ҥ  %5D S] +w "åإ%7M h +t +  +¦ͦަ     % 1? U bp Ƨ ק  ! (4=O^"r Ϩ )5M co wǩϩ ' 3 FR Zd     Ϊڪ +  + AR er  + +ūݫ # 5? +UD`  ŬϬ߬   .< B +NYo8  .HOa + ®ٮ $0Un  ˯ үܯ   &B S` u! +۰ + +?Haqxα, =K _kt Ѳ +' 6@Te ~    г  +0AFYh +x.״ + +  0@Z%j е !?\ +r} +Ƕܶ '">a!q  ҷ   # - 9 Zdx +  ɸ Ӹ ߸  %D/ t ̹ +ݹ  & -A: |  ˺ ($:_z#7Ի 6 MW jw żͼ ּ  %8@O c p~ ҽ  + +"3 C +P +[fjrv   ;Ͼ+Ծ +:J&Y   H%* :F]n @ ' 9EMav ;&. 6 CPW + %dD  $ N|5d," 9_. s c:4G @ZI 6v1 )abeQ  QZ:5Nz=7( ^RJc> V9jozg,* +<; m$9* +@) |7[n8w ~Tcd ]W  U z]n"u B ! ?<'0 8=\c|F2o898V/ ++O'Q<db x* }lyi 6Cm Xv/Jg% xl=` n; ^j p]  fv8zSd +!M V) +  ]` B 9gQHwGLdis r!'t eyMcNf@ 9 y + bh nm> + q#)Cw[t +Z`Isc A*A%  YsD% ;7A/ E-` +C &R D3B\i9 + C n . L[SUONB] ]RUHtK(s9L4{U  +  F +  +{G + +\1 , \ 4i' slT e& +Jt FX +Y [A#%CquqF1 V-}@ +B'|k {na "u Gzn K 16Z '_|alv_4P# i "- wo% +Qgx)' + 6 u;e  [ Jf$ +cK} 4"*JO 0 pAY&=JW/h @] l( q $ &a g2 +/v!5 &4? hM?}j=r3y c` &V+Dz>  +2Fg^-: KT~ G! U  )  += o; E*w &7fW yW se+3X PA  $`l  At5# + g {&SQ.)Ut8 +B5 +mh / 7 ;, & wYq!0yb q +/  :O ^h[@$ NR _ bp +Im ;S4rT \H AK 7 ;PV fa|j   O J +36$ Y kD_+9 +ES [f11 _jwl + + ++. +P/ k j +5>G! +) !2 " * (V Ik!>M YY +,YVN OSTR*' e n'37$i3Px= }, +-H>[-L,(t  us ^r p- (q < ${HtTj/aSPBK4 3 )J A#16Xi.VFu\KXKva4 |1?9 +S| E kF +}L6 *0 %QZ 15 +? g < +N >g o! i5O` +   +wMoM5R"p y.Z "TTzru I  3u j Py ?H}>d-: +<: :{ 0`m +:\:kxv +#  %)O F:}/h *4 +^?#~x] +n(pqmmG+ +hLk<|b>GX60av p? +vT +   a }' -   +p l N {< =F+a#i= +U 0 N$ gW +l0rJY*Z=" +H k) +~Tm 88Uq e +8 +p.Eo  8 rM^ O !~ D{73;uE7x +h | D ?Ebc6 @#D  +Ze@%Xv @( + H +5I^ .G o bD2 cbL Bxt2:nM\qf I&1 +`  W 0 (~uZ\jdGB1z @/IR #,tLMQ~l2;  ; +Mo] 8P rJ6 + +$5_?p( os_3 +dj - + BPf{<> +.~~ rE<Qd L  +Py Oy#UHE S k  +  ?L3. ~%6K _ZhWz[ R % Vk _UsC  + C>I^7WK"iEN C D0mHhr ^Q 'AR+we @f ( }eW7 + ,2xX X,&= 0 +wf] YIR- +2C " \ +2 , XW[zSx 4`2 .Cb<F{9 Copyright (C) 1997-2001 Michael Sweet, Robert Krawitz, and the rest of the Gimp-Print Development Team. @@ -408,7 +415,7 @@ No image height specified'%s': No image width specified(None)1 Plug-In Interface1 Procedure1 bpp, 1-bit alpha, 2-slot palette32 bpp, 8-bit alpha, no palette4 bpp, 1-bit alpha, 16-slot palette8 bpp, 1-bit alpha, 256-slot paletteA bailout-value for adaptive selectionsA less-obsolete creation of Adam D. Moss / adam@gimp.org / adam@foxbox.org / 1998-2000A unit definition will only be saved before GIMP exits if this column is checked.ALT TextALT te_xt: (optional)ASCII artA_boutA_daptive supersamplingA_ddA_dd borderA_dvancedA_llA_ll tilesA_lpha-weightingA_lpha:A_mbient:A_mount:A_mplitude:A_ngle:A_nimateA_ppendA_uto update previewA_utomaticA_verage under brushAbbreviationAboutAbout Gimp-Print ActionAd_vancedAdaptiveAdaptive s_upersampleAdd Additional GuidesAdd FractalExplorer PathAdd new smvectorAdd new vectorAdding Blinds...Adding Checkerboard...Adding Noise...AdditionAdditional InformationAdds a shadow effect to each brush strokeAdds random noise to the colorAdjust _FG-BGAdjust color balance, brightness, contrast, saturation, and dither algorithmAdjust output...Adjust the Flare IntensityAdjust the Luminosity ThresholdAdjust the Number of SpikesAdjust the Opacity of the SpikesAdjust the Spike Angle (-1 means a Random Angle is chosen)Adjust the Spike DensityAdjust the Spike LengthAdjust the Value how much the Hue should be changed randomlyAdjust the Value how much the Saturation should be changed randomlyAdjust the cyan balance of the printAdjust the density (amount of ink) of the print. Reduce the density if the ink bleeds through the paper or smears; increase the density if black regions are not solid.Adjust the gamma of the print. Larger values will produce a generally brighter print, while smaller values will produce a generally darker print. Black and white will remain the same, unlike with the brightness adjustment.Adjust the magenta balance of the printAdjust the preview's brightnessAdjust the saturation (color balance) of the print Use zero saturation to produce grayscale output using color and black inksAdjust the yellow balance of the printAdjusting Foreground/Background...Advanced Filter Pack OptionsAdvanced OptionsAffected RangeAggressive RLE -(not supported by SGI)Al_ternateAl_ternate tilesAlias|Wavefront PIX imageAlien Map _2...AlienMap2AlienMap2: Transforming...Align Visible LayersAlign _Visible Layers...All JNGAll PNGAll Values are Fractions of the Film HeightAll blackAll grayAll text fields must contain a value.All whiteAllo_w tile splittingAlphaAlpha ChannelsAlpha:Ambient:Amount of original color to show where no direct light fallsAmount:An obsolete creation of Adam D. Moss / adam@gimp.org / adam@foxbox.org / 1998-2000Ang_le offset:Angle span:Angle:Angular Gradient:Angular Size Gradient:Animated GIF OptionsAnimated MNG optionsAnimation Playback:AntialiasingAntialiasing quality. Higher is better, but slowerApplies the paper as it is (without embossing it)ApplyApply CanvasApply _Lens...Apply active gradient to final imageApplying Canvas...Applying convolutionApplying lens...Applying the Filter Pack...Are you sure you want to delete "%s" from the list and from disk?Area #%d SettingsArea SettingsArea listArea:ArrowAs specified aboveAsciiAspect ratio:Assembling Jigsaw...Asymmetry:At _bottomAt _topAut_hor:Author:AutoAuto-Stretching Contrast...Auto-Stretching HSV...AutoDesk FLIC animationAutomaticAutomatic pre_viewAvailable Images:B, G, R, X (bmp style)B/WBLANK/NaN Pixel ReplacementB_lack pullout (%):B_lue threshold:Bac_kground colorBack:BackgroundBackground (%d%s)Background ColorBackground TypeBackground:Bad colormapBarnsley 1Barnsley 2Barnsley 3Base _URL:Basic OptionsBefore and AfterBentBest for images dominated by regions of solid colorBevel EdgesBili_nearBl_ack & whiteBlackBlack and whiteBlack:Blend SettingsBlindsBlueBlue freq_uency:Blue pha_seshift:Blue:Blueness_cb470:Blueness_cb470f:Blueness_cb709:Blueness_cb709f:Blur CenterBlur MethodBlur ParametersBlur RadiusBlur TypeBlurring...BorderBorder Average...Border SizeBorderaverageBot_hBothBottom Border:Bottom edgeBottom-_rightBottom:BoxBrightness:BrowseBumpBump MapBump-mapping...Bumpm_ap image:BumpmapBy DATAMIN/DATAMAXC source codeC source code headerCML Explorer: Overwrite File?CML _Explorer...CML_explorer: evoluting...CMYCMYKCX:CY:C_MYKC_ameraC_aptionC_ell content:C_ell size:C_enter of brushC_enteringC_hoose here:C_ircleC_ompose...C_reate New ImageC_rossesC_urvedC_yanC_ylinderCalculation SettingsCan only operate on RGB drawables.Can only save drawables!Can operate on layers only (but was called on channel or mask).Can't create a new imageCan't get Clipboard data.Can't operate on unknown image typesCan't read color entriesCannot delete!! There must be at least one GFlare.Cannot operate on empty selections.Cannot operate on gray or indexed color images.Cannot operate on indexed color images.Cannot operate on layers with masks.Cannot operate on unknown image types.Cannot read extension from '%s'Cannot read footer from '%s'Cannot save RGB color images. Convert to indexed color or grayscale first.Cannot save images with alpha channel.Cannot save images with alpha channels.CartoonCell size:Cell-_padding:Cell-_spacing:CenterCenter _x:Center _y:Center of Flare EffectCenter of SuperNovaCenter the image horizontally on the paperCenter the image on the paperCenter the image vertically on the paperCenter:CenterizeCh. sensitivity:Change order of arrowsChange the CX value (changes aspect of fractal, active with every fractal but Mandelbrot and Sierpinski)Change the CY value (changes aspect of fractal, active with every fractal but Mandelbrot and Sierpinski)Change the angle of the selected smvectorChange the angle of the selected vectorChange the exponent of the strengthChange the first (minimal) x-coordinate delimitationChange the first (minimal) y-coordinate delimitationChange the intensity of the blue channelChange the intensity of the green channelChange the intensity of the red channelChange the iteration value. The higher it is, the more details will be calculated, which will take more timeChange the number of colors in the mappingChange the second (maximal) x-coordinate delimitationChange the second (maximal) y-coordinate delimitationChange the strength of the selected smvectorChange the strength of the selected vectorChange to thisChanges the gamma (brightness) of the selected brushChannel #%d:Channel Independent ParametersChannel Mi_xer...Channel MixerChannel Mixer File Operation WarningChannel RepresentationsChannelsCheck if you would like to have the table captioned.CheckerCheckerboardChecking this tag will cause GTM to leave no whitespace between the TD tags and the cellcontent. This is only necessary for pixel level positioning control.Choose Fractal by double-clicking on itChoose PPD FileChoose a high compression level for small file sizeChoose the PPD file for your printerChoose the dither algorithm to be used. +(not supported by SGI)Al_ternateAl_ternate tilesAlias|Wavefront PIX imageAlien Map _2...AlienMap2AlienMap2: Transforming...Align Visible LayersAlign _Visible Layers...All JNGAll PNGAll Values are Fractions of the Film HeightAll blackAll grayAll text fields must contain a value.All whiteAllo_w tile splittingAlphaAlpha ChannelsAlpha:Ambient:Amount of original color to show where no direct light fallsAmount:An obsolete creation of Adam D. Moss / adam@gimp.org / adam@foxbox.org / 1998-2000Ang_le offset:Angle span:Angle:Angular Gradient:Angular Size Gradient:Animated GIF OptionsAnimated MNG optionsAnimation Playback:AntialiasingAntialiasing quality. Higher is better, but slowerApplies the paper as it is (without embossing it)ApplyApply CanvasApply _Lens...Apply active gradient to final imageApplying Canvas...Applying convolutionApplying lens...Applying the Filter Pack...Are you sure you want to delete "%s" from the list and from disk?Area #%d SettingsArea SettingsArea listArea:ArrowAs specified aboveAsciiAspect ratio:Assembling Jigsaw...Asymmetry:At _bottomAt _topAut_hor:Author:AutoAuto-Stretching Contrast...Auto-Stretching HSV...AutoDesk FLIC animationAutomaticAutomatic pre_viewAvailable Images:B, G, R, X (bmp style)B/WBLANK/NaN Pixel ReplacementB_lack pullout (%):B_lue threshold:Bac_kground colorBack:BackgroundBackground (%d%s)Background ColorBackground TypeBackground:Bad colormapBarnsley 1Barnsley 2Barnsley 3Base _URL:Basic OptionsBefore and AfterBentBest for images dominated by regions of solid colorBevel EdgesBili_nearBl_ack & whiteBlackBlack and whiteBlack:Blend SettingsBlindsBlueBlue freq_uency:Blue pha_seshift:Blue:Blueness_cb470:Blueness_cb470f:Blueness_cb709:Blueness_cb709f:Blur CenterBlur MethodBlur ParametersBlur RadiusBlur TypeBlurring...BorderBorder Average...Border SizeBorderaverageBot_hBothBottom Border:Bottom edgeBottom-_rightBottom:BoxBrightness:BrowseBumpBump MapBump-mapping...Bumpm_ap image:BumpmapBy DATAMIN/DATAMAXC source codeC source code headerCML Explorer: Overwrite File?CML _Explorer...CML_explorer: evoluting...CMYCMYKCX:CY:C_MYKC_ameraC_aptionC_ell content:C_ell size:C_enter of brushC_enteringC_hoose here:C_ircleC_ompose...C_reate New ImageC_rossesC_urvedC_yanC_ylinderCa_rtoon...Calculation SettingsCan only operate on RGB drawables.Can only save drawables!Can operate on layers only (but was called on channel or mask).Can't create a new imageCan't get Clipboard data.Can't operate on unknown image typesCan't read color entriesCannot delete!! There must be at least one GFlare.Cannot operate on empty selections.Cannot operate on gray or indexed color images.Cannot operate on indexed color images.Cannot operate on layers with masks.Cannot operate on unknown image types.Cannot read extension from '%s'Cannot read footer from '%s'Cannot save RGB color images. Convert to indexed color or grayscale first.Cannot save images with alpha channel.Cannot save images with alpha channels.CartoonCell size:Cell-_padding:Cell-_spacing:CenterCenter _x:Center _y:Center of Flare EffectCenter of SuperNovaCenter the image horizontally on the paperCenter the image on the paperCenter the image vertically on the paperCenter:CenterizeCh. sensitivity:Change order of arrowsChange the CX value (changes aspect of fractal, active with every fractal but Mandelbrot and Sierpinski)Change the CY value (changes aspect of fractal, active with every fractal but Mandelbrot and Sierpinski)Change the angle of the selected smvectorChange the angle of the selected vectorChange the exponent of the strengthChange the first (minimal) x-coordinate delimitationChange the first (minimal) y-coordinate delimitationChange the intensity of the blue channelChange the intensity of the green channelChange the intensity of the red channelChange the iteration value. The higher it is, the more details will be calculated, which will take more timeChange the number of colors in the mappingChange the second (maximal) x-coordinate delimitationChange the second (maximal) y-coordinate delimitationChange the strength of the selected smvectorChange the strength of the selected vectorChange to thisChanges the gamma (brightness) of the selected brushChannel #%d:Channel Independent ParametersChannel Mi_xer...Channel MixerChannel Mixer File Operation WarningChannel RepresentationsChannelsCheck if you would like to have the table captioned.CheckerCheckerboardChecking this tag will cause GTM to leave no whitespace between the TD tags and the cellcontent. This is only necessary for pixel level positioning control.Choose Fractal by double-clicking on itChoose PPD FileChoose a high compression level for small file sizeChoose the PPD file for your printerChoose the dither algorithm to be used. Adaptive Hybrid usually produces the best all-around quality. Ordered is faster and produces almost as good quality on photographs. Fast and Very Fast are considerably faster, and work well for text and line art. @@ -425,7 +432,7 @@ (or similar) to your gimprc file.Iterations:JNGJNG + delta PNGJPEG compression quality:JPEG imageJPEG previewJPEG quality parameterJPEG smoothing factor:JigsawJigsaw StyleJuliaKISS CELKeep _even fieldsKeep image's valuesKeep o_dd fieldsKeep originalKeep the first valueLABLZ77L_eadingL_eft BorderL_ength:L_inearLambdaLandscapeLaplaceLaplace...Larg_e 3x3Layer %s doesn't have an alpha channel, skippedLayer background type. Copy causes the previous layer to be copied before the draw is performed.LeftLeft edgeLeft:Lens EffectLess Sat:Let the direction from the center determine the direction of the strokeLet the direction from the center determine the size of the strokeLet the value (brightness) of the region determine the direction of the strokeLet the value (brightness) of the region determine the size of the strokeLevelLightLight 1Light 2Light 3Light 4Light 5Light 6Light SettingsLight _direction:Light intensityLight source X direction in XYZ spaceLight source X position in XYZ spaceLight source Y direction in XYZ spaceLight source Y position in XYZ spaceLight source Z direction in XYZ spaceLight source Z position in XYZ spaceLighterLighter:Lighting EffectsLighting Effects...Lighting preset:Lightsource color:Lightsource type:LineLine artLinearLink TypeList ViewLizardLo_ng-staggeredLo_wer BorderLoad Channel Mixer SettingsLoad Curve Points from fileLoad FITS FileLoad FlameLoad Fractal ParametersLoad Gfig object collectionLoad ImagemapLoad KISS PaletteLoad Lighting PresetLoad Parameters fromLoad PostScriptLoad QBE fileLoad a fractal from fileLoad the curves from a fileLoading Screen Shot...Lock _thresholdsLogarithmicLoopLower leftLower rightLower selected objectLower selected object to bottomLower t_hreshold:Luma_y470:Luma_y470f:Luma_y709:Luma_y709f:Luminosity _Threshold:Luminosity freq_uency:Luminosity pha_seshift:MNG OptionsMNG animationM_aximum value:Ma_x depth:Ma_ximum height:Magen_taMagentaMagenta:Magenta_KMagnitude map:Main OptionsMake destination image transparent where bump height is zeroMake image transparent outside objectMan'o'warMandelbrotMandelbrot ParametersManualManually specify the stroke orientationManually specify the stroke sizeMap Color RangeMap Images to Box FacesMap _Object...Map file formatMap from _topMap to Box...Map to Cylinder...Map to ObjectMap to Plane...Map to Sphere...Map to:Mapping colors...MarbleMask FileMaterial propertiesMatrixMax (x+d, -)Max (x+d, -), (0.5 < x)Max (x+d, -), (x < 0.5)Max (x, -)Max (x-d, -)Max (x-d, -), (0.5 < x)Max (x-d, -), (x < 0.5)Max RGBMax RGB...Max undo:Max. Memory:Maximum height for bumpsMaximum size:MazeMedia size:Media source:Media type:MedianMenuMenu PathMenu Path/NameMerge imported pathsMerging...Microsoft WMF fileMicrosoft Windows iconMiddle-click inside preview to pick "From Color"Midtones:Min (x+d, -)Min (x+d, -), (0.5 < x)Min (x+d, -), (x < 0.5)Min (x, -)Min (x-d, -)Min (x-d, -), (0.5 < x)Min (x-d, -), (x < 0.5)Minimum size:Mirror the active curve to the other borderMisc arrange:Mo_dify green channelMo_dify saturation channelMod. rate:Mod_ify blue channelMod_ify luminosity channelModeMode _1Mode _2Modify CurvesMor_e opaqueMore Advanced OptionsMore Sat:More _white (larger value)More blac_k (smaller value)More t_ransparentMosaicMotion BlurMotion Blurring...MoveMove DownMove SashMove Selected ObjectsMove To FrontMove UpMove a single pointMove an objectMovementMultiple (57):Multiply gradient (0,1)Multiply rand. value (0,1)Multiply rand. value (0,2)Mutation dist.:Mutation rate:My first fractalNL FilterNL Filter...NameNeon DetectionNeon...New FractalNew GFlareNew UnitNew printer...New seedNewsprin_t...NewsprintNewsprint...No %s in gimprc: You need to add an entry like (%s "%s") -to your %s file.No colorsNo compressionNo data capturedNo fillNo lightNo matchesNo selection to convertNo sensible extension, attempting to load with file magic.No sensible extension, saving as compressed XCF.No. _Down:NoiseNon-square pixels. Image might look squashed.NoneNormalNormal:Normalizing...Nothing to crop.Number of ColorsNumber of M_RU entries (1 - 16):Number of SegmentsNumber of TilesNumber of _Frames:Number of _Undo levels (1 - 99):Number of cells:Number of colors:Number of cycles covering full value rangeNumber of pieces going acrossNumber of pieces going downNumber of times to apply filterNumber of unique colors: %dNumberingO_ffset:O_nly foregroundO_pacity:O_ptionsO_rientationO_thersO_utput LPI:O_utput channel:O_verlap:O_verlayO_versample:Object DetailsObject X position in XYZ spaceObject Y position in XYZ spaceObject Z position in XYZ spaceOc_tagons & squaresOff_set:Offset (1):Offset _angle:Offset all vectors with a given angleOffset:Oil Painting...Oili_fy...OilifyOn Edges:On Film:On edges:One frame per layer (replace)Only b_ackgroundOnly one unique colorOp_acity:Op_timal estimationOp_tionsOpacity:OpenOpen FileOpen IFS Fraktal fileOpen failedOpen recentOpening '%s'...Opening thumbnail for '%s'...Opens up the Orientation Map EditorOpens up the Size Map EditorOptimizeOptimize (for _GIF)Optimize the output for the type of image being printedOptimizing Animation...OptionsOr_ientationOr_igin at bottom leftOrientationOrientation Map EditorOrientation:OriginalOriginal intensityOriginal:Ot_herOther optionsOutputOutput Levels:Output type:Outside TypeOverlayP(ower factor):PDF documentPNGPNG + delta PNGPNG compression level:PNG imagePNM ImagePNM imagePNM save cannot handle images with alpha channels.PNM: Error reading file.PNM: Invalid X resolution.PNM: Invalid Y resolution.PNM: Invalid file.PNM: Invalid maximum value.PNM: Premature end of file.PPD File:PPIPS DiamondPS Square (Euclidean Dot)P_aperP_olar Coords...P_reviewPage %dPage Curl...Page SetupPageSetupDlg failed: %dPagecurl EffectPages to load (e.g.: 1-4 or 1,3,5-7)Pages:Paint Mode:Paint Shop Pro imagePaint edgesPainting...Pal_ette File:PalettePaper TilePaper Tile...Parameter k:ParametersParameters were saved to '%s'Parse error in '%s': +to your %s file.No colorsNo compressionNo data capturedNo fillNo lightNo matchesNo selection to convertNo sensible extension, attempting to load with file magic.No sensible extension, saving as compressed XCF.No. _Down:NoiseNon-square pixels. Image might look squashed.NoneNormalNormal:Normalizing...Nothing to crop.Number of ColorsNumber of M_RU entries (1 - 16):Number of SegmentsNumber of TilesNumber of _Frames:Number of _Undo levels (1 - 99):Number of cells:Number of colors:Number of cycles covering full value rangeNumber of pieces going acrossNumber of pieces going downNumber of times to apply filterNumber of unique colors: %dNumberingO_ffset:O_nly foregroundO_pacity:O_ptionsO_rientationO_thersO_utput LPI:O_utput channel:O_verlap:O_verlayO_versample:Object DetailsObject X position in XYZ spaceObject Y position in XYZ spaceObject Z position in XYZ spaceOc_tagons & squaresOff_set:Offset (1):Offset _angle:Offset all vectors with a given angleOffset:Oil Painting...Oili_fy...OilifyOn Edges:On Film:On edges:One frame per layer (replace)Only b_ackgroundOnly one unique colorOp_acity:Op_timal estimationOp_tionsOpacity:OpenOpen FileOpen IFS Fraktal fileOpen failedOpen recentOpening '%s'...Opening thumbnail for '%s'...Opens up the Orientation Map EditorOpens up the Size Map EditorOptimizeOptimize (for _GIF)Optimize the output for the type of image being printedOptimizing Animation...OptionsOr_ientationOr_igin at bottom leftOrientationOrientation Map EditorOrientation:OriginalOriginal intensityOriginal:Ot_herOther optionsOutputOutput Levels:Output type:Outside TypeOverlayP(ower factor):PDF documentPGM imagePNGPNG + delta PNGPNG compression level:PNG imagePNM ImagePNM imagePNM save cannot handle images with alpha channels.PNM: Error reading file.PNM: Invalid X resolution.PNM: Invalid Y resolution.PNM: Invalid file.PNM: Invalid maximum value.PNM: Premature end of file.PPD File:PPIPPM imagePS DiamondPS Square (Euclidean Dot)P_aperP_olar Coords...P_reviewPage %dPage Curl...Page SetupPageSetupDlg failed: %dPagecurl EffectPages to load (e.g.: 1-4 or 1,3,5-7)Pages:Paint Mode:Paint Shop Pro imagePaint edgesPainting...Pal_ette File:PalettePaper TilePaper Tile...Parameter k:ParametersParameters were saved to '%s'Parse error in '%s': %sPastePaste from ClipboardPastedPasting...Pattern fillPercentPercent _black:Percent _white:Percentage of pixels to be filteredPhase angle, range 0-360PhongPhotocopyPhotographPhotoshop imagePieces:Ping pongPixel _Height:Pixel _Width:Pixel value scalingPixelizePixelizing...PixelsPl_acementPlace strokes randomly around the imagePlacementPlanar (RRR,GGG,BBB)Planar RGBPlanePlasmaPlasma...Play/StopPlayback:Please check your installation.Plot a graph of the settingsPlug-In BrowserPluralPo_larization:PointPoint lightPolarPolarizePolarizing...PolygonPortraitPositionPosition X:Position Y:Position Z:Position the image on the page. Click and drag with the primary button to position the image. Click and drag with the second button to move the image with finer precision; each unit of motion moves the image one point (1/72") @@ -461,8 +468,8 @@ cmcyancyan_ke-_mailgreengzip archivehueinvalid formatted GFlare file: %s k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftpixels/%aredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsin^p, steppedsin^p-based functionsome sort of error with the file extension or lack thereofthe _Whole Screento alphavaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: gimp-plug-ins Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 -PO-Revision-Date: 2004-12-06 12:02+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 +PO-Revision-Date: 2004-12-19 09:46+0100 Last-Translator: Arpad Biro Language-Team: Hungarian MIME-Version: 1.0 @@ -495,7 +502,7 @@ Képmagasság nincs megadva"%s": Képszélesség nincs megadva(Egyik sem)1 bővítményinterfész1 eljárás1 bit/képpont, 1 bites alfa, 2 elemű paletta32 bit/képpont, 8 bites alfa, nincs paletta4 bit/képpont, 1 bites alfa, 16 elemű paletta8 bit/képpont, 1 bites alfa, 256 elemű palettaAdaptív kijelölésekre vonatkozó végértékAdam D. Moss (adam@gimp.org / adam@foxbox.org) egyik kevésbé elavult műve - 1998-2000Ha ez az oszlop be van jelölve, akkor a mértékegység-definíció csak a GIMP-ből való kilépés előtt lesz elmentve.ALT-szöveg"Alt"-szöveg (nem kötelező):ASCII rajzNévjeg_yA_daptív túlmintavételezés_HozzáadásSzegél_y hozzáadása_HaladóÖssz_esM_inden csempeA_lfa-súlyozásA_lfa:Környe_ző:Mé_rték:_Amplitúdó:Szö_g:A_nimálás_HozzáfűzésElőnézet a_utomatikus frissítéseA_utomatikusAz ecset alatti á_tlagRövidítésNévjegyNévjegy - Gimp-Print MűveletHala_dóAdaptívAda_ptív túlmintavételezésTovábbi segédobjektumok felvételeFraktálböngésző-útvonal hozzáadásaÚj vektor felvételeÚj vektor felvételeLamellák hozzáadása...Sakktábla hozzáadása...Zaj hozzáadása...HozzáadásTovábbi információÁrnyékeffektus alkalmazása minden ecsetvonásraVéletlenszerű zaj hozzáadása a színhez_Előtér/háttér igazításaSzínegyensúly, fényesség, kontraszt, telítettség és a színszórási módszer beállításaKimenet beállítása...Fényintenzitás beállításaFényességi küszöbérték beállításaÁgak (csúcsok) számának beállításaAz ágak átlátszatlanságának beállításaÁgak szögének beállítása (-1 esetén egy véletlenszerű szög lesz kiválasztva)Ágsűrűség beállításaÁgak hosszának beállításaAz árnyalat véletlenszerű módosításának mértékeA telítettség véletlenszerű módosításának mértékeA nyomat ciánkék-egyensúlyának beállításaA nyomat sűrűségének (a tinta mennyiségének) beállítása. Ha a tinta átüt a papíron vagy elfolyik, akkor csökkentse a sűrűséget. Ha a fekete területek nem egyenletesek, akkor viszont növelje azt.A nyomat gamma-értékének beállítása. A nagyobb értékek fényesebb nyomatot eredményeznek, a kisebbek pedig sötétebbet. A fekete és a fehér nem változik - ellentétben a fényességi beállítással.A nyomat bíborvörös-egyensúlyának beállításaAz előnézet fényességének beállításaA nyomat telítettségének (színegyensúlyának) beállítása. Ha színes és fekete tintával szürkeárnyalatos nyomtatást szeretne végezni, akkor adjon meg 0 értéket.A nyomat sárga-egyensúlyának beállításaElőtér/háttér igazítása...Haladó szűrőcsomag-beállításokSpeciális beállításokÉrintett tartományAgresszív RLE -(az SGI nem támogatja)_VáltakozvaMinden máso_dik csempeAlias|Wavefront PIX-képAlien Map _2...AlienMap2AlienMap2: Átalakítás...Látható rétegek igazítása_Látható rétegek igazítása...Minden JNGMinden PNGAz összes érték a film magasságának arányában értendőMind feketeMind szürkeMinden szövegmezőnek kell legyen értéke.Mind fehérCsempe_felosztás engedélyezéseAlfaAlfa-csatornákAlfa:Környező:Az eredeti színből megjelenítendő mennyiség ott, ahova nem esik közvetlenül fényMérték:Adam D. Moss (adam@gimp.org / adam@foxbox.org) egyik elavult műve - 1998-2000E_ltolási szög:Szög-kiterjedés:Szög:Szög-színátmenet:Szögméret-színátmenet:Animált GIF beállításaiAnimált MNG beállításaiAnimáció lejátszása:ÉlsimításÉlsimítás minősége. Minél magasabb, annál jobb, viszont annál lassabb isA papírt az aktuális formájában alkalmazza (domborítás nélkül)AlkalmazVászon alkalmazása_Lencse alkalmazása...Aktív színátmenet alkalmazása a végső képreVászon alkalmazása folyamatban...Konvolúció alkalmazásaLencse alkalmazása...Szűrőcsomag alkalmazása...Biztos, hogy törölni szeretné a(z) "%s"-t a listából és a lemezről?%d. terület beállításaiTerület beállításaiTerületlistaTerület:NyílA fent megadottASCIIMéretarány:Puzzle összeállítása...Aszimmetria:_Lent_FentSzer_ző:Szerző:AutomatikusKontraszt automatikus nyújtása...Automatikus HSV-feszítés...AutoDesk FLIC-animációAutomatikusAutomati_kus előnézetElérhető képek:B, G, R, X (BMP-stílusú)Fekete-fehérÜres illetve értékkel nem rendelkező képpontok lecseréléseF_ekete kivonása (%):Kék-küszö_b:_HáttérszínHátsó oldal:HáttérHáttér (%d%s)HáttérszínHáttér típusaHáttér:Helytelen színtérképBarnsley 1Barnsley 2Barnsley 3Alap-_URL:Alapvető beállításokElőtte és utánaHajlítottAz elsősorban egyenletes színű területeket tartalmazó képekhezSzélek levágásaB_ilineáris_Fekete-fehérFeketeFekete-fehérFekete:Keverési beállításokLamellákKékKék-fr_ekvencia:Kék-fáz_iseltolás:Kék:Kékség_cb470:Kékség_cb470f:Kékség_cb709:Kékség_cb709f:Elmosási középpontElmosás típusaElmosás paramétereiElmosás sugaraElmosás típusaElmosás...SzegélySzegélyátlag...Szegély méreteSzegélyátlagM_indkettőMindkettőAlsó szél:Alsó szélAlsó-_jobbAlsó:TéglatestFényesség:TallózásBuckaBuckaleképezésBuckaleképezés...Buckaleképe_zési kép:BuckaleképezésDATAMIN/DATAMAX érték alapjánC-forráskódC-forráskódfejlécCML-böngésző: felülírja a fájlt?CML-_böngésző...CML-böngésző: a művelet folyamatban...CMYCMYKCX:CY:CM_YKK_amera_Felirat_Cellatartalom:_Cellaméret:Az ecset _középpontjaKözé_pre_Kijelölés itt:_KörÖssze_vonás...Ú_j kép létrehozása_KeresztekÍ_vesCián_kékHenge_rSzámítási beállításokA művelet csak RGB rajzterület esetén lehetséges.Csak rajzterületek menthetők.Csak rétegekre működik, csatornára és maszkra nem.Nem lehet új képet létrehozniNem sikerült beolvasni a vágólap-adatokat.Ismeretlen képtípusok nem dolgozhatók felSzínbejegyzések olvasása sikertelenA törlés nem lehetséges. Legalább egy színátmenetes csillogásnak léteznie kell.Üres kijelölés esetén nem használható.Szürkeárnyalatos vagy indexelt színű képek kezelése nem lehetséges.Indexelt színű képek kezelése nem lehetséges.Maszkot tartalmazó rétegek kezelése nem lehetséges.Ismeretlen képtípusok nem kezelhetők.Nem sikerült beolvasni a kiterjesztést ebből: "%s"Nem sikerült beolvasni a láblécet ebből: "%s"RGB-színű képek nem menthetők. Alakítsa a képet indexelt színűre vagy szürkeárnyalatosra.Az alfa-csatornás képek nem menthetők el.Alfacsatornás képek nem menthetők el.KarikatúraCellaméret:M_argó:Cellatá_volság:KözépKözép, _x:Közép, _y:A csillogási effektus középpontjaA szupernova középpontjaA kép középre igazítása vízszintes irányban a papíronA kép középre igazítása a papíronA kép középre igazítása függőleges irányban a papíronKözépre igazítás:KözépreCsatornaérzékenység:Nyilak rendjének módosításaA CX érték módosítása (a fraktál nézőpontját befolyásolja, Mandelbrot- és Sierpinski-fraktálok esetében nincs hatása)A CY érték módosítása (a fraktál nézőpontját befolyásolja, Mandelbrot- és Sierpinski-fraktálok esetében nincs hatása)A kijelölt vektor szögének módosításaA kijelölt vektor szögének módosításaAz erősség kitevőjének módosításaAz x-koordináta első (minimum) korlátozásának módosításaAz y-koordináta első (minimum) korlátozásának módosításaA kék csatorna intenzitásának megváltoztatásaA zöld csatorna intenzitásának megváltoztatásaA vörös csatorna intenzitásának megváltoztatásaItt változtathatja meg az iteráció értékét. Minél nagyobb ez az érték, annál több részletet számol ki a program és annál tovább tart a számítás.Színek számának megváltoztatása a leképezésbenAz x-koordináta második (maximum) korlátozásának módosításaAz y-koordináta második (maximum) korlátozásának módosításaA kijelölt vektor erősségének módosításaA kijelölt vektor erősségének módosításaErre történő módosításA kijelölt ecset gammájának (fényességének) módosítása%d. csatorna:Csatornafüggetlen paraméterek_Csatornakeverő...CsatornakeverőCsatornakeverő - fájlműveletre való figyelmeztetésCsatorna-ábrázolásCsatornákAkkor jelölje be, ha szeretne feliratot tenni a táblához.SakktáblaSakktáblaBejelölés esetén a GTV nem tesz sem szóköz-, sem más karaktereket a TD tagek és a cellatartalom közé. Ez akkor szükséges, ha képpontszintű pozicionálásra van szükség.A fraktál dupla-kattintással választható kiPPD-fájl kiválasztásaKis fájlméret eléréséhez válasszon magas tömörítési szintetVálassza ki a nyomtatónak megfelelő PPD-fájltVálassza ki a használandó színszórási módszert. +(az SGI nem támogatja)_VáltakozvaMinden máso_dik csempeAlias|Wavefront PIX-képAlien Map _2...AlienMap2AlienMap2: Átalakítás...Látható rétegek igazítása_Látható rétegek igazítása...Minden JNGMinden PNGAz összes érték a film magasságának arányában értendőMind feketeMind szürkeMinden szövegmezőnek kell legyen értéke.Mind fehérCsempe_felosztás engedélyezéseAlfaAlfa-csatornákAlfa:Környező:Az eredeti színből megjelenítendő mennyiség ott, ahova nem esik közvetlenül fényMérték:Adam D. Moss (adam@gimp.org / adam@foxbox.org) egyik elavult műve - 1998-2000E_ltolási szög:Szög-kiterjedés:Szög:Szög-színátmenet:Szögméret-színátmenet:Animált GIF beállításaiAnimált MNG beállításaiAnimáció lejátszása:ÉlsimításÉlsimítás minősége. Minél magasabb, annál jobb, viszont annál lassabb isA papírt az aktuális formájában alkalmazza (domborítás nélkül)AlkalmazVászon alkalmazása_Lencse alkalmazása...Aktív színátmenet alkalmazása a végső képreVászon alkalmazása folyamatban...Konvolúció alkalmazásaLencse alkalmazása...Szűrőcsomag alkalmazása...Biztos, hogy törölni szeretné a(z) "%s"-t a listából és a lemezről?%d. terület beállításaiTerület beállításaiTerületlistaTerület:NyílA fent megadottASCIIMéretarány:Puzzle összeállítása...Aszimmetria:_Lent_FentSzer_ző:Szerző:AutomatikusKontraszt automatikus nyújtása...Automatikus HSV-feszítés...AutoDesk FLIC-animációAutomatikusAutomati_kus előnézetElérhető képek:B, G, R, X (BMP-stílusú)Fekete-fehérÜres illetve értékkel nem rendelkező képpontok lecseréléseF_ekete kivonása (%):Kék-küszö_b:_HáttérszínHátsó oldal:HáttérHáttér (%d%s)HáttérszínHáttér típusaHáttér:Helytelen színtérképBarnsley 1Barnsley 2Barnsley 3Alap-_URL:Alapvető beállításokElőtte és utánaHajlítottAz elsősorban egyenletes színű területeket tartalmazó képekhezSzélek levágásaB_ilineáris_Fekete-fehérFeketeFekete-fehérFekete:Keverési beállításokLamellákKékKék-fr_ekvencia:Kék-fáz_iseltolás:Kék:Kékség_cb470:Kékség_cb470f:Kékség_cb709:Kékség_cb709f:Elmosási középpontElmosás típusaElmosás paramétereiElmosás sugaraElmosás típusaElmosás...SzegélySzegélyátlag...Szegély méreteSzegélyátlagM_indkettőMindkettőAlsó szél:Alsó szélAlsó-_jobbAlsó:TéglatestFényesség:TallózásBuckaBuckaleképezésBuckaleképezés...Buckaleképe_zési kép:BuckaleképezésDATAMIN/DATAMAX érték alapjánC-forráskódC-forráskódfejlécCML-böngésző: felülírja a fájlt?CML-_böngésző...CML-böngésző: a művelet folyamatban...CMYCMYKCX:CY:CM_YKK_amera_Felirat_Cellatartalom:_Cellaméret:Az ecset _középpontjaKözé_pre_Kijelölés itt:_KörÖssze_vonás...Ú_j kép létrehozása_KeresztekÍ_vesCián_kékHenge_rK_arikatúra...Számítási beállításokA művelet csak RGB rajzterület esetén lehetséges.Csak rajzterületek menthetők.Csak rétegekre működik, csatornára és maszkra nem.Nem lehet új képet létrehozniNem sikerült beolvasni a vágólap-adatokat.Ismeretlen képtípusok nem dolgozhatók felSzínbejegyzések olvasása sikertelenA törlés nem lehetséges. Legalább egy színátmenetes csillogásnak léteznie kell.Üres kijelölés esetén nem használható.Szürkeárnyalatos vagy indexelt színű képek kezelése nem lehetséges.Indexelt színű képek kezelése nem lehetséges.Maszkot tartalmazó rétegek kezelése nem lehetséges.Ismeretlen képtípusok nem kezelhetők.Nem sikerült beolvasni a kiterjesztést ebből: "%s"Nem sikerült beolvasni a láblécet ebből: "%s"RGB-színű képek nem menthetők. Alakítsa a képet indexelt színűre vagy szürkeárnyalatosra.Az alfa-csatornás képek nem menthetők el.Alfacsatornás képek nem menthetők el.KarikatúraCellaméret:M_argó:Cellatá_volság:KözépKözép, _x:Közép, _y:A csillogási effektus középpontjaA szupernova középpontjaA kép középre igazítása vízszintes irányban a papíronA kép középre igazítása a papíronA kép középre igazítása függőleges irányban a papíronKözépre igazítás:KözépreCsatornaérzékenység:Nyilak rendjének módosításaA CX érték módosítása (a fraktál nézőpontját befolyásolja, Mandelbrot- és Sierpinski-fraktálok esetében nincs hatása)A CY érték módosítása (a fraktál nézőpontját befolyásolja, Mandelbrot- és Sierpinski-fraktálok esetében nincs hatása)A kijelölt vektor szögének módosításaA kijelölt vektor szögének módosításaAz erősség kitevőjének módosításaAz x-koordináta első (minimum) korlátozásának módosításaAz y-koordináta első (minimum) korlátozásának módosításaA kék csatorna intenzitásának megváltoztatásaA zöld csatorna intenzitásának megváltoztatásaA vörös csatorna intenzitásának megváltoztatásaItt változtathatja meg az iteráció értékét. Minél nagyobb ez az érték, annál több részletet számol ki a program és annál tovább tart a számítás.Színek számának megváltoztatása a leképezésbenAz x-koordináta második (maximum) korlátozásának módosításaAz y-koordináta második (maximum) korlátozásának módosításaA kijelölt vektor erősségének módosításaA kijelölt vektor erősségének módosításaErre történő módosításA kijelölt ecset gammájának (fényességének) módosítása%d. csatorna:Csatornafüggetlen paraméterek_Csatornakeverő...CsatornakeverőCsatornakeverő - fájlműveletre való figyelmeztetésCsatorna-ábrázolásCsatornákAkkor jelölje be, ha szeretne feliratot tenni a táblához.SakktáblaSakktáblaBejelölés esetén a GTV nem tesz sem szóköz-, sem más karaktereket a TD tagek és a cellatartalom közé. Ez akkor szükséges, ha képpontszintű pozicionálásra van szükség.A fraktál dupla-kattintással választható kiPPD-fájl kiválasztásaKis fájlméret eléréséhez válasszon magas tömörítési szintetVálassza ki a nyomtatónak megfelelő PPD-fájltVálassza ki a használandó színszórási módszert. Általában az "adaptive hybrid" ("adaptív hibrid") adja a legjobb minőséget. Az "ordered" ("rendezett") gyorsabb, és majdnem olyan jó minőséget ad fényképek esetében. A "fast" ("gyors") és a "very fast" ("nagyon gyors") lényegesen gyorsabbak, és jól működnek szövegek valamint rajzok esetében. @@ -512,7 +519,7 @@ vagy hasonló bejegyzést a gimprc fájlba.Iteráció:JNGJNG + delta PNGJPEG tömörítési minőség:JPEG-képJPEG-előnézetA JPEG-minőség paramétereJPEG simításának aránya:PuzzlePuzzle stílusaJuliaKISS CELPá_ros mezők megtartásaA kép értékeinek megtartásaPára_tlan mezők megtartásaEredeti megőrzéseElső érték megtartásaLABLZ77Kez_dőBa_l szegély_Hossz:_LineárisLambdaFekvőLaplaceLaplace...Na_gy 3x3A(z) %s réteg nem rendelkezik alfa-csatornával; kihagyvaA réteg hátterének típusa. Másolás esetén az előző réteg másolásra kerül a rajzolást megelőzően.BalBal szélBal:Lencse-effektusKevésbé telített:Az ecsetvonás irányát a középponttól számított irány szabja megAz ecsetvonás méretét a középponttól számított irány szabja megAz ecsetvonás irányát a terület értéke (fényessége) szabja megAz ecsetvonás méretét a terület értéke (fényessége) szabja megSzintFényFény 1Fény 2Fény 3Fény 4Fény 5Fény 6FénybeállításokFény irán_ya:FényintenzitásA fényforrás X-iránya az XYZ térbenA fényforrás X-helyzete az XYZ térbenA fényforrás Y-iránya az XYZ térbenA fényforrás Y-helyzete az XYZ térbenA fényforrás Z-iránya az XYZ térbenA fényforrás Z-helyzete az XYZ térbenVilágosabbVilágosabb:FényhatásokFényhatások...Előredefiniált fényhatás:Fényforrás színe:Fényforrás típusa:VonalRajzLineárisHivatkozás típusaListanézetGyík_Hosszú lépcsőzetAl_só szegélyCsatornakeverő beállításainak betöltéseGörbe pontjainak betöltése fájlbólFITS-fájl betöltéseLáng betöltéseFraktálparaméterek betöltéseGFig-objektumgyűjtemény betöltéseKép-térkép betöltéseKISS paletta betöltéseElőredefiniált fényhatás betöltéseParaméterek betöltése fájlbólPostScript betöltéseQBE-fájl betöltéseFraktál betöltése fájlbólGörbék betöltése fájlbólKépernyőkép betöltése...Küszöbök zá_rolásaLogaritmikusIsmétlésBal alsóJobb alsóA kijelölt objektum lejjebb helyezéseA kijelölt objektum legalulra való helyezéseAlsó kü_szöb:Fényesség_y470:Fényesség_y470f:Fényesség_y709:Fényesség_y709f:Fényességi _küszöbérték:Fé_nyesség-frekvencia:F_ényesség-fáziseltolás:MNG beállításaiMNG-animációMa_ximális érték:Ma_x. mélység:Ma_ximális magasság:Bíbor_vörösBíborvörösBíborvörös:Bíborvörös_KNagysági leképezés:Főbb beállításokAhol a buckamagasság nulla, ott a célkép átlátszó legyenA kép átlátszó a tárgyon kívülMan'o'warMandelbrotMandelbrot-paraméterekKéziAz ecsetvonás tájolásának kézi megadásaAz ecsetvonás méretének kézi megadásaSzíntartomány-leképezésKépek leképezése egy téglatest oldalaira_Leképezés tárgyra...Térképfájl formátumaLeképezés _felülrőlLeképezés téglatestre...Leképezés hengerre...Leképezés tárgyraLeképezés síkra...Leképezés gömbre...Leképezés erre:Színek leképezése...MárványMaszkfájlAnyagtulajdonságokMátrixMax (x+d, -)Max (x+d, -), (0,5 < x)Max (x+d, -), (x < 0,5)Max (x, -)Max (x-d, -)Max (x-d, -), (0,5 < x)Max (x-d, -), (x < 0,5)Max RGBMax RGB...Maximális visszavonások:Maximális memória:Buckák legnagyobb magasságaMaximális méret:LabirintusPapír mérete:Papír forrása:Papír típusa:MediánMenüElérési útvonal a menübenMenübeli útvonal/NévImportált útvonalak összefűzéseÖsszefésülés...Microsoft WMF-fájlMicrosoft Windows-ikonA kiindulási szín kijelöléséhez kattintson a középső egérgombbal az előképre.Középtónusok:Min (x+d, -)Min (x+d, -), (0,5 < x)Min (x+d, -), (x < 0,5)Min (x, -)Min (x-d, -)Min (x-d, -), (0,5 < x)Min (x-d, -), (x < 0,5)Minimális méret:Az aktív görbe tükrözése a másik szegélyhezElrendezés:_Zöld-csatorna módosításaTelítettség-cs_atorna módosításaVáltozási ráta:_Kék-csatorna módosításaFényesség-_csatorna módosításaMód_1. mód_2. módGörbék módosításaÁtlátszatla_nabbTovábbi speciális beállításokTelítettebb:F_ehérebb (magasabb érték)Fe_ketébb (alacsonyabb érték)Á_tlátszóbbMozaikElmosás elmozdítássalElmosás elmozdítással...ÁthelyezésLejjebb helyezésKeret áthelyezéseA kijelölt objektumok áthelyezéseElőre helyezésFeljebb helyezésEgy pont áthelyezéseEgy objektum áthelyezéseMozgásTöbbszörös (57):Gradiens szorzása (0,1)Véletlen érték szorzása (0,1)Véletlen érték szorzása (0,2)Mutációs eloszlás:Mutációs ráta:Az első fraktálomNL-szűrőNL-szűrő...NévNeon-élkeresésNeon...Új fraktálÚj színátmenetes csillogásÚj mértékegységÚj nyomtató...Új kiindulóértékÚ_jság...ÚjságÚjság...Nincs %s a gimprc fájlban. Hozzá kell adnia egy ilyen bejegyzést: (%s "%s") -a(z) %s fájlhoz.Nincs színNincs tömörítésNincs elkapott adatNincs kitöltésNincs fényNincs találatNincs átalakítandó kijelölésNincs fájlkiterjesztés; feldolgozás a fájltartalom alapján.Nincs fájlkiterjesztés; mentés tömörített XCF-ként.Függő_leges darabszám:ZajA képpontok nem négyzet alakúak. A kép megjelenése torzulhat.NincsNormálNormál:Normalizálás...Nincs mit vágni.Színek számaBe_jegyzések száma a legutóbb használtak listájában (1 - 16):Szakaszok számaElemek száma_Képkockák száma:V_isszavonási szintek száma (1 - 99):Cellák száma:Színek száma:A teljes értéktartományt lefedő ciklusok számaVízszintes darabok számaFüggőleges darabok számaEnnyiszer kell alkalmazni a szűrőtEgyedi színek száma: %dSzámozás_Eltolás:_Csak előtérÁ_tlátszatlanság:_BeállításokElhelye_zkedés_EgyebekK_imeneti LPI:K_imeneti csatorna:Át_fedés:Át_fedés_Túlmintavételezés:Részletes objektumtulajdonságokTárgy X-helyzete az XYZ térbenTárgy Y-helyzete az XYZ térbenTárgy Z-helyzete az XYZ térbenNyol_cszögek és négyzetek_Eltolás:Eltolás (1):_Eltolási szög:Az összes vektor eltolása egy adott szöggelEltolás:Olajfestés készítése...Olaj_festés...OlajfestésA széleken:A filmen:A széleken:Rétegenként egy képkocka (helyettesítés)Csak _háttérCsak egy egyedi színÁt_látszatlanság:Optimális _becslés_BeállításokÁtlátszatlanság:MegnyitásFájl megnyitásaIFS fraktálkészítő-fájl megnyitásaSikertelen megnyitásLegutóbbi megnyitása"%s" megnyitása..."%s" bélyegképének megnyitása...A tájolásitérkép-szerkesztő megnyitásaA mérettérkép-szerkesztő megnyitásaOptimalizálásOptimalizálás (_GIF-hez)A kimenet optimalizálása a nyomtatandó kép típusának megfelelőenAnimáció optimalizálása...BeállításokTá_jolásOr_igó a bal alsó sarokbanIrányTájolásitérkép-szerkesztőIrány:EredetiEredeti intenzitásEredeti:Egyé_bEgyéb beállításokKimenetKimeneti szintek:Kimenet típusa:Külső rész típusaÁtfedésTényező (P):PDF-dokumentumPNGPNG + delta PNGPNG tömörítési mérték:PNG-képPNM-képPNM-képA PNM-mentés nem tudja kezelni az alfa-csatornás képeket.PNM: hiba a fájl olvasása közben.PNM: érvénytelen X-felbontás.PNM: érvénytelen Y-felbontás.PNM: érvénytelen fájl.PNM: érvénytelen maximumérték.PNM: túl korai fájlvég.PPD-fájl:DPIPS-rombuszPS-négyzet (euklideszi pont)_PapírP_olárkoordináták...Elő_nézet%d. oldalLap-felhajlítás...OldalbeállításSikertelen PageSetupDlg művelet: %dLap-felhajlítási effektusBetöltendő lapok (például: 1-4 vagy 1,3,5-7)Oldalak:Rajzolási mód:Paint Shop Pro-képSzélek megrajzolásaRajzolás...P_alettafájl:PalettaPapírcsempePapírcsempe..."k" paraméter:ParaméterekA paraméterek elmentve a következő fájlba: "%s"Feldolgozási hiba ebben: "%s": +a(z) %s fájlhoz.Nincs színNincs tömörítésNincs elkapott adatNincs kitöltésNincs fényNincs találatNincs átalakítandó kijelölésNincs fájlkiterjesztés; feldolgozás a fájltartalom alapján.Nincs fájlkiterjesztés; mentés tömörített XCF-ként.Függő_leges darabszám:ZajA képpontok nem négyzet alakúak. A kép megjelenése torzulhat.NincsNormálNormál:Normalizálás...Nincs mit vágni.Színek számaBe_jegyzések száma a legutóbb használtak listájában (1 - 16):Szakaszok számaElemek száma_Képkockák száma:V_isszavonási szintek száma (1 - 99):Cellák száma:Színek száma:A teljes értéktartományt lefedő ciklusok számaVízszintes darabok számaFüggőleges darabok számaEnnyiszer kell alkalmazni a szűrőtEgyedi színek száma: %dSzámozás_Eltolás:_Csak előtérÁ_tlátszatlanság:_BeállításokElhelye_zkedés_EgyebekK_imeneti LPI:K_imeneti csatorna:Át_fedés:Át_fedés_Túlmintavételezés:Részletes objektumtulajdonságokTárgy X-helyzete az XYZ térbenTárgy Y-helyzete az XYZ térbenTárgy Z-helyzete az XYZ térbenNyol_cszögek és négyzetek_Eltolás:Eltolás (1):_Eltolási szög:Az összes vektor eltolása egy adott szöggelEltolás:Olajfestés készítése...Olaj_festés...OlajfestésA széleken:A filmen:A széleken:Rétegenként egy képkocka (helyettesítés)Csak _háttérCsak egy egyedi színÁt_látszatlanság:Optimális _becslés_BeállításokÁtlátszatlanság:MegnyitásFájl megnyitásaIFS fraktálkészítő-fájl megnyitásaSikertelen megnyitásLegutóbbi megnyitása"%s" megnyitása..."%s" bélyegképének megnyitása...A tájolásitérkép-szerkesztő megnyitásaA mérettérkép-szerkesztő megnyitásaOptimalizálásOptimalizálás (_GIF-hez)A kimenet optimalizálása a nyomtatandó kép típusának megfelelőenAnimáció optimalizálása...BeállításokTá_jolásOr_igó a bal alsó sarokbanIrányTájolásitérkép-szerkesztőIrány:EredetiEredeti intenzitásEredeti:Egyé_bEgyéb beállításokKimenetKimeneti szintek:Kimenet típusa:Külső rész típusaÁtfedésTényező (P):PDF-dokumentumPGM-képPNGPNG + delta PNGPNG tömörítési mérték:PNG-képPNM-képPNM-képA PNM-mentés nem tudja kezelni az alfa-csatornás képeket.PNM: hiba a fájl olvasása közben.PNM: érvénytelen X-felbontás.PNM: érvénytelen Y-felbontás.PNM: érvénytelen fájl.PNM: érvénytelen maximumérték.PNM: túl korai fájlvég.PPD-fájl:DPIPPM-képPS-rombuszPS-négyzet (euklideszi pont)_PapírP_olárkoordináták...Elő_nézet%d. oldalLap-felhajlítás...OldalbeállításSikertelen PageSetupDlg művelet: %dLap-felhajlítási effektusBetöltendő lapok (például: 1-4 vagy 1,3,5-7)Oldalak:Rajzolási mód:Paint Shop Pro-képSzélek megrajzolásaRajzolás...P_alettafájl:PalettaPapírcsempePapírcsempe..."k" paraméter:ParaméterekA paraméterek elmentve a következő fájlba: "%s"Feldolgozási hiba ebben: "%s": %sBeillesztésBeillesztés vágólaprólBeillesztveBeillesztés folyamatban...Kitöltés mintávalSzázalékFe_kete-százalék:Fe_hér-százalék:A szűrendő képpontok százalékaFázisszög; lehetséges értékek: 0-360PhongFénymásolatFényképPhotoshop-képElemek:PingpongKéppont ma_gassága:Képpont s_zélessége:Képpontérték-méretezésPixelesítésPixelesítés...képpontEl_helyezésAz ecsetvonások véletlenszerű elhelyezése a kép körülElhelyezésSík (RRR,GGG,BBB)Sík RGBSíkPlazmaPlazma...Lejátszás/leállításLejátszás:Ellenőrizze a telepítést.Grafikon a beállítások alapjánBővítményböngészőTöbbes szám_Polarizáció:PontPontszerű fényforrásPolárPolarizálásPolarizálás...SokszögÁllóHelyzetPozíció, X:Pozíció, Y:Pozíció, Z:A kép elhelyezése a lapon. Az elsődleges (általában a bal oldali) egérgomb lenyomása utáni húzással áthelyezheti a képet. A második egérgomb lenyomása utáni húzással finomabb áthelyezés végezhető; az elmozdítás pontonként történik (1/72"). diff -uraN gimp-2.2.0/po-plug-ins/hu.po gimp-2.2.1/po-plug-ins/hu.po --- gimp-2.2.0/po-plug-ins/hu.po 2004-12-19 03:34:11.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/hu.po 2004-12-28 16:58:55.000000000 +0100 @@ -10,8 +10,8 @@ msgstr "" "Project-Id-Version: gimp-plug-ins\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" -"PO-Revision-Date: 2004-12-06 12:02+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" +"PO-Revision-Date: 2004-12-19 09:46+0100\n" "Last-Translator: Arpad Biro \n" "Language-Team: Hungarian \n" "MIME-Version: 1.0\n" @@ -957,7 +957,7 @@ msgstr "" "Élsimítás minősége. Minél magasabb, annál jobb, viszont annál lassabb is" -#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:720 +#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:691 #: plug-ins/common/wind.c:993 plug-ins/imagemap/imap_preferences.c:539 msgid "_Threshold:" msgstr "_Küszöbszint:" @@ -2082,12 +2082,12 @@ msgstr "Irány" #: plug-ins/common/blinds.c:259 plug-ins/common/ripple.c:539 -#: plug-ins/common/tileit.c:419 plug-ins/pagecurl/pagecurl.c:530 +#: plug-ins/common/tileit.c:418 plug-ins/pagecurl/pagecurl.c:530 msgid "_Horizontal" msgstr "Ví_zszintes" #: plug-ins/common/blinds.c:260 plug-ins/common/ripple.c:540 -#: plug-ins/common/tileit.c:429 plug-ins/pagecurl/pagecurl.c:529 +#: plug-ins/common/tileit.c:428 plug-ins/pagecurl/pagecurl.c:529 msgid "_Vertical" msgstr "Függő_leges" @@ -2108,7 +2108,7 @@ msgid "_Blur" msgstr "_Elmosás" -#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:383 +#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:432 msgid "Blurring..." msgstr "Elmosás..." @@ -2215,27 +2215,26 @@ msgstr "c_astretch: a cmap NULL. Kilépés...\n" #: plug-ins/common/cartoon.c:147 -#, fuzzy msgid "Ca_rtoon..." -msgstr "Karikatúra" +msgstr "K_arikatúra..." -#: plug-ins/common/cartoon.c:228 plug-ins/common/dog.c:246 -#: plug-ins/common/gauss.c:430 plug-ins/common/neon.c:222 -#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:203 +#: plug-ins/common/cartoon.c:229 plug-ins/common/dog.c:247 +#: plug-ins/common/gauss.c:431 plug-ins/common/neon.c:221 +#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:204 #: plug-ins/common/softglow.c:220 plug-ins/gflare/gflare.c:972 #: plug-ins/sgi/sgi.c:528 plug-ins/xjt/xjt.c:1673 msgid "Cannot operate on indexed color images." msgstr "Indexelt színű képek kezelése nem lehetséges." -#: plug-ins/common/cartoon.c:807 +#: plug-ins/common/cartoon.c:808 msgid "Cartoon" msgstr "Karikatúra" -#: plug-ins/common/cartoon.c:837 plug-ins/common/photocopy.c:867 +#: plug-ins/common/cartoon.c:838 plug-ins/common/photocopy.c:867 msgid "_Mask radius:" msgstr "Maszks_ugár:" -#: plug-ins/common/cartoon.c:851 +#: plug-ins/common/cartoon.c:852 msgid "_Percent black:" msgstr "Fe_kete-százalék:" @@ -2393,28 +2392,28 @@ msgid "Colorify Custom Color" msgstr "Színezés - egyéni szín" -#: plug-ins/common/colortoalpha.c:105 +#: plug-ins/common/colortoalpha.c:104 msgid "Color to _Alpha..." msgstr "Színből a_lfa..." -#: plug-ins/common/colortoalpha.c:183 +#: plug-ins/common/colortoalpha.c:181 msgid "Removing color..." msgstr "Szín eltávolítása..." -#: plug-ins/common/colortoalpha.c:364 +#: plug-ins/common/colortoalpha.c:377 msgid "Color to Alpha" msgstr "Színből alfa" -#: plug-ins/common/colortoalpha.c:389 plug-ins/common/mapcolor.c:424 +#: plug-ins/common/colortoalpha.c:402 plug-ins/common/mapcolor.c:424 #: plug-ins/gfli/gfli.c:835 plug-ins/gfli/gfli.c:898 msgid "From:" msgstr "Innen:" -#: plug-ins/common/colortoalpha.c:393 +#: plug-ins/common/colortoalpha.c:406 msgid "Color to Alpha Color Picker" msgstr "\"Színből alfa\" színpipetta" -#: plug-ins/common/colortoalpha.c:407 +#: plug-ins/common/colortoalpha.c:420 msgid "to alpha" msgstr "alfára" @@ -2725,23 +2724,23 @@ msgid "_Cubism..." msgstr "_Kubizmus..." -#: plug-ins/common/cubism.c:267 +#: plug-ins/common/cubism.c:269 msgid "Cubism" msgstr "Kubizmus" -#: plug-ins/common/cubism.c:296 +#: plug-ins/common/cubism.c:298 msgid "_Tile size:" msgstr "Csempe mére_te:" -#: plug-ins/common/cubism.c:309 +#: plug-ins/common/cubism.c:311 msgid "T_ile saturation:" msgstr "_Csempe telítettsége:" -#: plug-ins/common/cubism.c:320 +#: plug-ins/common/cubism.c:322 msgid "_Use background color" msgstr "_Háttérszín használata" -#: plug-ins/common/cubism.c:410 +#: plug-ins/common/cubism.c:412 msgid "Cubistic Transformation..." msgstr "Kubista átalakítás..." @@ -3108,42 +3107,42 @@ msgid "Des_peckle..." msgstr "_Folttalanítás..." -#: plug-ins/common/despeckle.c:420 plug-ins/common/despeckle.c:642 +#: plug-ins/common/despeckle.c:418 plug-ins/common/despeckle.c:640 msgid "Despeckle" msgstr "Folttalanítás" #. #. * Filter type controls... #. -#: plug-ins/common/despeckle.c:446 plug-ins/gimpressionist/orientmap.c:616 +#: plug-ins/common/despeckle.c:444 plug-ins/gimpressionist/orientmap.c:616 msgid "Type" msgstr "Típus" #. parameter settings -#: plug-ins/common/despeckle.c:456 +#: plug-ins/common/despeckle.c:454 msgid "Median" msgstr "Medián" -#: plug-ins/common/despeckle.c:462 +#: plug-ins/common/despeckle.c:460 msgid "_Adaptive" msgstr "_Adaptív" -#: plug-ins/common/despeckle.c:472 +#: plug-ins/common/despeckle.c:470 msgid "R_ecursive" msgstr "R_ekurzív" -#: plug-ins/common/despeckle.c:496 plug-ins/common/neon.c:728 +#: plug-ins/common/despeckle.c:494 plug-ins/common/neon.c:727 #: plug-ins/common/nlfilt.c:1083 plug-ins/common/nova.c:359 -#: plug-ins/common/unsharp.c:694 plug-ins/common/whirlpinch.c:588 +#: plug-ins/common/unsharp.c:665 plug-ins/common/whirlpinch.c:588 #: plug-ins/gflare/gflare.c:2686 plug-ins/imagemap/imap_circle.c:278 msgid "_Radius:" msgstr "Sugá_r:" -#: plug-ins/common/despeckle.c:512 +#: plug-ins/common/despeckle.c:510 msgid "_Black level:" msgstr "Fe_kete-szint:" -#: plug-ins/common/despeckle.c:528 +#: plug-ins/common/despeckle.c:526 msgid "_White level:" msgstr "_Fehér-szint:" @@ -3232,7 +3231,7 @@ msgid "_Displace..." msgstr "Elmoz_dítás..." -#: plug-ins/common/displace.c:228 +#: plug-ins/common/displace.c:231 msgid "Displacing..." msgstr "Elmozdítás..." @@ -3270,27 +3269,27 @@ msgid "Difference of Gaussians..." msgstr "Gaussok különbsége..." -#: plug-ins/common/dog.c:222 plug-ins/common/dog.c:273 +#: plug-ins/common/dog.c:227 plug-ins/common/dog.c:274 msgid "DoG Edge Detect" msgstr "DoG-élkeresés" -#: plug-ins/common/dog.c:294 +#: plug-ins/common/dog.c:295 msgid "Smoothing parameters" msgstr "Simítási paraméterek" -#: plug-ins/common/dog.c:308 +#: plug-ins/common/dog.c:309 msgid "_Radius 1:" msgstr "Sugá_r 1:" -#: plug-ins/common/dog.c:312 +#: plug-ins/common/dog.c:313 msgid "R_adius 2:" msgstr "Su_gár 2:" -#: plug-ins/common/dog.c:324 plug-ins/common/normalize.c:88 +#: plug-ins/common/dog.c:325 plug-ins/common/normalize.c:88 msgid "_Normalize" msgstr "_Normalizálás" -#: plug-ins/common/dog.c:335 plug-ins/gimpressionist/paper.c:149 +#: plug-ins/common/dog.c:336 plug-ins/gimpressionist/paper.c:149 msgid "_Invert" msgstr "Inver_tálás" @@ -3342,7 +3341,7 @@ msgid "_Emboss..." msgstr "_Domborítás..." -#: plug-ins/common/emboss.c:374 plug-ins/common/emboss.c:439 +#: plug-ins/common/emboss.c:376 plug-ins/common/emboss.c:439 msgid "Emboss" msgstr "Domborítás" @@ -3366,7 +3365,7 @@ msgid "En_grave..." msgstr "_Gravírozás..." -#: plug-ins/common/engrave.c:181 +#: plug-ins/common/engrave.c:182 msgid "Engraving..." msgstr "Gravírozás folyamatban..." @@ -3770,38 +3769,38 @@ msgid "_Gaussian Blur..." msgstr "_Gauss-elmosás..." -#: plug-ins/common/gauss.c:407 +#: plug-ins/common/gauss.c:413 msgid "Gaussian Blur..." msgstr "Gauss-elmosás..." -#: plug-ins/common/gauss.c:460 +#: plug-ins/common/gauss.c:461 msgid "Gaussian Blur" msgstr "Gauss-elmosás" #. parameter settings -#: plug-ins/common/gauss.c:483 +#: plug-ins/common/gauss.c:484 msgid "Blur Radius" msgstr "Elmosás sugara" -#: plug-ins/common/gauss.c:497 plug-ins/common/jigsaw.c:2456 -#: plug-ins/common/spread.c:378 +#: plug-ins/common/gauss.c:498 plug-ins/common/jigsaw.c:2456 +#: plug-ins/common/spread.c:379 msgid "_Horizontal:" msgstr "_Vízszintes:" -#: plug-ins/common/gauss.c:501 plug-ins/common/jigsaw.c:2473 -#: plug-ins/common/spread.c:382 +#: plug-ins/common/gauss.c:502 plug-ins/common/jigsaw.c:2473 +#: plug-ins/common/spread.c:383 msgid "_Vertical:" msgstr "_Függőleges:" -#: plug-ins/common/gauss.c:524 +#: plug-ins/common/gauss.c:525 msgid "Blur Method" msgstr "Elmosás típusa" -#: plug-ins/common/gauss.c:528 +#: plug-ins/common/gauss.c:529 msgid "_IIR" msgstr "_IIR" -#: plug-ins/common/gauss.c:529 +#: plug-ins/common/gauss.c:530 msgid "_RLE" msgstr "_RLE" @@ -4104,19 +4103,19 @@ msgid "_Glass Tile..." msgstr "_Katedrálüveg..." -#: plug-ins/common/glasstile.c:208 +#: plug-ins/common/glasstile.c:209 msgid "Glass Tile..." msgstr "Katedrálüveg..." -#: plug-ins/common/glasstile.c:251 +#: plug-ins/common/glasstile.c:250 msgid "Glass Tile" msgstr "Katedrálüveg" -#: plug-ins/common/glasstile.c:282 +#: plug-ins/common/glasstile.c:281 msgid "Tile _width:" msgstr "Csempes_zélesség:" -#: plug-ins/common/glasstile.c:296 plug-ins/common/mosaic.c:621 +#: plug-ins/common/glasstile.c:295 plug-ins/common/mosaic.c:621 msgid "Tile _height:" msgstr "Csempema_gasság:" @@ -5101,15 +5100,15 @@ msgid "_Neon..." msgstr "_Neon..." -#: plug-ins/common/neon.c:204 +#: plug-ins/common/neon.c:207 msgid "Neon..." msgstr "Neon..." -#: plug-ins/common/neon.c:698 +#: plug-ins/common/neon.c:697 msgid "Neon Detection" msgstr "Neon-élkeresés" -#: plug-ins/common/neon.c:743 plug-ins/common/unsharp.c:707 +#: plug-ins/common/neon.c:742 plug-ins/common/unsharp.c:678 msgid "_Amount:" msgstr "Mér_ték:" @@ -5268,7 +5267,7 @@ msgid "_Scatter RGB..." msgstr "_RGB-szétszórás..." -#: plug-ins/common/noisify.c:284 +#: plug-ins/common/noisify.c:285 msgid "Adding Noise..." msgstr "Zaj hozzáadása..." @@ -5337,7 +5336,7 @@ msgid "Oili_fy..." msgstr "Olaj_festés..." -#: plug-ins/common/oilify.c:188 +#: plug-ins/common/oilify.c:189 msgid "Oil Painting..." msgstr "Olajfestés készítése..." @@ -5472,7 +5471,7 @@ msgid "Photocopy" msgstr "Fénymásolat" -#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:513 +#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:509 #: plug-ins/common/softglow.c:687 msgid "_Sharpness:" msgstr "Élessé_g:" @@ -5618,14 +5617,12 @@ msgstr "PNM-kép" #: plug-ins/common/pnm.c:260 -#, fuzzy msgid "PGM image" -msgstr "PNM-kép" +msgstr "PGM-kép" #: plug-ins/common/pnm.c:272 -#, fuzzy msgid "PPM image" -msgstr "PNM-kép" +msgstr "PPM-kép" #: plug-ins/common/pnm.c:465 plug-ins/common/pnm.c:486 #: plug-ins/common/pnm.c:493 plug-ins/common/pnm.c:502 @@ -6109,7 +6106,7 @@ msgid "_Ripple..." msgstr "Fodro_zódás..." -#: plug-ins/common/ripple.c:219 +#: plug-ins/common/ripple.c:222 msgid "Rippling..." msgstr "Fodrozódás..." @@ -6327,19 +6324,19 @@ msgid "_Selective Gaussian Blur..." msgstr "_Szelektív Gauss-elmosás..." -#: plug-ins/common/sel_gauss.c:186 +#: plug-ins/common/sel_gauss.c:187 msgid "Selective Gaussian Blur..." msgstr "Szelektív Gauss-elmosás..." -#: plug-ins/common/sel_gauss.c:224 +#: plug-ins/common/sel_gauss.c:225 msgid "Selective Gaussian Blur" msgstr "Szelektív Gauss-elmosás" -#: plug-ins/common/sel_gauss.c:256 +#: plug-ins/common/sel_gauss.c:257 msgid "_Blur radius:" msgstr "Elmosás s_ugara:" -#: plug-ins/common/sel_gauss.c:266 +#: plug-ins/common/sel_gauss.c:267 msgid "_Max. delta:" msgstr "Ma_x. változás:" @@ -6358,11 +6355,11 @@ #. #. * Let the user know what we're doing... #. -#: plug-ins/common/sharpen.c:315 +#: plug-ins/common/sharpen.c:311 msgid "Sharpening..." msgstr "Élesítés..." -#: plug-ins/common/sharpen.c:484 +#: plug-ins/common/sharpen.c:480 msgid "Sharpen" msgstr "Élesítés" @@ -6370,7 +6367,7 @@ msgid "_Shift..." msgstr "_Eltolás..." -#: plug-ins/common/shift.c:191 +#: plug-ins/common/shift.c:194 msgid "Shifting..." msgstr "Eltolás..." @@ -6565,23 +6562,23 @@ msgid "_Sobel..." msgstr "_Sobel..." -#: plug-ins/common/sobel.c:226 +#: plug-ins/common/sobel.c:227 msgid "Sobel Edge Detection" msgstr "Sobel-élkeresés" -#: plug-ins/common/sobel.c:248 +#: plug-ins/common/sobel.c:249 msgid "Sobel _Horizontally" msgstr "Sobel-módszer _vízszintesen" -#: plug-ins/common/sobel.c:260 +#: plug-ins/common/sobel.c:261 msgid "Sobel _Vertically" msgstr "Sobel-módszer _függőlegesen" -#: plug-ins/common/sobel.c:272 +#: plug-ins/common/sobel.c:273 msgid "_Keep sign of result (one direction only)" msgstr "Az eredmény _előjelének megtartása (csak egy irány)" -#: plug-ins/common/sobel.c:358 +#: plug-ins/common/sobel.c:359 msgid "Sobel Edge Detecting..." msgstr "Sobel-élkeresés..." @@ -6880,15 +6877,15 @@ msgid "Sp_read..." msgstr "_Szórás..." -#: plug-ins/common/spread.c:179 +#: plug-ins/common/spread.c:182 msgid "Spreading..." msgstr "Szórás..." -#: plug-ins/common/spread.c:345 +#: plug-ins/common/spread.c:346 msgid "Spread" msgstr "Szórás" -#: plug-ins/common/spread.c:363 +#: plug-ins/common/spread.c:364 msgid "Spread Amount" msgstr "Szórási mennyiség" @@ -7177,7 +7174,8 @@ msgid "_Tile..." msgstr "_Csempe..." -#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:321 +#. Set the tile cache size +#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:320 msgid "Tiling..." msgstr "Csempézés..." @@ -7198,42 +7196,42 @@ msgstr "_Kis csempe..." #. Get the preview image -#: plug-ins/common/tileit.c:364 +#: plug-ins/common/tileit.c:363 msgid "TileIt" msgstr "Kis csempe" #. Area for buttons etc #. Flip -#: plug-ins/common/tileit.c:407 plug-ins/ifscompose/ifscompose.c:628 +#: plug-ins/common/tileit.c:406 plug-ins/ifscompose/ifscompose.c:628 msgid "Flip" msgstr "Tükrözés" -#: plug-ins/common/tileit.c:455 +#: plug-ins/common/tileit.c:454 msgid "A_ll tiles" msgstr "M_inden csempe" -#: plug-ins/common/tileit.c:469 +#: plug-ins/common/tileit.c:468 msgid "Al_ternate tiles" msgstr "Minden máso_dik csempe" -#: plug-ins/common/tileit.c:483 +#: plug-ins/common/tileit.c:482 msgid "_Explicit tile" msgstr "M_egadott csempe" -#: plug-ins/common/tileit.c:489 +#: plug-ins/common/tileit.c:488 msgid "Ro_w:" msgstr "So_r:" -#: plug-ins/common/tileit.c:513 +#: plug-ins/common/tileit.c:512 msgid "Col_umn:" msgstr "Oszlo_p:" -#: plug-ins/common/tileit.c:565 +#: plug-ins/common/tileit.c:564 msgid "O_pacity:" msgstr "Á_tlátszatlanság:" #. Lower frame saying howmany segments -#: plug-ins/common/tileit.c:574 +#: plug-ins/common/tileit.c:573 msgid "Number of Segments" msgstr "Szakaszok száma" @@ -7383,15 +7381,15 @@ msgid "Unit Editor" msgstr "Mértékegység-szerkesztő" -#: plug-ins/common/unsharp.c:149 +#: plug-ins/common/unsharp.c:143 msgid "_Unsharp Mask..." msgstr "_Maszk életlenítése..." -#: plug-ins/common/unsharp.c:493 +#: plug-ins/common/unsharp.c:468 msgid "Merging..." msgstr "Összefésülés..." -#: plug-ins/common/unsharp.c:664 +#: plug-ins/common/unsharp.c:635 msgid "Unsharp Mask" msgstr "Maszk életlenítése" @@ -8433,19 +8431,19 @@ msgid "_Zoom:" msgstr "_Nagyítás:" -#: plug-ins/gfig/gfig-bezier.c:452 +#: plug-ins/gfig/gfig-bezier.c:448 msgid "Closed" msgstr "Zárt" -#: plug-ins/gfig/gfig-bezier.c:457 +#: plug-ins/gfig/gfig-bezier.c:453 msgid "Close curve on completion" msgstr "Görbe lezárása befejezéskor" -#: plug-ins/gfig/gfig-bezier.c:462 +#: plug-ins/gfig/gfig-bezier.c:458 msgid "Show Line Frame" msgstr "Vonalkeret megjelenítése" -#: plug-ins/gfig/gfig-bezier.c:467 +#: plug-ins/gfig/gfig-bezier.c:463 msgid "Draws lines between the control points. Only during curve creation" msgstr "Vonalak rajzolása a vezérlőpontok közé. Csak görbe-létrehozás közben." @@ -11669,6 +11667,3 @@ #, c-format msgid "Error: XJT property file '%s' is empty." msgstr "Hiba: a(z) \"%s\" XJT-tulajdonságfájl üres." - -#~ msgid "Gfig layer %d" -#~ msgstr "%d. GFig-réteg" diff -uraN gimp-2.2.0/po-plug-ins/id.gmo gimp-2.2.1/po-plug-ins/id.gmo --- gimp-2.2.0/po-plug-ins/id.gmo 2004-12-19 03:34:23.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/id.gmo 2004-12-28 16:59:07.000000000 +0100 @@ -2,7 +2,7 @@ O Zdip     AboutAmbient:BlueGreenLinearLogarithmicNonePointPositionPreviewRedSizeSpider_UpdateProject-Id-Version: gimp-plugins HEAD Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2003-06-28 22:04+0700 Last-Translator: Mohammad DAMT Language-Team: Indonesian diff -uraN gimp-2.2.0/po-plug-ins/id.po gimp-2.2.1/po-plug-ins/id.po --- gimp-2.2.0/po-plug-ins/id.po 2004-12-19 03:34:12.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/id.po 2004-12-28 16:58:56.000000000 +0100 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: gimp-plugins HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2003-06-28 22:04+0700\n" "Last-Translator: Mohammad DAMT \n" "Language-Team: Indonesian \n" @@ -930,7 +930,7 @@ msgid "Antialiasing quality. Higher is better, but slower" msgstr "" -#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:720 +#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:691 #: plug-ins/common/wind.c:993 plug-ins/imagemap/imap_preferences.c:539 msgid "_Threshold:" msgstr "" @@ -2046,12 +2046,12 @@ msgstr "" #: plug-ins/common/blinds.c:259 plug-ins/common/ripple.c:539 -#: plug-ins/common/tileit.c:419 plug-ins/pagecurl/pagecurl.c:530 +#: plug-ins/common/tileit.c:418 plug-ins/pagecurl/pagecurl.c:530 msgid "_Horizontal" msgstr "" #: plug-ins/common/blinds.c:260 plug-ins/common/ripple.c:540 -#: plug-ins/common/tileit.c:429 plug-ins/pagecurl/pagecurl.c:529 +#: plug-ins/common/tileit.c:428 plug-ins/pagecurl/pagecurl.c:529 msgid "_Vertical" msgstr "" @@ -2073,7 +2073,7 @@ msgid "_Blur" msgstr "Biru" -#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:383 +#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:432 msgid "Blurring..." msgstr "" @@ -2182,23 +2182,23 @@ msgid "Ca_rtoon..." msgstr "" -#: plug-ins/common/cartoon.c:228 plug-ins/common/dog.c:246 -#: plug-ins/common/gauss.c:430 plug-ins/common/neon.c:222 -#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:203 +#: plug-ins/common/cartoon.c:229 plug-ins/common/dog.c:247 +#: plug-ins/common/gauss.c:431 plug-ins/common/neon.c:221 +#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:204 #: plug-ins/common/softglow.c:220 plug-ins/gflare/gflare.c:972 #: plug-ins/sgi/sgi.c:528 plug-ins/xjt/xjt.c:1673 msgid "Cannot operate on indexed color images." msgstr "" -#: plug-ins/common/cartoon.c:807 +#: plug-ins/common/cartoon.c:808 msgid "Cartoon" msgstr "" -#: plug-ins/common/cartoon.c:837 plug-ins/common/photocopy.c:867 +#: plug-ins/common/cartoon.c:838 plug-ins/common/photocopy.c:867 msgid "_Mask radius:" msgstr "" -#: plug-ins/common/cartoon.c:851 +#: plug-ins/common/cartoon.c:852 msgid "_Percent black:" msgstr "" @@ -2356,28 +2356,28 @@ msgid "Colorify Custom Color" msgstr "" -#: plug-ins/common/colortoalpha.c:105 +#: plug-ins/common/colortoalpha.c:104 msgid "Color to _Alpha..." msgstr "" -#: plug-ins/common/colortoalpha.c:183 +#: plug-ins/common/colortoalpha.c:181 msgid "Removing color..." msgstr "" -#: plug-ins/common/colortoalpha.c:364 +#: plug-ins/common/colortoalpha.c:377 msgid "Color to Alpha" msgstr "" -#: plug-ins/common/colortoalpha.c:389 plug-ins/common/mapcolor.c:424 +#: plug-ins/common/colortoalpha.c:402 plug-ins/common/mapcolor.c:424 #: plug-ins/gfli/gfli.c:835 plug-ins/gfli/gfli.c:898 msgid "From:" msgstr "" -#: plug-ins/common/colortoalpha.c:393 +#: plug-ins/common/colortoalpha.c:406 msgid "Color to Alpha Color Picker" msgstr "" -#: plug-ins/common/colortoalpha.c:407 +#: plug-ins/common/colortoalpha.c:420 msgid "to alpha" msgstr "" @@ -2688,23 +2688,23 @@ msgid "_Cubism..." msgstr "" -#: plug-ins/common/cubism.c:267 +#: plug-ins/common/cubism.c:269 msgid "Cubism" msgstr "" -#: plug-ins/common/cubism.c:296 +#: plug-ins/common/cubism.c:298 msgid "_Tile size:" msgstr "" -#: plug-ins/common/cubism.c:309 +#: plug-ins/common/cubism.c:311 msgid "T_ile saturation:" msgstr "" -#: plug-ins/common/cubism.c:320 +#: plug-ins/common/cubism.c:322 msgid "_Use background color" msgstr "" -#: plug-ins/common/cubism.c:410 +#: plug-ins/common/cubism.c:412 msgid "Cubistic Transformation..." msgstr "" @@ -3074,42 +3074,42 @@ msgid "Des_peckle..." msgstr "" -#: plug-ins/common/despeckle.c:420 plug-ins/common/despeckle.c:642 +#: plug-ins/common/despeckle.c:418 plug-ins/common/despeckle.c:640 msgid "Despeckle" msgstr "" #. #. * Filter type controls... #. -#: plug-ins/common/despeckle.c:446 plug-ins/gimpressionist/orientmap.c:616 +#: plug-ins/common/despeckle.c:444 plug-ins/gimpressionist/orientmap.c:616 msgid "Type" msgstr "" #. parameter settings -#: plug-ins/common/despeckle.c:456 +#: plug-ins/common/despeckle.c:454 msgid "Median" msgstr "" -#: plug-ins/common/despeckle.c:462 +#: plug-ins/common/despeckle.c:460 msgid "_Adaptive" msgstr "" -#: plug-ins/common/despeckle.c:472 +#: plug-ins/common/despeckle.c:470 msgid "R_ecursive" msgstr "" -#: plug-ins/common/despeckle.c:496 plug-ins/common/neon.c:728 +#: plug-ins/common/despeckle.c:494 plug-ins/common/neon.c:727 #: plug-ins/common/nlfilt.c:1083 plug-ins/common/nova.c:359 -#: plug-ins/common/unsharp.c:694 plug-ins/common/whirlpinch.c:588 +#: plug-ins/common/unsharp.c:665 plug-ins/common/whirlpinch.c:588 #: plug-ins/gflare/gflare.c:2686 plug-ins/imagemap/imap_circle.c:278 msgid "_Radius:" msgstr "" -#: plug-ins/common/despeckle.c:512 +#: plug-ins/common/despeckle.c:510 msgid "_Black level:" msgstr "" -#: plug-ins/common/despeckle.c:528 +#: plug-ins/common/despeckle.c:526 msgid "_White level:" msgstr "" @@ -3196,7 +3196,7 @@ msgid "_Displace..." msgstr "" -#: plug-ins/common/displace.c:228 +#: plug-ins/common/displace.c:231 msgid "Displacing..." msgstr "" @@ -3233,27 +3233,27 @@ msgid "Difference of Gaussians..." msgstr "" -#: plug-ins/common/dog.c:222 plug-ins/common/dog.c:273 +#: plug-ins/common/dog.c:227 plug-ins/common/dog.c:274 msgid "DoG Edge Detect" msgstr "" -#: plug-ins/common/dog.c:294 +#: plug-ins/common/dog.c:295 msgid "Smoothing parameters" msgstr "" -#: plug-ins/common/dog.c:308 +#: plug-ins/common/dog.c:309 msgid "_Radius 1:" msgstr "" -#: plug-ins/common/dog.c:312 +#: plug-ins/common/dog.c:313 msgid "R_adius 2:" msgstr "" -#: plug-ins/common/dog.c:324 plug-ins/common/normalize.c:88 +#: plug-ins/common/dog.c:325 plug-ins/common/normalize.c:88 msgid "_Normalize" msgstr "" -#: plug-ins/common/dog.c:335 plug-ins/gimpressionist/paper.c:149 +#: plug-ins/common/dog.c:336 plug-ins/gimpressionist/paper.c:149 msgid "_Invert" msgstr "" @@ -3308,7 +3308,7 @@ msgid "_Emboss..." msgstr "" -#: plug-ins/common/emboss.c:374 plug-ins/common/emboss.c:439 +#: plug-ins/common/emboss.c:376 plug-ins/common/emboss.c:439 msgid "Emboss" msgstr "" @@ -3332,7 +3332,7 @@ msgid "En_grave..." msgstr "" -#: plug-ins/common/engrave.c:181 +#: plug-ins/common/engrave.c:182 msgid "Engraving..." msgstr "" @@ -3738,39 +3738,39 @@ msgid "_Gaussian Blur..." msgstr "Biru" -#: plug-ins/common/gauss.c:407 +#: plug-ins/common/gauss.c:413 #, fuzzy msgid "Gaussian Blur..." msgstr "Biru" -#: plug-ins/common/gauss.c:460 +#: plug-ins/common/gauss.c:461 msgid "Gaussian Blur" msgstr "" #. parameter settings -#: plug-ins/common/gauss.c:483 +#: plug-ins/common/gauss.c:484 msgid "Blur Radius" msgstr "" -#: plug-ins/common/gauss.c:497 plug-ins/common/jigsaw.c:2456 -#: plug-ins/common/spread.c:378 +#: plug-ins/common/gauss.c:498 plug-ins/common/jigsaw.c:2456 +#: plug-ins/common/spread.c:379 msgid "_Horizontal:" msgstr "" -#: plug-ins/common/gauss.c:501 plug-ins/common/jigsaw.c:2473 -#: plug-ins/common/spread.c:382 +#: plug-ins/common/gauss.c:502 plug-ins/common/jigsaw.c:2473 +#: plug-ins/common/spread.c:383 msgid "_Vertical:" msgstr "" -#: plug-ins/common/gauss.c:524 +#: plug-ins/common/gauss.c:525 msgid "Blur Method" msgstr "" -#: plug-ins/common/gauss.c:528 +#: plug-ins/common/gauss.c:529 msgid "_IIR" msgstr "" -#: plug-ins/common/gauss.c:529 +#: plug-ins/common/gauss.c:530 msgid "_RLE" msgstr "" @@ -4055,19 +4055,19 @@ msgid "_Glass Tile..." msgstr "" -#: plug-ins/common/glasstile.c:208 +#: plug-ins/common/glasstile.c:209 msgid "Glass Tile..." msgstr "" -#: plug-ins/common/glasstile.c:251 +#: plug-ins/common/glasstile.c:250 msgid "Glass Tile" msgstr "" -#: plug-ins/common/glasstile.c:282 +#: plug-ins/common/glasstile.c:281 msgid "Tile _width:" msgstr "" -#: plug-ins/common/glasstile.c:296 plug-ins/common/mosaic.c:621 +#: plug-ins/common/glasstile.c:295 plug-ins/common/mosaic.c:621 msgid "Tile _height:" msgstr "" @@ -5042,15 +5042,15 @@ msgid "_Neon..." msgstr "" -#: plug-ins/common/neon.c:204 +#: plug-ins/common/neon.c:207 msgid "Neon..." msgstr "" -#: plug-ins/common/neon.c:698 +#: plug-ins/common/neon.c:697 msgid "Neon Detection" msgstr "" -#: plug-ins/common/neon.c:743 plug-ins/common/unsharp.c:707 +#: plug-ins/common/neon.c:742 plug-ins/common/unsharp.c:678 msgid "_Amount:" msgstr "" @@ -5209,7 +5209,7 @@ msgid "_Scatter RGB..." msgstr "" -#: plug-ins/common/noisify.c:284 +#: plug-ins/common/noisify.c:285 msgid "Adding Noise..." msgstr "" @@ -5279,7 +5279,7 @@ msgid "Oili_fy..." msgstr "" -#: plug-ins/common/oilify.c:188 +#: plug-ins/common/oilify.c:189 msgid "Oil Painting..." msgstr "" @@ -5414,7 +5414,7 @@ msgid "Photocopy" msgstr "" -#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:513 +#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:509 #: plug-ins/common/softglow.c:687 msgid "_Sharpness:" msgstr "" @@ -6037,7 +6037,7 @@ msgid "_Ripple..." msgstr "" -#: plug-ins/common/ripple.c:219 +#: plug-ins/common/ripple.c:222 msgid "Rippling..." msgstr "" @@ -6255,19 +6255,19 @@ msgid "_Selective Gaussian Blur..." msgstr "" -#: plug-ins/common/sel_gauss.c:186 +#: plug-ins/common/sel_gauss.c:187 msgid "Selective Gaussian Blur..." msgstr "" -#: plug-ins/common/sel_gauss.c:224 +#: plug-ins/common/sel_gauss.c:225 msgid "Selective Gaussian Blur" msgstr "" -#: plug-ins/common/sel_gauss.c:256 +#: plug-ins/common/sel_gauss.c:257 msgid "_Blur radius:" msgstr "" -#: plug-ins/common/sel_gauss.c:266 +#: plug-ins/common/sel_gauss.c:267 msgid "_Max. delta:" msgstr "" @@ -6286,11 +6286,11 @@ #. #. * Let the user know what we're doing... #. -#: plug-ins/common/sharpen.c:315 +#: plug-ins/common/sharpen.c:311 msgid "Sharpening..." msgstr "" -#: plug-ins/common/sharpen.c:484 +#: plug-ins/common/sharpen.c:480 msgid "Sharpen" msgstr "" @@ -6298,7 +6298,7 @@ msgid "_Shift..." msgstr "" -#: plug-ins/common/shift.c:191 +#: plug-ins/common/shift.c:194 msgid "Shifting..." msgstr "" @@ -6493,23 +6493,23 @@ msgid "_Sobel..." msgstr "" -#: plug-ins/common/sobel.c:226 +#: plug-ins/common/sobel.c:227 msgid "Sobel Edge Detection" msgstr "" -#: plug-ins/common/sobel.c:248 +#: plug-ins/common/sobel.c:249 msgid "Sobel _Horizontally" msgstr "" -#: plug-ins/common/sobel.c:260 +#: plug-ins/common/sobel.c:261 msgid "Sobel _Vertically" msgstr "" -#: plug-ins/common/sobel.c:272 +#: plug-ins/common/sobel.c:273 msgid "_Keep sign of result (one direction only)" msgstr "" -#: plug-ins/common/sobel.c:358 +#: plug-ins/common/sobel.c:359 msgid "Sobel Edge Detecting..." msgstr "" @@ -6812,15 +6812,15 @@ msgid "Sp_read..." msgstr "" -#: plug-ins/common/spread.c:179 +#: plug-ins/common/spread.c:182 msgid "Spreading..." msgstr "" -#: plug-ins/common/spread.c:345 +#: plug-ins/common/spread.c:346 msgid "Spread" msgstr "" -#: plug-ins/common/spread.c:363 +#: plug-ins/common/spread.c:364 msgid "Spread Amount" msgstr "" @@ -7099,7 +7099,8 @@ msgid "_Tile..." msgstr "" -#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:321 +#. Set the tile cache size +#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:320 msgid "Tiling..." msgstr "" @@ -7120,42 +7121,42 @@ msgstr "" #. Get the preview image -#: plug-ins/common/tileit.c:364 +#: plug-ins/common/tileit.c:363 msgid "TileIt" msgstr "" #. Area for buttons etc #. Flip -#: plug-ins/common/tileit.c:407 plug-ins/ifscompose/ifscompose.c:628 +#: plug-ins/common/tileit.c:406 plug-ins/ifscompose/ifscompose.c:628 msgid "Flip" msgstr "" -#: plug-ins/common/tileit.c:455 +#: plug-ins/common/tileit.c:454 msgid "A_ll tiles" msgstr "" -#: plug-ins/common/tileit.c:469 +#: plug-ins/common/tileit.c:468 msgid "Al_ternate tiles" msgstr "" -#: plug-ins/common/tileit.c:483 +#: plug-ins/common/tileit.c:482 msgid "_Explicit tile" msgstr "" -#: plug-ins/common/tileit.c:489 +#: plug-ins/common/tileit.c:488 msgid "Ro_w:" msgstr "" -#: plug-ins/common/tileit.c:513 +#: plug-ins/common/tileit.c:512 msgid "Col_umn:" msgstr "" -#: plug-ins/common/tileit.c:565 +#: plug-ins/common/tileit.c:564 msgid "O_pacity:" msgstr "" #. Lower frame saying howmany segments -#: plug-ins/common/tileit.c:574 +#: plug-ins/common/tileit.c:573 msgid "Number of Segments" msgstr "" @@ -7295,15 +7296,15 @@ msgid "Unit Editor" msgstr "" -#: plug-ins/common/unsharp.c:149 +#: plug-ins/common/unsharp.c:143 msgid "_Unsharp Mask..." msgstr "" -#: plug-ins/common/unsharp.c:493 +#: plug-ins/common/unsharp.c:468 msgid "Merging..." msgstr "" -#: plug-ins/common/unsharp.c:664 +#: plug-ins/common/unsharp.c:635 msgid "Unsharp Mask" msgstr "" @@ -8320,19 +8321,19 @@ msgid "_Zoom:" msgstr "" -#: plug-ins/gfig/gfig-bezier.c:452 +#: plug-ins/gfig/gfig-bezier.c:448 msgid "Closed" msgstr "" -#: plug-ins/gfig/gfig-bezier.c:457 +#: plug-ins/gfig/gfig-bezier.c:453 msgid "Close curve on completion" msgstr "" -#: plug-ins/gfig/gfig-bezier.c:462 +#: plug-ins/gfig/gfig-bezier.c:458 msgid "Show Line Frame" msgstr "" -#: plug-ins/gfig/gfig-bezier.c:467 +#: plug-ins/gfig/gfig-bezier.c:463 msgid "Draws lines between the control points. Only during curve creation" msgstr "" diff -uraN gimp-2.2.0/po-plug-ins/it.gmo gimp-2.2.1/po-plug-ins/it.gmo --- gimp-2.2.0/po-plug-ins/it.gmo 2004-12-19 03:34:23.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/it.gmo 2004-12-28 16:59:07.000000000 +0100 @@ -452,7 +452,7 @@ cmcyancyan_ke-_mailgreengzip archivehueinvalid formatted GFlare file: %s k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftpixels/%aredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsin^p, steppedsin^p-based functionsome sort of error with the file extension or lack thereofthe _Whole Screento alphavaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: gimp 2.0 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-12-16 16:12+0100 Last-Translator: Marco Ciampa Language-Team: tp@lists.linux.it diff -uraN gimp-2.2.0/po-plug-ins/it.po gimp-2.2.1/po-plug-ins/it.po --- gimp-2.2.0/po-plug-ins/it.po 2004-12-19 03:34:12.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/it.po 2004-12-28 16:58:56.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: gimp 2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-12-16 16:12+0100\n" "Last-Translator: Marco Ciampa \n" "Language-Team: tp@lists.linux.it\n" @@ -954,7 +954,7 @@ msgid "Antialiasing quality. Higher is better, but slower" msgstr "Qualità antialiasing. Il più alto è il migliore, ma risulta lento" -#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:720 +#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:691 #: plug-ins/common/wind.c:993 plug-ins/imagemap/imap_preferences.c:539 msgid "_Threshold:" msgstr "_Soglia:" @@ -2080,12 +2080,12 @@ msgstr "Orientamento" #: plug-ins/common/blinds.c:259 plug-ins/common/ripple.c:539 -#: plug-ins/common/tileit.c:419 plug-ins/pagecurl/pagecurl.c:530 +#: plug-ins/common/tileit.c:418 plug-ins/pagecurl/pagecurl.c:530 msgid "_Horizontal" msgstr "_Orizzontale" #: plug-ins/common/blinds.c:260 plug-ins/common/ripple.c:540 -#: plug-ins/common/tileit.c:429 plug-ins/pagecurl/pagecurl.c:529 +#: plug-ins/common/tileit.c:428 plug-ins/pagecurl/pagecurl.c:529 msgid "_Vertical" msgstr "_Verticale" @@ -2106,7 +2106,7 @@ msgid "_Blur" msgstr "_Sfoca" -#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:383 +#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:432 msgid "Blurring..." msgstr "Sfocatura in corso..." @@ -2217,23 +2217,23 @@ msgid "Ca_rtoon..." msgstr "Ca_rtone animato..." -#: plug-ins/common/cartoon.c:228 plug-ins/common/dog.c:246 -#: plug-ins/common/gauss.c:430 plug-ins/common/neon.c:222 -#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:203 +#: plug-ins/common/cartoon.c:229 plug-ins/common/dog.c:247 +#: plug-ins/common/gauss.c:431 plug-ins/common/neon.c:221 +#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:204 #: plug-ins/common/softglow.c:220 plug-ins/gflare/gflare.c:972 #: plug-ins/sgi/sgi.c:528 plug-ins/xjt/xjt.c:1673 msgid "Cannot operate on indexed color images." msgstr "Impossibile operare su immagini a colori indicizzati." -#: plug-ins/common/cartoon.c:807 +#: plug-ins/common/cartoon.c:808 msgid "Cartoon" msgstr "Cartone" -#: plug-ins/common/cartoon.c:837 plug-ins/common/photocopy.c:867 +#: plug-ins/common/cartoon.c:838 plug-ins/common/photocopy.c:867 msgid "_Mask radius:" msgstr "Raggio di _mascheratura:" -#: plug-ins/common/cartoon.c:851 +#: plug-ins/common/cartoon.c:852 msgid "_Percent black:" msgstr "_Percentuale del nero:" @@ -2391,28 +2391,28 @@ msgid "Colorify Custom Color" msgstr "Colorazione con colori personalizzati" -#: plug-ins/common/colortoalpha.c:105 +#: plug-ins/common/colortoalpha.c:104 msgid "Color to _Alpha..." msgstr "Colore ad _alfa..." -#: plug-ins/common/colortoalpha.c:183 +#: plug-ins/common/colortoalpha.c:181 msgid "Removing color..." msgstr "Rimozione colore..." -#: plug-ins/common/colortoalpha.c:364 +#: plug-ins/common/colortoalpha.c:377 msgid "Color to Alpha" msgstr "Colore ad alfa" -#: plug-ins/common/colortoalpha.c:389 plug-ins/common/mapcolor.c:424 +#: plug-ins/common/colortoalpha.c:402 plug-ins/common/mapcolor.c:424 #: plug-ins/gfli/gfli.c:835 plug-ins/gfli/gfli.c:898 msgid "From:" msgstr "Da:" -#: plug-ins/common/colortoalpha.c:393 +#: plug-ins/common/colortoalpha.c:406 msgid "Color to Alpha Color Picker" msgstr "Colore a contagocce colore alfa" -#: plug-ins/common/colortoalpha.c:407 +#: plug-ins/common/colortoalpha.c:420 msgid "to alpha" msgstr "ad alfa" @@ -2724,23 +2724,23 @@ msgid "_Cubism..." msgstr "_Cubismo..." -#: plug-ins/common/cubism.c:267 +#: plug-ins/common/cubism.c:269 msgid "Cubism" msgstr "Cubismo" -#: plug-ins/common/cubism.c:296 +#: plug-ins/common/cubism.c:298 msgid "_Tile size:" msgstr "Dimensione ma_ttonella:" -#: plug-ins/common/cubism.c:309 +#: plug-ins/common/cubism.c:311 msgid "T_ile saturation:" msgstr "Saturaz_ione piastrella:" -#: plug-ins/common/cubism.c:320 +#: plug-ins/common/cubism.c:322 msgid "_Use background color" msgstr "_Usa colore di sfondo" -#: plug-ins/common/cubism.c:410 +#: plug-ins/common/cubism.c:412 msgid "Cubistic Transformation..." msgstr "Trasformazione cubistica..." @@ -3109,42 +3109,42 @@ msgid "Des_peckle..." msgstr "Smacc_hiatura..." -#: plug-ins/common/despeckle.c:420 plug-ins/common/despeckle.c:642 +#: plug-ins/common/despeckle.c:418 plug-ins/common/despeckle.c:640 msgid "Despeckle" msgstr "Smacchiatura" #. #. * Filter type controls... #. -#: plug-ins/common/despeckle.c:446 plug-ins/gimpressionist/orientmap.c:616 +#: plug-ins/common/despeckle.c:444 plug-ins/gimpressionist/orientmap.c:616 msgid "Type" msgstr "Tipo" #. parameter settings -#: plug-ins/common/despeckle.c:456 +#: plug-ins/common/despeckle.c:454 msgid "Median" msgstr "Mediana" -#: plug-ins/common/despeckle.c:462 +#: plug-ins/common/despeckle.c:460 msgid "_Adaptive" msgstr "_Adattivo" -#: plug-ins/common/despeckle.c:472 +#: plug-ins/common/despeckle.c:470 msgid "R_ecursive" msgstr "_Ricorsivo" -#: plug-ins/common/despeckle.c:496 plug-ins/common/neon.c:728 +#: plug-ins/common/despeckle.c:494 plug-ins/common/neon.c:727 #: plug-ins/common/nlfilt.c:1083 plug-ins/common/nova.c:359 -#: plug-ins/common/unsharp.c:694 plug-ins/common/whirlpinch.c:588 +#: plug-ins/common/unsharp.c:665 plug-ins/common/whirlpinch.c:588 #: plug-ins/gflare/gflare.c:2686 plug-ins/imagemap/imap_circle.c:278 msgid "_Radius:" msgstr "_Raggio:" -#: plug-ins/common/despeckle.c:512 +#: plug-ins/common/despeckle.c:510 msgid "_Black level:" msgstr "Livello del _nero:" -#: plug-ins/common/despeckle.c:528 +#: plug-ins/common/despeckle.c:526 msgid "_White level:" msgstr "Livello del _bianco:" @@ -3230,7 +3230,7 @@ msgid "_Displace..." msgstr "S_postamento..." -#: plug-ins/common/displace.c:228 +#: plug-ins/common/displace.c:231 msgid "Displacing..." msgstr "Spostamento..." @@ -3267,27 +3267,27 @@ msgid "Difference of Gaussians..." msgstr "Differenze della Gaussiana..." -#: plug-ins/common/dog.c:222 plug-ins/common/dog.c:273 +#: plug-ins/common/dog.c:227 plug-ins/common/dog.c:274 msgid "DoG Edge Detect" msgstr "Rilevamento spigoli dog" -#: plug-ins/common/dog.c:294 +#: plug-ins/common/dog.c:295 msgid "Smoothing parameters" msgstr "Parametri di sfumatura" -#: plug-ins/common/dog.c:308 +#: plug-ins/common/dog.c:309 msgid "_Radius 1:" msgstr "_Raggio 1:" -#: plug-ins/common/dog.c:312 +#: plug-ins/common/dog.c:313 msgid "R_adius 2:" msgstr "R_aggio 2:" -#: plug-ins/common/dog.c:324 plug-ins/common/normalize.c:88 +#: plug-ins/common/dog.c:325 plug-ins/common/normalize.c:88 msgid "_Normalize" msgstr "_Normalizza" -#: plug-ins/common/dog.c:335 plug-ins/gimpressionist/paper.c:149 +#: plug-ins/common/dog.c:336 plug-ins/gimpressionist/paper.c:149 msgid "_Invert" msgstr "_Inverti" @@ -3339,7 +3339,7 @@ msgid "_Emboss..." msgstr "Rili_evo..." -#: plug-ins/common/emboss.c:374 plug-ins/common/emboss.c:439 +#: plug-ins/common/emboss.c:376 plug-ins/common/emboss.c:439 msgid "Emboss" msgstr "Rilievo" @@ -3363,7 +3363,7 @@ msgid "En_grave..." msgstr "_Incisione..." -#: plug-ins/common/engrave.c:181 +#: plug-ins/common/engrave.c:182 msgid "Engraving..." msgstr "Incisione..." @@ -3767,38 +3767,38 @@ msgid "_Gaussian Blur..." msgstr "Sfocatura _gaussiana..." -#: plug-ins/common/gauss.c:407 +#: plug-ins/common/gauss.c:413 msgid "Gaussian Blur..." msgstr "Sfocatura gaussiana..." -#: plug-ins/common/gauss.c:460 +#: plug-ins/common/gauss.c:461 msgid "Gaussian Blur" msgstr "Sfocatura gaussiana" #. parameter settings -#: plug-ins/common/gauss.c:483 +#: plug-ins/common/gauss.c:484 msgid "Blur Radius" msgstr "Raggio di sfocatura" -#: plug-ins/common/gauss.c:497 plug-ins/common/jigsaw.c:2456 -#: plug-ins/common/spread.c:378 +#: plug-ins/common/gauss.c:498 plug-ins/common/jigsaw.c:2456 +#: plug-ins/common/spread.c:379 msgid "_Horizontal:" msgstr "_Orizzontale:" -#: plug-ins/common/gauss.c:501 plug-ins/common/jigsaw.c:2473 -#: plug-ins/common/spread.c:382 +#: plug-ins/common/gauss.c:502 plug-ins/common/jigsaw.c:2473 +#: plug-ins/common/spread.c:383 msgid "_Vertical:" msgstr "_Verticale:" -#: plug-ins/common/gauss.c:524 +#: plug-ins/common/gauss.c:525 msgid "Blur Method" msgstr "Metodo di sfocatura" -#: plug-ins/common/gauss.c:528 +#: plug-ins/common/gauss.c:529 msgid "_IIR" msgstr "_IIR" -#: plug-ins/common/gauss.c:529 +#: plug-ins/common/gauss.c:530 msgid "_RLE" msgstr "_RLE" @@ -4102,19 +4102,19 @@ msgid "_Glass Tile..." msgstr "Piastrelle di _vetro..." -#: plug-ins/common/glasstile.c:208 +#: plug-ins/common/glasstile.c:209 msgid "Glass Tile..." msgstr "Piastrelle di vetro..." -#: plug-ins/common/glasstile.c:251 +#: plug-ins/common/glasstile.c:250 msgid "Glass Tile" msgstr "Piastrelle di vetro" -#: plug-ins/common/glasstile.c:282 +#: plug-ins/common/glasstile.c:281 msgid "Tile _width:" msgstr "_Larghezza mattonella:" -#: plug-ins/common/glasstile.c:296 plug-ins/common/mosaic.c:621 +#: plug-ins/common/glasstile.c:295 plug-ins/common/mosaic.c:621 msgid "Tile _height:" msgstr "_Altezza mattonella:" @@ -5097,15 +5097,15 @@ msgid "_Neon..." msgstr "_Neon..." -#: plug-ins/common/neon.c:204 +#: plug-ins/common/neon.c:207 msgid "Neon..." msgstr "Neon..." -#: plug-ins/common/neon.c:698 +#: plug-ins/common/neon.c:697 msgid "Neon Detection" msgstr "Rilevamento neon" -#: plug-ins/common/neon.c:743 plug-ins/common/unsharp.c:707 +#: plug-ins/common/neon.c:742 plug-ins/common/unsharp.c:678 msgid "_Amount:" msgstr "_Ammontare:" @@ -5264,7 +5264,7 @@ msgid "_Scatter RGB..." msgstr "Dis_persione RGB..." -#: plug-ins/common/noisify.c:284 +#: plug-ins/common/noisify.c:285 msgid "Adding Noise..." msgstr "Aggiunta disturbo..." @@ -5333,7 +5333,7 @@ msgid "Oili_fy..." msgstr "_Pittura ad olio..." -#: plug-ins/common/oilify.c:188 +#: plug-ins/common/oilify.c:189 msgid "Oil Painting..." msgstr "Pittura ad olio..." @@ -5468,7 +5468,7 @@ msgid "Photocopy" msgstr "Fotocopia" -#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:513 +#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:509 #: plug-ins/common/softglow.c:687 msgid "_Sharpness:" msgstr "_Filo:" @@ -6103,7 +6103,7 @@ msgid "_Ripple..." msgstr "Inc_respature..." -#: plug-ins/common/ripple.c:219 +#: plug-ins/common/ripple.c:222 msgid "Rippling..." msgstr "Increspature..." @@ -6322,19 +6322,19 @@ msgid "_Selective Gaussian Blur..." msgstr "_Sfocatura selettiva Gaussiana..." -#: plug-ins/common/sel_gauss.c:186 +#: plug-ins/common/sel_gauss.c:187 msgid "Selective Gaussian Blur..." msgstr "Sfocatura selettiva Gaussiana..." -#: plug-ins/common/sel_gauss.c:224 +#: plug-ins/common/sel_gauss.c:225 msgid "Selective Gaussian Blur" msgstr "Sfocatura selettiva Gaussiana" -#: plug-ins/common/sel_gauss.c:256 +#: plug-ins/common/sel_gauss.c:257 msgid "_Blur radius:" msgstr "Raggio di s_focatura:" -#: plug-ins/common/sel_gauss.c:266 +#: plug-ins/common/sel_gauss.c:267 msgid "_Max. delta:" msgstr "_Massimo delta:" @@ -6353,11 +6353,11 @@ #. #. * Let the user know what we're doing... #. -#: plug-ins/common/sharpen.c:315 +#: plug-ins/common/sharpen.c:311 msgid "Sharpening..." msgstr "Affilatura..." -#: plug-ins/common/sharpen.c:484 +#: plug-ins/common/sharpen.c:480 msgid "Sharpen" msgstr "Affilatura" @@ -6365,7 +6365,7 @@ msgid "_Shift..." msgstr "_Spostamento..." -#: plug-ins/common/shift.c:191 +#: plug-ins/common/shift.c:194 msgid "Shifting..." msgstr "Spostamento..." @@ -6560,23 +6560,23 @@ msgid "_Sobel..." msgstr "_Sobel..." -#: plug-ins/common/sobel.c:226 +#: plug-ins/common/sobel.c:227 msgid "Sobel Edge Detection" msgstr "Rilevamento bordi Sobel" -#: plug-ins/common/sobel.c:248 +#: plug-ins/common/sobel.c:249 msgid "Sobel _Horizontally" msgstr "Sobel _orizzontale" -#: plug-ins/common/sobel.c:260 +#: plug-ins/common/sobel.c:261 msgid "Sobel _Vertically" msgstr "Sobel _verticale" -#: plug-ins/common/sobel.c:272 +#: plug-ins/common/sobel.c:273 msgid "_Keep sign of result (one direction only)" msgstr "_Tieni conto dei risultati (solo una direzione)" -#: plug-ins/common/sobel.c:358 +#: plug-ins/common/sobel.c:359 msgid "Sobel Edge Detecting..." msgstr "Rilevamento bordi sobel in corso..." @@ -6874,15 +6874,15 @@ msgid "Sp_read..." msgstr "Sparso..." -#: plug-ins/common/spread.c:179 +#: plug-ins/common/spread.c:182 msgid "Spreading..." msgstr "Spargimento..." -#: plug-ins/common/spread.c:345 +#: plug-ins/common/spread.c:346 msgid "Spread" msgstr "Sparso" -#: plug-ins/common/spread.c:363 +#: plug-ins/common/spread.c:364 msgid "Spread Amount" msgstr "Ammontare dello spargimento" @@ -7169,7 +7169,8 @@ msgid "_Tile..." msgstr "Pias_trella..." -#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:321 +#. Set the tile cache size +#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:320 msgid "Tiling..." msgstr "Copertura..." @@ -7190,42 +7191,42 @@ msgstr "Pia_strelle piccole..." #. Get the preview image -#: plug-ins/common/tileit.c:364 +#: plug-ins/common/tileit.c:363 msgid "TileIt" msgstr "Piastrella!" #. Area for buttons etc #. Flip -#: plug-ins/common/tileit.c:407 plug-ins/ifscompose/ifscompose.c:628 +#: plug-ins/common/tileit.c:406 plug-ins/ifscompose/ifscompose.c:628 msgid "Flip" msgstr "Inverti" -#: plug-ins/common/tileit.c:455 +#: plug-ins/common/tileit.c:454 msgid "A_ll tiles" msgstr "Tutte piastre_lle" -#: plug-ins/common/tileit.c:469 +#: plug-ins/common/tileit.c:468 msgid "Al_ternate tiles" msgstr "Al_terna piastrelle" -#: plug-ins/common/tileit.c:483 +#: plug-ins/common/tileit.c:482 msgid "_Explicit tile" msgstr "Piastrella _esplicita" -#: plug-ins/common/tileit.c:489 +#: plug-ins/common/tileit.c:488 msgid "Ro_w:" msgstr "Ri_ga:" -#: plug-ins/common/tileit.c:513 +#: plug-ins/common/tileit.c:512 msgid "Col_umn:" msgstr "Col_onna:" -#: plug-ins/common/tileit.c:565 +#: plug-ins/common/tileit.c:564 msgid "O_pacity:" msgstr "O_pacità:" #. Lower frame saying howmany segments -#: plug-ins/common/tileit.c:574 +#: plug-ins/common/tileit.c:573 msgid "Number of Segments" msgstr "Numero di segmenti" @@ -7374,15 +7375,15 @@ msgid "Unit Editor" msgstr "Editor unità" -#: plug-ins/common/unsharp.c:149 +#: plug-ins/common/unsharp.c:143 msgid "_Unsharp Mask..." msgstr "Maschera sf_uocata..." -#: plug-ins/common/unsharp.c:493 +#: plug-ins/common/unsharp.c:468 msgid "Merging..." msgstr "Incolla..." -#: plug-ins/common/unsharp.c:664 +#: plug-ins/common/unsharp.c:635 msgid "Unsharp Mask" msgstr "Maschera sfuocata" @@ -8423,19 +8424,19 @@ msgid "_Zoom:" msgstr "_Zoom:" -#: plug-ins/gfig/gfig-bezier.c:452 +#: plug-ins/gfig/gfig-bezier.c:448 msgid "Closed" msgstr "Chiuso" -#: plug-ins/gfig/gfig-bezier.c:457 +#: plug-ins/gfig/gfig-bezier.c:453 msgid "Close curve on completion" msgstr "Chiudi curva al completamento" -#: plug-ins/gfig/gfig-bezier.c:462 +#: plug-ins/gfig/gfig-bezier.c:458 msgid "Show Line Frame" msgstr "Mostra linea fotogrammi" -#: plug-ins/gfig/gfig-bezier.c:467 +#: plug-ins/gfig/gfig-bezier.c:463 msgid "Draws lines between the control points. Only during curve creation" msgstr "" "Disegna linee tra punti di controllo. Solo durante la creazione della curva" diff -uraN gimp-2.2.0/po-plug-ins/ja.gmo gimp-2.2.1/po-plug-ins/ja.gmo --- gimp-2.2.0/po-plug-ins/ja.gmo 2004-12-19 03:34:23.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/ja.gmo 2004-12-28 16:59:07.000000000 +0100 @@ -242,7 +242,7 @@ which has no alpha channel.Z scale (size)Z:ZealousCropping(tm)...ZoomZoom inZoom in (make image bigger)Zoom outZoom out (make image smaller)_3x3_Abbreviation:_Adaptive_Additive_Advanced_Alpha_Alpha:_Amount:_Amplitude:_Angle:_Animate_Antialiasing_Automatically convert_Azimuth:_Background_Base URL:_Bilinear_Black_Blacken_Blast_Blend_Blue_Blue:_Border:_Bottom:_Box_Brightness_Brightness:_Brush_Bump Map_Bumpmap_Copy_Deflate_Depth:_Derivative_Description:_Detail:_Digits:_Displacement:_Distorted_Dots_Edit_Effect Image:_Elevation:_Emboss_Encapsulated PostScript_Environment Map_Exponent:_Factor:_File_Font:_Force_Ftp Site_Gamma:_General_Gopher_Gradient_Gray:_Green_Green:_Grey_Grow_Height_Height:_Help_Hex_Hidden_Holdness:_Horizontal_Horizontal:_Horz. Spacing:_Hue_ID:_Ideal_Ignore_Inch_Input SPI:_Insert_Interlacing (Adam7)_Invert_JPEG_JavaScript_Keep NCSA circles true_Kill_LZW_Large staggered_Left_Left Start at:_Light_Linear_Lines_Link_Mapping_Material_Max (%):_Max Depth:_Millimeter_Mirror_Misc Ops._Move_None_Normal_Pack Bits_Period:_Phase:_Ping Pong_Plural:_Polygon_Presets_Preview_Preview!_Prompt for area info_Psychobilly_RGB_RLE compression_RLE encoded_Radial_Radius:_Randomize_Rays_Rectangle_Red:_Redo %s_Reflective_Remove_Rendering_Require default URL_Right_Right Border_Rotated_Saturation_Saturation:_Search:_Second Flares_Settings_Sharpness:_Size_Size:_Smear_Snap-To Grid Enabled_Speed:_Spokes:_Square_Squares_Staggered_Strength:_Symbol:_Target frame name/ID: (optional - used for FRAMES only)_Thickness:_Threshold_Threshold:_Title:_Tools_Top Start at:_Top:_Transparent_URL to activate when this area is clicked: (required)_Undo %s_Update_Upper Border_Use double-sized grab handles_Value_Value:_Variation:_Vert. Spacing:_Vertical_Vertical:_View_Voronoi_Warp_Waterlevel:_Wavelength:_Web Site_White_Wide-striped_Width_Width:_Wind_Wrap_X Scale:_X:_Y Scale:_Y:_Yellow_Z:_Zoom_Zoom:`Default' is created.afteralphablackblueblueness_cb470blueness_cb470fblueness_cb709blueness_cb709fcmcyancyan_ke-_mailgreenhueinvalid formatted GFlare file: %s k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnot found %s in gflares_listpixelsredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsin^p, steppedsin^p-based functionvaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: gimp HEAD Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2002-07-12 01:30+0900 Last-Translator: Ryoichi INAGAKI Language-Team: Japanese diff -uraN gimp-2.2.0/po-plug-ins/ja.po gimp-2.2.1/po-plug-ins/ja.po --- gimp-2.2.0/po-plug-ins/ja.po 2004-12-19 03:34:13.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/ja.po 2004-12-28 16:58:56.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: gimp HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2002-07-12 01:30+0900\n" "Last-Translator: Ryoichi INAGAKI \n" "Language-Team: Japanese \n" @@ -1001,7 +1001,7 @@ msgid "Antialiasing quality. Higher is better, but slower" msgstr "アンチアエイリアシングの品位. 高い程綺麗だが遅い." -#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:720 +#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:691 #: plug-ins/common/wind.c:993 plug-ins/imagemap/imap_preferences.c:539 msgid "_Threshold:" msgstr "しきい値(_T):" @@ -2213,12 +2213,12 @@ msgstr "向き" #: plug-ins/common/blinds.c:259 plug-ins/common/ripple.c:539 -#: plug-ins/common/tileit.c:419 plug-ins/pagecurl/pagecurl.c:530 +#: plug-ins/common/tileit.c:418 plug-ins/pagecurl/pagecurl.c:530 msgid "_Horizontal" msgstr "水平(_H)" #: plug-ins/common/blinds.c:260 plug-ins/common/ripple.c:540 -#: plug-ins/common/tileit.c:429 plug-ins/pagecurl/pagecurl.c:529 +#: plug-ins/common/tileit.c:428 plug-ins/pagecurl/pagecurl.c:529 msgid "_Vertical" msgstr "鉛直(_V)" @@ -2241,7 +2241,7 @@ msgid "_Blur" msgstr "説明:" -#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:383 +#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:432 msgid "Blurring..." msgstr "ぼかしています..." @@ -2362,26 +2362,26 @@ msgid "Ca_rtoon..." msgstr "表題(_A)" -#: plug-ins/common/cartoon.c:228 plug-ins/common/dog.c:246 -#: plug-ins/common/gauss.c:430 plug-ins/common/neon.c:222 -#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:203 +#: plug-ins/common/cartoon.c:229 plug-ins/common/dog.c:247 +#: plug-ins/common/gauss.c:431 plug-ins/common/neon.c:221 +#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:204 #: plug-ins/common/softglow.c:220 plug-ins/gflare/gflare.c:972 #: plug-ins/sgi/sgi.c:528 plug-ins/xjt/xjt.c:1673 #, fuzzy msgid "Cannot operate on indexed color images." msgstr "xjt: インデックス画像には適用できません" -#: plug-ins/common/cartoon.c:807 +#: plug-ins/common/cartoon.c:808 #, fuzzy msgid "Cartoon" msgstr "表題(_A)" -#: plug-ins/common/cartoon.c:837 plug-ins/common/photocopy.c:867 +#: plug-ins/common/cartoon.c:838 plug-ins/common/photocopy.c:867 #, fuzzy msgid "_Mask radius:" msgstr "ぼかし半径(_B):" -#: plug-ins/common/cartoon.c:851 +#: plug-ins/common/cartoon.c:852 #, fuzzy msgid "_Percent black:" msgstr "パーセント" @@ -2553,29 +2553,29 @@ msgid "Colorify Custom Color" msgstr "単色塗りカスタムカラー" -#: plug-ins/common/colortoalpha.c:105 +#: plug-ins/common/colortoalpha.c:104 #, fuzzy msgid "Color to _Alpha..." msgstr "色を透明度に" -#: plug-ins/common/colortoalpha.c:183 +#: plug-ins/common/colortoalpha.c:181 msgid "Removing color..." msgstr "カラーマップを削除しています..." -#: plug-ins/common/colortoalpha.c:364 +#: plug-ins/common/colortoalpha.c:377 msgid "Color to Alpha" msgstr "色を透明度に" -#: plug-ins/common/colortoalpha.c:389 plug-ins/common/mapcolor.c:424 +#: plug-ins/common/colortoalpha.c:402 plug-ins/common/mapcolor.c:424 #: plug-ins/gfli/gfli.c:835 plug-ins/gfli/gfli.c:898 msgid "From:" msgstr "最初:" -#: plug-ins/common/colortoalpha.c:393 +#: plug-ins/common/colortoalpha.c:406 msgid "Color to Alpha Color Picker" msgstr "「色を透明度に」色選択" -#: plug-ins/common/colortoalpha.c:407 +#: plug-ins/common/colortoalpha.c:420 #, fuzzy msgid "to alpha" msgstr "を透明度に:" @@ -2902,26 +2902,26 @@ msgid "_Cubism..." msgstr "キュービズム" -#: plug-ins/common/cubism.c:267 +#: plug-ins/common/cubism.c:269 msgid "Cubism" msgstr "キュービズム" -#: plug-ins/common/cubism.c:296 +#: plug-ins/common/cubism.c:298 #, fuzzy msgid "_Tile size:" msgstr "タイルサイズ(_T):" -#: plug-ins/common/cubism.c:309 +#: plug-ins/common/cubism.c:311 #, fuzzy msgid "T_ile saturation:" msgstr "タイル彩度(_I):" -#: plug-ins/common/cubism.c:320 +#: plug-ins/common/cubism.c:322 #, fuzzy msgid "_Use background color" msgstr "背景色を使用(_U)" -#: plug-ins/common/cubism.c:410 +#: plug-ins/common/cubism.c:412 #, fuzzy msgid "Cubistic Transformation..." msgstr "キュービズム変換" @@ -3318,44 +3318,44 @@ msgid "Des_peckle..." msgstr "非斑化" -#: plug-ins/common/despeckle.c:420 plug-ins/common/despeckle.c:642 +#: plug-ins/common/despeckle.c:418 plug-ins/common/despeckle.c:640 msgid "Despeckle" msgstr "非斑化" #. #. * Filter type controls... #. -#: plug-ins/common/despeckle.c:446 plug-ins/gimpressionist/orientmap.c:616 +#: plug-ins/common/despeckle.c:444 plug-ins/gimpressionist/orientmap.c:616 msgid "Type" msgstr "種類" #. parameter settings -#: plug-ins/common/despeckle.c:456 +#: plug-ins/common/despeckle.c:454 #, fuzzy msgid "Median" msgstr "ラジアン" -#: plug-ins/common/despeckle.c:462 +#: plug-ins/common/despeckle.c:460 msgid "_Adaptive" msgstr "適応的(_A)" -#: plug-ins/common/despeckle.c:472 +#: plug-ins/common/despeckle.c:470 msgid "R_ecursive" msgstr "再帰的(_E)" -#: plug-ins/common/despeckle.c:496 plug-ins/common/neon.c:728 +#: plug-ins/common/despeckle.c:494 plug-ins/common/neon.c:727 #: plug-ins/common/nlfilt.c:1083 plug-ins/common/nova.c:359 -#: plug-ins/common/unsharp.c:694 plug-ins/common/whirlpinch.c:588 +#: plug-ins/common/unsharp.c:665 plug-ins/common/whirlpinch.c:588 #: plug-ins/gflare/gflare.c:2686 plug-ins/imagemap/imap_circle.c:278 msgid "_Radius:" msgstr "半径(_R):" -#: plug-ins/common/despeckle.c:512 +#: plug-ins/common/despeckle.c:510 #, fuzzy msgid "_Black level:" msgstr "黒レベル(_B):" -#: plug-ins/common/despeckle.c:528 +#: plug-ins/common/despeckle.c:526 #, fuzzy msgid "_White level:" msgstr "白レベル(_W):" @@ -3454,7 +3454,7 @@ msgid "_Displace..." msgstr "ずらしています..." -#: plug-ins/common/displace.c:228 +#: plug-ins/common/displace.c:231 msgid "Displacing..." msgstr "ずらしています..." @@ -3494,32 +3494,32 @@ msgid "Difference of Gaussians..." msgstr "選択的ガウシアンぼかし..." -#: plug-ins/common/dog.c:222 plug-ins/common/dog.c:273 +#: plug-ins/common/dog.c:227 plug-ins/common/dog.c:274 #, fuzzy msgid "DoG Edge Detect" msgstr "輪郭抽出" -#: plug-ins/common/dog.c:294 +#: plug-ins/common/dog.c:295 #, fuzzy msgid "Smoothing parameters" msgstr "パラメータコピー" -#: plug-ins/common/dog.c:308 +#: plug-ins/common/dog.c:309 #, fuzzy msgid "_Radius 1:" msgstr "半径(_R):" -#: plug-ins/common/dog.c:312 +#: plug-ins/common/dog.c:313 #, fuzzy msgid "R_adius 2:" msgstr "半径(_A):" -#: plug-ins/common/dog.c:324 plug-ins/common/normalize.c:88 +#: plug-ins/common/dog.c:325 plug-ins/common/normalize.c:88 #, fuzzy msgid "_Normalize" msgstr "標準(_N)" -#: plug-ins/common/dog.c:335 plug-ins/gimpressionist/paper.c:149 +#: plug-ins/common/dog.c:336 plug-ins/gimpressionist/paper.c:149 msgid "_Invert" msgstr "反転(_I)" @@ -3580,7 +3580,7 @@ msgid "_Emboss..." msgstr "エンボス(_E)" -#: plug-ins/common/emboss.c:374 plug-ins/common/emboss.c:439 +#: plug-ins/common/emboss.c:376 plug-ins/common/emboss.c:439 msgid "Emboss" msgstr "エンボス" @@ -3605,7 +3605,7 @@ msgid "En_grave..." msgstr "彫金しています..." -#: plug-ins/common/engrave.c:181 +#: plug-ins/common/engrave.c:182 msgid "Engraving..." msgstr "彫金しています..." @@ -4044,41 +4044,41 @@ msgid "_Gaussian Blur..." msgstr "/フィルタ/ぼかし/ガウシアンぼかし (IIR)..." -#: plug-ins/common/gauss.c:407 +#: plug-ins/common/gauss.c:413 #, fuzzy msgid "Gaussian Blur..." msgstr "/フィルタ/ぼかし/ガウシアンぼかし (IIR)..." -#: plug-ins/common/gauss.c:460 +#: plug-ins/common/gauss.c:461 #, fuzzy msgid "Gaussian Blur" msgstr "IIR ガウシアンぼかし" #. parameter settings -#: plug-ins/common/gauss.c:483 +#: plug-ins/common/gauss.c:484 msgid "Blur Radius" msgstr "ぼかし半径" -#: plug-ins/common/gauss.c:497 plug-ins/common/jigsaw.c:2456 -#: plug-ins/common/spread.c:378 +#: plug-ins/common/gauss.c:498 plug-ins/common/jigsaw.c:2456 +#: plug-ins/common/spread.c:379 msgid "_Horizontal:" msgstr "水平(_H)" -#: plug-ins/common/gauss.c:501 plug-ins/common/jigsaw.c:2473 -#: plug-ins/common/spread.c:382 +#: plug-ins/common/gauss.c:502 plug-ins/common/jigsaw.c:2473 +#: plug-ins/common/spread.c:383 msgid "_Vertical:" msgstr "鉛直(_V):" -#: plug-ins/common/gauss.c:524 +#: plug-ins/common/gauss.c:525 #, fuzzy msgid "Blur Method" msgstr "ぼかしの種類" -#: plug-ins/common/gauss.c:528 +#: plug-ins/common/gauss.c:529 msgid "_IIR" msgstr "" -#: plug-ins/common/gauss.c:529 +#: plug-ins/common/gauss.c:530 #, fuzzy msgid "_RLE" msgstr "RLE" @@ -4402,20 +4402,20 @@ msgid "_Glass Tile..." msgstr "ガラスタイルにしています..." -#: plug-ins/common/glasstile.c:208 +#: plug-ins/common/glasstile.c:209 msgid "Glass Tile..." msgstr "ガラスタイルにしています..." -#: plug-ins/common/glasstile.c:251 +#: plug-ins/common/glasstile.c:250 msgid "Glass Tile" msgstr "ガラスタイル" -#: plug-ins/common/glasstile.c:282 +#: plug-ins/common/glasstile.c:281 #, fuzzy msgid "Tile _width:" msgstr "タイル幅(_W):" -#: plug-ins/common/glasstile.c:296 plug-ins/common/mosaic.c:621 +#: plug-ins/common/glasstile.c:295 plug-ins/common/mosaic.c:621 #, fuzzy msgid "Tile _height:" msgstr "タイル高(_H):" @@ -5485,17 +5485,17 @@ msgid "_Neon..." msgstr "ビデオ/RGB..." -#: plug-ins/common/neon.c:204 +#: plug-ins/common/neon.c:207 #, fuzzy msgid "Neon..." msgstr "開く..." -#: plug-ins/common/neon.c:698 +#: plug-ins/common/neon.c:697 #, fuzzy msgid "Neon Detection" msgstr "輪郭抽出" -#: plug-ins/common/neon.c:743 plug-ins/common/unsharp.c:707 +#: plug-ins/common/neon.c:742 plug-ins/common/unsharp.c:678 msgid "_Amount:" msgstr "量(_A):" @@ -5665,7 +5665,7 @@ msgid "_Scatter RGB..." msgstr "HSV 散乱..." -#: plug-ins/common/noisify.c:284 +#: plug-ins/common/noisify.c:285 msgid "Adding Noise..." msgstr "ノイズを追加しています..." @@ -5741,7 +5741,7 @@ msgid "Oili_fy..." msgstr "油絵化" -#: plug-ins/common/oilify.c:188 +#: plug-ins/common/oilify.c:189 msgid "Oil Painting..." msgstr "油絵化しています..." @@ -5891,7 +5891,7 @@ msgid "Photocopy" msgstr "写真" -#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:513 +#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:509 #: plug-ins/common/softglow.c:687 msgid "_Sharpness:" msgstr "明瞭度(_S):" @@ -6577,7 +6577,7 @@ msgid "_Ripple..." msgstr "波立たせています..." -#: plug-ins/common/ripple.c:219 +#: plug-ins/common/ripple.c:222 msgid "Rippling..." msgstr "波立たせています..." @@ -6818,20 +6818,20 @@ msgid "_Selective Gaussian Blur..." msgstr "選択的ガウシアンぼかし..." -#: plug-ins/common/sel_gauss.c:186 +#: plug-ins/common/sel_gauss.c:187 msgid "Selective Gaussian Blur..." msgstr "選択的ガウシアンぼかし..." -#: plug-ins/common/sel_gauss.c:224 +#: plug-ins/common/sel_gauss.c:225 msgid "Selective Gaussian Blur" msgstr "選択的ガウシアンぼかし" -#: plug-ins/common/sel_gauss.c:256 +#: plug-ins/common/sel_gauss.c:257 #, fuzzy msgid "_Blur radius:" msgstr "ぼかし半径(_B):" -#: plug-ins/common/sel_gauss.c:266 +#: plug-ins/common/sel_gauss.c:267 #, fuzzy msgid "_Max. delta:" msgstr "最大 Δ(_M):" @@ -6853,11 +6853,11 @@ #. #. * Let the user know what we're doing... #. -#: plug-ins/common/sharpen.c:315 +#: plug-ins/common/sharpen.c:311 msgid "Sharpening..." msgstr "明瞭にしています..." -#: plug-ins/common/sharpen.c:484 +#: plug-ins/common/sharpen.c:480 #, fuzzy msgid "Sharpen" msgstr "明瞭化 - %s" @@ -6867,7 +6867,7 @@ msgid "_Shift..." msgstr "ずらしています..." -#: plug-ins/common/shift.c:191 +#: plug-ins/common/shift.c:194 msgid "Shifting..." msgstr "ずらしています..." @@ -7078,24 +7078,24 @@ msgid "_Sobel..." msgstr "ソース..." -#: plug-ins/common/sobel.c:226 +#: plug-ins/common/sobel.c:227 msgid "Sobel Edge Detection" msgstr "ソーベル輪郭抽出" -#: plug-ins/common/sobel.c:248 +#: plug-ins/common/sobel.c:249 msgid "Sobel _Horizontally" msgstr "水平方向ソーベル(_H)" -#: plug-ins/common/sobel.c:260 +#: plug-ins/common/sobel.c:261 msgid "Sobel _Vertically" msgstr "鉛直方向ソーベル(_V)" -#: plug-ins/common/sobel.c:272 +#: plug-ins/common/sobel.c:273 #, fuzzy msgid "_Keep sign of result (one direction only)" msgstr "結果の符号を保存する (一方向のみ)(_K)" -#: plug-ins/common/sobel.c:358 +#: plug-ins/common/sobel.c:359 msgid "Sobel Edge Detecting..." msgstr "ソーベル輪郭を抽出しています..." @@ -7421,15 +7421,15 @@ msgid "Sp_read..." msgstr "拡散させています..." -#: plug-ins/common/spread.c:179 +#: plug-ins/common/spread.c:182 msgid "Spreading..." msgstr "拡散させています..." -#: plug-ins/common/spread.c:345 +#: plug-ins/common/spread.c:346 msgid "Spread" msgstr "拡散" -#: plug-ins/common/spread.c:363 +#: plug-ins/common/spread.c:364 msgid "Spread Amount" msgstr "拡散量" @@ -7726,7 +7726,8 @@ msgid "_Tile..." msgstr "タイルを生成しています..." -#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:321 +#. Set the tile cache size +#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:320 msgid "Tiling..." msgstr "並べています..." @@ -7748,45 +7749,45 @@ msgstr "全てのタイル(_L)" #. Get the preview image -#: plug-ins/common/tileit.c:364 +#: plug-ins/common/tileit.c:363 msgid "TileIt" msgstr "それを並べる" #. Area for buttons etc #. Flip -#: plug-ins/common/tileit.c:407 plug-ins/ifscompose/ifscompose.c:628 +#: plug-ins/common/tileit.c:406 plug-ins/ifscompose/ifscompose.c:628 msgid "Flip" msgstr "反転" -#: plug-ins/common/tileit.c:455 +#: plug-ins/common/tileit.c:454 #, fuzzy msgid "A_ll tiles" msgstr "全てのタイル(_L)" -#: plug-ins/common/tileit.c:469 +#: plug-ins/common/tileit.c:468 #, fuzzy msgid "Al_ternate tiles" msgstr "一つおきのタイル(_T)" -#: plug-ins/common/tileit.c:483 +#: plug-ins/common/tileit.c:482 #, fuzzy msgid "_Explicit tile" msgstr "明示したタイル(_E)" -#: plug-ins/common/tileit.c:489 +#: plug-ins/common/tileit.c:488 msgid "Ro_w:" msgstr "列(_W):" -#: plug-ins/common/tileit.c:513 +#: plug-ins/common/tileit.c:512 msgid "Col_umn:" msgstr "行(_U):" -#: plug-ins/common/tileit.c:565 +#: plug-ins/common/tileit.c:564 msgid "O_pacity:" msgstr "不透明度(_P):" #. Lower frame saying howmany segments -#: plug-ins/common/tileit.c:574 +#: plug-ins/common/tileit.c:573 #, fuzzy msgid "Number of Segments" msgstr "区切りの数(_N):" @@ -7936,16 +7937,16 @@ msgid "Unit Editor" msgstr "単位エディタ" -#: plug-ins/common/unsharp.c:149 +#: plug-ins/common/unsharp.c:143 #, fuzzy msgid "_Unsharp Mask..." msgstr "非シャープ化マスク" -#: plug-ins/common/unsharp.c:493 +#: plug-ins/common/unsharp.c:468 msgid "Merging..." msgstr "混ぜ合わせています..." -#: plug-ins/common/unsharp.c:664 +#: plug-ins/common/unsharp.c:635 msgid "Unsharp Mask" msgstr "非シャープ化マスク" @@ -9058,19 +9059,19 @@ msgid "_Zoom:" msgstr "拡大(_Z):" -#: plug-ins/gfig/gfig-bezier.c:452 +#: plug-ins/gfig/gfig-bezier.c:448 msgid "Closed" msgstr "閉じる" -#: plug-ins/gfig/gfig-bezier.c:457 +#: plug-ins/gfig/gfig-bezier.c:453 msgid "Close curve on completion" msgstr "カーブを閉じて完了" -#: plug-ins/gfig/gfig-bezier.c:462 +#: plug-ins/gfig/gfig-bezier.c:458 msgid "Show Line Frame" msgstr "漸近線の表示" -#: plug-ins/gfig/gfig-bezier.c:467 +#: plug-ins/gfig/gfig-bezier.c:463 msgid "Draws lines between the control points. Only during curve creation" msgstr "端点間に直線を引く. カーブが作られている時だけ" diff -uraN gimp-2.2.0/po-plug-ins/ko.gmo gimp-2.2.1/po-plug-ins/ko.gmo --- gimp-2.2.0/po-plug-ins/ko.gmo 2004-12-19 03:34:23.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/ko.gmo 2004-12-28 16:59:07.000000000 +0100 @@ -33,7 +33,7 @@ UnitUse a transparent background; Only the strokes painted will be visibleUse average valueUse reverse valueValueValue:Van Gogh (LIC)VectorsVoronoi-mode makes only the smvector closest to the given point have any influenceVoronoi-mode makes only the vector closest to the given point have any influenceWarning: the source and the destination are the same channel.WarpWavesWidth:With gradient power (0,1)With p and random (0,1)With random power (0,1)With random power (0,10)WrapX:XBM OptionsY:YellowYellow:Yellow_KYou can not rotate the whole image if there's a floating selection.You can not rotate the whole image if there's a selection.Z:ZealousCropping(tm)...Zoom in (make image bigger)Zoom out (make image smaller)alphablackbluec_astretch: cmap was NULL! Quitting... cyancyan_kgreenhuekx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedmagentamagenta_kredsaturationsin^p, steppedsin^p-based functionvalueyellowyellow_kProject-Id-Version: gimp-plug-ins 1.1.10 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2003-06-05 07:54+0800 Last-Translator: Young-Boo Park Language-Team: Korean diff -uraN gimp-2.2.0/po-plug-ins/ko.po gimp-2.2.1/po-plug-ins/ko.po --- gimp-2.2.0/po-plug-ins/ko.po 2004-12-19 03:34:13.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/ko.po 2004-12-28 16:58:57.000000000 +0100 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: gimp-plug-ins 1.1.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2003-06-05 07:54+0800\n" "Last-Translator: Young-Boo Park \n" "Language-Team: Korean \n" @@ -1032,7 +1032,7 @@ msgid "Antialiasing quality. Higher is better, but slower" msgstr "앤티앨리어싱 특성. 더 높게 하지만 더 느리게" -#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:720 +#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:691 #: plug-ins/common/wind.c:993 plug-ins/imagemap/imap_preferences.c:539 #, fuzzy msgid "_Threshold:" @@ -2293,12 +2293,12 @@ msgstr "적응성" #: plug-ins/common/blinds.c:259 plug-ins/common/ripple.c:539 -#: plug-ins/common/tileit.c:419 plug-ins/pagecurl/pagecurl.c:530 +#: plug-ins/common/tileit.c:418 plug-ins/pagecurl/pagecurl.c:530 msgid "_Horizontal" msgstr "" #: plug-ins/common/blinds.c:260 plug-ins/common/ripple.c:540 -#: plug-ins/common/tileit.c:429 plug-ins/pagecurl/pagecurl.c:529 +#: plug-ins/common/tileit.c:428 plug-ins/pagecurl/pagecurl.c:529 #, fuzzy msgid "_Vertical" msgstr "구" @@ -2324,7 +2324,7 @@ msgid "_Blur" msgstr "커버설명 :" -#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:383 +#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:432 #, fuzzy msgid "Blurring..." msgstr "색상화 중..." @@ -2453,26 +2453,26 @@ msgid "Ca_rtoon..." msgstr "옵션" -#: plug-ins/common/cartoon.c:228 plug-ins/common/dog.c:246 -#: plug-ins/common/gauss.c:430 plug-ins/common/neon.c:222 -#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:203 +#: plug-ins/common/cartoon.c:229 plug-ins/common/dog.c:247 +#: plug-ins/common/gauss.c:431 plug-ins/common/neon.c:221 +#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:204 #: plug-ins/common/softglow.c:220 plug-ins/gflare/gflare.c:972 #: plug-ins/sgi/sgi.c:528 plug-ins/xjt/xjt.c:1673 #, fuzzy msgid "Cannot operate on indexed color images." msgstr "PS: 알수 없는 이미지 유형은 작동되지 않습니다." -#: plug-ins/common/cartoon.c:807 +#: plug-ins/common/cartoon.c:808 #, fuzzy msgid "Cartoon" msgstr "옵션" -#: plug-ins/common/cartoon.c:837 plug-ins/common/photocopy.c:867 +#: plug-ins/common/cartoon.c:838 plug-ins/common/photocopy.c:867 #, fuzzy msgid "_Mask radius:" msgstr "반경" -#: plug-ins/common/cartoon.c:851 +#: plug-ins/common/cartoon.c:852 #, fuzzy msgid "_Percent black:" msgstr "퍼센트" @@ -2648,33 +2648,33 @@ msgid "Colorify Custom Color" msgstr "색상화 보통 색상" -#: plug-ins/common/colortoalpha.c:105 +#: plug-ins/common/colortoalpha.c:104 #, fuzzy msgid "Color to _Alpha..." msgstr "색상 :" -#: plug-ins/common/colortoalpha.c:183 +#: plug-ins/common/colortoalpha.c:181 #, fuzzy msgid "Removing color..." msgstr "회전중..." -#: plug-ins/common/colortoalpha.c:364 +#: plug-ins/common/colortoalpha.c:377 #, fuzzy msgid "Color to Alpha" msgstr "색상 :" -#: plug-ins/common/colortoalpha.c:389 plug-ins/common/mapcolor.c:424 +#: plug-ins/common/colortoalpha.c:402 plug-ins/common/mapcolor.c:424 #: plug-ins/gfli/gfli.c:835 plug-ins/gfli/gfli.c:898 #, fuzzy msgid "From:" msgstr "어디에서 :" -#: plug-ins/common/colortoalpha.c:393 +#: plug-ins/common/colortoalpha.c:406 #, fuzzy msgid "Color to Alpha Color Picker" msgstr "Script-Fu 색상 채취" -#: plug-ins/common/colortoalpha.c:407 +#: plug-ins/common/colortoalpha.c:420 #, fuzzy msgid "to alpha" msgstr "알파" @@ -3013,26 +3013,26 @@ msgid "_Cubism..." msgstr "입체파" -#: plug-ins/common/cubism.c:267 +#: plug-ins/common/cubism.c:269 msgid "Cubism" msgstr "입체파" -#: plug-ins/common/cubism.c:296 +#: plug-ins/common/cubism.c:298 #, fuzzy msgid "_Tile size:" msgstr "타일 크기" -#: plug-ins/common/cubism.c:309 +#: plug-ins/common/cubism.c:311 #, fuzzy msgid "T_ile saturation:" msgstr "타일 채도" -#: plug-ins/common/cubism.c:320 +#: plug-ins/common/cubism.c:322 #, fuzzy msgid "_Use background color" msgstr "배경 색상 사용" -#: plug-ins/common/cubism.c:410 +#: plug-ins/common/cubism.c:412 #, fuzzy msgid "Cubistic Transformation..." msgstr "입체적 변환" @@ -3437,7 +3437,7 @@ msgid "Des_peckle..." msgstr "줄무늬 없애는 중..." -#: plug-ins/common/despeckle.c:420 plug-ins/common/despeckle.c:642 +#: plug-ins/common/despeckle.c:418 plug-ins/common/despeckle.c:640 #, fuzzy msgid "Despeckle" msgstr "줄무늬 없애는 중..." @@ -3445,41 +3445,41 @@ #. #. * Filter type controls... #. -#: plug-ins/common/despeckle.c:446 plug-ins/gimpressionist/orientmap.c:616 +#: plug-ins/common/despeckle.c:444 plug-ins/gimpressionist/orientmap.c:616 #, fuzzy msgid "Type" msgstr "유형:" #. parameter settings -#: plug-ins/common/despeckle.c:456 +#: plug-ins/common/despeckle.c:454 #, fuzzy msgid "Median" msgstr "반경" -#: plug-ins/common/despeckle.c:462 +#: plug-ins/common/despeckle.c:460 #, fuzzy msgid "_Adaptive" msgstr "적응성있게" -#: plug-ins/common/despeckle.c:472 +#: plug-ins/common/despeckle.c:470 #, fuzzy msgid "R_ecursive" msgstr "크기조정" -#: plug-ins/common/despeckle.c:496 plug-ins/common/neon.c:728 +#: plug-ins/common/despeckle.c:494 plug-ins/common/neon.c:727 #: plug-ins/common/nlfilt.c:1083 plug-ins/common/nova.c:359 -#: plug-ins/common/unsharp.c:694 plug-ins/common/whirlpinch.c:588 +#: plug-ins/common/unsharp.c:665 plug-ins/common/whirlpinch.c:588 #: plug-ins/gflare/gflare.c:2686 plug-ins/imagemap/imap_circle.c:278 #, fuzzy msgid "_Radius:" msgstr "반경" -#: plug-ins/common/despeckle.c:512 +#: plug-ins/common/despeckle.c:510 #, fuzzy msgid "_Black level:" msgstr "검은색:" -#: plug-ins/common/despeckle.c:528 +#: plug-ins/common/despeckle.c:526 #, fuzzy msgid "_White level:" msgstr "수평면" @@ -3580,7 +3580,7 @@ msgid "_Displace..." msgstr "줄무늬 없애는 중..." -#: plug-ins/common/displace.c:228 +#: plug-ins/common/displace.c:231 #, fuzzy msgid "Displacing..." msgstr "줄무늬 없애는 중..." @@ -3625,32 +3625,32 @@ msgid "Difference of Gaussians..." msgstr "선택적인 읽기" -#: plug-ins/common/dog.c:222 plug-ins/common/dog.c:273 +#: plug-ins/common/dog.c:227 plug-ins/common/dog.c:274 #, fuzzy msgid "DoG Edge Detect" msgstr "라이트 방향" -#: plug-ins/common/dog.c:294 +#: plug-ins/common/dog.c:295 #, fuzzy msgid "Smoothing parameters" msgstr "파라미터" -#: plug-ins/common/dog.c:308 +#: plug-ins/common/dog.c:309 #, fuzzy msgid "_Radius 1:" msgstr "반경" -#: plug-ins/common/dog.c:312 +#: plug-ins/common/dog.c:313 #, fuzzy msgid "R_adius 2:" msgstr "반경" -#: plug-ins/common/dog.c:324 plug-ins/common/normalize.c:88 +#: plug-ins/common/dog.c:325 plug-ins/common/normalize.c:88 #, fuzzy msgid "_Normalize" msgstr "보통" -#: plug-ins/common/dog.c:335 plug-ins/gimpressionist/paper.c:149 +#: plug-ins/common/dog.c:336 plug-ins/gimpressionist/paper.c:149 #, fuzzy msgid "_Invert" msgstr "반대로(invert)" @@ -3712,7 +3712,7 @@ msgid "_Emboss..." msgstr " 대하여... " -#: plug-ins/common/emboss.c:374 plug-ins/common/emboss.c:439 +#: plug-ins/common/emboss.c:376 plug-ins/common/emboss.c:439 msgid "Emboss" msgstr "" @@ -3740,7 +3740,7 @@ msgid "En_grave..." msgstr "통일화 중..." -#: plug-ins/common/engrave.c:181 +#: plug-ins/common/engrave.c:182 #, fuzzy msgid "Engraving..." msgstr "통일화 중..." @@ -4223,43 +4223,43 @@ msgid "_Gaussian Blur..." msgstr "/필터/흐릿하게/흐릿하게" -#: plug-ins/common/gauss.c:407 +#: plug-ins/common/gauss.c:413 #, fuzzy msgid "Gaussian Blur..." msgstr "/필터/흐릿하게/흐릿하게" -#: plug-ins/common/gauss.c:460 +#: plug-ins/common/gauss.c:461 #, fuzzy msgid "Gaussian Blur" msgstr "선택적인 읽기" #. parameter settings -#: plug-ins/common/gauss.c:483 +#: plug-ins/common/gauss.c:484 #, fuzzy msgid "Blur Radius" msgstr "반경" -#: plug-ins/common/gauss.c:497 plug-ins/common/jigsaw.c:2456 -#: plug-ins/common/spread.c:378 +#: plug-ins/common/gauss.c:498 plug-ins/common/jigsaw.c:2456 +#: plug-ins/common/spread.c:379 msgid "_Horizontal:" msgstr "" -#: plug-ins/common/gauss.c:501 plug-ins/common/jigsaw.c:2473 -#: plug-ins/common/spread.c:382 +#: plug-ins/common/gauss.c:502 plug-ins/common/jigsaw.c:2473 +#: plug-ins/common/spread.c:383 #, fuzzy msgid "_Vertical:" msgstr "구" -#: plug-ins/common/gauss.c:524 +#: plug-ins/common/gauss.c:525 #, fuzzy msgid "Blur Method" msgstr "커버설명 :" -#: plug-ins/common/gauss.c:528 +#: plug-ins/common/gauss.c:529 msgid "_IIR" msgstr "" -#: plug-ins/common/gauss.c:529 +#: plug-ins/common/gauss.c:530 msgid "_RLE" msgstr "" @@ -4580,20 +4580,20 @@ msgid "_Glass Tile..." msgstr "페이퍼" -#: plug-ins/common/glasstile.c:208 +#: plug-ins/common/glasstile.c:209 msgid "Glass Tile..." msgstr "" -#: plug-ins/common/glasstile.c:251 +#: plug-ins/common/glasstile.c:250 msgid "Glass Tile" msgstr "" -#: plug-ins/common/glasstile.c:282 +#: plug-ins/common/glasstile.c:281 #, fuzzy msgid "Tile _width:" msgstr "새로운 넓이 :" -#: plug-ins/common/glasstile.c:296 plug-ins/common/mosaic.c:621 +#: plug-ins/common/glasstile.c:295 plug-ins/common/mosaic.c:621 #, fuzzy msgid "Tile _height:" msgstr "타일 높이:" @@ -5719,17 +5719,17 @@ msgid "_Neon..." msgstr "비디오형식" -#: plug-ins/common/neon.c:204 +#: plug-ins/common/neon.c:207 #, fuzzy msgid "Neon..." msgstr "프린팅..." -#: plug-ins/common/neon.c:698 +#: plug-ins/common/neon.c:697 #, fuzzy msgid "Neon Detection" msgstr "라이트 방향" -#: plug-ins/common/neon.c:743 plug-ins/common/unsharp.c:707 +#: plug-ins/common/neon.c:742 plug-ins/common/unsharp.c:678 #, fuzzy msgid "_Amount:" msgstr "환경:" @@ -5916,7 +5916,7 @@ msgid "_Scatter RGB..." msgstr "패턴:" -#: plug-ins/common/noisify.c:284 +#: plug-ins/common/noisify.c:285 #, fuzzy msgid "Adding Noise..." msgstr "타일 랜더링..." @@ -5998,7 +5998,7 @@ msgid "Oili_fy..." msgstr "오일화" -#: plug-ins/common/oilify.c:188 +#: plug-ins/common/oilify.c:189 msgid "Oil Painting..." msgstr "오일 페인팅 중..." @@ -6155,7 +6155,7 @@ msgid "Photocopy" msgstr "" -#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:513 +#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:509 #: plug-ins/common/softglow.c:687 #, fuzzy msgid "_Sharpness:" @@ -6862,7 +6862,7 @@ msgid "_Ripple..." msgstr "잘라내는 중..." -#: plug-ins/common/ripple.c:219 +#: plug-ins/common/ripple.c:222 #, fuzzy msgid "Rippling..." msgstr "잘라내는 중..." @@ -7114,22 +7114,22 @@ msgid "_Selective Gaussian Blur..." msgstr "선택적인 읽기" -#: plug-ins/common/sel_gauss.c:186 +#: plug-ins/common/sel_gauss.c:187 #, fuzzy msgid "Selective Gaussian Blur..." msgstr "선택적인 읽기" -#: plug-ins/common/sel_gauss.c:224 +#: plug-ins/common/sel_gauss.c:225 #, fuzzy msgid "Selective Gaussian Blur" msgstr "선택적인 읽기" -#: plug-ins/common/sel_gauss.c:256 +#: plug-ins/common/sel_gauss.c:257 #, fuzzy msgid "_Blur radius:" msgstr "반경" -#: plug-ins/common/sel_gauss.c:266 +#: plug-ins/common/sel_gauss.c:267 #, fuzzy msgid "_Max. delta:" msgstr "최대 크기:" @@ -7152,12 +7152,12 @@ #. #. * Let the user know what we're doing... #. -#: plug-ins/common/sharpen.c:315 +#: plug-ins/common/sharpen.c:311 #, fuzzy msgid "Sharpening..." msgstr "잘라내는 중..." -#: plug-ins/common/sharpen.c:484 +#: plug-ins/common/sharpen.c:480 #, fuzzy msgid "Sharpen" msgstr "잘라내는 중..." @@ -7167,7 +7167,7 @@ msgid "_Shift..." msgstr "프린팅..." -#: plug-ins/common/shift.c:191 +#: plug-ins/common/shift.c:194 #, fuzzy msgid "Shifting..." msgstr "프린팅..." @@ -7403,24 +7403,24 @@ msgid "_Sobel..." msgstr "원래 채널" -#: plug-ins/common/sobel.c:226 +#: plug-ins/common/sobel.c:227 msgid "Sobel Edge Detection" msgstr "" -#: plug-ins/common/sobel.c:248 +#: plug-ins/common/sobel.c:249 msgid "Sobel _Horizontally" msgstr "" -#: plug-ins/common/sobel.c:260 +#: plug-ins/common/sobel.c:261 #, fuzzy msgid "Sobel _Vertically" msgstr "구" -#: plug-ins/common/sobel.c:272 +#: plug-ins/common/sobel.c:273 msgid "_Keep sign of result (one direction only)" msgstr "" -#: plug-ins/common/sobel.c:358 +#: plug-ins/common/sobel.c:359 msgid "Sobel Edge Detecting..." msgstr "" @@ -7765,17 +7765,17 @@ msgid "Sp_read..." msgstr "통일화 중..." -#: plug-ins/common/spread.c:179 +#: plug-ins/common/spread.c:182 #, fuzzy msgid "Spreading..." msgstr "통일화 중..." -#: plug-ins/common/spread.c:345 +#: plug-ins/common/spread.c:346 #, fuzzy msgid "Spread" msgstr "빨간색" -#: plug-ins/common/spread.c:363 +#: plug-ins/common/spread.c:364 msgid "Spread Amount" msgstr "" @@ -8085,7 +8085,8 @@ msgid "_Tile..." msgstr "프린팅..." -#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:321 +#. Set the tile cache size +#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:320 #, fuzzy msgid "Tiling..." msgstr "프린팅..." @@ -8111,48 +8112,48 @@ msgstr "모두 흰색" #. Get the preview image -#: plug-ins/common/tileit.c:364 +#: plug-ins/common/tileit.c:363 #, fuzzy msgid "TileIt" msgstr "파일" #. Area for buttons etc #. Flip -#: plug-ins/common/tileit.c:407 plug-ins/ifscompose/ifscompose.c:628 +#: plug-ins/common/tileit.c:406 plug-ins/ifscompose/ifscompose.c:628 msgid "Flip" msgstr "" -#: plug-ins/common/tileit.c:455 +#: plug-ins/common/tileit.c:454 #, fuzzy msgid "A_ll tiles" msgstr "모두 흰색" -#: plug-ins/common/tileit.c:469 +#: plug-ins/common/tileit.c:468 #, fuzzy msgid "Al_ternate tiles" msgstr "모두 흰색" -#: plug-ins/common/tileit.c:483 +#: plug-ins/common/tileit.c:482 #, fuzzy msgid "_Explicit tile" msgstr "이미지 자르기" -#: plug-ins/common/tileit.c:489 +#: plug-ins/common/tileit.c:488 msgid "Ro_w:" msgstr "" -#: plug-ins/common/tileit.c:513 +#: plug-ins/common/tileit.c:512 #, fuzzy msgid "Col_umn:" msgstr "명령:" -#: plug-ins/common/tileit.c:565 +#: plug-ins/common/tileit.c:564 #, fuzzy msgid "O_pacity:" msgstr "불투명도 [%d]: " #. Lower frame saying howmany segments -#: plug-ins/common/tileit.c:574 +#: plug-ins/common/tileit.c:573 #, fuzzy msgid "Number of Segments" msgstr "파라미터 설정" @@ -8306,16 +8307,16 @@ msgid "Unit Editor" msgstr "크기 맵 편집기" -#: plug-ins/common/unsharp.c:149 +#: plug-ins/common/unsharp.c:143 msgid "_Unsharp Mask..." msgstr "" -#: plug-ins/common/unsharp.c:493 +#: plug-ins/common/unsharp.c:468 #, fuzzy msgid "Merging..." msgstr "줄무늬 없애는 중..." -#: plug-ins/common/unsharp.c:664 +#: plug-ins/common/unsharp.c:635 msgid "Unsharp Mask" msgstr "" @@ -9473,21 +9474,21 @@ msgid "_Zoom:" msgstr "왼쪽 아래" -#: plug-ins/gfig/gfig-bezier.c:452 +#: plug-ins/gfig/gfig-bezier.c:448 #, fuzzy msgid "Closed" msgstr "닫기" -#: plug-ins/gfig/gfig-bezier.c:457 +#: plug-ins/gfig/gfig-bezier.c:453 msgid "Close curve on completion" msgstr "" -#: plug-ins/gfig/gfig-bezier.c:462 +#: plug-ins/gfig/gfig-bezier.c:458 #, fuzzy msgid "Show Line Frame" msgstr "프레임으로:" -#: plug-ins/gfig/gfig-bezier.c:467 +#: plug-ins/gfig/gfig-bezier.c:463 msgid "Draws lines between the control points. Only during curve creation" msgstr "" diff -uraN gimp-2.2.0/po-plug-ins/lt.gmo gimp-2.2.1/po-plug-ins/lt.gmo --- gimp-2.2.0/po-plug-ins/lt.gmo 2004-12-19 03:34:23.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/lt.gmo 2004-12-28 16:59:07.000000000 +0100 @@ -33,7 +33,7 @@ Save SettingsPrinter Model:Printer SettingsRadius:Red:Redo last zoomRedrawRedraw previewRefresh the Preview windowResolutionResolution:Right:SaturationSaveSave SettingsSave as GIFSave as PNGScreenScreen ShotSeconds DelaySet the contrast of the printSettingsSetup PrinterSizeSize:StandardStyleTemporary ProcedureToolsTop:Type:UndoUndo last zoomUnitUnit EditorUnit factor must not be 0.Units:Unsupported format or Clipboard empty!ValueWidth:You can not rotate the whole image if there's a selection.afterProject-Id-Version: GIMP plugins HEAD Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-04-24 13:36+0300 Last-Translator: Žygimantas Beručka Language-Team: Lithuanian diff -uraN gimp-2.2.0/po-plug-ins/lt.po gimp-2.2.1/po-plug-ins/lt.po --- gimp-2.2.0/po-plug-ins/lt.po 2004-12-19 03:34:13.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/lt.po 2004-12-28 16:58:57.000000000 +0100 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: GIMP plugins HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-04-24 13:36+0300\n" "Last-Translator: Žygimantas Beručka \n" "Language-Team: Lithuanian \n" @@ -961,7 +961,7 @@ msgid "Antialiasing quality. Higher is better, but slower" msgstr "" -#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:720 +#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:691 #: plug-ins/common/wind.c:993 plug-ins/imagemap/imap_preferences.c:539 msgid "_Threshold:" msgstr "" @@ -2114,12 +2114,12 @@ msgstr "Orientacija" #: plug-ins/common/blinds.c:259 plug-ins/common/ripple.c:539 -#: plug-ins/common/tileit.c:419 plug-ins/pagecurl/pagecurl.c:530 +#: plug-ins/common/tileit.c:418 plug-ins/pagecurl/pagecurl.c:530 msgid "_Horizontal" msgstr "" #: plug-ins/common/blinds.c:260 plug-ins/common/ripple.c:540 -#: plug-ins/common/tileit.c:429 plug-ins/pagecurl/pagecurl.c:529 +#: plug-ins/common/tileit.c:428 plug-ins/pagecurl/pagecurl.c:529 msgid "_Vertical" msgstr "" @@ -2142,7 +2142,7 @@ msgid "_Blur" msgstr "Reikšmė" -#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:383 +#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:432 msgid "Blurring..." msgstr "" @@ -2255,25 +2255,25 @@ msgid "Ca_rtoon..." msgstr "Pasirinkimai" -#: plug-ins/common/cartoon.c:228 plug-ins/common/dog.c:246 -#: plug-ins/common/gauss.c:430 plug-ins/common/neon.c:222 -#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:203 +#: plug-ins/common/cartoon.c:229 plug-ins/common/dog.c:247 +#: plug-ins/common/gauss.c:431 plug-ins/common/neon.c:221 +#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:204 #: plug-ins/common/softglow.c:220 plug-ins/gflare/gflare.c:972 #: plug-ins/sgi/sgi.c:528 plug-ins/xjt/xjt.c:1673 msgid "Cannot operate on indexed color images." msgstr "" -#: plug-ins/common/cartoon.c:807 +#: plug-ins/common/cartoon.c:808 #, fuzzy msgid "Cartoon" msgstr "Pasirinkimai" -#: plug-ins/common/cartoon.c:837 plug-ins/common/photocopy.c:867 +#: plug-ins/common/cartoon.c:838 plug-ins/common/photocopy.c:867 #, fuzzy msgid "_Mask radius:" msgstr "Skersmuo:" -#: plug-ins/common/cartoon.c:851 +#: plug-ins/common/cartoon.c:852 #, fuzzy msgid "_Percent black:" msgstr "Procentas" @@ -2443,29 +2443,29 @@ msgid "Colorify Custom Color" msgstr "" -#: plug-ins/common/colortoalpha.c:105 +#: plug-ins/common/colortoalpha.c:104 #, fuzzy msgid "Color to _Alpha..." msgstr "/Filters/Filtruoti visus sluoksnius..." -#: plug-ins/common/colortoalpha.c:183 +#: plug-ins/common/colortoalpha.c:181 msgid "Removing color..." msgstr "" -#: plug-ins/common/colortoalpha.c:364 +#: plug-ins/common/colortoalpha.c:377 msgid "Color to Alpha" msgstr "" -#: plug-ins/common/colortoalpha.c:389 plug-ins/common/mapcolor.c:424 +#: plug-ins/common/colortoalpha.c:402 plug-ins/common/mapcolor.c:424 #: plug-ins/gfli/gfli.c:835 plug-ins/gfli/gfli.c:898 msgid "From:" msgstr "" -#: plug-ins/common/colortoalpha.c:393 +#: plug-ins/common/colortoalpha.c:406 msgid "Color to Alpha Color Picker" msgstr "" -#: plug-ins/common/colortoalpha.c:407 +#: plug-ins/common/colortoalpha.c:420 msgid "to alpha" msgstr "" @@ -2784,26 +2784,26 @@ msgid "_Cubism..." msgstr "" -#: plug-ins/common/cubism.c:267 +#: plug-ins/common/cubism.c:269 msgid "Cubism" msgstr "" -#: plug-ins/common/cubism.c:296 +#: plug-ins/common/cubism.c:298 #, fuzzy msgid "_Tile size:" msgstr "Dydis:" -#: plug-ins/common/cubism.c:309 +#: plug-ins/common/cubism.c:311 #, fuzzy msgid "T_ile saturation:" msgstr "Sodrumas" -#: plug-ins/common/cubism.c:320 +#: plug-ins/common/cubism.c:322 #, fuzzy msgid "_Use background color" msgstr "Fonas" -#: plug-ins/common/cubism.c:410 +#: plug-ins/common/cubism.c:412 msgid "Cubistic Transformation..." msgstr "" @@ -3182,43 +3182,43 @@ msgid "Des_peckle..." msgstr "" -#: plug-ins/common/despeckle.c:420 plug-ins/common/despeckle.c:642 +#: plug-ins/common/despeckle.c:418 plug-ins/common/despeckle.c:640 msgid "Despeckle" msgstr "" #. #. * Filter type controls... #. -#: plug-ins/common/despeckle.c:446 plug-ins/gimpressionist/orientmap.c:616 +#: plug-ins/common/despeckle.c:444 plug-ins/gimpressionist/orientmap.c:616 msgid "Type" msgstr "" #. parameter settings -#: plug-ins/common/despeckle.c:456 +#: plug-ins/common/despeckle.c:454 msgid "Median" msgstr "" -#: plug-ins/common/despeckle.c:462 +#: plug-ins/common/despeckle.c:460 msgid "_Adaptive" msgstr "" -#: plug-ins/common/despeckle.c:472 +#: plug-ins/common/despeckle.c:470 msgid "R_ecursive" msgstr "" -#: plug-ins/common/despeckle.c:496 plug-ins/common/neon.c:728 +#: plug-ins/common/despeckle.c:494 plug-ins/common/neon.c:727 #: plug-ins/common/nlfilt.c:1083 plug-ins/common/nova.c:359 -#: plug-ins/common/unsharp.c:694 plug-ins/common/whirlpinch.c:588 +#: plug-ins/common/unsharp.c:665 plug-ins/common/whirlpinch.c:588 #: plug-ins/gflare/gflare.c:2686 plug-ins/imagemap/imap_circle.c:278 #, fuzzy msgid "_Radius:" msgstr "Skersmuo:" -#: plug-ins/common/despeckle.c:512 +#: plug-ins/common/despeckle.c:510 msgid "_Black level:" msgstr "" -#: plug-ins/common/despeckle.c:528 +#: plug-ins/common/despeckle.c:526 msgid "_White level:" msgstr "" @@ -3312,7 +3312,7 @@ msgid "_Displace..." msgstr "" -#: plug-ins/common/displace.c:228 +#: plug-ins/common/displace.c:231 msgid "Displacing..." msgstr "" @@ -3351,31 +3351,31 @@ msgid "Difference of Gaussians..." msgstr "/Filters/Filtruoti visus sluoksnius..." -#: plug-ins/common/dog.c:222 plug-ins/common/dog.c:273 +#: plug-ins/common/dog.c:227 plug-ins/common/dog.c:274 msgid "DoG Edge Detect" msgstr "" -#: plug-ins/common/dog.c:294 +#: plug-ins/common/dog.c:295 #, fuzzy msgid "Smoothing parameters" msgstr "Parametrai" -#: plug-ins/common/dog.c:308 +#: plug-ins/common/dog.c:309 #, fuzzy msgid "_Radius 1:" msgstr "Skersmuo:" -#: plug-ins/common/dog.c:312 +#: plug-ins/common/dog.c:313 #, fuzzy msgid "R_adius 2:" msgstr "Skersmuo:" -#: plug-ins/common/dog.c:324 plug-ins/common/normalize.c:88 +#: plug-ins/common/dog.c:325 plug-ins/common/normalize.c:88 #, fuzzy msgid "_Normalize" msgstr "Formatas" -#: plug-ins/common/dog.c:335 plug-ins/gimpressionist/paper.c:149 +#: plug-ins/common/dog.c:336 plug-ins/gimpressionist/paper.c:149 msgid "_Invert" msgstr "" @@ -3430,7 +3430,7 @@ msgid "_Emboss..." msgstr "Apie" -#: plug-ins/common/emboss.c:374 plug-ins/common/emboss.c:439 +#: plug-ins/common/emboss.c:376 plug-ins/common/emboss.c:439 msgid "Emboss" msgstr "" @@ -3455,7 +3455,7 @@ msgid "En_grave..." msgstr "" -#: plug-ins/common/engrave.c:181 +#: plug-ins/common/engrave.c:182 msgid "Engraving..." msgstr "" @@ -3877,40 +3877,40 @@ msgid "_Gaussian Blur..." msgstr "/Filters/Filtruoti visus sluoksnius..." -#: plug-ins/common/gauss.c:407 +#: plug-ins/common/gauss.c:413 #, fuzzy msgid "Gaussian Blur..." msgstr "/Filters/Filtruoti visus sluoksnius..." -#: plug-ins/common/gauss.c:460 +#: plug-ins/common/gauss.c:461 #, fuzzy msgid "Gaussian Blur" msgstr "/Filters/Filtruoti visus sluoksnius..." #. parameter settings -#: plug-ins/common/gauss.c:483 +#: plug-ins/common/gauss.c:484 msgid "Blur Radius" msgstr "" -#: plug-ins/common/gauss.c:497 plug-ins/common/jigsaw.c:2456 -#: plug-ins/common/spread.c:378 +#: plug-ins/common/gauss.c:498 plug-ins/common/jigsaw.c:2456 +#: plug-ins/common/spread.c:379 msgid "_Horizontal:" msgstr "" -#: plug-ins/common/gauss.c:501 plug-ins/common/jigsaw.c:2473 -#: plug-ins/common/spread.c:382 +#: plug-ins/common/gauss.c:502 plug-ins/common/jigsaw.c:2473 +#: plug-ins/common/spread.c:383 msgid "_Vertical:" msgstr "" -#: plug-ins/common/gauss.c:524 +#: plug-ins/common/gauss.c:525 msgid "Blur Method" msgstr "" -#: plug-ins/common/gauss.c:528 +#: plug-ins/common/gauss.c:529 msgid "_IIR" msgstr "" -#: plug-ins/common/gauss.c:529 +#: plug-ins/common/gauss.c:530 msgid "_RLE" msgstr "" @@ -4206,20 +4206,20 @@ msgid "_Glass Tile..." msgstr "" -#: plug-ins/common/glasstile.c:208 +#: plug-ins/common/glasstile.c:209 msgid "Glass Tile..." msgstr "" -#: plug-ins/common/glasstile.c:251 +#: plug-ins/common/glasstile.c:250 msgid "Glass Tile" msgstr "" -#: plug-ins/common/glasstile.c:282 +#: plug-ins/common/glasstile.c:281 #, fuzzy msgid "Tile _width:" msgstr "Plotis:" -#: plug-ins/common/glasstile.c:296 plug-ins/common/mosaic.c:621 +#: plug-ins/common/glasstile.c:295 plug-ins/common/mosaic.c:621 #, fuzzy msgid "Tile _height:" msgstr "Aukštis:" @@ -5245,17 +5245,17 @@ msgid "_Neon..." msgstr "Apie" -#: plug-ins/common/neon.c:204 +#: plug-ins/common/neon.c:207 #, fuzzy msgid "Neon..." msgstr "Naujas spausdintuvas..." -#: plug-ins/common/neon.c:698 +#: plug-ins/common/neon.c:697 #, fuzzy msgid "Neon Detection" msgstr "Raiška" -#: plug-ins/common/neon.c:743 plug-ins/common/unsharp.c:707 +#: plug-ins/common/neon.c:742 plug-ins/common/unsharp.c:678 #, fuzzy msgid "_Amount:" msgstr "Apie" @@ -5424,7 +5424,7 @@ msgid "_Scatter RGB..." msgstr "" -#: plug-ins/common/noisify.c:284 +#: plug-ins/common/noisify.c:285 msgid "Adding Noise..." msgstr "" @@ -5497,7 +5497,7 @@ msgid "Oili_fy..." msgstr "" -#: plug-ins/common/oilify.c:188 +#: plug-ins/common/oilify.c:189 msgid "Oil Painting..." msgstr "" @@ -5639,7 +5639,7 @@ msgid "Photocopy" msgstr "" -#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:513 +#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:509 #: plug-ins/common/softglow.c:687 msgid "_Sharpness:" msgstr "" @@ -6295,7 +6295,7 @@ msgid "_Ripple..." msgstr "" -#: plug-ins/common/ripple.c:219 +#: plug-ins/common/ripple.c:222 msgid "Rippling..." msgstr "" @@ -6528,20 +6528,20 @@ msgid "_Selective Gaussian Blur..." msgstr "/Filters/Filtruoti visus sluoksnius..." -#: plug-ins/common/sel_gauss.c:186 +#: plug-ins/common/sel_gauss.c:187 msgid "Selective Gaussian Blur..." msgstr "" -#: plug-ins/common/sel_gauss.c:224 +#: plug-ins/common/sel_gauss.c:225 msgid "Selective Gaussian Blur" msgstr "" -#: plug-ins/common/sel_gauss.c:256 +#: plug-ins/common/sel_gauss.c:257 #, fuzzy msgid "_Blur radius:" msgstr "Skersmuo:" -#: plug-ins/common/sel_gauss.c:266 +#: plug-ins/common/sel_gauss.c:267 #, fuzzy msgid "_Max. delta:" msgstr "Gylis:" @@ -6562,11 +6562,11 @@ #. #. * Let the user know what we're doing... #. -#: plug-ins/common/sharpen.c:315 +#: plug-ins/common/sharpen.c:311 msgid "Sharpening..." msgstr "" -#: plug-ins/common/sharpen.c:484 +#: plug-ins/common/sharpen.c:480 #, fuzzy msgid "Sharpen" msgstr "Ekranas" @@ -6575,7 +6575,7 @@ msgid "_Shift..." msgstr "" -#: plug-ins/common/shift.c:191 +#: plug-ins/common/shift.c:194 msgid "Shifting..." msgstr "" @@ -6782,23 +6782,23 @@ msgid "_Sobel..." msgstr "" -#: plug-ins/common/sobel.c:226 +#: plug-ins/common/sobel.c:227 msgid "Sobel Edge Detection" msgstr "" -#: plug-ins/common/sobel.c:248 +#: plug-ins/common/sobel.c:249 msgid "Sobel _Horizontally" msgstr "" -#: plug-ins/common/sobel.c:260 +#: plug-ins/common/sobel.c:261 msgid "Sobel _Vertically" msgstr "" -#: plug-ins/common/sobel.c:272 +#: plug-ins/common/sobel.c:273 msgid "_Keep sign of result (one direction only)" msgstr "" -#: plug-ins/common/sobel.c:358 +#: plug-ins/common/sobel.c:359 msgid "Sobel Edge Detecting..." msgstr "" @@ -7121,15 +7121,15 @@ msgid "Sp_read..." msgstr "" -#: plug-ins/common/spread.c:179 +#: plug-ins/common/spread.c:182 msgid "Spreading..." msgstr "" -#: plug-ins/common/spread.c:345 +#: plug-ins/common/spread.c:346 msgid "Spread" msgstr "" -#: plug-ins/common/spread.c:363 +#: plug-ins/common/spread.c:364 msgid "Spread Amount" msgstr "" @@ -7414,7 +7414,8 @@ msgid "_Tile..." msgstr "Naujas spausdintuvas..." -#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:321 +#. Set the tile cache size +#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:320 msgid "Tiling..." msgstr "" @@ -7436,44 +7437,44 @@ msgstr "/Filters/Filtruoti visus sluoksnius..." #. Get the preview image -#: plug-ins/common/tileit.c:364 +#: plug-ins/common/tileit.c:363 msgid "TileIt" msgstr "" #. Area for buttons etc #. Flip -#: plug-ins/common/tileit.c:407 plug-ins/ifscompose/ifscompose.c:628 +#: plug-ins/common/tileit.c:406 plug-ins/ifscompose/ifscompose.c:628 msgid "Flip" msgstr "" -#: plug-ins/common/tileit.c:455 +#: plug-ins/common/tileit.c:454 #, fuzzy msgid "A_ll tiles" msgstr "/Filters/Filtruoti visus sluoksnius..." -#: plug-ins/common/tileit.c:469 +#: plug-ins/common/tileit.c:468 msgid "Al_ternate tiles" msgstr "" -#: plug-ins/common/tileit.c:483 +#: plug-ins/common/tileit.c:482 msgid "_Explicit tile" msgstr "" -#: plug-ins/common/tileit.c:489 +#: plug-ins/common/tileit.c:488 msgid "Ro_w:" msgstr "" -#: plug-ins/common/tileit.c:513 +#: plug-ins/common/tileit.c:512 #, fuzzy msgid "Col_umn:" msgstr "Komanda:" -#: plug-ins/common/tileit.c:565 +#: plug-ins/common/tileit.c:564 msgid "O_pacity:" msgstr "" #. Lower frame saying howmany segments -#: plug-ins/common/tileit.c:574 +#: plug-ins/common/tileit.c:573 #, fuzzy msgid "Number of Segments" msgstr "kadrų skaičius:" @@ -7622,15 +7623,15 @@ msgid "Unit Editor" msgstr "Vienetų redaktorius" -#: plug-ins/common/unsharp.c:149 +#: plug-ins/common/unsharp.c:143 msgid "_Unsharp Mask..." msgstr "" -#: plug-ins/common/unsharp.c:493 +#: plug-ins/common/unsharp.c:468 msgid "Merging..." msgstr "" -#: plug-ins/common/unsharp.c:664 +#: plug-ins/common/unsharp.c:635 msgid "Unsharp Mask" msgstr "" @@ -8687,19 +8688,19 @@ msgid "_Zoom:" msgstr "Apačia" -#: plug-ins/gfig/gfig-bezier.c:452 +#: plug-ins/gfig/gfig-bezier.c:448 msgid "Closed" msgstr "Uždaryta" -#: plug-ins/gfig/gfig-bezier.c:457 +#: plug-ins/gfig/gfig-bezier.c:453 msgid "Close curve on completion" msgstr "" -#: plug-ins/gfig/gfig-bezier.c:462 +#: plug-ins/gfig/gfig-bezier.c:458 msgid "Show Line Frame" msgstr "" -#: plug-ins/gfig/gfig-bezier.c:467 +#: plug-ins/gfig/gfig-bezier.c:463 msgid "Draws lines between the control points. Only during curve creation" msgstr "" diff -uraN gimp-2.2.0/po-plug-ins/ms.gmo gimp-2.2.1/po-plug-ins/ms.gmo --- gimp-2.2.0/po-plug-ins/ms.gmo 2004-12-19 03:34:23.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/ms.gmo 2004-12-28 16:59:07.000000000 +0100 @@ -274,7 +274,7 @@ which has no alpha channel.Z scale (size)Z:ZealousCropping(tm)...ZoomZoom inZoom in (make image bigger)Zoom outZoom out (make image smaller)_3x3_Abbreviation:_Adaptive_Additive_Advanced_Alpha_Alpha:_Amount:_Amplitude:_Angle:_Animate_Antialiasing_Automatically convert_Azimuth:_Background_Base URL:_Bilinear_Black_Blacken_Blast_Blend_Blue_Blue:_Border:_Bottom:_Box_Brightness_Brightness:_Brush_Bump Map_Bumpmap_Copy_Deflate_Depth:_Derivative_Description:_Detail:_Digits:_Displacement:_Distorted_Dots_Edit_Effect Image:_Elevation:_Emboss_Encapsulated PostScript_Entire Image_Environment Map_Exponent:_Factor:_File_Font:_Force_Fractals_Free_Ftp Site_Gamma:_General_Gopher_Gradient_Gray:_Green_Green:_Grey_Grow_Height_Height:_Help_Hex_Hidden_Holdness:_Horizontal_Horizontal:_Horz. Spacing:_Hue_ID:_Ideal_Ignore_Inch_Input SPI:_Insert_Interlacing (Adam7)_Invert_JPEG_JavaScript_Keep NCSA circles true_Kill_LZW_Laplace_Large staggered_Left_Left Start at:_Light_Linear_Lines_Link_Lower_Mapping_Material_Max (%):_Max Depth:_Midtones_Millimeter_Mirror_Misc Ops._Move_No. Across:_None_Normal_Pack Bits_Parameters_Period:_Phase:_Ping Pong_Plural:_Polygon_Presets_Preview_Preview!_Prompt for area info_Psychobilly_RGB_RLE compression_RLE encoded_Radial_Radius:_Randomize_Rays_Rectangle_Red:_Redo %s_Reflective_Remove_Rendering_Require default URL_Right_Right Border_Rotated_Saturation_Saturation:_Search:_Second Flares_Settings_Sharpness:_Size_Size:_Smear_Snap-To Grid Enabled_Speed:_Spokes:_Square_Squares_Staggered_Strength:_Symbol:_Target frame name/ID: (optional - used for FRAMES only)_Thickness:_Threshold_Threshold:_Title:_Tools_Top Start at:_Top:_Transparent_URL to activate when this area is clicked: (required)_Undo %s_Update_Upper_Upper Border_Use double-sized grab handles_Value_Value:_Variation:_Vert. Spacing:_Vertical_Vertical:_View_Voronoi_Warp_Waterlevel:_Wavelength:_Web Site_White_Wide-striped_Width_Width:_Wind_Wrap_X Scale:_X:_Y Scale:_Y:_Yellow_Z:_Zoom_Zoom:`Default' is created.a _Single Windowafteralphablackblueblueness_cb470blueness_cb470fblueness_cb709blueness_cb709fcmcyancyan_ke-_mailgreenhueinvalid formatted GFlare file: %s k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftpixels/%aredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsin^p, steppedsin^p-based functionsome sort of error with the file extension or lack thereofthe _Whole Screenvaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: Gimp 1.3 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2003-11-07 16:26+0800 Last-Translator: MIMOS Open Source Development Group Language-Team: Projek Gabai diff -uraN gimp-2.2.0/po-plug-ins/ms.po gimp-2.2.1/po-plug-ins/ms.po --- gimp-2.2.0/po-plug-ins/ms.po 2004-12-19 03:34:14.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/ms.po 2004-12-28 16:58:58.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Gimp 1.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2003-11-07 16:26+0800\n" "Last-Translator: MIMOS Open Source Development Group \n" "Language-Team: Projek Gabai \n" @@ -1000,7 +1000,7 @@ msgid "Antialiasing quality. Higher is better, but slower" msgstr "Kualiti pelicinan. Lebih tinggi lebih baik, tetapi lebih perlahan" -#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:720 +#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:691 #: plug-ins/common/wind.c:993 plug-ins/imagemap/imap_preferences.c:539 msgid "_Threshold:" msgstr "_Ambang:" @@ -2216,12 +2216,12 @@ msgstr "Orientasi" #: plug-ins/common/blinds.c:259 plug-ins/common/ripple.c:539 -#: plug-ins/common/tileit.c:419 plug-ins/pagecurl/pagecurl.c:530 +#: plug-ins/common/tileit.c:418 plug-ins/pagecurl/pagecurl.c:530 msgid "_Horizontal" msgstr "_Mengufuk" #: plug-ins/common/blinds.c:260 plug-ins/common/ripple.c:540 -#: plug-ins/common/tileit.c:429 plug-ins/pagecurl/pagecurl.c:529 +#: plug-ins/common/tileit.c:428 plug-ins/pagecurl/pagecurl.c:529 msgid "_Vertical" msgstr "_Menegak" @@ -2244,7 +2244,7 @@ msgid "_Blur" msgstr "Kabur" -#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:383 +#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:432 msgid "Blurring..." msgstr "Mengkaburkan..." @@ -2365,26 +2365,26 @@ msgid "Ca_rtoon..." msgstr "K_apsyen" -#: plug-ins/common/cartoon.c:228 plug-ins/common/dog.c:246 -#: plug-ins/common/gauss.c:430 plug-ins/common/neon.c:222 -#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:203 +#: plug-ins/common/cartoon.c:229 plug-ins/common/dog.c:247 +#: plug-ins/common/gauss.c:431 plug-ins/common/neon.c:221 +#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:204 #: plug-ins/common/softglow.c:220 plug-ins/gflare/gflare.c:972 #: plug-ins/sgi/sgi.c:528 plug-ins/xjt/xjt.c:1673 #, fuzzy msgid "Cannot operate on indexed color images." msgstr "xjt: tidak boelh beroperasi ke atas imej warna berindeks" -#: plug-ins/common/cartoon.c:807 +#: plug-ins/common/cartoon.c:808 #, fuzzy msgid "Cartoon" msgstr "K_apsyen" -#: plug-ins/common/cartoon.c:837 plug-ins/common/photocopy.c:867 +#: plug-ins/common/cartoon.c:838 plug-ins/common/photocopy.c:867 #, fuzzy msgid "_Mask radius:" msgstr "Jejari _Kabur:" -#: plug-ins/common/cartoon.c:851 +#: plug-ins/common/cartoon.c:852 #, fuzzy msgid "_Percent black:" msgstr "Peratus" @@ -2555,29 +2555,29 @@ msgid "Colorify Custom Color" msgstr "Pewarnaan Warna Biasa " -#: plug-ins/common/colortoalpha.c:105 +#: plug-ins/common/colortoalpha.c:104 #, fuzzy msgid "Color to _Alpha..." msgstr "Warna ke Alfa" -#: plug-ins/common/colortoalpha.c:183 +#: plug-ins/common/colortoalpha.c:181 msgid "Removing color..." msgstr "Mengeluarkan warna..." -#: plug-ins/common/colortoalpha.c:364 +#: plug-ins/common/colortoalpha.c:377 msgid "Color to Alpha" msgstr "Warna ke Alfa" -#: plug-ins/common/colortoalpha.c:389 plug-ins/common/mapcolor.c:424 +#: plug-ins/common/colortoalpha.c:402 plug-ins/common/mapcolor.c:424 #: plug-ins/gfli/gfli.c:835 plug-ins/gfli/gfli.c:898 msgid "From:" msgstr "Dari:" -#: plug-ins/common/colortoalpha.c:393 +#: plug-ins/common/colortoalpha.c:406 msgid "Color to Alpha Color Picker" msgstr "Warna ke Pemilih Warna Alfa" -#: plug-ins/common/colortoalpha.c:407 +#: plug-ins/common/colortoalpha.c:420 #, fuzzy msgid "to alpha" msgstr "ke Alfa" @@ -2902,26 +2902,26 @@ msgid "_Cubism..." msgstr "Kubik" -#: plug-ins/common/cubism.c:267 +#: plug-ins/common/cubism.c:269 msgid "Cubism" msgstr "Kubik" -#: plug-ins/common/cubism.c:296 +#: plug-ins/common/cubism.c:298 #, fuzzy msgid "_Tile size:" msgstr "Saiz _Jubin:" -#: plug-ins/common/cubism.c:309 +#: plug-ins/common/cubism.c:311 #, fuzzy msgid "T_ile saturation:" msgstr "Ketepuan J_ubin:" -#: plug-ins/common/cubism.c:320 +#: plug-ins/common/cubism.c:322 #, fuzzy msgid "_Use background color" msgstr "_Guna Warna Latar Belakang" -#: plug-ins/common/cubism.c:410 +#: plug-ins/common/cubism.c:412 #, fuzzy msgid "Cubistic Transformation..." msgstr "Penjelmaan Kubik" @@ -3310,44 +3310,44 @@ msgid "Des_peckle..." msgstr "Despeckle" -#: plug-ins/common/despeckle.c:420 plug-ins/common/despeckle.c:642 +#: plug-ins/common/despeckle.c:418 plug-ins/common/despeckle.c:640 msgid "Despeckle" msgstr "Despeckle" #. #. * Filter type controls... #. -#: plug-ins/common/despeckle.c:446 plug-ins/gimpressionist/orientmap.c:616 +#: plug-ins/common/despeckle.c:444 plug-ins/gimpressionist/orientmap.c:616 msgid "Type" msgstr "Jenis" #. parameter settings -#: plug-ins/common/despeckle.c:456 +#: plug-ins/common/despeckle.c:454 #, fuzzy msgid "Median" msgstr "Radian" -#: plug-ins/common/despeckle.c:462 +#: plug-ins/common/despeckle.c:460 msgid "_Adaptive" msgstr "_Mudah suai" -#: plug-ins/common/despeckle.c:472 +#: plug-ins/common/despeckle.c:470 msgid "R_ecursive" msgstr "R_ekursif" -#: plug-ins/common/despeckle.c:496 plug-ins/common/neon.c:728 +#: plug-ins/common/despeckle.c:494 plug-ins/common/neon.c:727 #: plug-ins/common/nlfilt.c:1083 plug-ins/common/nova.c:359 -#: plug-ins/common/unsharp.c:694 plug-ins/common/whirlpinch.c:588 +#: plug-ins/common/unsharp.c:665 plug-ins/common/whirlpinch.c:588 #: plug-ins/gflare/gflare.c:2686 plug-ins/imagemap/imap_circle.c:278 msgid "_Radius:" msgstr "_Jejari:" -#: plug-ins/common/despeckle.c:512 +#: plug-ins/common/despeckle.c:510 #, fuzzy msgid "_Black level:" msgstr "Aras _Hitam:" -#: plug-ins/common/despeckle.c:528 +#: plug-ins/common/despeckle.c:526 #, fuzzy msgid "_White level:" msgstr "Aras _Putih:" @@ -3446,7 +3446,7 @@ msgid "_Displace..." msgstr "Berpindah..." -#: plug-ins/common/displace.c:228 +#: plug-ins/common/displace.c:231 msgid "Displacing..." msgstr "Berpindah..." @@ -3486,32 +3486,32 @@ msgid "Difference of Gaussians..." msgstr "Kabur Gaussian Terpilih..." -#: plug-ins/common/dog.c:222 plug-ins/common/dog.c:273 +#: plug-ins/common/dog.c:227 plug-ins/common/dog.c:274 #, fuzzy msgid "DoG Edge Detect" msgstr "Mengesan Tepi" -#: plug-ins/common/dog.c:294 +#: plug-ins/common/dog.c:295 #, fuzzy msgid "Smoothing parameters" msgstr "Salin Parameter" -#: plug-ins/common/dog.c:308 +#: plug-ins/common/dog.c:309 #, fuzzy msgid "_Radius 1:" msgstr "_Jejari:" -#: plug-ins/common/dog.c:312 +#: plug-ins/common/dog.c:313 #, fuzzy msgid "R_adius 2:" msgstr "J_ejari:" -#: plug-ins/common/dog.c:324 plug-ins/common/normalize.c:88 +#: plug-ins/common/dog.c:325 plug-ins/common/normalize.c:88 #, fuzzy msgid "_Normalize" msgstr "_Normal" -#: plug-ins/common/dog.c:335 plug-ins/gimpressionist/paper.c:149 +#: plug-ins/common/dog.c:336 plug-ins/gimpressionist/paper.c:149 msgid "_Invert" msgstr "_Songsang" @@ -3572,7 +3572,7 @@ msgid "_Emboss..." msgstr "_Sembunyi" -#: plug-ins/common/emboss.c:374 plug-ins/common/emboss.c:439 +#: plug-ins/common/emboss.c:376 plug-ins/common/emboss.c:439 msgid "Emboss" msgstr "Sembunyi" @@ -3597,7 +3597,7 @@ msgid "En_grave..." msgstr "Melorek..." -#: plug-ins/common/engrave.c:181 +#: plug-ins/common/engrave.c:182 msgid "Engraving..." msgstr "Melorek..." @@ -4026,41 +4026,41 @@ msgid "_Gaussian Blur..." msgstr "/Filters/Blur/Gaussian Blur (_IIR)..." -#: plug-ins/common/gauss.c:407 +#: plug-ins/common/gauss.c:413 #, fuzzy msgid "Gaussian Blur..." msgstr "/Filters/Blur/Gaussian Blur (_IIR)..." -#: plug-ins/common/gauss.c:460 +#: plug-ins/common/gauss.c:461 #, fuzzy msgid "Gaussian Blur" msgstr "Kabur Gaussian IIR" #. parameter settings -#: plug-ins/common/gauss.c:483 +#: plug-ins/common/gauss.c:484 msgid "Blur Radius" msgstr "Jejari Kabur" -#: plug-ins/common/gauss.c:497 plug-ins/common/jigsaw.c:2456 -#: plug-ins/common/spread.c:378 +#: plug-ins/common/gauss.c:498 plug-ins/common/jigsaw.c:2456 +#: plug-ins/common/spread.c:379 msgid "_Horizontal:" msgstr "_Mengufuk:" -#: plug-ins/common/gauss.c:501 plug-ins/common/jigsaw.c:2473 -#: plug-ins/common/spread.c:382 +#: plug-ins/common/gauss.c:502 plug-ins/common/jigsaw.c:2473 +#: plug-ins/common/spread.c:383 msgid "_Vertical:" msgstr "_Menegak:" -#: plug-ins/common/gauss.c:524 +#: plug-ins/common/gauss.c:525 #, fuzzy msgid "Blur Method" msgstr "Jenis Kabur" -#: plug-ins/common/gauss.c:528 +#: plug-ins/common/gauss.c:529 msgid "_IIR" msgstr "" -#: plug-ins/common/gauss.c:529 +#: plug-ins/common/gauss.c:530 #, fuzzy msgid "_RLE" msgstr "RLE" @@ -4389,20 +4389,20 @@ msgid "_Glass Tile..." msgstr "Jubin Gelas..." -#: plug-ins/common/glasstile.c:208 +#: plug-ins/common/glasstile.c:209 msgid "Glass Tile..." msgstr "Jubin Gelas..." -#: plug-ins/common/glasstile.c:251 +#: plug-ins/common/glasstile.c:250 msgid "Glass Tile" msgstr "Jubin Gelas..." -#: plug-ins/common/glasstile.c:282 +#: plug-ins/common/glasstile.c:281 #, fuzzy msgid "Tile _width:" msgstr "_Lebar Jubin:" -#: plug-ins/common/glasstile.c:296 plug-ins/common/mosaic.c:621 +#: plug-ins/common/glasstile.c:295 plug-ins/common/mosaic.c:621 #, fuzzy msgid "Tile _height:" msgstr "_Tinggi Jubin:" @@ -5475,17 +5475,17 @@ msgid "_Neon..." msgstr "Video/RGB" -#: plug-ins/common/neon.c:204 +#: plug-ins/common/neon.c:207 #, fuzzy msgid "Neon..." msgstr "Newsprint..." -#: plug-ins/common/neon.c:698 +#: plug-ins/common/neon.c:697 #, fuzzy msgid "Neon Detection" msgstr "Mengesan Tepi" -#: plug-ins/common/neon.c:743 plug-ins/common/unsharp.c:707 +#: plug-ins/common/neon.c:742 plug-ins/common/unsharp.c:678 msgid "_Amount:" msgstr "_Jumlah:" @@ -5655,7 +5655,7 @@ msgid "_Scatter RGB..." msgstr "Scattering HSV..." -#: plug-ins/common/noisify.c:284 +#: plug-ins/common/noisify.c:285 msgid "Adding Noise..." msgstr "Tambahkan Hinggar..." @@ -5731,7 +5731,7 @@ msgid "Oili_fy..." msgstr "Oilify" -#: plug-ins/common/oilify.c:188 +#: plug-ins/common/oilify.c:189 msgid "Oil Painting..." msgstr "Lukisan Minyak..." @@ -5880,7 +5880,7 @@ msgid "Photocopy" msgstr "Fotograf" -#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:513 +#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:509 #: plug-ins/common/softglow.c:687 msgid "_Sharpness:" msgstr "_Ketajaman:" @@ -6566,7 +6566,7 @@ msgid "_Ripple..." msgstr "Rippling..." -#: plug-ins/common/ripple.c:219 +#: plug-ins/common/ripple.c:222 msgid "Rippling..." msgstr "Rippling..." @@ -6801,20 +6801,20 @@ msgid "_Selective Gaussian Blur..." msgstr "Kabur Gaussian Terpilih..." -#: plug-ins/common/sel_gauss.c:186 +#: plug-ins/common/sel_gauss.c:187 msgid "Selective Gaussian Blur..." msgstr "Kabur Gaussian Terpilih..." -#: plug-ins/common/sel_gauss.c:224 +#: plug-ins/common/sel_gauss.c:225 msgid "Selective Gaussian Blur" msgstr "Kabur Gaussian Terpilih" -#: plug-ins/common/sel_gauss.c:256 +#: plug-ins/common/sel_gauss.c:257 #, fuzzy msgid "_Blur radius:" msgstr "Jejari _Kabur:" -#: plug-ins/common/sel_gauss.c:266 +#: plug-ins/common/sel_gauss.c:267 #, fuzzy msgid "_Max. delta:" msgstr "_Maks. Delta:" @@ -6836,11 +6836,11 @@ #. #. * Let the user know what we're doing... #. -#: plug-ins/common/sharpen.c:315 +#: plug-ins/common/sharpen.c:311 msgid "Sharpening..." msgstr "Menajamkan..." -#: plug-ins/common/sharpen.c:484 +#: plug-ins/common/sharpen.c:480 msgid "Sharpen" msgstr "Tajam" @@ -6849,7 +6849,7 @@ msgid "_Shift..." msgstr "Menganjakkan..." -#: plug-ins/common/shift.c:191 +#: plug-ins/common/shift.c:194 msgid "Shifting..." msgstr "Menganjakkan..." @@ -7060,24 +7060,24 @@ msgid "_Sobel..." msgstr "_Sobel" -#: plug-ins/common/sobel.c:226 +#: plug-ins/common/sobel.c:227 msgid "Sobel Edge Detection" msgstr "Pengesanan Tepi Sobel" -#: plug-ins/common/sobel.c:248 +#: plug-ins/common/sobel.c:249 msgid "Sobel _Horizontally" msgstr "Sobel _Mengufuk" -#: plug-ins/common/sobel.c:260 +#: plug-ins/common/sobel.c:261 msgid "Sobel _Vertically" msgstr "Sobel_Menegak" -#: plug-ins/common/sobel.c:272 +#: plug-ins/common/sobel.c:273 #, fuzzy msgid "_Keep sign of result (one direction only)" msgstr "_Simpan Hasil Isyarat (satu Arah sahaja)" -#: plug-ins/common/sobel.c:358 +#: plug-ins/common/sobel.c:359 msgid "Sobel Edge Detecting..." msgstr "Pengesanan Tepi Sobel" @@ -7402,15 +7402,15 @@ msgid "Sp_read..." msgstr "Menyebarkan..." -#: plug-ins/common/spread.c:179 +#: plug-ins/common/spread.c:182 msgid "Spreading..." msgstr "Menyebarkan..." -#: plug-ins/common/spread.c:345 +#: plug-ins/common/spread.c:346 msgid "Spread" msgstr "Sebaran" -#: plug-ins/common/spread.c:363 +#: plug-ins/common/spread.c:364 msgid "Spread Amount" msgstr "Jumlah Sebaran" @@ -7714,7 +7714,8 @@ msgid "_Tile..." msgstr "Tiler..." -#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:321 +#. Set the tile cache size +#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:320 msgid "Tiling..." msgstr "Penjubinan..." @@ -7736,45 +7737,45 @@ msgstr "S_emua Jubin" #. Get the preview image -#: plug-ins/common/tileit.c:364 +#: plug-ins/common/tileit.c:363 msgid "TileIt" msgstr "TileIt" #. Area for buttons etc #. Flip -#: plug-ins/common/tileit.c:407 plug-ins/ifscompose/ifscompose.c:628 +#: plug-ins/common/tileit.c:406 plug-ins/ifscompose/ifscompose.c:628 msgid "Flip" msgstr "Terbalikkan" -#: plug-ins/common/tileit.c:455 +#: plug-ins/common/tileit.c:454 #, fuzzy msgid "A_ll tiles" msgstr "S_emua Jubin" -#: plug-ins/common/tileit.c:469 +#: plug-ins/common/tileit.c:468 #, fuzzy msgid "Al_ternate tiles" msgstr "Jubin Pi_lihan" -#: plug-ins/common/tileit.c:483 +#: plug-ins/common/tileit.c:482 #, fuzzy msgid "_Explicit tile" msgstr "Jubin _Nyata" -#: plug-ins/common/tileit.c:489 +#: plug-ins/common/tileit.c:488 msgid "Ro_w:" msgstr "Bari_s" -#: plug-ins/common/tileit.c:513 +#: plug-ins/common/tileit.c:512 msgid "Col_umn:" msgstr "Laj_ur" -#: plug-ins/common/tileit.c:565 +#: plug-ins/common/tileit.c:564 msgid "O_pacity:" msgstr "K_elegapan:" #. Lower frame saying howmany segments -#: plug-ins/common/tileit.c:574 +#: plug-ins/common/tileit.c:573 #, fuzzy msgid "Number of Segments" msgstr "_Bil Segmen:" @@ -7927,16 +7928,16 @@ msgid "Unit Editor" msgstr "Editor Unit" -#: plug-ins/common/unsharp.c:149 +#: plug-ins/common/unsharp.c:143 #, fuzzy msgid "_Unsharp Mask..." msgstr "Topengan Taktajam" -#: plug-ins/common/unsharp.c:493 +#: plug-ins/common/unsharp.c:468 msgid "Merging..." msgstr "Dicantumkan..." -#: plug-ins/common/unsharp.c:664 +#: plug-ins/common/unsharp.c:635 msgid "Unsharp Mask" msgstr "Topengan Taktajam" @@ -9056,19 +9057,19 @@ msgid "_Zoom:" msgstr "_Zum:" -#: plug-ins/gfig/gfig-bezier.c:452 +#: plug-ins/gfig/gfig-bezier.c:448 msgid "Closed" msgstr "Ditutup" -#: plug-ins/gfig/gfig-bezier.c:457 +#: plug-ins/gfig/gfig-bezier.c:453 msgid "Close curve on completion" msgstr "Tutup lengkung bila tamat" -#: plug-ins/gfig/gfig-bezier.c:462 +#: plug-ins/gfig/gfig-bezier.c:458 msgid "Show Line Frame" msgstr "Tunjukkan Bingkai Baris" -#: plug-ins/gfig/gfig-bezier.c:467 +#: plug-ins/gfig/gfig-bezier.c:463 msgid "Draws lines between the control points. Only during curve creation" msgstr "Lukis baris diantara titik kawalan. Sewaktu mewujudkan lengkung" diff -uraN gimp-2.2.0/po-plug-ins/nb.gmo gimp-2.2.1/po-plug-ins/nb.gmo --- gimp-2.2.0/po-plug-ins/nb.gmo 2004-12-19 03:34:24.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/nb.gmo 2004-12-28 16:59:07.000000000 +0100 @@ -201,7 +201,7 @@ which has no alpha channel.Z scale (size)Z:ZealousCropping(tm)...ZoomZoom inZoom in (make image bigger)Zoom outZoom out (make image smaller)_3x3_Abbreviation:_Adaptive_Additive_Advanced_Alpha_Alpha:_Amount:_Amplitude:_Angle:_Animate_Antialiasing_Azimuth:_Background_Bilinear_Black_Blacken_Blast_Blend_Blue_Blue:_Border:_Bottom:_Box_Brightness_Brightness:_Brush_Bucket size:_Bump Map_Bumpmap_Copy_Deflate_Depth:_Derivative_Description:_Detail:_Digits:_Displacement:_Distorted_Dots_Edit_Effect Image:_Elevation:_Emboss_Encapsulated PostScript_Entire Image_Environment Map_Exponent:_Factor:_File_Filename:_Font:_Force_Fractals_Ftp Site_Gamma:_General_Gopher_Gradient_Gray:_Green_Green:_Grey_Grid size:_Grow_Height_Height:_Help_Hex_Hidden_Horizontal_Horizontal style:_Horizontal:_Horz. Spacing:_Hue_ID:_Ideal_Ignore_Ignore the bottom layer even if visible_Inch_Input SPI:_Insert_Intensity:_Interlacing (Adam7)_Invert_JPEG_JavaScript_Keep original surroundings_Kill_LZW_Large staggered_Left_Lens refraction index:_Light_Lighting Effects..._Linear_Lines_Link_Lower_Make surroundings transparent_Mapping_Material_Max (%):_Max Depth:_Midtones_Millimeter_Mirror_Misc Ops._Monochrome_Move_None_Normal_Pack Bits_Period:_Phase:_Ping Pong_Plural:_Polygon_Preview_Preview!_Prompt for area info_Psychobilly_RGB_RLE compression_RLE encoded_Radial_Radius:_Randomize_Recipient:_Rectangle_Red:_Redo %s_Reflective_Remove_Rendering_Require default URL_Right_Right Border_Rotated_Saturation_Saturation:_Screen Shot..._Search:_Sender:_Set surroundings to background color_Set surroundings to index 0_Settings_Sharpness:_Size_Size:_Smear_Snap-To Grid Enabled_Speed:_Square_Squares_Staggered_Strength:_Symbol:_Thickness:_Threshold_Threshold:_Title:_Tools_Top Start at:_Top:_Transparent_URL to activate when this area is clicked: (required)_Undo %s_Update_Upper_Upper Border_Use the (invisible) bottom layer as the base_Value_Value:_Variation:_Vert. Spacing:_Vertical_Vertical style:_Vertical:_View_Voronoi_Warp_Waterlevel:_Wavelength:_Web Site_White_Wide-striped_Width_Width:_Wind_Wrap_X Scale:_X:_Y Scale:_Y:_Yellow_Z:_Zoom_Zoom:`Default' is created.a _Single Windowafteralphablackbluecmcyancyan_ke-_mailgreenhueinvalid formatted GFlare file: %s k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedmagentamagenta_kmillisecondspixelspixels from _toppixels from l_eftredsaturationsin^p, steppedsin^p-based functionthe _Whole Screenvaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: GIMP po-plug-ins HEAD Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-11-07 17:28+0100 Last-Translator: Sigurd Gartmann Language-Team: Norwegian diff -uraN gimp-2.2.0/po-plug-ins/nb.po gimp-2.2.1/po-plug-ins/nb.po --- gimp-2.2.0/po-plug-ins/nb.po 2004-12-19 03:34:14.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/nb.po 2004-12-28 16:58:58.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: GIMP po-plug-ins HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-11-07 17:28+0100\n" "Last-Translator: Sigurd Gartmann \n" "Language-Team: Norwegian \n" @@ -977,7 +977,7 @@ msgid "Antialiasing quality. Higher is better, but slower" msgstr "Kvalitet for antialiasing. Høyere er bedre, men tregere" -#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:720 +#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:691 #: plug-ins/common/wind.c:993 plug-ins/imagemap/imap_preferences.c:539 msgid "_Threshold:" msgstr "_Terskel:" @@ -2169,12 +2169,12 @@ msgstr "Orientering" #: plug-ins/common/blinds.c:259 plug-ins/common/ripple.c:539 -#: plug-ins/common/tileit.c:419 plug-ins/pagecurl/pagecurl.c:530 +#: plug-ins/common/tileit.c:418 plug-ins/pagecurl/pagecurl.c:530 msgid "_Horizontal" msgstr "_Horisontal" #: plug-ins/common/blinds.c:260 plug-ins/common/ripple.c:540 -#: plug-ins/common/tileit.c:429 plug-ins/pagecurl/pagecurl.c:529 +#: plug-ins/common/tileit.c:428 plug-ins/pagecurl/pagecurl.c:529 msgid "_Vertical" msgstr "_Vertikal" @@ -2197,7 +2197,7 @@ msgid "_Blur" msgstr "Slør" -#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:383 +#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:432 msgid "Blurring..." msgstr "Blurring..." @@ -2317,25 +2317,25 @@ msgid "Ca_rtoon..." msgstr "T_ittel" -#: plug-ins/common/cartoon.c:228 plug-ins/common/dog.c:246 -#: plug-ins/common/gauss.c:430 plug-ins/common/neon.c:222 -#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:203 +#: plug-ins/common/cartoon.c:229 plug-ins/common/dog.c:247 +#: plug-ins/common/gauss.c:431 plug-ins/common/neon.c:221 +#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:204 #: plug-ins/common/softglow.c:220 plug-ins/gflare/gflare.c:972 #: plug-ins/sgi/sgi.c:528 plug-ins/xjt/xjt.c:1673 msgid "Cannot operate on indexed color images." msgstr "Kan ikke håndtere bilder med indekserte farger." -#: plug-ins/common/cartoon.c:807 +#: plug-ins/common/cartoon.c:808 #, fuzzy msgid "Cartoon" msgstr "T_ittel" -#: plug-ins/common/cartoon.c:837 plug-ins/common/photocopy.c:867 +#: plug-ins/common/cartoon.c:838 plug-ins/common/photocopy.c:867 #, fuzzy msgid "_Mask radius:" msgstr "_Blur-radius:" -#: plug-ins/common/cartoon.c:851 +#: plug-ins/common/cartoon.c:852 #, fuzzy msgid "_Percent black:" msgstr "Prosent" @@ -2502,29 +2502,29 @@ msgid "Colorify Custom Color" msgstr "Colorify egendefinert farge" -#: plug-ins/common/colortoalpha.c:105 +#: plug-ins/common/colortoalpha.c:104 #, fuzzy msgid "Color to _Alpha..." msgstr "Farge til alpha" -#: plug-ins/common/colortoalpha.c:183 +#: plug-ins/common/colortoalpha.c:181 msgid "Removing color..." msgstr "Fjerner farge..." -#: plug-ins/common/colortoalpha.c:364 +#: plug-ins/common/colortoalpha.c:377 msgid "Color to Alpha" msgstr "Farge til alpha" -#: plug-ins/common/colortoalpha.c:389 plug-ins/common/mapcolor.c:424 +#: plug-ins/common/colortoalpha.c:402 plug-ins/common/mapcolor.c:424 #: plug-ins/gfli/gfli.c:835 plug-ins/gfli/gfli.c:898 msgid "From:" msgstr "Fra:" -#: plug-ins/common/colortoalpha.c:393 +#: plug-ins/common/colortoalpha.c:406 msgid "Color to Alpha Color Picker" msgstr "Farge til alpga fargeplukker" -#: plug-ins/common/colortoalpha.c:407 +#: plug-ins/common/colortoalpha.c:420 #, fuzzy msgid "to alpha" msgstr "til alpha" @@ -2849,26 +2849,26 @@ msgid "_Cubism..." msgstr "Kubisme" -#: plug-ins/common/cubism.c:267 +#: plug-ins/common/cubism.c:269 msgid "Cubism" msgstr "Kubisme" -#: plug-ins/common/cubism.c:296 +#: plug-ins/common/cubism.c:298 #, fuzzy msgid "_Tile size:" msgstr "S_tørrelse på flis:" -#: plug-ins/common/cubism.c:309 +#: plug-ins/common/cubism.c:311 #, fuzzy msgid "T_ile saturation:" msgstr "Metn_ing for flis:" -#: plug-ins/common/cubism.c:320 +#: plug-ins/common/cubism.c:322 #, fuzzy msgid "_Use background color" msgstr "Br_uk bakgrunnsfarge" -#: plug-ins/common/cubism.c:410 +#: plug-ins/common/cubism.c:412 #, fuzzy msgid "Cubistic Transformation..." msgstr "Kubistisk transformasjon" @@ -3259,44 +3259,44 @@ msgid "Des_peckle..." msgstr "Despeckle" -#: plug-ins/common/despeckle.c:420 plug-ins/common/despeckle.c:642 +#: plug-ins/common/despeckle.c:418 plug-ins/common/despeckle.c:640 msgid "Despeckle" msgstr "Despeckle" #. #. * Filter type controls... #. -#: plug-ins/common/despeckle.c:446 plug-ins/gimpressionist/orientmap.c:616 +#: plug-ins/common/despeckle.c:444 plug-ins/gimpressionist/orientmap.c:616 msgid "Type" msgstr "Type" #. parameter settings -#: plug-ins/common/despeckle.c:456 +#: plug-ins/common/despeckle.c:454 #, fuzzy msgid "Median" msgstr "Radianer" -#: plug-ins/common/despeckle.c:462 +#: plug-ins/common/despeckle.c:460 msgid "_Adaptive" msgstr "Tilp_assende" -#: plug-ins/common/despeckle.c:472 +#: plug-ins/common/despeckle.c:470 msgid "R_ecursive" msgstr "R_ekursiv" -#: plug-ins/common/despeckle.c:496 plug-ins/common/neon.c:728 +#: plug-ins/common/despeckle.c:494 plug-ins/common/neon.c:727 #: plug-ins/common/nlfilt.c:1083 plug-ins/common/nova.c:359 -#: plug-ins/common/unsharp.c:694 plug-ins/common/whirlpinch.c:588 +#: plug-ins/common/unsharp.c:665 plug-ins/common/whirlpinch.c:588 #: plug-ins/gflare/gflare.c:2686 plug-ins/imagemap/imap_circle.c:278 msgid "_Radius:" msgstr "_Radius:" -#: plug-ins/common/despeckle.c:512 +#: plug-ins/common/despeckle.c:510 #, fuzzy msgid "_Black level:" msgstr "_Sort nivå:" -#: plug-ins/common/despeckle.c:528 +#: plug-ins/common/despeckle.c:526 #, fuzzy msgid "_White level:" msgstr "_Hvitt nivå:" @@ -3393,7 +3393,7 @@ msgid "_Displace..." msgstr "Forskyvning..." -#: plug-ins/common/displace.c:228 +#: plug-ins/common/displace.c:231 msgid "Displacing..." msgstr "Forskyvning..." @@ -3433,32 +3433,32 @@ msgid "Difference of Gaussians..." msgstr "Selektivt Gaussisk blur" -#: plug-ins/common/dog.c:222 plug-ins/common/dog.c:273 +#: plug-ins/common/dog.c:227 plug-ins/common/dog.c:274 #, fuzzy msgid "DoG Edge Detect" msgstr "Finn kant" -#: plug-ins/common/dog.c:294 +#: plug-ins/common/dog.c:295 #, fuzzy msgid "Smoothing parameters" msgstr "Parametere for kopiering" -#: plug-ins/common/dog.c:308 +#: plug-ins/common/dog.c:309 #, fuzzy msgid "_Radius 1:" msgstr "_Radius:" -#: plug-ins/common/dog.c:312 +#: plug-ins/common/dog.c:313 #, fuzzy msgid "R_adius 2:" msgstr "R_adius:" -#: plug-ins/common/dog.c:324 plug-ins/common/normalize.c:88 +#: plug-ins/common/dog.c:325 plug-ins/common/normalize.c:88 #, fuzzy msgid "_Normalize" msgstr "_Normal" -#: plug-ins/common/dog.c:335 plug-ins/gimpressionist/paper.c:149 +#: plug-ins/common/dog.c:336 plug-ins/gimpressionist/paper.c:149 msgid "_Invert" msgstr "_Snu om" @@ -3519,7 +3519,7 @@ msgid "_Emboss..." msgstr "_Emboss" -#: plug-ins/common/emboss.c:374 plug-ins/common/emboss.c:439 +#: plug-ins/common/emboss.c:376 plug-ins/common/emboss.c:439 msgid "Emboss" msgstr "Emboss" @@ -3544,7 +3544,7 @@ msgid "En_grave..." msgstr "Graverer..." -#: plug-ins/common/engrave.c:181 +#: plug-ins/common/engrave.c:182 msgid "Engraving..." msgstr "Graverer..." @@ -3975,41 +3975,41 @@ msgid "_Gaussian Blur..." msgstr "/Filtre/Blur/Gaussian blur (IIR)..." -#: plug-ins/common/gauss.c:407 +#: plug-ins/common/gauss.c:413 #, fuzzy msgid "Gaussian Blur..." msgstr "/Filtre/Blur/Gaussian blur (IIR)..." -#: plug-ins/common/gauss.c:460 +#: plug-ins/common/gauss.c:461 #, fuzzy msgid "Gaussian Blur" msgstr "RLE Gaussian blur" #. parameter settings -#: plug-ins/common/gauss.c:483 +#: plug-ins/common/gauss.c:484 msgid "Blur Radius" msgstr "Blur-raduis" -#: plug-ins/common/gauss.c:497 plug-ins/common/jigsaw.c:2456 -#: plug-ins/common/spread.c:378 +#: plug-ins/common/gauss.c:498 plug-ins/common/jigsaw.c:2456 +#: plug-ins/common/spread.c:379 msgid "_Horizontal:" msgstr "_Horisontal:" -#: plug-ins/common/gauss.c:501 plug-ins/common/jigsaw.c:2473 -#: plug-ins/common/spread.c:382 +#: plug-ins/common/gauss.c:502 plug-ins/common/jigsaw.c:2473 +#: plug-ins/common/spread.c:383 msgid "_Vertical:" msgstr "_Vertikal:" -#: plug-ins/common/gauss.c:524 +#: plug-ins/common/gauss.c:525 #, fuzzy msgid "Blur Method" msgstr "Blur type" -#: plug-ins/common/gauss.c:528 +#: plug-ins/common/gauss.c:529 msgid "_IIR" msgstr "" -#: plug-ins/common/gauss.c:529 +#: plug-ins/common/gauss.c:530 #, fuzzy msgid "_RLE" msgstr "RLE" @@ -4316,20 +4316,20 @@ msgid "_Glass Tile..." msgstr "Glassflis..." -#: plug-ins/common/glasstile.c:208 +#: plug-ins/common/glasstile.c:209 msgid "Glass Tile..." msgstr "Glassflis..." -#: plug-ins/common/glasstile.c:251 +#: plug-ins/common/glasstile.c:250 msgid "Glass Tile" msgstr "Glassflis" -#: plug-ins/common/glasstile.c:282 +#: plug-ins/common/glasstile.c:281 #, fuzzy msgid "Tile _width:" msgstr "_Flisbredde:" -#: plug-ins/common/glasstile.c:296 plug-ins/common/mosaic.c:621 +#: plug-ins/common/glasstile.c:295 plug-ins/common/mosaic.c:621 #, fuzzy msgid "Tile _height:" msgstr "Flis_høyde:" @@ -5399,17 +5399,17 @@ msgid "_Neon..." msgstr "Video/RGB..." -#: plug-ins/common/neon.c:204 +#: plug-ins/common/neon.c:207 #, fuzzy msgid "Neon..." msgstr "Newsprint" -#: plug-ins/common/neon.c:698 +#: plug-ins/common/neon.c:697 #, fuzzy msgid "Neon Detection" msgstr "Finn kant" -#: plug-ins/common/neon.c:743 plug-ins/common/unsharp.c:707 +#: plug-ins/common/neon.c:742 plug-ins/common/unsharp.c:678 msgid "_Amount:" msgstr "_Mengde:" @@ -5581,7 +5581,7 @@ msgid "_Scatter RGB..." msgstr "Spre HSV" -#: plug-ins/common/noisify.c:284 +#: plug-ins/common/noisify.c:285 msgid "Adding Noise..." msgstr "Legger til støy..." @@ -5657,7 +5657,7 @@ msgid "Oili_fy..." msgstr "Oljemaleri" -#: plug-ins/common/oilify.c:188 +#: plug-ins/common/oilify.c:189 msgid "Oil Painting..." msgstr "Oljemaleri" @@ -5802,7 +5802,7 @@ msgid "Photocopy" msgstr "Fotografi" -#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:513 +#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:509 #: plug-ins/common/softglow.c:687 msgid "_Sharpness:" msgstr "_Skarphet:" @@ -6476,7 +6476,7 @@ msgid "_Ripple..." msgstr "Lager krusninger..." -#: plug-ins/common/ripple.c:219 +#: plug-ins/common/ripple.c:222 msgid "Rippling..." msgstr "Lager krusninger..." @@ -6712,21 +6712,21 @@ msgid "_Selective Gaussian Blur..." msgstr "Selektivt Gaussisk blur" -#: plug-ins/common/sel_gauss.c:186 +#: plug-ins/common/sel_gauss.c:187 #, fuzzy msgid "Selective Gaussian Blur..." msgstr "Selektivt Gaussisk blur" -#: plug-ins/common/sel_gauss.c:224 +#: plug-ins/common/sel_gauss.c:225 msgid "Selective Gaussian Blur" msgstr "Selektivt Gaussisk blur" -#: plug-ins/common/sel_gauss.c:256 +#: plug-ins/common/sel_gauss.c:257 #, fuzzy msgid "_Blur radius:" msgstr "_Blur-radius:" -#: plug-ins/common/sel_gauss.c:266 +#: plug-ins/common/sel_gauss.c:267 #, fuzzy msgid "_Max. delta:" msgstr "_Maks delta:" @@ -6749,11 +6749,11 @@ #. #. * Let the user know what we're doing... #. -#: plug-ins/common/sharpen.c:315 +#: plug-ins/common/sharpen.c:311 msgid "Sharpening..." msgstr "Gjør skarpere..." -#: plug-ins/common/sharpen.c:484 +#: plug-ins/common/sharpen.c:480 msgid "Sharpen" msgstr "Gjør skarpere" @@ -6762,7 +6762,7 @@ msgid "_Shift..." msgstr "Shifting..." -#: plug-ins/common/shift.c:191 +#: plug-ins/common/shift.c:194 msgid "Shifting..." msgstr "Shifting..." @@ -6974,23 +6974,23 @@ msgid "_Sobel..." msgstr "Kilde..." -#: plug-ins/common/sobel.c:226 +#: plug-ins/common/sobel.c:227 msgid "Sobel Edge Detection" msgstr "Sobel kantgjenkjenning" -#: plug-ins/common/sobel.c:248 +#: plug-ins/common/sobel.c:249 msgid "Sobel _Horizontally" msgstr "Sobel _horisontalt" -#: plug-ins/common/sobel.c:260 +#: plug-ins/common/sobel.c:261 msgid "Sobel _Vertically" msgstr "Sobel _vertikalt" -#: plug-ins/common/sobel.c:272 +#: plug-ins/common/sobel.c:273 msgid "_Keep sign of result (one direction only)" msgstr "" -#: plug-ins/common/sobel.c:358 +#: plug-ins/common/sobel.c:359 msgid "Sobel Edge Detecting..." msgstr "Sobel kantgjenkjenning..." @@ -7324,15 +7324,15 @@ msgid "Sp_read..." msgstr "Sprer..." -#: plug-ins/common/spread.c:179 +#: plug-ins/common/spread.c:182 msgid "Spreading..." msgstr "Sprer..." -#: plug-ins/common/spread.c:345 +#: plug-ins/common/spread.c:346 msgid "Spread" msgstr "Spredning" -#: plug-ins/common/spread.c:363 +#: plug-ins/common/spread.c:364 msgid "Spread Amount" msgstr "Spredningsmengde" @@ -7623,7 +7623,8 @@ msgid "_Tile..." msgstr "Fliser..." -#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:321 +#. Set the tile cache size +#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:320 msgid "Tiling..." msgstr "Flislegger..." @@ -7645,45 +7646,45 @@ msgstr "A_lle fliser" #. Get the preview image -#: plug-ins/common/tileit.c:364 +#: plug-ins/common/tileit.c:363 msgid "TileIt" msgstr "Flislegg" #. Area for buttons etc #. Flip -#: plug-ins/common/tileit.c:407 plug-ins/ifscompose/ifscompose.c:628 +#: plug-ins/common/tileit.c:406 plug-ins/ifscompose/ifscompose.c:628 msgid "Flip" msgstr "Vend" -#: plug-ins/common/tileit.c:455 +#: plug-ins/common/tileit.c:454 #, fuzzy msgid "A_ll tiles" msgstr "A_lle fliser" -#: plug-ins/common/tileit.c:469 +#: plug-ins/common/tileit.c:468 #, fuzzy msgid "Al_ternate tiles" msgstr "Fo_rskjellige fliser" -#: plug-ins/common/tileit.c:483 +#: plug-ins/common/tileit.c:482 #, fuzzy msgid "_Explicit tile" msgstr "_Eksplisitt flis" -#: plug-ins/common/tileit.c:489 +#: plug-ins/common/tileit.c:488 msgid "Ro_w:" msgstr "Ra_d:" -#: plug-ins/common/tileit.c:513 +#: plug-ins/common/tileit.c:512 msgid "Col_umn:" msgstr "K_olonne:" -#: plug-ins/common/tileit.c:565 +#: plug-ins/common/tileit.c:564 msgid "O_pacity:" msgstr "U_gjennomsiktighet:" #. Lower frame saying howmany segments -#: plug-ins/common/tileit.c:574 +#: plug-ins/common/tileit.c:573 #, fuzzy msgid "Number of Segments" msgstr "A_ntall segmenter:" @@ -7826,16 +7827,16 @@ msgid "Unit Editor" msgstr "Enhetseditor" -#: plug-ins/common/unsharp.c:149 +#: plug-ins/common/unsharp.c:143 #, fuzzy msgid "_Unsharp Mask..." msgstr "Uskarp maske" -#: plug-ins/common/unsharp.c:493 +#: plug-ins/common/unsharp.c:468 msgid "Merging..." msgstr "Fletter..." -#: plug-ins/common/unsharp.c:664 +#: plug-ins/common/unsharp.c:635 msgid "Unsharp Mask" msgstr "Uskarp maske" @@ -8926,19 +8927,19 @@ msgid "_Zoom:" msgstr "_Zoom:" -#: plug-ins/gfig/gfig-bezier.c:452 +#: plug-ins/gfig/gfig-bezier.c:448 msgid "Closed" msgstr "Lukket" -#: plug-ins/gfig/gfig-bezier.c:457 +#: plug-ins/gfig/gfig-bezier.c:453 msgid "Close curve on completion" msgstr "Lukk kurve ved komplettering" -#: plug-ins/gfig/gfig-bezier.c:462 +#: plug-ins/gfig/gfig-bezier.c:458 msgid "Show Line Frame" msgstr "Vis linjeramme" -#: plug-ins/gfig/gfig-bezier.c:467 +#: plug-ins/gfig/gfig-bezier.c:463 msgid "Draws lines between the control points. Only during curve creation" msgstr "" diff -uraN gimp-2.2.0/po-plug-ins/nl.gmo gimp-2.2.1/po-plug-ins/nl.gmo --- gimp-2.2.0/po-plug-ins/nl.gmo 2004-12-19 03:34:24.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/nl.gmo 2004-12-28 16:59:07.000000000 +0100 @@ -383,7 +383,7 @@ which has no alpha channel.Z scale (size)Z:ZealousCropping(tm)...ZoomZoom inZoom in (make image bigger)Zoom outZoom out (make image smaller)Zoom scale:_3x3_Abbreviation:_Adaptive_Additive_Advanced_Algorithm:_Alpha_Alpha trimmed mean_Alpha:_Amount:_Amplitude:_Angle:_Animate_Antialiasing_Automatically convert_Azimuth:_Background_Base URL:_Bilinear_Black_Blacken_Blast_Blend_Blinds..._Blue_Blue:_Blur_Border Average..._Border:_Bottom:_Box_Bright:_Brightness_Brightness:_Brush_Bucket size:_Bump Map_Bumpmap_Copy_Deflate_Depth:_Derivative_Description:_Detail:_Diffraction Patterns..._Digits:_Displace..._Displacement:_Distorted_Dots_Dynamic:_Edge..._Edit_Effect Image:_Elevation:_Emboss_Emboss..._Encapsulated PostScript_Entire Image_Environment Map_Exponent:_Factor:_File_Filename:_Film..._FlareFX..._Font:_Force_Fractal Explorer..._Fractals_Free_Ftp Site_GIF comment:_Gamma:_Gaussian Blur..._General_Gfig..._Glowing:_Gopher_Gradient_Gray:_Green_Green:_Grey_Grid size:_Grid..._Grow_Guillotine_HSL color model_Height_Height:_Help_Hex_Hidden_High_Holdness:_Horizontal_Horizontal style:_Horizontal:_Horz. Spacing:_Hot..._Hue_ID:_IIR_Ideal_Ignore_Illusion..._Inch_Input SPI:_Insert_Intensity:_Interlacing (Adam7)_Invert_JPEG_JavaScript_Keep NCSA circles true_Keep aspect ratio_Kill_LZW_Laplace_Large staggered_Left_Left Start at:_Light_Lighting Effects..._Limit line width_Linear_Lines_Link_Load defaults_Loop forever_Low_Lower_MIME_Map type:_Mapping_Mask radius:_Mask size:_Material_Max (%):_Max Depth:_Metallic_Midtones_Millimeter_Mirror_Misc Ops._Monochrome_Mosaic..._Move_NL Filter..._Neon..._No. Across:_None_Normal_Normalize_Number of segments:_Optimize (Difference)_Pack Bits_Parameters_Percent black:_Period:_Phase:_Photocopy..._Ping Pong_Plasma..._Playback..._Plural:_Polished:_Polygon_PostScript level 2_Presets_Preview_Preview!_Prompt for area info_Psychobilly_Qbist..._Quality:_RGB_RLE_RLE compression_RLE encoded_Radial_Radius 1:_Radius:_Random seed:_Randomize_Rays_Recipient:_Rectangle_Red:_Redo %s_Reflective_Remove_Rendering_Require default URL_Right_Right Border_Rotated_Saturation_Saturation:_Save defaults_Scale:_Search:_Second Flares_Sender:_Settings_Sharpness:_Shiny:_Show cursor_Size_Size:_Smear_Snap-To Grid Enabled_Speed:_Spokes:_Square_Squares_Staggered_Strength:_Symbol:_TWAIN..._Target frame name/ID: (optional - used for FRAMES only)_Thickness:_Threshold_Threshold:_Title:_Tools_Top Start at:_Top:_Transparent_URL to activate when this area is clicked: (required)_Undo %s_Update_Upper_Upper Border_Use double-sized grab handles_Use the (invisible) bottom layer as the base_Uuencode_Value_Value:_Variation:_Vert. Spacing:_Vertical_Vertical style:_Vertical:_View_Voronoi_Warp_Waterlevel:_Wavelength:_Web Site_White_Wide-striped_Width_Width:_Wind_Wrap_X Scale:_X displacement:_X offset:_X:_Y Scale:_Y displacement:_Y offset:_Y:_Yellow_Z:_Zoom_Zoom:`Default' is created.a _Single Windowafteralphablackblueblueness_cb470blueness_cb470fblueness_cb709blueness_cb709fbzip archivecmcyancyan_ke-_mailgreengzip archivehueinvalid formatted GFlare file: %s k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftpixels/%aredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsin^p, steppedsin^p-based functionsome sort of error with the file extension or lack thereofthe _Whole Screenvaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: gimp 2.0 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-11-21 20:30+0100 Last-Translator: Tino Meinen Language-Team: Dutch diff -uraN gimp-2.2.0/po-plug-ins/nl.po gimp-2.2.1/po-plug-ins/nl.po --- gimp-2.2.0/po-plug-ins/nl.po 2004-12-19 03:34:15.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/nl.po 2004-12-28 16:58:58.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: gimp 2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-11-21 20:30+0100\n" "Last-Translator: Tino Meinen \n" "Language-Team: Dutch \n" @@ -981,7 +981,7 @@ msgid "Antialiasing quality. Higher is better, but slower" msgstr "Kwaliteit anti-alias. Hoger is beter, maar trager" -#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:720 +#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:691 #: plug-ins/common/wind.c:993 plug-ins/imagemap/imap_preferences.c:539 msgid "_Threshold:" msgstr "_Drempel:" @@ -2186,12 +2186,12 @@ msgstr "Oriëntatie" #: plug-ins/common/blinds.c:259 plug-ins/common/ripple.c:539 -#: plug-ins/common/tileit.c:419 plug-ins/pagecurl/pagecurl.c:530 +#: plug-ins/common/tileit.c:418 plug-ins/pagecurl/pagecurl.c:530 msgid "_Horizontal" msgstr "_Horizontaal" #: plug-ins/common/blinds.c:260 plug-ins/common/ripple.c:540 -#: plug-ins/common/tileit.c:429 plug-ins/pagecurl/pagecurl.c:529 +#: plug-ins/common/tileit.c:428 plug-ins/pagecurl/pagecurl.c:529 msgid "_Vertical" msgstr "_Verticaal" @@ -2212,7 +2212,7 @@ msgid "_Blur" msgstr "_Vervagen" -#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:383 +#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:432 msgid "Blurring..." msgstr "Vervagen..." @@ -2333,23 +2333,23 @@ msgid "Ca_rtoon..." msgstr "Striptekening" -#: plug-ins/common/cartoon.c:228 plug-ins/common/dog.c:246 -#: plug-ins/common/gauss.c:430 plug-ins/common/neon.c:222 -#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:203 +#: plug-ins/common/cartoon.c:229 plug-ins/common/dog.c:247 +#: plug-ins/common/gauss.c:431 plug-ins/common/neon.c:221 +#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:204 #: plug-ins/common/softglow.c:220 plug-ins/gflare/gflare.c:972 #: plug-ins/sgi/sgi.c:528 plug-ins/xjt/xjt.c:1673 msgid "Cannot operate on indexed color images." msgstr "Kan niet op geïndexeerde kleurenafbeeldingen werken" -#: plug-ins/common/cartoon.c:807 +#: plug-ins/common/cartoon.c:808 msgid "Cartoon" msgstr "Striptekening" -#: plug-ins/common/cartoon.c:837 plug-ins/common/photocopy.c:867 +#: plug-ins/common/cartoon.c:838 plug-ins/common/photocopy.c:867 msgid "_Mask radius:" msgstr "_Maskergrootte:" -#: plug-ins/common/cartoon.c:851 +#: plug-ins/common/cartoon.c:852 msgid "_Percent black:" msgstr "_Percentage zwart:" @@ -2514,29 +2514,29 @@ msgid "Colorify Custom Color" msgstr "Verkleur eigen kleur" -#: plug-ins/common/colortoalpha.c:105 +#: plug-ins/common/colortoalpha.c:104 #, fuzzy msgid "Color to _Alpha..." msgstr "Kleur naar alpha" -#: plug-ins/common/colortoalpha.c:183 +#: plug-ins/common/colortoalpha.c:181 msgid "Removing color..." msgstr "Bezig met het verwijderen van kleur..." -#: plug-ins/common/colortoalpha.c:364 +#: plug-ins/common/colortoalpha.c:377 msgid "Color to Alpha" msgstr "Kleur naar alpha" -#: plug-ins/common/colortoalpha.c:389 plug-ins/common/mapcolor.c:424 +#: plug-ins/common/colortoalpha.c:402 plug-ins/common/mapcolor.c:424 #: plug-ins/gfli/gfli.c:835 plug-ins/gfli/gfli.c:898 msgid "From:" msgstr "Van:" -#: plug-ins/common/colortoalpha.c:393 +#: plug-ins/common/colortoalpha.c:406 msgid "Color to Alpha Color Picker" msgstr "Kleur naar alpha kleurkiezer" -#: plug-ins/common/colortoalpha.c:407 +#: plug-ins/common/colortoalpha.c:420 #, fuzzy msgid "to alpha" msgstr "naar alpha" @@ -2876,27 +2876,27 @@ msgid "_Cubism..." msgstr "Kubisme" -#: plug-ins/common/cubism.c:267 +#: plug-ins/common/cubism.c:269 msgid "Cubism" msgstr "Kubisme" -#: plug-ins/common/cubism.c:296 +#: plug-ins/common/cubism.c:298 #, fuzzy msgid "_Tile size:" msgstr "Tegelgrootte:" # What is the Dutch translation of Saturation? -#: plug-ins/common/cubism.c:309 +#: plug-ins/common/cubism.c:311 #, fuzzy msgid "T_ile saturation:" msgstr "Tegelverzadiging:" -#: plug-ins/common/cubism.c:320 +#: plug-ins/common/cubism.c:322 #, fuzzy msgid "_Use background color" msgstr "Gebruik achtergrondkleur" -#: plug-ins/common/cubism.c:410 +#: plug-ins/common/cubism.c:412 #, fuzzy msgid "Cubistic Transformation..." msgstr "Kubistische transformatie" @@ -3289,45 +3289,45 @@ msgid "Des_peckle..." msgstr "Ontspikkelen" -#: plug-ins/common/despeckle.c:420 plug-ins/common/despeckle.c:642 +#: plug-ins/common/despeckle.c:418 plug-ins/common/despeckle.c:640 msgid "Despeckle" msgstr "Ontspikkelen" #. #. * Filter type controls... #. -#: plug-ins/common/despeckle.c:446 plug-ins/gimpressionist/orientmap.c:616 +#: plug-ins/common/despeckle.c:444 plug-ins/gimpressionist/orientmap.c:616 msgid "Type" msgstr "Type" # What is a radian? #. parameter settings -#: plug-ins/common/despeckle.c:456 +#: plug-ins/common/despeckle.c:454 #, fuzzy msgid "Median" msgstr "Radialen" -#: plug-ins/common/despeckle.c:462 +#: plug-ins/common/despeckle.c:460 msgid "_Adaptive" msgstr "Adaptief" -#: plug-ins/common/despeckle.c:472 +#: plug-ins/common/despeckle.c:470 msgid "R_ecursive" msgstr "Recursief" -#: plug-ins/common/despeckle.c:496 plug-ins/common/neon.c:728 +#: plug-ins/common/despeckle.c:494 plug-ins/common/neon.c:727 #: plug-ins/common/nlfilt.c:1083 plug-ins/common/nova.c:359 -#: plug-ins/common/unsharp.c:694 plug-ins/common/whirlpinch.c:588 +#: plug-ins/common/unsharp.c:665 plug-ins/common/whirlpinch.c:588 #: plug-ins/gflare/gflare.c:2686 plug-ins/imagemap/imap_circle.c:278 msgid "_Radius:" msgstr "Radius:" -#: plug-ins/common/despeckle.c:512 +#: plug-ins/common/despeckle.c:510 #, fuzzy msgid "_Black level:" msgstr "Zwartniveau:" -#: plug-ins/common/despeckle.c:528 +#: plug-ins/common/despeckle.c:526 #, fuzzy msgid "_White level:" msgstr "Witniveau:" @@ -3417,7 +3417,7 @@ msgid "_Displace..." msgstr "_Verplaatsen..." -#: plug-ins/common/displace.c:228 +#: plug-ins/common/displace.c:231 msgid "Displacing..." msgstr "Bezig te verplaatsen..." @@ -3455,29 +3455,29 @@ msgid "Difference of Gaussians..." msgstr "Selectief Gaussiaanse vervaging" -#: plug-ins/common/dog.c:222 plug-ins/common/dog.c:273 +#: plug-ins/common/dog.c:227 plug-ins/common/dog.c:274 #, fuzzy msgid "DoG Edge Detect" msgstr "Randen vinden" -#: plug-ins/common/dog.c:294 +#: plug-ins/common/dog.c:295 #, fuzzy msgid "Smoothing parameters" msgstr "X-verloop gladmaken..." -#: plug-ins/common/dog.c:308 +#: plug-ins/common/dog.c:309 msgid "_Radius 1:" msgstr "_Straal 1:" -#: plug-ins/common/dog.c:312 +#: plug-ins/common/dog.c:313 msgid "R_adius 2:" msgstr "_Straal 2:" -#: plug-ins/common/dog.c:324 plug-ins/common/normalize.c:88 +#: plug-ins/common/dog.c:325 plug-ins/common/normalize.c:88 msgid "_Normalize" msgstr "_Normaliseren" -#: plug-ins/common/dog.c:335 plug-ins/gimpressionist/paper.c:149 +#: plug-ins/common/dog.c:336 plug-ins/gimpressionist/paper.c:149 msgid "_Invert" msgstr "Inverse" @@ -3530,7 +3530,7 @@ msgid "_Emboss..." msgstr "_Reliëf..." -#: plug-ins/common/emboss.c:374 plug-ins/common/emboss.c:439 +#: plug-ins/common/emboss.c:376 plug-ins/common/emboss.c:439 msgid "Emboss" msgstr "Reliëf" @@ -3555,7 +3555,7 @@ msgid "En_grave..." msgstr "_Graveren..." -#: plug-ins/common/engrave.c:181 +#: plug-ins/common/engrave.c:182 msgid "Engraving..." msgstr "Bezig met graveren..." @@ -3985,38 +3985,38 @@ msgid "_Gaussian Blur..." msgstr "_Gaussiaans vervagen..." -#: plug-ins/common/gauss.c:407 +#: plug-ins/common/gauss.c:413 msgid "Gaussian Blur..." msgstr "Gaussiaans vervagen..." -#: plug-ins/common/gauss.c:460 +#: plug-ins/common/gauss.c:461 msgid "Gaussian Blur" msgstr "Gaussiaans vervagen" #. parameter settings -#: plug-ins/common/gauss.c:483 +#: plug-ins/common/gauss.c:484 msgid "Blur Radius" msgstr "Vervagingsradius" -#: plug-ins/common/gauss.c:497 plug-ins/common/jigsaw.c:2456 -#: plug-ins/common/spread.c:378 +#: plug-ins/common/gauss.c:498 plug-ins/common/jigsaw.c:2456 +#: plug-ins/common/spread.c:379 msgid "_Horizontal:" msgstr "_Horizontaal:" -#: plug-ins/common/gauss.c:501 plug-ins/common/jigsaw.c:2473 -#: plug-ins/common/spread.c:382 +#: plug-ins/common/gauss.c:502 plug-ins/common/jigsaw.c:2473 +#: plug-ins/common/spread.c:383 msgid "_Vertical:" msgstr "_Verticaal:" -#: plug-ins/common/gauss.c:524 +#: plug-ins/common/gauss.c:525 msgid "Blur Method" msgstr "Vervagingsmethode" -#: plug-ins/common/gauss.c:528 +#: plug-ins/common/gauss.c:529 msgid "_IIR" msgstr "_IIR" -#: plug-ins/common/gauss.c:529 +#: plug-ins/common/gauss.c:530 msgid "_RLE" msgstr "_RLE" @@ -4331,20 +4331,20 @@ msgid "_Glass Tile..." msgstr "Bezig met glazen tegels..." -#: plug-ins/common/glasstile.c:208 +#: plug-ins/common/glasstile.c:209 msgid "Glass Tile..." msgstr "Bezig met glazen tegels..." -#: plug-ins/common/glasstile.c:251 +#: plug-ins/common/glasstile.c:250 msgid "Glass Tile" msgstr "Glazen tegels" -#: plug-ins/common/glasstile.c:282 +#: plug-ins/common/glasstile.c:281 #, fuzzy msgid "Tile _width:" msgstr "Tegelbreedte:" -#: plug-ins/common/glasstile.c:296 plug-ins/common/mosaic.c:621 +#: plug-ins/common/glasstile.c:295 plug-ins/common/mosaic.c:621 #, fuzzy msgid "Tile _height:" msgstr "Tegelhoogte:" @@ -5399,16 +5399,16 @@ msgid "_Neon..." msgstr "_Neon..." -#: plug-ins/common/neon.c:204 +#: plug-ins/common/neon.c:207 msgid "Neon..." msgstr "Neon..." -#: plug-ins/common/neon.c:698 +#: plug-ins/common/neon.c:697 #, fuzzy msgid "Neon Detection" msgstr "Randen vinden" -#: plug-ins/common/neon.c:743 plug-ins/common/unsharp.c:707 +#: plug-ins/common/neon.c:742 plug-ins/common/unsharp.c:678 msgid "_Amount:" msgstr "Hoeveelheid:" @@ -5575,7 +5575,7 @@ msgid "_Scatter RGB..." msgstr "KVW verspreiden..." -#: plug-ins/common/noisify.c:284 +#: plug-ins/common/noisify.c:285 msgid "Adding Noise..." msgstr "Ruis toevoegen..." @@ -5651,7 +5651,7 @@ msgid "Oili_fy..." msgstr "Olieverf" -#: plug-ins/common/oilify.c:188 +#: plug-ins/common/oilify.c:189 msgid "Oil Painting..." msgstr "Bezig met toepassen olieverf..." @@ -5792,7 +5792,7 @@ msgid "Photocopy" msgstr "Fotokopie" -#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:513 +#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:509 #: plug-ins/common/softglow.c:687 msgid "_Sharpness:" msgstr "_Scherpte:" @@ -6457,7 +6457,7 @@ msgid "_Ripple..." msgstr "Rimpelen..." -#: plug-ins/common/ripple.c:219 +#: plug-ins/common/ripple.c:222 msgid "Rippling..." msgstr "Rimpelen..." @@ -6698,20 +6698,20 @@ msgid "_Selective Gaussian Blur..." msgstr "Selectief Gaussiaanse vervaging" -#: plug-ins/common/sel_gauss.c:186 +#: plug-ins/common/sel_gauss.c:187 msgid "Selective Gaussian Blur..." msgstr "Selectief Gaussiaanse vervaging" -#: plug-ins/common/sel_gauss.c:224 +#: plug-ins/common/sel_gauss.c:225 msgid "Selective Gaussian Blur" msgstr "Selectieve Gaussiaanse vervaging" -#: plug-ins/common/sel_gauss.c:256 +#: plug-ins/common/sel_gauss.c:257 #, fuzzy msgid "_Blur radius:" msgstr "Vervagingsradius:" -#: plug-ins/common/sel_gauss.c:266 +#: plug-ins/common/sel_gauss.c:267 #, fuzzy msgid "_Max. delta:" msgstr "Max. delta:" @@ -6733,11 +6733,11 @@ #. #. * Let the user know what we're doing... #. -#: plug-ins/common/sharpen.c:315 +#: plug-ins/common/sharpen.c:311 msgid "Sharpening..." msgstr "Verscherpen..." -#: plug-ins/common/sharpen.c:484 +#: plug-ins/common/sharpen.c:480 msgid "Sharpen" msgstr "Verscherpen" @@ -6746,7 +6746,7 @@ msgid "_Shift..." msgstr "Verschuiven..." -#: plug-ins/common/shift.c:191 +#: plug-ins/common/shift.c:194 msgid "Shifting..." msgstr "Verschuiven..." @@ -6962,24 +6962,24 @@ msgid "_Sobel..." msgstr "Sobel" -#: plug-ins/common/sobel.c:226 +#: plug-ins/common/sobel.c:227 msgid "Sobel Edge Detection" msgstr "Sobel-randdetectie" -#: plug-ins/common/sobel.c:248 +#: plug-ins/common/sobel.c:249 msgid "Sobel _Horizontally" msgstr "Sobel horizontaal" -#: plug-ins/common/sobel.c:260 +#: plug-ins/common/sobel.c:261 msgid "Sobel _Vertically" msgstr "Sobel verticaal" -#: plug-ins/common/sobel.c:272 +#: plug-ins/common/sobel.c:273 #, fuzzy msgid "_Keep sign of result (one direction only)" msgstr "Behoud het teken van het resultaat (enkel één richting)" -#: plug-ins/common/sobel.c:358 +#: plug-ins/common/sobel.c:359 msgid "Sobel Edge Detecting..." msgstr "Sobel-randdetectie..." @@ -7310,15 +7310,15 @@ msgid "Sp_read..." msgstr "Verspreiden..." -#: plug-ins/common/spread.c:179 +#: plug-ins/common/spread.c:182 msgid "Spreading..." msgstr "Verspreiden..." -#: plug-ins/common/spread.c:345 +#: plug-ins/common/spread.c:346 msgid "Spread" msgstr "Verspreiden" -#: plug-ins/common/spread.c:363 +#: plug-ins/common/spread.c:364 msgid "Spread Amount" msgstr "Afstand" @@ -7622,7 +7622,8 @@ msgid "_Tile..." msgstr "Tegelbaar maken..." -#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:321 +#. Set the tile cache size +#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:320 msgid "Tiling..." msgstr "Betegelen..." @@ -7644,45 +7645,45 @@ msgstr "Alle tegels" #. Get the preview image -#: plug-ins/common/tileit.c:364 +#: plug-ins/common/tileit.c:363 msgid "TileIt" msgstr "TegelHet" #. Area for buttons etc #. Flip -#: plug-ins/common/tileit.c:407 plug-ins/ifscompose/ifscompose.c:628 +#: plug-ins/common/tileit.c:406 plug-ins/ifscompose/ifscompose.c:628 msgid "Flip" msgstr "Spiegelen" -#: plug-ins/common/tileit.c:455 +#: plug-ins/common/tileit.c:454 #, fuzzy msgid "A_ll tiles" msgstr "Alle tegels" -#: plug-ins/common/tileit.c:469 +#: plug-ins/common/tileit.c:468 #, fuzzy msgid "Al_ternate tiles" msgstr "Afwisselende tegels" -#: plug-ins/common/tileit.c:483 +#: plug-ins/common/tileit.c:482 #, fuzzy msgid "_Explicit tile" msgstr "Expliciete tegel" -#: plug-ins/common/tileit.c:489 +#: plug-ins/common/tileit.c:488 msgid "Ro_w:" msgstr "Rij:" -#: plug-ins/common/tileit.c:513 +#: plug-ins/common/tileit.c:512 msgid "Col_umn:" msgstr "Kolom:" -#: plug-ins/common/tileit.c:565 +#: plug-ins/common/tileit.c:564 msgid "O_pacity:" msgstr "Ondoorzichtigheid:" #. Lower frame saying howmany segments -#: plug-ins/common/tileit.c:574 +#: plug-ins/common/tileit.c:573 #, fuzzy msgid "Number of Segments" msgstr "_Aantal segmenten:" @@ -7837,16 +7838,16 @@ msgid "Unit Editor" msgstr "Eenheidseditor" -#: plug-ins/common/unsharp.c:149 +#: plug-ins/common/unsharp.c:143 #, fuzzy msgid "_Unsharp Mask..." msgstr "Onscherp masker" -#: plug-ins/common/unsharp.c:493 +#: plug-ins/common/unsharp.c:468 msgid "Merging..." msgstr "Samenvoegen..." -#: plug-ins/common/unsharp.c:664 +#: plug-ins/common/unsharp.c:635 msgid "Unsharp Mask" msgstr "Onscherp masker" @@ -8963,19 +8964,19 @@ msgid "_Zoom:" msgstr "Zoom:" -#: plug-ins/gfig/gfig-bezier.c:452 +#: plug-ins/gfig/gfig-bezier.c:448 msgid "Closed" msgstr "Gesloten" -#: plug-ins/gfig/gfig-bezier.c:457 +#: plug-ins/gfig/gfig-bezier.c:453 msgid "Close curve on completion" msgstr "Sluit curve bij voltooiing" -#: plug-ins/gfig/gfig-bezier.c:462 +#: plug-ins/gfig/gfig-bezier.c:458 msgid "Show Line Frame" msgstr "Toon lijnrand" -#: plug-ins/gfig/gfig-bezier.c:467 +#: plug-ins/gfig/gfig-bezier.c:463 msgid "Draws lines between the control points. Only during curve creation" msgstr "Tekent lijnen tussen handvatten. Alleen tijdens maken van curves" diff -uraN gimp-2.2.0/po-plug-ins/no.gmo gimp-2.2.1/po-plug-ins/no.gmo --- gimp-2.2.0/po-plug-ins/no.gmo 2004-12-19 03:34:24.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/no.gmo 2004-12-28 16:59:08.000000000 +0100 @@ -201,7 +201,7 @@ which has no alpha channel.Z scale (size)Z:ZealousCropping(tm)...ZoomZoom inZoom in (make image bigger)Zoom outZoom out (make image smaller)_3x3_Abbreviation:_Adaptive_Additive_Advanced_Alpha_Alpha:_Amount:_Amplitude:_Angle:_Animate_Antialiasing_Azimuth:_Background_Bilinear_Black_Blacken_Blast_Blend_Blue_Blue:_Border:_Bottom:_Box_Brightness_Brightness:_Brush_Bucket size:_Bump Map_Bumpmap_Copy_Deflate_Depth:_Derivative_Description:_Detail:_Digits:_Displacement:_Distorted_Dots_Edit_Effect Image:_Elevation:_Emboss_Encapsulated PostScript_Entire Image_Environment Map_Exponent:_Factor:_File_Filename:_Font:_Force_Fractals_Ftp Site_Gamma:_General_Gopher_Gradient_Gray:_Green_Green:_Grey_Grid size:_Grow_Height_Height:_Help_Hex_Hidden_Horizontal_Horizontal style:_Horizontal:_Horz. Spacing:_Hue_ID:_Ideal_Ignore_Ignore the bottom layer even if visible_Inch_Input SPI:_Insert_Intensity:_Interlacing (Adam7)_Invert_JPEG_JavaScript_Keep original surroundings_Kill_LZW_Large staggered_Left_Lens refraction index:_Light_Lighting Effects..._Linear_Lines_Link_Lower_Make surroundings transparent_Mapping_Material_Max (%):_Max Depth:_Midtones_Millimeter_Mirror_Misc Ops._Monochrome_Move_None_Normal_Pack Bits_Period:_Phase:_Ping Pong_Plural:_Polygon_Preview_Preview!_Prompt for area info_Psychobilly_RGB_RLE compression_RLE encoded_Radial_Radius:_Randomize_Recipient:_Rectangle_Red:_Redo %s_Reflective_Remove_Rendering_Require default URL_Right_Right Border_Rotated_Saturation_Saturation:_Screen Shot..._Search:_Sender:_Set surroundings to background color_Set surroundings to index 0_Settings_Sharpness:_Size_Size:_Smear_Snap-To Grid Enabled_Speed:_Square_Squares_Staggered_Strength:_Symbol:_Thickness:_Threshold_Threshold:_Title:_Tools_Top Start at:_Top:_Transparent_URL to activate when this area is clicked: (required)_Undo %s_Update_Upper_Upper Border_Use the (invisible) bottom layer as the base_Value_Value:_Variation:_Vert. Spacing:_Vertical_Vertical style:_Vertical:_View_Voronoi_Warp_Waterlevel:_Wavelength:_Web Site_White_Wide-striped_Width_Width:_Wind_Wrap_X Scale:_X:_Y Scale:_Y:_Yellow_Z:_Zoom_Zoom:`Default' is created.a _Single Windowafteralphablackbluecmcyancyan_ke-_mailgreenhueinvalid formatted GFlare file: %s k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedmagentamagenta_kmillisecondspixelspixels from _toppixels from l_eftredsaturationsin^p, steppedsin^p-based functionthe _Whole Screenvaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: GIMP po-plug-ins HEAD Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-11-07 17:28+0100 Last-Translator: Sigurd Gartmann Language-Team: Norwegian diff -uraN gimp-2.2.0/po-plug-ins/no.po gimp-2.2.1/po-plug-ins/no.po --- gimp-2.2.0/po-plug-ins/no.po 2004-12-19 03:34:15.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/no.po 2004-12-28 16:58:59.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: GIMP po-plug-ins HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-11-07 17:28+0100\n" "Last-Translator: Sigurd Gartmann \n" "Language-Team: Norwegian \n" @@ -977,7 +977,7 @@ msgid "Antialiasing quality. Higher is better, but slower" msgstr "Kvalitet for antialiasing. Høyere er bedre, men tregere" -#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:720 +#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:691 #: plug-ins/common/wind.c:993 plug-ins/imagemap/imap_preferences.c:539 msgid "_Threshold:" msgstr "_Terskel:" @@ -2169,12 +2169,12 @@ msgstr "Orientering" #: plug-ins/common/blinds.c:259 plug-ins/common/ripple.c:539 -#: plug-ins/common/tileit.c:419 plug-ins/pagecurl/pagecurl.c:530 +#: plug-ins/common/tileit.c:418 plug-ins/pagecurl/pagecurl.c:530 msgid "_Horizontal" msgstr "_Horisontal" #: plug-ins/common/blinds.c:260 plug-ins/common/ripple.c:540 -#: plug-ins/common/tileit.c:429 plug-ins/pagecurl/pagecurl.c:529 +#: plug-ins/common/tileit.c:428 plug-ins/pagecurl/pagecurl.c:529 msgid "_Vertical" msgstr "_Vertikal" @@ -2197,7 +2197,7 @@ msgid "_Blur" msgstr "Slør" -#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:383 +#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:432 msgid "Blurring..." msgstr "Blurring..." @@ -2317,25 +2317,25 @@ msgid "Ca_rtoon..." msgstr "T_ittel" -#: plug-ins/common/cartoon.c:228 plug-ins/common/dog.c:246 -#: plug-ins/common/gauss.c:430 plug-ins/common/neon.c:222 -#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:203 +#: plug-ins/common/cartoon.c:229 plug-ins/common/dog.c:247 +#: plug-ins/common/gauss.c:431 plug-ins/common/neon.c:221 +#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:204 #: plug-ins/common/softglow.c:220 plug-ins/gflare/gflare.c:972 #: plug-ins/sgi/sgi.c:528 plug-ins/xjt/xjt.c:1673 msgid "Cannot operate on indexed color images." msgstr "Kan ikke håndtere bilder med indekserte farger." -#: plug-ins/common/cartoon.c:807 +#: plug-ins/common/cartoon.c:808 #, fuzzy msgid "Cartoon" msgstr "T_ittel" -#: plug-ins/common/cartoon.c:837 plug-ins/common/photocopy.c:867 +#: plug-ins/common/cartoon.c:838 plug-ins/common/photocopy.c:867 #, fuzzy msgid "_Mask radius:" msgstr "_Blur-radius:" -#: plug-ins/common/cartoon.c:851 +#: plug-ins/common/cartoon.c:852 #, fuzzy msgid "_Percent black:" msgstr "Prosent" @@ -2502,29 +2502,29 @@ msgid "Colorify Custom Color" msgstr "Colorify egendefinert farge" -#: plug-ins/common/colortoalpha.c:105 +#: plug-ins/common/colortoalpha.c:104 #, fuzzy msgid "Color to _Alpha..." msgstr "Farge til alpha" -#: plug-ins/common/colortoalpha.c:183 +#: plug-ins/common/colortoalpha.c:181 msgid "Removing color..." msgstr "Fjerner farge..." -#: plug-ins/common/colortoalpha.c:364 +#: plug-ins/common/colortoalpha.c:377 msgid "Color to Alpha" msgstr "Farge til alpha" -#: plug-ins/common/colortoalpha.c:389 plug-ins/common/mapcolor.c:424 +#: plug-ins/common/colortoalpha.c:402 plug-ins/common/mapcolor.c:424 #: plug-ins/gfli/gfli.c:835 plug-ins/gfli/gfli.c:898 msgid "From:" msgstr "Fra:" -#: plug-ins/common/colortoalpha.c:393 +#: plug-ins/common/colortoalpha.c:406 msgid "Color to Alpha Color Picker" msgstr "Farge til alpga fargeplukker" -#: plug-ins/common/colortoalpha.c:407 +#: plug-ins/common/colortoalpha.c:420 #, fuzzy msgid "to alpha" msgstr "til alpha" @@ -2849,26 +2849,26 @@ msgid "_Cubism..." msgstr "Kubisme" -#: plug-ins/common/cubism.c:267 +#: plug-ins/common/cubism.c:269 msgid "Cubism" msgstr "Kubisme" -#: plug-ins/common/cubism.c:296 +#: plug-ins/common/cubism.c:298 #, fuzzy msgid "_Tile size:" msgstr "S_tørrelse på flis:" -#: plug-ins/common/cubism.c:309 +#: plug-ins/common/cubism.c:311 #, fuzzy msgid "T_ile saturation:" msgstr "Metn_ing for flis:" -#: plug-ins/common/cubism.c:320 +#: plug-ins/common/cubism.c:322 #, fuzzy msgid "_Use background color" msgstr "Br_uk bakgrunnsfarge" -#: plug-ins/common/cubism.c:410 +#: plug-ins/common/cubism.c:412 #, fuzzy msgid "Cubistic Transformation..." msgstr "Kubistisk transformasjon" @@ -3259,44 +3259,44 @@ msgid "Des_peckle..." msgstr "Despeckle" -#: plug-ins/common/despeckle.c:420 plug-ins/common/despeckle.c:642 +#: plug-ins/common/despeckle.c:418 plug-ins/common/despeckle.c:640 msgid "Despeckle" msgstr "Despeckle" #. #. * Filter type controls... #. -#: plug-ins/common/despeckle.c:446 plug-ins/gimpressionist/orientmap.c:616 +#: plug-ins/common/despeckle.c:444 plug-ins/gimpressionist/orientmap.c:616 msgid "Type" msgstr "Type" #. parameter settings -#: plug-ins/common/despeckle.c:456 +#: plug-ins/common/despeckle.c:454 #, fuzzy msgid "Median" msgstr "Radianer" -#: plug-ins/common/despeckle.c:462 +#: plug-ins/common/despeckle.c:460 msgid "_Adaptive" msgstr "Tilp_assende" -#: plug-ins/common/despeckle.c:472 +#: plug-ins/common/despeckle.c:470 msgid "R_ecursive" msgstr "R_ekursiv" -#: plug-ins/common/despeckle.c:496 plug-ins/common/neon.c:728 +#: plug-ins/common/despeckle.c:494 plug-ins/common/neon.c:727 #: plug-ins/common/nlfilt.c:1083 plug-ins/common/nova.c:359 -#: plug-ins/common/unsharp.c:694 plug-ins/common/whirlpinch.c:588 +#: plug-ins/common/unsharp.c:665 plug-ins/common/whirlpinch.c:588 #: plug-ins/gflare/gflare.c:2686 plug-ins/imagemap/imap_circle.c:278 msgid "_Radius:" msgstr "_Radius:" -#: plug-ins/common/despeckle.c:512 +#: plug-ins/common/despeckle.c:510 #, fuzzy msgid "_Black level:" msgstr "_Sort nivå:" -#: plug-ins/common/despeckle.c:528 +#: plug-ins/common/despeckle.c:526 #, fuzzy msgid "_White level:" msgstr "_Hvitt nivå:" @@ -3393,7 +3393,7 @@ msgid "_Displace..." msgstr "Forskyvning..." -#: plug-ins/common/displace.c:228 +#: plug-ins/common/displace.c:231 msgid "Displacing..." msgstr "Forskyvning..." @@ -3433,32 +3433,32 @@ msgid "Difference of Gaussians..." msgstr "Selektivt Gaussisk blur" -#: plug-ins/common/dog.c:222 plug-ins/common/dog.c:273 +#: plug-ins/common/dog.c:227 plug-ins/common/dog.c:274 #, fuzzy msgid "DoG Edge Detect" msgstr "Finn kant" -#: plug-ins/common/dog.c:294 +#: plug-ins/common/dog.c:295 #, fuzzy msgid "Smoothing parameters" msgstr "Parametere for kopiering" -#: plug-ins/common/dog.c:308 +#: plug-ins/common/dog.c:309 #, fuzzy msgid "_Radius 1:" msgstr "_Radius:" -#: plug-ins/common/dog.c:312 +#: plug-ins/common/dog.c:313 #, fuzzy msgid "R_adius 2:" msgstr "R_adius:" -#: plug-ins/common/dog.c:324 plug-ins/common/normalize.c:88 +#: plug-ins/common/dog.c:325 plug-ins/common/normalize.c:88 #, fuzzy msgid "_Normalize" msgstr "_Normal" -#: plug-ins/common/dog.c:335 plug-ins/gimpressionist/paper.c:149 +#: plug-ins/common/dog.c:336 plug-ins/gimpressionist/paper.c:149 msgid "_Invert" msgstr "_Snu om" @@ -3519,7 +3519,7 @@ msgid "_Emboss..." msgstr "_Emboss" -#: plug-ins/common/emboss.c:374 plug-ins/common/emboss.c:439 +#: plug-ins/common/emboss.c:376 plug-ins/common/emboss.c:439 msgid "Emboss" msgstr "Emboss" @@ -3544,7 +3544,7 @@ msgid "En_grave..." msgstr "Graverer..." -#: plug-ins/common/engrave.c:181 +#: plug-ins/common/engrave.c:182 msgid "Engraving..." msgstr "Graverer..." @@ -3975,41 +3975,41 @@ msgid "_Gaussian Blur..." msgstr "/Filtre/Blur/Gaussian blur (IIR)..." -#: plug-ins/common/gauss.c:407 +#: plug-ins/common/gauss.c:413 #, fuzzy msgid "Gaussian Blur..." msgstr "/Filtre/Blur/Gaussian blur (IIR)..." -#: plug-ins/common/gauss.c:460 +#: plug-ins/common/gauss.c:461 #, fuzzy msgid "Gaussian Blur" msgstr "RLE Gaussian blur" #. parameter settings -#: plug-ins/common/gauss.c:483 +#: plug-ins/common/gauss.c:484 msgid "Blur Radius" msgstr "Blur-raduis" -#: plug-ins/common/gauss.c:497 plug-ins/common/jigsaw.c:2456 -#: plug-ins/common/spread.c:378 +#: plug-ins/common/gauss.c:498 plug-ins/common/jigsaw.c:2456 +#: plug-ins/common/spread.c:379 msgid "_Horizontal:" msgstr "_Horisontal:" -#: plug-ins/common/gauss.c:501 plug-ins/common/jigsaw.c:2473 -#: plug-ins/common/spread.c:382 +#: plug-ins/common/gauss.c:502 plug-ins/common/jigsaw.c:2473 +#: plug-ins/common/spread.c:383 msgid "_Vertical:" msgstr "_Vertikal:" -#: plug-ins/common/gauss.c:524 +#: plug-ins/common/gauss.c:525 #, fuzzy msgid "Blur Method" msgstr "Blur type" -#: plug-ins/common/gauss.c:528 +#: plug-ins/common/gauss.c:529 msgid "_IIR" msgstr "" -#: plug-ins/common/gauss.c:529 +#: plug-ins/common/gauss.c:530 #, fuzzy msgid "_RLE" msgstr "RLE" @@ -4316,20 +4316,20 @@ msgid "_Glass Tile..." msgstr "Glassflis..." -#: plug-ins/common/glasstile.c:208 +#: plug-ins/common/glasstile.c:209 msgid "Glass Tile..." msgstr "Glassflis..." -#: plug-ins/common/glasstile.c:251 +#: plug-ins/common/glasstile.c:250 msgid "Glass Tile" msgstr "Glassflis" -#: plug-ins/common/glasstile.c:282 +#: plug-ins/common/glasstile.c:281 #, fuzzy msgid "Tile _width:" msgstr "_Flisbredde:" -#: plug-ins/common/glasstile.c:296 plug-ins/common/mosaic.c:621 +#: plug-ins/common/glasstile.c:295 plug-ins/common/mosaic.c:621 #, fuzzy msgid "Tile _height:" msgstr "Flis_høyde:" @@ -5399,17 +5399,17 @@ msgid "_Neon..." msgstr "Video/RGB..." -#: plug-ins/common/neon.c:204 +#: plug-ins/common/neon.c:207 #, fuzzy msgid "Neon..." msgstr "Newsprint" -#: plug-ins/common/neon.c:698 +#: plug-ins/common/neon.c:697 #, fuzzy msgid "Neon Detection" msgstr "Finn kant" -#: plug-ins/common/neon.c:743 plug-ins/common/unsharp.c:707 +#: plug-ins/common/neon.c:742 plug-ins/common/unsharp.c:678 msgid "_Amount:" msgstr "_Mengde:" @@ -5581,7 +5581,7 @@ msgid "_Scatter RGB..." msgstr "Spre HSV" -#: plug-ins/common/noisify.c:284 +#: plug-ins/common/noisify.c:285 msgid "Adding Noise..." msgstr "Legger til støy..." @@ -5657,7 +5657,7 @@ msgid "Oili_fy..." msgstr "Oljemaleri" -#: plug-ins/common/oilify.c:188 +#: plug-ins/common/oilify.c:189 msgid "Oil Painting..." msgstr "Oljemaleri" @@ -5802,7 +5802,7 @@ msgid "Photocopy" msgstr "Fotografi" -#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:513 +#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:509 #: plug-ins/common/softglow.c:687 msgid "_Sharpness:" msgstr "_Skarphet:" @@ -6476,7 +6476,7 @@ msgid "_Ripple..." msgstr "Lager krusninger..." -#: plug-ins/common/ripple.c:219 +#: plug-ins/common/ripple.c:222 msgid "Rippling..." msgstr "Lager krusninger..." @@ -6712,21 +6712,21 @@ msgid "_Selective Gaussian Blur..." msgstr "Selektivt Gaussisk blur" -#: plug-ins/common/sel_gauss.c:186 +#: plug-ins/common/sel_gauss.c:187 #, fuzzy msgid "Selective Gaussian Blur..." msgstr "Selektivt Gaussisk blur" -#: plug-ins/common/sel_gauss.c:224 +#: plug-ins/common/sel_gauss.c:225 msgid "Selective Gaussian Blur" msgstr "Selektivt Gaussisk blur" -#: plug-ins/common/sel_gauss.c:256 +#: plug-ins/common/sel_gauss.c:257 #, fuzzy msgid "_Blur radius:" msgstr "_Blur-radius:" -#: plug-ins/common/sel_gauss.c:266 +#: plug-ins/common/sel_gauss.c:267 #, fuzzy msgid "_Max. delta:" msgstr "_Maks delta:" @@ -6749,11 +6749,11 @@ #. #. * Let the user know what we're doing... #. -#: plug-ins/common/sharpen.c:315 +#: plug-ins/common/sharpen.c:311 msgid "Sharpening..." msgstr "Gjør skarpere..." -#: plug-ins/common/sharpen.c:484 +#: plug-ins/common/sharpen.c:480 msgid "Sharpen" msgstr "Gjør skarpere" @@ -6762,7 +6762,7 @@ msgid "_Shift..." msgstr "Shifting..." -#: plug-ins/common/shift.c:191 +#: plug-ins/common/shift.c:194 msgid "Shifting..." msgstr "Shifting..." @@ -6974,23 +6974,23 @@ msgid "_Sobel..." msgstr "Kilde..." -#: plug-ins/common/sobel.c:226 +#: plug-ins/common/sobel.c:227 msgid "Sobel Edge Detection" msgstr "Sobel kantgjenkjenning" -#: plug-ins/common/sobel.c:248 +#: plug-ins/common/sobel.c:249 msgid "Sobel _Horizontally" msgstr "Sobel _horisontalt" -#: plug-ins/common/sobel.c:260 +#: plug-ins/common/sobel.c:261 msgid "Sobel _Vertically" msgstr "Sobel _vertikalt" -#: plug-ins/common/sobel.c:272 +#: plug-ins/common/sobel.c:273 msgid "_Keep sign of result (one direction only)" msgstr "" -#: plug-ins/common/sobel.c:358 +#: plug-ins/common/sobel.c:359 msgid "Sobel Edge Detecting..." msgstr "Sobel kantgjenkjenning..." @@ -7324,15 +7324,15 @@ msgid "Sp_read..." msgstr "Sprer..." -#: plug-ins/common/spread.c:179 +#: plug-ins/common/spread.c:182 msgid "Spreading..." msgstr "Sprer..." -#: plug-ins/common/spread.c:345 +#: plug-ins/common/spread.c:346 msgid "Spread" msgstr "Spredning" -#: plug-ins/common/spread.c:363 +#: plug-ins/common/spread.c:364 msgid "Spread Amount" msgstr "Spredningsmengde" @@ -7623,7 +7623,8 @@ msgid "_Tile..." msgstr "Fliser..." -#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:321 +#. Set the tile cache size +#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:320 msgid "Tiling..." msgstr "Flislegger..." @@ -7645,45 +7646,45 @@ msgstr "A_lle fliser" #. Get the preview image -#: plug-ins/common/tileit.c:364 +#: plug-ins/common/tileit.c:363 msgid "TileIt" msgstr "Flislegg" #. Area for buttons etc #. Flip -#: plug-ins/common/tileit.c:407 plug-ins/ifscompose/ifscompose.c:628 +#: plug-ins/common/tileit.c:406 plug-ins/ifscompose/ifscompose.c:628 msgid "Flip" msgstr "Vend" -#: plug-ins/common/tileit.c:455 +#: plug-ins/common/tileit.c:454 #, fuzzy msgid "A_ll tiles" msgstr "A_lle fliser" -#: plug-ins/common/tileit.c:469 +#: plug-ins/common/tileit.c:468 #, fuzzy msgid "Al_ternate tiles" msgstr "Fo_rskjellige fliser" -#: plug-ins/common/tileit.c:483 +#: plug-ins/common/tileit.c:482 #, fuzzy msgid "_Explicit tile" msgstr "_Eksplisitt flis" -#: plug-ins/common/tileit.c:489 +#: plug-ins/common/tileit.c:488 msgid "Ro_w:" msgstr "Ra_d:" -#: plug-ins/common/tileit.c:513 +#: plug-ins/common/tileit.c:512 msgid "Col_umn:" msgstr "K_olonne:" -#: plug-ins/common/tileit.c:565 +#: plug-ins/common/tileit.c:564 msgid "O_pacity:" msgstr "U_gjennomsiktighet:" #. Lower frame saying howmany segments -#: plug-ins/common/tileit.c:574 +#: plug-ins/common/tileit.c:573 #, fuzzy msgid "Number of Segments" msgstr "A_ntall segmenter:" @@ -7826,16 +7827,16 @@ msgid "Unit Editor" msgstr "Enhetseditor" -#: plug-ins/common/unsharp.c:149 +#: plug-ins/common/unsharp.c:143 #, fuzzy msgid "_Unsharp Mask..." msgstr "Uskarp maske" -#: plug-ins/common/unsharp.c:493 +#: plug-ins/common/unsharp.c:468 msgid "Merging..." msgstr "Fletter..." -#: plug-ins/common/unsharp.c:664 +#: plug-ins/common/unsharp.c:635 msgid "Unsharp Mask" msgstr "Uskarp maske" @@ -8926,19 +8927,19 @@ msgid "_Zoom:" msgstr "_Zoom:" -#: plug-ins/gfig/gfig-bezier.c:452 +#: plug-ins/gfig/gfig-bezier.c:448 msgid "Closed" msgstr "Lukket" -#: plug-ins/gfig/gfig-bezier.c:457 +#: plug-ins/gfig/gfig-bezier.c:453 msgid "Close curve on completion" msgstr "Lukk kurve ved komplettering" -#: plug-ins/gfig/gfig-bezier.c:462 +#: plug-ins/gfig/gfig-bezier.c:458 msgid "Show Line Frame" msgstr "Vis linjeramme" -#: plug-ins/gfig/gfig-bezier.c:467 +#: plug-ins/gfig/gfig-bezier.c:463 msgid "Draws lines between the control points. Only during curve creation" msgstr "" diff -uraN gimp-2.2.0/po-plug-ins/pa.gmo gimp-2.2.1/po-plug-ins/pa.gmo --- gimp-2.2.0/po-plug-ins/pa.gmo 2004-12-19 03:34:24.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/pa.gmo 2004-12-28 16:59:08.000000000 +0100 @@ -42,7 +42,7 @@ (%s "%s") to your %s file.No colorsNoneNumber of ColorsNumber of colors:O_ptionsObject DetailsObject X position in XYZ spaceObject Y position in XYZ spaceObject Z position in XYZ spaceOffset:Only one unique colorOp_tionsOpenOpen FileOriginalOt_herPNGPPD File:PPIP_reviewPage %dPages:PhotographPixelsPlanePo_larization:PointPolygonPositionPre_viewPreferencesPreviewRGBRGBAR_adius:R_edRawRe_dRealtime PreviewRecompute preview imageRedRed:Redo last zoomRedrawRedraw previewReflectivityRendering Fractal...Rescan for FractalsReset parameters to default valuesRight:Ro_w:S_elect Window AfterS_electorSameSat_urationSatu_rationSaturationSaturation:SaveSave FileSave Fractal ParametersSave active fractal to fileSave as GIFSavedScreen ShotSeconds DelaySelectSelect folder and rescan collectionSelect:SelectionSet light source colorSettingsShowSierpinskiSineSinusoidalSizeSize (%):Size:Sizes:Source 1:Source 2:Source...Specular:SphereSphericalSpiderSpiral Number of TurnsStandardStop when pixel differences are smaller than this valueStretchStrongStyleTIFF ChannelTile source image: useful for infinite planesToTo:ToolsTop:TransparentTypeType of light source to applyType of object to map toType:URLURL: %sUndo last zoomUnitUnit EditorUnitsUnnamedUse cosine-function for this color componentUse linear mapping instead of any trigonometrical function for this color channelUse log log smoothing to eliminate "banding" in the resultUse loglog smoothingUse sine-function for this color componentV_alueValueValue:WeakX:XBM OptionsXMAX:XMIN:X_1:X_2:Y:YMAX:YMIN:Y_1:Y_2:YellowYellow:Z:Zoom inZoom out_3x3_Advanced_Alpha_Angle:_Blue_Blue:_Bottom:_Box_Bump Map_Copy_Depth:_Description:_Edit_Environment Map_File_Force_Fractals_Green_Green:_Help_Horizontal_Horizontal:_Hue_ID:_Ignore_Inch_Insert_JPEG_LZW_Light_Link_MIME_Material_Millimeter_None_Parameters_Polygon_Preview_Preview!_Rays_Red:_Remove_Saturation:_Size_Size:_Speed:_Threshold:_Tools_Top:_Transparent_Update_Value_Value:_Vertical_Vertical:_View_Warp_White_X:_Y:_Yellow_Z:_Zoom_Zoom:a _Single Windowafteralphabluecme-_mailgreenhuek(1-x^p)kx^pk{x(1-x)}^ppixels/%aredsaturationthe _Whole ScreenvalueyellowProject-Id-Version: pa Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-07-20 16:21+0530 Last-Translator: Amanpreet Singh Alam Language-Team: Punjabi diff -uraN gimp-2.2.0/po-plug-ins/pa.po gimp-2.2.1/po-plug-ins/pa.po --- gimp-2.2.0/po-plug-ins/pa.po 2004-12-19 03:34:15.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/pa.po 2004-12-28 16:58:59.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: pa\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-07-20 16:21+0530\n" "Last-Translator: Amanpreet Singh Alam \n" "Language-Team: Punjabi \n" @@ -978,7 +978,7 @@ msgid "Antialiasing quality. Higher is better, but slower" msgstr "ਉਪਨਾਮ-ਵਿਰੋਧੀ ਵਿਸ਼ੇਸ਼ਤਾ । ਵਧੀਆ ਚੰਗਾ ਹੈ, ਪਰ ਹੌਲੀ ਹੈ" -#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:720 +#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:691 #: plug-ins/common/wind.c:993 plug-ins/imagemap/imap_preferences.c:539 msgid "_Threshold:" msgstr "ਥਰਿੱਸ਼ਹੋਲਡ:" @@ -2116,12 +2116,12 @@ msgstr "" #: plug-ins/common/blinds.c:259 plug-ins/common/ripple.c:539 -#: plug-ins/common/tileit.c:419 plug-ins/pagecurl/pagecurl.c:530 +#: plug-ins/common/tileit.c:418 plug-ins/pagecurl/pagecurl.c:530 msgid "_Horizontal" msgstr "ਖਿਤਿਜੀ" #: plug-ins/common/blinds.c:260 plug-ins/common/ripple.c:540 -#: plug-ins/common/tileit.c:429 plug-ins/pagecurl/pagecurl.c:529 +#: plug-ins/common/tileit.c:428 plug-ins/pagecurl/pagecurl.c:529 msgid "_Vertical" msgstr "ਲੰਬਕਾਰੀ" @@ -2144,7 +2144,7 @@ msgid "_Blur" msgstr "ਨੀਲਾ" -#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:383 +#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:432 msgid "Blurring..." msgstr "" @@ -2259,24 +2259,24 @@ msgid "Ca_rtoon..." msgstr "ਸਰੋਤ..." -#: plug-ins/common/cartoon.c:228 plug-ins/common/dog.c:246 -#: plug-ins/common/gauss.c:430 plug-ins/common/neon.c:222 -#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:203 +#: plug-ins/common/cartoon.c:229 plug-ins/common/dog.c:247 +#: plug-ins/common/gauss.c:431 plug-ins/common/neon.c:221 +#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:204 #: plug-ins/common/softglow.c:220 plug-ins/gflare/gflare.c:972 #: plug-ins/sgi/sgi.c:528 plug-ins/xjt/xjt.c:1673 msgid "Cannot operate on indexed color images." msgstr "" -#: plug-ins/common/cartoon.c:807 +#: plug-ins/common/cartoon.c:808 msgid "Cartoon" msgstr "" -#: plug-ins/common/cartoon.c:837 plug-ins/common/photocopy.c:867 +#: plug-ins/common/cartoon.c:838 plug-ins/common/photocopy.c:867 #, fuzzy msgid "_Mask radius:" msgstr "ਅਰਧ-ਵਿਆਸ:" -#: plug-ins/common/cartoon.c:851 +#: plug-ins/common/cartoon.c:852 msgid "_Percent black:" msgstr "" @@ -2435,28 +2435,28 @@ msgid "Colorify Custom Color" msgstr "" -#: plug-ins/common/colortoalpha.c:105 +#: plug-ins/common/colortoalpha.c:104 msgid "Color to _Alpha..." msgstr "" -#: plug-ins/common/colortoalpha.c:183 +#: plug-ins/common/colortoalpha.c:181 msgid "Removing color..." msgstr "" -#: plug-ins/common/colortoalpha.c:364 +#: plug-ins/common/colortoalpha.c:377 msgid "Color to Alpha" msgstr "" -#: plug-ins/common/colortoalpha.c:389 plug-ins/common/mapcolor.c:424 +#: plug-ins/common/colortoalpha.c:402 plug-ins/common/mapcolor.c:424 #: plug-ins/gfli/gfli.c:835 plug-ins/gfli/gfli.c:898 msgid "From:" msgstr "ਵੱਲੋਂ:" -#: plug-ins/common/colortoalpha.c:393 +#: plug-ins/common/colortoalpha.c:406 msgid "Color to Alpha Color Picker" msgstr "" -#: plug-ins/common/colortoalpha.c:407 +#: plug-ins/common/colortoalpha.c:420 #, fuzzy msgid "to alpha" msgstr "ਐਲਫਾ" @@ -2770,24 +2770,24 @@ msgid "_Cubism..." msgstr "" -#: plug-ins/common/cubism.c:267 +#: plug-ins/common/cubism.c:269 msgid "Cubism" msgstr "" -#: plug-ins/common/cubism.c:296 +#: plug-ins/common/cubism.c:298 msgid "_Tile size:" msgstr "" -#: plug-ins/common/cubism.c:309 +#: plug-ins/common/cubism.c:311 #, fuzzy msgid "T_ile saturation:" msgstr "ਸਤ੍ਰਿਪਤ:" -#: plug-ins/common/cubism.c:320 +#: plug-ins/common/cubism.c:322 msgid "_Use background color" msgstr "" -#: plug-ins/common/cubism.c:410 +#: plug-ins/common/cubism.c:412 msgid "Cubistic Transformation..." msgstr "" @@ -3159,44 +3159,44 @@ msgid "Des_peckle..." msgstr "" -#: plug-ins/common/despeckle.c:420 plug-ins/common/despeckle.c:642 +#: plug-ins/common/despeckle.c:418 plug-ins/common/despeckle.c:640 msgid "Despeckle" msgstr "" #. #. * Filter type controls... #. -#: plug-ins/common/despeckle.c:446 plug-ins/gimpressionist/orientmap.c:616 +#: plug-ins/common/despeckle.c:444 plug-ins/gimpressionist/orientmap.c:616 msgid "Type" msgstr "ਕਿਸਮ" #. parameter settings -#: plug-ins/common/despeckle.c:456 +#: plug-ins/common/despeckle.c:454 #, fuzzy msgid "Median" msgstr "ਮੁੱਖ" -#: plug-ins/common/despeckle.c:462 +#: plug-ins/common/despeckle.c:460 msgid "_Adaptive" msgstr "" -#: plug-ins/common/despeckle.c:472 +#: plug-ins/common/despeckle.c:470 msgid "R_ecursive" msgstr "" -#: plug-ins/common/despeckle.c:496 plug-ins/common/neon.c:728 +#: plug-ins/common/despeckle.c:494 plug-ins/common/neon.c:727 #: plug-ins/common/nlfilt.c:1083 plug-ins/common/nova.c:359 -#: plug-ins/common/unsharp.c:694 plug-ins/common/whirlpinch.c:588 +#: plug-ins/common/unsharp.c:665 plug-ins/common/whirlpinch.c:588 #: plug-ins/gflare/gflare.c:2686 plug-ins/imagemap/imap_circle.c:278 msgid "_Radius:" msgstr "" -#: plug-ins/common/despeckle.c:512 +#: plug-ins/common/despeckle.c:510 #, fuzzy msgid "_Black level:" msgstr "ਕਾਲਾ:" -#: plug-ins/common/despeckle.c:528 +#: plug-ins/common/despeckle.c:526 #, fuzzy msgid "_White level:" msgstr "ਸਫੈਦ" @@ -3286,7 +3286,7 @@ msgid "_Displace..." msgstr "" -#: plug-ins/common/displace.c:228 +#: plug-ins/common/displace.c:231 msgid "Displacing..." msgstr "" @@ -3323,29 +3323,29 @@ msgid "Difference of Gaussians..." msgstr "" -#: plug-ins/common/dog.c:222 plug-ins/common/dog.c:273 +#: plug-ins/common/dog.c:227 plug-ins/common/dog.c:274 msgid "DoG Edge Detect" msgstr "" -#: plug-ins/common/dog.c:294 +#: plug-ins/common/dog.c:295 msgid "Smoothing parameters" msgstr "" -#: plug-ins/common/dog.c:308 +#: plug-ins/common/dog.c:309 #, fuzzy msgid "_Radius 1:" msgstr "ਅਰਧ-ਵਿਆਸ:" -#: plug-ins/common/dog.c:312 +#: plug-ins/common/dog.c:313 #, fuzzy msgid "R_adius 2:" msgstr "ਅਰਧ-ਵਿਆਸ:" -#: plug-ins/common/dog.c:324 plug-ins/common/normalize.c:88 +#: plug-ins/common/dog.c:325 plug-ins/common/normalize.c:88 msgid "_Normalize" msgstr "" -#: plug-ins/common/dog.c:335 plug-ins/gimpressionist/paper.c:149 +#: plug-ins/common/dog.c:336 plug-ins/gimpressionist/paper.c:149 msgid "_Invert" msgstr "" @@ -3402,7 +3402,7 @@ msgid "_Emboss..." msgstr "" -#: plug-ins/common/emboss.c:374 plug-ins/common/emboss.c:439 +#: plug-ins/common/emboss.c:376 plug-ins/common/emboss.c:439 msgid "Emboss" msgstr "" @@ -3426,7 +3426,7 @@ msgid "En_grave..." msgstr "" -#: plug-ins/common/engrave.c:181 +#: plug-ins/common/engrave.c:182 msgid "Engraving..." msgstr "" @@ -3841,38 +3841,38 @@ msgid "_Gaussian Blur..." msgstr "" -#: plug-ins/common/gauss.c:407 +#: plug-ins/common/gauss.c:413 msgid "Gaussian Blur..." msgstr "" -#: plug-ins/common/gauss.c:460 +#: plug-ins/common/gauss.c:461 msgid "Gaussian Blur" msgstr "" #. parameter settings -#: plug-ins/common/gauss.c:483 +#: plug-ins/common/gauss.c:484 msgid "Blur Radius" msgstr "" -#: plug-ins/common/gauss.c:497 plug-ins/common/jigsaw.c:2456 -#: plug-ins/common/spread.c:378 +#: plug-ins/common/gauss.c:498 plug-ins/common/jigsaw.c:2456 +#: plug-ins/common/spread.c:379 msgid "_Horizontal:" msgstr "ਖਿਤਿਜੀ:" -#: plug-ins/common/gauss.c:501 plug-ins/common/jigsaw.c:2473 -#: plug-ins/common/spread.c:382 +#: plug-ins/common/gauss.c:502 plug-ins/common/jigsaw.c:2473 +#: plug-ins/common/spread.c:383 msgid "_Vertical:" msgstr "ਲੰਬਕਾਰੀ:" -#: plug-ins/common/gauss.c:524 +#: plug-ins/common/gauss.c:525 msgid "Blur Method" msgstr "" -#: plug-ins/common/gauss.c:528 +#: plug-ins/common/gauss.c:529 msgid "_IIR" msgstr "" -#: plug-ins/common/gauss.c:529 +#: plug-ins/common/gauss.c:530 msgid "_RLE" msgstr "" @@ -4164,19 +4164,19 @@ msgid "_Glass Tile..." msgstr "" -#: plug-ins/common/glasstile.c:208 +#: plug-ins/common/glasstile.c:209 msgid "Glass Tile..." msgstr "" -#: plug-ins/common/glasstile.c:251 +#: plug-ins/common/glasstile.c:250 msgid "Glass Tile" msgstr "" -#: plug-ins/common/glasstile.c:282 +#: plug-ins/common/glasstile.c:281 msgid "Tile _width:" msgstr "" -#: plug-ins/common/glasstile.c:296 plug-ins/common/mosaic.c:621 +#: plug-ins/common/glasstile.c:295 plug-ins/common/mosaic.c:621 #, fuzzy msgid "Tile _height:" msgstr "ਉਭਾਰੋ:" @@ -5165,16 +5165,16 @@ msgid "_Neon..." msgstr "ਸਰੋਤ..." -#: plug-ins/common/neon.c:204 +#: plug-ins/common/neon.c:207 msgid "Neon..." msgstr "" -#: plug-ins/common/neon.c:698 +#: plug-ins/common/neon.c:697 #, fuzzy msgid "Neon Detection" msgstr "ਚੋਣ" -#: plug-ins/common/neon.c:743 plug-ins/common/unsharp.c:707 +#: plug-ins/common/neon.c:742 plug-ins/common/unsharp.c:678 msgid "_Amount:" msgstr "" @@ -5336,7 +5336,7 @@ msgid "_Scatter RGB..." msgstr "" -#: plug-ins/common/noisify.c:284 +#: plug-ins/common/noisify.c:285 msgid "Adding Noise..." msgstr "" @@ -5407,7 +5407,7 @@ msgid "Oili_fy..." msgstr "" -#: plug-ins/common/oilify.c:188 +#: plug-ins/common/oilify.c:189 msgid "Oil Painting..." msgstr "" @@ -5545,7 +5545,7 @@ msgid "Photocopy" msgstr "ਤਸਵੀਰ" -#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:513 +#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:509 #: plug-ins/common/softglow.c:687 msgid "_Sharpness:" msgstr "" @@ -6187,7 +6187,7 @@ msgid "_Ripple..." msgstr "" -#: plug-ins/common/ripple.c:219 +#: plug-ins/common/ripple.c:222 msgid "Rippling..." msgstr "" @@ -6413,20 +6413,20 @@ msgid "_Selective Gaussian Blur..." msgstr "" -#: plug-ins/common/sel_gauss.c:186 +#: plug-ins/common/sel_gauss.c:187 msgid "Selective Gaussian Blur..." msgstr "" -#: plug-ins/common/sel_gauss.c:224 +#: plug-ins/common/sel_gauss.c:225 msgid "Selective Gaussian Blur" msgstr "" -#: plug-ins/common/sel_gauss.c:256 +#: plug-ins/common/sel_gauss.c:257 #, fuzzy msgid "_Blur radius:" msgstr "ਅਰਧ-ਵਿਆਸ:" -#: plug-ins/common/sel_gauss.c:266 +#: plug-ins/common/sel_gauss.c:267 msgid "_Max. delta:" msgstr "" @@ -6446,11 +6446,11 @@ #. #. * Let the user know what we're doing... #. -#: plug-ins/common/sharpen.c:315 +#: plug-ins/common/sharpen.c:311 msgid "Sharpening..." msgstr "" -#: plug-ins/common/sharpen.c:484 +#: plug-ins/common/sharpen.c:480 msgid "Sharpen" msgstr "" @@ -6458,7 +6458,7 @@ msgid "_Shift..." msgstr "" -#: plug-ins/common/shift.c:191 +#: plug-ins/common/shift.c:194 msgid "Shifting..." msgstr "" @@ -6663,23 +6663,23 @@ msgid "_Sobel..." msgstr "ਸਰੋਤ..." -#: plug-ins/common/sobel.c:226 +#: plug-ins/common/sobel.c:227 msgid "Sobel Edge Detection" msgstr "" -#: plug-ins/common/sobel.c:248 +#: plug-ins/common/sobel.c:249 msgid "Sobel _Horizontally" msgstr "" -#: plug-ins/common/sobel.c:260 +#: plug-ins/common/sobel.c:261 msgid "Sobel _Vertically" msgstr "" -#: plug-ins/common/sobel.c:272 +#: plug-ins/common/sobel.c:273 msgid "_Keep sign of result (one direction only)" msgstr "" -#: plug-ins/common/sobel.c:358 +#: plug-ins/common/sobel.c:359 msgid "Sobel Edge Detecting..." msgstr "" @@ -6989,15 +6989,15 @@ msgid "Sp_read..." msgstr "ਸਰੋਤ..." -#: plug-ins/common/spread.c:179 +#: plug-ins/common/spread.c:182 msgid "Spreading..." msgstr "" -#: plug-ins/common/spread.c:345 +#: plug-ins/common/spread.c:346 msgid "Spread" msgstr "" -#: plug-ins/common/spread.c:363 +#: plug-ins/common/spread.c:364 msgid "Spread Amount" msgstr "" @@ -7282,7 +7282,8 @@ msgid "_Tile..." msgstr "ਫਾਇਲ਼" -#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:321 +#. Set the tile cache size +#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:320 msgid "Tiling..." msgstr "" @@ -7303,44 +7304,44 @@ msgstr "" #. Get the preview image -#: plug-ins/common/tileit.c:364 +#: plug-ins/common/tileit.c:363 msgid "TileIt" msgstr "" #. Area for buttons etc #. Flip -#: plug-ins/common/tileit.c:407 plug-ins/ifscompose/ifscompose.c:628 +#: plug-ins/common/tileit.c:406 plug-ins/ifscompose/ifscompose.c:628 msgid "Flip" msgstr "" -#: plug-ins/common/tileit.c:455 +#: plug-ins/common/tileit.c:454 #, fuzzy msgid "A_ll tiles" msgstr "ਸਾਰਾ ਚਿੱਟਾ" -#: plug-ins/common/tileit.c:469 +#: plug-ins/common/tileit.c:468 #, fuzzy msgid "Al_ternate tiles" msgstr "ਬਦਲਵਾਂ" -#: plug-ins/common/tileit.c:483 +#: plug-ins/common/tileit.c:482 msgid "_Explicit tile" msgstr "" -#: plug-ins/common/tileit.c:489 +#: plug-ins/common/tileit.c:488 msgid "Ro_w:" msgstr "ਕਤਾਰ:" -#: plug-ins/common/tileit.c:513 +#: plug-ins/common/tileit.c:512 msgid "Col_umn:" msgstr "ਕਾਲਮ:" -#: plug-ins/common/tileit.c:565 +#: plug-ins/common/tileit.c:564 msgid "O_pacity:" msgstr "" #. Lower frame saying howmany segments -#: plug-ins/common/tileit.c:574 +#: plug-ins/common/tileit.c:573 #, fuzzy msgid "Number of Segments" msgstr "ਸੈਲਾਂ ਦੀ ਗਿਣਤੀ:" @@ -7482,15 +7483,15 @@ msgid "Unit Editor" msgstr "ਇਕਾਈ ਸੋਧਕ" -#: plug-ins/common/unsharp.c:149 +#: plug-ins/common/unsharp.c:143 msgid "_Unsharp Mask..." msgstr "" -#: plug-ins/common/unsharp.c:493 +#: plug-ins/common/unsharp.c:468 msgid "Merging..." msgstr "" -#: plug-ins/common/unsharp.c:664 +#: plug-ins/common/unsharp.c:635 msgid "Unsharp Mask" msgstr "" @@ -8524,19 +8525,19 @@ msgid "_Zoom:" msgstr "ਆਕਾਰ:" -#: plug-ins/gfig/gfig-bezier.c:452 +#: plug-ins/gfig/gfig-bezier.c:448 msgid "Closed" msgstr "ਬੰਦ" -#: plug-ins/gfig/gfig-bezier.c:457 +#: plug-ins/gfig/gfig-bezier.c:453 msgid "Close curve on completion" msgstr "" -#: plug-ins/gfig/gfig-bezier.c:462 +#: plug-ins/gfig/gfig-bezier.c:458 msgid "Show Line Frame" msgstr "" -#: plug-ins/gfig/gfig-bezier.c:467 +#: plug-ins/gfig/gfig-bezier.c:463 msgid "Draws lines between the control points. Only during curve creation" msgstr "" diff -uraN gimp-2.2.0/po-plug-ins/pl.gmo gimp-2.2.1/po-plug-ins/pl.gmo --- gimp-2.2.0/po-plug-ins/pl.gmo 2004-12-19 03:34:24.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/pl.gmo 2004-12-28 16:59:08.000000000 +0100 @@ -292,7 +292,7 @@ which has no alpha channel.Z scale (size)Z:ZealousCropping(tm)...ZoomZoom inZoom in (make image bigger)Zoom outZoom out (make image smaller)_3x3_Abbreviation:_Adaptive_Additive_Advanced_Alpha_Alpha:_Amount:_Amplitude:_Angle:_Animate_Antialiasing_Automatically convert_Azimuth:_Background_Base URL:_Bilinear_Black_Blacken_Blast_Blend_Blue_Blue:_Border:_Bottom:_Box_Brightness_Brightness:_Brush_Bump Map_Bumpmap_Copy_Deflate_Depth:_Derivative_Description:_Detail:_Digits:_Displacement:_Distorted_Dots_Edit_Effect Image:_Elevation:_Emboss_Encapsulated PostScript_Entire Image_Environment Map_Exponent:_Factor:_File_Filename:_Font:_Force_Fractals_Free_Ftp Site_Gamma:_General_Gopher_Gradient_Gray:_Green_Green:_Grey_Grow_Height_Height:_Help_Hex_Hidden_Holdness:_Horizontal_Horizontal:_Horz. Spacing:_Hue_ID:_Ideal_Ignore_Inch_Input SPI:_Insert_Interlacing (Adam7)_Invert_JPEG_JavaScript_Keep NCSA circles true_Kill_LZW_Laplace_Large staggered_Left_Left Start at:_Light_Linear_Lines_Link_Lower_MIME_Mapping_Material_Max (%):_Max Depth:_Midtones_Millimeter_Mirror_Misc Ops._Monochrome_Move_No. Across:_None_Normal_Pack Bits_Parameters_Period:_Phase:_Ping Pong_Plural:_Polygon_Presets_Preview_Preview!_Prompt for area info_Psychobilly_RGB_RLE compression_RLE encoded_Radial_Radius:_Randomize_Rays_Recipient:_Rectangle_Red:_Redo %s_Reflective_Remove_Rendering_Require default URL_Right_Right Border_Rotated_Saturation_Saturation:_Search:_Second Flares_Sender:_Settings_Sharpness:_Size_Size:_Smear_Snap-To Grid Enabled_Speed:_Spokes:_Square_Squares_Staggered_Strength:_Symbol:_Target frame name/ID: (optional - used for FRAMES only)_Thickness:_Threshold_Threshold:_Title:_Tools_Top Start at:_Top:_Transparent_URL to activate when this area is clicked: (required)_Undo %s_Update_Upper_Upper Border_Use double-sized grab handles_Uuencode_Value_Value:_Variation:_Vert. Spacing:_Vertical_Vertical:_View_Voronoi_Warp_Waterlevel:_Wavelength:_Web Site_White_Wide-striped_Width_Width:_Wind_Wrap_X Scale:_X:_Y Scale:_Y:_Yellow_Z:_Zoom_Zoom:`Default' is created.a _Single Windowafteralphablackblueblueness_cb470blueness_cb470fblueness_cb709blueness_cb709fcmcyancyan_ke-_mailgreenhueinvalid formatted GFlare file: %s k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftpixels/%aredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsin^p, steppedsin^p-based functionsome sort of error with the file extension or lack thereofthe _Whole Screenvaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: gimp-std-plug-ins Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-03-20 11:25+0100 Last-Translator: GNOME PL Team Language-Team: Polish diff -uraN gimp-2.2.0/po-plug-ins/pl.po gimp-2.2.1/po-plug-ins/pl.po --- gimp-2.2.0/po-plug-ins/pl.po 2004-12-19 03:34:16.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/pl.po 2004-12-28 16:58:59.000000000 +0100 @@ -15,7 +15,7 @@ msgstr "" "Project-Id-Version: gimp-std-plug-ins\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-03-20 11:25+0100\n" "Last-Translator: GNOME PL Team \n" "Language-Team: Polish \n" @@ -1002,7 +1002,7 @@ "Jakość wygładzania. Duże wartości zapewniają lepszy obraz, ale zmniejszają " "szybkość." -#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:720 +#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:691 #: plug-ins/common/wind.c:993 plug-ins/imagemap/imap_preferences.c:539 msgid "_Threshold:" msgstr "_Próg:" @@ -2210,12 +2210,12 @@ msgstr "Ułożenie" #: plug-ins/common/blinds.c:259 plug-ins/common/ripple.c:539 -#: plug-ins/common/tileit.c:419 plug-ins/pagecurl/pagecurl.c:530 +#: plug-ins/common/tileit.c:418 plug-ins/pagecurl/pagecurl.c:530 msgid "_Horizontal" msgstr "P_oziomo" #: plug-ins/common/blinds.c:260 plug-ins/common/ripple.c:540 -#: plug-ins/common/tileit.c:429 plug-ins/pagecurl/pagecurl.c:529 +#: plug-ins/common/tileit.c:428 plug-ins/pagecurl/pagecurl.c:529 msgid "_Vertical" msgstr "P_ionowo" @@ -2238,7 +2238,7 @@ msgid "_Blur" msgstr "Rozmywanie" -#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:383 +#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:432 msgid "Blurring..." msgstr "Rozmywanie..." @@ -2359,25 +2359,25 @@ msgid "Ca_rtoon..." msgstr "Podp_is" -#: plug-ins/common/cartoon.c:228 plug-ins/common/dog.c:246 -#: plug-ins/common/gauss.c:430 plug-ins/common/neon.c:222 -#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:203 +#: plug-ins/common/cartoon.c:229 plug-ins/common/dog.c:247 +#: plug-ins/common/gauss.c:431 plug-ins/common/neon.c:221 +#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:204 #: plug-ins/common/softglow.c:220 plug-ins/gflare/gflare.c:972 #: plug-ins/sgi/sgi.c:528 plug-ins/xjt/xjt.c:1673 msgid "Cannot operate on indexed color images." msgstr "Nie można wykonywać tej operacji na obrazach indeksowanych." -#: plug-ins/common/cartoon.c:807 +#: plug-ins/common/cartoon.c:808 #, fuzzy msgid "Cartoon" msgstr "Podp_is" -#: plug-ins/common/cartoon.c:837 plug-ins/common/photocopy.c:867 +#: plug-ins/common/cartoon.c:838 plug-ins/common/photocopy.c:867 #, fuzzy msgid "_Mask radius:" msgstr "Rozmiar _maski:" -#: plug-ins/common/cartoon.c:851 +#: plug-ins/common/cartoon.c:852 #, fuzzy msgid "_Percent black:" msgstr "Procent" @@ -2543,29 +2543,29 @@ msgid "Colorify Custom Color" msgstr "Wybór koloru do koloryzacji" -#: plug-ins/common/colortoalpha.c:105 +#: plug-ins/common/colortoalpha.c:104 #, fuzzy msgid "Color to _Alpha..." msgstr "Zmiana koloru w alfę" -#: plug-ins/common/colortoalpha.c:183 +#: plug-ins/common/colortoalpha.c:181 msgid "Removing color..." msgstr "Usuwanie koloru..." -#: plug-ins/common/colortoalpha.c:364 +#: plug-ins/common/colortoalpha.c:377 msgid "Color to Alpha" msgstr "Zmiana koloru w alfę" -#: plug-ins/common/colortoalpha.c:389 plug-ins/common/mapcolor.c:424 +#: plug-ins/common/colortoalpha.c:402 plug-ins/common/mapcolor.c:424 #: plug-ins/gfli/gfli.c:835 plug-ins/gfli/gfli.c:898 msgid "From:" msgstr "Z:" -#: plug-ins/common/colortoalpha.c:393 +#: plug-ins/common/colortoalpha.c:406 msgid "Color to Alpha Color Picker" msgstr "Wybór koloru" -#: plug-ins/common/colortoalpha.c:407 +#: plug-ins/common/colortoalpha.c:420 #, fuzzy msgid "to alpha" msgstr "do alfy" @@ -2888,26 +2888,26 @@ msgid "_Cubism..." msgstr "Kubizm" -#: plug-ins/common/cubism.c:267 +#: plug-ins/common/cubism.c:269 msgid "Cubism" msgstr "Kubizm" -#: plug-ins/common/cubism.c:296 +#: plug-ins/common/cubism.c:298 #, fuzzy msgid "_Tile size:" msgstr "Rozmiar _kafla:" -#: plug-ins/common/cubism.c:309 +#: plug-ins/common/cubism.c:311 #, fuzzy msgid "T_ile saturation:" msgstr "Na_sycenie kafla:" -#: plug-ins/common/cubism.c:320 +#: plug-ins/common/cubism.c:322 #, fuzzy msgid "_Use background color" msgstr "Wykorzystanie koloru _tła" -#: plug-ins/common/cubism.c:410 +#: plug-ins/common/cubism.c:412 #, fuzzy msgid "Cubistic Transformation..." msgstr "Transformacja kubistyczna" @@ -3292,44 +3292,44 @@ msgid "Des_peckle..." msgstr "Odplamkowanie" -#: plug-ins/common/despeckle.c:420 plug-ins/common/despeckle.c:642 +#: plug-ins/common/despeckle.c:418 plug-ins/common/despeckle.c:640 msgid "Despeckle" msgstr "Odplamkowanie" #. #. * Filter type controls... #. -#: plug-ins/common/despeckle.c:446 plug-ins/gimpressionist/orientmap.c:616 +#: plug-ins/common/despeckle.c:444 plug-ins/gimpressionist/orientmap.c:616 msgid "Type" msgstr "Typ" #. parameter settings -#: plug-ins/common/despeckle.c:456 +#: plug-ins/common/despeckle.c:454 #, fuzzy msgid "Median" msgstr "Radiany" -#: plug-ins/common/despeckle.c:462 +#: plug-ins/common/despeckle.c:460 msgid "_Adaptive" msgstr "_Adaptywnie" -#: plug-ins/common/despeckle.c:472 +#: plug-ins/common/despeckle.c:470 msgid "R_ecursive" msgstr "_Rekurencyjnie" -#: plug-ins/common/despeckle.c:496 plug-ins/common/neon.c:728 +#: plug-ins/common/despeckle.c:494 plug-ins/common/neon.c:727 #: plug-ins/common/nlfilt.c:1083 plug-ins/common/nova.c:359 -#: plug-ins/common/unsharp.c:694 plug-ins/common/whirlpinch.c:588 +#: plug-ins/common/unsharp.c:665 plug-ins/common/whirlpinch.c:588 #: plug-ins/gflare/gflare.c:2686 plug-ins/imagemap/imap_circle.c:278 msgid "_Radius:" msgstr "_Promień:" -#: plug-ins/common/despeckle.c:512 +#: plug-ins/common/despeckle.c:510 #, fuzzy msgid "_Black level:" msgstr "Poziom _czerni:" -#: plug-ins/common/despeckle.c:528 +#: plug-ins/common/despeckle.c:526 #, fuzzy msgid "_White level:" msgstr "Poziom _bieli:" @@ -3424,7 +3424,7 @@ msgid "_Displace..." msgstr "Przesuwanie..." -#: plug-ins/common/displace.c:228 +#: plug-ins/common/displace.c:231 msgid "Displacing..." msgstr "Przesuwanie..." @@ -3464,32 +3464,32 @@ msgid "Difference of Gaussians..." msgstr "Selektywne rozmycie Gaussa..." -#: plug-ins/common/dog.c:222 plug-ins/common/dog.c:273 +#: plug-ins/common/dog.c:227 plug-ins/common/dog.c:274 #, fuzzy msgid "DoG Edge Detect" msgstr "Wykrywanie krawędzi" -#: plug-ins/common/dog.c:294 +#: plug-ins/common/dog.c:295 #, fuzzy msgid "Smoothing parameters" msgstr "Wygładzanie gradientu X..." -#: plug-ins/common/dog.c:308 +#: plug-ins/common/dog.c:309 #, fuzzy msgid "_Radius 1:" msgstr "_Promień:" -#: plug-ins/common/dog.c:312 +#: plug-ins/common/dog.c:313 #, fuzzy msgid "R_adius 2:" msgstr "P_romień:" -#: plug-ins/common/dog.c:324 plug-ins/common/normalize.c:88 +#: plug-ins/common/dog.c:325 plug-ins/common/normalize.c:88 #, fuzzy msgid "_Normalize" msgstr "_Zwykłe" -#: plug-ins/common/dog.c:335 plug-ins/gimpressionist/paper.c:149 +#: plug-ins/common/dog.c:336 plug-ins/gimpressionist/paper.c:149 msgid "_Invert" msgstr "_Inwersja" @@ -3550,7 +3550,7 @@ msgid "_Emboss..." msgstr "_Wytłoczenie" -#: plug-ins/common/emboss.c:374 plug-ins/common/emboss.c:439 +#: plug-ins/common/emboss.c:376 plug-ins/common/emboss.c:439 msgid "Emboss" msgstr "Wytłoczenie" @@ -3575,7 +3575,7 @@ msgid "En_grave..." msgstr "Grawerowanie..." -#: plug-ins/common/engrave.c:181 +#: plug-ins/common/engrave.c:182 msgid "Engraving..." msgstr "Grawerowanie..." @@ -4003,41 +4003,41 @@ msgid "_Gaussian Blur..." msgstr "Rozmycie Gaussa RLE" -#: plug-ins/common/gauss.c:407 +#: plug-ins/common/gauss.c:413 #, fuzzy msgid "Gaussian Blur..." msgstr "Rozmycie Gaussa RLE" -#: plug-ins/common/gauss.c:460 +#: plug-ins/common/gauss.c:461 #, fuzzy msgid "Gaussian Blur" msgstr "Rozmycie Gaussa IIR" #. parameter settings -#: plug-ins/common/gauss.c:483 +#: plug-ins/common/gauss.c:484 msgid "Blur Radius" msgstr "Promień rozmycia" -#: plug-ins/common/gauss.c:497 plug-ins/common/jigsaw.c:2456 -#: plug-ins/common/spread.c:378 +#: plug-ins/common/gauss.c:498 plug-ins/common/jigsaw.c:2456 +#: plug-ins/common/spread.c:379 msgid "_Horizontal:" msgstr "Po_ziomo" -#: plug-ins/common/gauss.c:501 plug-ins/common/jigsaw.c:2473 -#: plug-ins/common/spread.c:382 +#: plug-ins/common/gauss.c:502 plug-ins/common/jigsaw.c:2473 +#: plug-ins/common/spread.c:383 msgid "_Vertical:" msgstr "Pio_nowo:" -#: plug-ins/common/gauss.c:524 +#: plug-ins/common/gauss.c:525 #, fuzzy msgid "Blur Method" msgstr "Typ rozmycia" -#: plug-ins/common/gauss.c:528 +#: plug-ins/common/gauss.c:529 msgid "_IIR" msgstr "" -#: plug-ins/common/gauss.c:529 +#: plug-ins/common/gauss.c:530 #, fuzzy msgid "_RLE" msgstr "RLE" @@ -4365,20 +4365,20 @@ msgid "_Glass Tile..." msgstr "Nakładanie szklanych płytek..." -#: plug-ins/common/glasstile.c:208 +#: plug-ins/common/glasstile.c:209 msgid "Glass Tile..." msgstr "Nakładanie szklanych płytek..." -#: plug-ins/common/glasstile.c:251 +#: plug-ins/common/glasstile.c:250 msgid "Glass Tile" msgstr "Szklane płytki" -#: plug-ins/common/glasstile.c:282 +#: plug-ins/common/glasstile.c:281 #, fuzzy msgid "Tile _width:" msgstr "_Szerokość:" -#: plug-ins/common/glasstile.c:296 plug-ins/common/mosaic.c:621 +#: plug-ins/common/glasstile.c:295 plug-ins/common/mosaic.c:621 #, fuzzy msgid "Tile _height:" msgstr "_Wysokość:" @@ -5439,17 +5439,17 @@ msgid "_Neon..." msgstr "_Brak" -#: plug-ins/common/neon.c:204 +#: plug-ins/common/neon.c:207 #, fuzzy msgid "Neon..." msgstr "Wydruk gazetowy..." -#: plug-ins/common/neon.c:698 +#: plug-ins/common/neon.c:697 #, fuzzy msgid "Neon Detection" msgstr "Wykrywanie krawędzi" -#: plug-ins/common/neon.c:743 plug-ins/common/unsharp.c:707 +#: plug-ins/common/neon.c:742 plug-ins/common/unsharp.c:678 msgid "_Amount:" msgstr "Roz_miar:" @@ -5619,7 +5619,7 @@ msgid "_Scatter RGB..." msgstr "Rozproszenie HSV..." -#: plug-ins/common/noisify.c:284 +#: plug-ins/common/noisify.c:285 msgid "Adding Noise..." msgstr "Dodawanie szumu..." @@ -5695,7 +5695,7 @@ msgid "Oili_fy..." msgstr "Farba olejna" -#: plug-ins/common/oilify.c:188 +#: plug-ins/common/oilify.c:189 msgid "Oil Painting..." msgstr "Malowanie farbą olejną..." @@ -5839,7 +5839,7 @@ msgid "Photocopy" msgstr "Fotografia" -#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:513 +#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:509 #: plug-ins/common/softglow.c:687 msgid "_Sharpness:" msgstr "O_strość:" @@ -6520,7 +6520,7 @@ msgid "_Ripple..." msgstr "Falowanie" -#: plug-ins/common/ripple.c:219 +#: plug-ins/common/ripple.c:222 msgid "Rippling..." msgstr "Falowanie" @@ -6756,20 +6756,20 @@ msgid "_Selective Gaussian Blur..." msgstr "Selektywne rozmycie Gaussa..." -#: plug-ins/common/sel_gauss.c:186 +#: plug-ins/common/sel_gauss.c:187 msgid "Selective Gaussian Blur..." msgstr "Selektywne rozmycie Gaussa..." -#: plug-ins/common/sel_gauss.c:224 +#: plug-ins/common/sel_gauss.c:225 msgid "Selective Gaussian Blur" msgstr "Selektywne rozmycie Gaussa" -#: plug-ins/common/sel_gauss.c:256 +#: plug-ins/common/sel_gauss.c:257 #, fuzzy msgid "_Blur radius:" msgstr "Promień _rozmycia:" -#: plug-ins/common/sel_gauss.c:266 +#: plug-ins/common/sel_gauss.c:267 #, fuzzy msgid "_Max. delta:" msgstr "_Maksymalna delta:" @@ -6791,11 +6791,11 @@ #. #. * Let the user know what we're doing... #. -#: plug-ins/common/sharpen.c:315 +#: plug-ins/common/sharpen.c:311 msgid "Sharpening..." msgstr "Wyostrzanie..." -#: plug-ins/common/sharpen.c:484 +#: plug-ins/common/sharpen.c:480 msgid "Sharpen" msgstr "Wyostrzanie" @@ -6804,7 +6804,7 @@ msgid "_Shift..." msgstr "Przesuwanie..." -#: plug-ins/common/shift.c:191 +#: plug-ins/common/shift.c:194 msgid "Shifting..." msgstr "Przesuwanie..." @@ -7015,24 +7015,24 @@ msgid "_Sobel..." msgstr "_Sobel" -#: plug-ins/common/sobel.c:226 +#: plug-ins/common/sobel.c:227 msgid "Sobel Edge Detection" msgstr "Wykrywanie krawędzi \"Sobel\"" -#: plug-ins/common/sobel.c:248 +#: plug-ins/common/sobel.c:249 msgid "Sobel _Horizontally" msgstr "Wykrywanie po_ziome" -#: plug-ins/common/sobel.c:260 +#: plug-ins/common/sobel.c:261 msgid "Sobel _Vertically" msgstr "Wykrywanie pio_nowe" -#: plug-ins/common/sobel.c:272 +#: plug-ins/common/sobel.c:273 #, fuzzy msgid "_Keep sign of result (one direction only)" msgstr "_Utrzymanie znaku wyniku (tylko jeden kierunek)" -#: plug-ins/common/sobel.c:358 +#: plug-ins/common/sobel.c:359 msgid "Sobel Edge Detecting..." msgstr "Wykrywanie krawędzi \"Sobel\"..." @@ -7356,15 +7356,15 @@ msgid "Sp_read..." msgstr "Rozrzucanie..." -#: plug-ins/common/spread.c:179 +#: plug-ins/common/spread.c:182 msgid "Spreading..." msgstr "Rozrzucanie..." -#: plug-ins/common/spread.c:345 +#: plug-ins/common/spread.c:346 msgid "Spread" msgstr "Rozrzut" -#: plug-ins/common/spread.c:363 +#: plug-ins/common/spread.c:364 msgid "Spread Amount" msgstr "Rozmiar rozrzutu" @@ -7666,7 +7666,8 @@ msgid "_Tile..." msgstr "Układanie kafelek..." -#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:321 +#. Set the tile cache size +#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:320 msgid "Tiling..." msgstr "Układanie kafelek..." @@ -7688,45 +7689,45 @@ msgstr "_Wszystkie" #. Get the preview image -#: plug-ins/common/tileit.c:364 +#: plug-ins/common/tileit.c:363 msgid "TileIt" msgstr "Kafelki" #. Area for buttons etc #. Flip -#: plug-ins/common/tileit.c:407 plug-ins/ifscompose/ifscompose.c:628 +#: plug-ins/common/tileit.c:406 plug-ins/ifscompose/ifscompose.c:628 msgid "Flip" msgstr "Odbicie" -#: plug-ins/common/tileit.c:455 +#: plug-ins/common/tileit.c:454 #, fuzzy msgid "A_ll tiles" msgstr "_Wszystkie" -#: plug-ins/common/tileit.c:469 +#: plug-ins/common/tileit.c:468 #, fuzzy msgid "Al_ternate tiles" msgstr "A_lternatywnie" -#: plug-ins/common/tileit.c:483 +#: plug-ins/common/tileit.c:482 #, fuzzy msgid "_Explicit tile" msgstr "Wy_brana kafelka" -#: plug-ins/common/tileit.c:489 +#: plug-ins/common/tileit.c:488 msgid "Ro_w:" msgstr "_Rząd:" -#: plug-ins/common/tileit.c:513 +#: plug-ins/common/tileit.c:512 msgid "Col_umn:" msgstr "_Kolumna:" -#: plug-ins/common/tileit.c:565 +#: plug-ins/common/tileit.c:564 msgid "O_pacity:" msgstr "_Krycie:" #. Lower frame saying howmany segments -#: plug-ins/common/tileit.c:574 +#: plug-ins/common/tileit.c:573 #, fuzzy msgid "Number of Segments" msgstr "_Liczba segmentów:" @@ -7878,16 +7879,16 @@ msgid "Unit Editor" msgstr "Edytor jednostek" -#: plug-ins/common/unsharp.c:149 +#: plug-ins/common/unsharp.c:143 #, fuzzy msgid "_Unsharp Mask..." msgstr "Zmiękczenie maski" -#: plug-ins/common/unsharp.c:493 +#: plug-ins/common/unsharp.c:468 msgid "Merging..." msgstr "Łączenie..." -#: plug-ins/common/unsharp.c:664 +#: plug-ins/common/unsharp.c:635 msgid "Unsharp Mask" msgstr "Zmiękczenie maski" @@ -8998,19 +8999,19 @@ msgid "_Zoom:" msgstr "Po_większenie:" -#: plug-ins/gfig/gfig-bezier.c:452 +#: plug-ins/gfig/gfig-bezier.c:448 msgid "Closed" msgstr "Zamknięta" -#: plug-ins/gfig/gfig-bezier.c:457 +#: plug-ins/gfig/gfig-bezier.c:453 msgid "Close curve on completion" msgstr "Zamknięcie krzywej na końcu" -#: plug-ins/gfig/gfig-bezier.c:462 +#: plug-ins/gfig/gfig-bezier.c:458 msgid "Show Line Frame" msgstr "Wyświetlanie szkieletu liniowego" -#: plug-ins/gfig/gfig-bezier.c:467 +#: plug-ins/gfig/gfig-bezier.c:463 msgid "Draws lines between the control points. Only during curve creation" msgstr "" "Rysuje linię pomiędzy punktami kontrolnymi. Tylko podczas tworzenia krzywej." diff -uraN gimp-2.2.0/po-plug-ins/pt_BR.gmo gimp-2.2.1/po-plug-ins/pt_BR.gmo --- gimp-2.2.0/po-plug-ins/pt_BR.gmo 2004-12-19 03:34:24.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/pt_BR.gmo 2004-12-28 16:59:08.000000000 +0100 @@ -442,7 +442,7 @@ cmcyancyan_ke-_mailgreengzip archivehueinvalid formatted GFlare file: %s k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftpixels/%aredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsin^p, steppedsin^p-based functionsome sort of error with the file extension or lack thereofthe _Whole Screento alphavaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: gimp-plug-ins.HEAD Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-12-14 03:49-0200 Last-Translator: Joao S. O. Bueno Calligaris Language-Team: Brazilian Portuguese <> diff -uraN gimp-2.2.0/po-plug-ins/pt_BR.po gimp-2.2.1/po-plug-ins/pt_BR.po --- gimp-2.2.0/po-plug-ins/pt_BR.po 2004-12-19 03:34:16.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/pt_BR.po 2004-12-28 16:59:00.000000000 +0100 @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: gimp-plug-ins.HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-12-14 03:49-0200\n" "Last-Translator: Joao S. O. Bueno Calligaris \n" "Language-Team: Brazilian Portuguese <>\n" @@ -960,7 +960,7 @@ msgid "Antialiasing quality. Higher is better, but slower" msgstr "Qualidade da suavização. Quanto mais alta melhor, porém mais lento" -#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:720 +#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:691 #: plug-ins/common/wind.c:993 plug-ins/imagemap/imap_preferences.c:539 msgid "_Threshold:" msgstr "Limi_te:" @@ -2086,12 +2086,12 @@ msgstr "Orientação" #: plug-ins/common/blinds.c:259 plug-ins/common/ripple.c:539 -#: plug-ins/common/tileit.c:419 plug-ins/pagecurl/pagecurl.c:530 +#: plug-ins/common/tileit.c:418 plug-ins/pagecurl/pagecurl.c:530 msgid "_Horizontal" msgstr "_Horizontal" #: plug-ins/common/blinds.c:260 plug-ins/common/ripple.c:540 -#: plug-ins/common/tileit.c:429 plug-ins/pagecurl/pagecurl.c:529 +#: plug-ins/common/tileit.c:428 plug-ins/pagecurl/pagecurl.c:529 msgid "_Vertical" msgstr "_Vertical" @@ -2112,7 +2112,7 @@ msgid "_Blur" msgstr "_Desfocar" -#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:383 +#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:432 msgid "Blurring..." msgstr "Desfocando..." @@ -2223,23 +2223,23 @@ msgid "Ca_rtoon..." msgstr "_Ilustração..." -#: plug-ins/common/cartoon.c:228 plug-ins/common/dog.c:246 -#: plug-ins/common/gauss.c:430 plug-ins/common/neon.c:222 -#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:203 +#: plug-ins/common/cartoon.c:229 plug-ins/common/dog.c:247 +#: plug-ins/common/gauss.c:431 plug-ins/common/neon.c:221 +#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:204 #: plug-ins/common/softglow.c:220 plug-ins/gflare/gflare.c:972 #: plug-ins/sgi/sgi.c:528 plug-ins/xjt/xjt.c:1673 msgid "Cannot operate on indexed color images." msgstr "Este filtro não pode ser aplicado em imagens indexadas" -#: plug-ins/common/cartoon.c:807 +#: plug-ins/common/cartoon.c:808 msgid "Cartoon" msgstr "_Ilustração" -#: plug-ins/common/cartoon.c:837 plug-ins/common/photocopy.c:867 +#: plug-ins/common/cartoon.c:838 plug-ins/common/photocopy.c:867 msgid "_Mask radius:" msgstr "Raio da _Máscara.:" -#: plug-ins/common/cartoon.c:851 +#: plug-ins/common/cartoon.c:852 msgid "_Percent black:" msgstr "Porcentagem de preto:" @@ -2397,28 +2397,28 @@ msgid "Colorify Custom Color" msgstr "Colorir com Cor Personalizada" -#: plug-ins/common/colortoalpha.c:105 +#: plug-ins/common/colortoalpha.c:104 msgid "Color to _Alpha..." msgstr "Cor para _Alfa..." -#: plug-ins/common/colortoalpha.c:183 +#: plug-ins/common/colortoalpha.c:181 msgid "Removing color..." msgstr "Removendo cor..." -#: plug-ins/common/colortoalpha.c:364 +#: plug-ins/common/colortoalpha.c:377 msgid "Color to Alpha" msgstr "Cor para Alfa" -#: plug-ins/common/colortoalpha.c:389 plug-ins/common/mapcolor.c:424 +#: plug-ins/common/colortoalpha.c:402 plug-ins/common/mapcolor.c:424 #: plug-ins/gfli/gfli.c:835 plug-ins/gfli/gfli.c:898 msgid "From:" msgstr "A partir de:" -#: plug-ins/common/colortoalpha.c:393 +#: plug-ins/common/colortoalpha.c:406 msgid "Color to Alpha Color Picker" msgstr "Seletor de Cores do Cor para Alfa" -#: plug-ins/common/colortoalpha.c:407 +#: plug-ins/common/colortoalpha.c:420 msgid "to alpha" msgstr "para alfa" @@ -2731,23 +2731,23 @@ msgid "_Cubism..." msgstr "_Cubismo..." -#: plug-ins/common/cubism.c:267 +#: plug-ins/common/cubism.c:269 msgid "Cubism" msgstr "Cubismo" -#: plug-ins/common/cubism.c:296 +#: plug-ins/common/cubism.c:298 msgid "_Tile size:" msgstr "_Tamanho da pastilha:" -#: plug-ins/common/cubism.c:309 +#: plug-ins/common/cubism.c:311 msgid "T_ile saturation:" msgstr "_Saturação das pastilhas:" -#: plug-ins/common/cubism.c:320 +#: plug-ins/common/cubism.c:322 msgid "_Use background color" msgstr "_Usar cor de fundo" -#: plug-ins/common/cubism.c:410 +#: plug-ins/common/cubism.c:412 msgid "Cubistic Transformation..." msgstr "Transformação Cubista..." @@ -3116,42 +3116,42 @@ msgid "Des_peckle..." msgstr "Su_pressão de manchas" -#: plug-ins/common/despeckle.c:420 plug-ins/common/despeckle.c:642 +#: plug-ins/common/despeckle.c:418 plug-ins/common/despeckle.c:640 msgid "Despeckle" msgstr "Supressão de manchas" #. #. * Filter type controls... #. -#: plug-ins/common/despeckle.c:446 plug-ins/gimpressionist/orientmap.c:616 +#: plug-ins/common/despeckle.c:444 plug-ins/gimpressionist/orientmap.c:616 msgid "Type" msgstr "Tipo" #. parameter settings -#: plug-ins/common/despeckle.c:456 +#: plug-ins/common/despeckle.c:454 msgid "Median" msgstr "Mediana" -#: plug-ins/common/despeckle.c:462 +#: plug-ins/common/despeckle.c:460 msgid "_Adaptive" msgstr "_Adaptativa" -#: plug-ins/common/despeckle.c:472 +#: plug-ins/common/despeckle.c:470 msgid "R_ecursive" msgstr "R_ecursiva" -#: plug-ins/common/despeckle.c:496 plug-ins/common/neon.c:728 +#: plug-ins/common/despeckle.c:494 plug-ins/common/neon.c:727 #: plug-ins/common/nlfilt.c:1083 plug-ins/common/nova.c:359 -#: plug-ins/common/unsharp.c:694 plug-ins/common/whirlpinch.c:588 +#: plug-ins/common/unsharp.c:665 plug-ins/common/whirlpinch.c:588 #: plug-ins/gflare/gflare.c:2686 plug-ins/imagemap/imap_circle.c:278 msgid "_Radius:" msgstr "_Raio:" -#: plug-ins/common/despeckle.c:512 +#: plug-ins/common/despeckle.c:510 msgid "_Black level:" msgstr "Nível de _preto:" -#: plug-ins/common/despeckle.c:528 +#: plug-ins/common/despeckle.c:526 msgid "_White level:" msgstr "Nível de b_ranco:" @@ -3239,7 +3239,7 @@ msgid "_Displace..." msgstr "_Deslocar" -#: plug-ins/common/displace.c:228 +#: plug-ins/common/displace.c:231 msgid "Displacing..." msgstr "Deslocando" @@ -3276,27 +3276,27 @@ msgid "Difference of Gaussians..." msgstr "Diferença de Gaussianas..." -#: plug-ins/common/dog.c:222 plug-ins/common/dog.c:273 +#: plug-ins/common/dog.c:227 plug-ins/common/dog.c:274 msgid "DoG Edge Detect" msgstr "Detecção de Borda DdG" -#: plug-ins/common/dog.c:294 +#: plug-ins/common/dog.c:295 msgid "Smoothing parameters" msgstr "Parâmetros de suavização" -#: plug-ins/common/dog.c:308 +#: plug-ins/common/dog.c:309 msgid "_Radius 1:" msgstr "Raio _1:" -#: plug-ins/common/dog.c:312 +#: plug-ins/common/dog.c:313 msgid "R_adius 2:" msgstr "Raio 2:" -#: plug-ins/common/dog.c:324 plug-ins/common/normalize.c:88 +#: plug-ins/common/dog.c:325 plug-ins/common/normalize.c:88 msgid "_Normalize" msgstr "_Normalizar" -#: plug-ins/common/dog.c:335 plug-ins/gimpressionist/paper.c:149 +#: plug-ins/common/dog.c:336 plug-ins/gimpressionist/paper.c:149 msgid "_Invert" msgstr "_Inverter" @@ -3348,7 +3348,7 @@ msgid "_Emboss..." msgstr "_Esculpir" -#: plug-ins/common/emboss.c:374 plug-ins/common/emboss.c:439 +#: plug-ins/common/emboss.c:376 plug-ins/common/emboss.c:439 msgid "Emboss" msgstr "Esculpir" @@ -3372,7 +3372,7 @@ msgid "En_grave..." msgstr "Ental_har..." -#: plug-ins/common/engrave.c:181 +#: plug-ins/common/engrave.c:182 msgid "Engraving..." msgstr "Entalhando..." @@ -3779,38 +3779,38 @@ msgid "_Gaussian Blur..." msgstr "Desfocagem _Gaussiana..." -#: plug-ins/common/gauss.c:407 +#: plug-ins/common/gauss.c:413 msgid "Gaussian Blur..." msgstr "Desfocagem Gaussiana..." -#: plug-ins/common/gauss.c:460 +#: plug-ins/common/gauss.c:461 msgid "Gaussian Blur" msgstr "Desfocagem Gaussiana" #. parameter settings -#: plug-ins/common/gauss.c:483 +#: plug-ins/common/gauss.c:484 msgid "Blur Radius" msgstr "Raio de Desfocagem" -#: plug-ins/common/gauss.c:497 plug-ins/common/jigsaw.c:2456 -#: plug-ins/common/spread.c:378 +#: plug-ins/common/gauss.c:498 plug-ins/common/jigsaw.c:2456 +#: plug-ins/common/spread.c:379 msgid "_Horizontal:" msgstr "_Horizontal" -#: plug-ins/common/gauss.c:501 plug-ins/common/jigsaw.c:2473 -#: plug-ins/common/spread.c:382 +#: plug-ins/common/gauss.c:502 plug-ins/common/jigsaw.c:2473 +#: plug-ins/common/spread.c:383 msgid "_Vertical:" msgstr "_Vertical:" -#: plug-ins/common/gauss.c:524 +#: plug-ins/common/gauss.c:525 msgid "Blur Method" msgstr "Tipo de Borrão" -#: plug-ins/common/gauss.c:528 +#: plug-ins/common/gauss.c:529 msgid "_IIR" msgstr "_IIR" -#: plug-ins/common/gauss.c:529 +#: plug-ins/common/gauss.c:530 msgid "_RLE" msgstr "_RLE" @@ -4115,19 +4115,19 @@ msgid "_Glass Tile..." msgstr "Pastilhas de _Vidro..." -#: plug-ins/common/glasstile.c:208 +#: plug-ins/common/glasstile.c:209 msgid "Glass Tile..." msgstr "Pastilhas de Vidro..." -#: plug-ins/common/glasstile.c:251 +#: plug-ins/common/glasstile.c:250 msgid "Glass Tile" msgstr "Pastilhas de Vidro" -#: plug-ins/common/glasstile.c:282 +#: plug-ins/common/glasstile.c:281 msgid "Tile _width:" msgstr "_Largura das pastilhas:" -#: plug-ins/common/glasstile.c:296 plug-ins/common/mosaic.c:621 +#: plug-ins/common/glasstile.c:295 plug-ins/common/mosaic.c:621 msgid "Tile _height:" msgstr "_Altura das pastilhas:" @@ -5118,15 +5118,15 @@ msgid "_Neon..." msgstr "_Neon..." -#: plug-ins/common/neon.c:204 +#: plug-ins/common/neon.c:207 msgid "Neon..." msgstr "Neon..." -#: plug-ins/common/neon.c:698 +#: plug-ins/common/neon.c:697 msgid "Neon Detection" msgstr "Detecção de Neon" -#: plug-ins/common/neon.c:743 plug-ins/common/unsharp.c:707 +#: plug-ins/common/neon.c:742 plug-ins/common/unsharp.c:678 msgid "_Amount:" msgstr "_Quantidade:" @@ -5285,7 +5285,7 @@ msgid "_Scatter RGB..." msgstr "_Espalhar RGB..." -#: plug-ins/common/noisify.c:284 +#: plug-ins/common/noisify.c:285 msgid "Adding Noise..." msgstr "Acrescentando ruído..." @@ -5354,7 +5354,7 @@ msgid "Oili_fy..." msgstr "Pint_ura a Óleo..." -#: plug-ins/common/oilify.c:188 +#: plug-ins/common/oilify.c:189 msgid "Oil Painting..." msgstr "Pintando a Óleo..." @@ -5489,7 +5489,7 @@ msgid "Photocopy" msgstr "Fotocópia" -#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:513 +#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:509 #: plug-ins/common/softglow.c:687 msgid "_Sharpness:" msgstr "_Acuidade:" @@ -6124,7 +6124,7 @@ msgid "_Ripple..." msgstr "_Ondulações..." -#: plug-ins/common/ripple.c:219 +#: plug-ins/common/ripple.c:222 msgid "Rippling..." msgstr "Criando Ondulações..." @@ -6343,19 +6343,19 @@ msgid "_Selective Gaussian Blur..." msgstr "Desfoc. Gaussiana _Seletiva..." -#: plug-ins/common/sel_gauss.c:186 +#: plug-ins/common/sel_gauss.c:187 msgid "Selective Gaussian Blur..." msgstr "Desfoc. Gaussiana Seletiva..." -#: plug-ins/common/sel_gauss.c:224 +#: plug-ins/common/sel_gauss.c:225 msgid "Selective Gaussian Blur" msgstr "Desfoc. Gaussiana Seletiva" -#: plug-ins/common/sel_gauss.c:256 +#: plug-ins/common/sel_gauss.c:257 msgid "_Blur radius:" msgstr "R_aio de desfoc.:" -#: plug-ins/common/sel_gauss.c:266 +#: plug-ins/common/sel_gauss.c:267 msgid "_Max. delta:" msgstr "Delta _Máx.:" @@ -6374,11 +6374,11 @@ #. #. * Let the user know what we're doing... #. -#: plug-ins/common/sharpen.c:315 +#: plug-ins/common/sharpen.c:311 msgid "Sharpening..." msgstr "Aguçando..." -#: plug-ins/common/sharpen.c:484 +#: plug-ins/common/sharpen.c:480 msgid "Sharpen" msgstr "Aguçar" @@ -6386,7 +6386,7 @@ msgid "_Shift..." msgstr "E_mpurrar..." -#: plug-ins/common/shift.c:191 +#: plug-ins/common/shift.c:194 msgid "Shifting..." msgstr "Empurrando..." @@ -6581,23 +6581,23 @@ msgid "_Sobel..." msgstr "_Sobel..." -#: plug-ins/common/sobel.c:226 +#: plug-ins/common/sobel.c:227 msgid "Sobel Edge Detection" msgstr "Detecção de Borda Sobel" -#: plug-ins/common/sobel.c:248 +#: plug-ins/common/sobel.c:249 msgid "Sobel _Horizontally" msgstr "Aplicar Sobel _Horizontalmente" -#: plug-ins/common/sobel.c:260 +#: plug-ins/common/sobel.c:261 msgid "Sobel _Vertically" msgstr "Aplicar Sobel _Verticalmente" -#: plug-ins/common/sobel.c:272 +#: plug-ins/common/sobel.c:273 msgid "_Keep sign of result (one direction only)" msgstr "_Manter sinal de resultado (somente uma direção)" -#: plug-ins/common/sobel.c:358 +#: plug-ins/common/sobel.c:359 msgid "Sobel Edge Detecting..." msgstr "Detectando Borda (Sobel)..." @@ -6897,15 +6897,15 @@ msgid "Sp_read..." msgstr "Espalhar..." -#: plug-ins/common/spread.c:179 +#: plug-ins/common/spread.c:182 msgid "Spreading..." msgstr "Espalhando..." -#: plug-ins/common/spread.c:345 +#: plug-ins/common/spread.c:346 msgid "Spread" msgstr "Espalhar" -#: plug-ins/common/spread.c:363 +#: plug-ins/common/spread.c:364 msgid "Spread Amount" msgstr "Quantidade de Espalhamento" @@ -7192,7 +7192,8 @@ msgid "_Tile..." msgstr "Mosaico..." -#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:321 +#. Set the tile cache size +#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:320 msgid "Tiling..." msgstr "Criando novo mosaico..." @@ -7216,42 +7217,42 @@ msgstr "_Ladrilhos Pequenos" #. Get the preview image -#: plug-ins/common/tileit.c:364 +#: plug-ins/common/tileit.c:363 msgid "TileIt" msgstr "LadrilhosPequenos" #. Area for buttons etc #. Flip -#: plug-ins/common/tileit.c:407 plug-ins/ifscompose/ifscompose.c:628 +#: plug-ins/common/tileit.c:406 plug-ins/ifscompose/ifscompose.c:628 msgid "Flip" msgstr "Espelhar" -#: plug-ins/common/tileit.c:455 +#: plug-ins/common/tileit.c:454 msgid "A_ll tiles" msgstr "_Todas as pastilhas" -#: plug-ins/common/tileit.c:469 +#: plug-ins/common/tileit.c:468 msgid "Al_ternate tiles" msgstr "Alternar pastilhas" -#: plug-ins/common/tileit.c:483 +#: plug-ins/common/tileit.c:482 msgid "_Explicit tile" msgstr "Pastilha _explícita " -#: plug-ins/common/tileit.c:489 +#: plug-ins/common/tileit.c:488 msgid "Ro_w:" msgstr "_Linha:" -#: plug-ins/common/tileit.c:513 +#: plug-ins/common/tileit.c:512 msgid "Col_umn:" msgstr "Col_una:" -#: plug-ins/common/tileit.c:565 +#: plug-ins/common/tileit.c:564 msgid "O_pacity:" msgstr "O_pacidade:" #. Lower frame saying howmany segments -#: plug-ins/common/tileit.c:574 +#: plug-ins/common/tileit.c:573 msgid "Number of Segments" msgstr "Número de Segmentos:" @@ -7402,15 +7403,15 @@ msgid "Unit Editor" msgstr "Editor de Unidades" -#: plug-ins/common/unsharp.c:149 +#: plug-ins/common/unsharp.c:143 msgid "_Unsharp Mask..." msgstr "Máscara de Desag_uçar..." -#: plug-ins/common/unsharp.c:493 +#: plug-ins/common/unsharp.c:468 msgid "Merging..." msgstr "Combinando..." -#: plug-ins/common/unsharp.c:664 +#: plug-ins/common/unsharp.c:635 msgid "Unsharp Mask" msgstr "Máscara de Desaguçar" @@ -8450,19 +8451,19 @@ msgid "_Zoom:" msgstr "_Zoom:" -#: plug-ins/gfig/gfig-bezier.c:452 +#: plug-ins/gfig/gfig-bezier.c:448 msgid "Closed" msgstr "Fechado" -#: plug-ins/gfig/gfig-bezier.c:457 +#: plug-ins/gfig/gfig-bezier.c:453 msgid "Close curve on completion" msgstr "Fecha curva ao concluir" -#: plug-ins/gfig/gfig-bezier.c:462 +#: plug-ins/gfig/gfig-bezier.c:458 msgid "Show Line Frame" msgstr "Exibir Guia para Linha " -#: plug-ins/gfig/gfig-bezier.c:467 +#: plug-ins/gfig/gfig-bezier.c:463 msgid "Draws lines between the control points. Only during curve creation" msgstr "" "Desenha linhas entre os pontos de controle. Somente durante a criação de " diff -uraN gimp-2.2.0/po-plug-ins/pt.gmo gimp-2.2.1/po-plug-ins/pt.gmo --- gimp-2.2.0/po-plug-ins/pt.gmo 2004-12-19 03:34:24.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/pt.gmo 2004-12-28 16:59:08.000000000 +0100 @@ -286,7 +286,7 @@ which has no alpha channel.Z scale (size)Z:ZealousCropping(tm)...ZoomZoom inZoom in (make image bigger)Zoom outZoom out (make image smaller)_3x3_Abbreviation:_Adaptive_Additive_Advanced_Alpha_Alpha:_Amount:_Amplitude:_Angle:_Animate_Antialiasing_Automatically convert_Azimuth:_Background_Base URL:_Bilinear_Black_Blacken_Blast_Blend_Blue_Blue:_Border:_Bottom:_Box_Brightness_Brightness:_Brush_Bump Map_Bumpmap_Copy_Deflate_Depth:_Derivative_Description:_Detail:_Digits:_Displacement:_Distorted_Dots_Edit_Effect Image:_Elevation:_Emboss_Encapsulated PostScript_Entire Image_Environment Map_Exponent:_Factor:_File_Filename:_Font:_Force_Fractals_Free_Ftp Site_Gamma:_General_Gopher_Gradient_Gray:_Green_Green:_Grey_Grow_Height_Height:_Help_Hex_Hidden_Holdness:_Horizontal_Horizontal:_Horz. Spacing:_Hue_ID:_Ideal_Ignore_Inch_Input SPI:_Insert_Interlacing (Adam7)_Invert_JPEG_JavaScript_Keep NCSA circles true_Kill_LZW_Laplace_Large staggered_Left_Left Start at:_Light_Linear_Lines_Link_Lower_MIME_Mapping_Material_Max (%):_Max Depth:_Midtones_Millimeter_Mirror_Misc Ops._Monochrome_Move_No. Across:_None_Normal_Pack Bits_Parameters_Period:_Phase:_Ping Pong_Plural:_Polygon_Presets_Preview_Preview!_Prompt for area info_Psychobilly_RGB_RLE compression_RLE encoded_Radial_Radius:_Randomize_Rays_Recipient:_Rectangle_Red:_Redo %s_Reflective_Remove_Rendering_Require default URL_Right_Right Border_Rotated_Saturation_Saturation:_Search:_Second Flares_Sender:_Settings_Sharpness:_Size_Size:_Smear_Snap-To Grid Enabled_Speed:_Spokes:_Square_Squares_Staggered_Strength:_Symbol:_Target frame name/ID: (optional - used for FRAMES only)_Thickness:_Threshold_Threshold:_Title:_Tools_Top Start at:_Top:_Transparent_URL to activate when this area is clicked: (required)_Undo %s_Update_Upper_Upper Border_Use double-sized grab handles_Uuencode_Value_Value:_Variation:_Vert. Spacing:_Vertical_Vertical:_View_Voronoi_Warp_Waterlevel:_Wavelength:_Web Site_White_Wide-striped_Width_Width:_Wind_Wrap_X Scale:_X:_Y Scale:_Y:_Yellow_Z:_Zoom_Zoom:`Default' is created.a _Single Windowafteralphablackblueblueness_cb470blueness_cb470fblueness_cb709blueness_cb709fcmcyancyan_ke-_mailgreenhueinvalid formatted GFlare file: %s k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftpixels/%aredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsin^p, steppedsin^p-based functionsome sort of error with the file extension or lack thereofthe _Whole Screenvaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: 2.6 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-03-21 20:30+0000 Last-Translator: Duarte Loreto Language-Team: Portuguese diff -uraN gimp-2.2.0/po-plug-ins/pt.po gimp-2.2.1/po-plug-ins/pt.po --- gimp-2.2.0/po-plug-ins/pt.po 2004-12-19 03:34:16.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/pt.po 2004-12-28 16:59:00.000000000 +0100 @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: 2.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-03-21 20:30+0000\n" "Last-Translator: Duarte Loreto \n" "Language-Team: Portuguese \n" @@ -995,7 +995,7 @@ msgid "Antialiasing quality. Higher is better, but slower" msgstr "Qualidade de antialiasing. Quanto mais alta melhor, porém mais lento" -#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:720 +#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:691 #: plug-ins/common/wind.c:993 plug-ins/imagemap/imap_preferences.c:539 msgid "_Threshold:" msgstr "_Intervalo:" @@ -2201,12 +2201,12 @@ msgstr "Orientação" #: plug-ins/common/blinds.c:259 plug-ins/common/ripple.c:539 -#: plug-ins/common/tileit.c:419 plug-ins/pagecurl/pagecurl.c:530 +#: plug-ins/common/tileit.c:418 plug-ins/pagecurl/pagecurl.c:530 msgid "_Horizontal" msgstr "_Horizontal" #: plug-ins/common/blinds.c:260 plug-ins/common/ripple.c:540 -#: plug-ins/common/tileit.c:429 plug-ins/pagecurl/pagecurl.c:529 +#: plug-ins/common/tileit.c:428 plug-ins/pagecurl/pagecurl.c:529 msgid "_Vertical" msgstr "_Vertical" @@ -2229,7 +2229,7 @@ msgid "_Blur" msgstr "Desfocar" -#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:383 +#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:432 msgid "Blurring..." msgstr "A Desfocar..." @@ -2350,25 +2350,25 @@ msgid "Ca_rtoon..." msgstr "Legend_a" -#: plug-ins/common/cartoon.c:228 plug-ins/common/dog.c:246 -#: plug-ins/common/gauss.c:430 plug-ins/common/neon.c:222 -#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:203 +#: plug-ins/common/cartoon.c:229 plug-ins/common/dog.c:247 +#: plug-ins/common/gauss.c:431 plug-ins/common/neon.c:221 +#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:204 #: plug-ins/common/softglow.c:220 plug-ins/gflare/gflare.c:972 #: plug-ins/sgi/sgi.c:528 plug-ins/xjt/xjt.c:1673 msgid "Cannot operate on indexed color images." msgstr "Incapaz de operar em imagens de cores indexadas." -#: plug-ins/common/cartoon.c:807 +#: plug-ins/common/cartoon.c:808 #, fuzzy msgid "Cartoon" msgstr "Legend_a" -#: plug-ins/common/cartoon.c:837 plug-ins/common/photocopy.c:867 +#: plug-ins/common/cartoon.c:838 plug-ins/common/photocopy.c:867 #, fuzzy msgid "_Mask radius:" msgstr "Raio de Des_foc.:" -#: plug-ins/common/cartoon.c:851 +#: plug-ins/common/cartoon.c:852 #, fuzzy msgid "_Percent black:" msgstr "Porcento" @@ -2534,29 +2534,29 @@ msgid "Colorify Custom Color" msgstr "Colorir Com Cor Personalizada" -#: plug-ins/common/colortoalpha.c:105 +#: plug-ins/common/colortoalpha.c:104 #, fuzzy msgid "Color to _Alpha..." msgstr "Cor para Alfa" -#: plug-ins/common/colortoalpha.c:183 +#: plug-ins/common/colortoalpha.c:181 msgid "Removing color..." msgstr "A remover cores..." -#: plug-ins/common/colortoalpha.c:364 +#: plug-ins/common/colortoalpha.c:377 msgid "Color to Alpha" msgstr "Cor para Alfa" -#: plug-ins/common/colortoalpha.c:389 plug-ins/common/mapcolor.c:424 +#: plug-ins/common/colortoalpha.c:402 plug-ins/common/mapcolor.c:424 #: plug-ins/gfli/gfli.c:835 plug-ins/gfli/gfli.c:898 msgid "From:" msgstr "A partir de:" -#: plug-ins/common/colortoalpha.c:393 +#: plug-ins/common/colortoalpha.c:406 msgid "Color to Alpha Color Picker" msgstr "Cor para Selector de Cor Alfa" -#: plug-ins/common/colortoalpha.c:407 +#: plug-ins/common/colortoalpha.c:420 #, fuzzy msgid "to alpha" msgstr "para Alfa" @@ -2878,26 +2878,26 @@ msgid "_Cubism..." msgstr "Cubismo" -#: plug-ins/common/cubism.c:267 +#: plug-ins/common/cubism.c:269 msgid "Cubism" msgstr "Cubismo" -#: plug-ins/common/cubism.c:296 +#: plug-ins/common/cubism.c:298 #, fuzzy msgid "_Tile size:" msgstr "_Tamanho Mosaico:" -#: plug-ins/common/cubism.c:309 +#: plug-ins/common/cubism.c:311 #, fuzzy msgid "T_ile saturation:" msgstr "Saturação Mosa_ico:" -#: plug-ins/common/cubism.c:320 +#: plug-ins/common/cubism.c:322 #, fuzzy msgid "_Use background color" msgstr "_Utilizar Cor de Fundo" -#: plug-ins/common/cubism.c:410 +#: plug-ins/common/cubism.c:412 #, fuzzy msgid "Cubistic Transformation..." msgstr "Transformação Cubística" @@ -3282,44 +3282,44 @@ msgid "Des_peckle..." msgstr "Supressão Manchas" -#: plug-ins/common/despeckle.c:420 plug-ins/common/despeckle.c:642 +#: plug-ins/common/despeckle.c:418 plug-ins/common/despeckle.c:640 msgid "Despeckle" msgstr "Supressão Manchas" #. #. * Filter type controls... #. -#: plug-ins/common/despeckle.c:446 plug-ins/gimpressionist/orientmap.c:616 +#: plug-ins/common/despeckle.c:444 plug-ins/gimpressionist/orientmap.c:616 msgid "Type" msgstr "Tipo" #. parameter settings -#: plug-ins/common/despeckle.c:456 +#: plug-ins/common/despeckle.c:454 #, fuzzy msgid "Median" msgstr "Radianos" -#: plug-ins/common/despeckle.c:462 +#: plug-ins/common/despeckle.c:460 msgid "_Adaptive" msgstr "_Adaptável" -#: plug-ins/common/despeckle.c:472 +#: plug-ins/common/despeckle.c:470 msgid "R_ecursive" msgstr "R_ecursivo" -#: plug-ins/common/despeckle.c:496 plug-ins/common/neon.c:728 +#: plug-ins/common/despeckle.c:494 plug-ins/common/neon.c:727 #: plug-ins/common/nlfilt.c:1083 plug-ins/common/nova.c:359 -#: plug-ins/common/unsharp.c:694 plug-ins/common/whirlpinch.c:588 +#: plug-ins/common/unsharp.c:665 plug-ins/common/whirlpinch.c:588 #: plug-ins/gflare/gflare.c:2686 plug-ins/imagemap/imap_circle.c:278 msgid "_Radius:" msgstr "_Raio:" -#: plug-ins/common/despeckle.c:512 +#: plug-ins/common/despeckle.c:510 #, fuzzy msgid "_Black level:" msgstr "Nível de _Preto:" -#: plug-ins/common/despeckle.c:528 +#: plug-ins/common/despeckle.c:526 #, fuzzy msgid "_White level:" msgstr "Nível de _Branco:" @@ -3416,7 +3416,7 @@ msgid "_Displace..." msgstr "A Deslocar..." -#: plug-ins/common/displace.c:228 +#: plug-ins/common/displace.c:231 msgid "Displacing..." msgstr "A Deslocar..." @@ -3456,32 +3456,32 @@ msgid "Difference of Gaussians..." msgstr "Desfoc. Gaussiano Selectivo..." -#: plug-ins/common/dog.c:222 plug-ins/common/dog.c:273 +#: plug-ins/common/dog.c:227 plug-ins/common/dog.c:274 #, fuzzy msgid "DoG Edge Detect" msgstr "Detecção Margem" -#: plug-ins/common/dog.c:294 +#: plug-ins/common/dog.c:295 #, fuzzy msgid "Smoothing parameters" msgstr "Copiar Parâmetros" -#: plug-ins/common/dog.c:308 +#: plug-ins/common/dog.c:309 #, fuzzy msgid "_Radius 1:" msgstr "_Raio:" -#: plug-ins/common/dog.c:312 +#: plug-ins/common/dog.c:313 #, fuzzy msgid "R_adius 2:" msgstr "R_aio:" -#: plug-ins/common/dog.c:324 plug-ins/common/normalize.c:88 +#: plug-ins/common/dog.c:325 plug-ins/common/normalize.c:88 #, fuzzy msgid "_Normalize" msgstr "_Normal" -#: plug-ins/common/dog.c:335 plug-ins/gimpressionist/paper.c:149 +#: plug-ins/common/dog.c:336 plug-ins/gimpressionist/paper.c:149 msgid "_Invert" msgstr "_Inverter" @@ -3542,7 +3542,7 @@ msgid "_Emboss..." msgstr "Sali_entar" -#: plug-ins/common/emboss.c:374 plug-ins/common/emboss.c:439 +#: plug-ins/common/emboss.c:376 plug-ins/common/emboss.c:439 msgid "Emboss" msgstr "Salientar" @@ -3567,7 +3567,7 @@ msgid "En_grave..." msgstr "A Entalhar..." -#: plug-ins/common/engrave.c:181 +#: plug-ins/common/engrave.c:182 msgid "Engraving..." msgstr "A Entalhar..." @@ -3996,41 +3996,41 @@ msgid "_Gaussian Blur..." msgstr "/Filtros/Desfocar/Desfoc. Gaussiano (_IIR)..." -#: plug-ins/common/gauss.c:407 +#: plug-ins/common/gauss.c:413 #, fuzzy msgid "Gaussian Blur..." msgstr "/Filtros/Desfocar/Desfoc. Gaussiano (_IIR)..." -#: plug-ins/common/gauss.c:460 +#: plug-ins/common/gauss.c:461 #, fuzzy msgid "Gaussian Blur" msgstr "Desfoc. Gaussiano IIR" #. parameter settings -#: plug-ins/common/gauss.c:483 +#: plug-ins/common/gauss.c:484 msgid "Blur Radius" msgstr "Raio de Desfocamento" -#: plug-ins/common/gauss.c:497 plug-ins/common/jigsaw.c:2456 -#: plug-ins/common/spread.c:378 +#: plug-ins/common/gauss.c:498 plug-ins/common/jigsaw.c:2456 +#: plug-ins/common/spread.c:379 msgid "_Horizontal:" msgstr "_Horizontal:" -#: plug-ins/common/gauss.c:501 plug-ins/common/jigsaw.c:2473 -#: plug-ins/common/spread.c:382 +#: plug-ins/common/gauss.c:502 plug-ins/common/jigsaw.c:2473 +#: plug-ins/common/spread.c:383 msgid "_Vertical:" msgstr "_Vertical:" -#: plug-ins/common/gauss.c:524 +#: plug-ins/common/gauss.c:525 #, fuzzy msgid "Blur Method" msgstr "Tipo Desfoc." -#: plug-ins/common/gauss.c:528 +#: plug-ins/common/gauss.c:529 msgid "_IIR" msgstr "" -#: plug-ins/common/gauss.c:529 +#: plug-ins/common/gauss.c:530 #, fuzzy msgid "_RLE" msgstr "RLE" @@ -4351,20 +4351,20 @@ msgid "_Glass Tile..." msgstr "Mosaico Vidro..." -#: plug-ins/common/glasstile.c:208 +#: plug-ins/common/glasstile.c:209 msgid "Glass Tile..." msgstr "Mosaico Vidro..." -#: plug-ins/common/glasstile.c:251 +#: plug-ins/common/glasstile.c:250 msgid "Glass Tile" msgstr "Mosaico Vidro" -#: plug-ins/common/glasstile.c:282 +#: plug-ins/common/glasstile.c:281 #, fuzzy msgid "Tile _width:" msgstr "_Largura Mosaico:" -#: plug-ins/common/glasstile.c:296 plug-ins/common/mosaic.c:621 +#: plug-ins/common/glasstile.c:295 plug-ins/common/mosaic.c:621 #, fuzzy msgid "Tile _height:" msgstr "_Altura Mosaico:" @@ -5426,17 +5426,17 @@ msgid "_Neon..." msgstr "Vídeo/RGB..." -#: plug-ins/common/neon.c:204 +#: plug-ins/common/neon.c:207 #, fuzzy msgid "Neon..." msgstr "Impressão Jornal..." -#: plug-ins/common/neon.c:698 +#: plug-ins/common/neon.c:697 #, fuzzy msgid "Neon Detection" msgstr "Detecção Margem" -#: plug-ins/common/neon.c:743 plug-ins/common/unsharp.c:707 +#: plug-ins/common/neon.c:742 plug-ins/common/unsharp.c:678 msgid "_Amount:" msgstr "Qu_antidade:" @@ -5606,7 +5606,7 @@ msgid "_Scatter RGB..." msgstr "Dispersão HSV..." -#: plug-ins/common/noisify.c:284 +#: plug-ins/common/noisify.c:285 msgid "Adding Noise..." msgstr "A Acrescentar Ruído..." @@ -5682,7 +5682,7 @@ msgid "Oili_fy..." msgstr "Efeito Óleo" -#: plug-ins/common/oilify.c:188 +#: plug-ins/common/oilify.c:189 msgid "Oil Painting..." msgstr "A Pintar a Óleo..." @@ -5827,7 +5827,7 @@ msgid "Photocopy" msgstr "Fotografia" -#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:513 +#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:509 #: plug-ins/common/softglow.c:687 msgid "_Sharpness:" msgstr "_Acuidade:" @@ -6515,7 +6515,7 @@ msgid "_Ripple..." msgstr "A Ondular..." -#: plug-ins/common/ripple.c:219 +#: plug-ins/common/ripple.c:222 msgid "Rippling..." msgstr "A Ondular..." @@ -6749,20 +6749,20 @@ msgid "_Selective Gaussian Blur..." msgstr "Desfoc. Gaussiano Selectivo..." -#: plug-ins/common/sel_gauss.c:186 +#: plug-ins/common/sel_gauss.c:187 msgid "Selective Gaussian Blur..." msgstr "Desfoc. Gaussiano Selectivo..." -#: plug-ins/common/sel_gauss.c:224 +#: plug-ins/common/sel_gauss.c:225 msgid "Selective Gaussian Blur" msgstr "Desfoc. Gaussiano Selectivo" -#: plug-ins/common/sel_gauss.c:256 +#: plug-ins/common/sel_gauss.c:257 #, fuzzy msgid "_Blur radius:" msgstr "Raio de Des_foc.:" -#: plug-ins/common/sel_gauss.c:266 +#: plug-ins/common/sel_gauss.c:267 #, fuzzy msgid "_Max. delta:" msgstr "Delta _Máx.:" @@ -6784,11 +6784,11 @@ #. #. * Let the user know what we're doing... #. -#: plug-ins/common/sharpen.c:315 +#: plug-ins/common/sharpen.c:311 msgid "Sharpening..." msgstr "A Enfatizar..." -#: plug-ins/common/sharpen.c:484 +#: plug-ins/common/sharpen.c:480 msgid "Sharpen" msgstr "Enfatizar" @@ -6797,7 +6797,7 @@ msgid "_Shift..." msgstr "A Deslocar..." -#: plug-ins/common/shift.c:191 +#: plug-ins/common/shift.c:194 msgid "Shifting..." msgstr "A Deslocar..." @@ -7008,24 +7008,24 @@ msgid "_Sobel..." msgstr "_Sobel" -#: plug-ins/common/sobel.c:226 +#: plug-ins/common/sobel.c:227 msgid "Sobel Edge Detection" msgstr "Detecção de Margem Sobel" -#: plug-ins/common/sobel.c:248 +#: plug-ins/common/sobel.c:249 msgid "Sobel _Horizontally" msgstr "Sobel _Horizontalmente" -#: plug-ins/common/sobel.c:260 +#: plug-ins/common/sobel.c:261 msgid "Sobel _Vertically" msgstr "Sobel _Verticalmente" -#: plug-ins/common/sobel.c:272 +#: plug-ins/common/sobel.c:273 #, fuzzy msgid "_Keep sign of result (one direction only)" msgstr "Ma_nter Sinal de Resultado (apenas uma Direcção)" -#: plug-ins/common/sobel.c:358 +#: plug-ins/common/sobel.c:359 msgid "Sobel Edge Detecting..." msgstr "Detectando Margem Sobel..." @@ -7352,15 +7352,15 @@ msgid "Sp_read..." msgstr "A Espalhar..." -#: plug-ins/common/spread.c:179 +#: plug-ins/common/spread.c:182 msgid "Spreading..." msgstr "A Espalhar..." -#: plug-ins/common/spread.c:345 +#: plug-ins/common/spread.c:346 msgid "Spread" msgstr "Espalhar" -#: plug-ins/common/spread.c:363 +#: plug-ins/common/spread.c:364 msgid "Spread Amount" msgstr "Quantidade Espalhar" @@ -7660,7 +7660,8 @@ msgid "_Tile..." msgstr "Em Mosaico..." -#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:321 +#. Set the tile cache size +#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:320 msgid "Tiling..." msgstr "A Criar Cascata..." @@ -7682,45 +7683,45 @@ msgstr "To_dos os Mosaicos" #. Get the preview image -#: plug-ins/common/tileit.c:364 +#: plug-ins/common/tileit.c:363 msgid "TileIt" msgstr "Em Mosaicos" #. Area for buttons etc #. Flip -#: plug-ins/common/tileit.c:407 plug-ins/ifscompose/ifscompose.c:628 +#: plug-ins/common/tileit.c:406 plug-ins/ifscompose/ifscompose.c:628 msgid "Flip" msgstr "Virar" -#: plug-ins/common/tileit.c:455 +#: plug-ins/common/tileit.c:454 #, fuzzy msgid "A_ll tiles" msgstr "To_dos os Mosaicos" -#: plug-ins/common/tileit.c:469 +#: plug-ins/common/tileit.c:468 #, fuzzy msgid "Al_ternate tiles" msgstr "Al_ternar Mosaicos" -#: plug-ins/common/tileit.c:483 +#: plug-ins/common/tileit.c:482 #, fuzzy msgid "_Explicit tile" msgstr "Mosaico _Explícito" -#: plug-ins/common/tileit.c:489 +#: plug-ins/common/tileit.c:488 msgid "Ro_w:" msgstr "_Fila:" -#: plug-ins/common/tileit.c:513 +#: plug-ins/common/tileit.c:512 msgid "Col_umn:" msgstr "Col_una:" -#: plug-ins/common/tileit.c:565 +#: plug-ins/common/tileit.c:564 msgid "O_pacity:" msgstr "O_pacidade:" #. Lower frame saying howmany segments -#: plug-ins/common/tileit.c:574 +#: plug-ins/common/tileit.c:573 #, fuzzy msgid "Number of Segments" msgstr "_Núm Segmentos:" @@ -7874,16 +7875,16 @@ msgid "Unit Editor" msgstr "Editor Unidades" -#: plug-ins/common/unsharp.c:149 +#: plug-ins/common/unsharp.c:143 #, fuzzy msgid "_Unsharp Mask..." msgstr "Máscara Sem Realce" -#: plug-ins/common/unsharp.c:493 +#: plug-ins/common/unsharp.c:468 msgid "Merging..." msgstr "A Juntar..." -#: plug-ins/common/unsharp.c:664 +#: plug-ins/common/unsharp.c:635 msgid "Unsharp Mask" msgstr "Máscara Sem Realce" @@ -8996,19 +8997,19 @@ msgid "_Zoom:" msgstr "_Zoom:" -#: plug-ins/gfig/gfig-bezier.c:452 +#: plug-ins/gfig/gfig-bezier.c:448 msgid "Closed" msgstr "Fechado" -#: plug-ins/gfig/gfig-bezier.c:457 +#: plug-ins/gfig/gfig-bezier.c:453 msgid "Close curve on completion" msgstr "Fecha curva na conclusão" -#: plug-ins/gfig/gfig-bezier.c:462 +#: plug-ins/gfig/gfig-bezier.c:458 msgid "Show Line Frame" msgstr "Exibir Frame de Linha" -#: plug-ins/gfig/gfig-bezier.c:467 +#: plug-ins/gfig/gfig-bezier.c:463 msgid "Draws lines between the control points. Only during curve creation" msgstr "" "Desenha linhas entre os pontos de controlo. Apenas durante a criação da curva" diff -uraN gimp-2.2.0/po-plug-ins/ro.gmo gimp-2.2.1/po-plug-ins/ro.gmo --- gimp-2.2.0/po-plug-ins/ro.gmo 2004-12-19 03:34:24.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/ro.gmo 2004-12-28 16:59:08.000000000 +0100 @@ -47,7 +47,7 @@ ! ,9=X8F.PLU*D"'H,%7T$0E^[52 ANS)(]:B M 4Z+RI! QWJK_#GV;6-/91\C >&<@3O?YAdditionAlphaAlpha:Angle:AntialiasingAuthor:AutoBackgroundBlueBlue:Brightness:ChannelsClearColorContrast:Copyright:CyanDate:DefaultDeleteDelete PointDensity:EditFeatherForegroundGIMP ExtensionGIMP Plug-InGeneralGradientGradientsGrayGrayscaleGreenGreen:Height:HorizontalHueHue:Internal GIMP procedureLinearMagentaModeNoneNormalOffset:Opacity:OpenOverlayPastePixelsPreferencesPreviewRGBRadialRadius:RedRed:RedoReplaceResolution:Rotating...RotationSaturationSaturation:SaveScreenSelectSelectionSinusoidalSizeSize:Spacing:StandardTemporary ProcedureThe default comment is limited to %d characters.Threshold:TransparentTypeType:UndoUnitsUnnamedUntitledValueVerticalWhiteWidth:X:Y:YellowZoom inZoom outpixelspixels/%aProject-Id-Version: gimp-plugins Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2000-11-24 15:46+0100 Last-Translator: Robert Claudiu Gheorghe Language-Team: Română diff -uraN gimp-2.2.0/po-plug-ins/ro.po gimp-2.2.1/po-plug-ins/ro.po --- gimp-2.2.0/po-plug-ins/ro.po 2004-12-19 03:34:17.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/ro.po 2004-12-28 16:59:01.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: gimp-plugins\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2000-11-24 15:46+0100\n" "Last-Translator: Robert Claudiu Gheorghe \n" "Language-Team: Română \n" @@ -1028,7 +1028,7 @@ msgid "Antialiasing quality. Higher is better, but slower" msgstr "" -#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:720 +#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:691 #: plug-ins/common/wind.c:993 plug-ins/imagemap/imap_preferences.c:539 #, fuzzy msgid "_Threshold:" @@ -2265,13 +2265,13 @@ msgstr "Rotire" #: plug-ins/common/blinds.c:259 plug-ins/common/ripple.c:539 -#: plug-ins/common/tileit.c:419 plug-ins/pagecurl/pagecurl.c:530 +#: plug-ins/common/tileit.c:418 plug-ins/pagecurl/pagecurl.c:530 #, fuzzy msgid "_Horizontal" msgstr "Orizontal" #: plug-ins/common/blinds.c:260 plug-ins/common/ripple.c:540 -#: plug-ins/common/tileit.c:429 plug-ins/pagecurl/pagecurl.c:529 +#: plug-ins/common/tileit.c:428 plug-ins/pagecurl/pagecurl.c:529 #, fuzzy msgid "_Vertical" msgstr "Vertical" @@ -2297,7 +2297,7 @@ msgid "_Blur" msgstr "Claritate" -#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:383 +#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:432 #, fuzzy msgid "Blurring..." msgstr "Amestec..." @@ -2425,26 +2425,26 @@ msgid "Ca_rtoon..." msgstr "Rotire" -#: plug-ins/common/cartoon.c:228 plug-ins/common/dog.c:246 -#: plug-ins/common/gauss.c:430 plug-ins/common/neon.c:222 -#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:203 +#: plug-ins/common/cartoon.c:229 plug-ins/common/dog.c:247 +#: plug-ins/common/gauss.c:431 plug-ins/common/neon.c:221 +#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:204 #: plug-ins/common/softglow.c:220 plug-ins/gflare/gflare.c:972 #: plug-ins/sgi/sgi.c:528 plug-ins/xjt/xjt.c:1673 #, fuzzy msgid "Cannot operate on indexed color images." msgstr "Invert nu funcţionează pe imagini indexate." -#: plug-ins/common/cartoon.c:807 +#: plug-ins/common/cartoon.c:808 #, fuzzy msgid "Cartoon" msgstr "Rotire" -#: plug-ins/common/cartoon.c:837 plug-ins/common/photocopy.c:867 +#: plug-ins/common/cartoon.c:838 plug-ins/common/photocopy.c:867 #, fuzzy msgid "_Mask radius:" msgstr "Rază:" -#: plug-ins/common/cartoon.c:851 +#: plug-ins/common/cartoon.c:852 #, fuzzy msgid "_Percent black:" msgstr "procent" @@ -2622,30 +2622,30 @@ msgid "Colorify Custom Color" msgstr "" -#: plug-ins/common/colortoalpha.c:105 +#: plug-ins/common/colortoalpha.c:104 #, fuzzy msgid "Color to _Alpha..." msgstr "Balanţa de culori" -#: plug-ins/common/colortoalpha.c:183 +#: plug-ins/common/colortoalpha.c:181 msgid "Removing color..." msgstr "" -#: plug-ins/common/colortoalpha.c:364 +#: plug-ins/common/colortoalpha.c:377 msgid "Color to Alpha" msgstr "" -#: plug-ins/common/colortoalpha.c:389 plug-ins/common/mapcolor.c:424 +#: plug-ins/common/colortoalpha.c:402 plug-ins/common/mapcolor.c:424 #: plug-ins/gfli/gfli.c:835 plug-ins/gfli/gfli.c:898 msgid "From:" msgstr "" -#: plug-ins/common/colortoalpha.c:393 +#: plug-ins/common/colortoalpha.c:406 #, fuzzy msgid "Color to Alpha Color Picker" msgstr "/Unelte/Selector de culori" -#: plug-ins/common/colortoalpha.c:407 +#: plug-ins/common/colortoalpha.c:420 #, fuzzy msgid "to alpha" msgstr "Alfa" @@ -2989,27 +2989,27 @@ msgid "_Cubism..." msgstr "Personalizat" -#: plug-ins/common/cubism.c:267 +#: plug-ins/common/cubism.c:269 #, fuzzy msgid "Cubism" msgstr "Personalizat" -#: plug-ins/common/cubism.c:296 +#: plug-ins/common/cubism.c:298 #, fuzzy msgid "_Tile size:" msgstr "Dimensiune Eşantion:" -#: plug-ins/common/cubism.c:309 +#: plug-ins/common/cubism.c:311 #, fuzzy msgid "T_ile saturation:" msgstr "Saturare:" -#: plug-ins/common/cubism.c:320 +#: plug-ins/common/cubism.c:322 #, fuzzy msgid "_Use background color" msgstr "Fundal" -#: plug-ins/common/cubism.c:410 +#: plug-ins/common/cubism.c:412 #, fuzzy msgid "Cubistic Transformation..." msgstr "Transformare" @@ -3432,7 +3432,7 @@ msgid "Des_peckle..." msgstr "Perspectivă" -#: plug-ins/common/despeckle.c:420 plug-ins/common/despeckle.c:642 +#: plug-ins/common/despeckle.c:418 plug-ins/common/despeckle.c:640 #, fuzzy msgid "Despeckle" msgstr "Perspectivă" @@ -3440,40 +3440,40 @@ #. #. * Filter type controls... #. -#: plug-ins/common/despeckle.c:446 plug-ins/gimpressionist/orientmap.c:616 +#: plug-ins/common/despeckle.c:444 plug-ins/gimpressionist/orientmap.c:616 msgid "Type" msgstr "Tip" #. parameter settings -#: plug-ins/common/despeckle.c:456 +#: plug-ins/common/despeckle.c:454 #, fuzzy msgid "Median" msgstr "Mediu" -#: plug-ins/common/despeckle.c:462 +#: plug-ins/common/despeckle.c:460 #, fuzzy msgid "_Adaptive" msgstr "Inactiv" -#: plug-ins/common/despeckle.c:472 +#: plug-ins/common/despeckle.c:470 #, fuzzy msgid "R_ecursive" msgstr "Redimensionare" -#: plug-ins/common/despeckle.c:496 plug-ins/common/neon.c:728 +#: plug-ins/common/despeckle.c:494 plug-ins/common/neon.c:727 #: plug-ins/common/nlfilt.c:1083 plug-ins/common/nova.c:359 -#: plug-ins/common/unsharp.c:694 plug-ins/common/whirlpinch.c:588 +#: plug-ins/common/unsharp.c:665 plug-ins/common/whirlpinch.c:588 #: plug-ins/gflare/gflare.c:2686 plug-ins/imagemap/imap_circle.c:278 #, fuzzy msgid "_Radius:" msgstr "Rază:" -#: plug-ins/common/despeckle.c:512 +#: plug-ins/common/despeckle.c:510 #, fuzzy msgid "_Black level:" msgstr "Nivele de culoare:" -#: plug-ins/common/despeckle.c:528 +#: plug-ins/common/despeckle.c:526 #, fuzzy msgid "_White level:" msgstr "Nivele intrare:" @@ -3578,7 +3578,7 @@ msgid "_Displace..." msgstr "Scalez..." -#: plug-ins/common/displace.c:228 +#: plug-ins/common/displace.c:231 #, fuzzy msgid "Displacing..." msgstr "Scalez..." @@ -3622,32 +3622,32 @@ msgid "Difference of Gaussians..." msgstr "Alege directorul de gradienţi" -#: plug-ins/common/dog.c:222 plug-ins/common/dog.c:273 +#: plug-ins/common/dog.c:227 plug-ins/common/dog.c:274 #, fuzzy msgid "DoG Edge Detect" msgstr "Selecţie bordură" -#: plug-ins/common/dog.c:294 +#: plug-ins/common/dog.c:295 #, fuzzy msgid "Smoothing parameters" msgstr "/Copiază traseu" -#: plug-ins/common/dog.c:308 +#: plug-ins/common/dog.c:309 #, fuzzy msgid "_Radius 1:" msgstr "Rază:" -#: plug-ins/common/dog.c:312 +#: plug-ins/common/dog.c:313 #, fuzzy msgid "R_adius 2:" msgstr "Rază:" -#: plug-ins/common/dog.c:324 plug-ins/common/normalize.c:88 +#: plug-ins/common/dog.c:325 plug-ins/common/normalize.c:88 #, fuzzy msgid "_Normalize" msgstr "Normal" -#: plug-ins/common/dog.c:335 plug-ins/gimpressionist/paper.c:149 +#: plug-ins/common/dog.c:336 plug-ins/gimpressionist/paper.c:149 #, fuzzy msgid "_Invert" msgstr "Inversează" @@ -3711,7 +3711,7 @@ msgid "_Emboss..." msgstr "/Ajutor/Despre noi..." -#: plug-ins/common/emboss.c:374 plug-ins/common/emboss.c:439 +#: plug-ins/common/emboss.c:376 plug-ins/common/emboss.c:439 msgid "Emboss" msgstr "" @@ -3738,7 +3738,7 @@ msgid "En_grave..." msgstr "Scalez..." -#: plug-ins/common/engrave.c:181 +#: plug-ins/common/engrave.c:182 #, fuzzy msgid "Engraving..." msgstr "Scalez..." @@ -4210,44 +4210,44 @@ msgid "_Gaussian Blur..." msgstr "/Filtre/Claritate" -#: plug-ins/common/gauss.c:407 +#: plug-ins/common/gauss.c:413 #, fuzzy msgid "Gaussian Blur..." msgstr "/Filtre/Claritate" -#: plug-ins/common/gauss.c:460 +#: plug-ins/common/gauss.c:461 #, fuzzy msgid "Gaussian Blur" msgstr "Alege directorul de gradienţi" #. parameter settings -#: plug-ins/common/gauss.c:483 +#: plug-ins/common/gauss.c:484 #, fuzzy msgid "Blur Radius" msgstr "Rază:" -#: plug-ins/common/gauss.c:497 plug-ins/common/jigsaw.c:2456 -#: plug-ins/common/spread.c:378 +#: plug-ins/common/gauss.c:498 plug-ins/common/jigsaw.c:2456 +#: plug-ins/common/spread.c:379 #, fuzzy msgid "_Horizontal:" msgstr "Orizontal" -#: plug-ins/common/gauss.c:501 plug-ins/common/jigsaw.c:2473 -#: plug-ins/common/spread.c:382 +#: plug-ins/common/gauss.c:502 plug-ins/common/jigsaw.c:2473 +#: plug-ins/common/spread.c:383 #, fuzzy msgid "_Vertical:" msgstr "Vertical:" -#: plug-ins/common/gauss.c:524 +#: plug-ins/common/gauss.c:525 #, fuzzy msgid "Blur Method" msgstr "Tip curbă:" -#: plug-ins/common/gauss.c:528 +#: plug-ins/common/gauss.c:529 msgid "_IIR" msgstr "" -#: plug-ins/common/gauss.c:529 +#: plug-ins/common/gauss.c:530 msgid "_RLE" msgstr "" @@ -4557,20 +4557,20 @@ msgid "_Glass Tile..." msgstr "Umplere cu un model" -#: plug-ins/common/glasstile.c:208 +#: plug-ins/common/glasstile.c:209 msgid "Glass Tile..." msgstr "" -#: plug-ins/common/glasstile.c:251 +#: plug-ins/common/glasstile.c:250 msgid "Glass Tile" msgstr "" -#: plug-ins/common/glasstile.c:282 +#: plug-ins/common/glasstile.c:281 #, fuzzy msgid "Tile _width:" msgstr "Lăţime nouă:" -#: plug-ins/common/glasstile.c:296 plug-ins/common/mosaic.c:621 +#: plug-ins/common/glasstile.c:295 plug-ins/common/mosaic.c:621 #, fuzzy msgid "Tile _height:" msgstr "Înălţime:" @@ -5691,17 +5691,17 @@ msgid "_Neon..." msgstr "gidaj" -#: plug-ins/common/neon.c:204 +#: plug-ins/common/neon.c:207 #, fuzzy msgid "Neon..." msgstr "Deschide" -#: plug-ins/common/neon.c:698 +#: plug-ins/common/neon.c:697 #, fuzzy msgid "Neon Detection" msgstr "Selecţie bordură" -#: plug-ins/common/neon.c:743 plug-ins/common/unsharp.c:707 +#: plug-ins/common/neon.c:742 plug-ins/common/unsharp.c:678 #, fuzzy msgid "_Amount:" msgstr "Numar:" @@ -5890,7 +5890,7 @@ msgid "_Scatter RGB..." msgstr "Scalare" -#: plug-ins/common/noisify.c:284 +#: plug-ins/common/noisify.c:285 msgid "Adding Noise..." msgstr "" @@ -5970,7 +5970,7 @@ msgid "Oili_fy..." msgstr "Scalez..." -#: plug-ins/common/oilify.c:188 +#: plug-ins/common/oilify.c:189 #, fuzzy msgid "Oil Painting..." msgstr "Amestec..." @@ -6127,7 +6127,7 @@ msgid "Photocopy" msgstr "" -#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:513 +#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:509 #: plug-ins/common/softglow.c:687 #, fuzzy msgid "_Sharpness:" @@ -6836,7 +6836,7 @@ msgid "_Ripple..." msgstr "Scalez..." -#: plug-ins/common/ripple.c:219 +#: plug-ins/common/ripple.c:222 #, fuzzy msgid "Rippling..." msgstr "Scalez..." @@ -7099,22 +7099,22 @@ msgid "_Selective Gaussian Blur..." msgstr "Alege directorul de gradienţi" -#: plug-ins/common/sel_gauss.c:186 +#: plug-ins/common/sel_gauss.c:187 #, fuzzy msgid "Selective Gaussian Blur..." msgstr "Alege directorul de gradienţi" -#: plug-ins/common/sel_gauss.c:224 +#: plug-ins/common/sel_gauss.c:225 #, fuzzy msgid "Selective Gaussian Blur" msgstr "Alege directorul de gradienţi" -#: plug-ins/common/sel_gauss.c:256 +#: plug-ins/common/sel_gauss.c:257 #, fuzzy msgid "_Blur radius:" msgstr "Rază:" -#: plug-ins/common/sel_gauss.c:266 +#: plug-ins/common/sel_gauss.c:267 #, fuzzy msgid "_Max. delta:" msgstr "Adâncimea maximă:" @@ -7137,12 +7137,12 @@ #. #. * Let the user know what we're doing... #. -#: plug-ins/common/sharpen.c:315 +#: plug-ins/common/sharpen.c:311 #, fuzzy msgid "Sharpening..." msgstr "Decupez..." -#: plug-ins/common/sharpen.c:484 +#: plug-ins/common/sharpen.c:480 #, fuzzy msgid "Sharpen" msgstr "Decupez..." @@ -7152,7 +7152,7 @@ msgid "_Shift..." msgstr "Decupez..." -#: plug-ins/common/shift.c:191 +#: plug-ins/common/shift.c:194 #, fuzzy msgid "Shifting..." msgstr "Decupez..." @@ -7386,26 +7386,26 @@ msgid "_Sobel..." msgstr "Sursă" -#: plug-ins/common/sobel.c:226 +#: plug-ins/common/sobel.c:227 #, fuzzy msgid "Sobel Edge Detection" msgstr "Selecţie" -#: plug-ins/common/sobel.c:248 +#: plug-ins/common/sobel.c:249 #, fuzzy msgid "Sobel _Horizontally" msgstr "Orizontal" -#: plug-ins/common/sobel.c:260 +#: plug-ins/common/sobel.c:261 #, fuzzy msgid "Sobel _Vertically" msgstr "Vertical" -#: plug-ins/common/sobel.c:272 +#: plug-ins/common/sobel.c:273 msgid "_Keep sign of result (one direction only)" msgstr "" -#: plug-ins/common/sobel.c:358 +#: plug-ins/common/sobel.c:359 msgid "Sobel Edge Detecting..." msgstr "" @@ -7757,17 +7757,17 @@ msgid "Sp_read..." msgstr "Decupez..." -#: plug-ins/common/spread.c:179 +#: plug-ins/common/spread.c:182 #, fuzzy msgid "Spreading..." msgstr "Decupez..." -#: plug-ins/common/spread.c:345 +#: plug-ins/common/spread.c:346 #, fuzzy msgid "Spread" msgstr "Viteză:" -#: plug-ins/common/spread.c:363 +#: plug-ins/common/spread.c:364 msgid "Spread Amount" msgstr "" @@ -8076,7 +8076,8 @@ msgid "_Tile..." msgstr "/Fişier/Revenire..." -#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:321 +#. Set the tile cache size +#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:320 #, fuzzy msgid "Tiling..." msgstr "Scalez..." @@ -8101,49 +8102,49 @@ msgstr "Permite redimensionarea ferestrei" #. Get the preview image -#: plug-ins/common/tileit.c:364 +#: plug-ins/common/tileit.c:363 msgid "TileIt" msgstr "" #. Area for buttons etc #. Flip -#: plug-ins/common/tileit.c:407 plug-ins/ifscompose/ifscompose.c:628 +#: plug-ins/common/tileit.c:406 plug-ins/ifscompose/ifscompose.c:628 #, fuzzy msgid "Flip" msgstr "Răstoarnă unealta" -#: plug-ins/common/tileit.c:455 +#: plug-ins/common/tileit.c:454 #, fuzzy msgid "A_ll tiles" msgstr "Permite redimensionarea ferestrei" -#: plug-ins/common/tileit.c:469 +#: plug-ins/common/tileit.c:468 #, fuzzy msgid "Al_ternate tiles" msgstr "imagine" -#: plug-ins/common/tileit.c:483 +#: plug-ins/common/tileit.c:482 #, fuzzy msgid "_Explicit tile" msgstr "Decupat după imagine" -#: plug-ins/common/tileit.c:489 +#: plug-ins/common/tileit.c:488 #, fuzzy msgid "Ro_w:" msgstr "R:" -#: plug-ins/common/tileit.c:513 +#: plug-ins/common/tileit.c:512 #, fuzzy msgid "Col_umn:" msgstr "Numar:" -#: plug-ins/common/tileit.c:565 +#: plug-ins/common/tileit.c:564 #, fuzzy msgid "O_pacity:" msgstr "Opacitate:" #. Lower frame saying howmany segments -#: plug-ins/common/tileit.c:574 +#: plug-ins/common/tileit.c:573 #, fuzzy msgid "Number of Segments" msgstr "Oglindire segment" @@ -8298,16 +8299,16 @@ msgid "Unit Editor" msgstr "Editorul de gradienţi" -#: plug-ins/common/unsharp.c:149 +#: plug-ins/common/unsharp.c:143 msgid "_Unsharp Mask..." msgstr "" -#: plug-ins/common/unsharp.c:493 +#: plug-ins/common/unsharp.c:468 #, fuzzy msgid "Merging..." msgstr "Decupez..." -#: plug-ins/common/unsharp.c:664 +#: plug-ins/common/unsharp.c:635 msgid "Unsharp Mask" msgstr "" @@ -9459,20 +9460,20 @@ msgid "_Zoom:" msgstr "Marire" -#: plug-ins/gfig/gfig-bezier.c:452 +#: plug-ins/gfig/gfig-bezier.c:448 #, fuzzy msgid "Closed" msgstr "Închide" -#: plug-ins/gfig/gfig-bezier.c:457 +#: plug-ins/gfig/gfig-bezier.c:453 msgid "Close curve on completion" msgstr "" -#: plug-ins/gfig/gfig-bezier.c:462 +#: plug-ins/gfig/gfig-bezier.c:458 msgid "Show Line Frame" msgstr "" -#: plug-ins/gfig/gfig-bezier.c:467 +#: plug-ins/gfig/gfig-bezier.c:463 msgid "Draws lines between the control points. Only during curve creation" msgstr "" diff -uraN gimp-2.2.0/po-plug-ins/ru.gmo gimp-2.2.1/po-plug-ins/ru.gmo --- gimp-2.2.0/po-plug-ins/ru.gmo 2004-12-19 03:34:24.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/ru.gmo 2004-12-28 16:59:08.000000000 +0100 @@ -262,7 +262,7 @@ which has no alpha channel.Z scale (size)Z:ZealousCropping(tm)...ZoomZoom inZoom in (make image bigger)Zoom outZoom out (make image smaller)_3x3_Abbreviation:_Adaptive_Additive_Advanced_Alpha_Alpha:_Amount:_Amplitude:_Angle:_Animate_Antialiasing_Automatically convert_Azimuth:_Background_Base URL:_Bilinear_Black_Blacken_Blast_Blend_Blue_Blue:_Border:_Bottom:_Box_Brightness_Brightness:_Brush_Bump Map_Bumpmap_Copy_Deflate_Depth:_Derivative_Description:_Detail:_Digits:_Displacement:_Distorted_Dots_Edit_Effect Image:_Elevation:_Emboss_Encapsulated PostScript_Entire Image_Environment Map_Exponent:_Factor:_File_Filename:_Font:_Force_Fractals_Free_Ftp Site_Gamma:_General_Gopher_Gradient_Gray:_Green_Green:_Grey_Grow_Height_Height:_Help_Hex_Hidden_Holdness:_Horizontal_Horizontal:_Horz. Spacing:_Hue_ID:_Ideal_Ignore_Inch_Input SPI:_Insert_Interlacing (Adam7)_Invert_JPEG_JavaScript_Keep NCSA circles true_Kill_LZW_Laplace_Large staggered_Left_Left Start at:_Light_Linear_Lines_Link_Lower_MIME_Mapping_Material_Max (%):_Max Depth:_Midtones_Millimeter_Mirror_Misc Ops._Monochrome_Move_No. Across:_None_Normal_Pack Bits_Parameters_Period:_Phase:_Ping Pong_Plural:_Polygon_Presets_Preview_Preview!_Prompt for area info_Psychobilly_RGB_RLE compression_RLE encoded_Radial_Radius:_Randomize_Rays_Recipient:_Rectangle_Red:_Redo %s_Reflective_Remove_Rendering_Require default URL_Right_Right Border_Rotated_Saturation_Saturation:_Search:_Second Flares_Sender:_Settings_Sharpness:_Size_Size:_Smear_Snap-To Grid Enabled_Speed:_Spokes:_Square_Squares_Staggered_Strength:_Symbol:_Target frame name/ID: (optional - used for FRAMES only)_Thickness:_Threshold_Threshold:_Title:_Tools_Top Start at:_Top:_Transparent_URL to activate when this area is clicked: (required)_Undo %s_Update_Upper_Upper Border_Use double-sized grab handles_Uuencode_Value_Value:_Variation:_Vert. Spacing:_Vertical_Vertical:_View_Voronoi_Warp_Waterlevel:_Wavelength:_Web Site_White_Wide-striped_Width_Width:_Wind_Wrap_X Scale:_X:_Y Scale:_Y:_Yellow_Z:_Zoom_Zoom:`Default' is created.a _Single Windowafteralphablackblueblueness_cb470blueness_cb470fblueness_cb709blueness_cb709fcmcyancyan_ke-_mailgreenhueinvalid formatted GFlare file: %s k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftpixels/%aredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsin^p, steppedsin^p-based functionsome sort of error with the file extension or lack thereofthe _Whole Screenvaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: gimp.PLUGINS.ru Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-07-15 00:09+0400 Last-Translator: AnatolyA. Yakushin Language-Team: russian diff -uraN gimp-2.2.0/po-plug-ins/ru.po gimp-2.2.1/po-plug-ins/ru.po --- gimp-2.2.0/po-plug-ins/ru.po 2004-12-19 03:34:17.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/ru.po 2004-12-28 16:59:01.000000000 +0100 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: gimp.PLUGINS.ru\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-07-15 00:09+0400\n" "Last-Translator: AnatolyA. Yakushin \n" "Language-Team: russian \n" @@ -1000,7 +1000,7 @@ msgid "Antialiasing quality. Higher is better, but slower" msgstr "Качество сглаживание. Более высокое лучше, но медленнее" -#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:720 +#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:691 #: plug-ins/common/wind.c:993 plug-ins/imagemap/imap_preferences.c:539 msgid "_Threshold:" msgstr "Порог:" @@ -2214,12 +2214,12 @@ msgstr "Ориентация" #: plug-ins/common/blinds.c:259 plug-ins/common/ripple.c:539 -#: plug-ins/common/tileit.c:419 plug-ins/pagecurl/pagecurl.c:530 +#: plug-ins/common/tileit.c:418 plug-ins/pagecurl/pagecurl.c:530 msgid "_Horizontal" msgstr "Горизонтальное" #: plug-ins/common/blinds.c:260 plug-ins/common/ripple.c:540 -#: plug-ins/common/tileit.c:429 plug-ins/pagecurl/pagecurl.c:529 +#: plug-ins/common/tileit.c:428 plug-ins/pagecurl/pagecurl.c:529 msgid "_Vertical" msgstr "Вертикальное" @@ -2242,7 +2242,7 @@ msgid "_Blur" msgstr "Размывание" -#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:383 +#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:432 msgid "Blurring..." msgstr "Размывание..." @@ -2363,25 +2363,25 @@ msgid "Ca_rtoon..." msgstr "Заголовок" -#: plug-ins/common/cartoon.c:228 plug-ins/common/dog.c:246 -#: plug-ins/common/gauss.c:430 plug-ins/common/neon.c:222 -#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:203 +#: plug-ins/common/cartoon.c:229 plug-ins/common/dog.c:247 +#: plug-ins/common/gauss.c:431 plug-ins/common/neon.c:221 +#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:204 #: plug-ins/common/softglow.c:220 plug-ins/gflare/gflare.c:972 #: plug-ins/sgi/sgi.c:528 plug-ins/xjt/xjt.c:1673 msgid "Cannot operate on indexed color images." msgstr "Невозможно использовать для работы с индексированными изображениями" -#: plug-ins/common/cartoon.c:807 +#: plug-ins/common/cartoon.c:808 #, fuzzy msgid "Cartoon" msgstr "Заголовок" -#: plug-ins/common/cartoon.c:837 plug-ins/common/photocopy.c:867 +#: plug-ins/common/cartoon.c:838 plug-ins/common/photocopy.c:867 #, fuzzy msgid "_Mask radius:" msgstr "Радиус размывания:" -#: plug-ins/common/cartoon.c:851 +#: plug-ins/common/cartoon.c:852 #, fuzzy msgid "_Percent black:" msgstr "Процент" @@ -2547,29 +2547,29 @@ msgid "Colorify Custom Color" msgstr "Окрашивание выбраным цветом" -#: plug-ins/common/colortoalpha.c:105 +#: plug-ins/common/colortoalpha.c:104 #, fuzzy msgid "Color to _Alpha..." msgstr "Цвет -> Альфа-канал" -#: plug-ins/common/colortoalpha.c:183 +#: plug-ins/common/colortoalpha.c:181 msgid "Removing color..." msgstr "Удаление цвета..." -#: plug-ins/common/colortoalpha.c:364 +#: plug-ins/common/colortoalpha.c:377 msgid "Color to Alpha" msgstr "Цвет -> Альфа-канал" -#: plug-ins/common/colortoalpha.c:389 plug-ins/common/mapcolor.c:424 +#: plug-ins/common/colortoalpha.c:402 plug-ins/common/mapcolor.c:424 #: plug-ins/gfli/gfli.c:835 plug-ins/gfli/gfli.c:898 msgid "From:" msgstr "Из:" -#: plug-ins/common/colortoalpha.c:393 +#: plug-ins/common/colortoalpha.c:406 msgid "Color to Alpha Color Picker" msgstr "Выбор цвета в альфа-канале" -#: plug-ins/common/colortoalpha.c:407 +#: plug-ins/common/colortoalpha.c:420 #, fuzzy msgid "to alpha" msgstr "в альфа-канал" @@ -2893,26 +2893,26 @@ msgid "_Cubism..." msgstr "Кубизм" -#: plug-ins/common/cubism.c:267 +#: plug-ins/common/cubism.c:269 msgid "Cubism" msgstr "Кубизм" -#: plug-ins/common/cubism.c:296 +#: plug-ins/common/cubism.c:298 #, fuzzy msgid "_Tile size:" msgstr "Размер элемента:" -#: plug-ins/common/cubism.c:309 +#: plug-ins/common/cubism.c:311 #, fuzzy msgid "T_ile saturation:" msgstr "Насыщенность элемента:" -#: plug-ins/common/cubism.c:320 +#: plug-ins/common/cubism.c:322 #, fuzzy msgid "_Use background color" msgstr "Использовать цвет фона" -#: plug-ins/common/cubism.c:410 +#: plug-ins/common/cubism.c:412 #, fuzzy msgid "Cubistic Transformation..." msgstr "Кубистическое преобразование" @@ -3297,44 +3297,44 @@ msgid "Des_peckle..." msgstr "Удаление пятен" -#: plug-ins/common/despeckle.c:420 plug-ins/common/despeckle.c:642 +#: plug-ins/common/despeckle.c:418 plug-ins/common/despeckle.c:640 msgid "Despeckle" msgstr "Удаление пятен" #. #. * Filter type controls... #. -#: plug-ins/common/despeckle.c:446 plug-ins/gimpressionist/orientmap.c:616 +#: plug-ins/common/despeckle.c:444 plug-ins/gimpressionist/orientmap.c:616 msgid "Type" msgstr "Тип" #. parameter settings -#: plug-ins/common/despeckle.c:456 +#: plug-ins/common/despeckle.c:454 #, fuzzy msgid "Median" msgstr "Радианы" -#: plug-ins/common/despeckle.c:462 +#: plug-ins/common/despeckle.c:460 msgid "_Adaptive" msgstr "Адаптивное" -#: plug-ins/common/despeckle.c:472 +#: plug-ins/common/despeckle.c:470 msgid "R_ecursive" msgstr "Рекурсивное" -#: plug-ins/common/despeckle.c:496 plug-ins/common/neon.c:728 +#: plug-ins/common/despeckle.c:494 plug-ins/common/neon.c:727 #: plug-ins/common/nlfilt.c:1083 plug-ins/common/nova.c:359 -#: plug-ins/common/unsharp.c:694 plug-ins/common/whirlpinch.c:588 +#: plug-ins/common/unsharp.c:665 plug-ins/common/whirlpinch.c:588 #: plug-ins/gflare/gflare.c:2686 plug-ins/imagemap/imap_circle.c:278 msgid "_Radius:" msgstr "Радиус:" -#: plug-ins/common/despeckle.c:512 +#: plug-ins/common/despeckle.c:510 #, fuzzy msgid "_Black level:" msgstr "Уровень черного:" -#: plug-ins/common/despeckle.c:528 +#: plug-ins/common/despeckle.c:526 #, fuzzy msgid "_White level:" msgstr "Уровень белого:" @@ -3431,7 +3431,7 @@ msgid "_Displace..." msgstr "Замещение..." -#: plug-ins/common/displace.c:228 +#: plug-ins/common/displace.c:231 msgid "Displacing..." msgstr "Замещение..." @@ -3471,32 +3471,32 @@ msgid "Difference of Gaussians..." msgstr "Выборочное Гауссово размывание" -#: plug-ins/common/dog.c:222 plug-ins/common/dog.c:273 +#: plug-ins/common/dog.c:227 plug-ins/common/dog.c:274 #, fuzzy msgid "DoG Edge Detect" msgstr "Выделение края" -#: plug-ins/common/dog.c:294 +#: plug-ins/common/dog.c:295 #, fuzzy msgid "Smoothing parameters" msgstr "Скопировать параметры" -#: plug-ins/common/dog.c:308 +#: plug-ins/common/dog.c:309 #, fuzzy msgid "_Radius 1:" msgstr "Радиус:" -#: plug-ins/common/dog.c:312 +#: plug-ins/common/dog.c:313 #, fuzzy msgid "R_adius 2:" msgstr "Радиус:" -#: plug-ins/common/dog.c:324 plug-ins/common/normalize.c:88 +#: plug-ins/common/dog.c:325 plug-ins/common/normalize.c:88 #, fuzzy msgid "_Normalize" msgstr "Нормальное" -#: plug-ins/common/dog.c:335 plug-ins/gimpressionist/paper.c:149 +#: plug-ins/common/dog.c:336 plug-ins/gimpressionist/paper.c:149 msgid "_Invert" msgstr "Инвертировать" @@ -3557,7 +3557,7 @@ msgid "_Emboss..." msgstr "Барельеф" -#: plug-ins/common/emboss.c:374 plug-ins/common/emboss.c:439 +#: plug-ins/common/emboss.c:376 plug-ins/common/emboss.c:439 msgid "Emboss" msgstr "Барельеф" @@ -3582,7 +3582,7 @@ msgid "En_grave..." msgstr "Гравирование..." -#: plug-ins/common/engrave.c:181 +#: plug-ins/common/engrave.c:182 msgid "Engraving..." msgstr "Гравирование..." @@ -4010,41 +4010,41 @@ msgid "_Gaussian Blur..." msgstr "RLE Гауссово размывание" -#: plug-ins/common/gauss.c:407 +#: plug-ins/common/gauss.c:413 #, fuzzy msgid "Gaussian Blur..." msgstr "RLE Гауссово размывание" -#: plug-ins/common/gauss.c:460 +#: plug-ins/common/gauss.c:461 #, fuzzy msgid "Gaussian Blur" msgstr "IIR Гауссово размывание" #. parameter settings -#: plug-ins/common/gauss.c:483 +#: plug-ins/common/gauss.c:484 msgid "Blur Radius" msgstr "Радиус размывания" -#: plug-ins/common/gauss.c:497 plug-ins/common/jigsaw.c:2456 -#: plug-ins/common/spread.c:378 +#: plug-ins/common/gauss.c:498 plug-ins/common/jigsaw.c:2456 +#: plug-ins/common/spread.c:379 msgid "_Horizontal:" msgstr "Горизонтально:" -#: plug-ins/common/gauss.c:501 plug-ins/common/jigsaw.c:2473 -#: plug-ins/common/spread.c:382 +#: plug-ins/common/gauss.c:502 plug-ins/common/jigsaw.c:2473 +#: plug-ins/common/spread.c:383 msgid "_Vertical:" msgstr "Вертикально:" -#: plug-ins/common/gauss.c:524 +#: plug-ins/common/gauss.c:525 #, fuzzy msgid "Blur Method" msgstr "Тип размывания" -#: plug-ins/common/gauss.c:528 +#: plug-ins/common/gauss.c:529 msgid "_IIR" msgstr "" -#: plug-ins/common/gauss.c:529 +#: plug-ins/common/gauss.c:530 #, fuzzy msgid "_RLE" msgstr "RLE" @@ -4371,20 +4371,20 @@ msgid "_Glass Tile..." msgstr "Создание стеклянных блоков..." -#: plug-ins/common/glasstile.c:208 +#: plug-ins/common/glasstile.c:209 msgid "Glass Tile..." msgstr "Создание стеклянных блоков..." -#: plug-ins/common/glasstile.c:251 +#: plug-ins/common/glasstile.c:250 msgid "Glass Tile" msgstr "Стеклянные блоки" -#: plug-ins/common/glasstile.c:282 +#: plug-ins/common/glasstile.c:281 #, fuzzy msgid "Tile _width:" msgstr "Ширина блока:" -#: plug-ins/common/glasstile.c:296 plug-ins/common/mosaic.c:621 +#: plug-ins/common/glasstile.c:295 plug-ins/common/mosaic.c:621 #, fuzzy msgid "Tile _height:" msgstr "Высота блока:" @@ -5449,17 +5449,17 @@ msgid "_Neon..." msgstr "Видео/RGB..." -#: plug-ins/common/neon.c:204 +#: plug-ins/common/neon.c:207 #, fuzzy msgid "Neon..." msgstr "Газетная бумага..." -#: plug-ins/common/neon.c:698 +#: plug-ins/common/neon.c:697 #, fuzzy msgid "Neon Detection" msgstr "Выделение края" -#: plug-ins/common/neon.c:743 plug-ins/common/unsharp.c:707 +#: plug-ins/common/neon.c:742 plug-ins/common/unsharp.c:678 msgid "_Amount:" msgstr "Величина:" @@ -5629,7 +5629,7 @@ msgid "_Scatter RGB..." msgstr "Рассеивание HSV..." -#: plug-ins/common/noisify.c:284 +#: plug-ins/common/noisify.c:285 msgid "Adding Noise..." msgstr "Добавление шума..." @@ -5705,7 +5705,7 @@ msgid "Oili_fy..." msgstr "Масляная краска" -#: plug-ins/common/oilify.c:188 +#: plug-ins/common/oilify.c:189 msgid "Oil Painting..." msgstr "Рисование маслом..." @@ -5854,7 +5854,7 @@ msgid "Photocopy" msgstr "Фотография" -#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:513 +#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:509 #: plug-ins/common/softglow.c:687 msgid "_Sharpness:" msgstr "Резкость:" @@ -6542,7 +6542,7 @@ msgid "_Ripple..." msgstr "Создание ряби..." -#: plug-ins/common/ripple.c:219 +#: plug-ins/common/ripple.c:222 msgid "Rippling..." msgstr "Создание ряби..." @@ -6777,20 +6777,20 @@ msgid "_Selective Gaussian Blur..." msgstr "Выборочное Гауссово размывание" -#: plug-ins/common/sel_gauss.c:186 +#: plug-ins/common/sel_gauss.c:187 msgid "Selective Gaussian Blur..." msgstr "Выборочное Гауссово размывание" -#: plug-ins/common/sel_gauss.c:224 +#: plug-ins/common/sel_gauss.c:225 msgid "Selective Gaussian Blur" msgstr "Выборочное Гауссово размывание" -#: plug-ins/common/sel_gauss.c:256 +#: plug-ins/common/sel_gauss.c:257 #, fuzzy msgid "_Blur radius:" msgstr "Радиус размывания:" -#: plug-ins/common/sel_gauss.c:266 +#: plug-ins/common/sel_gauss.c:267 #, fuzzy msgid "_Max. delta:" msgstr "Макс. дельта:" @@ -6812,11 +6812,11 @@ #. #. * Let the user know what we're doing... #. -#: plug-ins/common/sharpen.c:315 +#: plug-ins/common/sharpen.c:311 msgid "Sharpening..." msgstr "Повышение резкости..." -#: plug-ins/common/sharpen.c:484 +#: plug-ins/common/sharpen.c:480 msgid "Sharpen" msgstr "Повышение резкости" @@ -6825,7 +6825,7 @@ msgid "_Shift..." msgstr "Выполняется сдвиг..." -#: plug-ins/common/shift.c:191 +#: plug-ins/common/shift.c:194 msgid "Shifting..." msgstr "Выполняется сдвиг..." @@ -7036,24 +7036,24 @@ msgid "_Sobel..." msgstr "Собел" -#: plug-ins/common/sobel.c:226 +#: plug-ins/common/sobel.c:227 msgid "Sobel Edge Detection" msgstr "Выделение края по Sobel" -#: plug-ins/common/sobel.c:248 +#: plug-ins/common/sobel.c:249 msgid "Sobel _Horizontally" msgstr "Горизонтальное размывание по Sobel" -#: plug-ins/common/sobel.c:260 +#: plug-ins/common/sobel.c:261 msgid "Sobel _Vertically" msgstr "Вертикальное размывание по Sobel" -#: plug-ins/common/sobel.c:272 +#: plug-ins/common/sobel.c:273 #, fuzzy msgid "_Keep sign of result (one direction only)" msgstr "Сохранять знак результата (только одно направление)" -#: plug-ins/common/sobel.c:358 +#: plug-ins/common/sobel.c:359 msgid "Sobel Edge Detecting..." msgstr "Выделение края по Sobel..." @@ -7377,15 +7377,15 @@ msgid "Sp_read..." msgstr "Рассеивание..." -#: plug-ins/common/spread.c:179 +#: plug-ins/common/spread.c:182 msgid "Spreading..." msgstr "Рассеивание..." -#: plug-ins/common/spread.c:345 +#: plug-ins/common/spread.c:346 msgid "Spread" msgstr "Рассеивание" -#: plug-ins/common/spread.c:363 +#: plug-ins/common/spread.c:364 msgid "Spread Amount" msgstr "Степень рассеивания" @@ -7687,7 +7687,8 @@ msgid "_Tile..." msgstr "Рассечение..." -#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:321 +#. Set the tile cache size +#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:320 msgid "Tiling..." msgstr "Укладка черепицы..." @@ -7709,45 +7710,45 @@ msgstr "всем секторам" #. Get the preview image -#: plug-ins/common/tileit.c:364 +#: plug-ins/common/tileit.c:363 msgid "TileIt" msgstr "Нарезать" #. Area for buttons etc #. Flip -#: plug-ins/common/tileit.c:407 plug-ins/ifscompose/ifscompose.c:628 +#: plug-ins/common/tileit.c:406 plug-ins/ifscompose/ifscompose.c:628 msgid "Flip" msgstr "Отражение" -#: plug-ins/common/tileit.c:455 +#: plug-ins/common/tileit.c:454 #, fuzzy msgid "A_ll tiles" msgstr "всем секторам" -#: plug-ins/common/tileit.c:469 +#: plug-ins/common/tileit.c:468 #, fuzzy msgid "Al_ternate tiles" msgstr "каждому второму сектору" -#: plug-ins/common/tileit.c:483 +#: plug-ins/common/tileit.c:482 #, fuzzy msgid "_Explicit tile" msgstr "указанному сектору" -#: plug-ins/common/tileit.c:489 +#: plug-ins/common/tileit.c:488 msgid "Ro_w:" msgstr "Строка:" -#: plug-ins/common/tileit.c:513 +#: plug-ins/common/tileit.c:512 msgid "Col_umn:" msgstr "Столбец:" -#: plug-ins/common/tileit.c:565 +#: plug-ins/common/tileit.c:564 msgid "O_pacity:" msgstr "Непрозрачность:" #. Lower frame saying howmany segments -#: plug-ins/common/tileit.c:574 +#: plug-ins/common/tileit.c:573 #, fuzzy msgid "Number of Segments" msgstr "Число сегментов:" @@ -7898,16 +7899,16 @@ msgid "Unit Editor" msgstr "Редактор единиц" -#: plug-ins/common/unsharp.c:149 +#: plug-ins/common/unsharp.c:143 #, fuzzy msgid "_Unsharp Mask..." msgstr "Нерезкая маска" -#: plug-ins/common/unsharp.c:493 +#: plug-ins/common/unsharp.c:468 msgid "Merging..." msgstr "Слияние..." -#: plug-ins/common/unsharp.c:664 +#: plug-ins/common/unsharp.c:635 msgid "Unsharp Mask" msgstr "Нерезкая маска" @@ -9023,19 +9024,19 @@ msgid "_Zoom:" msgstr "Масштаб:" -#: plug-ins/gfig/gfig-bezier.c:452 +#: plug-ins/gfig/gfig-bezier.c:448 msgid "Closed" msgstr "Закрывать" -#: plug-ins/gfig/gfig-bezier.c:457 +#: plug-ins/gfig/gfig-bezier.c:453 msgid "Close curve on completion" msgstr "Замыкать кривую при завершении" -#: plug-ins/gfig/gfig-bezier.c:462 +#: plug-ins/gfig/gfig-bezier.c:458 msgid "Show Line Frame" msgstr "Показать кадр линии" -#: plug-ins/gfig/gfig-bezier.c:467 +#: plug-ins/gfig/gfig-bezier.c:463 msgid "Draws lines between the control points. Only during curve creation" msgstr "" "Нарисовать линию между контрольными точками. Только при создании кривой" diff -uraN gimp-2.2.0/po-plug-ins/sk.gmo gimp-2.2.1/po-plug-ins/sk.gmo --- gimp-2.2.0/po-plug-ins/sk.gmo 2004-12-19 03:34:25.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/sk.gmo 2004-12-28 16:59:08.000000000 +0100 @@ -471,7 +471,7 @@ cmcyancyan_ke-_mailgreengzip archivehueinvalid formatted GFlare file: %s k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftpixels/%aredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsin^p, steppedsin^p-based functionsome sort of error with the file extension or lack thereofthe _Whole Screento alphavaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: gimp-plug-ins.HEAD Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-11-27 10:28Stedn Evropa (bn as) Last-Translator: Zdenko Podobný Language-Team: Slovak <> diff -uraN gimp-2.2.0/po-plug-ins/sk.po gimp-2.2.1/po-plug-ins/sk.po --- gimp-2.2.0/po-plug-ins/sk.po 2004-12-19 03:34:18.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/sk.po 2004-12-28 16:59:01.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: gimp-plug-ins.HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-11-27 10:28Stedn Evropa (bn as)\n" "Last-Translator: Zdenko Podobný \n" "Language-Team: Slovak <>\n" @@ -955,7 +955,7 @@ msgid "Antialiasing quality. Higher is better, but slower" msgstr "Kvalita vyhladzovania. Vyššia je lepšia, ale je pomalšia" -#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:720 +#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:691 #: plug-ins/common/wind.c:993 plug-ins/imagemap/imap_preferences.c:539 msgid "_Threshold:" msgstr "Pra_h:" @@ -2076,12 +2076,12 @@ msgstr "Orientácia" #: plug-ins/common/blinds.c:259 plug-ins/common/ripple.c:539 -#: plug-ins/common/tileit.c:419 plug-ins/pagecurl/pagecurl.c:530 +#: plug-ins/common/tileit.c:418 plug-ins/pagecurl/pagecurl.c:530 msgid "_Horizontal" msgstr "_Vodorovne" #: plug-ins/common/blinds.c:260 plug-ins/common/ripple.c:540 -#: plug-ins/common/tileit.c:429 plug-ins/pagecurl/pagecurl.c:529 +#: plug-ins/common/tileit.c:428 plug-ins/pagecurl/pagecurl.c:529 msgid "_Vertical" msgstr "_Zvislo" @@ -2102,7 +2102,7 @@ msgid "_Blur" msgstr "_Rozostrenie" -#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:383 +#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:432 msgid "Blurring..." msgstr "Rozmazávam..." @@ -2214,23 +2214,23 @@ msgid "Ca_rtoon..." msgstr "Kraikatúra" -#: plug-ins/common/cartoon.c:228 plug-ins/common/dog.c:246 -#: plug-ins/common/gauss.c:430 plug-ins/common/neon.c:222 -#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:203 +#: plug-ins/common/cartoon.c:229 plug-ins/common/dog.c:247 +#: plug-ins/common/gauss.c:431 plug-ins/common/neon.c:221 +#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:204 #: plug-ins/common/softglow.c:220 plug-ins/gflare/gflare.c:972 #: plug-ins/sgi/sgi.c:528 plug-ins/xjt/xjt.c:1673 msgid "Cannot operate on indexed color images." msgstr "Nie je možné pracovať na obrázkoch s indexovanými farbami." -#: plug-ins/common/cartoon.c:807 +#: plug-ins/common/cartoon.c:808 msgid "Cartoon" msgstr "Kraikatúra" -#: plug-ins/common/cartoon.c:837 plug-ins/common/photocopy.c:867 +#: plug-ins/common/cartoon.c:838 plug-ins/common/photocopy.c:867 msgid "_Mask radius:" msgstr "_Maska polomeru:" -#: plug-ins/common/cartoon.c:851 +#: plug-ins/common/cartoon.c:852 msgid "_Percent black:" msgstr "_Percentá čiernej:" @@ -2388,28 +2388,28 @@ msgid "Colorify Custom Color" msgstr "Zafarbenie vlastnou farbou" -#: plug-ins/common/colortoalpha.c:105 +#: plug-ins/common/colortoalpha.c:104 msgid "Color to _Alpha..." msgstr "Farba do _alfy..." -#: plug-ins/common/colortoalpha.c:183 +#: plug-ins/common/colortoalpha.c:181 msgid "Removing color..." msgstr "Odstraňujem farbu..." -#: plug-ins/common/colortoalpha.c:364 +#: plug-ins/common/colortoalpha.c:377 msgid "Color to Alpha" msgstr "Farby do alfy" -#: plug-ins/common/colortoalpha.c:389 plug-ins/common/mapcolor.c:424 +#: plug-ins/common/colortoalpha.c:402 plug-ins/common/mapcolor.c:424 #: plug-ins/gfli/gfli.c:835 plug-ins/gfli/gfli.c:898 msgid "From:" msgstr "Od:" -#: plug-ins/common/colortoalpha.c:393 +#: plug-ins/common/colortoalpha.c:406 msgid "Color to Alpha Color Picker" msgstr "Farebná pipeta farby do alfy" -#: plug-ins/common/colortoalpha.c:407 +#: plug-ins/common/colortoalpha.c:420 msgid "to alpha" msgstr "do alfy" @@ -2721,23 +2721,23 @@ msgid "_Cubism..." msgstr "_Kubizmus..." -#: plug-ins/common/cubism.c:267 +#: plug-ins/common/cubism.c:269 msgid "Cubism" msgstr "Kubizmus" -#: plug-ins/common/cubism.c:296 +#: plug-ins/common/cubism.c:298 msgid "_Tile size:" msgstr "Veľkos_ť dlaždice:" -#: plug-ins/common/cubism.c:309 +#: plug-ins/common/cubism.c:311 msgid "T_ile saturation:" msgstr "Sýtosť dlažd_ice:" -#: plug-ins/common/cubism.c:320 +#: plug-ins/common/cubism.c:322 msgid "_Use background color" msgstr "_Použiť farbu pozadia" -#: plug-ins/common/cubism.c:410 +#: plug-ins/common/cubism.c:412 msgid "Cubistic Transformation..." msgstr "Kubistická transformácia..." @@ -3104,42 +3104,42 @@ msgid "Des_peckle..." msgstr "Vy_čistiť..." -#: plug-ins/common/despeckle.c:420 plug-ins/common/despeckle.c:642 +#: plug-ins/common/despeckle.c:418 plug-ins/common/despeckle.c:640 msgid "Despeckle" msgstr "Vyčistenie" #. #. * Filter type controls... #. -#: plug-ins/common/despeckle.c:446 plug-ins/gimpressionist/orientmap.c:616 +#: plug-ins/common/despeckle.c:444 plug-ins/gimpressionist/orientmap.c:616 msgid "Type" msgstr "Typ" #. parameter settings -#: plug-ins/common/despeckle.c:456 +#: plug-ins/common/despeckle.c:454 msgid "Median" msgstr "Medián" -#: plug-ins/common/despeckle.c:462 +#: plug-ins/common/despeckle.c:460 msgid "_Adaptive" msgstr "_Adaptívne" -#: plug-ins/common/despeckle.c:472 +#: plug-ins/common/despeckle.c:470 msgid "R_ecursive" msgstr "R_ekurzívne" -#: plug-ins/common/despeckle.c:496 plug-ins/common/neon.c:728 +#: plug-ins/common/despeckle.c:494 plug-ins/common/neon.c:727 #: plug-ins/common/nlfilt.c:1083 plug-ins/common/nova.c:359 -#: plug-ins/common/unsharp.c:694 plug-ins/common/whirlpinch.c:588 +#: plug-ins/common/unsharp.c:665 plug-ins/common/whirlpinch.c:588 #: plug-ins/gflare/gflare.c:2686 plug-ins/imagemap/imap_circle.c:278 msgid "_Radius:" msgstr "Polome_r:" -#: plug-ins/common/despeckle.c:512 +#: plug-ins/common/despeckle.c:510 msgid "_Black level:" msgstr "Úro_veň čiernej:" -#: plug-ins/common/despeckle.c:528 +#: plug-ins/common/despeckle.c:526 msgid "_White level:" msgstr "Úroveň _bielej:" @@ -3225,7 +3225,7 @@ msgid "_Displace..." msgstr "_Vytlačiť..." -#: plug-ins/common/displace.c:228 +#: plug-ins/common/displace.c:231 msgid "Displacing..." msgstr "Vytláča sa...." @@ -3262,27 +3262,27 @@ msgid "Difference of Gaussians..." msgstr "Gaussov rozdiel..." -#: plug-ins/common/dog.c:222 plug-ins/common/dog.c:273 +#: plug-ins/common/dog.c:227 plug-ins/common/dog.c:274 msgid "DoG Edge Detect" msgstr "DoG detekcia hrán" -#: plug-ins/common/dog.c:294 +#: plug-ins/common/dog.c:295 msgid "Smoothing parameters" msgstr "Paramete vyhladenia" -#: plug-ins/common/dog.c:308 +#: plug-ins/common/dog.c:309 msgid "_Radius 1:" msgstr "Polome_r 1:" -#: plug-ins/common/dog.c:312 +#: plug-ins/common/dog.c:313 msgid "R_adius 2:" msgstr "_Polomer 2:" -#: plug-ins/common/dog.c:324 plug-ins/common/normalize.c:88 +#: plug-ins/common/dog.c:325 plug-ins/common/normalize.c:88 msgid "_Normalize" msgstr "_Normalizovať" -#: plug-ins/common/dog.c:335 plug-ins/gimpressionist/paper.c:149 +#: plug-ins/common/dog.c:336 plug-ins/gimpressionist/paper.c:149 msgid "_Invert" msgstr "_Invertovať" @@ -3334,7 +3334,7 @@ msgid "_Emboss..." msgstr "R_eliéf..." -#: plug-ins/common/emboss.c:374 plug-ins/common/emboss.c:439 +#: plug-ins/common/emboss.c:376 plug-ins/common/emboss.c:439 msgid "Emboss" msgstr "Reliéf" @@ -3358,7 +3358,7 @@ msgid "En_grave..." msgstr "Vy_ryť..." -#: plug-ins/common/engrave.c:181 +#: plug-ins/common/engrave.c:182 msgid "Engraving..." msgstr "Vytvára sa rytina..." @@ -3761,38 +3761,38 @@ msgid "_Gaussian Blur..." msgstr "_Gaussovo rozostrenie..." -#: plug-ins/common/gauss.c:407 +#: plug-ins/common/gauss.c:413 msgid "Gaussian Blur..." msgstr "Gaussovo rozostrenie..." -#: plug-ins/common/gauss.c:460 +#: plug-ins/common/gauss.c:461 msgid "Gaussian Blur" msgstr "Gaussovo rozostrenie" #. parameter settings -#: plug-ins/common/gauss.c:483 +#: plug-ins/common/gauss.c:484 msgid "Blur Radius" msgstr "Polomer rozostrenia" -#: plug-ins/common/gauss.c:497 plug-ins/common/jigsaw.c:2456 -#: plug-ins/common/spread.c:378 +#: plug-ins/common/gauss.c:498 plug-ins/common/jigsaw.c:2456 +#: plug-ins/common/spread.c:379 msgid "_Horizontal:" msgstr "_Vodorovné:" -#: plug-ins/common/gauss.c:501 plug-ins/common/jigsaw.c:2473 -#: plug-ins/common/spread.c:382 +#: plug-ins/common/gauss.c:502 plug-ins/common/jigsaw.c:2473 +#: plug-ins/common/spread.c:383 msgid "_Vertical:" msgstr "_Zvislé:" -#: plug-ins/common/gauss.c:524 +#: plug-ins/common/gauss.c:525 msgid "Blur Method" msgstr "Metoda rozostrenia" -#: plug-ins/common/gauss.c:528 +#: plug-ins/common/gauss.c:529 msgid "_IIR" msgstr "_IIR" -#: plug-ins/common/gauss.c:529 +#: plug-ins/common/gauss.c:530 msgid "_RLE" msgstr "_RLE" @@ -4097,19 +4097,19 @@ msgid "_Glass Tile..." msgstr "_Sklenená dlaždica..." -#: plug-ins/common/glasstile.c:208 +#: plug-ins/common/glasstile.c:209 msgid "Glass Tile..." msgstr "Sklenená dlaždica..." -#: plug-ins/common/glasstile.c:251 +#: plug-ins/common/glasstile.c:250 msgid "Glass Tile" msgstr "Sklenená dlaždica" -#: plug-ins/common/glasstile.c:282 +#: plug-ins/common/glasstile.c:281 msgid "Tile _width:" msgstr "Šír_ka dlaždice:" -#: plug-ins/common/glasstile.c:296 plug-ins/common/mosaic.c:621 +#: plug-ins/common/glasstile.c:295 plug-ins/common/mosaic.c:621 msgid "Tile _height:" msgstr "_Výška dlaždice:" @@ -5094,15 +5094,15 @@ msgid "_Neon..." msgstr "_Neón..." -#: plug-ins/common/neon.c:204 +#: plug-ins/common/neon.c:207 msgid "Neon..." msgstr "Neón..." -#: plug-ins/common/neon.c:698 +#: plug-ins/common/neon.c:697 msgid "Neon Detection" msgstr "Detekcia neónu" -#: plug-ins/common/neon.c:743 plug-ins/common/unsharp.c:707 +#: plug-ins/common/neon.c:742 plug-ins/common/unsharp.c:678 msgid "_Amount:" msgstr "Mier_a:" @@ -5261,7 +5261,7 @@ msgid "_Scatter RGB..." msgstr "Ro_zptýlenie RGB..." -#: plug-ins/common/noisify.c:284 +#: plug-ins/common/noisify.c:285 msgid "Adding Noise..." msgstr "Pridáva sa šum..." @@ -5330,7 +5330,7 @@ msgid "Oili_fy..." msgstr "_Olejomaľba" -#: plug-ins/common/oilify.c:188 +#: plug-ins/common/oilify.c:189 msgid "Oil Painting..." msgstr "Kreslenie olejomaľbou" @@ -5465,7 +5465,7 @@ msgid "Photocopy" msgstr "Fotokópia" -#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:513 +#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:509 #: plug-ins/common/softglow.c:687 msgid "_Sharpness:" msgstr "O_strosť:" @@ -6100,7 +6100,7 @@ msgid "_Ripple..." msgstr "_Vlnenie..." -#: plug-ins/common/ripple.c:219 +#: plug-ins/common/ripple.c:222 msgid "Rippling..." msgstr "Vlnenie..." @@ -6318,19 +6318,19 @@ msgid "_Selective Gaussian Blur..." msgstr "_Selektívne Gaussove rozostrenie..." -#: plug-ins/common/sel_gauss.c:186 +#: plug-ins/common/sel_gauss.c:187 msgid "Selective Gaussian Blur..." msgstr "Výberové Gaussove rozostrenie..." -#: plug-ins/common/sel_gauss.c:224 +#: plug-ins/common/sel_gauss.c:225 msgid "Selective Gaussian Blur" msgstr "Výberové Gaussove rozostrenie" -#: plug-ins/common/sel_gauss.c:256 +#: plug-ins/common/sel_gauss.c:257 msgid "_Blur radius:" msgstr "Polomer ro_zostrenia:" -#: plug-ins/common/sel_gauss.c:266 +#: plug-ins/common/sel_gauss.c:267 msgid "_Max. delta:" msgstr "_Max. Delta:" @@ -6349,11 +6349,11 @@ #. #. * Let the user know what we're doing... #. -#: plug-ins/common/sharpen.c:315 +#: plug-ins/common/sharpen.c:311 msgid "Sharpening..." msgstr "Doostruje sa..." -#: plug-ins/common/sharpen.c:484 +#: plug-ins/common/sharpen.c:480 msgid "Sharpen" msgstr "Zaostrenie" @@ -6361,7 +6361,7 @@ msgid "_Shift..." msgstr "Po_sunúť..." -#: plug-ins/common/shift.c:191 +#: plug-ins/common/shift.c:194 msgid "Shifting..." msgstr "Posúva sa..." @@ -6556,23 +6556,23 @@ msgid "_Sobel..." msgstr "_Sobel..." -#: plug-ins/common/sobel.c:226 +#: plug-ins/common/sobel.c:227 msgid "Sobel Edge Detection" msgstr "Sobelova detekcia hrán" -#: plug-ins/common/sobel.c:248 +#: plug-ins/common/sobel.c:249 msgid "Sobel _Horizontally" msgstr "Sobel vo_dorovne" -#: plug-ins/common/sobel.c:260 +#: plug-ins/common/sobel.c:261 msgid "Sobel _Vertically" msgstr "Sobel z_visle" -#: plug-ins/common/sobel.c:272 +#: plug-ins/common/sobel.c:273 msgid "_Keep sign of result (one direction only)" msgstr "Zachovať znamien_ko výsledku (iba jeden smer)" -#: plug-ins/common/sobel.c:358 +#: plug-ins/common/sobel.c:359 msgid "Sobel Edge Detecting..." msgstr "Sobelova detekcia hrán..." @@ -6870,15 +6870,15 @@ msgid "Sp_read..." msgstr "_Rozprestrieť..." -#: plug-ins/common/spread.c:179 +#: plug-ins/common/spread.c:182 msgid "Spreading..." msgstr "Rozptylovanie..." -#: plug-ins/common/spread.c:345 +#: plug-ins/common/spread.c:346 msgid "Spread" msgstr "Rozptýlenie" -#: plug-ins/common/spread.c:363 +#: plug-ins/common/spread.c:364 msgid "Spread Amount" msgstr "Miera rozptýlenia" @@ -7164,7 +7164,8 @@ msgid "_Tile..." msgstr "_Dláždiť..." -#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:321 +#. Set the tile cache size +#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:320 msgid "Tiling..." msgstr "Dlaždicuje sa" @@ -7185,42 +7186,42 @@ msgstr "_Malé dlaždice..." #. Get the preview image -#: plug-ins/common/tileit.c:364 +#: plug-ins/common/tileit.c:363 msgid "TileIt" msgstr "Vydláždenie" #. Area for buttons etc #. Flip -#: plug-ins/common/tileit.c:407 plug-ins/ifscompose/ifscompose.c:628 +#: plug-ins/common/tileit.c:406 plug-ins/ifscompose/ifscompose.c:628 msgid "Flip" msgstr "Zrkadlenie" -#: plug-ins/common/tileit.c:455 +#: plug-ins/common/tileit.c:454 msgid "A_ll tiles" msgstr "Všetky d_laždice" -#: plug-ins/common/tileit.c:469 +#: plug-ins/common/tileit.c:468 msgid "Al_ternate tiles" msgstr "Al_ternatívne dlaždice" -#: plug-ins/common/tileit.c:483 +#: plug-ins/common/tileit.c:482 msgid "_Explicit tile" msgstr "_Explicitné dlaždice" -#: plug-ins/common/tileit.c:489 +#: plug-ins/common/tileit.c:488 msgid "Ro_w:" msgstr "_Riadok:" -#: plug-ins/common/tileit.c:513 +#: plug-ins/common/tileit.c:512 msgid "Col_umn:" msgstr "_Stĺpec:" -#: plug-ins/common/tileit.c:565 +#: plug-ins/common/tileit.c:564 msgid "O_pacity:" msgstr "_Krytie:" #. Lower frame saying howmany segments -#: plug-ins/common/tileit.c:574 +#: plug-ins/common/tileit.c:573 msgid "Number of Segments" msgstr "Počet segmentov:" @@ -7369,15 +7370,15 @@ msgid "Unit Editor" msgstr "Editor jednotiek" -#: plug-ins/common/unsharp.c:149 +#: plug-ins/common/unsharp.c:143 msgid "_Unsharp Mask..." msgstr "_Rozostriť masku..." -#: plug-ins/common/unsharp.c:493 +#: plug-ins/common/unsharp.c:468 msgid "Merging..." msgstr "Spojuje sa..." -#: plug-ins/common/unsharp.c:664 +#: plug-ins/common/unsharp.c:635 msgid "Unsharp Mask" msgstr "Maskovanie rozostrenia" @@ -8415,19 +8416,19 @@ msgid "_Zoom:" msgstr "_Lupa:" -#: plug-ins/gfig/gfig-bezier.c:452 +#: plug-ins/gfig/gfig-bezier.c:448 msgid "Closed" msgstr "Uzavreté" -#: plug-ins/gfig/gfig-bezier.c:457 +#: plug-ins/gfig/gfig-bezier.c:453 msgid "Close curve on completion" msgstr "Uzavrenie krivky pri dokončení" -#: plug-ins/gfig/gfig-bezier.c:462 +#: plug-ins/gfig/gfig-bezier.c:458 msgid "Show Line Frame" msgstr "Zobraziť čiarový model" -#: plug-ins/gfig/gfig-bezier.c:467 +#: plug-ins/gfig/gfig-bezier.c:463 msgid "Draws lines between the control points. Only during curve creation" msgstr "Kreslenie čiar medzi ovládacími bodmi. Iba počas vytvárania krivky" diff -uraN gimp-2.2.0/po-plug-ins/sr.gmo gimp-2.2.1/po-plug-ins/sr.gmo --- gimp-2.2.0/po-plug-ins/sr.gmo 2004-12-19 03:34:25.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/sr.gmo 2004-12-28 16:59:08.000000000 +0100 @@ -271,7 +271,7 @@ which has no alpha channel.Z scale (size)Z:ZealousCropping(tm)...ZoomZoom inZoom in (make image bigger)Zoom outZoom out (make image smaller)_3x3_Abbreviation:_Adaptive_Additive_Advanced_Alpha_Alpha:_Amount:_Amplitude:_Angle:_Animate_Antialiasing_Automatically convert_Azimuth:_Background_Base URL:_Bilinear_Black_Blacken_Blast_Blend_Blue_Blue:_Border:_Bottom:_Box_Brightness_Brightness:_Brush_Bump Map_Bumpmap_Copy_Deflate_Depth:_Derivative_Description:_Detail:_Digits:_Displacement:_Distorted_Dots_Edit_Effect Image:_Elevation:_Emboss_Encapsulated PostScript_Entire Image_Environment Map_Exponent:_Factor:_File_Filename:_Font:_Force_Fractals_Free_Ftp Site_Gamma:_General_Gopher_Gradient_Gray:_Green_Green:_Grey_Grow_Height_Height:_Help_Hex_Hidden_Holdness:_Horizontal_Horizontal:_Horz. Spacing:_Hue_ID:_Ideal_Ignore_Inch_Input SPI:_Insert_Interlacing (Adam7)_Invert_JPEG_JavaScript_Keep NCSA circles true_Kill_LZW_Laplace_Large staggered_Left_Left Start at:_Light_Linear_Lines_Link_Lower_MIME_Mapping_Material_Max (%):_Max Depth:_Midtones_Millimeter_Mirror_Misc Ops._Monochrome_Move_No. Across:_None_Normal_Pack Bits_Parameters_Period:_Phase:_Ping Pong_Plural:_Polygon_Presets_Preview_Preview!_Prompt for area info_Psychobilly_RGB_RLE compression_RLE encoded_Radial_Radius:_Randomize_Rays_Recipient:_Rectangle_Red:_Redo %s_Reflective_Remove_Rendering_Require default URL_Right_Right Border_Rotated_Saturation_Saturation:_Search:_Second Flares_Sender:_Settings_Sharpness:_Size_Size:_Smear_Snap-To Grid Enabled_Speed:_Spokes:_Square_Squares_Staggered_Strength:_Symbol:_Target frame name/ID: (optional - used for FRAMES only)_Thickness:_Threshold_Threshold:_Title:_Tools_Top Start at:_Top:_Transparent_URL to activate when this area is clicked: (required)_Undo %s_Update_Upper_Upper Border_Use double-sized grab handles_Uuencode_Value_Value:_Variation:_Vert. Spacing:_Vertical_Vertical:_View_Voronoi_Warp_Waterlevel:_Wavelength:_Web Site_White_Wide-striped_Width_Width:_Wind_Wrap_X Scale:_X:_Y Scale:_Y:_Yellow_Z:_Zoom_Zoom:`Default' is created.a _Single Windowafteralphablackblueblueness_cb470blueness_cb470fblueness_cb709blueness_cb709fcmcyancyan_ke-_mailgreenhueinvalid formatted GFlare file: %s k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftpixels/%aredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsin^p, steppedsin^p-based functionsome sort of error with the file extension or lack thereofthe _Whole Screenvaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: gimp 1.3 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-08-08 14:19+0200 Last-Translator: Бранко Ивановић Language-Team: Serbian (sr) diff -uraN gimp-2.2.0/po-plug-ins/sr@Latn.gmo gimp-2.2.1/po-plug-ins/sr@Latn.gmo --- gimp-2.2.0/po-plug-ins/sr@Latn.gmo 2004-12-19 03:34:25.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/sr@Latn.gmo 2004-12-28 16:59:09.000000000 +0100 @@ -281,7 +281,7 @@ which has no alpha channel.Z scale (size)Z:ZealousCropping(tm)...ZoomZoom inZoom in (make image bigger)Zoom outZoom out (make image smaller)_3x3_Abbreviation:_Adaptive_Additive_Advanced_Alpha_Alpha:_Amount:_Amplitude:_Angle:_Animate_Antialiasing_Automatically convert_Azimuth:_Background_Base URL:_Bilinear_Black_Blacken_Blast_Blend_Blue_Blue:_Border:_Bottom:_Box_Brightness_Brightness:_Brush_Bump Map_Bumpmap_Copy_Deflate_Depth:_Derivative_Description:_Detail:_Digits:_Displacement:_Distorted_Dots_Edit_Effect Image:_Elevation:_Emboss_Encapsulated PostScript_Entire Image_Environment Map_Exponent:_Factor:_File_Filename:_Font:_Force_Fractals_Free_Ftp Site_Gamma:_General_Gopher_Gradient_Gray:_Green_Green:_Grey_Grow_Height_Height:_Help_Hex_Hidden_Holdness:_Horizontal_Horizontal:_Horz. Spacing:_Hue_ID:_Ideal_Ignore_Inch_Input SPI:_Insert_Interlacing (Adam7)_Invert_JPEG_JavaScript_Keep NCSA circles true_Kill_LZW_Laplace_Large staggered_Left_Left Start at:_Light_Linear_Lines_Link_Lower_MIME_Mapping_Material_Max (%):_Max Depth:_Midtones_Millimeter_Mirror_Misc Ops._Monochrome_Move_No. Across:_None_Normal_Pack Bits_Parameters_Period:_Phase:_Ping Pong_Plural:_Polygon_Presets_Preview_Preview!_Prompt for area info_Psychobilly_RGB_RLE compression_RLE encoded_Radial_Radius:_Randomize_Rays_Recipient:_Rectangle_Red:_Redo %s_Reflective_Remove_Rendering_Require default URL_Right_Right Border_Rotated_Saturation_Saturation:_Search:_Second Flares_Sender:_Settings_Sharpness:_Size_Size:_Smear_Snap-To Grid Enabled_Speed:_Spokes:_Square_Squares_Staggered_Strength:_Symbol:_Target frame name/ID: (optional - used for FRAMES only)_Thickness:_Threshold_Threshold:_Title:_Tools_Top Start at:_Top:_Transparent_URL to activate when this area is clicked: (required)_Undo %s_Update_Upper_Upper Border_Use double-sized grab handles_Uuencode_Value_Value:_Variation:_Vert. Spacing:_Vertical_Vertical:_View_Voronoi_Warp_Waterlevel:_Wavelength:_Web Site_White_Wide-striped_Width_Width:_Wind_Wrap_X Scale:_X:_Y Scale:_Y:_Yellow_Z:_Zoom_Zoom:`Default' is created.a _Single Windowafteralphablackblueblueness_cb470blueness_cb470fblueness_cb709blueness_cb709fcmcyancyan_ke-_mailgreenhueinvalid formatted GFlare file: %s k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftpixels/%aredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsin^p, steppedsin^p-based functionsome sort of error with the file extension or lack thereofthe _Whole Screenvaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: gimp 1.3 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-08-08 14:19+0200 Last-Translator: Branko Ivanović Language-Team: Serbian (sr) diff -uraN gimp-2.2.0/po-plug-ins/sr@Latn.po gimp-2.2.1/po-plug-ins/sr@Latn.po --- gimp-2.2.0/po-plug-ins/sr@Latn.po 2004-12-19 03:34:19.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/sr@Latn.po 2004-12-28 16:59:02.000000000 +0100 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: gimp 1.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-08-08 14:19+0200\n" "Last-Translator: Branko Ivanović \n" "Language-Team: Serbian (sr) \n" @@ -1064,7 +1064,7 @@ msgid "Antialiasing quality. Higher is better, but slower" msgstr "Kvalitet umekšavanja ivica. Više je bolje, ali sporije" -#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:720 +#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:691 #: plug-ins/common/wind.c:993 plug-ins/imagemap/imap_preferences.c:539 msgid "_Threshold:" msgstr "_Prag:" @@ -2341,12 +2341,12 @@ msgstr "Orijentacija" #: plug-ins/common/blinds.c:259 plug-ins/common/ripple.c:539 -#: plug-ins/common/tileit.c:419 plug-ins/pagecurl/pagecurl.c:530 +#: plug-ins/common/tileit.c:418 plug-ins/pagecurl/pagecurl.c:530 msgid "_Horizontal" msgstr "Horizontalno" #: plug-ins/common/blinds.c:260 plug-ins/common/ripple.c:540 -#: plug-ins/common/tileit.c:429 plug-ins/pagecurl/pagecurl.c:529 +#: plug-ins/common/tileit.c:428 plug-ins/pagecurl/pagecurl.c:529 msgid "_Vertical" msgstr "Vertikalno" @@ -2371,7 +2371,7 @@ msgstr "Zamuti" # -#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:383 +#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:432 msgid "Blurring..." msgstr "Zamućujem..." @@ -2495,27 +2495,27 @@ msgid "Ca_rtoon..." msgstr "Hvatanje" -#: plug-ins/common/cartoon.c:228 plug-ins/common/dog.c:246 -#: plug-ins/common/gauss.c:430 plug-ins/common/neon.c:222 -#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:203 +#: plug-ins/common/cartoon.c:229 plug-ins/common/dog.c:247 +#: plug-ins/common/gauss.c:431 plug-ins/common/neon.c:221 +#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:204 #: plug-ins/common/softglow.c:220 plug-ins/gflare/gflare.c:972 #: plug-ins/sgi/sgi.c:528 plug-ins/xjt/xjt.c:1673 msgid "Cannot operate on indexed color images." msgstr "Ne mogu raditi s indeksiranim slikama" # -#: plug-ins/common/cartoon.c:807 +#: plug-ins/common/cartoon.c:808 #, fuzzy msgid "Cartoon" msgstr "Hvatanje" # -#: plug-ins/common/cartoon.c:837 plug-ins/common/photocopy.c:867 +#: plug-ins/common/cartoon.c:838 plug-ins/common/photocopy.c:867 #, fuzzy msgid "_Mask radius:" msgstr "Veličina Maske:" -#: plug-ins/common/cartoon.c:851 +#: plug-ins/common/cartoon.c:852 #, fuzzy msgid "_Percent black:" msgstr "Odsto" @@ -2686,29 +2686,29 @@ msgid "Colorify Custom Color" msgstr "Oboji posebnom bojom" -#: plug-ins/common/colortoalpha.c:105 +#: plug-ins/common/colortoalpha.c:104 #, fuzzy msgid "Color to _Alpha..." msgstr "Boja u Alfu" -#: plug-ins/common/colortoalpha.c:183 +#: plug-ins/common/colortoalpha.c:181 msgid "Removing color..." msgstr "Uklanjam boju..." -#: plug-ins/common/colortoalpha.c:364 +#: plug-ins/common/colortoalpha.c:377 msgid "Color to Alpha" msgstr "Boja u Alfu" -#: plug-ins/common/colortoalpha.c:389 plug-ins/common/mapcolor.c:424 +#: plug-ins/common/colortoalpha.c:402 plug-ins/common/mapcolor.c:424 #: plug-ins/gfli/gfli.c:835 plug-ins/gfli/gfli.c:898 msgid "From:" msgstr "Od:" -#: plug-ins/common/colortoalpha.c:393 +#: plug-ins/common/colortoalpha.c:406 msgid "Color to Alpha Color Picker" msgstr "Boja u Kapaljku Alfa Boje" -#: plug-ins/common/colortoalpha.c:407 +#: plug-ins/common/colortoalpha.c:420 #, fuzzy msgid "to alpha" msgstr "u Alfu" @@ -3044,28 +3044,28 @@ msgid "_Cubism..." msgstr "Kubizam" -#: plug-ins/common/cubism.c:267 +#: plug-ins/common/cubism.c:269 msgid "Cubism" msgstr "Kubizam" # -#: plug-ins/common/cubism.c:296 +#: plug-ins/common/cubism.c:298 #, fuzzy msgid "_Tile size:" msgstr "Veličina delića:" # -#: plug-ins/common/cubism.c:309 +#: plug-ins/common/cubism.c:311 #, fuzzy msgid "T_ile saturation:" msgstr "Zasićenje delića:" -#: plug-ins/common/cubism.c:320 +#: plug-ins/common/cubism.c:322 #, fuzzy msgid "_Use background color" msgstr "Upotrijebi boju pozadine" -#: plug-ins/common/cubism.c:410 +#: plug-ins/common/cubism.c:412 #, fuzzy msgid "Cubistic Transformation..." msgstr "Kubistička transformacija" @@ -3475,7 +3475,7 @@ msgstr "Despeckle..." # -#: plug-ins/common/despeckle.c:420 plug-ins/common/despeckle.c:642 +#: plug-ins/common/despeckle.c:418 plug-ins/common/despeckle.c:640 msgid "Despeckle" msgstr "Despeckle..." @@ -3483,40 +3483,40 @@ #. #. * Filter type controls... #. -#: plug-ins/common/despeckle.c:446 plug-ins/gimpressionist/orientmap.c:616 +#: plug-ins/common/despeckle.c:444 plug-ins/gimpressionist/orientmap.c:616 msgid "Type" msgstr "Vrsta" #. parameter settings -#: plug-ins/common/despeckle.c:456 +#: plug-ins/common/despeckle.c:454 #, fuzzy msgid "Median" msgstr "Polumjer" -#: plug-ins/common/despeckle.c:462 +#: plug-ins/common/despeckle.c:460 msgid "_Adaptive" msgstr "Adaptivno" # -#: plug-ins/common/despeckle.c:472 +#: plug-ins/common/despeckle.c:470 msgid "R_ecursive" msgstr "Rekurzivno" -#: plug-ins/common/despeckle.c:496 plug-ins/common/neon.c:728 +#: plug-ins/common/despeckle.c:494 plug-ins/common/neon.c:727 #: plug-ins/common/nlfilt.c:1083 plug-ins/common/nova.c:359 -#: plug-ins/common/unsharp.c:694 plug-ins/common/whirlpinch.c:588 +#: plug-ins/common/unsharp.c:665 plug-ins/common/whirlpinch.c:588 #: plug-ins/gflare/gflare.c:2686 plug-ins/imagemap/imap_circle.c:278 msgid "_Radius:" msgstr "Poluprečnik:" # -#: plug-ins/common/despeckle.c:512 +#: plug-ins/common/despeckle.c:510 #, fuzzy msgid "_Black level:" msgstr "Vrednost crne:" # -#: plug-ins/common/despeckle.c:528 +#: plug-ins/common/despeckle.c:526 #, fuzzy msgid "_White level:" msgstr "Vrednost bele:" @@ -3622,7 +3622,7 @@ msgstr "Izmještanje..." # -#: plug-ins/common/displace.c:228 +#: plug-ins/common/displace.c:231 msgid "Displacing..." msgstr "Izmještanje..." @@ -3668,32 +3668,32 @@ msgstr "Selektivno Gausian zamućenje..." # -#: plug-ins/common/dog.c:222 plug-ins/common/dog.c:273 +#: plug-ins/common/dog.c:227 plug-ins/common/dog.c:274 #, fuzzy msgid "DoG Edge Detect" msgstr "Detekcija Ruba" -#: plug-ins/common/dog.c:294 +#: plug-ins/common/dog.c:295 #, fuzzy msgid "Smoothing parameters" msgstr "Uglađujem X preliv..." -#: plug-ins/common/dog.c:308 +#: plug-ins/common/dog.c:309 #, fuzzy msgid "_Radius 1:" msgstr "Poluprečnik:" -#: plug-ins/common/dog.c:312 +#: plug-ins/common/dog.c:313 #, fuzzy msgid "R_adius 2:" msgstr "Poluprečnik:" -#: plug-ins/common/dog.c:324 plug-ins/common/normalize.c:88 +#: plug-ins/common/dog.c:325 plug-ins/common/normalize.c:88 #, fuzzy msgid "_Normalize" msgstr "Normalno" -#: plug-ins/common/dog.c:335 plug-ins/gimpressionist/paper.c:149 +#: plug-ins/common/dog.c:336 plug-ins/gimpressionist/paper.c:149 msgid "_Invert" msgstr "Inverzno" @@ -3761,7 +3761,7 @@ msgid "_Emboss..." msgstr "Ispupči" -#: plug-ins/common/emboss.c:374 plug-ins/common/emboss.c:439 +#: plug-ins/common/emboss.c:376 plug-ins/common/emboss.c:439 msgid "Emboss" msgstr "Emboss" @@ -3790,7 +3790,7 @@ msgstr "Rezabrenje..." # -#: plug-ins/common/engrave.c:181 +#: plug-ins/common/engrave.c:182 msgid "Engraving..." msgstr "Rezabrenje..." @@ -4261,45 +4261,45 @@ msgid "_Gaussian Blur..." msgstr "RLE Gausian Zamućenje" -#: plug-ins/common/gauss.c:407 +#: plug-ins/common/gauss.c:413 #, fuzzy msgid "Gaussian Blur..." msgstr "RLE Gausian Zamućenje" -#: plug-ins/common/gauss.c:460 +#: plug-ins/common/gauss.c:461 #, fuzzy msgid "Gaussian Blur" msgstr "IIR Gaussian Zamućenje" # #. parameter settings -#: plug-ins/common/gauss.c:483 +#: plug-ins/common/gauss.c:484 msgid "Blur Radius" msgstr "Polumjer Zamućenja" -#: plug-ins/common/gauss.c:497 plug-ins/common/jigsaw.c:2456 -#: plug-ins/common/spread.c:378 +#: plug-ins/common/gauss.c:498 plug-ins/common/jigsaw.c:2456 +#: plug-ins/common/spread.c:379 msgid "_Horizontal:" msgstr "Horizontalno:" # -#: plug-ins/common/gauss.c:501 plug-ins/common/jigsaw.c:2473 -#: plug-ins/common/spread.c:382 +#: plug-ins/common/gauss.c:502 plug-ins/common/jigsaw.c:2473 +#: plug-ins/common/spread.c:383 msgid "_Vertical:" msgstr "Vertikalno:" # -#: plug-ins/common/gauss.c:524 +#: plug-ins/common/gauss.c:525 #, fuzzy msgid "Blur Method" msgstr "Vrsta Zamućenja" -#: plug-ins/common/gauss.c:528 +#: plug-ins/common/gauss.c:529 msgid "_IIR" msgstr "" # -#: plug-ins/common/gauss.c:529 +#: plug-ins/common/gauss.c:530 #, fuzzy msgid "_RLE" msgstr "RLE" @@ -4642,23 +4642,23 @@ msgid "_Glass Tile..." msgstr "Delići stakla..." -#: plug-ins/common/glasstile.c:208 +#: plug-ins/common/glasstile.c:209 msgid "Glass Tile..." msgstr "Delići stakla..." # -#: plug-ins/common/glasstile.c:251 +#: plug-ins/common/glasstile.c:250 msgid "Glass Tile" msgstr "Delići stakla" # -#: plug-ins/common/glasstile.c:282 +#: plug-ins/common/glasstile.c:281 #, fuzzy msgid "Tile _width:" msgstr "Širina delića:" # -#: plug-ins/common/glasstile.c:296 plug-ins/common/mosaic.c:621 +#: plug-ins/common/glasstile.c:295 plug-ins/common/mosaic.c:621 #, fuzzy msgid "Tile _height:" msgstr "Visina delića:" @@ -5819,19 +5819,19 @@ msgid "_Neon..." msgstr "Ništa" -#: plug-ins/common/neon.c:204 +#: plug-ins/common/neon.c:207 #, fuzzy msgid "Neon..." msgstr "Novinski tekst..." # -#: plug-ins/common/neon.c:698 +#: plug-ins/common/neon.c:697 #, fuzzy msgid "Neon Detection" msgstr "Detekcija Ruba" # -#: plug-ins/common/neon.c:743 plug-ins/common/unsharp.c:707 +#: plug-ins/common/neon.c:742 plug-ins/common/unsharp.c:678 msgid "_Amount:" msgstr "Vrednost:" @@ -6019,7 +6019,7 @@ msgstr "Rasipanje HSV..." # -#: plug-ins/common/noisify.c:284 +#: plug-ins/common/noisify.c:285 msgid "Adding Noise..." msgstr "Dodavam šum..." @@ -6102,7 +6102,7 @@ msgid "Oili_fy..." msgstr "Slikanje Uljem" -#: plug-ins/common/oilify.c:188 +#: plug-ins/common/oilify.c:189 msgid "Oil Painting..." msgstr "Slikanje Uljem..." @@ -6264,7 +6264,7 @@ msgid "Photocopy" msgstr "Fotografija" -#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:513 +#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:509 #: plug-ins/common/softglow.c:687 msgid "_Sharpness:" msgstr "Oštrina:" @@ -7000,7 +7000,7 @@ msgstr "Umnožavanje..." # -#: plug-ins/common/ripple.c:219 +#: plug-ins/common/ripple.c:222 msgid "Rippling..." msgstr "Umnožavanje..." @@ -7252,23 +7252,23 @@ msgstr "Selektivno Gausian zamućenje..." # -#: plug-ins/common/sel_gauss.c:186 +#: plug-ins/common/sel_gauss.c:187 msgid "Selective Gaussian Blur..." msgstr "Selektivno Gausian zamućenje..." # -#: plug-ins/common/sel_gauss.c:224 +#: plug-ins/common/sel_gauss.c:225 msgid "Selective Gaussian Blur" msgstr "Selektivno Gaussian zamućenje" # -#: plug-ins/common/sel_gauss.c:256 +#: plug-ins/common/sel_gauss.c:257 #, fuzzy msgid "_Blur radius:" msgstr "Poluprečnik Zamućenja:" # -#: plug-ins/common/sel_gauss.c:266 +#: plug-ins/common/sel_gauss.c:267 #, fuzzy msgid "_Max. delta:" msgstr "Maks. Delta:" @@ -7292,11 +7292,11 @@ #. #. * Let the user know what we're doing... #. -#: plug-ins/common/sharpen.c:315 +#: plug-ins/common/sharpen.c:311 msgid "Sharpening..." msgstr "Izoštravanje..." -#: plug-ins/common/sharpen.c:484 +#: plug-ins/common/sharpen.c:480 msgid "Sharpen" msgstr "Izoštravanje" @@ -7307,7 +7307,7 @@ msgstr "Pomicanje..." # -#: plug-ins/common/shift.c:191 +#: plug-ins/common/shift.c:194 msgid "Shifting..." msgstr "Pomicanje..." @@ -7553,26 +7553,26 @@ msgstr "_Sobel" # -#: plug-ins/common/sobel.c:226 +#: plug-ins/common/sobel.c:227 msgid "Sobel Edge Detection" msgstr "Sobel detekcija ivice" # -#: plug-ins/common/sobel.c:248 +#: plug-ins/common/sobel.c:249 msgid "Sobel _Horizontally" msgstr "Sobel _horizontalno" # -#: plug-ins/common/sobel.c:260 +#: plug-ins/common/sobel.c:261 msgid "Sobel _Vertically" msgstr "Sobel _vertikalno" -#: plug-ins/common/sobel.c:272 +#: plug-ins/common/sobel.c:273 #, fuzzy msgid "_Keep sign of result (one direction only)" msgstr "Zadrži oznaku rezultata (samo jedan smer)" -#: plug-ins/common/sobel.c:358 +#: plug-ins/common/sobel.c:359 msgid "Sobel Edge Detecting..." msgstr "Sobel detekcija ruba..." @@ -7905,15 +7905,15 @@ msgid "Sp_read..." msgstr "Rastezanje..." -#: plug-ins/common/spread.c:179 +#: plug-ins/common/spread.c:182 msgid "Spreading..." msgstr "Rastezanje..." -#: plug-ins/common/spread.c:345 +#: plug-ins/common/spread.c:346 msgid "Spread" msgstr "Rastegni" -#: plug-ins/common/spread.c:363 +#: plug-ins/common/spread.c:364 msgid "Spread Amount" msgstr "Vrednost rastezanja" @@ -8214,7 +8214,8 @@ msgid "_Tile..." msgstr "Djelitelj..." -#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:321 +#. Set the tile cache size +#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:320 msgid "Tiling..." msgstr "Delim..." @@ -8237,46 +8238,46 @@ msgstr "Sve deliće" #. Get the preview image -#: plug-ins/common/tileit.c:364 +#: plug-ins/common/tileit.c:363 msgid "TileIt" msgstr "Razdijeli" #. Area for buttons etc #. Flip -#: plug-ins/common/tileit.c:407 plug-ins/ifscompose/ifscompose.c:628 +#: plug-ins/common/tileit.c:406 plug-ins/ifscompose/ifscompose.c:628 msgid "Flip" msgstr "Zrcalo" -#: plug-ins/common/tileit.c:455 +#: plug-ins/common/tileit.c:454 #, fuzzy msgid "A_ll tiles" msgstr "Sve deliće" -#: plug-ins/common/tileit.c:469 +#: plug-ins/common/tileit.c:468 #, fuzzy msgid "Al_ternate tiles" msgstr "Dodatni delići" -#: plug-ins/common/tileit.c:483 +#: plug-ins/common/tileit.c:482 #, fuzzy msgid "_Explicit tile" msgstr "Eksplicitno deljenje" -#: plug-ins/common/tileit.c:489 +#: plug-ins/common/tileit.c:488 msgid "Ro_w:" msgstr "Red:" -#: plug-ins/common/tileit.c:513 +#: plug-ins/common/tileit.c:512 msgid "Col_umn:" msgstr "Kolona:" # -#: plug-ins/common/tileit.c:565 +#: plug-ins/common/tileit.c:564 msgid "O_pacity:" msgstr "Neprovidnost:" #. Lower frame saying howmany segments -#: plug-ins/common/tileit.c:574 +#: plug-ins/common/tileit.c:573 #, fuzzy msgid "Number of Segments" msgstr "Broj delova:" @@ -8428,16 +8429,16 @@ msgid "Unit Editor" msgstr "Urednik Mjera" -#: plug-ins/common/unsharp.c:149 +#: plug-ins/common/unsharp.c:143 #, fuzzy msgid "_Unsharp Mask..." msgstr "Skini oštrinu maske" -#: plug-ins/common/unsharp.c:493 +#: plug-ins/common/unsharp.c:468 msgid "Merging..." msgstr "Spajanje..." -#: plug-ins/common/unsharp.c:664 +#: plug-ins/common/unsharp.c:635 msgid "Unsharp Mask" msgstr "Skini oštrinu maske" @@ -9590,19 +9591,19 @@ msgid "_Zoom:" msgstr "Uvećanje:" -#: plug-ins/gfig/gfig-bezier.c:452 +#: plug-ins/gfig/gfig-bezier.c:448 msgid "Closed" msgstr "Zatvoreno" -#: plug-ins/gfig/gfig-bezier.c:457 +#: plug-ins/gfig/gfig-bezier.c:453 msgid "Close curve on completion" msgstr "Zatvori krivu na kraju" -#: plug-ins/gfig/gfig-bezier.c:462 +#: plug-ins/gfig/gfig-bezier.c:458 msgid "Show Line Frame" msgstr "Prikaži linije okvira" -#: plug-ins/gfig/gfig-bezier.c:467 +#: plug-ins/gfig/gfig-bezier.c:463 msgid "Draws lines between the control points. Only during curve creation" msgstr "Crta linije izmešu kontrolnih tačaka. Samo tokom pravljenja krive" diff -uraN gimp-2.2.0/po-plug-ins/sr.po gimp-2.2.1/po-plug-ins/sr.po --- gimp-2.2.0/po-plug-ins/sr.po 2004-12-19 03:34:18.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/sr.po 2004-12-28 16:59:02.000000000 +0100 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: gimp 1.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-08-08 14:19+0200\n" "Last-Translator: Бранко Ивановић \n" "Language-Team: Serbian (sr) \n" @@ -1062,7 +1062,7 @@ msgid "Antialiasing quality. Higher is better, but slower" msgstr "Квалитет умекшавања ивица. Више је боље, али спорије" -#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:720 +#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:691 #: plug-ins/common/wind.c:993 plug-ins/imagemap/imap_preferences.c:539 msgid "_Threshold:" msgstr "_Праг:" @@ -2339,12 +2339,12 @@ msgstr "Оријентација" #: plug-ins/common/blinds.c:259 plug-ins/common/ripple.c:539 -#: plug-ins/common/tileit.c:419 plug-ins/pagecurl/pagecurl.c:530 +#: plug-ins/common/tileit.c:418 plug-ins/pagecurl/pagecurl.c:530 msgid "_Horizontal" msgstr "Хоризонтално" #: plug-ins/common/blinds.c:260 plug-ins/common/ripple.c:540 -#: plug-ins/common/tileit.c:429 plug-ins/pagecurl/pagecurl.c:529 +#: plug-ins/common/tileit.c:428 plug-ins/pagecurl/pagecurl.c:529 msgid "_Vertical" msgstr "Вертикално" @@ -2369,7 +2369,7 @@ msgstr "Замути" # -#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:383 +#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:432 msgid "Blurring..." msgstr "Замућујем..." @@ -2493,27 +2493,27 @@ msgid "Ca_rtoon..." msgstr "Хватање" -#: plug-ins/common/cartoon.c:228 plug-ins/common/dog.c:246 -#: plug-ins/common/gauss.c:430 plug-ins/common/neon.c:222 -#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:203 +#: plug-ins/common/cartoon.c:229 plug-ins/common/dog.c:247 +#: plug-ins/common/gauss.c:431 plug-ins/common/neon.c:221 +#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:204 #: plug-ins/common/softglow.c:220 plug-ins/gflare/gflare.c:972 #: plug-ins/sgi/sgi.c:528 plug-ins/xjt/xjt.c:1673 msgid "Cannot operate on indexed color images." msgstr "Не могу радити с индексираним сликама" # -#: plug-ins/common/cartoon.c:807 +#: plug-ins/common/cartoon.c:808 #, fuzzy msgid "Cartoon" msgstr "Хватање" # -#: plug-ins/common/cartoon.c:837 plug-ins/common/photocopy.c:867 +#: plug-ins/common/cartoon.c:838 plug-ins/common/photocopy.c:867 #, fuzzy msgid "_Mask radius:" msgstr "Величина Маске:" -#: plug-ins/common/cartoon.c:851 +#: plug-ins/common/cartoon.c:852 #, fuzzy msgid "_Percent black:" msgstr "Одсто" @@ -2684,29 +2684,29 @@ msgid "Colorify Custom Color" msgstr "Обоји посебном бојом" -#: plug-ins/common/colortoalpha.c:105 +#: plug-ins/common/colortoalpha.c:104 #, fuzzy msgid "Color to _Alpha..." msgstr "Боја у Алфу" -#: plug-ins/common/colortoalpha.c:183 +#: plug-ins/common/colortoalpha.c:181 msgid "Removing color..." msgstr "Уклањам боју..." -#: plug-ins/common/colortoalpha.c:364 +#: plug-ins/common/colortoalpha.c:377 msgid "Color to Alpha" msgstr "Боја у Алфу" -#: plug-ins/common/colortoalpha.c:389 plug-ins/common/mapcolor.c:424 +#: plug-ins/common/colortoalpha.c:402 plug-ins/common/mapcolor.c:424 #: plug-ins/gfli/gfli.c:835 plug-ins/gfli/gfli.c:898 msgid "From:" msgstr "Од:" -#: plug-ins/common/colortoalpha.c:393 +#: plug-ins/common/colortoalpha.c:406 msgid "Color to Alpha Color Picker" msgstr "Боја у Капаљку Алфа Боје" -#: plug-ins/common/colortoalpha.c:407 +#: plug-ins/common/colortoalpha.c:420 #, fuzzy msgid "to alpha" msgstr "у Алфу" @@ -3042,28 +3042,28 @@ msgid "_Cubism..." msgstr "Кубизам" -#: plug-ins/common/cubism.c:267 +#: plug-ins/common/cubism.c:269 msgid "Cubism" msgstr "Кубизам" # -#: plug-ins/common/cubism.c:296 +#: plug-ins/common/cubism.c:298 #, fuzzy msgid "_Tile size:" msgstr "Величина делића:" # -#: plug-ins/common/cubism.c:309 +#: plug-ins/common/cubism.c:311 #, fuzzy msgid "T_ile saturation:" msgstr "Засићење делића:" -#: plug-ins/common/cubism.c:320 +#: plug-ins/common/cubism.c:322 #, fuzzy msgid "_Use background color" msgstr "Употријеби боју позадине" -#: plug-ins/common/cubism.c:410 +#: plug-ins/common/cubism.c:412 #, fuzzy msgid "Cubistic Transformation..." msgstr "Кубистичка трансформација" @@ -3473,7 +3473,7 @@ msgstr "Деспецкле..." # -#: plug-ins/common/despeckle.c:420 plug-ins/common/despeckle.c:642 +#: plug-ins/common/despeckle.c:418 plug-ins/common/despeckle.c:640 msgid "Despeckle" msgstr "Деспецкле..." @@ -3481,40 +3481,40 @@ #. #. * Filter type controls... #. -#: plug-ins/common/despeckle.c:446 plug-ins/gimpressionist/orientmap.c:616 +#: plug-ins/common/despeckle.c:444 plug-ins/gimpressionist/orientmap.c:616 msgid "Type" msgstr "Врста" #. parameter settings -#: plug-ins/common/despeckle.c:456 +#: plug-ins/common/despeckle.c:454 #, fuzzy msgid "Median" msgstr "Полумјер" -#: plug-ins/common/despeckle.c:462 +#: plug-ins/common/despeckle.c:460 msgid "_Adaptive" msgstr "Адаптивно" # -#: plug-ins/common/despeckle.c:472 +#: plug-ins/common/despeckle.c:470 msgid "R_ecursive" msgstr "Рекурзивно" -#: plug-ins/common/despeckle.c:496 plug-ins/common/neon.c:728 +#: plug-ins/common/despeckle.c:494 plug-ins/common/neon.c:727 #: plug-ins/common/nlfilt.c:1083 plug-ins/common/nova.c:359 -#: plug-ins/common/unsharp.c:694 plug-ins/common/whirlpinch.c:588 +#: plug-ins/common/unsharp.c:665 plug-ins/common/whirlpinch.c:588 #: plug-ins/gflare/gflare.c:2686 plug-ins/imagemap/imap_circle.c:278 msgid "_Radius:" msgstr "Полупречник:" # -#: plug-ins/common/despeckle.c:512 +#: plug-ins/common/despeckle.c:510 #, fuzzy msgid "_Black level:" msgstr "Вредност црне:" # -#: plug-ins/common/despeckle.c:528 +#: plug-ins/common/despeckle.c:526 #, fuzzy msgid "_White level:" msgstr "Вредност беле:" @@ -3620,7 +3620,7 @@ msgstr "Измјештање..." # -#: plug-ins/common/displace.c:228 +#: plug-ins/common/displace.c:231 msgid "Displacing..." msgstr "Измјештање..." @@ -3666,32 +3666,32 @@ msgstr "Селективно Гаусиан замућење..." # -#: plug-ins/common/dog.c:222 plug-ins/common/dog.c:273 +#: plug-ins/common/dog.c:227 plug-ins/common/dog.c:274 #, fuzzy msgid "DoG Edge Detect" msgstr "Детекција Руба" -#: plug-ins/common/dog.c:294 +#: plug-ins/common/dog.c:295 #, fuzzy msgid "Smoothing parameters" msgstr "Углађујем X прелив..." -#: plug-ins/common/dog.c:308 +#: plug-ins/common/dog.c:309 #, fuzzy msgid "_Radius 1:" msgstr "Полупречник:" -#: plug-ins/common/dog.c:312 +#: plug-ins/common/dog.c:313 #, fuzzy msgid "R_adius 2:" msgstr "Полупречник:" -#: plug-ins/common/dog.c:324 plug-ins/common/normalize.c:88 +#: plug-ins/common/dog.c:325 plug-ins/common/normalize.c:88 #, fuzzy msgid "_Normalize" msgstr "Нормално" -#: plug-ins/common/dog.c:335 plug-ins/gimpressionist/paper.c:149 +#: plug-ins/common/dog.c:336 plug-ins/gimpressionist/paper.c:149 msgid "_Invert" msgstr "Инверзно" @@ -3759,7 +3759,7 @@ msgid "_Emboss..." msgstr "Испупчи" -#: plug-ins/common/emboss.c:374 plug-ins/common/emboss.c:439 +#: plug-ins/common/emboss.c:376 plug-ins/common/emboss.c:439 msgid "Emboss" msgstr "Ембосс" @@ -3788,7 +3788,7 @@ msgstr "Резабрење..." # -#: plug-ins/common/engrave.c:181 +#: plug-ins/common/engrave.c:182 msgid "Engraving..." msgstr "Резабрење..." @@ -4259,45 +4259,45 @@ msgid "_Gaussian Blur..." msgstr "RLE Гаусиан Замућење" -#: plug-ins/common/gauss.c:407 +#: plug-ins/common/gauss.c:413 #, fuzzy msgid "Gaussian Blur..." msgstr "RLE Гаусиан Замућење" -#: plug-ins/common/gauss.c:460 +#: plug-ins/common/gauss.c:461 #, fuzzy msgid "Gaussian Blur" msgstr "ИИР Гауссиан Замућење" # #. parameter settings -#: plug-ins/common/gauss.c:483 +#: plug-ins/common/gauss.c:484 msgid "Blur Radius" msgstr "Полумјер Замућења" -#: plug-ins/common/gauss.c:497 plug-ins/common/jigsaw.c:2456 -#: plug-ins/common/spread.c:378 +#: plug-ins/common/gauss.c:498 plug-ins/common/jigsaw.c:2456 +#: plug-ins/common/spread.c:379 msgid "_Horizontal:" msgstr "Хоризонтално:" # -#: plug-ins/common/gauss.c:501 plug-ins/common/jigsaw.c:2473 -#: plug-ins/common/spread.c:382 +#: plug-ins/common/gauss.c:502 plug-ins/common/jigsaw.c:2473 +#: plug-ins/common/spread.c:383 msgid "_Vertical:" msgstr "Вертикално:" # -#: plug-ins/common/gauss.c:524 +#: plug-ins/common/gauss.c:525 #, fuzzy msgid "Blur Method" msgstr "Врста Замућења" -#: plug-ins/common/gauss.c:528 +#: plug-ins/common/gauss.c:529 msgid "_IIR" msgstr "" # -#: plug-ins/common/gauss.c:529 +#: plug-ins/common/gauss.c:530 #, fuzzy msgid "_RLE" msgstr "РЛЕ" @@ -4640,23 +4640,23 @@ msgid "_Glass Tile..." msgstr "Делићи стакла..." -#: plug-ins/common/glasstile.c:208 +#: plug-ins/common/glasstile.c:209 msgid "Glass Tile..." msgstr "Делићи стакла..." # -#: plug-ins/common/glasstile.c:251 +#: plug-ins/common/glasstile.c:250 msgid "Glass Tile" msgstr "Делићи стакла" # -#: plug-ins/common/glasstile.c:282 +#: plug-ins/common/glasstile.c:281 #, fuzzy msgid "Tile _width:" msgstr "Ширина делића:" # -#: plug-ins/common/glasstile.c:296 plug-ins/common/mosaic.c:621 +#: plug-ins/common/glasstile.c:295 plug-ins/common/mosaic.c:621 #, fuzzy msgid "Tile _height:" msgstr "Висина делића:" @@ -5817,19 +5817,19 @@ msgid "_Neon..." msgstr "Ништа" -#: plug-ins/common/neon.c:204 +#: plug-ins/common/neon.c:207 #, fuzzy msgid "Neon..." msgstr "Новински текст..." # -#: plug-ins/common/neon.c:698 +#: plug-ins/common/neon.c:697 #, fuzzy msgid "Neon Detection" msgstr "Детекција Руба" # -#: plug-ins/common/neon.c:743 plug-ins/common/unsharp.c:707 +#: plug-ins/common/neon.c:742 plug-ins/common/unsharp.c:678 msgid "_Amount:" msgstr "Вредност:" @@ -6017,7 +6017,7 @@ msgstr "Расипање HSV..." # -#: plug-ins/common/noisify.c:284 +#: plug-ins/common/noisify.c:285 msgid "Adding Noise..." msgstr "Додавам шум..." @@ -6100,7 +6100,7 @@ msgid "Oili_fy..." msgstr "Сликање Уљем" -#: plug-ins/common/oilify.c:188 +#: plug-ins/common/oilify.c:189 msgid "Oil Painting..." msgstr "Сликање Уљем..." @@ -6262,7 +6262,7 @@ msgid "Photocopy" msgstr "Фотографија" -#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:513 +#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:509 #: plug-ins/common/softglow.c:687 msgid "_Sharpness:" msgstr "Оштрина:" @@ -6998,7 +6998,7 @@ msgstr "Умножавање..." # -#: plug-ins/common/ripple.c:219 +#: plug-ins/common/ripple.c:222 msgid "Rippling..." msgstr "Умножавање..." @@ -7250,23 +7250,23 @@ msgstr "Селективно Гаусиан замућење..." # -#: plug-ins/common/sel_gauss.c:186 +#: plug-ins/common/sel_gauss.c:187 msgid "Selective Gaussian Blur..." msgstr "Селективно Гаусиан замућење..." # -#: plug-ins/common/sel_gauss.c:224 +#: plug-ins/common/sel_gauss.c:225 msgid "Selective Gaussian Blur" msgstr "Селективно Гауссиан замућење" # -#: plug-ins/common/sel_gauss.c:256 +#: plug-ins/common/sel_gauss.c:257 #, fuzzy msgid "_Blur radius:" msgstr "Полупречник Замућења:" # -#: plug-ins/common/sel_gauss.c:266 +#: plug-ins/common/sel_gauss.c:267 #, fuzzy msgid "_Max. delta:" msgstr "Макс. Делта:" @@ -7290,11 +7290,11 @@ #. #. * Let the user know what we're doing... #. -#: plug-ins/common/sharpen.c:315 +#: plug-ins/common/sharpen.c:311 msgid "Sharpening..." msgstr "Изоштравање..." -#: plug-ins/common/sharpen.c:484 +#: plug-ins/common/sharpen.c:480 msgid "Sharpen" msgstr "Изоштравање" @@ -7305,7 +7305,7 @@ msgstr "Помицање..." # -#: plug-ins/common/shift.c:191 +#: plug-ins/common/shift.c:194 msgid "Shifting..." msgstr "Помицање..." @@ -7551,26 +7551,26 @@ msgstr "_Собел" # -#: plug-ins/common/sobel.c:226 +#: plug-ins/common/sobel.c:227 msgid "Sobel Edge Detection" msgstr "Собел детекција ивице" # -#: plug-ins/common/sobel.c:248 +#: plug-ins/common/sobel.c:249 msgid "Sobel _Horizontally" msgstr "Собел _хоризонтално" # -#: plug-ins/common/sobel.c:260 +#: plug-ins/common/sobel.c:261 msgid "Sobel _Vertically" msgstr "Собел _вертикално" -#: plug-ins/common/sobel.c:272 +#: plug-ins/common/sobel.c:273 #, fuzzy msgid "_Keep sign of result (one direction only)" msgstr "Задржи ознаку резултата (само један смер)" -#: plug-ins/common/sobel.c:358 +#: plug-ins/common/sobel.c:359 msgid "Sobel Edge Detecting..." msgstr "Собел детекција руба..." @@ -7903,15 +7903,15 @@ msgid "Sp_read..." msgstr "Растезање..." -#: plug-ins/common/spread.c:179 +#: plug-ins/common/spread.c:182 msgid "Spreading..." msgstr "Растезање..." -#: plug-ins/common/spread.c:345 +#: plug-ins/common/spread.c:346 msgid "Spread" msgstr "Растегни" -#: plug-ins/common/spread.c:363 +#: plug-ins/common/spread.c:364 msgid "Spread Amount" msgstr "Вредност растезања" @@ -8210,7 +8210,8 @@ msgid "_Tile..." msgstr "Дјелитељ..." -#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:321 +#. Set the tile cache size +#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:320 msgid "Tiling..." msgstr "Делим..." @@ -8233,46 +8234,46 @@ msgstr "Све делиће" #. Get the preview image -#: plug-ins/common/tileit.c:364 +#: plug-ins/common/tileit.c:363 msgid "TileIt" msgstr "Раздијели" #. Area for buttons etc #. Flip -#: plug-ins/common/tileit.c:407 plug-ins/ifscompose/ifscompose.c:628 +#: plug-ins/common/tileit.c:406 plug-ins/ifscompose/ifscompose.c:628 msgid "Flip" msgstr "Зрцало" -#: plug-ins/common/tileit.c:455 +#: plug-ins/common/tileit.c:454 #, fuzzy msgid "A_ll tiles" msgstr "Све делиће" -#: plug-ins/common/tileit.c:469 +#: plug-ins/common/tileit.c:468 #, fuzzy msgid "Al_ternate tiles" msgstr "Додатни делићи" -#: plug-ins/common/tileit.c:483 +#: plug-ins/common/tileit.c:482 #, fuzzy msgid "_Explicit tile" msgstr "Експлицитно дељење" -#: plug-ins/common/tileit.c:489 +#: plug-ins/common/tileit.c:488 msgid "Ro_w:" msgstr "Ред:" -#: plug-ins/common/tileit.c:513 +#: plug-ins/common/tileit.c:512 msgid "Col_umn:" msgstr "Колона:" # -#: plug-ins/common/tileit.c:565 +#: plug-ins/common/tileit.c:564 msgid "O_pacity:" msgstr "Непровидност:" #. Lower frame saying howmany segments -#: plug-ins/common/tileit.c:574 +#: plug-ins/common/tileit.c:573 #, fuzzy msgid "Number of Segments" msgstr "Број делова:" @@ -8424,16 +8425,16 @@ msgid "Unit Editor" msgstr "Уредник Мјера" -#: plug-ins/common/unsharp.c:149 +#: plug-ins/common/unsharp.c:143 #, fuzzy msgid "_Unsharp Mask..." msgstr "Скини оштрину маске" -#: plug-ins/common/unsharp.c:493 +#: plug-ins/common/unsharp.c:468 msgid "Merging..." msgstr "Спајање..." -#: plug-ins/common/unsharp.c:664 +#: plug-ins/common/unsharp.c:635 msgid "Unsharp Mask" msgstr "Скини оштрину маске" @@ -9586,19 +9587,19 @@ msgid "_Zoom:" msgstr "Увећање:" -#: plug-ins/gfig/gfig-bezier.c:452 +#: plug-ins/gfig/gfig-bezier.c:448 msgid "Closed" msgstr "Затворено" -#: plug-ins/gfig/gfig-bezier.c:457 +#: plug-ins/gfig/gfig-bezier.c:453 msgid "Close curve on completion" msgstr "Затвори криву на крају" -#: plug-ins/gfig/gfig-bezier.c:462 +#: plug-ins/gfig/gfig-bezier.c:458 msgid "Show Line Frame" msgstr "Прикажи линије оквира" -#: plug-ins/gfig/gfig-bezier.c:467 +#: plug-ins/gfig/gfig-bezier.c:463 msgid "Draws lines between the control points. Only during curve creation" msgstr "Црта линије измешу контролних тачака. Само током прављења криве" diff -uraN gimp-2.2.0/po-plug-ins/sv.gmo gimp-2.2.1/po-plug-ins/sv.gmo --- gimp-2.2.0/po-plug-ins/sv.gmo 2004-12-19 03:34:25.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/sv.gmo 2004-12-28 16:59:09.000000000 +0100 @@ -476,7 +476,7 @@ cmcyancyan_ke-_mailgreengzip archivehueinvalid formatted GFlare file: %s k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftpixels/%aredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsin^p, steppedsin^p-based functionsome sort of error with the file extension or lack thereofthe _Whole Screento alphavaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: gimp Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-11-29 12:03+0900 Last-Translator: Jan Morén Language-Team: Swedish diff -uraN gimp-2.2.0/po-plug-ins/sv.po gimp-2.2.1/po-plug-ins/sv.po --- gimp-2.2.0/po-plug-ins/sv.po 2004-12-19 03:34:19.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/sv.po 2004-12-28 16:59:03.000000000 +0100 @@ -4,13 +4,13 @@ # Christian Rose , 2000, 2001, 2002. # Jan Morén , 2002, 2003. # -# $Id: sv.po,v 1.137 2004/11/29 03:03:04 JanneM Exp $ +# $Id: sv.po,v 1.138 2004/12/19 02:37:25 neo Exp $ # msgid "" msgstr "" "Project-Id-Version: gimp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-11-29 12:03+0900\n" "Last-Translator: Jan Morén \n" "Language-Team: Swedish \n" @@ -960,7 +960,7 @@ msgid "Antialiasing quality. Higher is better, but slower" msgstr "Kvalitet på kantutjämning. Högre är bättre, men långsammare" -#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:720 +#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:691 #: plug-ins/common/wind.c:993 plug-ins/imagemap/imap_preferences.c:539 msgid "_Threshold:" msgstr "_Tröskelvärde:" @@ -2083,12 +2083,12 @@ msgstr "Orientering" #: plug-ins/common/blinds.c:259 plug-ins/common/ripple.c:539 -#: plug-ins/common/tileit.c:419 plug-ins/pagecurl/pagecurl.c:530 +#: plug-ins/common/tileit.c:418 plug-ins/pagecurl/pagecurl.c:530 msgid "_Horizontal" msgstr "_Horisontell" #: plug-ins/common/blinds.c:260 plug-ins/common/ripple.c:540 -#: plug-ins/common/tileit.c:429 plug-ins/pagecurl/pagecurl.c:529 +#: plug-ins/common/tileit.c:428 plug-ins/pagecurl/pagecurl.c:529 msgid "_Vertical" msgstr "_Vertikal" @@ -2109,7 +2109,7 @@ msgid "_Blur" msgstr "Gör _suddig" -#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:383 +#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:432 msgid "Blurring..." msgstr "Gör suddig..." @@ -2221,23 +2221,23 @@ msgid "Ca_rtoon..." msgstr "Serieteckning" -#: plug-ins/common/cartoon.c:228 plug-ins/common/dog.c:246 -#: plug-ins/common/gauss.c:430 plug-ins/common/neon.c:222 -#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:203 +#: plug-ins/common/cartoon.c:229 plug-ins/common/dog.c:247 +#: plug-ins/common/gauss.c:431 plug-ins/common/neon.c:221 +#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:204 #: plug-ins/common/softglow.c:220 plug-ins/gflare/gflare.c:972 #: plug-ins/sgi/sgi.c:528 plug-ins/xjt/xjt.c:1673 msgid "Cannot operate on indexed color images." msgstr "Kan inte arbeta med indexerade färgbilder." -#: plug-ins/common/cartoon.c:807 +#: plug-ins/common/cartoon.c:808 msgid "Cartoon" msgstr "Serieteckning" -#: plug-ins/common/cartoon.c:837 plug-ins/common/photocopy.c:867 +#: plug-ins/common/cartoon.c:838 plug-ins/common/photocopy.c:867 msgid "_Mask radius:" msgstr "_maskradie:" -#: plug-ins/common/cartoon.c:851 +#: plug-ins/common/cartoon.c:852 msgid "_Percent black:" msgstr "_Procent svart:" @@ -2395,28 +2395,28 @@ msgid "Colorify Custom Color" msgstr "Kolorera egen färg" -#: plug-ins/common/colortoalpha.c:105 +#: plug-ins/common/colortoalpha.c:104 msgid "Color to _Alpha..." msgstr "Färg till _Alfa..." -#: plug-ins/common/colortoalpha.c:183 +#: plug-ins/common/colortoalpha.c:181 msgid "Removing color..." msgstr "Tar bort färg..." -#: plug-ins/common/colortoalpha.c:364 +#: plug-ins/common/colortoalpha.c:377 msgid "Color to Alpha" msgstr "Färg till Alfa" -#: plug-ins/common/colortoalpha.c:389 plug-ins/common/mapcolor.c:424 +#: plug-ins/common/colortoalpha.c:402 plug-ins/common/mapcolor.c:424 #: plug-ins/gfli/gfli.c:835 plug-ins/gfli/gfli.c:898 msgid "From:" msgstr "Från:" -#: plug-ins/common/colortoalpha.c:393 +#: plug-ins/common/colortoalpha.c:406 msgid "Color to Alpha Color Picker" msgstr "Färg till Alfa färghämtare" -#: plug-ins/common/colortoalpha.c:407 +#: plug-ins/common/colortoalpha.c:420 msgid "to alpha" msgstr "till Alfa" @@ -2730,23 +2730,23 @@ msgid "_Cubism..." msgstr "_Kubism..." -#: plug-ins/common/cubism.c:267 +#: plug-ins/common/cubism.c:269 msgid "Cubism" msgstr "Kubism" -#: plug-ins/common/cubism.c:296 +#: plug-ins/common/cubism.c:298 msgid "_Tile size:" msgstr "_Platt-storlek:" -#: plug-ins/common/cubism.c:309 +#: plug-ins/common/cubism.c:311 msgid "T_ile saturation:" msgstr "P_latt-mättnad:" -#: plug-ins/common/cubism.c:320 +#: plug-ins/common/cubism.c:322 msgid "_Use background color" msgstr "_Använd Bakgrundsfärg" -#: plug-ins/common/cubism.c:410 +#: plug-ins/common/cubism.c:412 msgid "Cubistic Transformation..." msgstr "Kubistisk transformation..." @@ -3114,42 +3114,42 @@ msgid "Des_peckle..." msgstr "Damm och _repor..." -#: plug-ins/common/despeckle.c:420 plug-ins/common/despeckle.c:642 +#: plug-ins/common/despeckle.c:418 plug-ins/common/despeckle.c:640 msgid "Despeckle" msgstr "Damm och repor" #. #. * Filter type controls... #. -#: plug-ins/common/despeckle.c:446 plug-ins/gimpressionist/orientmap.c:616 +#: plug-ins/common/despeckle.c:444 plug-ins/gimpressionist/orientmap.c:616 msgid "Type" msgstr "Typ" #. parameter settings -#: plug-ins/common/despeckle.c:456 +#: plug-ins/common/despeckle.c:454 msgid "Median" msgstr "Median" -#: plug-ins/common/despeckle.c:462 +#: plug-ins/common/despeckle.c:460 msgid "_Adaptive" msgstr "_Adaptivt" -#: plug-ins/common/despeckle.c:472 +#: plug-ins/common/despeckle.c:470 msgid "R_ecursive" msgstr "R_ekursivt" -#: plug-ins/common/despeckle.c:496 plug-ins/common/neon.c:728 +#: plug-ins/common/despeckle.c:494 plug-ins/common/neon.c:727 #: plug-ins/common/nlfilt.c:1083 plug-ins/common/nova.c:359 -#: plug-ins/common/unsharp.c:694 plug-ins/common/whirlpinch.c:588 +#: plug-ins/common/unsharp.c:665 plug-ins/common/whirlpinch.c:588 #: plug-ins/gflare/gflare.c:2686 plug-ins/imagemap/imap_circle.c:278 msgid "_Radius:" msgstr "_Radie:" -#: plug-ins/common/despeckle.c:512 +#: plug-ins/common/despeckle.c:510 msgid "_Black level:" msgstr "_Svartnivå:" -#: plug-ins/common/despeckle.c:528 +#: plug-ins/common/despeckle.c:526 msgid "_White level:" msgstr "_Vitnivå:" @@ -3235,7 +3235,7 @@ msgid "_Displace..." msgstr "_Förskjuter..." -#: plug-ins/common/displace.c:228 +#: plug-ins/common/displace.c:231 msgid "Displacing..." msgstr "Förskjuter..." @@ -3272,27 +3272,27 @@ msgid "Difference of Gaussians..." msgstr "Gaussisk differens..." -#: plug-ins/common/dog.c:222 plug-ins/common/dog.c:273 +#: plug-ins/common/dog.c:227 plug-ins/common/dog.c:274 msgid "DoG Edge Detect" msgstr "DoG kantdetektion" -#: plug-ins/common/dog.c:294 +#: plug-ins/common/dog.c:295 msgid "Smoothing parameters" msgstr "Utjämningssparametrar" -#: plug-ins/common/dog.c:308 +#: plug-ins/common/dog.c:309 msgid "_Radius 1:" msgstr "_Radie 1:" -#: plug-ins/common/dog.c:312 +#: plug-ins/common/dog.c:313 msgid "R_adius 2:" msgstr "R_adie 2:" -#: plug-ins/common/dog.c:324 plug-ins/common/normalize.c:88 +#: plug-ins/common/dog.c:325 plug-ins/common/normalize.c:88 msgid "_Normalize" msgstr "_Normalisera" -#: plug-ins/common/dog.c:335 plug-ins/gimpressionist/paper.c:149 +#: plug-ins/common/dog.c:336 plug-ins/gimpressionist/paper.c:149 msgid "_Invert" msgstr "_Invertera" @@ -3345,7 +3345,7 @@ msgid "_Emboss..." msgstr "_Ciselera..." -#: plug-ins/common/emboss.c:374 plug-ins/common/emboss.c:439 +#: plug-ins/common/emboss.c:376 plug-ins/common/emboss.c:439 msgid "Emboss" msgstr "Ciselera" @@ -3369,7 +3369,7 @@ msgid "En_grave..." msgstr "_Gravera..." -#: plug-ins/common/engrave.c:181 +#: plug-ins/common/engrave.c:182 msgid "Engraving..." msgstr "Graverar..." @@ -3773,38 +3773,38 @@ msgid "_Gaussian Blur..." msgstr "_Gaussisk oskärpa..." -#: plug-ins/common/gauss.c:407 +#: plug-ins/common/gauss.c:413 msgid "Gaussian Blur..." msgstr "Gaussisk oskärpa..." -#: plug-ins/common/gauss.c:460 +#: plug-ins/common/gauss.c:461 msgid "Gaussian Blur" msgstr "Gaussisk oskärpa" #. parameter settings -#: plug-ins/common/gauss.c:483 +#: plug-ins/common/gauss.c:484 msgid "Blur Radius" msgstr "Oskärperadie" -#: plug-ins/common/gauss.c:497 plug-ins/common/jigsaw.c:2456 -#: plug-ins/common/spread.c:378 +#: plug-ins/common/gauss.c:498 plug-ins/common/jigsaw.c:2456 +#: plug-ins/common/spread.c:379 msgid "_Horizontal:" msgstr "_Horisontell:" -#: plug-ins/common/gauss.c:501 plug-ins/common/jigsaw.c:2473 -#: plug-ins/common/spread.c:382 +#: plug-ins/common/gauss.c:502 plug-ins/common/jigsaw.c:2473 +#: plug-ins/common/spread.c:383 msgid "_Vertical:" msgstr "_Vertikal:" -#: plug-ins/common/gauss.c:524 +#: plug-ins/common/gauss.c:525 msgid "Blur Method" msgstr "Oskärpetyp" -#: plug-ins/common/gauss.c:528 +#: plug-ins/common/gauss.c:529 msgid "_IIR" msgstr "_IIR" -#: plug-ins/common/gauss.c:529 +#: plug-ins/common/gauss.c:530 msgid "_RLE" msgstr "_RLE" @@ -4107,19 +4107,19 @@ msgid "_Glass Tile..." msgstr "_Glasplattor..." -#: plug-ins/common/glasstile.c:208 +#: plug-ins/common/glasstile.c:209 msgid "Glass Tile..." msgstr "Glasplattor..." -#: plug-ins/common/glasstile.c:251 +#: plug-ins/common/glasstile.c:250 msgid "Glass Tile" msgstr "Glasplattor" -#: plug-ins/common/glasstile.c:282 +#: plug-ins/common/glasstile.c:281 msgid "Tile _width:" msgstr "Platt_bredd:" -#: plug-ins/common/glasstile.c:296 plug-ins/common/mosaic.c:621 +#: plug-ins/common/glasstile.c:295 plug-ins/common/mosaic.c:621 msgid "Tile _height:" msgstr "Platt_höjd:" @@ -5106,15 +5106,15 @@ msgid "_Neon..." msgstr "_Neon..." -#: plug-ins/common/neon.c:204 +#: plug-ins/common/neon.c:207 msgid "Neon..." msgstr "Neon..." -#: plug-ins/common/neon.c:698 +#: plug-ins/common/neon.c:697 msgid "Neon Detection" msgstr "Neondetektion" -#: plug-ins/common/neon.c:743 plug-ins/common/unsharp.c:707 +#: plug-ins/common/neon.c:742 plug-ins/common/unsharp.c:678 msgid "_Amount:" msgstr "_Mängd:" @@ -5273,7 +5273,7 @@ msgid "_Scatter RGB..." msgstr "_Skingrar RGB..." -#: plug-ins/common/noisify.c:284 +#: plug-ins/common/noisify.c:285 msgid "Adding Noise..." msgstr "Lägger till brus..." @@ -5342,7 +5342,7 @@ msgid "Oili_fy..." msgstr "_Olja..." -#: plug-ins/common/oilify.c:188 +#: plug-ins/common/oilify.c:189 msgid "Oil Painting..." msgstr "Oljemålning..." @@ -5477,7 +5477,7 @@ msgid "Photocopy" msgstr "Fotokopia" -#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:513 +#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:509 #: plug-ins/common/softglow.c:687 msgid "_Sharpness:" msgstr "_Skärpa:" @@ -6113,7 +6113,7 @@ msgid "_Ripple..." msgstr "_Krusar..." -#: plug-ins/common/ripple.c:219 +#: plug-ins/common/ripple.c:222 msgid "Rippling..." msgstr "Krusar..." @@ -6331,19 +6331,19 @@ msgid "_Selective Gaussian Blur..." msgstr "_Selektiv Gaussisk oskärpa..." -#: plug-ins/common/sel_gauss.c:186 +#: plug-ins/common/sel_gauss.c:187 msgid "Selective Gaussian Blur..." msgstr "Selektiv Gaussisk oskärpa..." -#: plug-ins/common/sel_gauss.c:224 +#: plug-ins/common/sel_gauss.c:225 msgid "Selective Gaussian Blur" msgstr "Selektiv Gaussisk oskärpa" -#: plug-ins/common/sel_gauss.c:256 +#: plug-ins/common/sel_gauss.c:257 msgid "_Blur radius:" msgstr "_Oskärperadie:" -#: plug-ins/common/sel_gauss.c:266 +#: plug-ins/common/sel_gauss.c:267 msgid "_Max. delta:" msgstr "_Max delta:" @@ -6362,11 +6362,11 @@ #. #. * Let the user know what we're doing... #. -#: plug-ins/common/sharpen.c:315 +#: plug-ins/common/sharpen.c:311 msgid "Sharpening..." msgstr "Gör skarpare..." -#: plug-ins/common/sharpen.c:484 +#: plug-ins/common/sharpen.c:480 msgid "Sharpen" msgstr "Gör skarpare" @@ -6374,7 +6374,7 @@ msgid "_Shift..." msgstr "_Skiftar..." -#: plug-ins/common/shift.c:191 +#: plug-ins/common/shift.c:194 msgid "Shifting..." msgstr "Skiftar..." @@ -6571,23 +6571,23 @@ msgid "_Sobel..." msgstr "_Sobel..." -#: plug-ins/common/sobel.c:226 +#: plug-ins/common/sobel.c:227 msgid "Sobel Edge Detection" msgstr "Sobel kantdetektion" -#: plug-ins/common/sobel.c:248 +#: plug-ins/common/sobel.c:249 msgid "Sobel _Horizontally" msgstr "Sobel _horisontellt" -#: plug-ins/common/sobel.c:260 +#: plug-ins/common/sobel.c:261 msgid "Sobel _Vertically" msgstr "Sobel _vertikalt" -#: plug-ins/common/sobel.c:272 +#: plug-ins/common/sobel.c:273 msgid "_Keep sign of result (one direction only)" msgstr "_Behåll tecken på resultatet (i endast en riktning)" -#: plug-ins/common/sobel.c:358 +#: plug-ins/common/sobel.c:359 msgid "Sobel Edge Detecting..." msgstr "Sobel kantdetekterar..." @@ -6885,15 +6885,15 @@ msgid "Sp_read..." msgstr "Sp_rider..." -#: plug-ins/common/spread.c:179 +#: plug-ins/common/spread.c:182 msgid "Spreading..." msgstr "Sprider..." -#: plug-ins/common/spread.c:345 +#: plug-ins/common/spread.c:346 msgid "Spread" msgstr "Sprid" -#: plug-ins/common/spread.c:363 +#: plug-ins/common/spread.c:364 msgid "Spread Amount" msgstr "Spridningsmängd" @@ -7180,7 +7180,8 @@ msgid "_Tile..." msgstr "_Plattlägg..." -#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:321 +#. Set the tile cache size +#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:320 msgid "Tiling..." msgstr "Plattlägger..." @@ -7202,42 +7203,42 @@ msgstr "_Små plattor..." #. Get the preview image -#: plug-ins/common/tileit.c:364 +#: plug-ins/common/tileit.c:363 msgid "TileIt" msgstr "PlattLägg" #. Area for buttons etc #. Flip -#: plug-ins/common/tileit.c:407 plug-ins/ifscompose/ifscompose.c:628 +#: plug-ins/common/tileit.c:406 plug-ins/ifscompose/ifscompose.c:628 msgid "Flip" msgstr "Vänd" -#: plug-ins/common/tileit.c:455 +#: plug-ins/common/tileit.c:454 msgid "A_ll tiles" msgstr "A_lla plattor" -#: plug-ins/common/tileit.c:469 +#: plug-ins/common/tileit.c:468 msgid "Al_ternate tiles" msgstr "Al_ternerande plattor" -#: plug-ins/common/tileit.c:483 +#: plug-ins/common/tileit.c:482 msgid "_Explicit tile" msgstr "_Explicit platta" -#: plug-ins/common/tileit.c:489 +#: plug-ins/common/tileit.c:488 msgid "Ro_w:" msgstr "R_ad:" -#: plug-ins/common/tileit.c:513 +#: plug-ins/common/tileit.c:512 msgid "Col_umn:" msgstr "K_olumn:" -#: plug-ins/common/tileit.c:565 +#: plug-ins/common/tileit.c:564 msgid "O_pacity:" msgstr "O_pacitet:" #. Lower frame saying howmany segments -#: plug-ins/common/tileit.c:574 +#: plug-ins/common/tileit.c:573 msgid "Number of Segments" msgstr "Antal segment:" @@ -7386,15 +7387,15 @@ msgid "Unit Editor" msgstr "Enhetseditor" -#: plug-ins/common/unsharp.c:149 +#: plug-ins/common/unsharp.c:143 msgid "_Unsharp Mask..." msgstr "_Oskarp mask..." -#: plug-ins/common/unsharp.c:493 +#: plug-ins/common/unsharp.c:468 msgid "Merging..." msgstr "Lägger ihop..." -#: plug-ins/common/unsharp.c:664 +#: plug-ins/common/unsharp.c:635 msgid "Unsharp Mask" msgstr "Oskarp mask" @@ -8433,19 +8434,19 @@ msgid "_Zoom:" msgstr "_Zooma:" -#: plug-ins/gfig/gfig-bezier.c:452 +#: plug-ins/gfig/gfig-bezier.c:448 msgid "Closed" msgstr "Sluten" -#: plug-ins/gfig/gfig-bezier.c:457 +#: plug-ins/gfig/gfig-bezier.c:453 msgid "Close curve on completion" msgstr "Slut kurvan när den är färdig" -#: plug-ins/gfig/gfig-bezier.c:462 +#: plug-ins/gfig/gfig-bezier.c:458 msgid "Show Line Frame" msgstr "Visa linjeram" -#: plug-ins/gfig/gfig-bezier.c:467 +#: plug-ins/gfig/gfig-bezier.c:463 msgid "Draws lines between the control points. Only during curve creation" msgstr "Ritar linjer mellan kontrollpunkterna. Endast när kurvan skapas" diff -uraN gimp-2.2.0/po-plug-ins/tr.gmo gimp-2.2.1/po-plug-ins/tr.gmo --- gimp-2.2.0/po-plug-ins/tr.gmo 2004-12-19 03:34:25.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/tr.gmo 2004-12-28 16:59:09.000000000 +0100 @@ -25,7 +25,7 @@  iJ};cX/ 51&dM_y%v)4? :HVR7kZ3fPBmD<,gWKC FEY=zN\`~]To6Sw>bp+ 2q-#h!L*|0O (QG$.t@aux^UsAI[j lnr8"e'{9A_nimateA_utomaticAboutActionAd_vancedAngle:Animated GIF OptionsAuthor:AutomaticBackgroundBackground:Bad colormapBlackBlueBlue:Bottom:C_ylinderChannelsClearCo_lor:Co_lorsCo_mment:ColorColorsCommentComposeCopyCopyright:Cro_pCu_rve:CutDate:DefaultDeleteDelete PointDescription:Dimension:Direction VectorDirectionalEditFileFilename:Filename: %sForegroundFrame %dFromFrom:GIF OptionsGIF WarningGIMP Plug-InGeneralGr_eyGrayGreenGreen:GridHTML Page OptionsHeight:HorizontalHorizontal ColorHotI_nteractiveIntensity LevelsIntersectionIntersection ColorL_ength:LandscapeLeft:LightLighting EffectsLinearLogarithmicMandelbrot ParametersManualMoveNameNoneNumber of ColorsNumber of _Frames:Number of colors:O_ptionsO_rientationO_thersOp_tionsOpenOptionsOrientationPastePixelsPointPortraitPositionPreferencesPreviewR_ecursiveR_epeat:Re_dRedRed:RedoReflectivityReplaceRight:Rotat_e:S_hrinkSaveSaving '%s'...Sc_attering:ScreenSelectSelect AllSet light source colorShowSinusoidalSizeSize:Spacing:SphericalTable Creation OptionsTable OptionsToTo:Top:TransparentTypeType of light source to applyType:UndoUnnamedUntitledValueVerticalVertical ColorWarningWhiteWidth:X:X_1:X_2:Y:Y_1:Y_2:YellowZ:Zoom inZoom out_Advanced_Amount:_Animate_Black_Blue_Blue:_Border:_Bottom:_Brightness:_Copy_Depth:_Font:_Free_Gradient_Green_Green:_Grow_Height:_Horizontal_Laplace_Light_Material_Mirror_None_Parameters_Ping Pong_Preview!_Red:_Settings_Size:_Top:_Transparent_Update_Upper_Vertical_Width:_X:_Y:_Z:afterpixelsProject-Id-Version: GIMP 1.2.1 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2003-12-31 17:49+0000 Last-Translator: Fatih Demir Language-Team: Turkish diff -uraN gimp-2.2.0/po-plug-ins/tr.po gimp-2.2.1/po-plug-ins/tr.po --- gimp-2.2.0/po-plug-ins/tr.po 2004-12-19 03:34:19.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/tr.po 2004-12-28 16:59:03.000000000 +0100 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: GIMP 1.2.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2003-12-31 17:49+0000\n" "Last-Translator: Fatih Demir \n" "Language-Team: Turkish \n" @@ -958,7 +958,7 @@ msgid "Antialiasing quality. Higher is better, but slower" msgstr "" -#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:720 +#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:691 #: plug-ins/common/wind.c:993 plug-ins/imagemap/imap_preferences.c:539 msgid "_Threshold:" msgstr "" @@ -2119,12 +2119,12 @@ msgstr "Konum" #: plug-ins/common/blinds.c:259 plug-ins/common/ripple.c:539 -#: plug-ins/common/tileit.c:419 plug-ins/pagecurl/pagecurl.c:530 +#: plug-ins/common/tileit.c:418 plug-ins/pagecurl/pagecurl.c:530 msgid "_Horizontal" msgstr "_Yatay" #: plug-ins/common/blinds.c:260 plug-ins/common/ripple.c:540 -#: plug-ins/common/tileit.c:429 plug-ins/pagecurl/pagecurl.c:529 +#: plug-ins/common/tileit.c:428 plug-ins/pagecurl/pagecurl.c:529 msgid "_Vertical" msgstr "_Dikey" @@ -2147,7 +2147,7 @@ msgid "_Blur" msgstr "Bulanık" -#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:383 +#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:432 msgid "Blurring..." msgstr "" @@ -2262,25 +2262,25 @@ msgid "Ca_rtoon..." msgstr "Seçenekler" -#: plug-ins/common/cartoon.c:228 plug-ins/common/dog.c:246 -#: plug-ins/common/gauss.c:430 plug-ins/common/neon.c:222 -#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:203 +#: plug-ins/common/cartoon.c:229 plug-ins/common/dog.c:247 +#: plug-ins/common/gauss.c:431 plug-ins/common/neon.c:221 +#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:204 #: plug-ins/common/softglow.c:220 plug-ins/gflare/gflare.c:972 #: plug-ins/sgi/sgi.c:528 plug-ins/xjt/xjt.c:1673 msgid "Cannot operate on indexed color images." msgstr "" -#: plug-ins/common/cartoon.c:807 +#: plug-ins/common/cartoon.c:808 #, fuzzy msgid "Cartoon" msgstr "Seçenekler" -#: plug-ins/common/cartoon.c:837 plug-ins/common/photocopy.c:867 +#: plug-ins/common/cartoon.c:838 plug-ins/common/photocopy.c:867 #, fuzzy msgid "_Mask radius:" msgstr "Büyüklük:" -#: plug-ins/common/cartoon.c:851 +#: plug-ins/common/cartoon.c:852 msgid "_Percent black:" msgstr "" @@ -2443,28 +2443,28 @@ msgid "Colorify Custom Color" msgstr "" -#: plug-ins/common/colortoalpha.c:105 +#: plug-ins/common/colortoalpha.c:104 msgid "Color to _Alpha..." msgstr "" -#: plug-ins/common/colortoalpha.c:183 +#: plug-ins/common/colortoalpha.c:181 msgid "Removing color..." msgstr "" -#: plug-ins/common/colortoalpha.c:364 +#: plug-ins/common/colortoalpha.c:377 msgid "Color to Alpha" msgstr "" -#: plug-ins/common/colortoalpha.c:389 plug-ins/common/mapcolor.c:424 +#: plug-ins/common/colortoalpha.c:402 plug-ins/common/mapcolor.c:424 #: plug-ins/gfli/gfli.c:835 plug-ins/gfli/gfli.c:898 msgid "From:" msgstr "Kaynak:" -#: plug-ins/common/colortoalpha.c:393 +#: plug-ins/common/colortoalpha.c:406 msgid "Color to Alpha Color Picker" msgstr "" -#: plug-ins/common/colortoalpha.c:407 +#: plug-ins/common/colortoalpha.c:420 msgid "to alpha" msgstr "" @@ -2778,26 +2778,26 @@ msgid "_Cubism..." msgstr "" -#: plug-ins/common/cubism.c:267 +#: plug-ins/common/cubism.c:269 msgid "Cubism" msgstr "" -#: plug-ins/common/cubism.c:296 +#: plug-ins/common/cubism.c:298 #, fuzzy msgid "_Tile size:" msgstr "Döşeme _Boyutu:" -#: plug-ins/common/cubism.c:309 +#: plug-ins/common/cubism.c:311 #, fuzzy msgid "T_ile saturation:" msgstr "Konum" -#: plug-ins/common/cubism.c:320 +#: plug-ins/common/cubism.c:322 #, fuzzy msgid "_Use background color" msgstr "Arkaplan R_engi Kullan" -#: plug-ins/common/cubism.c:410 +#: plug-ins/common/cubism.c:412 msgid "Cubistic Transformation..." msgstr "" @@ -3172,44 +3172,44 @@ msgid "Des_peckle..." msgstr "" -#: plug-ins/common/despeckle.c:420 plug-ins/common/despeckle.c:642 +#: plug-ins/common/despeckle.c:418 plug-ins/common/despeckle.c:640 msgid "Despeckle" msgstr "" #. #. * Filter type controls... #. -#: plug-ins/common/despeckle.c:446 plug-ins/gimpressionist/orientmap.c:616 +#: plug-ins/common/despeckle.c:444 plug-ins/gimpressionist/orientmap.c:616 msgid "Type" msgstr "Tip" #. parameter settings -#: plug-ins/common/despeckle.c:456 +#: plug-ins/common/despeckle.c:454 #, fuzzy msgid "Median" msgstr "Taşı" -#: plug-ins/common/despeckle.c:462 +#: plug-ins/common/despeckle.c:460 msgid "_Adaptive" msgstr "" -#: plug-ins/common/despeckle.c:472 +#: plug-ins/common/despeckle.c:470 msgid "R_ecursive" msgstr "Ö_zyineli" -#: plug-ins/common/despeckle.c:496 plug-ins/common/neon.c:728 +#: plug-ins/common/despeckle.c:494 plug-ins/common/neon.c:727 #: plug-ins/common/nlfilt.c:1083 plug-ins/common/nova.c:359 -#: plug-ins/common/unsharp.c:694 plug-ins/common/whirlpinch.c:588 +#: plug-ins/common/unsharp.c:665 plug-ins/common/whirlpinch.c:588 #: plug-ins/gflare/gflare.c:2686 plug-ins/imagemap/imap_circle.c:278 msgid "_Radius:" msgstr "" -#: plug-ins/common/despeckle.c:512 +#: plug-ins/common/despeckle.c:510 #, fuzzy msgid "_Black level:" msgstr "Siyah" -#: plug-ins/common/despeckle.c:528 +#: plug-ins/common/despeckle.c:526 #, fuzzy msgid "_White level:" msgstr "Beyaz" @@ -3303,7 +3303,7 @@ msgid "_Displace..." msgstr "Göster" -#: plug-ins/common/displace.c:228 +#: plug-ins/common/displace.c:231 msgid "Displacing..." msgstr "" @@ -3340,29 +3340,29 @@ msgid "Difference of Gaussians..." msgstr "" -#: plug-ins/common/dog.c:222 plug-ins/common/dog.c:273 +#: plug-ins/common/dog.c:227 plug-ins/common/dog.c:274 msgid "DoG Edge Detect" msgstr "" -#: plug-ins/common/dog.c:294 +#: plug-ins/common/dog.c:295 #, fuzzy msgid "Smoothing parameters" msgstr "_Parametreler" -#: plug-ins/common/dog.c:308 +#: plug-ins/common/dog.c:309 msgid "_Radius 1:" msgstr "" -#: plug-ins/common/dog.c:312 +#: plug-ins/common/dog.c:313 msgid "R_adius 2:" msgstr "" -#: plug-ins/common/dog.c:324 plug-ins/common/normalize.c:88 +#: plug-ins/common/dog.c:325 plug-ins/common/normalize.c:88 #, fuzzy msgid "_Normalize" msgstr "Biçim" -#: plug-ins/common/dog.c:335 plug-ins/gimpressionist/paper.c:149 +#: plug-ins/common/dog.c:336 plug-ins/gimpressionist/paper.c:149 msgid "_Invert" msgstr "" @@ -3421,7 +3421,7 @@ msgid "_Emboss..." msgstr "Hakkında..." -#: plug-ins/common/emboss.c:374 plug-ins/common/emboss.c:439 +#: plug-ins/common/emboss.c:376 plug-ins/common/emboss.c:439 msgid "Emboss" msgstr "" @@ -3445,7 +3445,7 @@ msgid "En_grave..." msgstr "" -#: plug-ins/common/engrave.c:181 +#: plug-ins/common/engrave.c:182 msgid "Engraving..." msgstr "" @@ -3868,41 +3868,41 @@ msgid "_Gaussian Blur..." msgstr "Bulanık" -#: plug-ins/common/gauss.c:407 +#: plug-ins/common/gauss.c:413 #, fuzzy msgid "Gaussian Blur..." msgstr "Bulanık" -#: plug-ins/common/gauss.c:460 +#: plug-ins/common/gauss.c:461 msgid "Gaussian Blur" msgstr "" #. parameter settings -#: plug-ins/common/gauss.c:483 +#: plug-ins/common/gauss.c:484 msgid "Blur Radius" msgstr "" -#: plug-ins/common/gauss.c:497 plug-ins/common/jigsaw.c:2456 -#: plug-ins/common/spread.c:378 +#: plug-ins/common/gauss.c:498 plug-ins/common/jigsaw.c:2456 +#: plug-ins/common/spread.c:379 #, fuzzy msgid "_Horizontal:" msgstr "Ufki" -#: plug-ins/common/gauss.c:501 plug-ins/common/jigsaw.c:2473 -#: plug-ins/common/spread.c:382 +#: plug-ins/common/gauss.c:502 plug-ins/common/jigsaw.c:2473 +#: plug-ins/common/spread.c:383 #, fuzzy msgid "_Vertical:" msgstr "Dikey:" -#: plug-ins/common/gauss.c:524 +#: plug-ins/common/gauss.c:525 msgid "Blur Method" msgstr "" -#: plug-ins/common/gauss.c:528 +#: plug-ins/common/gauss.c:529 msgid "_IIR" msgstr "" -#: plug-ins/common/gauss.c:529 +#: plug-ins/common/gauss.c:530 msgid "_RLE" msgstr "" @@ -4194,20 +4194,20 @@ msgid "_Glass Tile..." msgstr "" -#: plug-ins/common/glasstile.c:208 +#: plug-ins/common/glasstile.c:209 msgid "Glass Tile..." msgstr "" -#: plug-ins/common/glasstile.c:251 +#: plug-ins/common/glasstile.c:250 msgid "Glass Tile" msgstr "" -#: plug-ins/common/glasstile.c:282 +#: plug-ins/common/glasstile.c:281 #, fuzzy msgid "Tile _width:" msgstr "Yeni Genişlik:" -#: plug-ins/common/glasstile.c:296 plug-ins/common/mosaic.c:621 +#: plug-ins/common/glasstile.c:295 plug-ins/common/mosaic.c:621 #, fuzzy msgid "Tile _height:" msgstr "Yükseklik:" @@ -5236,17 +5236,17 @@ msgid "_Neon..." msgstr "Hakkında..." -#: plug-ins/common/neon.c:204 +#: plug-ins/common/neon.c:207 #, fuzzy msgid "Neon..." msgstr "Hakkında..." -#: plug-ins/common/neon.c:698 +#: plug-ins/common/neon.c:697 #, fuzzy msgid "Neon Detection" msgstr "Seçim:" -#: plug-ins/common/neon.c:743 plug-ins/common/unsharp.c:707 +#: plug-ins/common/neon.c:742 plug-ins/common/unsharp.c:678 msgid "_Amount:" msgstr "_Miktar:" @@ -5414,7 +5414,7 @@ msgid "_Scatter RGB..." msgstr "Boşluk:" -#: plug-ins/common/noisify.c:284 +#: plug-ins/common/noisify.c:285 msgid "Adding Noise..." msgstr "" @@ -5487,7 +5487,7 @@ msgid "Oili_fy..." msgstr "" -#: plug-ins/common/oilify.c:188 +#: plug-ins/common/oilify.c:189 msgid "Oil Painting..." msgstr "" @@ -5630,7 +5630,7 @@ msgid "Photocopy" msgstr "" -#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:513 +#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:509 #: plug-ins/common/softglow.c:687 msgid "_Sharpness:" msgstr "" @@ -6282,7 +6282,7 @@ msgid "_Ripple..." msgstr "" -#: plug-ins/common/ripple.c:219 +#: plug-ins/common/ripple.c:222 msgid "Rippling..." msgstr "" @@ -6516,19 +6516,19 @@ msgid "_Selective Gaussian Blur..." msgstr "" -#: plug-ins/common/sel_gauss.c:186 +#: plug-ins/common/sel_gauss.c:187 msgid "Selective Gaussian Blur..." msgstr "" -#: plug-ins/common/sel_gauss.c:224 +#: plug-ins/common/sel_gauss.c:225 msgid "Selective Gaussian Blur" msgstr "" -#: plug-ins/common/sel_gauss.c:256 +#: plug-ins/common/sel_gauss.c:257 msgid "_Blur radius:" msgstr "" -#: plug-ins/common/sel_gauss.c:266 +#: plug-ins/common/sel_gauss.c:267 #, fuzzy msgid "_Max. delta:" msgstr "Azami Derinlik:" @@ -6549,11 +6549,11 @@ #. #. * Let the user know what we're doing... #. -#: plug-ins/common/sharpen.c:315 +#: plug-ins/common/sharpen.c:311 msgid "Sharpening..." msgstr "" -#: plug-ins/common/sharpen.c:484 +#: plug-ins/common/sharpen.c:480 #, fuzzy msgid "Sharpen" msgstr "Ekran" @@ -6562,7 +6562,7 @@ msgid "_Shift..." msgstr "" -#: plug-ins/common/shift.c:191 +#: plug-ins/common/shift.c:194 msgid "Shifting..." msgstr "" @@ -6774,25 +6774,25 @@ msgid "_Sobel..." msgstr "" -#: plug-ins/common/sobel.c:226 +#: plug-ins/common/sobel.c:227 msgid "Sobel Edge Detection" msgstr "" -#: plug-ins/common/sobel.c:248 +#: plug-ins/common/sobel.c:249 #, fuzzy msgid "Sobel _Horizontally" msgstr "Ufki" -#: plug-ins/common/sobel.c:260 +#: plug-ins/common/sobel.c:261 #, fuzzy msgid "Sobel _Vertically" msgstr "Dikey" -#: plug-ins/common/sobel.c:272 +#: plug-ins/common/sobel.c:273 msgid "_Keep sign of result (one direction only)" msgstr "" -#: plug-ins/common/sobel.c:358 +#: plug-ins/common/sobel.c:359 msgid "Sobel Edge Detecting..." msgstr "" @@ -7120,15 +7120,15 @@ msgid "Sp_read..." msgstr "" -#: plug-ins/common/spread.c:179 +#: plug-ins/common/spread.c:182 msgid "Spreading..." msgstr "" -#: plug-ins/common/spread.c:345 +#: plug-ins/common/spread.c:346 msgid "Spread" msgstr "" -#: plug-ins/common/spread.c:363 +#: plug-ins/common/spread.c:364 msgid "Spread Amount" msgstr "" @@ -7415,7 +7415,8 @@ msgid "_Tile..." msgstr "Mavi:" -#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:321 +#. Set the tile cache size +#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:320 msgid "Tiling..." msgstr "" @@ -7436,42 +7437,42 @@ msgstr "" #. Get the preview image -#: plug-ins/common/tileit.c:364 +#: plug-ins/common/tileit.c:363 msgid "TileIt" msgstr "" #. Area for buttons etc #. Flip -#: plug-ins/common/tileit.c:407 plug-ins/ifscompose/ifscompose.c:628 +#: plug-ins/common/tileit.c:406 plug-ins/ifscompose/ifscompose.c:628 msgid "Flip" msgstr "" -#: plug-ins/common/tileit.c:455 +#: plug-ins/common/tileit.c:454 msgid "A_ll tiles" msgstr "" -#: plug-ins/common/tileit.c:469 +#: plug-ins/common/tileit.c:468 msgid "Al_ternate tiles" msgstr "" -#: plug-ins/common/tileit.c:483 +#: plug-ins/common/tileit.c:482 msgid "_Explicit tile" msgstr "" -#: plug-ins/common/tileit.c:489 +#: plug-ins/common/tileit.c:488 msgid "Ro_w:" msgstr "" -#: plug-ins/common/tileit.c:513 +#: plug-ins/common/tileit.c:512 msgid "Col_umn:" msgstr "" -#: plug-ins/common/tileit.c:565 +#: plug-ins/common/tileit.c:564 msgid "O_pacity:" msgstr "" #. Lower frame saying howmany segments -#: plug-ins/common/tileit.c:574 +#: plug-ins/common/tileit.c:573 #, fuzzy msgid "Number of Segments" msgstr "_Çerçeve Sayısı:" @@ -7615,15 +7616,15 @@ msgid "Unit Editor" msgstr "" -#: plug-ins/common/unsharp.c:149 +#: plug-ins/common/unsharp.c:143 msgid "_Unsharp Mask..." msgstr "" -#: plug-ins/common/unsharp.c:493 +#: plug-ins/common/unsharp.c:468 msgid "Merging..." msgstr "" -#: plug-ins/common/unsharp.c:664 +#: plug-ins/common/unsharp.c:635 msgid "Unsharp Mask" msgstr "" @@ -8685,19 +8686,19 @@ msgid "_Zoom:" msgstr "Yakınlaş" -#: plug-ins/gfig/gfig-bezier.c:452 +#: plug-ins/gfig/gfig-bezier.c:448 msgid "Closed" msgstr "" -#: plug-ins/gfig/gfig-bezier.c:457 +#: plug-ins/gfig/gfig-bezier.c:453 msgid "Close curve on completion" msgstr "" -#: plug-ins/gfig/gfig-bezier.c:462 +#: plug-ins/gfig/gfig-bezier.c:458 msgid "Show Line Frame" msgstr "" -#: plug-ins/gfig/gfig-bezier.c:467 +#: plug-ins/gfig/gfig-bezier.c:463 msgid "Draws lines between the control points. Only during curve creation" msgstr "" diff -uraN gimp-2.2.0/po-plug-ins/uk.gmo gimp-2.2.1/po-plug-ins/uk.gmo --- gimp-2.2.0/po-plug-ins/uk.gmo 2004-12-19 03:34:25.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/uk.gmo 2004-12-28 16:59:09.000000000 +0100 @@ -262,7 +262,7 @@ which has no alpha channel.Z scale (size)Z:ZealousCropping(tm)...ZoomZoom inZoom in (make image bigger)Zoom outZoom out (make image smaller)_3x3_Abbreviation:_Adaptive_Additive_Advanced_Alpha_Alpha:_Amount:_Amplitude:_Angle:_Animate_Antialiasing_Automatically convert_Azimuth:_Background_Base URL:_Bilinear_Black_Blacken_Blast_Blend_Blue_Blue:_Border:_Bottom:_Box_Brightness_Brightness:_Brush_Bump Map_Bumpmap_Copy_Deflate_Depth:_Derivative_Description:_Detail:_Digits:_Displacement:_Distorted_Dots_Edit_Effect Image:_Elevation:_Emboss_Encapsulated PostScript_Entire Image_Environment Map_Exponent:_Factor:_File_Filename:_Font:_Force_Fractals_Free_Ftp Site_Gamma:_General_Gopher_Gradient_Gray:_Green_Green:_Grey_Grow_Height_Height:_Help_Hex_Hidden_Holdness:_Horizontal_Horizontal:_Horz. Spacing:_Hue_ID:_Ideal_Ignore_Inch_Input SPI:_Insert_Interlacing (Adam7)_Invert_JPEG_JavaScript_Keep NCSA circles true_Kill_LZW_Laplace_Large staggered_Left_Left Start at:_Light_Linear_Lines_Link_Lower_MIME_Mapping_Material_Max (%):_Max Depth:_Midtones_Millimeter_Mirror_Misc Ops._Monochrome_Move_No. Across:_None_Normal_Pack Bits_Parameters_Period:_Phase:_Ping Pong_Plural:_Polygon_Presets_Preview_Preview!_Prompt for area info_Psychobilly_RGB_RLE compression_RLE encoded_Radial_Radius:_Randomize_Rays_Recipient:_Rectangle_Red:_Redo %s_Reflective_Remove_Rendering_Require default URL_Right_Right Border_Rotated_Saturation_Saturation:_Search:_Second Flares_Sender:_Settings_Sharpness:_Size_Size:_Smear_Snap-To Grid Enabled_Speed:_Spokes:_Square_Squares_Staggered_Strength:_Symbol:_Target frame name/ID: (optional - used for FRAMES only)_Thickness:_Threshold_Threshold:_Title:_Tools_Top Start at:_Top:_Transparent_URL to activate when this area is clicked: (required)_Undo %s_Update_Upper_Upper Border_Use double-sized grab handles_Uuencode_Value_Value:_Variation:_Vert. Spacing:_Vertical_Vertical:_View_Voronoi_Warp_Waterlevel:_Wavelength:_Web Site_White_Wide-striped_Width_Width:_Wind_Wrap_X Scale:_X:_Y Scale:_Y:_Yellow_Z:_Zoom_Zoom:`Default' is created.a _Single Windowafteralphablackblueblueness_cb470blueness_cb470fblueness_cb709blueness_cb709fcmcyancyan_ke-_mailgreenhueinvalid formatted GFlare file: %s k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftpixels/%aredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsin^p, steppedsin^p-based functionsome sort of error with the file extension or lack thereofthe _Whole Screenvaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: gimp-plug-ins 2.0.0 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-04-16 20:58+0200 Last-Translator: Maxim Dziumanenko Language-Team: Ukrainian diff -uraN gimp-2.2.0/po-plug-ins/uk.po gimp-2.2.1/po-plug-ins/uk.po --- gimp-2.2.0/po-plug-ins/uk.po 2004-12-19 03:34:20.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/uk.po 2004-12-28 16:59:03.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: gimp-plug-ins 2.0.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-04-16 20:58+0200\n" "Last-Translator: Maxim Dziumanenko \n" "Language-Team: Ukrainian \n" @@ -988,7 +988,7 @@ msgid "Antialiasing quality. Higher is better, but slower" msgstr "Якість згладжування. Вища - краща, але повільніше виконується" -#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:720 +#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:691 #: plug-ins/common/wind.c:993 plug-ins/imagemap/imap_preferences.c:539 msgid "_Threshold:" msgstr "_Поріг:" @@ -2196,12 +2196,12 @@ msgstr "Орієнтація" #: plug-ins/common/blinds.c:259 plug-ins/common/ripple.c:539 -#: plug-ins/common/tileit.c:419 plug-ins/pagecurl/pagecurl.c:530 +#: plug-ins/common/tileit.c:418 plug-ins/pagecurl/pagecurl.c:530 msgid "_Horizontal" msgstr "Г_оризонтально" #: plug-ins/common/blinds.c:260 plug-ins/common/ripple.c:540 -#: plug-ins/common/tileit.c:429 plug-ins/pagecurl/pagecurl.c:529 +#: plug-ins/common/tileit.c:428 plug-ins/pagecurl/pagecurl.c:529 msgid "_Vertical" msgstr "_Вертикально" @@ -2224,7 +2224,7 @@ msgid "_Blur" msgstr "Розмивання" -#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:383 +#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:432 msgid "Blurring..." msgstr "Розмивання..." @@ -2345,25 +2345,25 @@ msgid "Ca_rtoon..." msgstr "_Підпис" -#: plug-ins/common/cartoon.c:228 plug-ins/common/dog.c:246 -#: plug-ins/common/gauss.c:430 plug-ins/common/neon.c:222 -#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:203 +#: plug-ins/common/cartoon.c:229 plug-ins/common/dog.c:247 +#: plug-ins/common/gauss.c:431 plug-ins/common/neon.c:221 +#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:204 #: plug-ins/common/softglow.c:220 plug-ins/gflare/gflare.c:972 #: plug-ins/sgi/sgi.c:528 plug-ins/xjt/xjt.c:1673 msgid "Cannot operate on indexed color images." msgstr "Не можна використовувати на індексованих зображеннях" -#: plug-ins/common/cartoon.c:807 +#: plug-ins/common/cartoon.c:808 #, fuzzy msgid "Cartoon" msgstr "_Підпис" -#: plug-ins/common/cartoon.c:837 plug-ins/common/photocopy.c:867 +#: plug-ins/common/cartoon.c:838 plug-ins/common/photocopy.c:867 #, fuzzy msgid "_Mask radius:" msgstr "_Радіус розмивання:" -#: plug-ins/common/cartoon.c:851 +#: plug-ins/common/cartoon.c:852 #, fuzzy msgid "_Percent black:" msgstr "Відсоток" @@ -2529,29 +2529,29 @@ msgid "Colorify Custom Color" msgstr "Фарбування вибраним кольором" -#: plug-ins/common/colortoalpha.c:105 +#: plug-ins/common/colortoalpha.c:104 #, fuzzy msgid "Color to _Alpha..." msgstr "Колір у альфа-канал" -#: plug-ins/common/colortoalpha.c:183 +#: plug-ins/common/colortoalpha.c:181 msgid "Removing color..." msgstr "Видалення кольору..." -#: plug-ins/common/colortoalpha.c:364 +#: plug-ins/common/colortoalpha.c:377 msgid "Color to Alpha" msgstr "Колір у альфа-канал" -#: plug-ins/common/colortoalpha.c:389 plug-ins/common/mapcolor.c:424 +#: plug-ins/common/colortoalpha.c:402 plug-ins/common/mapcolor.c:424 #: plug-ins/gfli/gfli.c:835 plug-ins/gfli/gfli.c:898 msgid "From:" msgstr "З:" -#: plug-ins/common/colortoalpha.c:393 +#: plug-ins/common/colortoalpha.c:406 msgid "Color to Alpha Color Picker" msgstr "Колір у альфа: зміна кольору" -#: plug-ins/common/colortoalpha.c:407 +#: plug-ins/common/colortoalpha.c:420 #, fuzzy msgid "to alpha" msgstr "у альфа-канал" @@ -2875,26 +2875,26 @@ msgid "_Cubism..." msgstr "Кубізм" -#: plug-ins/common/cubism.c:267 +#: plug-ins/common/cubism.c:269 msgid "Cubism" msgstr "Кубізм" -#: plug-ins/common/cubism.c:296 +#: plug-ins/common/cubism.c:298 #, fuzzy msgid "_Tile size:" msgstr "_Розмір елементу:" -#: plug-ins/common/cubism.c:309 +#: plug-ins/common/cubism.c:311 #, fuzzy msgid "T_ile saturation:" msgstr "_Насиченість елементу:" -#: plug-ins/common/cubism.c:320 +#: plug-ins/common/cubism.c:322 #, fuzzy msgid "_Use background color" msgstr "_Використовувати колір тла" -#: plug-ins/common/cubism.c:410 +#: plug-ins/common/cubism.c:412 #, fuzzy msgid "Cubistic Transformation..." msgstr "Кубістичне перетворення" @@ -3280,44 +3280,44 @@ msgid "Des_peckle..." msgstr "Прибирання плям" -#: plug-ins/common/despeckle.c:420 plug-ins/common/despeckle.c:642 +#: plug-ins/common/despeckle.c:418 plug-ins/common/despeckle.c:640 msgid "Despeckle" msgstr "Прибирання плям" #. #. * Filter type controls... #. -#: plug-ins/common/despeckle.c:446 plug-ins/gimpressionist/orientmap.c:616 +#: plug-ins/common/despeckle.c:444 plug-ins/gimpressionist/orientmap.c:616 msgid "Type" msgstr "Тип" #. parameter settings -#: plug-ins/common/despeckle.c:456 +#: plug-ins/common/despeckle.c:454 #, fuzzy msgid "Median" msgstr "Радіани" -#: plug-ins/common/despeckle.c:462 +#: plug-ins/common/despeckle.c:460 msgid "_Adaptive" msgstr "_Адаптивне" -#: plug-ins/common/despeckle.c:472 +#: plug-ins/common/despeckle.c:470 msgid "R_ecursive" msgstr "_Рекурсивне" -#: plug-ins/common/despeckle.c:496 plug-ins/common/neon.c:728 +#: plug-ins/common/despeckle.c:494 plug-ins/common/neon.c:727 #: plug-ins/common/nlfilt.c:1083 plug-ins/common/nova.c:359 -#: plug-ins/common/unsharp.c:694 plug-ins/common/whirlpinch.c:588 +#: plug-ins/common/unsharp.c:665 plug-ins/common/whirlpinch.c:588 #: plug-ins/gflare/gflare.c:2686 plug-ins/imagemap/imap_circle.c:278 msgid "_Radius:" msgstr "_Радіус:" -#: plug-ins/common/despeckle.c:512 +#: plug-ins/common/despeckle.c:510 #, fuzzy msgid "_Black level:" msgstr "Рівень _чорного:" -#: plug-ins/common/despeckle.c:528 +#: plug-ins/common/despeckle.c:526 #, fuzzy msgid "_White level:" msgstr "Рівень _білого:" @@ -3414,7 +3414,7 @@ msgid "_Displace..." msgstr "Зміщення..." -#: plug-ins/common/displace.c:228 +#: plug-ins/common/displace.c:231 msgid "Displacing..." msgstr "Зміщення..." @@ -3454,32 +3454,32 @@ msgid "Difference of Gaussians..." msgstr "Вибіркове Гаусеве розмивання..." -#: plug-ins/common/dog.c:222 plug-ins/common/dog.c:273 +#: plug-ins/common/dog.c:227 plug-ins/common/dog.c:274 #, fuzzy msgid "DoG Edge Detect" msgstr "Виділення меж" -#: plug-ins/common/dog.c:294 +#: plug-ins/common/dog.c:295 #, fuzzy msgid "Smoothing parameters" msgstr "Скопіювати параметри" -#: plug-ins/common/dog.c:308 +#: plug-ins/common/dog.c:309 #, fuzzy msgid "_Radius 1:" msgstr "_Радіус:" -#: plug-ins/common/dog.c:312 +#: plug-ins/common/dog.c:313 #, fuzzy msgid "R_adius 2:" msgstr "_Радіус:" -#: plug-ins/common/dog.c:324 plug-ins/common/normalize.c:88 +#: plug-ins/common/dog.c:325 plug-ins/common/normalize.c:88 #, fuzzy msgid "_Normalize" msgstr "_Звичайний" -#: plug-ins/common/dog.c:335 plug-ins/gimpressionist/paper.c:149 +#: plug-ins/common/dog.c:336 plug-ins/gimpressionist/paper.c:149 msgid "_Invert" msgstr "_Інвертувати" @@ -3540,7 +3540,7 @@ msgid "_Emboss..." msgstr "_Чеканка" -#: plug-ins/common/emboss.c:374 plug-ins/common/emboss.c:439 +#: plug-ins/common/emboss.c:376 plug-ins/common/emboss.c:439 msgid "Emboss" msgstr "Чеканка" @@ -3565,7 +3565,7 @@ msgid "En_grave..." msgstr "Створення гравюри..." -#: plug-ins/common/engrave.c:181 +#: plug-ins/common/engrave.c:182 msgid "Engraving..." msgstr "Створення гравюри..." @@ -3993,41 +3993,41 @@ msgid "_Gaussian Blur..." msgstr "/Фільтри/Розмивання/Гаусеве розмивання (IIR)..." -#: plug-ins/common/gauss.c:407 +#: plug-ins/common/gauss.c:413 #, fuzzy msgid "Gaussian Blur..." msgstr "/Фільтри/Розмивання/Гаусеве розмивання (IIR)..." -#: plug-ins/common/gauss.c:460 +#: plug-ins/common/gauss.c:461 #, fuzzy msgid "Gaussian Blur" msgstr "IIR Гаусове розмивання" #. parameter settings -#: plug-ins/common/gauss.c:483 +#: plug-ins/common/gauss.c:484 msgid "Blur Radius" msgstr "Радіус розмивання" -#: plug-ins/common/gauss.c:497 plug-ins/common/jigsaw.c:2456 -#: plug-ins/common/spread.c:378 +#: plug-ins/common/gauss.c:498 plug-ins/common/jigsaw.c:2456 +#: plug-ins/common/spread.c:379 msgid "_Horizontal:" msgstr "_Горизонтальна:" -#: plug-ins/common/gauss.c:501 plug-ins/common/jigsaw.c:2473 -#: plug-ins/common/spread.c:382 +#: plug-ins/common/gauss.c:502 plug-ins/common/jigsaw.c:2473 +#: plug-ins/common/spread.c:383 msgid "_Vertical:" msgstr "Вертикально:" -#: plug-ins/common/gauss.c:524 +#: plug-ins/common/gauss.c:525 #, fuzzy msgid "Blur Method" msgstr "Тип розмивання" -#: plug-ins/common/gauss.c:528 +#: plug-ins/common/gauss.c:529 msgid "_IIR" msgstr "" -#: plug-ins/common/gauss.c:529 +#: plug-ins/common/gauss.c:530 #, fuzzy msgid "_RLE" msgstr "RLE" @@ -4349,20 +4349,20 @@ msgid "_Glass Tile..." msgstr "Скляна плитка..." -#: plug-ins/common/glasstile.c:208 +#: plug-ins/common/glasstile.c:209 msgid "Glass Tile..." msgstr "Скляна плитка..." -#: plug-ins/common/glasstile.c:251 +#: plug-ins/common/glasstile.c:250 msgid "Glass Tile" msgstr "Скляна плитка" -#: plug-ins/common/glasstile.c:282 +#: plug-ins/common/glasstile.c:281 #, fuzzy msgid "Tile _width:" msgstr "_Ширина плитки:" -#: plug-ins/common/glasstile.c:296 plug-ins/common/mosaic.c:621 +#: plug-ins/common/glasstile.c:295 plug-ins/common/mosaic.c:621 #, fuzzy msgid "Tile _height:" msgstr "_Висота плитки:" @@ -5423,17 +5423,17 @@ msgid "_Neon..." msgstr "Відео/RGB..." -#: plug-ins/common/neon.c:204 +#: plug-ins/common/neon.c:207 #, fuzzy msgid "Neon..." msgstr "Газетний папір" -#: plug-ins/common/neon.c:698 +#: plug-ins/common/neon.c:697 #, fuzzy msgid "Neon Detection" msgstr "Виділення меж" -#: plug-ins/common/neon.c:743 plug-ins/common/unsharp.c:707 +#: plug-ins/common/neon.c:742 plug-ins/common/unsharp.c:678 msgid "_Amount:" msgstr "_Величина:" @@ -5603,7 +5603,7 @@ msgid "_Scatter RGB..." msgstr "Розсіювання HSV..." -#: plug-ins/common/noisify.c:284 +#: plug-ins/common/noisify.c:285 msgid "Adding Noise..." msgstr "Додавання шуму..." @@ -5679,7 +5679,7 @@ msgid "Oili_fy..." msgstr "Олійна фарба" -#: plug-ins/common/oilify.c:188 +#: plug-ins/common/oilify.c:189 msgid "Oil Painting..." msgstr "Малювання олією..." @@ -5824,7 +5824,7 @@ msgid "Photocopy" msgstr "Фотографія" -#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:513 +#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:509 #: plug-ins/common/softglow.c:687 msgid "_Sharpness:" msgstr "_Різкість:" @@ -6512,7 +6512,7 @@ msgid "_Ripple..." msgstr "Створення брижів..." -#: plug-ins/common/ripple.c:219 +#: plug-ins/common/ripple.c:222 msgid "Rippling..." msgstr "Створення брижів..." @@ -6745,20 +6745,20 @@ msgid "_Selective Gaussian Blur..." msgstr "Вибіркове Гаусеве розмивання..." -#: plug-ins/common/sel_gauss.c:186 +#: plug-ins/common/sel_gauss.c:187 msgid "Selective Gaussian Blur..." msgstr "Вибіркове Гаусеве розмивання..." -#: plug-ins/common/sel_gauss.c:224 +#: plug-ins/common/sel_gauss.c:225 msgid "Selective Gaussian Blur" msgstr "Вибіркове Гаусеве розмивання" -#: plug-ins/common/sel_gauss.c:256 +#: plug-ins/common/sel_gauss.c:257 #, fuzzy msgid "_Blur radius:" msgstr "_Радіус розмивання:" -#: plug-ins/common/sel_gauss.c:266 +#: plug-ins/common/sel_gauss.c:267 #, fuzzy msgid "_Max. delta:" msgstr "_Макс. Дельта:" @@ -6780,11 +6780,11 @@ #. #. * Let the user know what we're doing... #. -#: plug-ins/common/sharpen.c:315 +#: plug-ins/common/sharpen.c:311 msgid "Sharpening..." msgstr "Підвищення різкості..." -#: plug-ins/common/sharpen.c:484 +#: plug-ins/common/sharpen.c:480 msgid "Sharpen" msgstr "Підвищення різкості" @@ -6793,7 +6793,7 @@ msgid "_Shift..." msgstr "Зміщення..." -#: plug-ins/common/shift.c:191 +#: plug-ins/common/shift.c:194 msgid "Shifting..." msgstr "Зміщення..." @@ -7004,24 +7004,24 @@ msgid "_Sobel..." msgstr "_Собел" -#: plug-ins/common/sobel.c:226 +#: plug-ins/common/sobel.c:227 msgid "Sobel Edge Detection" msgstr "Виділення меж за Sobel" -#: plug-ins/common/sobel.c:248 +#: plug-ins/common/sobel.c:249 msgid "Sobel _Horizontally" msgstr "_Горизонтальне розмивання за Sobel" -#: plug-ins/common/sobel.c:260 +#: plug-ins/common/sobel.c:261 msgid "Sobel _Vertically" msgstr "_Вертикальне розмивання за Sobel" -#: plug-ins/common/sobel.c:272 +#: plug-ins/common/sobel.c:273 #, fuzzy msgid "_Keep sign of result (one direction only)" msgstr "З_берігати знак результату (лише один напрямок)" -#: plug-ins/common/sobel.c:358 +#: plug-ins/common/sobel.c:359 msgid "Sobel Edge Detecting..." msgstr "Виділення меж за Sobel.." @@ -7346,15 +7346,15 @@ msgid "Sp_read..." msgstr "Розсіювання..." -#: plug-ins/common/spread.c:179 +#: plug-ins/common/spread.c:182 msgid "Spreading..." msgstr "Розсіювання..." -#: plug-ins/common/spread.c:345 +#: plug-ins/common/spread.c:346 msgid "Spread" msgstr "Розсіювання" -#: plug-ins/common/spread.c:363 +#: plug-ins/common/spread.c:364 msgid "Spread Amount" msgstr "Діапазон розсіювання" @@ -7654,7 +7654,8 @@ msgid "_Tile..." msgstr "Розтин..." -#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:321 +#. Set the tile cache size +#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:320 msgid "Tiling..." msgstr "Укладка черепиці..." @@ -7676,45 +7677,45 @@ msgstr "_усіх секторів" #. Get the preview image -#: plug-ins/common/tileit.c:364 +#: plug-ins/common/tileit.c:363 msgid "TileIt" msgstr "Нарізати" #. Area for buttons etc #. Flip -#: plug-ins/common/tileit.c:407 plug-ins/ifscompose/ifscompose.c:628 +#: plug-ins/common/tileit.c:406 plug-ins/ifscompose/ifscompose.c:628 msgid "Flip" msgstr "Віддзеркалення" -#: plug-ins/common/tileit.c:455 +#: plug-ins/common/tileit.c:454 #, fuzzy msgid "A_ll tiles" msgstr "_усіх секторів" -#: plug-ins/common/tileit.c:469 +#: plug-ins/common/tileit.c:468 #, fuzzy msgid "Al_ternate tiles" msgstr "кожного _другого сектору" -#: plug-ins/common/tileit.c:483 +#: plug-ins/common/tileit.c:482 #, fuzzy msgid "_Explicit tile" msgstr "_вказаного сектору" -#: plug-ins/common/tileit.c:489 +#: plug-ins/common/tileit.c:488 msgid "Ro_w:" msgstr "_Рядок:" -#: plug-ins/common/tileit.c:513 +#: plug-ins/common/tileit.c:512 msgid "Col_umn:" msgstr "Ст_овпчик:" -#: plug-ins/common/tileit.c:565 +#: plug-ins/common/tileit.c:564 msgid "O_pacity:" msgstr "_Непрозорість:" #. Lower frame saying howmany segments -#: plug-ins/common/tileit.c:574 +#: plug-ins/common/tileit.c:573 #, fuzzy msgid "Number of Segments" msgstr "_Кількість сегментів:" @@ -7866,16 +7867,16 @@ msgid "Unit Editor" msgstr "Редактор одиниць" -#: plug-ins/common/unsharp.c:149 +#: plug-ins/common/unsharp.c:143 #, fuzzy msgid "_Unsharp Mask..." msgstr "Нечітка маска" -#: plug-ins/common/unsharp.c:493 +#: plug-ins/common/unsharp.c:468 msgid "Merging..." msgstr "Злиття..." -#: plug-ins/common/unsharp.c:664 +#: plug-ins/common/unsharp.c:635 msgid "Unsharp Mask" msgstr "Нечітка маска" @@ -8988,19 +8989,19 @@ msgid "_Zoom:" msgstr "Мас_штаб:" -#: plug-ins/gfig/gfig-bezier.c:452 +#: plug-ins/gfig/gfig-bezier.c:448 msgid "Closed" msgstr "Закрита" -#: plug-ins/gfig/gfig-bezier.c:457 +#: plug-ins/gfig/gfig-bezier.c:453 msgid "Close curve on completion" msgstr "Закривати криву на завершенні" -#: plug-ins/gfig/gfig-bezier.c:462 +#: plug-ins/gfig/gfig-bezier.c:458 msgid "Show Line Frame" msgstr "Показувати кадр лінії" -#: plug-ins/gfig/gfig-bezier.c:467 +#: plug-ins/gfig/gfig-bezier.c:463 msgid "Draws lines between the control points. Only during curve creation" msgstr "Намалювати лінію між контрольними точками. Лише при створенні кривої." diff -uraN gimp-2.2.0/po-plug-ins/vi.gmo gimp-2.2.1/po-plug-ins/vi.gmo --- gimp-2.2.0/po-plug-ins/vi.gmo 2004-12-19 03:34:25.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/vi.gmo 2004-12-28 16:59:09.000000000 +0100 @@ -124,7 +124,7 @@ Image SizeUse average valueUse cosine-function for this color componentUse reverse valueUse sine-function for this color componentValueValue:Van Gogh (LIC)VectorsVerticalVertical ColorVerticallyVideoVideo/RGB...View SourceWarningWarning: the source and the destination are the same channel.Warning: unsupported layermode %d saved to XJTWarning: unsupported pathtype %d saved to XJTWarning: unsupported unittype %d saved to XJTWeakWhiteWidth of the paper that you wish to print toWidth:WindowsWith gradient power (0,1)With p and random (0,1)With random power (0,1)With random power (0,10)X scale (size)X:XBM OptionsXJT file contains unknown layermode %dXJT file contains unknown pathtype %dXJT file contains unknown unittype %dXMAX:XMIN:X_1:X_2:Y scale (size)Y:YMAX:YMIN:Y_1:Y_2:YellowYellow:Z scale (size)Z:ZoomZoom inZoom in (make image bigger)Zoom outZoom out (make image smaller)_3x3_Advanced_Alpha_Alpha:_Amount:_Angle:_Antialiasing_Automatically convert_Background_Black_Blacken_Blue_Blue:_Bottom:_Box_Brightness_Brightness:_Brush_Copy_Depth:_Description:_Detail:_Digits:_Edit_Factor:_File_Force_Ftp Site_Gamma:_General_Gradient_Gray:_Green_Green:_Grey_Height_Height:_Help_Hex_Hidden_Horizontal_Horizontal:_Horz. Spacing:_Hue_ID:_Ideal_Ignore_Inch_Input SPI:_Insert_JPEG_JavaScript_Kill_LZW_Left Start at:_Light_Lines_Link_Mapping_Material_Max (%):_Millimeter_Misc Ops._Move_None_Normal_Plural:_Polygon_Presets_Preview_Preview!_Prompt for area info_RGB_RLE compression_RLE encoded_Randomize_Red:_Redo %s_Remove_Require default URL_Saturation_Saturation:_Search:_Settings_Sharpness:_Size_Size:_Speed:_Symbol:_Thickness:_Threshold_Threshold:_Title:_Tools_Top Start at:_Top:_Transparent_Undo %s_Update_Value_Value:_Vert. Spacing:_Vertical_Vertical:_View_Waterlevel:_Web Site_White_Width_Width:_X Scale:_X:_Y Scale:_Y:_Yellow_Z:_Zoom_Zoom:`Default' is created.afteralphablackblueblueness_cb470blueness_cb470fblueness_cb709blueness_cb709fcmcyane-_mailgreenhueinvalid formatted GFlare file: %s k(1-x^p)kx^pk{x(1-x)}^pluma_y470luma_y470fluma_y709luma_y709fmagentapixelsredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationvaluex (pixels)y (pixels)yellowProject-Id-Version: Gimp-plug-ins VERSION Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2003-02-01 13:08+0700 Last-Translator: Trinh Minh Thanh Language-Team: Gnome-Vi diff -uraN gimp-2.2.0/po-plug-ins/vi.po gimp-2.2.1/po-plug-ins/vi.po --- gimp-2.2.0/po-plug-ins/vi.po 2004-12-19 03:34:20.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/vi.po 2004-12-28 16:59:04.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Gimp-plug-ins VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2003-02-01 13:08+0700\n" "Last-Translator: Trinh Minh Thanh \n" "Language-Team: Gnome-Vi \n" @@ -978,7 +978,7 @@ msgid "Antialiasing quality. Higher is better, but slower" msgstr "Chất lượng antialiasing. Cao thì tốt hơn nhưng chậm hơn" -#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:720 +#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:691 #: plug-ins/common/wind.c:993 plug-ins/imagemap/imap_preferences.c:539 msgid "_Threshold:" msgstr "_Ngưỡng:" @@ -2164,12 +2164,12 @@ msgstr "Định hướng" #: plug-ins/common/blinds.c:259 plug-ins/common/ripple.c:539 -#: plug-ins/common/tileit.c:419 plug-ins/pagecurl/pagecurl.c:530 +#: plug-ins/common/tileit.c:418 plug-ins/pagecurl/pagecurl.c:530 msgid "_Horizontal" msgstr "Ng_ang" #: plug-ins/common/blinds.c:260 plug-ins/common/ripple.c:540 -#: plug-ins/common/tileit.c:429 plug-ins/pagecurl/pagecurl.c:529 +#: plug-ins/common/tileit.c:428 plug-ins/pagecurl/pagecurl.c:529 msgid "_Vertical" msgstr "_Dọc" @@ -2192,7 +2192,7 @@ msgid "_Blur" msgstr "Xanh da trời" -#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:383 +#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:432 msgid "Blurring..." msgstr "" @@ -2308,25 +2308,25 @@ msgid "Ca_rtoon..." msgstr "Đang biên soạn..." -#: plug-ins/common/cartoon.c:228 plug-ins/common/dog.c:246 -#: plug-ins/common/gauss.c:430 plug-ins/common/neon.c:222 -#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:203 +#: plug-ins/common/cartoon.c:229 plug-ins/common/dog.c:247 +#: plug-ins/common/gauss.c:431 plug-ins/common/neon.c:221 +#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:204 #: plug-ins/common/softglow.c:220 plug-ins/gflare/gflare.c:972 #: plug-ins/sgi/sgi.c:528 plug-ins/xjt/xjt.c:1673 #, fuzzy msgid "Cannot operate on indexed color images." msgstr "xjt: không thể hoạt động với các ảnh màu phụ lục" -#: plug-ins/common/cartoon.c:807 +#: plug-ins/common/cartoon.c:808 msgid "Cartoon" msgstr "" -#: plug-ins/common/cartoon.c:837 plug-ins/common/photocopy.c:867 +#: plug-ins/common/cartoon.c:838 plug-ins/common/photocopy.c:867 #, fuzzy msgid "_Mask radius:" msgstr "Kích cỡ tối đa:" -#: plug-ins/common/cartoon.c:851 +#: plug-ins/common/cartoon.c:852 #, fuzzy msgid "_Percent black:" msgstr "Phần trăm" @@ -2495,29 +2495,29 @@ msgid "Colorify Custom Color" msgstr "" -#: plug-ins/common/colortoalpha.c:105 +#: plug-ins/common/colortoalpha.c:104 #, fuzzy msgid "Color to _Alpha..." msgstr "Đang cải thiện màu sắc..." -#: plug-ins/common/colortoalpha.c:183 +#: plug-ins/common/colortoalpha.c:181 msgid "Removing color..." msgstr "Đang bỏ màu..." -#: plug-ins/common/colortoalpha.c:364 +#: plug-ins/common/colortoalpha.c:377 msgid "Color to Alpha" msgstr "" -#: plug-ins/common/colortoalpha.c:389 plug-ins/common/mapcolor.c:424 +#: plug-ins/common/colortoalpha.c:402 plug-ins/common/mapcolor.c:424 #: plug-ins/gfli/gfli.c:835 plug-ins/gfli/gfli.c:898 msgid "From:" msgstr "Từ:" -#: plug-ins/common/colortoalpha.c:393 +#: plug-ins/common/colortoalpha.c:406 msgid "Color to Alpha Color Picker" msgstr "" -#: plug-ins/common/colortoalpha.c:407 +#: plug-ins/common/colortoalpha.c:420 #, fuzzy msgid "to alpha" msgstr "alpha" @@ -2839,26 +2839,26 @@ msgid "_Cubism..." msgstr "Qbist ..." -#: plug-ins/common/cubism.c:267 +#: plug-ins/common/cubism.c:269 msgid "Cubism" msgstr "" -#: plug-ins/common/cubism.c:296 +#: plug-ins/common/cubism.c:298 #, fuzzy msgid "_Tile size:" msgstr "Tiê_u đề:" -#: plug-ins/common/cubism.c:309 +#: plug-ins/common/cubism.c:311 #, fuzzy msgid "T_ile saturation:" msgstr "Độ b_ão hòa:" -#: plug-ins/common/cubism.c:320 +#: plug-ins/common/cubism.c:322 #, fuzzy msgid "_Use background color" msgstr "_Dùng màu nền" -#: plug-ins/common/cubism.c:410 +#: plug-ins/common/cubism.c:412 #, fuzzy msgid "Cubistic Transformation..." msgstr "Hiện tượng ngẫu nhiên %:" @@ -3244,44 +3244,44 @@ msgid "Des_peckle..." msgstr "" -#: plug-ins/common/despeckle.c:420 plug-ins/common/despeckle.c:642 +#: plug-ins/common/despeckle.c:418 plug-ins/common/despeckle.c:640 msgid "Despeckle" msgstr "" #. #. * Filter type controls... #. -#: plug-ins/common/despeckle.c:446 plug-ins/gimpressionist/orientmap.c:616 +#: plug-ins/common/despeckle.c:444 plug-ins/gimpressionist/orientmap.c:616 msgid "Type" msgstr "Loại" #. parameter settings -#: plug-ins/common/despeckle.c:456 +#: plug-ins/common/despeckle.c:454 #, fuzzy msgid "Median" msgstr "Radians" -#: plug-ins/common/despeckle.c:462 +#: plug-ins/common/despeckle.c:460 msgid "_Adaptive" msgstr "" -#: plug-ins/common/despeckle.c:472 +#: plug-ins/common/despeckle.c:470 msgid "R_ecursive" msgstr "" -#: plug-ins/common/despeckle.c:496 plug-ins/common/neon.c:728 +#: plug-ins/common/despeckle.c:494 plug-ins/common/neon.c:727 #: plug-ins/common/nlfilt.c:1083 plug-ins/common/nova.c:359 -#: plug-ins/common/unsharp.c:694 plug-ins/common/whirlpinch.c:588 +#: plug-ins/common/unsharp.c:665 plug-ins/common/whirlpinch.c:588 #: plug-ins/gflare/gflare.c:2686 plug-ins/imagemap/imap_circle.c:278 msgid "_Radius:" msgstr "" -#: plug-ins/common/despeckle.c:512 +#: plug-ins/common/despeckle.c:510 #, fuzzy msgid "_Black level:" msgstr "Mức màu đ_en:" -#: plug-ins/common/despeckle.c:528 +#: plug-ins/common/despeckle.c:526 #, fuzzy msgid "_White level:" msgstr "Mức màu t_rắng:" @@ -3377,7 +3377,7 @@ msgid "_Displace..." msgstr "Hiển thị" -#: plug-ins/common/displace.c:228 +#: plug-ins/common/displace.c:231 msgid "Displacing..." msgstr "" @@ -3415,29 +3415,29 @@ msgid "Difference of Gaussians..." msgstr "/Tập tin/In ra..." -#: plug-ins/common/dog.c:222 plug-ins/common/dog.c:273 +#: plug-ins/common/dog.c:227 plug-ins/common/dog.c:274 msgid "DoG Edge Detect" msgstr "" -#: plug-ins/common/dog.c:294 +#: plug-ins/common/dog.c:295 #, fuzzy msgid "Smoothing parameters" msgstr "Sao chép tham số" -#: plug-ins/common/dog.c:308 +#: plug-ins/common/dog.c:309 msgid "_Radius 1:" msgstr "" -#: plug-ins/common/dog.c:312 +#: plug-ins/common/dog.c:313 msgid "R_adius 2:" msgstr "" -#: plug-ins/common/dog.c:324 plug-ins/common/normalize.c:88 +#: plug-ins/common/dog.c:325 plug-ins/common/normalize.c:88 #, fuzzy msgid "_Normalize" msgstr "_Bình thường" -#: plug-ins/common/dog.c:335 plug-ins/gimpressionist/paper.c:149 +#: plug-ins/common/dog.c:336 plug-ins/gimpressionist/paper.c:149 msgid "_Invert" msgstr "" @@ -3496,7 +3496,7 @@ msgid "_Emboss..." msgstr "Giới thiệu _về..." -#: plug-ins/common/emboss.c:374 plug-ins/common/emboss.c:439 +#: plug-ins/common/emboss.c:376 plug-ins/common/emboss.c:439 msgid "Emboss" msgstr "" @@ -3520,7 +3520,7 @@ msgid "En_grave..." msgstr "" -#: plug-ins/common/engrave.c:181 +#: plug-ins/common/engrave.c:182 msgid "Engraving..." msgstr "" @@ -3954,40 +3954,40 @@ msgid "_Gaussian Blur..." msgstr "/Trình lọc/Hoạt cảnh/Chơi lùi hoạt cảnh..." -#: plug-ins/common/gauss.c:407 +#: plug-ins/common/gauss.c:413 #, fuzzy msgid "Gaussian Blur..." msgstr "/Trình lọc/Hoạt cảnh/Chơi lùi hoạt cảnh..." -#: plug-ins/common/gauss.c:460 +#: plug-ins/common/gauss.c:461 #, fuzzy msgid "Gaussian Blur" msgstr "/Trình lọc/Hoạt cảnh/Chơi lùi hoạt cảnh..." #. parameter settings -#: plug-ins/common/gauss.c:483 +#: plug-ins/common/gauss.c:484 msgid "Blur Radius" msgstr "" -#: plug-ins/common/gauss.c:497 plug-ins/common/jigsaw.c:2456 -#: plug-ins/common/spread.c:378 +#: plug-ins/common/gauss.c:498 plug-ins/common/jigsaw.c:2456 +#: plug-ins/common/spread.c:379 msgid "_Horizontal:" msgstr "Theo đường n_gang:" -#: plug-ins/common/gauss.c:501 plug-ins/common/jigsaw.c:2473 -#: plug-ins/common/spread.c:382 +#: plug-ins/common/gauss.c:502 plug-ins/common/jigsaw.c:2473 +#: plug-ins/common/spread.c:383 msgid "_Vertical:" msgstr "Theo đường _dọc:" -#: plug-ins/common/gauss.c:524 +#: plug-ins/common/gauss.c:525 msgid "Blur Method" msgstr "" -#: plug-ins/common/gauss.c:528 +#: plug-ins/common/gauss.c:529 msgid "_IIR" msgstr "" -#: plug-ins/common/gauss.c:529 +#: plug-ins/common/gauss.c:530 #, fuzzy msgid "_RLE" msgstr "RLE" @@ -4285,20 +4285,20 @@ msgid "_Glass Tile..." msgstr "" -#: plug-ins/common/glasstile.c:208 +#: plug-ins/common/glasstile.c:209 msgid "Glass Tile..." msgstr "" -#: plug-ins/common/glasstile.c:251 +#: plug-ins/common/glasstile.c:250 msgid "Glass Tile" msgstr "" -#: plug-ins/common/glasstile.c:282 +#: plug-ins/common/glasstile.c:281 #, fuzzy msgid "Tile _width:" msgstr "Bề _rộng:" -#: plug-ins/common/glasstile.c:296 plug-ins/common/mosaic.c:621 +#: plug-ins/common/glasstile.c:295 plug-ins/common/mosaic.c:621 #, fuzzy msgid "Tile _height:" msgstr "Chiều _cao:" @@ -5341,17 +5341,17 @@ msgid "_Neon..." msgstr "Video/RGB..." -#: plug-ins/common/neon.c:204 +#: plug-ins/common/neon.c:207 #, fuzzy msgid "Neon..." msgstr "Máy in mới..." -#: plug-ins/common/neon.c:698 +#: plug-ins/common/neon.c:697 #, fuzzy msgid "Neon Detection" msgstr "Hiện phần chọn" -#: plug-ins/common/neon.c:743 plug-ins/common/unsharp.c:707 +#: plug-ins/common/neon.c:742 plug-ins/common/unsharp.c:678 msgid "_Amount:" msgstr "_Số lượng:" @@ -5520,7 +5520,7 @@ msgid "_Scatter RGB..." msgstr "Đang tự động kéo giãn HSV..." -#: plug-ins/common/noisify.c:284 +#: plug-ins/common/noisify.c:285 msgid "Adding Noise..." msgstr "" @@ -5595,7 +5595,7 @@ msgid "Oili_fy..." msgstr "" -#: plug-ins/common/oilify.c:188 +#: plug-ins/common/oilify.c:189 msgid "Oil Painting..." msgstr "" @@ -5737,7 +5737,7 @@ msgid "Photocopy" msgstr "" -#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:513 +#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:509 #: plug-ins/common/softglow.c:687 msgid "_Sharpness:" msgstr "Độ sắc _nét:" @@ -6405,7 +6405,7 @@ msgid "_Ripple..." msgstr "" -#: plug-ins/common/ripple.c:219 +#: plug-ins/common/ripple.c:222 msgid "Rippling..." msgstr "" @@ -6645,19 +6645,19 @@ msgid "_Selective Gaussian Blur..." msgstr "/Tập tin/In ra..." -#: plug-ins/common/sel_gauss.c:186 +#: plug-ins/common/sel_gauss.c:187 msgid "Selective Gaussian Blur..." msgstr "" -#: plug-ins/common/sel_gauss.c:224 +#: plug-ins/common/sel_gauss.c:225 msgid "Selective Gaussian Blur" msgstr "" -#: plug-ins/common/sel_gauss.c:256 +#: plug-ins/common/sel_gauss.c:257 msgid "_Blur radius:" msgstr "" -#: plug-ins/common/sel_gauss.c:266 +#: plug-ins/common/sel_gauss.c:267 #, fuzzy msgid "_Max. delta:" msgstr "Đỏ tía:" @@ -6680,11 +6680,11 @@ #. #. * Let the user know what we're doing... #. -#: plug-ins/common/sharpen.c:315 +#: plug-ins/common/sharpen.c:311 msgid "Sharpening..." msgstr "Đang làm sắc nét..." -#: plug-ins/common/sharpen.c:484 +#: plug-ins/common/sharpen.c:480 #, fuzzy msgid "Sharpen" msgstr "Làm sắc nét - %s" @@ -6693,7 +6693,7 @@ msgid "_Shift..." msgstr "" -#: plug-ins/common/shift.c:191 +#: plug-ins/common/shift.c:194 msgid "Shifting..." msgstr "" @@ -6903,23 +6903,23 @@ msgid "_Sobel..." msgstr "Nguồn..." -#: plug-ins/common/sobel.c:226 +#: plug-ins/common/sobel.c:227 msgid "Sobel Edge Detection" msgstr "" -#: plug-ins/common/sobel.c:248 +#: plug-ins/common/sobel.c:249 msgid "Sobel _Horizontally" msgstr "" -#: plug-ins/common/sobel.c:260 +#: plug-ins/common/sobel.c:261 msgid "Sobel _Vertically" msgstr "" -#: plug-ins/common/sobel.c:272 +#: plug-ins/common/sobel.c:273 msgid "_Keep sign of result (one direction only)" msgstr "" -#: plug-ins/common/sobel.c:358 +#: plug-ins/common/sobel.c:359 msgid "Sobel Edge Detecting..." msgstr "" @@ -7255,15 +7255,15 @@ msgid "Sp_read..." msgstr "Nguồn..." -#: plug-ins/common/spread.c:179 +#: plug-ins/common/spread.c:182 msgid "Spreading..." msgstr "" -#: plug-ins/common/spread.c:345 +#: plug-ins/common/spread.c:346 msgid "Spread" msgstr "" -#: plug-ins/common/spread.c:363 +#: plug-ins/common/spread.c:364 msgid "Spread Amount" msgstr "" @@ -7554,7 +7554,8 @@ msgid "_Tile..." msgstr "Tiê_u đề:" -#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:321 +#. Set the tile cache size +#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:320 msgid "Tiling..." msgstr "" @@ -7576,44 +7577,44 @@ msgstr "/Layer/Màu/Colormap Rotation..." #. Get the preview image -#: plug-ins/common/tileit.c:364 +#: plug-ins/common/tileit.c:363 msgid "TileIt" msgstr "" #. Area for buttons etc #. Flip -#: plug-ins/common/tileit.c:407 plug-ins/ifscompose/ifscompose.c:628 +#: plug-ins/common/tileit.c:406 plug-ins/ifscompose/ifscompose.c:628 msgid "Flip" msgstr "" -#: plug-ins/common/tileit.c:455 +#: plug-ins/common/tileit.c:454 #, fuzzy msgid "A_ll tiles" msgstr "/Layer/Màu/Colormap Rotation..." -#: plug-ins/common/tileit.c:469 +#: plug-ins/common/tileit.c:468 #, fuzzy msgid "Al_ternate tiles" msgstr "T_ương tác" -#: plug-ins/common/tileit.c:483 +#: plug-ins/common/tileit.c:482 msgid "_Explicit tile" msgstr "" -#: plug-ins/common/tileit.c:489 +#: plug-ins/common/tileit.c:488 msgid "Ro_w:" msgstr "_Hàng:" -#: plug-ins/common/tileit.c:513 +#: plug-ins/common/tileit.c:512 msgid "Col_umn:" msgstr "_Cột:" -#: plug-ins/common/tileit.c:565 +#: plug-ins/common/tileit.c:564 msgid "O_pacity:" msgstr "Độ đục:" #. Lower frame saying howmany segments -#: plug-ins/common/tileit.c:574 +#: plug-ins/common/tileit.c:573 #, fuzzy msgid "Number of Segments" msgstr "Số lượng màu" @@ -7755,15 +7756,15 @@ msgid "Unit Editor" msgstr "Trình biên soạn đơn vị" -#: plug-ins/common/unsharp.c:149 +#: plug-ins/common/unsharp.c:143 msgid "_Unsharp Mask..." msgstr "" -#: plug-ins/common/unsharp.c:493 +#: plug-ins/common/unsharp.c:468 msgid "Merging..." msgstr "Đang hoà trộn..." -#: plug-ins/common/unsharp.c:664 +#: plug-ins/common/unsharp.c:635 msgid "Unsharp Mask" msgstr "" @@ -8827,19 +8828,19 @@ msgid "_Zoom:" msgstr "_Zoom:" -#: plug-ins/gfig/gfig-bezier.c:452 +#: plug-ins/gfig/gfig-bezier.c:448 msgid "Closed" msgstr "Đã đóng" -#: plug-ins/gfig/gfig-bezier.c:457 +#: plug-ins/gfig/gfig-bezier.c:453 msgid "Close curve on completion" msgstr "" -#: plug-ins/gfig/gfig-bezier.c:462 +#: plug-ins/gfig/gfig-bezier.c:458 msgid "Show Line Frame" msgstr "" -#: plug-ins/gfig/gfig-bezier.c:467 +#: plug-ins/gfig/gfig-bezier.c:463 msgid "Draws lines between the control points. Only during curve creation" msgstr "" diff -uraN gimp-2.2.0/po-plug-ins/yi.gmo gimp-2.2.1/po-plug-ins/yi.gmo --- gimp-2.2.0/po-plug-ins/yi.gmo 2004-12-19 03:34:25.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/yi.gmo 2004-12-28 16:59:09.000000000 +0100 @@ -24,7 +24,7 @@ +*-. '/%1 8!,($7) 42"0#56&  3ArrowAuthor:BackgroundBrowseCenterClearColorColor:CopyCutDeleteDescription:DigitsDirectionGrayscaleHeight:ModeNameNoneNormalOpenOpen FileOrientationPastePositionPreferencesPreviewRedoSaveScreenSelectSelect AllSelectionShiftSizeSize:StyleTypeType:UndoUpdateValueWarningWidth:Wrap_Blue:_Copy_Green:_Help_Left_Red:_Remove_Right_Saturation:_Value:Project-Id-Version: 1.0 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2003-03-19 Last-Translator: Raphael Finkel Language-Team: Yiddish diff -uraN gimp-2.2.0/po-plug-ins/yi.po gimp-2.2.1/po-plug-ins/yi.po --- gimp-2.2.0/po-plug-ins/yi.po 2004-12-19 03:34:20.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/yi.po 2004-12-28 16:59:04.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: 1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2003-03-19\n" "Last-Translator: Raphael Finkel \n" "Language-Team: Yiddish \n" @@ -946,7 +946,7 @@ msgid "Antialiasing quality. Higher is better, but slower" msgstr "" -#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:720 +#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:691 #: plug-ins/common/wind.c:993 plug-ins/imagemap/imap_preferences.c:539 msgid "_Threshold:" msgstr "" @@ -2075,12 +2075,12 @@ msgstr "אָריִענטירונג" #: plug-ins/common/blinds.c:259 plug-ins/common/ripple.c:539 -#: plug-ins/common/tileit.c:419 plug-ins/pagecurl/pagecurl.c:530 +#: plug-ins/common/tileit.c:418 plug-ins/pagecurl/pagecurl.c:530 msgid "_Horizontal" msgstr "" #: plug-ins/common/blinds.c:260 plug-ins/common/ripple.c:540 -#: plug-ins/common/tileit.c:429 plug-ins/pagecurl/pagecurl.c:529 +#: plug-ins/common/tileit.c:428 plug-ins/pagecurl/pagecurl.c:529 msgid "_Vertical" msgstr "" @@ -2103,7 +2103,7 @@ msgid "_Blur" msgstr "בלױ" -#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:383 +#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:432 msgid "Blurring..." msgstr "" @@ -2214,23 +2214,23 @@ msgid "Ca_rtoon..." msgstr "עקראַן" -#: plug-ins/common/cartoon.c:228 plug-ins/common/dog.c:246 -#: plug-ins/common/gauss.c:430 plug-ins/common/neon.c:222 -#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:203 +#: plug-ins/common/cartoon.c:229 plug-ins/common/dog.c:247 +#: plug-ins/common/gauss.c:431 plug-ins/common/neon.c:221 +#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:204 #: plug-ins/common/softglow.c:220 plug-ins/gflare/gflare.c:972 #: plug-ins/sgi/sgi.c:528 plug-ins/xjt/xjt.c:1673 msgid "Cannot operate on indexed color images." msgstr "" -#: plug-ins/common/cartoon.c:807 +#: plug-ins/common/cartoon.c:808 msgid "Cartoon" msgstr "" -#: plug-ins/common/cartoon.c:837 plug-ins/common/photocopy.c:867 +#: plug-ins/common/cartoon.c:838 plug-ins/common/photocopy.c:867 msgid "_Mask radius:" msgstr "" -#: plug-ins/common/cartoon.c:851 +#: plug-ins/common/cartoon.c:852 msgid "_Percent black:" msgstr "" @@ -2388,28 +2388,28 @@ msgid "Colorify Custom Color" msgstr "" -#: plug-ins/common/colortoalpha.c:105 +#: plug-ins/common/colortoalpha.c:104 msgid "Color to _Alpha..." msgstr "" -#: plug-ins/common/colortoalpha.c:183 +#: plug-ins/common/colortoalpha.c:181 msgid "Removing color..." msgstr "" -#: plug-ins/common/colortoalpha.c:364 +#: plug-ins/common/colortoalpha.c:377 msgid "Color to Alpha" msgstr "" -#: plug-ins/common/colortoalpha.c:389 plug-ins/common/mapcolor.c:424 +#: plug-ins/common/colortoalpha.c:402 plug-ins/common/mapcolor.c:424 #: plug-ins/gfli/gfli.c:835 plug-ins/gfli/gfli.c:898 msgid "From:" msgstr "" -#: plug-ins/common/colortoalpha.c:393 +#: plug-ins/common/colortoalpha.c:406 msgid "Color to Alpha Color Picker" msgstr "" -#: plug-ins/common/colortoalpha.c:407 +#: plug-ins/common/colortoalpha.c:420 msgid "to alpha" msgstr "" @@ -2720,25 +2720,25 @@ msgid "_Cubism..." msgstr "" -#: plug-ins/common/cubism.c:267 +#: plug-ins/common/cubism.c:269 msgid "Cubism" msgstr "" -#: plug-ins/common/cubism.c:296 +#: plug-ins/common/cubism.c:298 msgid "_Tile size:" msgstr "" -#: plug-ins/common/cubism.c:309 +#: plug-ins/common/cubism.c:311 #, fuzzy msgid "T_ile saturation:" msgstr "דורכװײק" -#: plug-ins/common/cubism.c:320 +#: plug-ins/common/cubism.c:322 #, fuzzy msgid "_Use background color" msgstr "הינטערגרונט" -#: plug-ins/common/cubism.c:410 +#: plug-ins/common/cubism.c:412 msgid "Cubistic Transformation..." msgstr "" @@ -3110,42 +3110,42 @@ msgid "Des_peckle..." msgstr "" -#: plug-ins/common/despeckle.c:420 plug-ins/common/despeckle.c:642 +#: plug-ins/common/despeckle.c:418 plug-ins/common/despeckle.c:640 msgid "Despeckle" msgstr "" #. #. * Filter type controls... #. -#: plug-ins/common/despeckle.c:446 plug-ins/gimpressionist/orientmap.c:616 +#: plug-ins/common/despeckle.c:444 plug-ins/gimpressionist/orientmap.c:616 msgid "Type" msgstr "טיפּ" #. parameter settings -#: plug-ins/common/despeckle.c:456 +#: plug-ins/common/despeckle.c:454 msgid "Median" msgstr "" -#: plug-ins/common/despeckle.c:462 +#: plug-ins/common/despeckle.c:460 msgid "_Adaptive" msgstr "" -#: plug-ins/common/despeckle.c:472 +#: plug-ins/common/despeckle.c:470 msgid "R_ecursive" msgstr "" -#: plug-ins/common/despeckle.c:496 plug-ins/common/neon.c:728 +#: plug-ins/common/despeckle.c:494 plug-ins/common/neon.c:727 #: plug-ins/common/nlfilt.c:1083 plug-ins/common/nova.c:359 -#: plug-ins/common/unsharp.c:694 plug-ins/common/whirlpinch.c:588 +#: plug-ins/common/unsharp.c:665 plug-ins/common/whirlpinch.c:588 #: plug-ins/gflare/gflare.c:2686 plug-ins/imagemap/imap_circle.c:278 msgid "_Radius:" msgstr "" -#: plug-ins/common/despeckle.c:512 +#: plug-ins/common/despeckle.c:510 msgid "_Black level:" msgstr "" -#: plug-ins/common/despeckle.c:528 +#: plug-ins/common/despeckle.c:526 msgid "_White level:" msgstr "" @@ -3235,7 +3235,7 @@ msgid "_Displace..." msgstr "" -#: plug-ins/common/displace.c:228 +#: plug-ins/common/displace.c:231 msgid "Displacing..." msgstr "" @@ -3272,28 +3272,28 @@ msgid "Difference of Gaussians..." msgstr "" -#: plug-ins/common/dog.c:222 plug-ins/common/dog.c:273 +#: plug-ins/common/dog.c:227 plug-ins/common/dog.c:274 msgid "DoG Edge Detect" msgstr "" -#: plug-ins/common/dog.c:294 +#: plug-ins/common/dog.c:295 msgid "Smoothing parameters" msgstr "" -#: plug-ins/common/dog.c:308 +#: plug-ins/common/dog.c:309 msgid "_Radius 1:" msgstr "" -#: plug-ins/common/dog.c:312 +#: plug-ins/common/dog.c:313 msgid "R_adius 2:" msgstr "" -#: plug-ins/common/dog.c:324 plug-ins/common/normalize.c:88 +#: plug-ins/common/dog.c:325 plug-ins/common/normalize.c:88 #, fuzzy msgid "_Normalize" msgstr "נאָרמאַל" -#: plug-ins/common/dog.c:335 plug-ins/gimpressionist/paper.c:149 +#: plug-ins/common/dog.c:336 plug-ins/gimpressionist/paper.c:149 msgid "_Invert" msgstr "" @@ -3346,7 +3346,7 @@ msgid "_Emboss..." msgstr "" -#: plug-ins/common/emboss.c:374 plug-ins/common/emboss.c:439 +#: plug-ins/common/emboss.c:376 plug-ins/common/emboss.c:439 msgid "Emboss" msgstr "" @@ -3370,7 +3370,7 @@ msgid "En_grave..." msgstr "" -#: plug-ins/common/engrave.c:181 +#: plug-ins/common/engrave.c:182 msgid "Engraving..." msgstr "" @@ -3786,39 +3786,39 @@ msgid "_Gaussian Blur..." msgstr "בלױ" -#: plug-ins/common/gauss.c:407 +#: plug-ins/common/gauss.c:413 #, fuzzy msgid "Gaussian Blur..." msgstr "בלױ" -#: plug-ins/common/gauss.c:460 +#: plug-ins/common/gauss.c:461 msgid "Gaussian Blur" msgstr "" #. parameter settings -#: plug-ins/common/gauss.c:483 +#: plug-ins/common/gauss.c:484 msgid "Blur Radius" msgstr "" -#: plug-ins/common/gauss.c:497 plug-ins/common/jigsaw.c:2456 -#: plug-ins/common/spread.c:378 +#: plug-ins/common/gauss.c:498 plug-ins/common/jigsaw.c:2456 +#: plug-ins/common/spread.c:379 msgid "_Horizontal:" msgstr "" -#: plug-ins/common/gauss.c:501 plug-ins/common/jigsaw.c:2473 -#: plug-ins/common/spread.c:382 +#: plug-ins/common/gauss.c:502 plug-ins/common/jigsaw.c:2473 +#: plug-ins/common/spread.c:383 msgid "_Vertical:" msgstr "" -#: plug-ins/common/gauss.c:524 +#: plug-ins/common/gauss.c:525 msgid "Blur Method" msgstr "" -#: plug-ins/common/gauss.c:528 +#: plug-ins/common/gauss.c:529 msgid "_IIR" msgstr "" -#: plug-ins/common/gauss.c:529 +#: plug-ins/common/gauss.c:530 msgid "_RLE" msgstr "" @@ -4104,20 +4104,20 @@ msgid "_Glass Tile..." msgstr "" -#: plug-ins/common/glasstile.c:208 +#: plug-ins/common/glasstile.c:209 msgid "Glass Tile..." msgstr "" -#: plug-ins/common/glasstile.c:251 +#: plug-ins/common/glasstile.c:250 msgid "Glass Tile" msgstr "" -#: plug-ins/common/glasstile.c:282 +#: plug-ins/common/glasstile.c:281 #, fuzzy msgid "Tile _width:" msgstr "ברײט:" -#: plug-ins/common/glasstile.c:296 plug-ins/common/mosaic.c:621 +#: plug-ins/common/glasstile.c:295 plug-ins/common/mosaic.c:621 #, fuzzy msgid "Tile _height:" msgstr "הײך: " @@ -5105,16 +5105,16 @@ msgid "_Neon..." msgstr "עקראַן" -#: plug-ins/common/neon.c:204 +#: plug-ins/common/neon.c:207 msgid "Neon..." msgstr "" -#: plug-ins/common/neon.c:698 +#: plug-ins/common/neon.c:697 #, fuzzy msgid "Neon Detection" msgstr "סעלעקציע" -#: plug-ins/common/neon.c:743 plug-ins/common/unsharp.c:707 +#: plug-ins/common/neon.c:742 plug-ins/common/unsharp.c:678 msgid "_Amount:" msgstr "" @@ -5275,7 +5275,7 @@ msgid "_Scatter RGB..." msgstr "" -#: plug-ins/common/noisify.c:284 +#: plug-ins/common/noisify.c:285 msgid "Adding Noise..." msgstr "" @@ -5345,7 +5345,7 @@ msgid "Oili_fy..." msgstr "" -#: plug-ins/common/oilify.c:188 +#: plug-ins/common/oilify.c:189 msgid "Oil Painting..." msgstr "" @@ -5483,7 +5483,7 @@ msgid "Photocopy" msgstr "" -#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:513 +#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:509 #: plug-ins/common/softglow.c:687 msgid "_Sharpness:" msgstr "" @@ -6116,7 +6116,7 @@ msgid "_Ripple..." msgstr "" -#: plug-ins/common/ripple.c:219 +#: plug-ins/common/ripple.c:222 msgid "Rippling..." msgstr "" @@ -6335,19 +6335,19 @@ msgid "_Selective Gaussian Blur..." msgstr "" -#: plug-ins/common/sel_gauss.c:186 +#: plug-ins/common/sel_gauss.c:187 msgid "Selective Gaussian Blur..." msgstr "" -#: plug-ins/common/sel_gauss.c:224 +#: plug-ins/common/sel_gauss.c:225 msgid "Selective Gaussian Blur" msgstr "" -#: plug-ins/common/sel_gauss.c:256 +#: plug-ins/common/sel_gauss.c:257 msgid "_Blur radius:" msgstr "" -#: plug-ins/common/sel_gauss.c:266 +#: plug-ins/common/sel_gauss.c:267 msgid "_Max. delta:" msgstr "" @@ -6367,11 +6367,11 @@ #. #. * Let the user know what we're doing... #. -#: plug-ins/common/sharpen.c:315 +#: plug-ins/common/sharpen.c:311 msgid "Sharpening..." msgstr "" -#: plug-ins/common/sharpen.c:484 +#: plug-ins/common/sharpen.c:480 #, fuzzy msgid "Sharpen" msgstr "עקראַן" @@ -6381,7 +6381,7 @@ msgid "_Shift..." msgstr "Shift" -#: plug-ins/common/shift.c:191 +#: plug-ins/common/shift.c:194 msgid "Shifting..." msgstr "" @@ -6579,23 +6579,23 @@ msgid "_Sobel..." msgstr "" -#: plug-ins/common/sobel.c:226 +#: plug-ins/common/sobel.c:227 msgid "Sobel Edge Detection" msgstr "" -#: plug-ins/common/sobel.c:248 +#: plug-ins/common/sobel.c:249 msgid "Sobel _Horizontally" msgstr "" -#: plug-ins/common/sobel.c:260 +#: plug-ins/common/sobel.c:261 msgid "Sobel _Vertically" msgstr "" -#: plug-ins/common/sobel.c:272 +#: plug-ins/common/sobel.c:273 msgid "_Keep sign of result (one direction only)" msgstr "" -#: plug-ins/common/sobel.c:358 +#: plug-ins/common/sobel.c:359 msgid "Sobel Edge Detecting..." msgstr "" @@ -6903,15 +6903,15 @@ msgid "Sp_read..." msgstr "" -#: plug-ins/common/spread.c:179 +#: plug-ins/common/spread.c:182 msgid "Spreading..." msgstr "" -#: plug-ins/common/spread.c:345 +#: plug-ins/common/spread.c:346 msgid "Spread" msgstr "" -#: plug-ins/common/spread.c:363 +#: plug-ins/common/spread.c:364 msgid "Spread Amount" msgstr "" @@ -7191,7 +7191,8 @@ msgid "_Tile..." msgstr "" -#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:321 +#. Set the tile cache size +#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:320 msgid "Tiling..." msgstr "" @@ -7212,42 +7213,42 @@ msgstr "" #. Get the preview image -#: plug-ins/common/tileit.c:364 +#: plug-ins/common/tileit.c:363 msgid "TileIt" msgstr "" #. Area for buttons etc #. Flip -#: plug-ins/common/tileit.c:407 plug-ins/ifscompose/ifscompose.c:628 +#: plug-ins/common/tileit.c:406 plug-ins/ifscompose/ifscompose.c:628 msgid "Flip" msgstr "" -#: plug-ins/common/tileit.c:455 +#: plug-ins/common/tileit.c:454 msgid "A_ll tiles" msgstr "" -#: plug-ins/common/tileit.c:469 +#: plug-ins/common/tileit.c:468 msgid "Al_ternate tiles" msgstr "" -#: plug-ins/common/tileit.c:483 +#: plug-ins/common/tileit.c:482 msgid "_Explicit tile" msgstr "" -#: plug-ins/common/tileit.c:489 +#: plug-ins/common/tileit.c:488 msgid "Ro_w:" msgstr "" -#: plug-ins/common/tileit.c:513 +#: plug-ins/common/tileit.c:512 msgid "Col_umn:" msgstr "" -#: plug-ins/common/tileit.c:565 +#: plug-ins/common/tileit.c:564 msgid "O_pacity:" msgstr "" #. Lower frame saying howmany segments -#: plug-ins/common/tileit.c:574 +#: plug-ins/common/tileit.c:573 #, fuzzy msgid "Number of Segments" msgstr "הײך: " @@ -7388,15 +7389,15 @@ msgid "Unit Editor" msgstr "" -#: plug-ins/common/unsharp.c:149 +#: plug-ins/common/unsharp.c:143 msgid "_Unsharp Mask..." msgstr "" -#: plug-ins/common/unsharp.c:493 +#: plug-ins/common/unsharp.c:468 msgid "Merging..." msgstr "" -#: plug-ins/common/unsharp.c:664 +#: plug-ins/common/unsharp.c:635 msgid "Unsharp Mask" msgstr "" @@ -8425,19 +8426,19 @@ msgid "_Zoom:" msgstr "" -#: plug-ins/gfig/gfig-bezier.c:452 +#: plug-ins/gfig/gfig-bezier.c:448 msgid "Closed" msgstr "" -#: plug-ins/gfig/gfig-bezier.c:457 +#: plug-ins/gfig/gfig-bezier.c:453 msgid "Close curve on completion" msgstr "" -#: plug-ins/gfig/gfig-bezier.c:462 +#: plug-ins/gfig/gfig-bezier.c:458 msgid "Show Line Frame" msgstr "" -#: plug-ins/gfig/gfig-bezier.c:467 +#: plug-ins/gfig/gfig-bezier.c:463 msgid "Draws lines between the control points. Only during curve creation" msgstr "" diff -uraN gimp-2.2.0/po-plug-ins/zh_CN.gmo gimp-2.2.1/po-plug-ins/zh_CN.gmo --- gimp-2.2.0/po-plug-ins/zh_CN.gmo 2004-12-19 03:34:25.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/zh_CN.gmo 2004-12-28 16:59:09.000000000 +0100 @@ -430,7 +430,7 @@ cmcyancyan_ke-_mailgreengzip archivehueinvalid formatted GFlare file: %s k(1-x^p)kx^pk{x(1-x)}^pluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftpixels/%aredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsome sort of error with the file extension or lack thereofthe _Whole Screento alphavaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: gimp-std-plugins Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-11-24 19:30+0800 Last-Translator: Yuheng Xie Language-Team: zh_CN diff -uraN gimp-2.2.0/po-plug-ins/zh_CN.po gimp-2.2.1/po-plug-ins/zh_CN.po --- gimp-2.2.0/po-plug-ins/zh_CN.po 2004-12-19 03:34:21.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/zh_CN.po 2004-12-28 16:59:04.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: gimp-std-plugins\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-11-24 19:30+0800\n" "Last-Translator: Yuheng Xie \n" "Language-Team: zh_CN \n" @@ -944,7 +944,7 @@ msgid "Antialiasing quality. Higher is better, but slower" msgstr "反锯齿化的质量。越大质量越好,但是也越慢" -#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:720 +#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:691 #: plug-ins/common/wind.c:993 plug-ins/imagemap/imap_preferences.c:539 msgid "_Threshold:" msgstr "阈值(_T):" @@ -2067,12 +2067,12 @@ msgstr "方向" #: plug-ins/common/blinds.c:259 plug-ins/common/ripple.c:539 -#: plug-ins/common/tileit.c:419 plug-ins/pagecurl/pagecurl.c:530 +#: plug-ins/common/tileit.c:418 plug-ins/pagecurl/pagecurl.c:530 msgid "_Horizontal" msgstr "水平(_H)" #: plug-ins/common/blinds.c:260 plug-ins/common/ripple.c:540 -#: plug-ins/common/tileit.c:429 plug-ins/pagecurl/pagecurl.c:529 +#: plug-ins/common/tileit.c:428 plug-ins/pagecurl/pagecurl.c:529 msgid "_Vertical" msgstr "垂直(_V)" @@ -2093,7 +2093,7 @@ msgid "_Blur" msgstr "模糊(_B)" -#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:383 +#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:432 msgid "Blurring..." msgstr "正在模糊..." @@ -2203,23 +2203,23 @@ msgid "Ca_rtoon..." msgstr "卡通" -#: plug-ins/common/cartoon.c:228 plug-ins/common/dog.c:246 -#: plug-ins/common/gauss.c:430 plug-ins/common/neon.c:222 -#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:203 +#: plug-ins/common/cartoon.c:229 plug-ins/common/dog.c:247 +#: plug-ins/common/gauss.c:431 plug-ins/common/neon.c:221 +#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:204 #: plug-ins/common/softglow.c:220 plug-ins/gflare/gflare.c:972 #: plug-ins/sgi/sgi.c:528 plug-ins/xjt/xjt.c:1673 msgid "Cannot operate on indexed color images." msgstr "无法对索引颜色图像进行操作。" -#: plug-ins/common/cartoon.c:807 +#: plug-ins/common/cartoon.c:808 msgid "Cartoon" msgstr "卡通" -#: plug-ins/common/cartoon.c:837 plug-ins/common/photocopy.c:867 +#: plug-ins/common/cartoon.c:838 plug-ins/common/photocopy.c:867 msgid "_Mask radius:" msgstr "蒙板半径(_M):" -#: plug-ins/common/cartoon.c:851 +#: plug-ins/common/cartoon.c:852 msgid "_Percent black:" msgstr "黑色百分比(_P):" @@ -2377,28 +2377,28 @@ msgid "Colorify Custom Color" msgstr "单色化自定义颜色" -#: plug-ins/common/colortoalpha.c:105 +#: plug-ins/common/colortoalpha.c:104 msgid "Color to _Alpha..." msgstr "颜色到 Alpha(_A)..." -#: plug-ins/common/colortoalpha.c:183 +#: plug-ins/common/colortoalpha.c:181 msgid "Removing color..." msgstr "正在删除颜色..." -#: plug-ins/common/colortoalpha.c:364 +#: plug-ins/common/colortoalpha.c:377 msgid "Color to Alpha" msgstr "颜色到 Alpha" -#: plug-ins/common/colortoalpha.c:389 plug-ins/common/mapcolor.c:424 +#: plug-ins/common/colortoalpha.c:402 plug-ins/common/mapcolor.c:424 #: plug-ins/gfli/gfli.c:835 plug-ins/gfli/gfli.c:898 msgid "From:" msgstr "从:" -#: plug-ins/common/colortoalpha.c:393 +#: plug-ins/common/colortoalpha.c:406 msgid "Color to Alpha Color Picker" msgstr "颜色到 Alpha 颜色拾取" -#: plug-ins/common/colortoalpha.c:407 +#: plug-ins/common/colortoalpha.c:420 msgid "to alpha" msgstr "到 Alpha" @@ -2709,23 +2709,23 @@ msgid "_Cubism..." msgstr "立体派(_C)..." -#: plug-ins/common/cubism.c:267 +#: plug-ins/common/cubism.c:269 msgid "Cubism" msgstr "立体派" -#: plug-ins/common/cubism.c:296 +#: plug-ins/common/cubism.c:298 msgid "_Tile size:" msgstr "方块大小(_T):" -#: plug-ins/common/cubism.c:309 +#: plug-ins/common/cubism.c:311 msgid "T_ile saturation:" msgstr "方块饱和度(_I):" -#: plug-ins/common/cubism.c:320 +#: plug-ins/common/cubism.c:322 msgid "_Use background color" msgstr "使用背景色(_U)" -#: plug-ins/common/cubism.c:410 +#: plug-ins/common/cubism.c:412 msgid "Cubistic Transformation..." msgstr "立体派艺术变换..." @@ -3092,42 +3092,42 @@ msgid "Des_peckle..." msgstr "去除斑点(_P)..." -#: plug-ins/common/despeckle.c:420 plug-ins/common/despeckle.c:642 +#: plug-ins/common/despeckle.c:418 plug-ins/common/despeckle.c:640 msgid "Despeckle" msgstr "去除斑点" #. #. * Filter type controls... #. -#: plug-ins/common/despeckle.c:446 plug-ins/gimpressionist/orientmap.c:616 +#: plug-ins/common/despeckle.c:444 plug-ins/gimpressionist/orientmap.c:616 msgid "Type" msgstr "类型" #. parameter settings -#: plug-ins/common/despeckle.c:456 +#: plug-ins/common/despeckle.c:454 msgid "Median" msgstr "中值" -#: plug-ins/common/despeckle.c:462 +#: plug-ins/common/despeckle.c:460 msgid "_Adaptive" msgstr "适应(_A)" -#: plug-ins/common/despeckle.c:472 +#: plug-ins/common/despeckle.c:470 msgid "R_ecursive" msgstr "递归(_E)" -#: plug-ins/common/despeckle.c:496 plug-ins/common/neon.c:728 +#: plug-ins/common/despeckle.c:494 plug-ins/common/neon.c:727 #: plug-ins/common/nlfilt.c:1083 plug-ins/common/nova.c:359 -#: plug-ins/common/unsharp.c:694 plug-ins/common/whirlpinch.c:588 +#: plug-ins/common/unsharp.c:665 plug-ins/common/whirlpinch.c:588 #: plug-ins/gflare/gflare.c:2686 plug-ins/imagemap/imap_circle.c:278 msgid "_Radius:" msgstr "半径(_R):" -#: plug-ins/common/despeckle.c:512 +#: plug-ins/common/despeckle.c:510 msgid "_Black level:" msgstr "黑色水平(_B):" -#: plug-ins/common/despeckle.c:528 +#: plug-ins/common/despeckle.c:526 msgid "_White level:" msgstr "白色水平(_W):" @@ -3213,7 +3213,7 @@ msgid "_Displace..." msgstr "移位(_D)..." -#: plug-ins/common/displace.c:228 +#: plug-ins/common/displace.c:231 msgid "Displacing..." msgstr "正在移位..." @@ -3250,27 +3250,27 @@ msgid "Difference of Gaussians..." msgstr "高斯差分..." -#: plug-ins/common/dog.c:222 plug-ins/common/dog.c:273 +#: plug-ins/common/dog.c:227 plug-ins/common/dog.c:274 msgid "DoG Edge Detect" msgstr "高斯差分边缘检测" -#: plug-ins/common/dog.c:294 +#: plug-ins/common/dog.c:295 msgid "Smoothing parameters" msgstr "平滑参数" -#: plug-ins/common/dog.c:308 +#: plug-ins/common/dog.c:309 msgid "_Radius 1:" msgstr "半径 1(_R):" -#: plug-ins/common/dog.c:312 +#: plug-ins/common/dog.c:313 msgid "R_adius 2:" msgstr "半径 2(_A):" -#: plug-ins/common/dog.c:324 plug-ins/common/normalize.c:88 +#: plug-ins/common/dog.c:325 plug-ins/common/normalize.c:88 msgid "_Normalize" msgstr "标准化(_N)" -#: plug-ins/common/dog.c:335 plug-ins/gimpressionist/paper.c:149 +#: plug-ins/common/dog.c:336 plug-ins/gimpressionist/paper.c:149 msgid "_Invert" msgstr "反转(_I)" @@ -3322,7 +3322,7 @@ msgid "_Emboss..." msgstr "浮雕(_E)..." -#: plug-ins/common/emboss.c:374 plug-ins/common/emboss.c:439 +#: plug-ins/common/emboss.c:376 plug-ins/common/emboss.c:439 msgid "Emboss" msgstr "浮雕" @@ -3346,7 +3346,7 @@ msgid "En_grave..." msgstr "刻画(_G)..." -#: plug-ins/common/engrave.c:181 +#: plug-ins/common/engrave.c:182 msgid "Engraving..." msgstr "正在刻画..." @@ -3749,38 +3749,38 @@ msgid "_Gaussian Blur..." msgstr "高斯模糊(_G)..." -#: plug-ins/common/gauss.c:407 +#: plug-ins/common/gauss.c:413 msgid "Gaussian Blur..." msgstr "高斯模糊..." -#: plug-ins/common/gauss.c:460 +#: plug-ins/common/gauss.c:461 msgid "Gaussian Blur" msgstr "高斯模糊" #. parameter settings -#: plug-ins/common/gauss.c:483 +#: plug-ins/common/gauss.c:484 msgid "Blur Radius" msgstr "模糊半径" -#: plug-ins/common/gauss.c:497 plug-ins/common/jigsaw.c:2456 -#: plug-ins/common/spread.c:378 +#: plug-ins/common/gauss.c:498 plug-ins/common/jigsaw.c:2456 +#: plug-ins/common/spread.c:379 msgid "_Horizontal:" msgstr "水平(_H):" -#: plug-ins/common/gauss.c:501 plug-ins/common/jigsaw.c:2473 -#: plug-ins/common/spread.c:382 +#: plug-ins/common/gauss.c:502 plug-ins/common/jigsaw.c:2473 +#: plug-ins/common/spread.c:383 msgid "_Vertical:" msgstr "竖直(_V):" -#: plug-ins/common/gauss.c:524 +#: plug-ins/common/gauss.c:525 msgid "Blur Method" msgstr "模糊方法" -#: plug-ins/common/gauss.c:528 +#: plug-ins/common/gauss.c:529 msgid "_IIR" msgstr "IIR(_I)" -#: plug-ins/common/gauss.c:529 +#: plug-ins/common/gauss.c:530 msgid "_RLE" msgstr "RLE(_R)" @@ -4077,19 +4077,19 @@ msgid "_Glass Tile..." msgstr "玻璃瓦片(_G)..." -#: plug-ins/common/glasstile.c:208 +#: plug-ins/common/glasstile.c:209 msgid "Glass Tile..." msgstr "玻璃瓦片..." -#: plug-ins/common/glasstile.c:251 +#: plug-ins/common/glasstile.c:250 msgid "Glass Tile" msgstr "玻璃瓦片" -#: plug-ins/common/glasstile.c:282 +#: plug-ins/common/glasstile.c:281 msgid "Tile _width:" msgstr "瓦片宽度(_W):" -#: plug-ins/common/glasstile.c:296 plug-ins/common/mosaic.c:621 +#: plug-ins/common/glasstile.c:295 plug-ins/common/mosaic.c:621 msgid "Tile _height:" msgstr "瓦片高度(_H):" @@ -5072,15 +5072,15 @@ msgid "_Neon..." msgstr "氖(_N)..." -#: plug-ins/common/neon.c:204 +#: plug-ins/common/neon.c:207 msgid "Neon..." msgstr "氖..." -#: plug-ins/common/neon.c:698 +#: plug-ins/common/neon.c:697 msgid "Neon Detection" msgstr "氖检测" -#: plug-ins/common/neon.c:743 plug-ins/common/unsharp.c:707 +#: plug-ins/common/neon.c:742 plug-ins/common/unsharp.c:678 msgid "_Amount:" msgstr "量(_A):" @@ -5239,7 +5239,7 @@ msgid "_Scatter RGB..." msgstr "分散 RGB(_S)..." -#: plug-ins/common/noisify.c:284 +#: plug-ins/common/noisify.c:285 msgid "Adding Noise..." msgstr "添加噪音..." @@ -5308,7 +5308,7 @@ msgid "Oili_fy..." msgstr "油画(_F)..." -#: plug-ins/common/oilify.c:188 +#: plug-ins/common/oilify.c:189 msgid "Oil Painting..." msgstr "正在油画..." @@ -5443,7 +5443,7 @@ msgid "Photocopy" msgstr "影印" -#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:513 +#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:509 #: plug-ins/common/softglow.c:687 msgid "_Sharpness:" msgstr "锐度(_S):" @@ -6077,7 +6077,7 @@ msgid "_Ripple..." msgstr "波纹(_R)..." -#: plug-ins/common/ripple.c:219 +#: plug-ins/common/ripple.c:222 msgid "Rippling..." msgstr "正在绘制波纹..." @@ -6295,19 +6295,19 @@ msgid "_Selective Gaussian Blur..." msgstr "选择性高斯模糊(_S)..." -#: plug-ins/common/sel_gauss.c:186 +#: plug-ins/common/sel_gauss.c:187 msgid "Selective Gaussian Blur..." msgstr "选择性高斯模糊..." -#: plug-ins/common/sel_gauss.c:224 +#: plug-ins/common/sel_gauss.c:225 msgid "Selective Gaussian Blur" msgstr "选择性高斯模糊" -#: plug-ins/common/sel_gauss.c:256 +#: plug-ins/common/sel_gauss.c:257 msgid "_Blur radius:" msgstr "模糊半径(_B):" -#: plug-ins/common/sel_gauss.c:266 +#: plug-ins/common/sel_gauss.c:267 msgid "_Max. delta:" msgstr "最大偏差(_M):" @@ -6326,11 +6326,11 @@ #. #. * Let the user know what we're doing... #. -#: plug-ins/common/sharpen.c:315 +#: plug-ins/common/sharpen.c:311 msgid "Sharpening..." msgstr "正在锐化..." -#: plug-ins/common/sharpen.c:484 +#: plug-ins/common/sharpen.c:480 msgid "Sharpen" msgstr "锐化" @@ -6338,7 +6338,7 @@ msgid "_Shift..." msgstr "滑移(_S)..." -#: plug-ins/common/shift.c:191 +#: plug-ins/common/shift.c:194 msgid "Shifting..." msgstr "正在滑移..." @@ -6533,23 +6533,23 @@ msgid "_Sobel..." msgstr "Sobel(_S)..." -#: plug-ins/common/sobel.c:226 +#: plug-ins/common/sobel.c:227 msgid "Sobel Edge Detection" msgstr "Sobel 边缘检测" -#: plug-ins/common/sobel.c:248 +#: plug-ins/common/sobel.c:249 msgid "Sobel _Horizontally" msgstr "Sobel 水平(_H)" -#: plug-ins/common/sobel.c:260 +#: plug-ins/common/sobel.c:261 msgid "Sobel _Vertically" msgstr "Sobel 垂直(_V)" -#: plug-ins/common/sobel.c:272 +#: plug-ins/common/sobel.c:273 msgid "_Keep sign of result (one direction only)" msgstr "保持结果的符号(仅单向)(_K)" -#: plug-ins/common/sobel.c:358 +#: plug-ins/common/sobel.c:359 msgid "Sobel Edge Detecting..." msgstr "正在进行 Sobel 边缘检测..." @@ -6850,15 +6850,15 @@ msgid "Sp_read..." msgstr "扩散(_R)..." -#: plug-ins/common/spread.c:179 +#: plug-ins/common/spread.c:182 msgid "Spreading..." msgstr "正在扩散..." -#: plug-ins/common/spread.c:345 +#: plug-ins/common/spread.c:346 msgid "Spread" msgstr "扩散" -#: plug-ins/common/spread.c:363 +#: plug-ins/common/spread.c:364 msgid "Spread Amount" msgstr "扩散量" @@ -7143,7 +7143,8 @@ msgid "_Tile..." msgstr "平铺(_T)..." -#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:321 +#. Set the tile cache size +#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:320 msgid "Tiling..." msgstr "正在平铺..." @@ -7164,42 +7165,42 @@ msgstr "小块平铺(_S)..." #. Get the preview image -#: plug-ins/common/tileit.c:364 +#: plug-ins/common/tileit.c:363 msgid "TileIt" msgstr "小块平铺" #. Area for buttons etc #. Flip -#: plug-ins/common/tileit.c:407 plug-ins/ifscompose/ifscompose.c:628 +#: plug-ins/common/tileit.c:406 plug-ins/ifscompose/ifscompose.c:628 msgid "Flip" msgstr "翻转" -#: plug-ins/common/tileit.c:455 +#: plug-ins/common/tileit.c:454 msgid "A_ll tiles" msgstr "所有的小块(_L)" -#: plug-ins/common/tileit.c:469 +#: plug-ins/common/tileit.c:468 msgid "Al_ternate tiles" msgstr "交替的小块(_T)" -#: plug-ins/common/tileit.c:483 +#: plug-ins/common/tileit.c:482 msgid "_Explicit tile" msgstr "指定的小块(_E)" -#: plug-ins/common/tileit.c:489 +#: plug-ins/common/tileit.c:488 msgid "Ro_w:" msgstr "行(_W):" -#: plug-ins/common/tileit.c:513 +#: plug-ins/common/tileit.c:512 msgid "Col_umn:" msgstr "列(_U):" -#: plug-ins/common/tileit.c:565 +#: plug-ins/common/tileit.c:564 msgid "O_pacity:" msgstr "不透明度(_P):" #. Lower frame saying howmany segments -#: plug-ins/common/tileit.c:574 +#: plug-ins/common/tileit.c:573 msgid "Number of Segments" msgstr "块数" @@ -7343,15 +7344,15 @@ msgid "Unit Editor" msgstr "单位编辑器" -#: plug-ins/common/unsharp.c:149 +#: plug-ins/common/unsharp.c:143 msgid "_Unsharp Mask..." msgstr "虚光蒙板(_U)..." -#: plug-ins/common/unsharp.c:493 +#: plug-ins/common/unsharp.c:468 msgid "Merging..." msgstr "正在合并..." -#: plug-ins/common/unsharp.c:664 +#: plug-ins/common/unsharp.c:635 msgid "Unsharp Mask" msgstr "虚光蒙板" @@ -8391,19 +8392,19 @@ msgid "_Zoom:" msgstr "缩放(_Z):" -#: plug-ins/gfig/gfig-bezier.c:452 +#: plug-ins/gfig/gfig-bezier.c:448 msgid "Closed" msgstr "闭合" -#: plug-ins/gfig/gfig-bezier.c:457 +#: plug-ins/gfig/gfig-bezier.c:453 msgid "Close curve on completion" msgstr "结束时关闭曲线" -#: plug-ins/gfig/gfig-bezier.c:462 +#: plug-ins/gfig/gfig-bezier.c:458 msgid "Show Line Frame" msgstr "显示直线骨架" -#: plug-ins/gfig/gfig-bezier.c:467 +#: plug-ins/gfig/gfig-bezier.c:463 msgid "Draws lines between the control points. Only during curve creation" msgstr "在控制点之间连接直线。只在创建曲线时起作用" diff -uraN gimp-2.2.0/po-plug-ins/zh_TW.gmo gimp-2.2.1/po-plug-ins/zh_TW.gmo --- gimp-2.2.0/po-plug-ins/zh_TW.gmo 2004-12-19 03:34:25.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/zh_TW.gmo 2004-12-28 16:59:09.000000000 +0100 @@ -364,7 +364,7 @@ crash your browser.You can not rotate the whole image if there's a floating selection.You can not rotate the whole image if there's a selection.Z scale (size)Z:ZealousCropping(tm)...ZoomZoom inZoom in (make image bigger)Zoom outZoom out (make image smaller)Zoom scale:Zoom to_3x3_Abbreviation:_Advanced_Advanced Options_Algorithm:_Alpha_Alpha threshold:_Alpha:_Amount:_Amplitude:_Angle:_Animate_Antialiasing_Apply Canvas..._Autocrop Image_Autocrop Layer_Automatically convert_Background_Background color_Bevel width:_Bilinear_Black_Blacken_Blend_Blinds..._Blue_Blue:_Blur_Blur radius:_Border:_Bottom-left_Bottom:_Box_Brightness_Brightness:_Brush_Bump Map_Bump Map..._Bump map:_Bumpmap_Checkerboard..._Color Exchange..._Convolution Matrix..._Copy_Cubism..._Curve Bend..._Decompose..._Deflate_Deform radius:_Delay between frames where unspecified:_Depth:_Description:_Detail:_Diffraction Patterns..._Digits:_Displace..._Displacement:_Distorted_Divisions:_Edge..._Edit_Emboss_Emboss..._Encapsulated PostScript_Entire Image_Explicit tile_Exponent:_Factor:_Factory defaults_File_Filename:_Film..._Fit height to images_Flame..._FlareFX..._Font:_Force_Force tiling?_Foreground & background_Foreground color_Format:_Fractals_Free_Ftp Site_GFlare..._GIF comment:_GIMPressionist..._Gamma:_Gaussian Blur..._General_Generate full HTML document_Gfig..._Glass Tile..._Gopher_Gradient_Gray:_Green_Green:_Grey_Grow_Guillotine_HSL color model_Height_Height:_Help_Hidden_Hold the maximal channels_Hole offset:_Horizontal_Horizontal:_Horz. Spacing:_Hue_ID:_IIR_IWarp..._Identifier prefix:_Ignore_Illusion..._ImageMap..._Inch_Insert_Intensity:_Interlace_Invert_JPEG_JavaScript_Jigsaw..._Keep aspect ratio_Keep original surroundings_Keep sign of result (one direction only)_Kill_LZW_Laplace_Left_Lens refraction index:_Light_Lighting Effects..._Limit line width_Linear_Lines_Link_Load defaults_Lock channels_Loop forever_Lower_MIME_Mail Image..._Make surroundings transparent_Map backwards_Mask file extension:_Mask size:_Material_Max (%):_Max RGB..._Max. delta:_Maze..._Metallic_Midtones_Millimeter_Minimum value:_Mirror_Misc Ops._Modify red channel_Monochrome_Mosaic..._Motion Blur..._Move_NL Filter..._Natural color_None_Normal_Number height:_Number of segments:_Opacity:_Optimize (Difference)_Pagecurl..._Paper Tile..._Parameters_Percent black:_Period:_Phase:_Photocopy..._Ping Pong_Pixelize..._Plasma..._Playback..._Plural:_Polygon_PostScript level 2_Prefixed name:_Preserve luminosity_Presets_Preview_Preview once_Preview!_Print_Print..._Psychobilly_Qbist..._Quality:_RGB_RGB color model_RLE_RLE compression_RLE encoded_Radial_Radius 1:_Radius:_Random hue:_Random seed:_Randomize_Rays_Recipient:_Rectangle_Red:_Redo %s_Reflective_Remove_Rendering_Require default URL_Retain tilability_Right_Right Border_Ripple..._Rotated_Saturation_Saturation:_Save comment to file_Save defaults_Screen Shot..._Search depth:_Search:_Selective Gaussian Blur..._Sender:_Set surroundings to background color_Set surroundings to index 0_Settings_Shade under curl_Sharpen..._Sharpness:_Shift..._Show cursor_Size_Size:_Small Tiles..._Smear_Smoothing:_Snap-To Grid Enabled_Sobel..._Speed:_Spot function:_Square_Squares_Strength:_Symbol:_Threshold:_Tile size:_Tile..._Title:_Tools_Top-right_Top:_Transparent_URL to activate when this area is clicked: (required)_UnOptimize_Undo %s_Unit Editor_Unsharp Mask..._Update_Upper_Upper Border_Upper threshold:_Use GLib types (guint8*)_Use background color_Use cellspan_Uuencode_Value_Value Invert_Value:_Van Gogh (LIC)..._Variation:_Vert. Spacing:_Vertical_Vertical:_View_Voronoi_Warp..._Wavelength:_Waves..._Web Site_White_Width_Width:_Wind_Wrap_Wrap around_X Scale:_X displacement:_X ratio:_X size:_X10 format bitmap_X:_Y Scale:_Y displacement:_Y ratio:_Y size:_Y:_Yellow_Z:_Zealous Crop_Zoom_Zoom:a _Single Windowafteralphablackblueblueness_cb470blueness_cb470fblueness_cb709blueness_cb709fcmcyane-_mailgreengzip archivehueinvalid formatted GFlare file: %s k(1-x^p)kx^pk{x(1-x)}^pluma_y470luma_y470fluma_y709luma_y709fmagentamillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftpixels/%aredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsin^p-based functionsome sort of error with the file extension or lack thereofthe _Whole Screento alphavaluex (pixels)y (pixels)yellowProject-Id-Version: gimp-std-plug-ins 2.1.6 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:47+0100 +POT-Creation-Date: 2004-12-28 15:41+0100 PO-Revision-Date: 2004-09-28 11:46+0800 Last-Translator: Abel Cheung Language-Team: Chinese (traditional) diff -uraN gimp-2.2.0/po-plug-ins/zh_TW.po gimp-2.2.1/po-plug-ins/zh_TW.po --- gimp-2.2.0/po-plug-ins/zh_TW.po 2004-12-19 03:34:21.000000000 +0100 +++ gimp-2.2.1/po-plug-ins/zh_TW.po 2004-12-28 16:59:05.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: gimp-std-plug-ins 2.1.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:47+0100\n" +"POT-Creation-Date: 2004-12-28 15:41+0100\n" "PO-Revision-Date: 2004-09-28 11:46+0800\n" "Last-Translator: Abel Cheung \n" "Language-Team: Chinese (traditional) \n" @@ -941,7 +941,7 @@ msgid "Antialiasing quality. Higher is better, but slower" msgstr "平滑化的品質。數值大品質會較好,但處理較慢" -#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:720 +#: plug-ins/MapObject/mapobject_ui.c:614 plug-ins/common/unsharp.c:691 #: plug-ins/common/wind.c:993 plug-ins/imagemap/imap_preferences.c:539 msgid "_Threshold:" msgstr "界限值(_T):" @@ -2058,12 +2058,12 @@ msgstr "方向" #: plug-ins/common/blinds.c:259 plug-ins/common/ripple.c:539 -#: plug-ins/common/tileit.c:419 plug-ins/pagecurl/pagecurl.c:530 +#: plug-ins/common/tileit.c:418 plug-ins/pagecurl/pagecurl.c:530 msgid "_Horizontal" msgstr "水平(_H)" #: plug-ins/common/blinds.c:260 plug-ins/common/ripple.c:540 -#: plug-ins/common/tileit.c:429 plug-ins/pagecurl/pagecurl.c:529 +#: plug-ins/common/tileit.c:428 plug-ins/pagecurl/pagecurl.c:529 msgid "_Vertical" msgstr "垂直(_V)" @@ -2084,7 +2084,7 @@ msgid "_Blur" msgstr "模糊(_B)" -#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:383 +#: plug-ins/common/blur.c:191 plug-ins/common/unsharp.c:432 msgid "Blurring..." msgstr "模糊化..." @@ -2194,23 +2194,23 @@ msgid "Ca_rtoon..." msgstr "卡通" -#: plug-ins/common/cartoon.c:228 plug-ins/common/dog.c:246 -#: plug-ins/common/gauss.c:430 plug-ins/common/neon.c:222 -#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:203 +#: plug-ins/common/cartoon.c:229 plug-ins/common/dog.c:247 +#: plug-ins/common/gauss.c:431 plug-ins/common/neon.c:221 +#: plug-ins/common/photocopy.c:241 plug-ins/common/sel_gauss.c:204 #: plug-ins/common/softglow.c:220 plug-ins/gflare/gflare.c:972 #: plug-ins/sgi/sgi.c:528 plug-ins/xjt/xjt.c:1673 msgid "Cannot operate on indexed color images." msgstr "不適用於索引色影像。" -#: plug-ins/common/cartoon.c:807 +#: plug-ins/common/cartoon.c:808 msgid "Cartoon" msgstr "卡通" -#: plug-ins/common/cartoon.c:837 plug-ins/common/photocopy.c:867 +#: plug-ins/common/cartoon.c:838 plug-ins/common/photocopy.c:867 msgid "_Mask radius:" msgstr "" -#: plug-ins/common/cartoon.c:851 +#: plug-ins/common/cartoon.c:852 msgid "_Percent black:" msgstr "黑色百分比(_P):" @@ -2368,29 +2368,29 @@ msgid "Colorify Custom Color" msgstr "" -#: plug-ins/common/colortoalpha.c:105 +#: plug-ins/common/colortoalpha.c:104 msgid "Color to _Alpha..." msgstr "色彩轉為透明(_A)..." -#: plug-ins/common/colortoalpha.c:183 +#: plug-ins/common/colortoalpha.c:181 msgid "Removing color..." msgstr "正在移除顏色..." -#: plug-ins/common/colortoalpha.c:364 +#: plug-ins/common/colortoalpha.c:377 msgid "Color to Alpha" msgstr "色彩轉為透明" -#: plug-ins/common/colortoalpha.c:389 plug-ins/common/mapcolor.c:424 +#: plug-ins/common/colortoalpha.c:402 plug-ins/common/mapcolor.c:424 #: plug-ins/gfli/gfli.c:835 plug-ins/gfli/gfli.c:898 msgid "From:" msgstr "從:" # does not express well in Chinese, so change form -- Abel -#: plug-ins/common/colortoalpha.c:393 +#: plug-ins/common/colortoalpha.c:406 msgid "Color to Alpha Color Picker" msgstr "選擇準備轉換為透明的顏色" -#: plug-ins/common/colortoalpha.c:407 +#: plug-ins/common/colortoalpha.c:420 msgid "to alpha" msgstr "轉為透明" @@ -2701,23 +2701,23 @@ msgid "_Cubism..." msgstr "立體主義(_C)..." -#: plug-ins/common/cubism.c:267 +#: plug-ins/common/cubism.c:269 msgid "Cubism" msgstr "立體主義" -#: plug-ins/common/cubism.c:296 +#: plug-ins/common/cubism.c:298 msgid "_Tile size:" msgstr "磚片尺寸(_T):" -#: plug-ins/common/cubism.c:309 +#: plug-ins/common/cubism.c:311 msgid "T_ile saturation:" msgstr "磚片彩度(_I):" -#: plug-ins/common/cubism.c:320 +#: plug-ins/common/cubism.c:322 msgid "_Use background color" msgstr "使用背景顏色(_U)" -#: plug-ins/common/cubism.c:410 +#: plug-ins/common/cubism.c:412 msgid "Cubistic Transformation..." msgstr "立體主義變換..." @@ -3084,43 +3084,43 @@ msgid "Des_peckle..." msgstr "" -#: plug-ins/common/despeckle.c:420 plug-ins/common/despeckle.c:642 +#: plug-ins/common/despeckle.c:418 plug-ins/common/despeckle.c:640 msgid "Despeckle" msgstr "" #. #. * Filter type controls... #. -#: plug-ins/common/despeckle.c:446 plug-ins/gimpressionist/orientmap.c:616 +#: plug-ins/common/despeckle.c:444 plug-ins/gimpressionist/orientmap.c:616 msgid "Type" msgstr "類型" #. parameter settings -#: plug-ins/common/despeckle.c:456 +#: plug-ins/common/despeckle.c:454 #, fuzzy msgid "Median" msgstr "弧度" -#: plug-ins/common/despeckle.c:462 +#: plug-ins/common/despeckle.c:460 msgid "_Adaptive" msgstr "" -#: plug-ins/common/despeckle.c:472 +#: plug-ins/common/despeckle.c:470 msgid "R_ecursive" msgstr "" -#: plug-ins/common/despeckle.c:496 plug-ins/common/neon.c:728 +#: plug-ins/common/despeckle.c:494 plug-ins/common/neon.c:727 #: plug-ins/common/nlfilt.c:1083 plug-ins/common/nova.c:359 -#: plug-ins/common/unsharp.c:694 plug-ins/common/whirlpinch.c:588 +#: plug-ins/common/unsharp.c:665 plug-ins/common/whirlpinch.c:588 #: plug-ins/gflare/gflare.c:2686 plug-ins/imagemap/imap_circle.c:278 msgid "_Radius:" msgstr "半徑(_R):" -#: plug-ins/common/despeckle.c:512 +#: plug-ins/common/despeckle.c:510 msgid "_Black level:" msgstr "" -#: plug-ins/common/despeckle.c:528 +#: plug-ins/common/despeckle.c:526 msgid "_White level:" msgstr "" @@ -3207,7 +3207,7 @@ msgid "_Displace..." msgstr "移位(_D)..." -#: plug-ins/common/displace.c:228 +#: plug-ins/common/displace.c:231 msgid "Displacing..." msgstr "正在進行移位..." @@ -3244,27 +3244,27 @@ msgid "Difference of Gaussians..." msgstr "" -#: plug-ins/common/dog.c:222 plug-ins/common/dog.c:273 +#: plug-ins/common/dog.c:227 plug-ins/common/dog.c:274 msgid "DoG Edge Detect" msgstr "" -#: plug-ins/common/dog.c:294 +#: plug-ins/common/dog.c:295 msgid "Smoothing parameters" msgstr "" -#: plug-ins/common/dog.c:308 +#: plug-ins/common/dog.c:309 msgid "_Radius 1:" msgstr "半徑 _1:" -#: plug-ins/common/dog.c:312 +#: plug-ins/common/dog.c:313 msgid "R_adius 2:" msgstr "半徑 _2:" -#: plug-ins/common/dog.c:324 plug-ins/common/normalize.c:88 +#: plug-ins/common/dog.c:325 plug-ins/common/normalize.c:88 msgid "_Normalize" msgstr "" -#: plug-ins/common/dog.c:335 plug-ins/gimpressionist/paper.c:149 +#: plug-ins/common/dog.c:336 plug-ins/gimpressionist/paper.c:149 msgid "_Invert" msgstr "加入(_I)" @@ -3316,7 +3316,7 @@ msgid "_Emboss..." msgstr "浮雕(_E)..." -#: plug-ins/common/emboss.c:374 plug-ins/common/emboss.c:439 +#: plug-ins/common/emboss.c:376 plug-ins/common/emboss.c:439 msgid "Emboss" msgstr "浮雕" @@ -3340,7 +3340,7 @@ msgid "En_grave..." msgstr "雕刻(_G)..." -#: plug-ins/common/engrave.c:181 +#: plug-ins/common/engrave.c:182 msgid "Engraving..." msgstr "正在進行雕刻..." @@ -3744,38 +3744,38 @@ msgid "_Gaussian Blur..." msgstr "高斯模糊(_G)..." -#: plug-ins/common/gauss.c:407 +#: plug-ins/common/gauss.c:413 msgid "Gaussian Blur..." msgstr "高斯模糊..." -#: plug-ins/common/gauss.c:460 +#: plug-ins/common/gauss.c:461 msgid "Gaussian Blur" msgstr "高斯模糊" #. parameter settings -#: plug-ins/common/gauss.c:483 +#: plug-ins/common/gauss.c:484 msgid "Blur Radius" msgstr "模糊半徑" -#: plug-ins/common/gauss.c:497 plug-ins/common/jigsaw.c:2456 -#: plug-ins/common/spread.c:378 +#: plug-ins/common/gauss.c:498 plug-ins/common/jigsaw.c:2456 +#: plug-ins/common/spread.c:379 msgid "_Horizontal:" msgstr "水平(_H):" -#: plug-ins/common/gauss.c:501 plug-ins/common/jigsaw.c:2473 -#: plug-ins/common/spread.c:382 +#: plug-ins/common/gauss.c:502 plug-ins/common/jigsaw.c:2473 +#: plug-ins/common/spread.c:383 msgid "_Vertical:" msgstr "垂直(_V):" -#: plug-ins/common/gauss.c:524 +#: plug-ins/common/gauss.c:525 msgid "Blur Method" msgstr "模糊方式" -#: plug-ins/common/gauss.c:528 +#: plug-ins/common/gauss.c:529 msgid "_IIR" msgstr "_IIR" -#: plug-ins/common/gauss.c:529 +#: plug-ins/common/gauss.c:530 msgid "_RLE" msgstr "_RLE" @@ -4070,19 +4070,19 @@ msgid "_Glass Tile..." msgstr "玻璃磚片(_G)..." -#: plug-ins/common/glasstile.c:208 +#: plug-ins/common/glasstile.c:209 msgid "Glass Tile..." msgstr "玻璃磚片..." -#: plug-ins/common/glasstile.c:251 +#: plug-ins/common/glasstile.c:250 msgid "Glass Tile" msgstr "玻璃磚片" -#: plug-ins/common/glasstile.c:282 +#: plug-ins/common/glasstile.c:281 msgid "Tile _width:" msgstr "磚片寬度(_W):" -#: plug-ins/common/glasstile.c:296 plug-ins/common/mosaic.c:621 +#: plug-ins/common/glasstile.c:295 plug-ins/common/mosaic.c:621 msgid "Tile _height:" msgstr "磚片高度(_H):" @@ -5063,15 +5063,15 @@ msgid "_Neon..." msgstr "" -#: plug-ins/common/neon.c:204 +#: plug-ins/common/neon.c:207 msgid "Neon..." msgstr "" -#: plug-ins/common/neon.c:698 +#: plug-ins/common/neon.c:697 msgid "Neon Detection" msgstr "" -#: plug-ins/common/neon.c:743 plug-ins/common/unsharp.c:707 +#: plug-ins/common/neon.c:742 plug-ins/common/unsharp.c:678 msgid "_Amount:" msgstr "程度(_A):" @@ -5230,7 +5230,7 @@ msgid "_Scatter RGB..." msgstr "" -#: plug-ins/common/noisify.c:284 +#: plug-ins/common/noisify.c:285 msgid "Adding Noise..." msgstr "增加雜訊..." @@ -5300,7 +5300,7 @@ msgid "Oili_fy..." msgstr "油畫化(_F)..." -#: plug-ins/common/oilify.c:188 +#: plug-ins/common/oilify.c:189 msgid "Oil Painting..." msgstr "正在演化成油畫..." @@ -5435,7 +5435,7 @@ msgid "Photocopy" msgstr "複印" -#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:513 +#: plug-ins/common/photocopy.c:881 plug-ins/common/sharpen.c:509 #: plug-ins/common/softglow.c:687 msgid "_Sharpness:" msgstr "銳利程度(_S):" @@ -6083,7 +6083,7 @@ msgid "_Ripple..." msgstr "漣漪(_R)..." -#: plug-ins/common/ripple.c:219 +#: plug-ins/common/ripple.c:222 msgid "Rippling..." msgstr "加入漣漪效果..." @@ -6301,19 +6301,19 @@ msgid "_Selective Gaussian Blur..." msgstr "選擇性高斯模糊(_S)..." -#: plug-ins/common/sel_gauss.c:186 +#: plug-ins/common/sel_gauss.c:187 msgid "Selective Gaussian Blur..." msgstr "加入選擇性高斯模糊效果..." -#: plug-ins/common/sel_gauss.c:224 +#: plug-ins/common/sel_gauss.c:225 msgid "Selective Gaussian Blur" msgstr "選擇性高斯模糊" -#: plug-ins/common/sel_gauss.c:256 +#: plug-ins/common/sel_gauss.c:257 msgid "_Blur radius:" msgstr "模糊半徑(_B):" -#: plug-ins/common/sel_gauss.c:266 +#: plug-ins/common/sel_gauss.c:267 msgid "_Max. delta:" msgstr "最大 Δ 值(_M):" @@ -6332,11 +6332,11 @@ #. #. * Let the user know what we're doing... #. -#: plug-ins/common/sharpen.c:315 +#: plug-ins/common/sharpen.c:311 msgid "Sharpening..." msgstr "銳利化..." -#: plug-ins/common/sharpen.c:484 +#: plug-ins/common/sharpen.c:480 msgid "Sharpen" msgstr "銳利化" @@ -6344,7 +6344,7 @@ msgid "_Shift..." msgstr "平移(_S)..." -#: plug-ins/common/shift.c:191 +#: plug-ins/common/shift.c:194 msgid "Shifting..." msgstr "正在進行平移..." @@ -6539,23 +6539,23 @@ msgid "_Sobel..." msgstr "_Sobel..." -#: plug-ins/common/sobel.c:226 +#: plug-ins/common/sobel.c:227 msgid "Sobel Edge Detection" msgstr "Sobel 邊緣偵測" -#: plug-ins/common/sobel.c:248 +#: plug-ins/common/sobel.c:249 msgid "Sobel _Horizontally" msgstr "" -#: plug-ins/common/sobel.c:260 +#: plug-ins/common/sobel.c:261 msgid "Sobel _Vertically" msgstr "" -#: plug-ins/common/sobel.c:272 +#: plug-ins/common/sobel.c:273 msgid "_Keep sign of result (one direction only)" msgstr "保持結果的正負號[只有一個方向] (_K)" -#: plug-ins/common/sobel.c:358 +#: plug-ins/common/sobel.c:359 msgid "Sobel Edge Detecting..." msgstr "正在進行 Sobel 邊緣偵測..." @@ -6857,15 +6857,15 @@ msgid "Sp_read..." msgstr "擴散(_R)..." -#: plug-ins/common/spread.c:179 +#: plug-ins/common/spread.c:182 msgid "Spreading..." msgstr "擴散中..." -#: plug-ins/common/spread.c:345 +#: plug-ins/common/spread.c:346 msgid "Spread" msgstr "擴散" -#: plug-ins/common/spread.c:363 +#: plug-ins/common/spread.c:364 msgid "Spread Amount" msgstr "擴散量" @@ -7146,7 +7146,8 @@ msgid "_Tile..." msgstr "鋪排(_T)..." -#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:321 +#. Set the tile cache size +#: plug-ins/common/tile.c:192 plug-ins/common/tileit.c:320 msgid "Tiling..." msgstr "正在鋪排..." @@ -7167,42 +7168,42 @@ msgstr "小磚塊(_S)..." #. Get the preview image -#: plug-ins/common/tileit.c:364 +#: plug-ins/common/tileit.c:363 msgid "TileIt" msgstr "鋪排" #. Area for buttons etc #. Flip -#: plug-ins/common/tileit.c:407 plug-ins/ifscompose/ifscompose.c:628 +#: plug-ins/common/tileit.c:406 plug-ins/ifscompose/ifscompose.c:628 msgid "Flip" msgstr "翻轉" -#: plug-ins/common/tileit.c:455 +#: plug-ins/common/tileit.c:454 msgid "A_ll tiles" msgstr "所有磚塊(_L)" -#: plug-ins/common/tileit.c:469 +#: plug-ins/common/tileit.c:468 msgid "Al_ternate tiles" msgstr "" -#: plug-ins/common/tileit.c:483 +#: plug-ins/common/tileit.c:482 msgid "_Explicit tile" msgstr "特定磚塊(_E)" -#: plug-ins/common/tileit.c:489 +#: plug-ins/common/tileit.c:488 msgid "Ro_w:" msgstr "橫列列數(_W):" -#: plug-ins/common/tileit.c:513 +#: plug-ins/common/tileit.c:512 msgid "Col_umn:" msgstr "直行行數(_U):" -#: plug-ins/common/tileit.c:565 +#: plug-ins/common/tileit.c:564 msgid "O_pacity:" msgstr "透明度(_P):" #. Lower frame saying howmany segments -#: plug-ins/common/tileit.c:574 +#: plug-ins/common/tileit.c:573 msgid "Number of Segments" msgstr "區段數目" @@ -7346,15 +7347,15 @@ msgid "Unit Editor" msgstr "長度單位編輯器" -#: plug-ins/common/unsharp.c:149 +#: plug-ins/common/unsharp.c:143 msgid "_Unsharp Mask..." msgstr "反銳化遮罩(_U)..." -#: plug-ins/common/unsharp.c:493 +#: plug-ins/common/unsharp.c:468 msgid "Merging..." msgstr "" -#: plug-ins/common/unsharp.c:664 +#: plug-ins/common/unsharp.c:635 msgid "Unsharp Mask" msgstr "反銳化遮罩" @@ -8394,19 +8395,19 @@ msgid "_Zoom:" msgstr "縮放(_Z):" -#: plug-ins/gfig/gfig-bezier.c:452 +#: plug-ins/gfig/gfig-bezier.c:448 msgid "Closed" msgstr "封閉" -#: plug-ins/gfig/gfig-bezier.c:457 +#: plug-ins/gfig/gfig-bezier.c:453 msgid "Close curve on completion" msgstr "完成時封閉曲線" -#: plug-ins/gfig/gfig-bezier.c:462 +#: plug-ins/gfig/gfig-bezier.c:458 msgid "Show Line Frame" msgstr "" -#: plug-ins/gfig/gfig-bezier.c:467 +#: plug-ins/gfig/gfig-bezier.c:463 msgid "Draws lines between the control points. Only during curve creation" msgstr "" diff -uraN gimp-2.2.0/po-script-fu/ca.gmo gimp-2.2.1/po-script-fu/ca.gmo --- gimp-2.2.0/po-script-fu/ca.gmo 2004-12-19 03:34:32.000000000 +0100 +++ gimp-2.2.1/po-script-fu/ca.gmo 2004-12-28 16:59:15.000000000 +0100 @@ -1,28 +1,27 @@ -,   % +5=EV -g r|" -$* 2>DU^`c  ; @ JTc -kv  - %. 2?FW\ oy    - )> FR Z dnv} - " '3;CTn9=W  9>D Tahn  -  !& :DINW\ _k -    CD HTsz   -   <CIQYa -j u    y]}  (2IQWfx% 6> GQU eo  -.9K!S u  -  % /9L^p    $# !D f "} # + $ "!F8!N! !"!!""#"0F"*w" "" """""# ## #)#1#J#`#v# ~#### # #########$$$.$=$S$e$m$ u$ $$$ -$$$3`z'Q/5JrD<.7V,iLUZ)*( { x!tPIaF}@6k9+m4Nso\0h8TM:CHl_-&%nO?j e~Kv>b$ -df ]^=qcpg#RB21Y|"Sw[;uEAWXGy%s:/Script-Fu//Xtns/Script-FuAirbrushAmplitudeAngleAntialiasAuthor:AzimuthBackground ColorBackground ImageBase colorBehaviourBlackBlur XBlur YBrushBurn-In: Need two layers in total!Cell size (pixels)CircleColorColor 1Color 2Color 3ColumnsCopyright:Current CommandCustom GradientDate:DefocusDensity (%)DepthDetail in MiddleDiameterDownDraws Spirographs, Epitrochoids and Lissajous Curves. More info at http://netword.com/*spyrogimpEffect size (pixels * 30)Effect size (pixels * 4)ElevationEnd XEnd YEpitrochoidEraseError while executing +  H I M Y b l r |        "    + +"-=MS [gm~`  1 6 @JY +al u   16 ISZj +q|   *;L]muy +  #<Wp9= ,HYi    )1FVf +mx   + ?#c gsz     !)19 +B MZq w   y 5?G O](e!&,%5[ z   7 +GRd lv|  +   &0CUgy    $#!;]"t#+$" F/Nv " "0=*n   +  (AWm u    +5 @ H F?hocXxuVr"~#sMbk@$-a =,CE1A2t!mi.4 +_U7v{3}[djenfLq^0H; wpD>|g]P( +TQR6 :'K8 %JYZ)IO\9W/Gz<y&*lBNS`5%s:/Script-Fu/AirbrushAmplitudeAngleAntialiasAuthor:AzimuthBackground ColorBackground ImageBehaviourBlackBlur XBlur YBrushBurn-In: Need two layers in total!CircleColorColor 1Color 2Color 3ColumnsCopyright:Current CommandCustom GradientDate:DefocusDensity (%)DepthDetail in MiddleDiameterDownDraws Spirographs, Epitrochoids and Lissajous Curves. More info at http://netword.com/*spyrogimpElevationEnd XEnd YEpitrochoidEraseError while executing %s -%sEvenFG-BG-HSVFG-BG-RGBFG-TransparentFadeoutFeatheringFilenameFill with BGFontFont colorForeground colorFrameFramesGradientGradient: Loop SawtoothGradient: Loop TriangleGranularityGranularity (1 is Low)HeightHexagonHexagonsIIRImage Types:InvertInvert directionLeftLighting (degrees)LissajousLoopedLower colorLower color (active)Margin (pixels)Mask opacityMask sizeMottleNo matchesNumberNumber of times to whirlOctagonsOddOffset (pixels)Offset XOffset YOffsets (pixels * 2)OpacityOrientationPaddingPadding XPadding YPatternPencilPentagonPixelizePolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPrepare for GIFPressedRLERadiusRadius (pixels)RandomnessRightRoughnessRowsSIOD OutputScale XScale YScript ArgumentsScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Server OptionsScript-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSepiaServer Logfile:Server Port:ShadowShapeSharpness (degrees)SizeSmearSmoothSolid ColorSpacingSpeed (pixels/frame)Spots density XSpots density YSpreadSpyrographSquareSquaresStainsStart XStart YSupersampleTextText color (active)ThicknessTileToolTriangleTypeUpUpper colorUpper color (active)WavelengthWhirl amountWhirl angleWidthWrapX divisionsY divisions_Border (pixels)_Filter (regexp)_Labels_Search:_TextProject-Id-Version: gimp-script-fu 2.0 +%sEvenFG-BG-HSVFG-BG-RGBFG-TransparentFadeoutFeatheringFilenameFill with BGFontFrameFramesGradientGradient: Loop SawtoothGradient: Loop TriangleGranularityGranularity (1 is Low)HeightHexagonHexagonsIIRImage Types:InvertInvert directionLeftLighting (degrees)LissajousLoopedMargin (pixels)MottleNo matchesNumberOctagonsOddOffset (pixels)Offset XOffset YOffsets (pixels * 2)OpacityOrientationPaddingPadding XPadding YPatternPencilPentagonPixelizePolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPrepare for GIFPressedRLERadiusRadius (pixels)RandomnessRightRoughnessRowsSIOD OutputScale XScale YScript ArgumentsScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Server OptionsScript-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSepiaServer Logfile:Server Port:ShadowShapeSharpness (degrees)SizeSmearSmoothSolid ColorSpacingSpeed (pixels/frame)Spots density XSpots density YSpreadSpyrographSquareSquaresStainsStart XStart YSupersampleTextThicknessTileToolTriangleTypeUpWavelengthWidthWrap_Border (pixels)_Filter (regexp)_Labels_Search:_TextProject-Id-Version: gimp-script-fu Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:48+0100 -PO-Revision-Date: 2004-03-26 19:46+0100 +POT-Creation-Date: 2004-12-28 15:42+0100 +PO-Revision-Date: 2004-04-29 19:36+0100 Last-Translator: Xavier Beà Language-Team: Catalan MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit -%s:/Script-Fu//Extensions/Script-FuEspraiAmpladaAngleSuavitzatAutor:AzimutColor de fonsImatge de fonsColor baseComportamentNegreDifumina en XDifumina en YPinzellCrema: es necessiten dues capesMida de la cel·la (píxels)CercleColorColor 1Color 2Color 3ColumnesCopyright:Ordre actualDegradat personalitzatData:DesenfocaDensitat (%)ProfunditatDetall en el migDiàmetreAvallDibuixa espirògrafs, epitrocòides i curves de Lissajous. Podeu obtenir més informació a http://netword.com/*spyrogimpMida de l'efecte (píxels * 30)Mida de l'efecte (píxels * 4)ElevacióX finalY finalEpitrocòidesEsborraS'ha produït un error en executar +%s:/Script-Fu/EspraiAmpladaAngleSuavitzatAutor:AzimutColor de fonsImatge de fonsComportamentNegreDifumina en XDifumina en YPinzellCrema: es necessiten dues capesCercleColorColor 1Color 2Color 3ColumnesCopyright:Ordre actualDegradat personalitzatData:DesenfocaDensitat (%)ProfunditatDetall en el migDiàmetreAvallDibuixa espirògrafs, epitrocòides i curves de Lissajous. Podeu obtenir més informació a http://netword.com/*spyrogimpElevacióX finalY finalEpitrocòidesEsborraS'ha produït un error en executar %s -%sParellDe primer pla a fons (HSV)De primer pla a fons (RGB)Primer pla transparentEsvaeixPlomaNom del fitxerOmple amb el fonsTipus de lletraColor del tipus de lletraColor de primer plaMarcMarcsDegradatDegradat: repeteix les dents de serraDegradat: repeteix el triangleGranularitatGranularitat (1 és baix)AlçadaHexàgonHexàgonsIIRTipus d'imatge:InverteixInverteix la direccióEsquerraIl·luminació (graus)LissajousEn acabar torna a començarColor inferiorColor inferior (actiu)Marge (píxels)Opacitat de la màscaraMida de la màscaraMulticolorCap coincidènciaNúmeroNombre de vegades que fa remolinsOctàgonsSenarDesplaçament (píxels)Desplaçament en XDesplaçament en YDesplaçaments (píxels * 2)OpacitatOrientacióEmplenatEmplenat XEmplenat en YPatróLlapisPentàgonPixelitzaPolígon: 10 caresPolígon: 7 caresPolígon: 8 caresPolígon: 9 caresPrepara per a un GIFPremutRLERadiRadi (píxels)AleatorietatDretaDuresaFilesSortida SIODEscala en XEscala en YArguments de la seqüència d'ordresSelecció de pinzell de l'Script-FuSelecció de color de l'Script-FuConsola de l'Script-FuSelecció de fitxer de l'Script-FuSelecció de carpeta de l'Script-FuSelecció de tipus de lletra de l'Script-FuSelecció de degradat de l'Script-FuOpcions de servidor de l'Script-FuL'Script-Fu en mode de consola només permet la invocació interactivaEl mode d'avaluació de l'Script-Fu només permet la invocació no interactivaScript-Fu: %sSelecció de patró de l'Script-FuCerca pel _comentariCerca pel _nomS'està cercant. Espereu un momentS'està cercant pel comentari. Espereu un momentS'està cercant pel nom. Espereu un momentGeneradorSèpiaFitxer de registre del servidor:Port del servidor:OmbraFormaDefinició (graus)MidaEscampaSuavitzaColor sòlidEspaiatVelocitat (píxels/marc)Densitat X dels puntsDensitat Y dels puntsEscampaEspirògrafQuadratQuadratsTaquesX inicialY inicialSupermostratgeTextColor del text (actiu)GruixMosaicEinaTriangleTipusAmuntColor superiorColor superior (actiu)Longitud d'onaQuantitat de remolinsAngle del remolíAmpladaEnvoltaDivisions d'XDivisions d'Y_Marge (píxels)_Filtre (expressió regular)Eti_quetes_Cerca:_Text \ No newline at end of file +%sParellDe primer pla a fons (HSV)De primer pla a fons (RGB)Primer pla transparentEsvaeixPlomaNom del fitxerOmple amb el fonsTipus de lletraMarcMarcsDegradatDegradat: repeteix les dents de serraDegradat: repeteix el triangleGranularitatGranularitat (1 és baix)AlçadaHexàgonHexàgonsIIRTipus d'imatge:InverteixInverteix la direccióEsquerraIl·luminació (graus)LissajousEn acabar torna a començarMarge (píxels)MulticolorCap coincidènciaNúmeroOctàgonsSenarDesplaçament (píxels)Desplaçament en XDesplaçament en YDesplaçaments (píxels * 2)OpacitatOrientacióEmplenatEmplenat XEmplenat en YPatróLlapisPentàgonPixelitzaPolígon: 10 caresPolígon: 7 caresPolígon: 8 caresPolígon: 9 caresPrepara per a un GIFPremutRLERadiRadi (píxels)AleatorietatDretaDuresaFilesSortida SIODEscala en XEscala en YArguments de la seqüència d'ordresSelecció de pinzell de l'Script-FuSelecció de color de l'Script-FuConsola de l'Script-FuSelecció de fitxer de l'Script-FuSelecció de carpeta de l'Script-FuSelecció de tipus de lletra de l'Script-FuSelecció de degradat de l'Script-FuOpcions de servidor de l'Script-FuL'Script-Fu en mode de consola només permet la invocació interactivaEl mode d'avaluació de l'Script-Fu només permet la invocació no interactivaScript-Fu: %sSelecció de patró de l'Script-FuCerca pel _comentariCerca pel _nomS'està cercant. Espereu un momentS'està cercant pel comentari. Espereu un momentS'està cercant pel nom. Espereu un momentGeneradorSèpiaFitxer de registre del servidor:Port del servidor:OmbraFormaDefinició (graus)MidaEscampaSuavitzaColor sòlidEspaiatVelocitat (píxels/marc)Densitat X dels puntsDensitat Y dels puntsEscampaEspirògrafQuadratQuadratsTaquesX inicialY inicialSupermostratgeTextGruixMosaicEinaTriangleTipusAmuntLongitud d'onaAmpladaEnvolta_Marge (píxels)_Filtre (expressió regular)Eti_quetes_Cerca:_Text \ No newline at end of file diff -uraN gimp-2.2.0/po-script-fu/ca.po gimp-2.2.1/po-script-fu/ca.po --- gimp-2.2.0/po-script-fu/ca.po 2004-12-19 03:34:26.000000000 +0100 +++ gimp-2.2.1/po-script-fu/ca.po 2004-12-28 16:59:09.000000000 +0100 @@ -1,14 +1,13 @@ # gimp-script-fu translation to Catalan. -# Copyright (C) 2000, 2001, 2003, 2004 Free Software Foundation, Inc. +# Copyright (C) 2000 Free Software Foundation, Inc. # Softcatala , 2000-2001 -# Xavier Beà , 2003, 2004. # Xavier Conde Rueda , 2004 msgid "" msgstr "" -"Project-Id-Version: gimp-script-fu 2.0\n" +"Project-Id-Version: gimp-script-fu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:48+0100\n" -"PO-Revision-Date: 2004-03-26 19:46+0100\n" +"POT-Creation-Date: 2004-12-28 15:42+0100\n" +"PO-Revision-Date: 2004-04-29 19:36+0100\n" "Last-Translator: Xavier Beà \n" "Language-Team: Catalan \n" "MIME-Version: 1.0\n" @@ -167,8 +166,9 @@ # #: plug-ins/script-fu/script-fu.c:129 plug-ins/script-fu/script-fu.c:158 #: plug-ins/script-fu/script-fu.c:290 +#, fuzzy msgid "/Xtns/Script-Fu" -msgstr "/Extensions/Script-Fu" +msgstr "/Extensions/Script-Fu/Logotipus/N_eó..." #: plug-ins/script-fu/script-fu.c:151 msgid "_Start Server..." @@ -313,7 +313,7 @@ #: plug-ins/script-fu/scripts/title-header.scm.h:1 #, fuzzy msgid "/Xtns/Script-Fu/Logos" -msgstr "/Extensions/Script-Fu" +msgstr "/Extensions/Script-Fu/Logotipus/N_eó..." #: plug-ins/script-fu/scripts/3d-outline.scm.h:4 #, fuzzy @@ -332,7 +332,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:5 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:4 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:6 -#: plug-ins/script-fu/scripts/asc2img.scm.h:8 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:4 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:5 #: plug-ins/script-fu/scripts/beveled-button.scm.h:3 @@ -373,7 +372,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:6 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:5 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:7 -#: plug-ins/script-fu/scripts/asc2img.scm.h:9 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:5 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:6 #: plug-ins/script-fu/scripts/beveled-button.scm.h:4 @@ -512,7 +510,6 @@ #: plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:2 #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:3 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:4 -#: plug-ins/script-fu/scripts/asc2img.scm.h:3 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:3 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:4 #: plug-ins/script-fu/scripts/blended-logo.scm.h:3 @@ -593,7 +590,7 @@ #: plug-ins/script-fu/scripts/slide.scm.h:1 #, fuzzy msgid "/Script-Fu/Decor" -msgstr "/Script-Fu/Decoració/_Diapositiva..." +msgstr "/Script-Fu/Decoració/_Diapositiva..." #: plug-ins/script-fu/scripts/add-bevel.scm.h:2 msgid "Add B_evel..." @@ -729,9 +726,8 @@ #: plug-ins/script-fu/scripts/alien-glow-bar.scm.h:7 #: plug-ins/script-fu/scripts/beveled-pattern-hrule.scm.h:5 -#, fuzzy msgid "_Hrule..." -msgstr "Navega..." +msgstr "" # #: plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:5 @@ -742,9 +738,8 @@ #: plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:6 #: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:5 -#, fuzzy msgid "_Bullet..." -msgstr "Navega..." +msgstr "" #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:2 #: plug-ins/script-fu/scripts/beveled-pattern-button.scm.h:2 @@ -764,7 +759,6 @@ # #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:11 -#: plug-ins/script-fu/scripts/asc2img.scm.h:10 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:7 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:8 #: plug-ins/script-fu/scripts/beveled-button.scm.h:10 @@ -813,57 +807,6 @@ msgid "Width of gaps" msgstr "Amplada de les obertures" -#: plug-ins/script-fu/scripts/asc2img.scm.h:1 -#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 -#: plug-ins/script-fu/scripts/image-structure.scm.h:1 -#, fuzzy -msgid "/Script-Fu/Utils" -msgstr "/Script-Fu/Utilitats/D'_ASCII a capa..." - -# -#: plug-ins/script-fu/scripts/asc2img.scm.h:2 -#: plug-ins/script-fu/scripts/font-map.scm.h:1 -#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 -#, fuzzy -msgid "/Xtns/Script-Fu/Utils" -msgstr "/Extensions/Script-Fu" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:5 -#, fuzzy, no-c-format -msgid "Buffer amount (% height of text)" -msgstr "Quantitat de memòria intermitja (% d'alçada del text)" - -# -#: plug-ins/script-fu/scripts/asc2img.scm.h:6 -#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 -#, fuzzy -msgid "File name" -msgstr "Nom del fitxer" - -# -#: plug-ins/script-fu/scripts/asc2img.scm.h:7 -#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 -msgid "Filename" -msgstr "Nom del fitxer" - -# -#: plug-ins/script-fu/scripts/asc2img.scm.h:11 -#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 -#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 -#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 -#, fuzzy -msgid "Transparent background" -msgstr "Fons transparent" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:12 -msgid "_ASCII to Image..." -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:13 -#, fuzzy -msgid "_ASCII to Layer..." -msgstr "/Script-Fu/Utilitats/D'_ASCII a capa..." - #: plug-ins/script-fu/scripts/basic1-logo.scm.h:8 msgid "_Basic I..." msgstr "" @@ -877,7 +820,7 @@ #: plug-ins/script-fu/scripts/pupi-button.scm.h:1 #, fuzzy msgid "/Xtns/Script-Fu/Buttons" -msgstr "/Extensions/Script-Fu" +msgstr "/Extensions/Script-Fu/Botons/Botons a_rrodonits..." # #: plug-ins/script-fu/scripts/beveled-button.scm.h:2 @@ -926,6 +869,14 @@ msgid "Diameter" msgstr "Diàmetre" +# +#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 +#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 +#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 +#, fuzzy +msgid "Transparent background" +msgstr "Fons transparent" + #: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:4 msgid "H_eading..." msgstr "" @@ -970,9 +921,8 @@ msgstr "Radi màxim de difuminat" #: plug-ins/script-fu/scripts/blend-anim.scm.h:5 -#, fuzzy msgid "_Blend..." -msgstr "Navega..." +msgstr "" #: plug-ins/script-fu/scripts/blended-logo.scm.h:4 msgid "Blen_ded..." @@ -1136,7 +1086,7 @@ #: plug-ins/script-fu/scripts/carve-it.scm.h:3 #, fuzzy msgid "Carve white areas" -msgstr "Esculpeix les àrees blanques" +msgstr "Escolpeix les àrees blanques" # #: plug-ins/script-fu/scripts/carve-it.scm.h:4 @@ -1152,7 +1102,7 @@ #: plug-ins/script-fu/scripts/carved-logo.scm.h:3 #, fuzzy msgid "Carve raised text" -msgstr "Esculpeix el text aixecat" +msgstr "Escolpeix el text aixecat" #: plug-ins/script-fu/scripts/carved-logo.scm.h:4 msgid "Carved..." @@ -1210,9 +1160,8 @@ msgstr "Manté el fons" #: plug-ins/script-fu/scripts/chrome-it.scm.h:2 -#, fuzzy msgid "C_hrome-It..." -msgstr "Navega..." +msgstr "" # #: plug-ins/script-fu/scripts/chrome-it.scm.h:3 @@ -1260,7 +1209,7 @@ #: plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:9 #, fuzzy msgid "Highlight balance" -msgstr "Resalta el balanç" +msgstr "Ressalta el balanç" #: plug-ins/script-fu/scripts/chrome-logo.scm.h:5 #, fuzzy @@ -1363,7 +1312,7 @@ "Darken only\n" "(Better, but only for images with alot of white)" msgstr "" -"Només enfosqueja\n" +"Només enfosqueix\n" "(Millor, però només per a imatges amb molt de blanc)" # @@ -1452,7 +1401,7 @@ #: plug-ins/script-fu/scripts/distress-selection.scm.h:8 #, fuzzy msgid "_Distress Selection..." -msgstr "/Script-Fu/Selecció/_Apura selecció..." +msgstr "Manté la selecció" #: plug-ins/script-fu/scripts/drop-shadow.scm.h:1 #: plug-ins/script-fu/scripts/perspective-shadow.scm.h:1 @@ -1592,9 +1541,11 @@ msgid "Use growing selection" msgstr "Utilitza la selecció de creixement" +# #: plug-ins/script-fu/scripts/fade-outline.scm.h:10 +#, fuzzy msgid "_Fade Outline..." -msgstr "" +msgstr "Patró (contorn)" # #: plug-ins/script-fu/scripts/flatland.scm.h:2 @@ -1639,6 +1590,13 @@ msgid "_Flatland..." msgstr "" +# +#: plug-ins/script-fu/scripts/font-map.scm.h:1 +#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 +#, fuzzy +msgid "/Xtns/Script-Fu/Utils" +msgstr "/Extensions/Script-Fu/Utilitats/_Mapa de tipus de lletra..." + #: plug-ins/script-fu/scripts/font-map.scm.h:2 #, fuzzy msgid "Active colors" @@ -1909,10 +1867,12 @@ msgstr "Degradat personalitzat" #: plug-ins/script-fu/scripts/grid-system.scm.h:2 +#, fuzzy msgid "X divisions" msgstr "Divisions d'X" #: plug-ins/script-fu/scripts/grid-system.scm.h:3 +#, fuzzy msgid "Y divisions" msgstr "Divisions d'Y" @@ -1924,9 +1884,11 @@ msgid "Creates four Guides around the bounding box of the current selection." msgstr "" +# #: plug-ins/script-fu/scripts/guides-from-selection.scm.h:2 +#, fuzzy msgid "New Guides from _Selection" -msgstr "" +msgstr "Utilitza la selecció de creixement" # #: plug-ins/script-fu/scripts/guides-new-percent.scm.h:1 @@ -1966,6 +1928,12 @@ msgid "_Remove all Guides" msgstr "" +#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 +#: plug-ins/script-fu/scripts/image-structure.scm.h:1 +#, fuzzy +msgid "/Script-Fu/Utils" +msgstr "/Script-Fu/Utilitats/D'_ASCII a capa..." + # #: plug-ins/script-fu/scripts/hsv-graph.scm.h:2 #, fuzzy @@ -1975,7 +1943,7 @@ #: plug-ins/script-fu/scripts/hsv-graph.scm.h:3 #, fuzzy msgid "Draw _HSV Graph..." -msgstr "/Script-Fu/Utilitats/Dibuixa gràfic _HSV..." +msgstr "/Script-Fu/Utilitats/Dibuixa gràfic _HSV..." #: plug-ins/script-fu/scripts/hsv-graph.scm.h:4 msgid "End X" @@ -2206,6 +2174,7 @@ msgstr "" #: plug-ins/script-fu/scripts/news-text.scm.h:4 +#, fuzzy msgid "Cell size (pixels)" msgstr "Mida de la cel·la (píxels)" @@ -2294,11 +2263,14 @@ msgid "_Predator..." msgstr "" +# #: plug-ins/script-fu/scripts/pupi-button.scm.h:5 +#, fuzzy msgid "Lower color" msgstr "Color inferior" #: plug-ins/script-fu/scripts/pupi-button.scm.h:6 +#, fuzzy msgid "Lower color (active)" msgstr "Color inferior (actiu)" @@ -2328,14 +2300,18 @@ msgstr "Relació d'arrodoniment" #: plug-ins/script-fu/scripts/pupi-button.scm.h:15 +#, fuzzy msgid "Text color (active)" msgstr "Color del text (actiu)" +# #: plug-ins/script-fu/scripts/pupi-button.scm.h:16 +#, fuzzy msgid "Upper color" msgstr "Color superior" #: plug-ins/script-fu/scripts/pupi-button.scm.h:17 +#, fuzzy msgid "Upper color (active)" msgstr "Color superior (actiu)" @@ -2343,6 +2319,7 @@ msgid "_Round Button..." msgstr "" +# #: plug-ins/script-fu/scripts/rendermap.scm.h:2 msgid "Behaviour" msgstr "Comportament" @@ -2419,14 +2396,26 @@ msgid "Brush name" msgstr "Nom del pinzell" -#: plug-ins/script-fu/scripts/select-to-brush.scm.h:5 +# +#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 #, fuzzy +msgid "File name" +msgstr "Nom del fitxer" + +#: plug-ins/script-fu/scripts/select-to-brush.scm.h:5 msgid "To _Brush..." -msgstr "Navega..." +msgstr "" +# #: plug-ins/script-fu/scripts/select-to-image.scm.h:2 +#, fuzzy msgid "To _Image" -msgstr "" +msgstr "Indexa la imatge" + +# +#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 +msgid "Filename" +msgstr "Nom del fitxer" # #: plug-ins/script-fu/scripts/select-to-pattern.scm.h:3 @@ -2438,7 +2427,7 @@ #: plug-ins/script-fu/scripts/select-to-pattern.scm.h:4 #, fuzzy msgid "To _Pattern..." -msgstr "Patró" +msgstr "Patró de text" #: plug-ins/script-fu/scripts/selection-round.scm.h:1 msgid "Concave" @@ -2450,16 +2439,17 @@ msgid "Radius (%)" msgstr "Radi" -# #: plug-ins/script-fu/scripts/selection-round.scm.h:4 -#, fuzzy msgid "Rounded R_ectangle..." -msgstr "/Script-Fu/Selecció/A_rrodoneix..." +msgstr "" +# #: plug-ins/script-fu/scripts/slide.scm.h:3 +#, fuzzy msgid "Font color" msgstr "Color del tipus de lletra" +# #: plug-ins/script-fu/scripts/slide.scm.h:4 msgid "Number" msgstr "Número" @@ -2480,7 +2470,7 @@ #: plug-ins/script-fu/scripts/sphere.scm.h:1 #, fuzzy msgid "/Xtns/Script-Fu/Misc" -msgstr "/Extensions/Script-Fu" +msgstr "/Extensions/Script-Fu/Miscel·lània/E_sfera..." #: plug-ins/script-fu/scripts/sphere.scm.h:3 msgid "Lighting (degrees)" @@ -2497,9 +2487,8 @@ msgstr "Color de l'esfera" #: plug-ins/script-fu/scripts/sphere.scm.h:7 -#, fuzzy msgid "_Sphere..." -msgstr "Navega..." +msgstr "" # #: plug-ins/script-fu/scripts/spinning-globe.scm.h:2 @@ -2659,12 +2648,14 @@ msgid "_Spyrogimp..." msgstr "Espirògraf" +# #: plug-ins/script-fu/scripts/starburst-logo.scm.h:4 #, fuzzy msgid "Burst color" msgstr "Color de l'explosió" #: plug-ins/script-fu/scripts/starburst-logo.scm.h:5 +#, fuzzy msgid "Effect size (pixels * 30)" msgstr "Mida de l'efecte (píxels * 30)" @@ -2673,23 +2664,27 @@ msgstr "" #: plug-ins/script-fu/scripts/starscape-logo.scm.h:3 +#, fuzzy msgid "Effect size (pixels * 4)" msgstr "Mida de l'efecte (píxels * 4)" #: plug-ins/script-fu/scripts/starscape-logo.scm.h:7 -#, fuzzy msgid "Sta_rscape..." -msgstr "Navega..." +msgstr "" #: plug-ins/script-fu/scripts/swirltile.scm.h:9 msgid "Swirl-_Tile..." msgstr "" +# #: plug-ins/script-fu/scripts/swirltile.scm.h:10 +#, fuzzy msgid "Whirl amount" msgstr "Quantitat de remolins" +# #: plug-ins/script-fu/scripts/swirly-pattern.scm.h:2 +#, fuzzy msgid "Number of times to whirl" msgstr "Nombre de vegades que fa remolins" @@ -2698,7 +2693,9 @@ msgid "Quarter size" msgstr "Quart de mida" +# #: plug-ins/script-fu/scripts/swirly-pattern.scm.h:4 +#, fuzzy msgid "Whirl angle" msgstr "Angle del remolí" @@ -2706,20 +2703,25 @@ msgid "_Swirly..." msgstr "" +# #: plug-ins/script-fu/scripts/t-o-p-logo.scm.h:4 +#, fuzzy msgid "Base color" msgstr "Color base" +# #: plug-ins/script-fu/scripts/t-o-p-logo.scm.h:6 #, fuzzy msgid "Edge only" msgstr "Només fil" +# #: plug-ins/script-fu/scripts/t-o-p-logo.scm.h:7 #, fuzzy msgid "Edge width" msgstr "Amplada de fil" +# #: plug-ins/script-fu/scripts/t-o-p-logo.scm.h:10 #, fuzzy msgid "Hit rate" @@ -2729,10 +2731,12 @@ msgid "_Particle Trace..." msgstr "" +# #: plug-ins/script-fu/scripts/text-circle.scm.h:2 msgid "Antialias" msgstr "Suavitzat" +# #: plug-ins/script-fu/scripts/text-circle.scm.h:3 #, fuzzy msgid "Fill angle" @@ -2818,7 +2822,9 @@ msgid "Web Title Header..." msgstr "" +# #: plug-ins/script-fu/scripts/truchet.scm.h:4 +#, fuzzy msgid "Foreground color" msgstr "Color de primer pla" @@ -2826,11 +2832,15 @@ msgid "T_ruchet..." msgstr "" +# #: plug-ins/script-fu/scripts/unsharp-mask.scm.h:2 +#, fuzzy msgid "Mask opacity" msgstr "Opacitat de la màscara" +# #: plug-ins/script-fu/scripts/unsharp-mask.scm.h:3 +#, fuzzy msgid "Mask size" msgstr "Mida de la màscara" @@ -2842,6 +2852,7 @@ msgid "Amplitude" msgstr "Amplada" +# #: plug-ins/script-fu/scripts/waves-anim.scm.h:3 msgid "Invert direction" msgstr "Inverteix la direcció" @@ -2963,9 +2974,42 @@ msgid "_Xach-Effect..." msgstr "" +#~ msgid "Unable to open a stream on the SIOD output pipe" +#~ msgstr "No es pot obrir un corrent en el conducte de sortida SIOD" + +#~ msgid "Unable to open the SIOD output pipe" +#~ msgstr "No es pot obrir el conducte de sortida SIOD" + +#~ msgid "About" +#~ msgstr "Quant a..." + +#~ msgid "/Xtns/Script-Fu/Script-Fu _Console" +#~ msgstr "/Extensions/Script-Fu/_Consola de l'Script-Fu" + +#~ msgid "/Xtns/Script-Fu/_Start Server..." +#~ msgstr "/Extensions/Script-Fu/Inicia el _servidor..." + +#~ msgid "Re-read all available scripts" +#~ msgstr "Torna a llegir totes les seqüències disponibles" + #~ msgid "/Xtns/Script-Fu/_Refresh Scripts" #~ msgstr "/Extensions/Script-Fu/_Actualitza les seqüències" +#~ msgid "DB Browser" +#~ msgstr "Navegador de la base de dades" + +#~ msgid "Blurb:" +#~ msgstr "Comentari:" + +#~ msgid "In:" +#~ msgstr "Entrada:" + +#~ msgid "Out:" +#~ msgstr "Sortida:" + +#~ msgid "Help:" +#~ msgstr "Ajuda:" + #~ msgid "/Script-Fu/Alpha to Logo/3D _Outline..." #~ msgstr "/Script-Fu/Alfa a logotipus/C_ontorn 3D..." @@ -2995,12 +3039,27 @@ #~ "/Extensions/Script-Fu/Temes de pàgines web/Lluentor estranya/" #~ "_Bala..." +# SF == Script-Fu?? +#~ msgid "" +#~ "\n" +#~ "\t\t SF-ADJUSTMENT _" +#~ msgstr "" +#~ "\n" +#~ "\t\t Ajust SF _" + # #~ msgid "/Xtns/Script-Fu/Web Page Themes/Alien Glow/B_utton..." #~ msgstr "" #~ "/Extensions/Script-Fu/Temes de pàgines web/Lluentor estranya/" #~ "B_otó..." +#~ msgid "" +#~ "\n" +#~ "\t\t SF-COLOR _" +#~ msgstr "" +#~ "\n" +#~ "\t\t Color SF _" + #~ msgid "/Script-Fu/Alpha to Logo/Alien _Glow..." #~ msgstr "/Script-Fu/Alfa a logotipus/_Lluentor estranya..." @@ -3019,6 +3078,9 @@ #~ msgid "/Xtns/Script-Fu/Utils/_ASCII to Image..." #~ msgstr "/Extensions/Script-Fu/Utilitats/D'_ASCII a imatge..." +#~ msgid "Buffer Amount (% Height of Text)" +#~ msgstr "Quantitat de memòria intermitja (% d'alçada del text)" + #~ msgid "/Script-Fu/Alpha to Logo/_Basic I..." #~ msgstr "/Script-Fu/Alfa a logotipus/_Bàsic I..." @@ -3132,14 +3194,17 @@ #~ msgid "/Xtns/Script-Fu/Logos/Cool _Metal..." #~ msgstr "/Extensions/Script-Fu/Logotipus/_Metall fred..." -#, fuzzy -#~ msgid "/Edit/Copy/Copy _Visible" -#~ msgstr "/Edita/Copia el _visible" +#~ msgid "/Edit/Copy _Visible" +#~ msgstr "/Edita/Copia el _visible" # #~ msgid "/Xtns/Script-Fu/Logos/Crystal..." #~ msgstr "/Extensions/Script-Fu/Logotipus/Cristall..." +# +#~ msgid "/Script-Fu/Selection/_Distress Selection..." +#~ msgstr "/Script-Fu/Selecció/_Apura selecció..." + #~ msgid "/Script-Fu/Selection/_Fade Outline..." #~ msgstr "/Script-Fu/Selecció/_Esvaeix el contorn..." @@ -3147,11 +3212,6 @@ #~ msgid "/Xtns/Script-Fu/Patterns/_Flatland..." #~ msgstr "/Extensions/Script-Fu/Patrons/Terra _plana..." -# -#~ msgid "/Xtns/Script-Fu/Utils/_Font Map..." -#~ msgstr "" -#~ "/Extensions/Script-Fu/Utilitats/_Mapa de tipus de lletra..." - #~ msgid "/Script-Fu/Alpha to Logo/_Frosty..." #~ msgstr "/Script-Fu/Alfa a logotipus/_Glaçat..." @@ -3210,10 +3270,6 @@ #~ msgid "/Xtns/Script-Fu/Logos/Glo_ssy..." #~ msgstr "/Extensions/Script-Fu/Logotipus/Lluminó_s..." -#, fuzzy -#~ msgid "Use tattern for outline instead of gradient" -#~ msgstr "Utilitza el patró pel contorn en comptes del degradat" - #~ msgid "/Script-Fu/Alpha to Logo/Glo_wing Hot..." #~ msgstr "/Script-Fu/Alfa a logotipus/Ll_uentor intensa..." @@ -3240,7 +3296,34 @@ #~ msgstr "/Extensions/Script-Fu/Logotipus/Imigre-26..." #~ msgid "/Script-Fu/Render/Line _Nova..." -#~ msgstr "/Script-Fu/Render/_Nova de línies..." +#~ msgstr "/Script-Fu/Render/_Nova de línies..." + +#~ msgid "" +#~ ")))\n" +#~ " (filename (string-append data-dir\n" +#~ "\t\t\t " +#~ msgstr "" +#~ ")))\n" +#~ " (nom de fitxer (cadena-per-afegir dir-dades\n" +#~ "\t\t\t " + +#~ msgid "" +#~ ")))\n" +#~ " (filename (string-append data-dir\n" +#~ " " +#~ msgstr "" +#~ ")))\n" +#~ " (nom de fitxer (cadena-per-afegir dir-dades\n" +#~ " " + +#~ msgid "" +#~ ")))\n" +#~ " (filename (string-append data-dir\n" +#~ " " +#~ msgstr "" +#~ ")))\n" +#~ " (nom de fitxer (cadena-per-afegir dir-dades\n" +#~ " " # #~ msgid "/Xtns/Script-Fu/Make Brush/Elli_ptical, Feathered..." @@ -3256,10 +3339,6 @@ #~ msgstr "/Extensions/Script-Fu/Fes un pinzell/_Rectangular..." # -#~ msgid "/Xtns/Script-Fu/Logos/N_eon..." -#~ msgstr "/Extensions/Script-Fu/Logotipus/N_eó..." - -# #~ msgid "/Xtns/Script-Fu/Logos/Newsprint Text..." #~ msgstr "/Extensions/Script-Fu/Logotipus/Text de paper de diari..." @@ -3272,9 +3351,7 @@ #~ msgid "/Script-Fu/Alchemy/_Predator..." #~ msgstr "/Script-Fu/Alquímia/De_predador..." -#~ msgid "/Xtns/Script-Fu/Buttons/_Round Button..." -#~ msgstr "/Extensions/Script-Fu/Botons/Botons a_rrodonits..." - +# #~ msgid "/Xtns/Script-Fu/Patterns/Render _Map..." #~ msgstr "/Extensions/Script-Fu/Patrons/Dibuixa un _mapa..." @@ -3284,21 +3361,45 @@ #~ msgid "/Script-Fu/Decor/_Round Corners..." #~ msgstr "/Script-Fu/Decoració/Cantonades a_rrodonides..." +#~ msgid "" +#~ ")))\n" +#~ " (set! filename2 (string-append data-dir\n" +#~ "\t\t\t\t " +#~ msgstr "" +#~ ")))\n" +#~ " (set! nomFitxer2 (cadena-afegida dir-dades\n" +#~ "\t\t\t\t " + #~ msgid "/Script-Fu/Selection/To _Brush..." #~ msgstr "/Script-Fu/Selecció/A _pinzell..." +#~ msgid "" +#~ ")))\n" +#~ " (set! filename2 (string-append data-dir\n" +#~ "\t\t\t\t " +#~ msgstr "" +#~ ")))\n" +#~ " (set! nomFitxer2 (cadena-afegida dir-dades\n" +#~ "\t\t\t\t " + #~ msgid "/Script-Fu/Selection/To _Pattern..." #~ msgstr "/Script-Fu/Selecció/A _patró..." +# +#~ msgid "/Script-Fu/Selection/_Round..." +#~ msgstr "/Script-Fu/Selecció/A_rrodoneix..." + +#~ msgid "Relative Radius" +#~ msgstr "Radi relatiu" + +# #~ msgid "/Xtns/Script-Fu/Logos/SOTA Chrome..." #~ msgstr "/Extensions/Script-Fu/Logotipus/Cromat SOTA..." +# #~ msgid "/Xtns/Script-Fu/Logos/Speed Text..." #~ msgstr "/Extensions/Script-Fu/Logotipus/Text ràpid..." -#~ msgid "/Xtns/Script-Fu/Misc/_Sphere..." -#~ msgstr "/Extensions/Script-Fu/Miscel·lània/E_sfera..." - #~ msgid "/Script-Fu/Animators/_Spinning Globe..." #~ msgstr "/Script-Fu/Animadors/Globu_s giratori..." @@ -3308,40 +3409,49 @@ #~ msgid "/Script-Fu/Alpha to Logo/Starb_urst..." #~ msgstr "/Script-Fu/Alfa a logotipus/Ll_um d'estel..." +# #~ msgid "/Xtns/Script-Fu/Logos/Starb_urst..." #~ msgstr "/Extensions/Script-Fu/Logotipus/Ll_um d'estel..." #~ msgid "/Script-Fu/Alpha to Logo/Sta_rscape..." #~ msgstr "/Script-Fu/Alfa a logotipus/Cua d'e_stel..." +# #~ msgid "/Xtns/Script-Fu/Logos/Sta_rscape..." #~ msgstr "/Extensions/Script-Fu/Logotipus/Cua d'e_stel..." +# #~ msgid "/Xtns/Script-Fu/Patterns/Swirl-_Tile..." #~ msgstr "/Extensions/Script-Fu/Patrons/_Mosaic de remolins..." +# #~ msgid "/Xtns/Script-Fu/Patterns/_Swirly..." #~ msgstr "/Extensions/Script-Fu/Patrons/Arremolina_t..." #~ msgid "/Script-Fu/Alpha to Logo/_Particle Trace..." #~ msgstr "/Script-Fu/Alfa a logotipus/Traça de _partícula..." +# #~ msgid "/Xtns/Script-Fu/Logos/_Particle Trace..." #~ msgstr "/Extensions/Script-Fu/Logotipus/Traça de _partícula..." +# #~ msgid "/Xtns/Script-Fu/Logos/Text Circle..." #~ msgstr "/Extensions/Script-Fu/Logotipus/Cercle de text..." #~ msgid "/Script-Fu/Alpha to Logo/_Textured..." #~ msgstr "/Script-Fu/Alfa a logotipus/_Texturitzat..." +# #~ msgid "/Xtns/Script-Fu/Logos/_Textured..." #~ msgstr "/Extensions/Script-Fu/Logotipus/_Texturitzat..." +# #~ msgid "/Xtns/Script-Fu/Logos/Web Title Header..." #~ msgstr "" #~ "/Extensions/Script-Fu/Logotipus/Capçalera de títol de web..." +# #~ msgid "/Xtns/Script-Fu/Patterns/T_ruchet..." #~ msgstr "/Extensions/Script-Fu/Patrons/T_ruchet..." @@ -3359,116 +3469,3 @@ #~ msgid "/Script-Fu/Shadow/_Xach-Effect..." #~ msgstr "/Script-Fu/Ombra/Efecte _Xach..." - -#~ msgid "Re-read all available scripts" -#~ msgstr "Torna a llegir totes les seqüències disponibles" - -# SF == Script-Fu?? -#~ msgid "" -#~ "\n" -#~ "\t\t SF-ADJUSTMENT _" -#~ msgstr "" -#~ "\n" -#~ "\t\t Ajust SF _" - -#~ msgid "" -#~ "\n" -#~ "\t\t SF-COLOR _" -#~ msgstr "" -#~ "\n" -#~ "\t\t Color SF _" - -#, fuzzy -#~ msgid "Relative radius" -#~ msgstr "Radi relatiu" - -#, fuzzy -#~ msgid "_About" -#~ msgstr "Quant a..." - -#~ msgid "DB Browser" -#~ msgstr "Navegador de la base de dades" - -#~ msgid "Blurb:" -#~ msgstr "Comentari:" - -#~ msgid "In:" -#~ msgstr "Entrada:" - -#~ msgid "Out:" -#~ msgstr "Sortida:" - -#~ msgid "Help:" -#~ msgstr "Ajuda:" - -#~ msgid "Font Size (pixels)" -#~ msgstr "Mida del tipus de lletra (píxels)" - -# -#~ msgid "Text Color" -#~ msgstr "Color del text" - -# -#~ msgid "Transparent Background" -#~ msgstr "Fons transparent" - -#~ msgid "" -#~ ")))\n" -#~ " (filename (string-append data-dir\n" -#~ "\t\t\t " -#~ msgstr "" -#~ ")))\n" -#~ " (nom de fitxer (cadena-per-afegir dir-dades\n" -#~ "\t\t\t " - -#~ msgid "" -#~ ")))\n" -#~ " (filename (string-append data-dir\n" -#~ " " -#~ msgstr "" -#~ ")))\n" -#~ " (nom de fitxer (cadena-per-afegir dir-dades\n" -#~ " " - -#~ msgid "" -#~ ")))\n" -#~ " (filename (string-append data-dir\n" -#~ " " -#~ msgstr "" -#~ ")))\n" -#~ " (nom de fitxer (cadena-per-afegir dir-dades\n" -#~ " " - -#~ msgid "" -#~ ")))\n" -#~ " (set! filename2 (string-append data-dir\n" -#~ "\t\t\t\t " -#~ msgstr "" -#~ ")))\n" -#~ " (set! nomFitxer2 (cadena-afegida dir-dades\n" -#~ "\t\t\t\t " - -#~ msgid "" -#~ ")))\n" -#~ " (set! filename2 (string-append data-dir\n" -#~ "\t\t\t\t " -#~ msgstr "" -#~ ")))\n" -#~ " (set! nomFitxer2 (cadena-afegida dir-dades\n" -#~ "\t\t\t\t " - -#~ msgid "Unable to open a stream on the SIOD output pipe" -#~ msgstr "No es pot obrir un corrent en el conducte de sortida SIOD" - -#~ msgid "Unable to open the SIOD output pipe" -#~ msgstr "No es pot obrir el conducte de sortida SIOD" - -#, fuzzy -#~ msgid "Blend gradient (sext)" -#~ msgstr "Barreja el degradat(text)" - -#~ msgid "/Xtns/Script-Fu/Script-Fu _Console" -#~ msgstr "/Extensions/Script-Fu/_Consola de l'Script-Fu" - -#~ msgid "/Xtns/Script-Fu/_Start Server..." -#~ msgstr "/Extensions/Script-Fu/Inicia el _servidor..." diff -uraN gimp-2.2.0/po-script-fu/ChangeLog gimp-2.2.1/po-script-fu/ChangeLog --- gimp-2.2.0/po-script-fu/ChangeLog 2004-12-16 18:08:04.000000000 +0100 +++ gimp-2.2.1/po-script-fu/ChangeLog 2004-12-27 20:42:17.000000000 +0100 @@ -1,3 +1,17 @@ +2004-12-22 Sven Neumann + + * POTFILES.in: removed asc2img.scm. + + * de.po: removed unused translations. + +2004-12-21 Jordi Mallach + + * ca.po: Forwardport from gimp-2-2. + +2004-12-20 Jarkko Ranta + + * fi.po: Updated Finnish translation by Mikko Paananen. + 2004-12-16 Marco Ciampa * it.po: updated italian translation. diff -uraN gimp-2.2.0/po-script-fu/cs.gmo gimp-2.2.1/po-script-fu/cs.gmo --- gimp-2.2.0/po-script-fu/cs.gmo 2004-12-19 03:34:32.000000000 +0100 +++ gimp-2.2.1/po-script-fu/cs.gmo 2004-12-28 16:59:15.000000000 +0100 @@ -1,71 +1,70 @@ -$, * *+ + + +*+9+H+b++++++,,;, T,u,#,,!,,3-8K-9- - ---- . -.. -6.A.J.Y.h. w.. ...... -. . . -//"/3/D/ -U/ `/j// /// //// -0 -0$0+0 20 >0J0 \0 h0r00 0 0 0 000 -0 0! 1"/1 R1 ^1 k1 -y111 11 1 1 11 122+2>2 E2R2l2r2z222222 -2 22 2E2 -53@3F3V3f3 -z3<33333 3 -44 !4.4 74A4F4 Y4e4z4444 44 4 4 -4 5"5<5U5n5 5555 5 555 -556 6 6 6)6 86 B6 N6Z6 b6 -p6 {666 -6 6 666 -6677 7 -#7.757S7 b7 -o7z7 -7 77777 778 8 +878>8F8O8b8u8888 -8 -88 8 8 -88 9 9 9"%9 H9T9g9{9 999999 999 :: !:+: 2:>:S:e:y: : :::::::: ;;'-; -U;`; e;q;;;;;;;;; <<<)<2< ;<I<^<o< w< < << << < < << = ==*= -J=U=]=o== === ====== >>*>:>B> T>a>e> -l>w> > ->>>>>? ?? .?;?A? S? ]?i?? ? ????????@ @9@T@m@@@@6@9 A=CA AA AAAA AB/B4BNB]BcB sBBBBB BB BBBB CC6CPCUC[CbCvC CCCC C CCCDDD D%D ,D:DBD JD VDbD qD}D DDDDD -DDD E E&E5E FE#TExE }E EEEEEEEEF FF'F8FMFdF+zF(FF&F -G -GG 2G ?GKGQG `G nG {G G(GGG G GG HH -"H --H8H GH QH ]HjH {HHHHHHHH I I -)I4IEI]I fIpIxIII III IIII JJ)J;J DJNJ -_JjJ}J -JJ JJJJ JJ>J >LJL -NL YL eL qL~LLLLLMM9MQM lMM%MM*M"N!S4aS)SSSS SST -T7T PT^ToTTTTTTTT U,U2U:UBUJURU -eUpU -UUUUMU -V V)V=VOV eV@rVV'V VV WWW)W@WIWOWUWlW|WW'WWW - XX #X /X =XKXhXXXXXXXYYY/Y@YGYVYtY zYYYY Y YY YZ ZZ,Z;ZSZgZxZZZ ZZZ ZZZ[ [<[P[f[o[ [[[[[[[[\'\ -8\C\K\[\l\|\\\\\ \ -\\\]])]C] U]b]*u]]]]] ] -] -^^*^F^ W^e^l^^ -^ ^^ ^^^^_ __!._P_l_t_}_"____*_`&` /`;`R`Y`k` }` `` ```````aa'aAa HaRadasa aaaaaa a abb 7bAbHbWb kb ybbbb bbbbc c 8cEc Xcbcxccc ccc -cccd3dEdXdld|ddddddd d d d e e!e3eDe\eteeeeee f#f66fCmfJf f -g #g1gFg"[g/~g/ggghhh 7hEhKhZhih hhhhhhhh#i,i 5iBiKi_ioiiiii iii ij jj-j4j Kj Wjcjwjjjj j$jjkk 'k3kJk dk -qk|kkk!k k k k kl -l l',lTlilml tllll#ll*m(3m\m2xmmmmm mmnn"n 4n BnPnnnn -nnn nnn no o o %o1oDoSonooo ooo -oo pp$p CpQp jp tp ~ppppp ppp q &q4qIqXq aqmq qqq qqq"qqr1r:r@JcFGfGTU5{j!z?q)@D aw0RAI3>`Q<Q<:CyKpl7- d9}_}.t[3 /LeO8(>nuBf{_ia67]^x9gSSV%i"4 $ +#e/-^]XuT8Y,HqL"+05hC:N1Jv*?.Y -|R\!dVHp (ZXM|ms$=g;bhOk -%K61 PlP&nobWIwo`~DWxBEsF\U* ,cyz';2#EZrm[=r)2~k Nj4&vA'Mt%d Procedures%s:(none)/Script-Fu/1 Procedure3D _Outline...3_D Truchet.../Script-Fu/Alchemy/Script-Fu/Alpha to Logo/Script-Fu/Animators/Script-Fu/Decor/Script-Fu/Render/Script-Fu/Selection/Script-Fu/Shadow/Script-Fu/Utils/Help/The GIMP Online/Xtns/Script-Fu/Xtns/Script-Fu/Buttons/Xtns/Script-Fu/Logos/Xtns/Script-Fu/Make Brush/Xtns/Script-Fu/Misc/Xtns/Script-Fu/Patterns/Xtns/Script-Fu/Utils/Xtns/Script-Fu/Web Page Themes/Alien Glow/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/Xtns/Script-Fu/Web Page Themes/Classic.Gimp.OrgActive colorsAdd B_evel...Add _Border...Add backgroundAdd drop-shadowAdd glowingAdd shadowAdditional InformationAfter glowAirbrushAlien _Glow...Alien _Neon...Allow resizingAmplitudeAngleAntialiasApply generated layermaskApply layer mask (or discard)Author:AutocropAzimuthBG opacityB_asic II...B_urn-In...B_utton...Background ColorBackground ImageBackground colorBackground imageBase colorBehaviourBevel height (Sharpness)Bevel height (sharpness)Bevel widthBlackBlack on whiteBlen_ded...Blend gradient (Text)Blend gradient (outline)Blend gradient (text)Blend modeBlock sizeBlur XBlur YBlur amountBlur borderBlur horizontallyBlur radiusBlur typeBlur verticallyBo_vination...Border X sizeBorder Y sizeBorder colorBorder sizeBorder size (pixels)BrushBrush nameBuffer amount (% height of text)Bumpmap (alpha layer) blur radiusBurn-In: Need two layers in total!Burst colorC_arve-It...C_hrome-It...C_hrome...Carve raised textCarve white areasCarved...Cell size (pixels)Chalk colorChip Awa_y...Chip amountChrome balanceChrome factorChrome lightnessChrome saturationChrome white areasCircleCircuit seedClear unselected maskareaColorColor 1Color 2Color 3ColumnsComic Boo_k...ConcaveCool _Metal...Copyright:Corona widthCreate new imageCreate shadowCreates four Guides around the bounding box of the current selection.Crystal...CubicCurrent CommandCustom GradientCustom _Gradient...Dark colorDarken only + * *** * ****+2+N+f++++++ ,%,#D,h,!,,3,8,94- n- |---- - +-- +--- .. '.1. 7.A.[.y... +. . . +..... +/ //3/ L/X/^/ m/y/// +/ +/// / // 0 0"020 A0 O0 ]0 j0v00 +0!0"0 0 0 0 +11%1 71A1 T1 `1 n1z1 11111 1112 222!20282 +G2 R2_2 p2E~2 +22222 + 3<3Q3W3p3x3 333 33 333 33 4464H4 \4h4 w4 4 +444444 5565<5 B5 L5Y5i5 +o5z555 5 55 5 5 55 5 +5 +666 +26 =6 J6X6]6 +q6|666 6 +6666 6 +6 7 +7 $707G7P7c7 t777 7 77777788&888 +A8 +L8W8 [8 h8 +u88 8 8 8"8 888 +9 "90979H9X9h9 w999 99 99 9999: : %:/:@:Q:X:a:f:: ::': +:: :;;;.;@;P;a;r;;;;;;; ;;;; < < <+< ?<M< f< s< }<< < <<< +<<<<= =,=3= <=I=R=d=v======= === +=> > +">->H>e>>> >> >>> > >>? ? ?)?8?@?H?Y?i???????@5@N@6a@9@=@ AA :ADAUAeA }AAAAAAA BBB&B6B IBVB fBsBBB BBBBBBBC C#C8C@C UC cCpCCCCC CC CCC C CC D D D'DADUDZD +iDtDD D DDD D#DE E E#E2E7ENEWEuEEE EEEEEE+ F(5F^F&rFF +FF F FFF F F +G G("G KG UGaG pGzG +G +GG G G GG GGHH-HhJ KK +K K K KKKL2LOLjLLLL LL%M7M*WM"M!M#MBM=.N@lNNNNNN +O O'O 9OCOVOmOOOO O#O$OPP P'P6P HPVP ePsP PPP PPPP +QQ$Q4QMQgQQQQQQQQQ RR 0R:RLR ^RkR{RR R4R)RSS(S 8SBS[S sS}S SSSSSST%T>TCTRTrTxTTTTT +TT +TTTTM U +[UfUoUUU U@UU'V (V5V IVUV]VoVVVVVVVV'VW6W +OWZW iW uW WWWWWXX%X>XFXNX`XuXXXXX XXXX Y Y+Y iJiSi\isizi i iiiiii j$jCjWj\j mjyjj j +jjjj!j k k ,k 9kGkPk dk'rkkkk kkkk#l3l*Nl(yll2lllm$m 4m@mImYmhm zm mm +mmm mmn nn +n 7n AnMn`nonnnn nnn +oo !o-o@o _omo o o ooooo opp%p BpPpeptp }pp ppp ppp"pq8qMqVq ed1$5YKH Jlmnj?O`0Dl tiwN96b\<U4L;vs)"wja_$YO'q=P: +EC T1Tk <A/2hfM#9},M+fUm Zc|hG&oZ+"Jc@[ + &^7-x@g5(>,s;^P% H'qx6v|W!Q>N%S{W84R]?\!~gB80C.I`{u]FGKF2-zd/3nkEe[X.)bVuXyBA(r~y:zio**a_ #}p=7L3rStVRDQ Ip%d Procedures%s:(none)/Script-Fu/1 Procedure3D _Outline...3_D Truchet.../Script-Fu/Alchemy/Script-Fu/Alpha to Logo/Script-Fu/Animators/Script-Fu/Decor/Script-Fu/Render/Script-Fu/Selection/Script-Fu/Shadow/Script-Fu/Utils/Help/The GIMP Online/Xtns/Script-Fu/Xtns/Script-Fu/Buttons/Xtns/Script-Fu/Logos/Xtns/Script-Fu/Make Brush/Xtns/Script-Fu/Misc/Xtns/Script-Fu/Patterns/Xtns/Script-Fu/Utils/Xtns/Script-Fu/Web Page Themes/Alien Glow/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/Xtns/Script-Fu/Web Page Themes/Classic.Gimp.OrgActive colorsAdd B_evel...Add _Border...Add backgroundAdd drop-shadowAdd glowingAdd shadowAdditional InformationAfter glowAirbrushAlien _Glow...Alien _Neon...Allow resizingAmplitudeAngleAntialiasApply generated layermaskApply layer mask (or discard)Author:AutocropAzimuthBG opacityB_asic II...B_urn-In...B_utton...Background ColorBackground ImageBackground colorBackground imageBase colorBehaviourBevel height (Sharpness)Bevel height (sharpness)Bevel widthBlackBlack on whiteBlen_ded...Blend gradient (Text)Blend gradient (outline)Blend gradient (text)Blend modeBlock sizeBlur XBlur YBlur amountBlur borderBlur horizontallyBlur radiusBlur typeBlur verticallyBo_vination...Border X sizeBorder Y sizeBorder colorBorder sizeBorder size (pixels)BrushBrush nameBumpmap (alpha layer) blur radiusBurn-In: Need two layers in total!Burst colorC_arve-It...C_hrome-It...C_hrome...Carve raised textCarve white areasCarved...Cell size (pixels)Chalk colorChip Awa_y...Chip amountChrome balanceChrome factorChrome lightnessChrome saturationChrome white areasCircleCircuit seedClear unselected maskareaColorColor 1Color 2Color 3ColumnsComic Boo_k...ConcaveCool _Metal...Copyright:Corona widthCreate new imageCreate shadowCreates four Guides around the bounding box of the current selection.Crystal...CubicCurrent CommandCustom GradientCustom _Gradient...Dark colorDarken only (Better, but only for images with alot of white)Date:Default bumpmap settingsDefocusDelta value on colorDensity (%)DepthDetail in MiddleDetail levelDiameterDirectionDownDraw _HSV Graph...Drop shadowDrop shadow X offsetDrop shadow Y offsetDrop shadow blur radiusDrop shadow colorDrop shadow opacityEdge amountEdge behaviourEdge onlyEdge radiusEdge widthEffect size (pixels * 3)Effect size (pixels * 30)Effect size (pixels * 4)Effect size (pixels * 5)Effect size (pixels)ElevationElli_ptical, Feathered...End XEnd YEnd blendEnding blendEnvironment mapEraseErase/fillError while executing %s -%sEvenEven/oddFG-BG-HSVFG-BG-RGBFG-TransparentFade awayFade from %Fade to %FadeoutFadeout widthFeatheringFile nameFilenameFill BG with patternFill angleFill with BGFlatten imageFontFont _size (pixels)Font colorFont size (pixels)Foreground colorFrameFrame colorFrame sizeFramesFrom top-left to bottom-rightGIMP ExtensionGIMP Plug-InGlo_ssy...Glo_wing Hot...Glow colorGlow radiusGlow size (pixels * 4)GradientGradient Beve_l...Gradient reverseGranularityGranularity (1 is Low)Granularity (1 is low)Graph scaleH_eading...HeightHexagonHexagonsHighlight X offsetHighlight Y offsetHighlight balanceHighlight colorHighlight opacityHit rateHole ratioHorizontalIIRImage Types:Image heightImage sizeImage to carveImage widthImigre-26...Index imageIndex to n colors (0 = remain RGB)Inner teethInsert layer namesIntermediate framesInternal GIMP procedureInterpolationInvertInvert directionKeep backgroundKeep bump layerKeep selectionLand heightLeftLighting (degrees)Line _Nova...LinearLissajousLoopedLower colorLower color (active)Lower-right colorMake new backgroundMargin (pixels)Mask opacityMask sizeMax. blur radiusMosaic tile typeMottleN_eon...NameNew Guide (by _Percent)...New Guides from _SelectionNew _Guide...Newsprint Text...No background (only for separate layer)No matchesNoneNot pressedNot pressed (active)NumberNumber of X tilesNumber of Y tilesNumber of bandsNumber of colorsNumber of framesNumber of linesNumber of times to whirlOctagonsOddOffset (pixels)Offset XOffset YOffset radiusOffsets (pixels * 2)Oilify mask sizeOpacityOrientationOuter borderOuter teethOutline blur radiusOutline colorOutline gradient reverseOutline sizePad colorPad opacityPaddingPadding XPadding YPadding around textPadding for transparent regionsParametersPatternPattern (outline)Pattern (overlay)Pattern (text)Pattern namePencilPentagonPixel amountPixelizePlug-in _RegistryPolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPosition (in %)Prepare for GIFPressedProcedure BrowserQuarter sizeRLERadiusRadius (%)Radius (pixels)Random seedRandomnessRe_ctangular, Feathered...Relative distance of horizonRelative length of shadowRemove backgroundRender _Map...Return ValuesRibbon spacingRibbon widthRightRippling strengthRoughnessRound ratioRounded R_ectangle...RowsRows/colsSIOD OutputSOTA Chrome...Scale XScale YScript ArgumentsScript ProgressScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Palette SelectionScript-Fu Server OptionsScript-Fu _ConsoleScript-Fu cannot process two scripts at the same time.Script-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSea depthSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSelect-by-color thresholdSeparate layerSepiaServer Logfile:Server Port:ShadowShadow X offsetShadow Y offsetShadow blur radiusShadow colorShadow darknessShadow depthShadow weight (%)ShapeSharpness (degrees)Shear lengthShow Image _Structure...Simple _Beveled Button...SizeSmearSmoothSmooth horizontallySmooth verticallySolid ColorSpace between layersSpacingSpeed (pixels/frame)Speed Text...Sphere colorSpots density XSpots density YSpreadSquareSquaresSta_rscape...StainsStarb_urst...Start XStart YStart angleStart blendStarting blendSupersampleSwirl-_Tile...T_ruchet...T_ube Sub-Button Label...Temporary ProcedureTextText Circle...Text colorText color (active)Text gradient reverseText patternThicknessThread densityThread intensityThread lengthThreshold (bigger 1<-->255 smaller)TileTo _Brush...To _ImageTo _Pattern...ToolTransparent backgroundTriangleTub_e Sub-Sub-Button Label...Turn from left to rightTypeUpUpper colorUpper color (active)Upper-left colorUse current gradientUse font _name as textUse growing selectionUse pattern for outline instead of gradientUse pattern for text instead of gradientUse pattern overlayUse selection bounds instead of belowsVerticalWavelengthWeb Title Header...Whirl amountWhirl angleWidthWidth of bandsWidth of gapsWork on copyX divisionsY divisionsYou are already running the "%s" script._ASCII to Image..._ASCII to Layer..._Arrow..._Basic I..._Big Header..._Blend..._Border (pixels)_Browse..._Bullet..._Camouflage..._Chalk..._Circuit..._Clothify..._Coffee Stain..._Color scheme_Developer Web Site_Distress Selection..._Drop-Shadow..._Elliptical..._Erase every other Row..._Fade Outline..._Filter (regexp)_Flatland..._Font Map..._Frosty..._Fuzzy Border..._General Tube Labels..._Grid..._Hrule..._Labels_Land..._Lava..._Main Web Site_Old Photo..._Particle Trace..._Perspective..._Predator..._Rectangular..._Refresh Scripts_Remove all Guides_Rippling..._Round Button..._Round Corners..._Search:_Slide..._Small Header..._Sphere..._Spinning Globe..._Start Server..._Swirly..._Text_Textured..._Tileable Blur..._Tube Button Label..._Unsharp Mask..._Waves..._Xach-Effect...Project-Id-Version: gimp-script-fu VERSION +%sEvenEven/oddFG-BG-HSVFG-BG-RGBFG-TransparentFade awayFade from %Fade to %FadeoutFadeout widthFeatheringFile nameFilenameFill BG with patternFill angleFill with BGFlatten imageFontFont _size (pixels)Font colorFont size (pixels)Foreground colorFrameFrame colorFrame sizeFramesFrom top-left to bottom-rightGIMP ExtensionGIMP Plug-InGlo_ssy...Glo_wing Hot...Glow colorGlow radiusGlow size (pixels * 4)GradientGradient Beve_l...Gradient reverseGranularityGranularity (1 is Low)Granularity (1 is low)Graph scaleH_eading...HeightHexagonHexagonsHighlight X offsetHighlight Y offsetHighlight balanceHighlight colorHighlight opacityHit rateHole ratioHorizontalIIRImage Types:Image heightImage sizeImage to carveImage widthImigre-26...Index imageIndex to n colors (0 = remain RGB)Inner teethInsert layer namesIntermediate framesInternal GIMP procedureInterpolationInvertInvert directionKeep backgroundKeep bump layerKeep selectionLand heightLeftLighting (degrees)Line _Nova...LinearLissajousLoopedLower colorLower color (active)Lower-right colorMake new backgroundMargin (pixels)Mask opacityMask sizeMax. blur radiusMosaic tile typeMottleN_eon...NameNew Guide (by _Percent)...New Guides from _SelectionNew _Guide...Newsprint Text...No background (only for separate layer)No matchesNoneNot pressedNot pressed (active)NumberNumber of X tilesNumber of Y tilesNumber of bandsNumber of colorsNumber of framesNumber of linesNumber of times to whirlOctagonsOddOffset (pixels)Offset XOffset YOffset radiusOffsets (pixels * 2)Oilify mask sizeOpacityOrientationOuter borderOuter teethOutline blur radiusOutline colorOutline gradient reverseOutline sizePad colorPad opacityPaddingPadding XPadding YPadding around textPadding for transparent regionsParametersPatternPattern (outline)Pattern (overlay)Pattern (text)Pattern namePencilPentagonPixel amountPixelizePlug-in _RegistryPolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPosition (in %)Prepare for GIFPressedProcedure BrowserQuarter sizeRLERadiusRadius (%)Radius (pixels)Random seedRandomnessRe_ctangular, Feathered...Relative distance of horizonRelative length of shadowRemove backgroundRender _Map...Return ValuesRibbon spacingRibbon widthRightRippling strengthRoughnessRound ratioRounded R_ectangle...RowsRows/colsSIOD OutputSOTA Chrome...Scale XScale YScript ArgumentsScript ProgressScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Palette SelectionScript-Fu Server OptionsScript-Fu _ConsoleScript-Fu cannot process two scripts at the same time.Script-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSea depthSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSelect-by-color thresholdSeparate layerSepiaServer Logfile:Server Port:ShadowShadow X offsetShadow Y offsetShadow blur radiusShadow colorShadow darknessShadow depthShadow weight (%)ShapeSharpness (degrees)Shear lengthShow Image _Structure...Simple _Beveled Button...SizeSmearSmoothSmooth horizontallySmooth verticallySolid ColorSpace between layersSpacingSpeed (pixels/frame)Speed Text...Sphere colorSpots density XSpots density YSpreadSquareSquaresSta_rscape...StainsStarb_urst...Start XStart YStart angleStart blendStarting blendSupersampleSwirl-_Tile...T_ruchet...T_ube Sub-Button Label...Temporary ProcedureTextText Circle...Text colorText color (active)Text gradient reverseText patternThicknessThread densityThread intensityThread lengthThreshold (bigger 1<-->255 smaller)TileTo _Brush...To _ImageTo _Pattern...ToolTransparent backgroundTriangleTub_e Sub-Sub-Button Label...Turn from left to rightTypeUpUpper colorUpper color (active)Upper-left colorUse current gradientUse font _name as textUse growing selectionUse pattern for outline instead of gradientUse pattern for text instead of gradientUse pattern overlayUse selection bounds instead of belowsVerticalWavelengthWeb Title Header...Whirl amountWhirl angleWidthWidth of bandsWidth of gapsWork on copyX divisionsY divisionsYou are already running the "%s" script._Arrow..._Basic I..._Big Header..._Blend..._Border (pixels)_Browse..._Bullet..._Camouflage..._Chalk..._Circuit..._Clothify..._Coffee Stain..._Color scheme_Developer Web Site_Distress Selection..._Drop-Shadow..._Elliptical..._Erase every other Row..._Fade Outline..._Filter (regexp)_Flatland..._Font Map..._Frosty..._Fuzzy Border..._General Tube Labels..._Grid..._Hrule..._Labels_Land..._Lava..._Main Web Site_Old Photo..._Particle Trace..._Perspective..._Predator..._Rectangular..._Refresh Scripts_Remove all Guides_Rippling..._Round Button..._Round Corners..._Search:_Slide..._Small Header..._Sphere..._Spinning Globe..._Start Server..._Swirly..._Text_Textured..._Tileable Blur..._Tube Button Label..._Unsharp Mask..._Waves..._Xach-Effect...Project-Id-Version: gimp-script-fu VERSION Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:48+0100 +POT-Creation-Date: 2004-12-28 15:42+0100 PO-Revision-Date: 2004-11-20 16:09+0100 Last-Translator: Miloslav Trmac Language-Team: Czech MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit -%d procedur%s:(žádné)/Skript-fu/1 procedura3D _obrys...3D _klikatice.../Skript-fu/Alchymie/Skript-fu/Alfa do loga/Skript-fu/Animátory/Skript-fu/Dekorace/Skript-fu/Vyobrazení/Skript-fu/Výběr/Skript-fu/Stín/Skript-fu/Pomůcky/Nápověda/GIMP Online/Rozš./Skript-fu/Rozš./Skript-fu/Tlačítka/Rozš./Skript-fu/Loga/Rozš./Skript-fu/Vytvořit stopu/Rozš./Skript-fu/Různé/Rozš./Skript-fu/Vzorky/Rozš./Skript-fu/Pomůcky/Rozš./Skript-fu/Témata WWW stránek/Mimozemská záře/Rozš./Skript-fu/Témata WWW stránek/Zkosený vzor/Rozš./Skript-fu/Témata WWW stránek/Classic.Gimp.orgAktivní barvyPřidat _zkosení...Přidat _okraj...Přidat pozadíPřidat vržený stínPřidat zářiPřidat stínDalší informacePo zářiVzdušný štětecMimozemská _záře...Mimozemský _neon...Povolit změnu velikostiRozkmitÚhelVyhlazováníPoužít vygenerovanou masku vrstvyPoužít masku vrstvy (nebo zahodit)Autor:Automatické oříznutíAzimutKrytí pozadíZákladní _II..._Vpálení..._Tlačítko...Barva pozadíObrázek v pozadíBarva pozadíObrázek na pozadíBarva základnyChováníVýška zkosení (ostrost)Výška zkosení (ostrost)Šířka zkoseníČernáČerná na bílé_Smíchání...Přechod mísení (text)Přechod mísení (obrys)Přechod mísení (text)Režim míseníVelikost blokuRozostření XRozostření YMíra rozostřeníRozostřit okrajRozostřit vodorovněPoloměr rozostřeníTyp rozostřeníRozostřit svisle_Fleky...Velikost okraje XVelikost okraje YBarva okrajeVelikost okrajeVelikost okraje (pixely)StopaNázev stopyVelikost bufferu (% výšky textu)Poloměr rozostření mapy vyvýšení (alfa vrstvy)Vpálení: Potřebuji celkem dvě vrstvy!Barva pronikání_Vyřezat-to..._Pochromovat..._Chrom...Vyřezat text do výškyVyřezat bílé oblastiŘezba...Velikost buňky (pixely)Barva křídy_Odštípnout...Velikost odštípnutíVyváženost chromováníFaktor chromováníSvětlost chromováníSytost chromováníChromovat bílé oblastiKruhHnízdo okruhuVymazat nevybranou oblast maskyBarvaBarva 1Barva 2Barva 3Sloupce_Kniha komiksů...KonkávníZchladlý _kov...Copyright:Šířka korónyVytvořit nový obrázekVytvořit stínVytvoří čtyři vodítka okolo obdélníku opsanému aktuálnímu výběru.Krystal...KubickáAktuální příkazVlastní přechod_Vlastní přechod...Tmavá barvaPouze ztmavit +%d procedur%s:(žádné)/Skript-fu/1 procedura3D _obrys...3D _klikatice.../Skript-fu/Alchymie/Skript-fu/Alfa do loga/Skript-fu/Animátory/Skript-fu/Dekorace/Skript-fu/Vyobrazení/Skript-fu/Výběr/Skript-fu/Stín/Skript-fu/Pomůcky/Nápověda/GIMP Online/Rozš./Skript-fu/Rozš./Skript-fu/Tlačítka/Rozš./Skript-fu/Loga/Rozš./Skript-fu/Vytvořit stopu/Rozš./Skript-fu/Různé/Rozš./Skript-fu/Vzorky/Rozš./Skript-fu/Pomůcky/Rozš./Skript-fu/Témata WWW stránek/Mimozemská záře/Rozš./Skript-fu/Témata WWW stránek/Zkosený vzor/Rozš./Skript-fu/Témata WWW stránek/Classic.Gimp.orgAktivní barvyPřidat _zkosení...Přidat _okraj...Přidat pozadíPřidat vržený stínPřidat zářiPřidat stínDalší informacePo zářiVzdušný štětecMimozemská _záře...Mimozemský _neon...Povolit změnu velikostiRozkmitÚhelVyhlazováníPoužít vygenerovanou masku vrstvyPoužít masku vrstvy (nebo zahodit)Autor:Automatické oříznutíAzimutKrytí pozadíZákladní _II..._Vpálení..._Tlačítko...Barva pozadíObrázek v pozadíBarva pozadíObrázek na pozadíBarva základnyChováníVýška zkosení (ostrost)Výška zkosení (ostrost)Šířka zkoseníČernáČerná na bílé_Smíchání...Přechod mísení (text)Přechod mísení (obrys)Přechod mísení (text)Režim míseníVelikost blokuRozostření XRozostření YMíra rozostřeníRozostřit okrajRozostřit vodorovněPoloměr rozostřeníTyp rozostřeníRozostřit svisle_Fleky...Velikost okraje XVelikost okraje YBarva okrajeVelikost okrajeVelikost okraje (pixely)StopaNázev stopyPoloměr rozostření mapy vyvýšení (alfa vrstvy)Vpálení: Potřebuji celkem dvě vrstvy!Barva pronikání_Vyřezat-to..._Pochromovat..._Chrom...Vyřezat text do výškyVyřezat bílé oblastiŘezba...Velikost buňky (pixely)Barva křídy_Odštípnout...Velikost odštípnutíVyváženost chromováníFaktor chromováníSvětlost chromováníSytost chromováníChromovat bílé oblastiKruhHnízdo okruhuVymazat nevybranou oblast maskyBarvaBarva 1Barva 2Barva 3Sloupce_Kniha komiksů...KonkávníZchladlý _kov...Copyright:Šířka korónyVytvořit nový obrázekVytvořit stínVytvoří čtyři vodítka okolo obdélníku opsanému aktuálnímu výběru.Krystal...KubickáAktuální příkazVlastní přechod_Vlastní přechod...Tmavá barvaPouze ztmavit (lepší, ale jen pro obrázky se spoustou bílé)Datum:Implicitní nastavení mapy vyvýšeníRozostřeníDelta hodnota barvyHustota (%)HloubkaDetail uprostředÚroveň podrobonostíPrůměrSměrDolůNakreslit graf _HSV...Vržení stínuPosun X vrženého stínuPosun Y vrženého stínuPoloměr rozostření vrženého stínuBarva vrženého stínuKrytí vrženého stínuMíra hranChování hranPouze hranyPoloměr hranŠířka hranVelikost efektu (pixely * 3)Velikost efektu (pixely * 30)Velikost efektu (pixely * 4)Velikost efektu (pixely * 5)Velikost efektu (pixely)ZdvihE_liptickou, neostrou...Konec XKonec YSplývání konceKoncové splýváníMapa prostředíSmazatSmazat/VyplnitChyba při spouštění %s -%sSudéSudé/LichéPopředí-pozadí-HSVPopředí-pozadí-RGBPrůhledné popředíPohasínáníPohasnout z %Pohasnout na %ZhasnutíŠířka zhasnutíNeostrostNázev souboruNázev souboruVyplnit pozadí vzorkemÚhel vyplňováníVyplnit pozadímZploštit obrázekPísmo_Velikost písma (pixely)Barva písmaVelikost písma (pixely)Barva popředíPolíčkoBarva rámečkuVelikost rámečkuPočet políčekOdshora zleva dolů dopravaRozšíření GIMPuZásuvný modul GIMPu_Lesk..._Sálající záře...Barva zářePoloměr zářeVelikost záře (pixely * 4)Přechod_Šikmý přechod...Obrácený přechodZrnitostZrnitost (1 je malá)Zrnitost (1 je malá)Měřítko grafu_Nadpis...VýškaŠestiúhelníkŠestiúhelníkyPosun X světelPosun Y světelVyvážení zvýrazněníBarva zvýrazněníKrytí světelPoměrná četnostPodíl děrVodorovnýIIRTypy obrázku:Výška obrázkuVelikost obrázkuObrázek, který vyřezatŠířka obrázkuImigre-26...Indexový obrázekIndexovaný v n barvách (0 = nechat RGB)Vnitřní zubyVložit názvy vrstevMezilehlá políčkaInterní procedura GIMPuInterpolaceInvertovatObrátit směrZachovat pozadíZachovat vrstvu vyvýšeníZachovat výběrVýška zeměNalevoOsvětlení (stupně)Čárová _nova...LineárníLissajousSmyčkaDolní barvaDolní barva (aktivní)Pravá dolní barvaVytvořit nové pozadíOkraj (pixely)Krytí maskyVelikost maskyNejvyšší poloměr rozostřeníTyp dlaždicování mozaikySkvrnka_Neon...NázevNové vodítko (podle _procent)...Nová vodítka z _výběruNové _vodítko...Novinový text...Bez pozadí (pouze pro samostatné vrstvy)Nic nebylo nalezenoŽádnáNestisknutoNestisknuto (aktivní)PočetX počet dlaždicY počet dlaždicPočet pruhůPočet barevPočet políčekPočet čarPočet opakování víruOsmiúhelníkyLichéPosun (pixely)Posun XPosun YPoloměr posunuPosuny (pixely * 2)Velikost masky olejomalbyKrytíOrientaceVnější hraniceVnější zubyPoloměr rozostření obrysuBarva obrysuObrácený přechod obrysuVelikost obrysuBarva výplněKrytí výplněVýplňVýplň XVýplň YVýplň okolo textuVýplň pro průhledné oblastiParametryVzorekVzorek (obrys)Vzorek (překrytí)Vzorek (text)Název vzorkuTužkaPětiúhelníkVelikost pixelůPixelizovat_Registr zásuvných modulůMnohoúhelník: 10 stranMnohoúhelník: 7 stranMnohoúhelník: 8 stranMnohoúhelník: 9 stranPoloha (v %)Připravit pro GIFStisknutoProhlížeč procedurČtvrtinová velikostRLEPoloměrPoloměr (%)Poloměr (pixely)Hnízdo náhodných číselNáhodnostO_bdélníkovou, neostrou...Poměrná vzdálenost obzoruPoměrná délka stínuOdstranit pozadíVykreslit _mapu...Návratové hodnotyRozestup pásekŠířka páskyNapravoSíla čeřeníDrsnostPoměr zaoblení_Zaoblený obdélník...ŘadyŘady/sloupceVýstup SIODSOTA barvy...Zvětšení XZvětšení YArgumenty skriptuPrůběh skriptuSkript-fu výběr stopySkript-fu výběr barvyKonzole skript-fuSkript-fu výběr souboruSkript-fu výběr adresářeSkript-fu výběr písmaSkript-fu výběr přechoduSkript-fu výběr paletyVolby serveru Skript-fu_Konzola skript-fuSkript-fu nemůže zároveň zpracovávat dva skripty.Pouze interaktivní spuštění umožňuje režim konzole Skript-fuPouze neinteraktivní spuštění umožňuje režim provádění Skript-fuSkript-fu: %sSkript-fu výběr vzorkuHloubka mořeHledat podle _popisuHledat podle _názvuVyhledává se - prosím počkejteVyhledává se podle popisu - prosím počkejteVyhledává se podle názvu - prosím počkejteHnízdoPráh výběru podle barvyOddělená vrstvaSépieŽurnálový soubor serveru:Port serveru:StínX posun stínuY posun stínuPoloměr rozostření stínuBarva stínuTmavost stínuHloubka stínuMíra stínu (%)TvarOstrost (stupně)Délka střihuZobrazit _strukturu obrázku...Jednoduché _zkosené tlačítko...VelikostZašpiněníVyhladitVyhladit vodorovněVyhladit svisleJednolitá barvaRozestup mezi vrstvamiRozestupRychlost (pixelů/rámec)Rychlý text...Barva kouleX hustota tečekY hustota tečekRozšířitČtverecČtverce_Popraskaný povrch...Skvrny_Pronikání hvězd...X počátekY počátekPočáteční úhelPočátek míseníPočáteční míseníPřevzorkováníVířivá _dlaždice..._Klikatice..._Popisek podtlačítka na trubici...Dočasná proceduraTextTextový kruh...Barva textuBarva textu (aktivní)Obrácený přechod textuVzorek textuTloušťkaHustota vláknaIntenzita vláknaDélka vláknaPráh (větší 1<-->255 menší)DlaždiceDo _stopy...Do _obrázkuDo _vzorku...NástrojPrůhledné pozadíTrojúhelníkPopisek podpodtlačítka _na trubici...Točit zleva dopravaTypNahoruHorní barvaHorní barva (aktivní)Levá horní barvaPoužít aktuální přechodPoužívat _název písma jako textPoužít rostoucí výběrPoužít na obrysy vzorek místo přechoduPoužít na text vzorek místo přechoduPoužít překrytí vzorkůPoužít hranice výběru místo níže uvedenéhoSvislýVlnová délkaHlavička nadpisu na WWW...Míra vířeníÚhel víruŠířkaŠířka pruhůŠířka mezerPracovat s kopiíRozdělení XRozdělení YJiž spouštíte skript "%s"._ASCII do obrázku..._ASCII to vrstvy..._Šipka..._Základní I..._Velká hlavička..._Smísit..._Okraj (pixely)_Procházet..._Puntík..._Kamufláž..._Křída..._Okruh..._Plátno...Skvrny od kávy...Schéma _barevWWW stránky _vývojářů_Nouzový výběr..._Vržený stín..._Eliptickou..._Vymazat každou druhou řadu..._Pozvolný obrys..._Filtr (regexp)_Rovina..._Mapa písma..._Mrazivo..._Neostrý okraj..._Obecné popisky na trubici..._Mřížka..._Vodorovné pravítko..._Jmenovky_Země..._Láva..._Hlavní WWW stránky_Stará fotografie...Stopa _částic..._Perspektiva..._Predátor..._Obdélníkovou..._Obnovit skripty_Odstranit všechna vodítka_Čeření..._Oblé tlačítko..._Oblé rohy..._Hledat:_Snímek..._Malá hlavička..._Koule..._Rotující glóbus..._Spustit server..._Vířivé..._Text_Texturované..._Dlaždicovatelné rozostření...Popisek _tlačítka na trubici_Rozostřit masku..._Vlny...Efekt _Xach... \ No newline at end of file +%sSudéSudé/LichéPopředí-pozadí-HSVPopředí-pozadí-RGBPrůhledné popředíPohasínáníPohasnout z %Pohasnout na %ZhasnutíŠířka zhasnutíNeostrostNázev souboruNázev souboruVyplnit pozadí vzorkemÚhel vyplňováníVyplnit pozadímZploštit obrázekPísmo_Velikost písma (pixely)Barva písmaVelikost písma (pixely)Barva popředíPolíčkoBarva rámečkuVelikost rámečkuPočet políčekOdshora zleva dolů dopravaRozšíření GIMPuZásuvný modul GIMPu_Lesk..._Sálající záře...Barva zářePoloměr zářeVelikost záře (pixely * 4)Přechod_Šikmý přechod...Obrácený přechodZrnitostZrnitost (1 je malá)Zrnitost (1 je malá)Měřítko grafu_Nadpis...VýškaŠestiúhelníkŠestiúhelníkyPosun X světelPosun Y světelVyvážení zvýrazněníBarva zvýrazněníKrytí světelPoměrná četnostPodíl děrVodorovnýIIRTypy obrázku:Výška obrázkuVelikost obrázkuObrázek, který vyřezatŠířka obrázkuImigre-26...Indexový obrázekIndexovaný v n barvách (0 = nechat RGB)Vnitřní zubyVložit názvy vrstevMezilehlá políčkaInterní procedura GIMPuInterpolaceInvertovatObrátit směrZachovat pozadíZachovat vrstvu vyvýšeníZachovat výběrVýška zeměNalevoOsvětlení (stupně)Čárová _nova...LineárníLissajousSmyčkaDolní barvaDolní barva (aktivní)Pravá dolní barvaVytvořit nové pozadíOkraj (pixely)Krytí maskyVelikost maskyNejvyšší poloměr rozostřeníTyp dlaždicování mozaikySkvrnka_Neon...NázevNové vodítko (podle _procent)...Nová vodítka z _výběruNové _vodítko...Novinový text...Bez pozadí (pouze pro samostatné vrstvy)Nic nebylo nalezenoŽádnáNestisknutoNestisknuto (aktivní)PočetX počet dlaždicY počet dlaždicPočet pruhůPočet barevPočet políčekPočet čarPočet opakování víruOsmiúhelníkyLichéPosun (pixely)Posun XPosun YPoloměr posunuPosuny (pixely * 2)Velikost masky olejomalbyKrytíOrientaceVnější hraniceVnější zubyPoloměr rozostření obrysuBarva obrysuObrácený přechod obrysuVelikost obrysuBarva výplněKrytí výplněVýplňVýplň XVýplň YVýplň okolo textuVýplň pro průhledné oblastiParametryVzorekVzorek (obrys)Vzorek (překrytí)Vzorek (text)Název vzorkuTužkaPětiúhelníkVelikost pixelůPixelizovat_Registr zásuvných modulůMnohoúhelník: 10 stranMnohoúhelník: 7 stranMnohoúhelník: 8 stranMnohoúhelník: 9 stranPoloha (v %)Připravit pro GIFStisknutoProhlížeč procedurČtvrtinová velikostRLEPoloměrPoloměr (%)Poloměr (pixely)Hnízdo náhodných číselNáhodnostO_bdélníkovou, neostrou...Poměrná vzdálenost obzoruPoměrná délka stínuOdstranit pozadíVykreslit _mapu...Návratové hodnotyRozestup pásekŠířka páskyNapravoSíla čeřeníDrsnostPoměr zaoblení_Zaoblený obdélník...ŘadyŘady/sloupceVýstup SIODSOTA barvy...Zvětšení XZvětšení YArgumenty skriptuPrůběh skriptuSkript-fu výběr stopySkript-fu výběr barvyKonzole skript-fuSkript-fu výběr souboruSkript-fu výběr adresářeSkript-fu výběr písmaSkript-fu výběr přechoduSkript-fu výběr paletyVolby serveru Skript-fu_Konzola skript-fuSkript-fu nemůže zároveň zpracovávat dva skripty.Pouze interaktivní spuštění umožňuje režim konzole Skript-fuPouze neinteraktivní spuštění umožňuje režim provádění Skript-fuSkript-fu: %sSkript-fu výběr vzorkuHloubka mořeHledat podle _popisuHledat podle _názvuVyhledává se - prosím počkejteVyhledává se podle popisu - prosím počkejteVyhledává se podle názvu - prosím počkejteHnízdoPráh výběru podle barvyOddělená vrstvaSépieŽurnálový soubor serveru:Port serveru:StínX posun stínuY posun stínuPoloměr rozostření stínuBarva stínuTmavost stínuHloubka stínuMíra stínu (%)TvarOstrost (stupně)Délka střihuZobrazit _strukturu obrázku...Jednoduché _zkosené tlačítko...VelikostZašpiněníVyhladitVyhladit vodorovněVyhladit svisleJednolitá barvaRozestup mezi vrstvamiRozestupRychlost (pixelů/rámec)Rychlý text...Barva kouleX hustota tečekY hustota tečekRozšířitČtverecČtverce_Popraskaný povrch...Skvrny_Pronikání hvězd...X počátekY počátekPočáteční úhelPočátek míseníPočáteční míseníPřevzorkováníVířivá _dlaždice..._Klikatice..._Popisek podtlačítka na trubici...Dočasná proceduraTextTextový kruh...Barva textuBarva textu (aktivní)Obrácený přechod textuVzorek textuTloušťkaHustota vláknaIntenzita vláknaDélka vláknaPráh (větší 1<-->255 menší)DlaždiceDo _stopy...Do _obrázkuDo _vzorku...NástrojPrůhledné pozadíTrojúhelníkPopisek podpodtlačítka _na trubici...Točit zleva dopravaTypNahoruHorní barvaHorní barva (aktivní)Levá horní barvaPoužít aktuální přechodPoužívat _název písma jako textPoužít rostoucí výběrPoužít na obrysy vzorek místo přechoduPoužít na text vzorek místo přechoduPoužít překrytí vzorkůPoužít hranice výběru místo níže uvedenéhoSvislýVlnová délkaHlavička nadpisu na WWW...Míra vířeníÚhel víruŠířkaŠířka pruhůŠířka mezerPracovat s kopiíRozdělení XRozdělení YJiž spouštíte skript "%s"._Šipka..._Základní I..._Velká hlavička..._Smísit..._Okraj (pixely)_Procházet..._Puntík..._Kamufláž..._Křída..._Okruh..._Plátno...Skvrny od kávy...Schéma _barevWWW stránky _vývojářů_Nouzový výběr..._Vržený stín..._Eliptickou..._Vymazat každou druhou řadu..._Pozvolný obrys..._Filtr (regexp)_Rovina..._Mapa písma..._Mrazivo..._Neostrý okraj..._Obecné popisky na trubici..._Mřížka..._Vodorovné pravítko..._Jmenovky_Země..._Láva..._Hlavní WWW stránky_Stará fotografie...Stopa _částic..._Perspektiva..._Predátor..._Obdélníkovou..._Obnovit skripty_Odstranit všechna vodítka_Čeření..._Oblé tlačítko..._Oblé rohy..._Hledat:_Snímek..._Malá hlavička..._Koule..._Rotující glóbus..._Spustit server..._Vířivé..._Text_Texturované..._Dlaždicovatelné rozostření...Popisek _tlačítka na trubici_Rozostřit masku..._Vlny...Efekt _Xach... \ No newline at end of file diff -uraN gimp-2.2.0/po-script-fu/cs.po gimp-2.2.1/po-script-fu/cs.po --- gimp-2.2.0/po-script-fu/cs.po 2004-12-19 03:34:26.000000000 +0100 +++ gimp-2.2.1/po-script-fu/cs.po 2004-12-28 16:59:10.000000000 +0100 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: gimp-script-fu VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:48+0100\n" +"POT-Creation-Date: 2004-12-28 15:42+0100\n" "PO-Revision-Date: 2004-11-20 16:09+0100\n" "Last-Translator: Miloslav Trmac \n" "Language-Team: Czech \n" @@ -319,7 +319,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:5 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:4 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:6 -#: plug-ins/script-fu/scripts/asc2img.scm.h:8 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:4 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:5 #: plug-ins/script-fu/scripts/beveled-button.scm.h:3 @@ -360,7 +359,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:6 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:5 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:7 -#: plug-ins/script-fu/scripts/asc2img.scm.h:9 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:5 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:6 #: plug-ins/script-fu/scripts/beveled-button.scm.h:4 @@ -488,7 +486,6 @@ #: plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:2 #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:3 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:4 -#: plug-ins/script-fu/scripts/asc2img.scm.h:3 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:3 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:4 #: plug-ins/script-fu/scripts/blended-logo.scm.h:3 @@ -703,7 +700,6 @@ msgstr "Výplň" #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:11 -#: plug-ins/script-fu/scripts/asc2img.scm.h:10 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:7 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:8 #: plug-ins/script-fu/scripts/beveled-button.scm.h:10 @@ -746,48 +742,6 @@ msgid "Width of gaps" msgstr "Šířka mezer" -#: plug-ins/script-fu/scripts/asc2img.scm.h:1 -#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 -#: plug-ins/script-fu/scripts/image-structure.scm.h:1 -msgid "/Script-Fu/Utils" -msgstr "/Skript-fu/Pomůcky" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:2 -#: plug-ins/script-fu/scripts/font-map.scm.h:1 -#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 -msgid "/Xtns/Script-Fu/Utils" -msgstr "/Rozš./Skript-fu/Pomůcky" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:5 -#, no-c-format -msgid "Buffer amount (% height of text)" -msgstr "Velikost bufferu (% výšky textu)" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:6 -#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 -msgid "File name" -msgstr "Název souboru" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:7 -#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 -msgid "Filename" -msgstr "Název souboru" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:11 -#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 -#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 -#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 -msgid "Transparent background" -msgstr "Průhledné pozadí" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:12 -msgid "_ASCII to Image..." -msgstr "_ASCII do obrázku..." - -#: plug-ins/script-fu/scripts/asc2img.scm.h:13 -msgid "_ASCII to Layer..." -msgstr "_ASCII to vrstvy..." - #: plug-ins/script-fu/scripts/basic1-logo.scm.h:8 msgid "_Basic I..." msgstr "_Základní I..." @@ -837,6 +791,12 @@ msgid "Diameter" msgstr "Průměr" +#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 +#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 +#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 +msgid "Transparent background" +msgstr "Průhledné pozadí" + #: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:4 msgid "H_eading..." msgstr "_Nadpis..." @@ -1430,6 +1390,11 @@ msgid "_Flatland..." msgstr "_Rovina..." +#: plug-ins/script-fu/scripts/font-map.scm.h:1 +#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 +msgid "/Xtns/Script-Fu/Utils" +msgstr "/Rozš./Skript-fu/Pomůcky" + #: plug-ins/script-fu/scripts/font-map.scm.h:2 msgid "Active colors" msgstr "Aktivní barvy" @@ -1697,6 +1662,11 @@ msgid "_Remove all Guides" msgstr "_Odstranit všechna vodítka" +#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 +#: plug-ins/script-fu/scripts/image-structure.scm.h:1 +msgid "/Script-Fu/Utils" +msgstr "/Skript-fu/Pomůcky" + #: plug-ins/script-fu/scripts/hsv-graph.scm.h:2 msgid "BG opacity" msgstr "Krytí pozadí" @@ -2071,6 +2041,10 @@ msgid "Brush name" msgstr "Název stopy" +#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 +msgid "File name" +msgstr "Název souboru" + #: plug-ins/script-fu/scripts/select-to-brush.scm.h:5 msgid "To _Brush..." msgstr "Do _stopy..." @@ -2079,6 +2053,10 @@ msgid "To _Image" msgstr "Do _obrázku" +#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 +msgid "Filename" +msgstr "Název souboru" + #: plug-ins/script-fu/scripts/select-to-pattern.scm.h:3 msgid "Pattern name" msgstr "Název vzorku" @@ -2536,5 +2514,14 @@ msgid "_Xach-Effect..." msgstr "Efekt _Xach..." +#~ msgid "Buffer amount (% height of text)" +#~ msgstr "Velikost bufferu (% výšky textu)" + +#~ msgid "_ASCII to Image..." +#~ msgstr "_ASCII do obrázku..." + +#~ msgid "_ASCII to Layer..." +#~ msgstr "_ASCII to vrstvy..." + #~ msgid "Copy _Visible" #~ msgstr "Kopírovat _viditelné..." diff -uraN gimp-2.2.0/po-script-fu/da.gmo gimp-2.2.1/po-script-fu/da.gmo --- gimp-2.2.0/po-script-fu/da.gmo 2004-12-19 03:34:32.000000000 +0100 +++ gimp-2.2.1/po-script-fu/da.gmo 2004-12-28 16:59:15.000000000 +0100 @@ -20,7 +20,7 @@ %s %sEvenFG-BG-HSVFG-BG-RGBFG-TransparentFadeoutFeatheringFilenameFill with BGFontFrameFramesGradientGradient: Loop SawtoothGradient: Loop TriangleGranularityGranularity (1 is Low)HeightHexagonHexagonsIIRImage Types:InvertInvert directionLeftLighting (degrees)LissajousLoopedMargin (pixels)MottleNo matchesNumberOctagonsOddOffset (pixels)Offset XOffset YOffsets (pixels * 2)OpacityOrientationPaddingPadding XPadding YPatternPencilPentagonPixelizePolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPrepare for GIFPressedRLERadiusRadius (pixels)RandomnessRightRoughnessRowsSIOD OutputScale XScale YScript ArgumentsScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Server OptionsScript-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSepiaServer Logfile:Server Port:ShadowShapeSharpness (degrees)SizeSmearSmoothSolid ColorSpacingSpeed (pixels/frame)Spots density XSpots density YSpreadSpyrographSquareSquaresStainsStart XStart YSupersampleTextThicknessTileToolTriangleTypeUpWavelengthWidthWrap_Border (pixels)_Filter (regexp)_Labels_Search:_TextProject-Id-Version: GIMP script-fu Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:48+0100 +POT-Creation-Date: 2004-12-28 15:42+0100 PO-Revision-Date: 2004-02-10 21:40+0100 Last-Translator: Ole Laursen Language-Team: Danish diff -uraN gimp-2.2.0/po-script-fu/da.po gimp-2.2.1/po-script-fu/da.po --- gimp-2.2.0/po-script-fu/da.po 2004-12-19 03:34:26.000000000 +0100 +++ gimp-2.2.1/po-script-fu/da.po 2004-12-28 16:59:10.000000000 +0100 @@ -20,7 +20,7 @@ msgstr "" "Project-Id-Version: GIMP script-fu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:48+0100\n" +"POT-Creation-Date: 2004-12-28 15:42+0100\n" "PO-Revision-Date: 2004-02-10 21:40+0100\n" "Last-Translator: Ole Laursen \n" "Language-Team: Danish \n" @@ -341,7 +341,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:5 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:4 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:6 -#: plug-ins/script-fu/scripts/asc2img.scm.h:8 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:4 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:5 #: plug-ins/script-fu/scripts/beveled-button.scm.h:3 @@ -382,7 +381,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:6 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:5 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:7 -#: plug-ins/script-fu/scripts/asc2img.scm.h:9 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:5 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:6 #: plug-ins/script-fu/scripts/beveled-button.scm.h:4 @@ -516,7 +514,6 @@ #: plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:2 #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:3 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:4 -#: plug-ins/script-fu/scripts/asc2img.scm.h:3 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:3 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:4 #: plug-ins/script-fu/scripts/blended-logo.scm.h:3 @@ -756,7 +753,6 @@ msgstr "Fyldning" #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:11 -#: plug-ins/script-fu/scripts/asc2img.scm.h:10 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:7 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:8 #: plug-ins/script-fu/scripts/beveled-button.scm.h:10 @@ -805,56 +801,6 @@ msgid "Width of gaps" msgstr "Mellemrumsbredde" -# ASCII er efterhånden et amerikansk idiom -#: plug-ins/script-fu/scripts/asc2img.scm.h:1 -#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 -#: plug-ins/script-fu/scripts/image-structure.scm.h:1 -#, fuzzy -msgid "/Script-Fu/Utils" -msgstr "/Script-Fu/Værktøjer/_Tekst til billedlag..." - -#: plug-ins/script-fu/scripts/asc2img.scm.h:2 -#: plug-ins/script-fu/scripts/font-map.scm.h:1 -#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 -#, fuzzy -msgid "/Xtns/Script-Fu/Utils" -msgstr "/Udvidelser/Script-Fu/Logoer/_Neon..." - -# det dækker 'buffer amount' faktisk over -#: plug-ins/script-fu/scripts/asc2img.scm.h:5 -#, fuzzy, no-c-format -msgid "Buffer amount (% height of text)" -msgstr "Margin (% af teksthøjde)" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:6 -#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 -#, fuzzy -msgid "File name" -msgstr "Filnavn" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:7 -#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 -msgid "Filename" -msgstr "Filnavn" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:11 -#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 -#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 -#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 -#, fuzzy -msgid "Transparent background" -msgstr "Gennemsigtig baggrund" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:12 -msgid "_ASCII to Image..." -msgstr "" - -# ASCII er efterhånden et amerikansk idiom -#: plug-ins/script-fu/scripts/asc2img.scm.h:13 -#, fuzzy -msgid "_ASCII to Layer..." -msgstr "/Script-Fu/Værktøjer/_Tekst til billedlag..." - #: plug-ins/script-fu/scripts/basic1-logo.scm.h:8 msgid "_Basic I..." msgstr "" @@ -911,6 +857,13 @@ msgid "Diameter" msgstr "Diameter" +#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 +#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 +#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 +#, fuzzy +msgid "Transparent background" +msgstr "Gennemsigtig baggrund" + #: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:4 msgid "H_eading..." msgstr "" @@ -1576,6 +1529,12 @@ msgid "_Flatland..." msgstr "" +#: plug-ins/script-fu/scripts/font-map.scm.h:1 +#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 +#, fuzzy +msgid "/Xtns/Script-Fu/Utils" +msgstr "/Udvidelser/Script-Fu/Logoer/_Neon..." + #: plug-ins/script-fu/scripts/font-map.scm.h:2 #, fuzzy msgid "Active colors" @@ -1884,6 +1843,13 @@ msgid "_Remove all Guides" msgstr "" +# ASCII er efterhånden et amerikansk idiom +#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 +#: plug-ins/script-fu/scripts/image-structure.scm.h:1 +#, fuzzy +msgid "/Script-Fu/Utils" +msgstr "/Script-Fu/Værktøjer/_Tekst til billedlag..." + #: plug-ins/script-fu/scripts/hsv-graph.scm.h:2 #, fuzzy msgid "BG opacity" @@ -2308,6 +2274,11 @@ msgid "Brush name" msgstr "Penselnavn" +#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 +#, fuzzy +msgid "File name" +msgstr "Filnavn" + #: plug-ins/script-fu/scripts/select-to-brush.scm.h:5 #, fuzzy msgid "To _Brush..." @@ -2317,6 +2288,10 @@ msgid "To _Image" msgstr "" +#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 +msgid "Filename" +msgstr "Filnavn" + #: plug-ins/script-fu/scripts/select-to-pattern.scm.h:3 #, fuzzy msgid "Pattern name" @@ -2833,6 +2808,16 @@ msgid "_Xach-Effect..." msgstr "" +# det dækker 'buffer amount' faktisk over +#, fuzzy +#~ msgid "Buffer amount (% height of text)" +#~ msgstr "Margin (% af teksthøjde)" + +# ASCII er efterhånden et amerikansk idiom +#, fuzzy +#~ msgid "_ASCII to Layer..." +#~ msgstr "/Script-Fu/Værktøjer/_Tekst til billedlag..." + #~ msgid "/Xtns/Script-Fu/_Refresh Scripts" #~ msgstr "/Udvidelser/Script-Fu/_Genopfrisk" diff -uraN gimp-2.2.0/po-script-fu/de.gmo gimp-2.2.1/po-script-fu/de.gmo --- gimp-2.2.0/po-script-fu/de.gmo 2004-12-19 03:34:32.000000000 +0100 +++ gimp-2.2.1/po-script-fu/de.gmo 2004-12-28 16:59:15.000000000 +0100 @@ -1,84 +1,80 @@ -  + +++ + ,,!,0,J,j,,,,,, --"-A- Z-{-#--!--3.8Q.9. . .... / -/%/ ->$>5> => I> V>b> v>> > > >> > >>> -??#?5?G? V?c?j? s?????????@@ @'@+@ -2@=@ M@ -Y@d@@@@@ @@ @AA A #A/AEA JA TA`AoAwAAAAAAAAB3BPBlBB6B9B= C GCUC qC{CCC CCCCD#D)D 9DFDMD]DmD DD DDDD DDDEE!E(EN JNXNgNvN NNNNO O;OWOuOO'OO)O&PBP$bP.P;P4P 'Q4QIQ^QvQQQQQ QQRR -R7R >RHR/gRRRR RRRRR SS.S ?S KS -XS cSmSSSSSSSST"T 7TDTTTdTTTTTTT U U U(Un" bf2,.(B-^y *gh /3P$izA` 0gx Mqb`kv81=7-? [@u'|zLkH@D: JBS*Nf5GcKZ. 8 - -LG)<A:CoT3m5&4]$Rw="xY~!+&VT1i uj9S}N^ePr  #|RvwUIJ{Q!F762 aopqrsDY~[I+dOMnElZtOmKE/\{>j%<eX%(Q# -,;X)}lWtFap'9_;0C]_y\V U%d Procedures%s:(none)/Script-Fu/1 Procedure3D _Outline...3_D Truchet.../Script-Fu/Alchemy/Script-Fu/Alpha to Logo/Script-Fu/Animators/Script-Fu/Decor/Script-Fu/Render/Script-Fu/Selection/Script-Fu/Shadow/Script-Fu/Stencil Ops/Script-Fu/Utils/Help/The GIMP Online/Xtns/Script-Fu/Xtns/Script-Fu/Buttons/Xtns/Script-Fu/Logos/Xtns/Script-Fu/Make Brush/Xtns/Script-Fu/Misc/Xtns/Script-Fu/Patterns/Xtns/Script-Fu/Utils/Xtns/Script-Fu/Web Page Themes/Alien Glow/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/Xtns/Script-Fu/Web Page Themes/Classic.Gimp.OrgActive colorsAdd B_evel...Add _Border...Add backgroundAdd drop-shadowAdd glowingAdd shadowAdditional InformationAfter glowAirbrushAlien _Glow...Alien _Neon...Allow resizingAmplitudeAngleAntialiasApply generated layermaskApply layer mask (or discard)Author:AutocropAzimuthBG opacityB_asic II...B_urn-In...B_utton...Background ColorBackground ImageBackground colorBackground imageBar heightBar lengthBase colorBehaviourBevel height (Sharpness)Bevel height (sharpness)Bevel widthBlackBlack on whiteBlen_ded...Blend gradient (Text)Blend gradient (outline)Blend gradient (text)Blend modeBlock sizeBlur XBlur YBlur amountBlur borderBlur horizontallyBlur radiusBlur typeBlur verticallyBo_vination...Border X sizeBorder Y sizeBorder colorBorder sizeBorder size (pixels)BrushBrush nameBuffer amount (% height of text)Bumpmap (alpha layer) blur radiusBurn-In: Need two layers in total!Burst colorC_arve-It...C_hrome-It...C_hrome...Carve raised textCarve white areasCarved...Cell size (pixels)Chalk colorChip Awa_y...Chip amountChrome balanceChrome factorChrome lightnessChrome saturationChrome white areasCircleCircuit seedClear unselected maskareaColorColor 1Color 2Color 3Color methodColumnsComic Boo_k...ConcaveCool _Metal...Copyright:Corona widthCreate new imageCreate shadowCreates four Guides around the bounding box of the current selection.Crystal...CubicCurrent CommandCustom GradientCustom _Gradient...Dark colorDarken only + +l + +++ + +++,,:,V,n,,,,,,- *-K-#j--!--3-8!.9Z. . .... . +.. + // ///>/ M/W/ ]/g///// +/ / / +/// 00 ++0 +60 +A0 L0V0o0 000 0000 +0 +111 1 *161 H1 T1^1n1 }1 1 1 111 +1!1"1 2 )2 62 +D2O2a2 s2}2 2 2 22 2222 3 3373=3E3M3 U3b3j3y33 +3 33 3E3 + 444.4>4 +R4<]44444 444 45 555`15 555555 66 !6 +6 +76B6[6u666 6666 6 67 77 +%707L7Q7 Z7 d7n7 }7 7 77 7 +7 777 +7 7 888 +'828E8V8 \8 +h8s8z88 8 +88 +8 88899*9B9 Z9f9}9 9 99999999 :: +': +2:=: A: N: +[:f: u: : :": :::: ;;;.;>;N; ];i;n; ;; ;; ;;;;; ; <<&<7<><G<L<g< <<'< +<< <<<==&=6=G=X=h====== ==== = = >> %>3> L> Y> c>o> w> >>> +>>>>> ??? "?/?8?J?\?m?~????? ??? +?? ? +@@.@K@e@w@ @@ @@@ @ @@@ @ AAA&A.A?AOAiAAAAAAAB4B6GB9~B=B BC C*C;CKC cCCCCCCC CCC DD /D +Z?t'{yLjG@D9IAS*Me5FbKY. 7 KG(;@:BnS3l4%4\$Rv="w}!*~&VT0h  ti9R|N]dOq #{QuvTIJzP F661`nopqrCX}ZH+cOLmDkYsNlJE/[z>i$<dW%(Q" +,:X)|kWsE`o&8^;/C\^x[UU%d Procedures%s:(none)/Script-Fu/1 Procedure3D _Outline...3_D Truchet.../Script-Fu/Alchemy/Script-Fu/Alpha to Logo/Script-Fu/Animators/Script-Fu/Decor/Script-Fu/Render/Script-Fu/Selection/Script-Fu/Shadow/Script-Fu/Stencil Ops/Script-Fu/Utils/Help/The GIMP Online/Xtns/Script-Fu/Xtns/Script-Fu/Buttons/Xtns/Script-Fu/Logos/Xtns/Script-Fu/Make Brush/Xtns/Script-Fu/Misc/Xtns/Script-Fu/Patterns/Xtns/Script-Fu/Utils/Xtns/Script-Fu/Web Page Themes/Alien Glow/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/Xtns/Script-Fu/Web Page Themes/Classic.Gimp.OrgActive colorsAdd B_evel...Add _Border...Add backgroundAdd drop-shadowAdd glowingAdd shadowAdditional InformationAfter glowAirbrushAlien _Glow...Alien _Neon...Allow resizingAmplitudeAngleAntialiasApply generated layermaskApply layer mask (or discard)Author:AutocropAzimuthBG opacityB_asic II...B_urn-In...B_utton...Background ColorBackground ImageBackground colorBackground imageBar heightBar lengthBase colorBehaviourBevel height (Sharpness)Bevel height (sharpness)Bevel widthBlackBlack on whiteBlen_ded...Blend gradient (Text)Blend gradient (outline)Blend gradient (text)Blend modeBlock sizeBlur XBlur YBlur amountBlur borderBlur horizontallyBlur radiusBlur typeBlur verticallyBo_vination...Border X sizeBorder Y sizeBorder colorBorder sizeBorder size (pixels)BrushBrush nameBumpmap (alpha layer) blur radiusBurn-In: Need two layers in total!Burst colorC_arve-It...C_hrome-It...C_hrome...Carve raised textCarve white areasCarved...Cell size (pixels)Chalk colorChip Awa_y...Chip amountChrome balanceChrome factorChrome lightnessChrome saturationChrome white areasCircleCircuit seedClear unselected maskareaColorColor 1Color 2Color 3Color methodColumnsComic Boo_k...ConcaveCool _Metal...Copyright:Corona widthCreate new imageCreate shadowCreates four Guides around the bounding box of the current selection.Crystal...CubicCurrent CommandCustom GradientCustom _Gradient...Dark colorDarken only (Better, but only for images with alot of white)Date:Default bumpmap settingsDefocusDelta value on colorDensity (%)DepthDetail in MiddleDetail levelDiameterDirectionDownDraw _HSV Graph...Draws Spirographs, Epitrochoids and Lissajous Curves. More info at http://netword.com/*spyrogimpDrop shadowDrop shadow X offsetDrop shadow Y offsetDrop shadow blur radiusDrop shadow colorDrop shadow opacityEdge amountEdge behaviourEdge onlyEdge radiusEdge widthEffect size (pixels * 3)Effect size (pixels * 30)Effect size (pixels * 4)Effect size (pixels * 5)Effect size (pixels)ElevationElli_ptical, Feathered...End XEnd YEnd blendEnding blendEnvironment mapEpitrochoidEraseErase/fillError while executing %s -%sEvenEven/oddFG-BG-HSVFG-BG-RGBFG-TransparentFade awayFade from %Fade to %FadeoutFadeout widthFeatheringFile nameFilenameFill BG with patternFill angleFill with BGFlatten imageFontFont _size (pixels)Font colorFont size (pixels)Foreground colorFrameFrame colorFrame sizeFramesFrom top-left to bottom-rightGIMP ExtensionGIMP Plug-InGlo_ssy...Glo_wing Hot...Glow colorGlow radiusGlow size (pixels * 4)GradientGradient Beve_l...Gradient reverseGradient: Loop SawtoothGradient: Loop TriangleGranularityGranularity (1 is Low)Granularity (1 is low)Graph scaleH_eading...HeightHexagonHexagonsHighlight X offsetHighlight Y offsetHighlight balanceHighlight colorHighlight opacityHit rateHole ratioHorizontalIIRImage Types:Image heightImage sizeImage to carveImage widthImigre-26...Index imageIndex to n colors (0 = remain RGB)Inner teethInsert layer namesIntermediate framesInternal GIMP procedureInterpolationInvertInvert directionKeep backgroundKeep bump layerKeep selectionLand heightLeftLighting (degrees)Line _Nova...LinearLissajousLoopedLower colorLower color (active)Lower-right colorMake new backgroundMargin (pixels)Mask opacityMask sizeMax. blur radiusMosaic tile typeMottleN_eon...NameNew Guide (by _Percent)...New Guides from _SelectionNew _Guide...Newsprint Text...No background (only for separate layer)No matchesNoneNot pressedNot pressed (active)NumberNumber of X tilesNumber of Y tilesNumber of bandsNumber of colorsNumber of framesNumber of linesNumber of times to whirlOctagonsOddOffset (pixels)Offset XOffset YOffset radiusOffsets (pixels * 2)Oilify mask sizeOpacityOrientationOuter borderOuter teethOutline blur radiusOutline colorOutline gradient reverseOutline sizePad colorPad opacityPaddingPadding XPadding YPadding around textPadding for transparent regionsParametersPatternPattern (outline)Pattern (overlay)Pattern (text)Pattern namePencilPentagonPixel amountPixelizePlug-in _RegistryPolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPosition (in %)Prepare for GIFPressedProcedure BrowserQuarter sizeRLERadiusRadius (%)Radius (pixels)Random seedRandomnessRe_ctangular, Feathered...Relative distance of horizonRelative length of shadowRemove backgroundRender _Map...Return ValuesRibbon spacingRibbon widthRightRippling strengthRoughnessRound ratioRounded R_ectangle...RowsRows/colsSIOD OutputSOTA Chrome...Scale XScale YScript ArgumentsScript ProgressScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Palette SelectionScript-Fu Server OptionsScript-Fu _ConsoleScript-Fu cannot process two scripts at the same time.Script-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSea depthSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSelect-by-color thresholdSeparate layerSepiaServer Logfile:Server Port:ShadowShadow X offsetShadow Y offsetShadow blur radiusShadow colorShadow darknessShadow depthShadow weight (%)ShapeSharpness (degrees)Shear lengthShow Image _Structure...Simple _Beveled Button...SizeSmearSmoothSmooth horizontallySmooth verticallySolid ColorSpace between layersSpacingSpeed (pixels/frame)Speed Text...Sphere colorSpots density XSpots density YSpreadSpyrographSquareSquaresSta_rscape...StainsStarb_urst...Start XStart YStart angleStart blendStarting blendSupersampleSwirl-_Tile...T_ruchet...T_ube Sub-Button Label...Temporary ProcedureTextText Circle...Text colorText color (active)Text gradient reverseText patternThicknessThread densityThread intensityThread lengthThreshold (bigger 1<-->255 smaller)TileTo _Brush...To _ImageTo _Pattern...ToolTransparent backgroundTriangleTub_e Sub-Sub-Button Label...Turn from left to rightTypeUpUpper colorUpper color (active)Upper-left colorUse current gradientUse font _name as textUse growing selectionUse pattern for outline instead of gradientUse pattern for text instead of gradientUse pattern overlayUse selection bounds instead of belowsVerticalWavelengthWeb Title Header...Whirl amountWhirl angleWidthWidth of bandsWidth of gapsWork on copyWrapX divisionsY divisionsYou are already running the "%s" script._ASCII to Image..._ASCII to Layer..._Arrow..._Basic I..._Big Header..._Blend..._Border (pixels)_Browse..._Bullet..._Camouflage..._Chalk..._Circuit..._Clothify..._Coffee Stain..._Color scheme_Developer Web Site_Distress Selection..._Drop-Shadow..._Elliptical..._Erase every other Row..._Fade Outline..._Filter (regexp)_Flatland..._Font Map..._Frosty..._Fuzzy Border..._General Tube Labels..._Grid..._Hrule..._Labels_Land..._Lava..._Main Web Site_Old Photo..._Particle Trace..._Perspective..._Predator..._Rectangular..._Refresh Scripts_Remove all Guides_Rippling..._Round Button..._Round Corners..._Search:_Slide..._Small Header..._Sphere..._Spinning Globe..._Spyrogimp..._Start Server..._Swirly..._Text_Textured..._Tileable Blur..._Tube Button Label..._Unsharp Mask..._Waves..._Weave..._Xach-Effect...Project-Id-Version: GIMP 2.2 +%sEvenEven/oddFG-BG-HSVFG-BG-RGBFG-TransparentFade awayFade from %Fade to %FadeoutFadeout widthFeatheringFile nameFilenameFill BG with patternFill angleFill with BGFlatten imageFontFont _size (pixels)Font colorFont size (pixels)Foreground colorFrameFrame colorFrame sizeFramesFrom top-left to bottom-rightGIMP ExtensionGIMP Plug-InGlo_ssy...Glo_wing Hot...Glow colorGlow radiusGlow size (pixels * 4)GradientGradient Beve_l...Gradient reverseGradient: Loop SawtoothGradient: Loop TriangleGranularityGranularity (1 is Low)Granularity (1 is low)Graph scaleH_eading...HeightHexagonHexagonsHighlight X offsetHighlight Y offsetHighlight balanceHighlight colorHighlight opacityHit rateHole ratioHorizontalIIRImage Types:Image heightImage sizeImage to carveImage widthImigre-26...Index imageIndex to n colors (0 = remain RGB)Inner teethInsert layer namesIntermediate framesInternal GIMP procedureInterpolationInvertInvert directionKeep backgroundKeep bump layerKeep selectionLand heightLeftLighting (degrees)Line _Nova...LinearLissajousLoopedLower colorLower color (active)Lower-right colorMake new backgroundMargin (pixels)Mask opacityMask sizeMax. blur radiusMosaic tile typeMottleN_eon...NameNew Guide (by _Percent)...New Guides from _SelectionNew _Guide...Newsprint Text...No background (only for separate layer)No matchesNoneNot pressedNot pressed (active)NumberNumber of X tilesNumber of Y tilesNumber of bandsNumber of colorsNumber of framesNumber of linesNumber of times to whirlOctagonsOddOffset (pixels)Offset XOffset YOffset radiusOffsets (pixels * 2)Oilify mask sizeOpacityOrientationOuter borderOuter teethOutline blur radiusOutline colorOutline gradient reverseOutline sizePad colorPad opacityPaddingPadding XPadding YPadding around textPadding for transparent regionsParametersPatternPattern (outline)Pattern (overlay)Pattern (text)Pattern namePencilPentagonPixel amountPixelizePlug-in _RegistryPolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPosition (in %)Prepare for GIFPressedProcedure BrowserQuarter sizeRLERadiusRadius (%)Radius (pixels)Random seedRandomnessRe_ctangular, Feathered...Relative distance of horizonRelative length of shadowRemove backgroundRender _Map...Return ValuesRibbon spacingRibbon widthRightRippling strengthRoughnessRound ratioRounded R_ectangle...RowsRows/colsSIOD OutputSOTA Chrome...Scale XScale YScript ArgumentsScript ProgressScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Palette SelectionScript-Fu Server OptionsScript-Fu _ConsoleScript-Fu cannot process two scripts at the same time.Script-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSea depthSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSelect-by-color thresholdSeparate layerSepiaServer Logfile:Server Port:ShadowShadow X offsetShadow Y offsetShadow blur radiusShadow colorShadow darknessShadow depthShadow weight (%)ShapeSharpness (degrees)Shear lengthShow Image _Structure...Simple _Beveled Button...SizeSmearSmoothSmooth horizontallySmooth verticallySolid ColorSpace between layersSpacingSpeed (pixels/frame)Speed Text...Sphere colorSpots density XSpots density YSpreadSpyrographSquareSquaresSta_rscape...StainsStarb_urst...Start XStart YStart angleStart blendStarting blendSupersampleSwirl-_Tile...T_ruchet...T_ube Sub-Button Label...Temporary ProcedureTextText Circle...Text colorText color (active)Text gradient reverseText patternThicknessThread densityThread intensityThread lengthThreshold (bigger 1<-->255 smaller)TileTo _Brush...To _ImageTo _Pattern...ToolTransparent backgroundTriangleTub_e Sub-Sub-Button Label...Turn from left to rightTypeUpUpper colorUpper color (active)Upper-left colorUse current gradientUse font _name as textUse growing selectionUse pattern for outline instead of gradientUse pattern for text instead of gradientUse pattern overlayUse selection bounds instead of belowsVerticalWavelengthWeb Title Header...Whirl amountWhirl angleWidthWidth of bandsWidth of gapsWork on copyWrapX divisionsY divisionsYou are already running the "%s" script._Arrow..._Basic I..._Big Header..._Blend..._Border (pixels)_Browse..._Bullet..._Camouflage..._Chalk..._Circuit..._Clothify..._Coffee Stain..._Color scheme_Developer Web Site_Distress Selection..._Drop-Shadow..._Elliptical..._Erase every other Row..._Fade Outline..._Filter (regexp)_Flatland..._Font Map..._Frosty..._Fuzzy Border..._General Tube Labels..._Grid..._Hrule..._Labels_Land..._Lava..._Main Web Site_Old Photo..._Particle Trace..._Perspective..._Predator..._Rectangular..._Refresh Scripts_Remove all Guides_Rippling..._Round Button..._Round Corners..._Search:_Slide..._Small Header..._Sphere..._Spinning Globe..._Spyrogimp..._Start Server..._Swirly..._Text_Textured..._Tileable Blur..._Tube Button Label..._Unsharp Mask..._Waves..._Weave..._Xach-Effect...Project-Id-Version: GIMP 2.2 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:48+0100 +POT-Creation-Date: 2004-12-28 15:42+0100 PO-Revision-Date: 2004-11-18 02:31+0100 Last-Translator: Hendrik Brandt Language-Team: German MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit -%d Prozeduren%s:(kein)/Skript-Fu/Eine Prozedur3-D _Umriß...3_D-Truchet.../Skript-Fu/Alchimie/Skript-Fu/Alpha als Logo/Skript-Fu/Animationen/Skript-Fu/Dekoration/Skript-Fu/Render/Skript-Fu/Auswahl/Skript-Fu/Schatten/Skript-Fu/Schablone/Skript-Fu/Hilfsmittel/Hilfe/GIMP Online/Xtns/Skript-Fu/Xtns/Skript-Fu/Schaltflächen/Xtns/Skript-Fu/Logos/Xtns/Skript-Fu/Pinsel erstellen/Xtns/Skript-Fu/Verschiedenes/Xtns/Skript-Fu/Muster/Xtns/Skript-Fu/Hilfsmittel/Xtns/Skript-Fu/Web-Seiten/Alien Glow/Xtns/Skript-Fu/Web-Seiten/Abgeschrägt, gemustert/Xtns/Skript-Fu/Web-Seiten/classic.gimp.orgUmriß Farbe_Rand abschrägen...Rand _hinzufügen...Hintergrund hinzufügenSchlagschatten hinzufügenGlühen hinzufügenSchatten hinzufügenZusätzliche InformationenNach dem GlühenSprühpistoleAlien Glo_w...Alien _Neon...Größenänderung zulassenAmplitudeWinkelAntialiasErstellte Ebenenmaske anwendenErstellte Ebenenmaske anwenden (oder verwerfen)Autor:Automatisch ZuschneidenAzimuthHG DeckkraftE_infach II..._Einbrennen..._Schaltfläche...HintergrundfarbeHintergrund BildHintergrundfarbeHintergrund BildLinienhöheLinienlängeGrundfarbeVerhaltenHöhe der Schräge (Schärfe)Höhe der Schräge (Schärfe)Breite der SchrägeSchwarzSchwarz auf Weiß_Farbverlauf...Farbverlauf (Text)Farbverlauf (Umriß)Farbverlauf (Text)Art des FarbverlaufsBlockgrößeWeichzeichnen XWeichzeichnen YStärke des WeichzeichnersRand weichzeichnenHorizontal weichzeichnenRadius des WeichzeichnersArt des WeichzeichnersVertikal weichzeichnenKu_hflecken...Randgröße XRandgröße YRandfarbeRandgröße (Pixel)Zellengröße (Pixel)PinselPinselnamePuffer-Grösse (in % der Höhe d. Textes)Bumpmap (Alpha-Ebene) Weichzeichner-Radius»Einbrennen« benötigt mindestens zwei Ebenen!Explosionsfarbe_Schnitzen..._Chrom..._Chrom...Text herausarbeitenWeiße Flächen herausarbeiten_Geschnitzt...Zellengröße (Pixel)Farbe der Kreide_Zerfressen...Stärke des ZerfressensChrom FarbeChrom FaktorChrom HelligkeitChrom SättigungWeiße Flächen verchromenKreisCircuit Init-ZahlNicht ausgewählten Maskenbereich löschenFarbeFarbe 1Farbe 2Farbe 3FärbungSpaltenComic-_Heft...Konkav_Kaltes Metall...Copyright:Korona BreiteNeues Bild erzeugenSchatten erzeugenErzeugt vier Hilfslinien um das einschließende Rechteck der aktuellen Auswahl.Krista_ll...KubischAktueller BefehlEigener Farbverlauf_Farbverlauf Vorschau...Dunkle Farbenur Abdunkeln +%d Prozeduren%s:(kein)/Skript-Fu/Eine Prozedur3-D _Umriß...3_D-Truchet.../Skript-Fu/Alchimie/Skript-Fu/Alpha als Logo/Skript-Fu/Animationen/Skript-Fu/Dekoration/Skript-Fu/Render/Skript-Fu/Auswahl/Skript-Fu/Schatten/Skript-Fu/Schablone/Skript-Fu/Hilfsmittel/Hilfe/GIMP Online/Xtns/Skript-Fu/Xtns/Skript-Fu/Schaltflächen/Xtns/Skript-Fu/Logos/Xtns/Skript-Fu/Pinsel erstellen/Xtns/Skript-Fu/Verschiedenes/Xtns/Skript-Fu/Muster/Xtns/Skript-Fu/Hilfsmittel/Xtns/Skript-Fu/Web-Seiten/Alien Glow/Xtns/Skript-Fu/Web-Seiten/Abgeschrägt, gemustert/Xtns/Skript-Fu/Web-Seiten/classic.gimp.orgUmriß Farbe_Rand abschrägen...Rand _hinzufügen...Hintergrund hinzufügenSchlagschatten hinzufügenGlühen hinzufügenSchatten hinzufügenZusätzliche InformationenNach dem GlühenSprühpistoleAlien Glo_w...Alien _Neon...Größenänderung zulassenAmplitudeWinkelAntialiasErstellte Ebenenmaske anwendenErstellte Ebenenmaske anwenden (oder verwerfen)Autor:Automatisch ZuschneidenAzimuthHG DeckkraftE_infach II..._Einbrennen..._Schaltfläche...HintergrundfarbeHintergrund BildHintergrundfarbeHintergrund BildLinienhöheLinienlängeGrundfarbeVerhaltenHöhe der Schräge (Schärfe)Höhe der Schräge (Schärfe)Breite der SchrägeSchwarzSchwarz auf Weiß_Farbverlauf...Farbverlauf (Text)Farbverlauf (Umriß)Farbverlauf (Text)Art des FarbverlaufsBlockgrößeWeichzeichnen XWeichzeichnen YStärke des WeichzeichnersRand weichzeichnenHorizontal weichzeichnenRadius des WeichzeichnersArt des WeichzeichnersVertikal weichzeichnenKu_hflecken...Randgröße XRandgröße YRandfarbeRandgröße (Pixel)Zellengröße (Pixel)PinselPinselnameBumpmap (Alpha-Ebene) Weichzeichner-Radius»Einbrennen« benötigt mindestens zwei Ebenen!Explosionsfarbe_Schnitzen..._Chrom..._Chrom...Text herausarbeitenWeiße Flächen herausarbeiten_Geschnitzt...Zellengröße (Pixel)Farbe der Kreide_Zerfressen...Stärke des ZerfressensChrom FarbeChrom FaktorChrom HelligkeitChrom SättigungWeiße Flächen verchromenKreisCircuit Init-ZahlNicht ausgewählten Maskenbereich löschenFarbeFarbe 1Farbe 2Farbe 3FärbungSpaltenComic-_Heft...Konkav_Kaltes Metall...Copyright:Korona BreiteNeues Bild erzeugenSchatten erzeugenErzeugt vier Hilfslinien um das einschließende Rechteck der aktuellen Auswahl.Krista_ll...KubischAktueller BefehlEigener Farbverlauf_Farbverlauf Vorschau...Dunkle Farbenur Abdunkeln (Besser, aber nur für Bilder mit hohem Weißanteil)Datum:Standard Bumpmap EinstellungenUnscharf stellenFarbänderungDichte (%)TiefeDetails in der MitteDetailreichtumDurchmesserRichtungRunter_HSV Analyse-Grafik...Zeichnet Spirografen, Epitrochoide und Lissajous Kurven.Weitere Informationen unter http://netword.com/*spyrogimpSchlagschattenSchatten X VersatzSchatten Y VersatzSchatten weichzeichnen (Radius)Schatten FarbeSchatten DeckkraftEinfluß der KantenVerhalten am RandNur KantenEckenradiusEckenbreiteEffektgröße (Pixel * 3)Effektgröße (Pixel * 3)Effektgröße (Pixel * 4)Effektgröße (Pixel * 5)Effektgröße (Pixel)ErhöhungRund, _weich...Ende XEnde YEnde FarbübergangEnde FarbübergangEnvironment MapEpitrochoidLöschenLöschen/FüllenSkript-Fu Fehler beim Ausführen von %s -%sGeradeGerade/UngeradeVG-HG-HSVVG-HG-RGBFG-TransparentAusblendenÜberblenden von %Überblenden nach %AusblendenAusblenden BreiteAusblendenDateinameDateinameHG mit Muster füllenFüllwinkelMit HG-Farbe füllenBild zusammenfügenSchrift_Schriftgröße (Pixel)SchriftfarbeSchriftgröße (Pixel)VordergrundfarbeRahmenRahmenfarbeRahmengrößeFramesVon Links-Oben nach Rechts-UntenGIMP ErweiterungGIMP PluginG_latt...Gl_ühend Heiß...LeuchtfarbeLeuchtradiusLeuchtgröße (Pixel * 4)Farbverlauf_Schräge...FarbverlaufGradient: Wiederholung durch SägezahnwelleGradient: Wiederholung durch DreieckswelleKörnigkeitKörnigkeit (1 ist wenig)Körnigkeit (1 ist wenig)Graphenskalierung_Überschrift...HöheHexagonHexagoneGlanzlicht X-VersatzGlanzlicht Y-VersatzGlanzlicht BalanceGlanzlicht FarbeGlanzlicht DeckkraftTreffer-RateErhöhungHorizontalIIRBildtypen:BildhöheBildgrößeZu schnitzendes BildBildbreite_Imigre-26...Bild indizierenAuf n Farben indizieren (0 = RGB belassen)Innerer ZahnEbenennamen einfügenZwischenbilderInterne GIMP ProzedurInterpolationInvertierenRichtung umkehrenHintergrund erhaltenBump-Ebene erhaltenAuswahl erhaltenLand HöheLinksBeleuchtung (Grad)Linien_explosion...LinearLissajousGelooptFarbe untenFarbe unten (aktiv)Farbe rechts-untenNeuen Hintergrund erzeugenRand (Pixel)Masken DeckkraftMasken GrößeMax. Weichzeichner-RadiusArt der MosaiksteineMarmorieren_Neon...NameNeue Hilfslinie (in _Prozent)...Neue Hilfslinien aus _AuswahlNeue _Hilfslinie..._Zeitungsdruck...Kein Hintergrund (nur für separate Ebene)Keine TrefferKeineNicht gedrücktNicht gedrückt (aktiv)NummerAnzahl der Kacheln in X-RichtungAnzahl der Kacheln in Y-RichtungAnzahl der StreifenAnzahl der FarbenAnzahl der FramesAnzahl der LinienUmdrehungenOctagoneUngeradeVersatz (Pixel)Versatz XVersatz YVersatz RadiusVersatz (Pixel * 2)Ölgemälde Masken-GrößeDeckkraftOrientierungÄußerer RandÄußerer RandUmriß weichzeichnen (Radius)Umriß FarbeUmriß weichzeichnen (Radius)Umriß GrößeAuffüll-FarbeDeckkraft FüllungFüllungAbstand XAbstand YAbstand um TextFüllung für transparente RegionenParameterMusterMuster (Umriß)Muster (Überlagerung)Muster (Text)MusternameStiftPentagonStärke des PixeleffektsPixeln_Plugin RegistrierungPolygon: 10 SeitenPolygon: 7 SeitenPolygon: 8 SeitenPolygon: 9 SeitenPosition (in %)Für GIF vorbereitenGedrücktProzeduren-BrowserViertelgrößeRLERadiusRadius (%)Radius (Pixel)Init-Zahl für ZufallsgeneratorZufälligkeitRechtecki_g, weich...Relativer Abstand zum HorizontRelative Länge des SchattensHintergrund entfernenL_andkarte...RückgabewerteAbstand der BänderBreite der BänderRechtsFlatter-IntensitätGrobheitRundungs-RateA_bgerundetes Rechteck...ZeilenZeilen/SpaltenSIOD AusgabeS_OTA Chrom...Skalierung XSkalierung YSkript-ArgumenteSkript-FortschrittSkript-Fu PinselauswahlSkript-Fu FarbauswahlSkript-Fu KonsoleSkript-Fu DateiauswahlSkript-Fu VerzeichnisauswahlSkript-Fu SchriftartauswahlSkript-Fu FarbverlaufsauswahlSkript-Fu PalettenauswahlSkript-Fu Server-EinstellungenSkript-Fu _KonsoleScript-Fu kann nicht zwei Skripte gleichzeitig abarbeiten.Der Skript-Fu Konsolenmodus kann nur interaktiv gestartet werdenDer Skript-Fu Auswerte-Modus ermöglicht nur nicht-interaktive AufrufeSkript-Fu: %sSkript-Fu MusterauswahlWassertiefeNach _Beschreibung suchenNach _Name suchenSuche läuft - bitte wartenSuche nach Beschreibung läuft - bitte wartenSuche nach Name läuft - bitte wartenInit-Zahl»Nach Farbe auswählen«-SchwellenwertAuf eigener EbeneSepiaServer Logdatei:Server Port:SchattenSchatten Versatz XSchatten Versatz YSchatten weichzeichnen (Radius)SchattenfarbeSchatten DunkelheitSchatten TiefeSchatten Breite (%)FormSchärfe (Grad)Scherlänge_Bildaufbau darstellen..._Einfach, abgeschrägt...GrößeVerschmierenGlättenHorizontal glättenVertikal glättenFarbeAbstand zwischen EbenenAbstandGeschwindigkeit (Pixel/Frame)_Schneller Text...KugelfarbeFleckendichte XFleckendichte YVerteilenSpyrographQuadratQuadrateStarscap_e...FleckenSterne_xplosion...Start XStart YStartwinkelStart FarbübergangStart FarbübergangHochrechnungStrudel-_Kachel...T_ruchet...Tube _Sub-Button Beschriftung...Temporäre ProzedurTextText i_m Kreis...TextfarbeTextfarbe (aktiv)FarbverlaufTextmusterDickeFadendichteFadenintensitätFadenlängeSchwellwert (Größer 1<-->255 Kleiner)KachelnZu _Pinsel..._Zu BildZu _Muster...WerkzeugTransparenter HintergrundDreieckTube Sub-Sub-_Button Beschriftung...Von links nach rechts drehenSorteRaufFarbe obenFarbe oben (aktiv)Farbe oben linksAktuellen Farbverlauf benutzenSchriftname als Text _benutzenAuswahl vergrößernMuster anstatt Farbverlauf für Umriß verwendenMuster anstatt Farbverlauf für Text verwendenMuster überlagernAuswahl anstatt dem unten Angegebenen verwendenVertikalWellenlängeWeb-Seiten Ü_berschrift...Stärke des VerdrehensDrehwinkelBreiteBreite der StreifenBreite der ZwischenräumeMit Kopie arbeitenUmfaltenX TeilerY TeilerSie haben das Skript »%s« bereits gestartet._ASCII zu Bild..._ASCII zu Bildebene..._Pfeil..._Einfach I..._Große Überschrift..._Überblenden..._Zellengröße (Pixel)_Durchsuchen..._Kugel..._Tarnung...K_reide..._Platine..._Stoffmalerei..._Kaffeeflecken..._Farbe 3_EntwicklungU_nruhige Auswahl..._Schlagschatten..._Rund..._Jede zweite Zeile löschen..._Umriß ausblenden..._Filter (regexp)_Flaches Land..._Schriften-Liste...Frosti_g...Ra_nd ausblenden..._Allgemeine Tube Beschriftung..._Gitter..._Horiz. Linie..._Schriftnamen anzeigen_Land..._Lava..._GIMP_Altes Foto..._Partikelspur..._Perspektivisch..._Predator...R_echteckig..._AuffrischenAlle Hilfslinien _entfernen_Flattern..._Rund...Runde _Ecken..._Suche:_Dia..._Kleine Überschrift..._Kugel..._Drehender Globus..._Spyrogimp..._Server starten..._Strudel-Kachel..._TextText_uriert..._Kachelbarer Weichzeichner..._Tube Button Beschriftung..._Unscharf maskieren..._Wellen..._Weben..._Xach-Effekt... \ No newline at end of file +%sGeradeGerade/UngeradeVG-HG-HSVVG-HG-RGBFG-TransparentAusblendenÜberblenden von %Überblenden nach %AusblendenAusblenden BreiteAusblendenDateinameDateinameHG mit Muster füllenFüllwinkelMit HG-Farbe füllenBild zusammenfügenSchrift_Schriftgröße (Pixel)SchriftfarbeSchriftgröße (Pixel)VordergrundfarbeRahmenRahmenfarbeRahmengrößeFramesVon Links-Oben nach Rechts-UntenGIMP ErweiterungGIMP PluginG_latt...Gl_ühend Heiß...LeuchtfarbeLeuchtradiusLeuchtgröße (Pixel * 4)Farbverlauf_Schräge...FarbverlaufGradient: Wiederholung durch SägezahnwelleGradient: Wiederholung durch DreieckswelleKörnigkeitKörnigkeit (1 ist wenig)Körnigkeit (1 ist wenig)Graphenskalierung_Überschrift...HöheHexagonHexagoneGlanzlicht X-VersatzGlanzlicht Y-VersatzGlanzlicht BalanceGlanzlicht FarbeGlanzlicht DeckkraftTreffer-RateErhöhungHorizontalIIRBildtypen:BildhöheBildgrößeZu schnitzendes BildBildbreite_Imigre-26...Bild indizierenAuf n Farben indizieren (0 = RGB belassen)Innerer ZahnEbenennamen einfügenZwischenbilderInterne GIMP ProzedurInterpolationInvertierenRichtung umkehrenHintergrund erhaltenBump-Ebene erhaltenAuswahl erhaltenLand HöheLinksBeleuchtung (Grad)Linien_explosion...LinearLissajousGelooptFarbe untenFarbe unten (aktiv)Farbe rechts-untenNeuen Hintergrund erzeugenRand (Pixel)Masken DeckkraftMasken GrößeMax. Weichzeichner-RadiusArt der MosaiksteineMarmorieren_Neon...NameNeue Hilfslinie (in _Prozent)...Neue Hilfslinien aus _AuswahlNeue _Hilfslinie..._Zeitungsdruck...Kein Hintergrund (nur für separate Ebene)Keine TrefferKeineNicht gedrücktNicht gedrückt (aktiv)NummerAnzahl der Kacheln in X-RichtungAnzahl der Kacheln in Y-RichtungAnzahl der StreifenAnzahl der FarbenAnzahl der FramesAnzahl der LinienUmdrehungenOctagoneUngeradeVersatz (Pixel)Versatz XVersatz YVersatz RadiusVersatz (Pixel * 2)Ölgemälde Masken-GrößeDeckkraftOrientierungÄußerer RandÄußerer RandUmriß weichzeichnen (Radius)Umriß FarbeUmriß weichzeichnen (Radius)Umriß GrößeAuffüll-FarbeDeckkraft FüllungFüllungAbstand XAbstand YAbstand um TextFüllung für transparente RegionenParameterMusterMuster (Umriß)Muster (Überlagerung)Muster (Text)MusternameStiftPentagonStärke des PixeleffektsPixeln_Plugin RegistrierungPolygon: 10 SeitenPolygon: 7 SeitenPolygon: 8 SeitenPolygon: 9 SeitenPosition (in %)Für GIF vorbereitenGedrücktProzeduren-BrowserViertelgrößeRLERadiusRadius (%)Radius (Pixel)Init-Zahl für ZufallsgeneratorZufälligkeitRechtecki_g, weich...Relativer Abstand zum HorizontRelative Länge des SchattensHintergrund entfernenL_andkarte...RückgabewerteAbstand der BänderBreite der BänderRechtsFlatter-IntensitätGrobheitRundungs-RateA_bgerundetes Rechteck...ZeilenZeilen/SpaltenSIOD AusgabeS_OTA Chrom...Skalierung XSkalierung YSkript-ArgumenteSkript-FortschrittSkript-Fu PinselauswahlSkript-Fu FarbauswahlSkript-Fu KonsoleSkript-Fu DateiauswahlSkript-Fu VerzeichnisauswahlSkript-Fu SchriftartauswahlSkript-Fu FarbverlaufsauswahlSkript-Fu PalettenauswahlSkript-Fu Server-EinstellungenSkript-Fu _KonsoleScript-Fu kann nicht zwei Skripte gleichzeitig abarbeiten.Der Skript-Fu Konsolenmodus kann nur interaktiv gestartet werdenDer Skript-Fu Auswerte-Modus ermöglicht nur nicht-interaktive AufrufeSkript-Fu: %sSkript-Fu MusterauswahlWassertiefeNach _Beschreibung suchenNach _Name suchenSuche läuft - bitte wartenSuche nach Beschreibung läuft - bitte wartenSuche nach Name läuft - bitte wartenInit-Zahl»Nach Farbe auswählen«-SchwellenwertAuf eigener EbeneSepiaServer Logdatei:Server Port:SchattenSchatten Versatz XSchatten Versatz YSchatten weichzeichnen (Radius)SchattenfarbeSchatten DunkelheitSchatten TiefeSchatten Breite (%)FormSchärfe (Grad)Scherlänge_Bildaufbau darstellen..._Einfach, abgeschrägt...GrößeVerschmierenGlättenHorizontal glättenVertikal glättenFarbeAbstand zwischen EbenenAbstandGeschwindigkeit (Pixel/Frame)_Schneller Text...KugelfarbeFleckendichte XFleckendichte YVerteilenSpyrographQuadratQuadrateStarscap_e...FleckenSterne_xplosion...Start XStart YStartwinkelStart FarbübergangStart FarbübergangHochrechnungStrudel-_Kachel...T_ruchet...Tube _Sub-Button Beschriftung...Temporäre ProzedurTextText i_m Kreis...TextfarbeTextfarbe (aktiv)FarbverlaufTextmusterDickeFadendichteFadenintensitätFadenlängeSchwellwert (Größer 1<-->255 Kleiner)KachelnZu _Pinsel..._Zu BildZu _Muster...WerkzeugTransparenter HintergrundDreieckTube Sub-Sub-_Button Beschriftung...Von links nach rechts drehenSorteRaufFarbe obenFarbe oben (aktiv)Farbe oben linksAktuellen Farbverlauf benutzenSchriftname als Text _benutzenAuswahl vergrößernMuster anstatt Farbverlauf für Umriß verwendenMuster anstatt Farbverlauf für Text verwendenMuster überlagernAuswahl anstatt dem unten Angegebenen verwendenVertikalWellenlängeWeb-Seiten Ü_berschrift...Stärke des VerdrehensDrehwinkelBreiteBreite der StreifenBreite der ZwischenräumeMit Kopie arbeitenUmfaltenX TeilerY TeilerSie haben das Skript »%s« bereits gestartet._Pfeil..._Einfach I..._Große Überschrift..._Überblenden..._Zellengröße (Pixel)_Durchsuchen..._Kugel..._Tarnung...K_reide..._Platine..._Stoffmalerei..._Kaffeeflecken..._Farbe 3_EntwicklungU_nruhige Auswahl..._Schlagschatten..._Rund..._Jede zweite Zeile löschen..._Umriß ausblenden..._Filter (regexp)_Flaches Land..._Schriften-Liste...Frosti_g...Ra_nd ausblenden..._Allgemeine Tube Beschriftung..._Gitter..._Horiz. Linie..._Schriftnamen anzeigen_Land..._Lava..._GIMP_Altes Foto..._Partikelspur..._Perspektivisch..._Predator...R_echteckig..._AuffrischenAlle Hilfslinien _entfernen_Flattern..._Rund...Runde _Ecken..._Suche:_Dia..._Kleine Überschrift..._Kugel..._Drehender Globus..._Spyrogimp..._Server starten..._Strudel-Kachel..._TextText_uriert..._Kachelbarer Weichzeichner..._Tube Button Beschriftung..._Unscharf maskieren..._Wellen..._Weben..._Xach-Effekt... \ No newline at end of file diff -uraN gimp-2.2.0/po-script-fu/de.po gimp-2.2.1/po-script-fu/de.po --- gimp-2.2.0/po-script-fu/de.po 2004-12-19 03:34:26.000000000 +0100 +++ gimp-2.2.1/po-script-fu/de.po 2004-12-28 16:59:10.000000000 +0100 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: GIMP 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:48+0100\n" +"POT-Creation-Date: 2004-12-28 15:42+0100\n" "PO-Revision-Date: 2004-11-18 02:31+0100\n" "Last-Translator: Hendrik Brandt \n" "Language-Team: German \n" @@ -321,7 +321,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:5 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:4 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:6 -#: plug-ins/script-fu/scripts/asc2img.scm.h:8 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:4 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:5 #: plug-ins/script-fu/scripts/beveled-button.scm.h:3 @@ -362,7 +361,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:6 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:5 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:7 -#: plug-ins/script-fu/scripts/asc2img.scm.h:9 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:5 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:6 #: plug-ins/script-fu/scripts/beveled-button.scm.h:4 @@ -490,7 +488,6 @@ #: plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:2 #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:3 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:4 -#: plug-ins/script-fu/scripts/asc2img.scm.h:3 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:3 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:4 #: plug-ins/script-fu/scripts/blended-logo.scm.h:3 @@ -703,7 +700,6 @@ msgstr "Füllung" #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:11 -#: plug-ins/script-fu/scripts/asc2img.scm.h:10 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:7 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:8 #: plug-ins/script-fu/scripts/beveled-button.scm.h:10 @@ -746,48 +742,6 @@ msgid "Width of gaps" msgstr "Breite der Zwischenräume" -#: plug-ins/script-fu/scripts/asc2img.scm.h:1 -#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 -#: plug-ins/script-fu/scripts/image-structure.scm.h:1 -msgid "/Script-Fu/Utils" -msgstr "/Skript-Fu/Hilfsmittel" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:2 -#: plug-ins/script-fu/scripts/font-map.scm.h:1 -#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 -msgid "/Xtns/Script-Fu/Utils" -msgstr "/Xtns/Skript-Fu/Hilfsmittel" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:5 -#, no-c-format -msgid "Buffer amount (% height of text)" -msgstr "Puffer-Grösse (in % der Höhe d. Textes)" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:6 -#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 -msgid "File name" -msgstr "Dateiname" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:7 -#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 -msgid "Filename" -msgstr "Dateiname" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:11 -#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 -#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 -#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 -msgid "Transparent background" -msgstr "Transparenter Hintergrund" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:12 -msgid "_ASCII to Image..." -msgstr "_ASCII zu Bild..." - -#: plug-ins/script-fu/scripts/asc2img.scm.h:13 -msgid "_ASCII to Layer..." -msgstr "_ASCII zu Bildebene..." - #: plug-ins/script-fu/scripts/basic1-logo.scm.h:8 msgid "_Basic I..." msgstr "_Einfach I..." @@ -837,6 +791,12 @@ msgid "Diameter" msgstr "Durchmesser" +#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 +#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 +#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 +msgid "Transparent background" +msgstr "Transparenter Hintergrund" + #: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:4 msgid "H_eading..." msgstr "_Überschrift..." @@ -1429,6 +1389,11 @@ msgid "_Flatland..." msgstr "_Flaches Land..." +#: plug-ins/script-fu/scripts/font-map.scm.h:1 +#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 +msgid "/Xtns/Script-Fu/Utils" +msgstr "/Xtns/Skript-Fu/Hilfsmittel" + #: plug-ins/script-fu/scripts/font-map.scm.h:2 msgid "Active colors" msgstr "Umriß Farbe" @@ -1698,6 +1663,11 @@ msgid "_Remove all Guides" msgstr "Alle Hilfslinien _entfernen" +#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 +#: plug-ins/script-fu/scripts/image-structure.scm.h:1 +msgid "/Script-Fu/Utils" +msgstr "/Skript-Fu/Hilfsmittel" + #: plug-ins/script-fu/scripts/hsv-graph.scm.h:2 msgid "BG opacity" msgstr "HG Deckkraft" @@ -2072,6 +2042,10 @@ msgid "Brush name" msgstr "Pinselname" +#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 +msgid "File name" +msgstr "Dateiname" + #: plug-ins/script-fu/scripts/select-to-brush.scm.h:5 msgid "To _Brush..." msgstr "Zu _Pinsel..." @@ -2080,6 +2054,10 @@ msgid "To _Image" msgstr "_Zu Bild" +#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 +msgid "Filename" +msgstr "Dateiname" + #: plug-ins/script-fu/scripts/select-to-pattern.scm.h:3 msgid "Pattern name" msgstr "Mustername" @@ -2537,6 +2515,3 @@ #: plug-ins/script-fu/scripts/xach-effect.scm.h:12 msgid "_Xach-Effect..." msgstr "_Xach-Effekt..." - -#~ msgid "Copy _Visible" -#~ msgstr "_Kopiere Sichtbares" diff -uraN gimp-2.2.0/po-script-fu/el.gmo gimp-2.2.1/po-script-fu/el.gmo --- gimp-2.2.0/po-script-fu/el.gmo 2004-12-19 03:34:32.000000000 +0100 +++ gimp-2.2.1/po-script-fu/el.gmo 2004-12-28 16:59:16.000000000 +0100 @@ -6,7 +6,7 @@ { # !   " %s:AntialiasAuthor:Background ColorBackground ImageBehaviourColorColor 1Color 2ColumnsDate:DownEraseFilenameFontFramesGradientHeightInvertLeftNumberOrientationPatternRightRowsScript-Fu ConsoleSeedSizeSmoothSpacingTextTileUpWidthProject-Id-Version: gimp-script-fu 1.0 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:48+0100 +POT-Creation-Date: 2004-12-28 15:42+0100 PO-Revision-Date: 2001-12-27 17:09+0000 Last-Translator: Simos Xenitellis Language-Team: Greek diff -uraN gimp-2.2.0/po-script-fu/el.po gimp-2.2.1/po-script-fu/el.po --- gimp-2.2.0/po-script-fu/el.po 2004-12-19 03:34:26.000000000 +0100 +++ gimp-2.2.1/po-script-fu/el.po 2004-12-28 16:59:10.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: gimp-script-fu 1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:48+0100\n" +"POT-Creation-Date: 2004-12-28 15:42+0100\n" "PO-Revision-Date: 2001-12-27 17:09+0000\n" "Last-Translator: Simos Xenitellis \n" "Language-Team: Greek \n" @@ -352,7 +352,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:5 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:4 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:6 -#: plug-ins/script-fu/scripts/asc2img.scm.h:8 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:4 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:5 #: plug-ins/script-fu/scripts/beveled-button.scm.h:3 @@ -393,7 +392,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:6 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:5 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:7 -#: plug-ins/script-fu/scripts/asc2img.scm.h:9 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:5 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:6 #: plug-ins/script-fu/scripts/beveled-button.scm.h:4 @@ -529,7 +527,6 @@ #: plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:2 #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:3 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:4 -#: plug-ins/script-fu/scripts/asc2img.scm.h:3 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:3 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:4 #: plug-ins/script-fu/scripts/blended-logo.scm.h:3 @@ -777,7 +774,6 @@ msgstr "Σκίαση" #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:11 -#: plug-ins/script-fu/scripts/asc2img.scm.h:10 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:7 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:8 #: plug-ins/script-fu/scripts/beveled-button.scm.h:10 @@ -826,57 +822,6 @@ msgid "Width of gaps" msgstr "Πλάτος ναρκοπεδίου" -# -#: plug-ins/script-fu/scripts/asc2img.scm.h:1 -#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 -#: plug-ins/script-fu/scripts/image-structure.scm.h:1 -#, fuzzy -msgid "/Script-Fu/Utils" -msgstr "Επιλογή Γραμματοσειράς" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:2 -#: plug-ins/script-fu/scripts/font-map.scm.h:1 -#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 -#, fuzzy -msgid "/Xtns/Script-Fu/Utils" -msgstr "Κονσόλα Script-Fu" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:5 -#, no-c-format -msgid "Buffer amount (% height of text)" -msgstr "" - -# -#: plug-ins/script-fu/scripts/asc2img.scm.h:6 -#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 -#, fuzzy -msgid "File name" -msgstr "Όνομα αρχείου" - -# -#: plug-ins/script-fu/scripts/asc2img.scm.h:7 -#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 -msgid "Filename" -msgstr "Όνομα αρχείου" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:11 -#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 -#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 -#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 -#, fuzzy -msgid "Transparent background" -msgstr "Διαφανές Παρασκήνιο" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:12 -msgid "_ASCII to Image..." -msgstr "" - -# -#: plug-ins/script-fu/scripts/asc2img.scm.h:13 -#, fuzzy -msgid "_ASCII to Layer..." -msgstr "Επιλογή Γραμματοσειράς" - #: plug-ins/script-fu/scripts/basic1-logo.scm.h:8 msgid "_Basic I..." msgstr "" @@ -934,6 +879,13 @@ msgid "Diameter" msgstr "Ελάττωση Χρωμάτων" +#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 +#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 +#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 +#, fuzzy +msgid "Transparent background" +msgstr "Διαφανές Παρασκήνιο" + #: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:4 msgid "H_eading..." msgstr "" @@ -1627,6 +1579,12 @@ msgid "_Flatland..." msgstr "" +#: plug-ins/script-fu/scripts/font-map.scm.h:1 +#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 +#, fuzzy +msgid "/Xtns/Script-Fu/Utils" +msgstr "Κονσόλα Script-Fu" + #: plug-ins/script-fu/scripts/font-map.scm.h:2 #, fuzzy msgid "Active colors" @@ -1938,6 +1896,13 @@ msgstr "" # +#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 +#: plug-ins/script-fu/scripts/image-structure.scm.h:1 +#, fuzzy +msgid "/Script-Fu/Utils" +msgstr "Επιλογή Γραμματοσειράς" + +# #: plug-ins/script-fu/scripts/hsv-graph.scm.h:2 #, fuzzy msgid "BG opacity" @@ -2379,6 +2344,12 @@ msgstr "Χρήστες" # +#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 +#, fuzzy +msgid "File name" +msgstr "Όνομα αρχείου" + +# #: plug-ins/script-fu/scripts/select-to-brush.scm.h:5 #, fuzzy msgid "To _Brush..." @@ -2388,6 +2359,11 @@ msgid "To _Image" msgstr "" +# +#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 +msgid "Filename" +msgstr "Όνομα αρχείου" + #: plug-ins/script-fu/scripts/select-to-pattern.scm.h:3 #, fuzzy msgid "Pattern name" @@ -2926,6 +2902,11 @@ msgid "_Xach-Effect..." msgstr "" +# +#, fuzzy +#~ msgid "_ASCII to Layer..." +#~ msgstr "Επιλογή Γραμματοσειράς" + #, fuzzy #~ msgid "/Xtns/Script-Fu/_Refresh Scripts" #~ msgstr "Κονσόλα Script-Fu" diff -uraN gimp-2.2.0/po-script-fu/en_CA.gmo gimp-2.2.1/po-script-fu/en_CA.gmo --- gimp-2.2.0/po-script-fu/en_CA.gmo 2004-12-19 03:34:32.000000000 +0100 +++ gimp-2.2.1/po-script-fu/en_CA.gmo 2004-12-28 16:59:16.000000000 +0100 @@ -1,97 +1,91 @@ -  + +++ + ,,!,0,J,j,,,,,, --"-A- Z-{-#--!--3.8Q.9. . .... / -/%/ ->$>5> => I> V>b> v>> > > >> > >>> -??#?5?G? V?c?j? s?????????@@ @'@+@ -2@=@ M@ -Y@d@@@@@ @@ @AA A #A/AEA JA TA`AoAwAAAAAAAAB3BPBlBB6B9B= C GCUC qC{CCC CCCCD#D)D 9DFDMD]DmD DD DDDD DDDEE!E(En" bf2,.(B-^y *gh /3P$izA` 0gx Mqb`kv81=7-? [@u'|zLkH@D: JBS*Nf5GcKZ. 8 - -LG)<A:CoT3m5&4]$Rw="xY~!+&VT1i uj9S}N^ePr  #|RvwUIJ{Q!F762 aopqrsDY~[I+dOMnElZtOmKE/\{>j%<eX%(Q# -,;X)}lWtFap'9_;0C]_y\V U%d Procedures%s:(none)/Script-Fu/1 Procedure3D _Outline...3_D Truchet.../Script-Fu/Alchemy/Script-Fu/Alpha to Logo/Script-Fu/Animators/Script-Fu/Decor/Script-Fu/Render/Script-Fu/Selection/Script-Fu/Shadow/Script-Fu/Stencil Ops/Script-Fu/Utils/Help/The GIMP Online/Xtns/Script-Fu/Xtns/Script-Fu/Buttons/Xtns/Script-Fu/Logos/Xtns/Script-Fu/Make Brush/Xtns/Script-Fu/Misc/Xtns/Script-Fu/Patterns/Xtns/Script-Fu/Utils/Xtns/Script-Fu/Web Page Themes/Alien Glow/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/Xtns/Script-Fu/Web Page Themes/Classic.Gimp.OrgActive colorsAdd B_evel...Add _Border...Add backgroundAdd drop-shadowAdd glowingAdd shadowAdditional InformationAfter glowAirbrushAlien _Glow...Alien _Neon...Allow resizingAmplitudeAngleAntialiasApply generated layermaskApply layer mask (or discard)Author:AutocropAzimuthBG opacityB_asic II...B_urn-In...B_utton...Background ColorBackground ImageBackground colorBackground imageBar heightBar lengthBase colorBehaviourBevel height (Sharpness)Bevel height (sharpness)Bevel widthBlackBlack on whiteBlen_ded...Blend gradient (Text)Blend gradient (outline)Blend gradient (text)Blend modeBlock sizeBlur XBlur YBlur amountBlur borderBlur horizontallyBlur radiusBlur typeBlur verticallyBo_vination...Border X sizeBorder Y sizeBorder colorBorder sizeBorder size (pixels)BrushBrush nameBuffer amount (% height of text)Bumpmap (alpha layer) blur radiusBurn-In: Need two layers in total!Burst colorC_arve-It...C_hrome-It...C_hrome...Carve raised textCarve white areasCarved...Cell size (pixels)Chalk colorChip Awa_y...Chip amountChrome balanceChrome factorChrome lightnessChrome saturationChrome white areasCircleCircuit seedClear unselected maskareaColorColor 1Color 2Color 3Color methodColumnsComic Boo_k...ConcaveCool _Metal...Copyright:Corona widthCreate new imageCreate shadowCreates four Guides around the bounding box of the current selection.Crystal...CubicCurrent CommandCustom GradientCustom _Gradient...Dark colorDarken only + +l + +++ + +++,,:,V,n,,,,,,- *-K-#j--!--3-8!.9Z. . .... . +.. + // ///>/ M/W/ ]/g///// +/ / / +/// 00 ++0 +60 +A0 L0V0o0 000 0000 +0 +111 1 *161 H1 T1^1n1 }1 1 1 111 +1!1"1 2 )2 62 +D2O2a2 s2}2 2 2 22 2222 3 3373=3E3M3 U3b3j3y33 +3 33 3E3 + 444.4>4 +R4<]44444 444 45 555`15 555555 66 !6 +6 +76B6[6u666 6666 6 67 77 +%707L7Q7 Z7 d7n7 }7 7 77 7 +7 777 +7 7 888 +'828E8V8 \8 +h8s8z88 8 +88 +8 88899*9B9 Z9f9}9 9 99999999 :: +': +2:=: A: N: +[:f: u: : :": :::: ;;;.;>;N; ];i;n; ;; ;; ;;;;; ; <<&<7<><G<L<g< <<'< +<< <<<==&=6=G=X=h====== ==== = = >> %>3> L> Y> c>o> w> >>> +>>>>> ??? "?/?8?J?\?m?~????? ??? +?? ? +@@.@K@e@w@ @@ @@@ @ @@@ @ AAA&A.A?AOAiAAAAAAAB4B6GB9~B=B BC C*C;CKC cCCCCCCC CCC DD /DW`QW WWWWXX 'X3X BX LX +XXcX|XXXX XXYY Y Y$Y 4Y@Y +FYQYmYrY {Y YY Y Y YY Y +Y YYY + Z Z !Z/Z4Z HZTZgZyZ Z +ZZZZ Z +ZZ Z Z ["[+[>[O[g[ [[[ [ [[[[[[\!\2\D\ +M\ +X\c\ g\ t\ +\\ \ \ \#\ \\]] /]=]D]U]e]u] ]]] ]] ]] ]]]^^ (^ 5^?^P^a^h^q^v^^ ^^'^ +^^ __%_,_>_P_`_r________ ___` ` #` 0`<`P`_` x` +` `` ` ``` +```a#a 2a?aFa Oa\aeawaaaaaaaa abb +bb )b +5b@b[bxbbb bb bbb b b c!c &c 0c +Z?t'{yLjG@D9IAS*Me5FbKY. 7 KG(;@:BnS3l4%4\$Rv="w}!*~&VT0h  ti9R|N]dOq #{QuvTIJzP F661`nopqrCX}ZH+cOLmDkYsNlJE/[z>i$<dW%(Q" +,:X)|kWsE`o&8^;/C\^x[UU%d Procedures%s:(none)/Script-Fu/1 Procedure3D _Outline...3_D Truchet.../Script-Fu/Alchemy/Script-Fu/Alpha to Logo/Script-Fu/Animators/Script-Fu/Decor/Script-Fu/Render/Script-Fu/Selection/Script-Fu/Shadow/Script-Fu/Stencil Ops/Script-Fu/Utils/Help/The GIMP Online/Xtns/Script-Fu/Xtns/Script-Fu/Buttons/Xtns/Script-Fu/Logos/Xtns/Script-Fu/Make Brush/Xtns/Script-Fu/Misc/Xtns/Script-Fu/Patterns/Xtns/Script-Fu/Utils/Xtns/Script-Fu/Web Page Themes/Alien Glow/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/Xtns/Script-Fu/Web Page Themes/Classic.Gimp.OrgActive colorsAdd B_evel...Add _Border...Add backgroundAdd drop-shadowAdd glowingAdd shadowAdditional InformationAfter glowAirbrushAlien _Glow...Alien _Neon...Allow resizingAmplitudeAngleAntialiasApply generated layermaskApply layer mask (or discard)Author:AutocropAzimuthBG opacityB_asic II...B_urn-In...B_utton...Background ColorBackground ImageBackground colorBackground imageBar heightBar lengthBase colorBehaviourBevel height (Sharpness)Bevel height (sharpness)Bevel widthBlackBlack on whiteBlen_ded...Blend gradient (Text)Blend gradient (outline)Blend gradient (text)Blend modeBlock sizeBlur XBlur YBlur amountBlur borderBlur horizontallyBlur radiusBlur typeBlur verticallyBo_vination...Border X sizeBorder Y sizeBorder colorBorder sizeBorder size (pixels)BrushBrush nameBumpmap (alpha layer) blur radiusBurn-In: Need two layers in total!Burst colorC_arve-It...C_hrome-It...C_hrome...Carve raised textCarve white areasCarved...Cell size (pixels)Chalk colorChip Awa_y...Chip amountChrome balanceChrome factorChrome lightnessChrome saturationChrome white areasCircleCircuit seedClear unselected maskareaColorColor 1Color 2Color 3Color methodColumnsComic Boo_k...ConcaveCool _Metal...Copyright:Corona widthCreate new imageCreate shadowCreates four Guides around the bounding box of the current selection.Crystal...CubicCurrent CommandCustom GradientCustom _Gradient...Dark colorDarken only (Better, but only for images with alot of white)Date:Default bumpmap settingsDefocusDelta value on colorDensity (%)DepthDetail in MiddleDetail levelDiameterDirectionDownDraw _HSV Graph...Draws Spirographs, Epitrochoids and Lissajous Curves. More info at http://netword.com/*spyrogimpDrop shadowDrop shadow X offsetDrop shadow Y offsetDrop shadow blur radiusDrop shadow colorDrop shadow opacityEdge amountEdge behaviourEdge onlyEdge radiusEdge widthEffect size (pixels * 3)Effect size (pixels * 30)Effect size (pixels * 4)Effect size (pixels * 5)Effect size (pixels)ElevationElli_ptical, Feathered...End XEnd YEnd blendEnding blendEnvironment mapEpitrochoidEraseErase/fillError while executing %s -%sEvenEven/oddFG-BG-HSVFG-BG-RGBFG-TransparentFade awayFade from %Fade to %FadeoutFadeout widthFeatheringFile nameFilenameFill BG with patternFill angleFill with BGFlatten imageFontFont _size (pixels)Font colorFont size (pixels)Foreground colorFrameFrame colorFrame sizeFramesFrom top-left to bottom-rightGIMP ExtensionGIMP Plug-InGlo_ssy...Glo_wing Hot...Glow colorGlow radiusGlow size (pixels * 4)GradientGradient Beve_l...Gradient reverseGradient: Loop SawtoothGradient: Loop TriangleGranularityGranularity (1 is Low)Granularity (1 is low)Graph scaleH_eading...HeightHexagonHexagonsHighlight X offsetHighlight Y offsetHighlight balanceHighlight colorHighlight opacityHit rateHole ratioHorizontalIIRImage Types:Image heightImage sizeImage to carveImage widthImigre-26...Index imageIndex to n colors (0 = remain RGB)Inner teethInsert layer namesIntermediate framesInternal GIMP procedureInterpolationInvertInvert directionKeep backgroundKeep bump layerKeep selectionLand heightLeftLighting (degrees)Line _Nova...LinearLissajousLoopedLower colorLower color (active)Lower-right colorMake new backgroundMargin (pixels)Mask opacityMask sizeMax. blur radiusMosaic tile typeMottleN_eon...NameNew Guide (by _Percent)...New Guides from _SelectionNew _Guide...Newsprint Text...No background (only for separate layer)No matchesNoneNot pressedNot pressed (active)NumberNumber of X tilesNumber of Y tilesNumber of bandsNumber of colorsNumber of framesNumber of linesNumber of times to whirlOctagonsOddOffset (pixels)Offset XOffset YOffset radiusOffsets (pixels * 2)Oilify mask sizeOpacityOrientationOuter borderOuter teethOutline blur radiusOutline colorOutline gradient reverseOutline sizePad colorPad opacityPaddingPadding XPadding YPadding around textPadding for transparent regionsParametersPatternPattern (outline)Pattern (overlay)Pattern (text)Pattern namePencilPentagonPixel amountPixelizePlug-in _RegistryPolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPosition (in %)Prepare for GIFPressedProcedure BrowserQuarter sizeRLERadiusRadius (%)Radius (pixels)Random seedRandomnessRe_ctangular, Feathered...Relative distance of horizonRelative length of shadowRemove backgroundRender _Map...Return ValuesRibbon spacingRibbon widthRightRippling strengthRoughnessRound ratioRounded R_ectangle...RowsRows/colsSIOD OutputSOTA Chrome...Scale XScale YScript ArgumentsScript ProgressScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Palette SelectionScript-Fu Server OptionsScript-Fu _ConsoleScript-Fu cannot process two scripts at the same time.Script-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSea depthSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSelect-by-color thresholdSeparate layerSepiaServer Logfile:Server Port:ShadowShadow X offsetShadow Y offsetShadow blur radiusShadow colorShadow darknessShadow depthShadow weight (%)ShapeSharpness (degrees)Shear lengthShow Image _Structure...Simple _Beveled Button...SizeSmearSmoothSmooth horizontallySmooth verticallySolid ColorSpace between layersSpacingSpeed (pixels/frame)Speed Text...Sphere colorSpots density XSpots density YSpreadSpyrographSquareSquaresSta_rscape...StainsStarb_urst...Start XStart YStart angleStart blendStarting blendSupersampleSwirl-_Tile...T_ruchet...T_ube Sub-Button Label...Temporary ProcedureTextText Circle...Text colorText color (active)Text gradient reverseText patternThicknessThread densityThread intensityThread lengthThreshold (bigger 1<-->255 smaller)TileTo _Brush...To _ImageTo _Pattern...ToolTransparent backgroundTriangleTub_e Sub-Sub-Button Label...Turn from left to rightTypeUpUpper colorUpper color (active)Upper-left colorUse current gradientUse font _name as textUse growing selectionUse pattern for outline instead of gradientUse pattern for text instead of gradientUse pattern overlayUse selection bounds instead of belowsVerticalWavelengthWeb Title Header...Whirl amountWhirl angleWidthWidth of bandsWidth of gapsWork on copyWrapX divisionsY divisionsYou are already running the "%s" script._ASCII to Image..._ASCII to Layer..._Arrow..._Basic I..._Big Header..._Blend..._Border (pixels)_Browse..._Bullet..._Camouflage..._Chalk..._Circuit..._Clothify..._Coffee Stain..._Color scheme_Developer Web Site_Distress Selection..._Drop-Shadow..._Elliptical..._Erase every other Row..._Fade Outline..._Filter (regexp)_Flatland..._Font Map..._Frosty..._Fuzzy Border..._General Tube Labels..._Grid..._Hrule..._Labels_Land..._Lava..._Main Web Site_Old Photo..._Particle Trace..._Perspective..._Predator..._Rectangular..._Refresh Scripts_Remove all Guides_Rippling..._Round Button..._Round Corners..._Search:_Slide..._Small Header..._Sphere..._Spinning Globe..._Spyrogimp..._Start Server..._Swirly..._Text_Textured..._Tileable Blur..._Tube Button Label..._Unsharp Mask..._Waves..._Weave..._Xach-Effect...Project-Id-Version: gimp script-fu +%sEvenEven/oddFG-BG-HSVFG-BG-RGBFG-TransparentFade awayFade from %Fade to %FadeoutFadeout widthFeatheringFile nameFilenameFill BG with patternFill angleFill with BGFlatten imageFontFont _size (pixels)Font colorFont size (pixels)Foreground colorFrameFrame colorFrame sizeFramesFrom top-left to bottom-rightGIMP ExtensionGIMP Plug-InGlo_ssy...Glo_wing Hot...Glow colorGlow radiusGlow size (pixels * 4)GradientGradient Beve_l...Gradient reverseGradient: Loop SawtoothGradient: Loop TriangleGranularityGranularity (1 is Low)Granularity (1 is low)Graph scaleH_eading...HeightHexagonHexagonsHighlight X offsetHighlight Y offsetHighlight balanceHighlight colorHighlight opacityHit rateHole ratioHorizontalIIRImage Types:Image heightImage sizeImage to carveImage widthImigre-26...Index imageIndex to n colors (0 = remain RGB)Inner teethInsert layer namesIntermediate framesInternal GIMP procedureInterpolationInvertInvert directionKeep backgroundKeep bump layerKeep selectionLand heightLeftLighting (degrees)Line _Nova...LinearLissajousLoopedLower colorLower color (active)Lower-right colorMake new backgroundMargin (pixels)Mask opacityMask sizeMax. blur radiusMosaic tile typeMottleN_eon...NameNew Guide (by _Percent)...New Guides from _SelectionNew _Guide...Newsprint Text...No background (only for separate layer)No matchesNoneNot pressedNot pressed (active)NumberNumber of X tilesNumber of Y tilesNumber of bandsNumber of colorsNumber of framesNumber of linesNumber of times to whirlOctagonsOddOffset (pixels)Offset XOffset YOffset radiusOffsets (pixels * 2)Oilify mask sizeOpacityOrientationOuter borderOuter teethOutline blur radiusOutline colorOutline gradient reverseOutline sizePad colorPad opacityPaddingPadding XPadding YPadding around textPadding for transparent regionsParametersPatternPattern (outline)Pattern (overlay)Pattern (text)Pattern namePencilPentagonPixel amountPixelizePlug-in _RegistryPolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPosition (in %)Prepare for GIFPressedProcedure BrowserQuarter sizeRLERadiusRadius (%)Radius (pixels)Random seedRandomnessRe_ctangular, Feathered...Relative distance of horizonRelative length of shadowRemove backgroundRender _Map...Return ValuesRibbon spacingRibbon widthRightRippling strengthRoughnessRound ratioRounded R_ectangle...RowsRows/colsSIOD OutputSOTA Chrome...Scale XScale YScript ArgumentsScript ProgressScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Palette SelectionScript-Fu Server OptionsScript-Fu _ConsoleScript-Fu cannot process two scripts at the same time.Script-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSea depthSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSelect-by-color thresholdSeparate layerSepiaServer Logfile:Server Port:ShadowShadow X offsetShadow Y offsetShadow blur radiusShadow colorShadow darknessShadow depthShadow weight (%)ShapeSharpness (degrees)Shear lengthShow Image _Structure...Simple _Beveled Button...SizeSmearSmoothSmooth horizontallySmooth verticallySolid ColorSpace between layersSpacingSpeed (pixels/frame)Speed Text...Sphere colorSpots density XSpots density YSpreadSpyrographSquareSquaresSta_rscape...StainsStarb_urst...Start XStart YStart angleStart blendStarting blendSupersampleSwirl-_Tile...T_ruchet...T_ube Sub-Button Label...Temporary ProcedureTextText Circle...Text colorText color (active)Text gradient reverseText patternThicknessThread densityThread intensityThread lengthThreshold (bigger 1<-->255 smaller)TileTo _Brush...To _ImageTo _Pattern...ToolTransparent backgroundTriangleTub_e Sub-Sub-Button Label...Turn from left to rightTypeUpUpper colorUpper color (active)Upper-left colorUse current gradientUse font _name as textUse growing selectionUse pattern for outline instead of gradientUse pattern for text instead of gradientUse pattern overlayUse selection bounds instead of belowsVerticalWavelengthWeb Title Header...Whirl amountWhirl angleWidthWidth of bandsWidth of gapsWork on copyWrapX divisionsY divisionsYou are already running the "%s" script._Arrow..._Basic I..._Big Header..._Blend..._Border (pixels)_Browse..._Bullet..._Camouflage..._Chalk..._Circuit..._Clothify..._Coffee Stain..._Color scheme_Developer Web Site_Distress Selection..._Drop-Shadow..._Elliptical..._Erase every other Row..._Fade Outline..._Filter (regexp)_Flatland..._Font Map..._Frosty..._Fuzzy Border..._General Tube Labels..._Grid..._Hrule..._Labels_Land..._Lava..._Main Web Site_Old Photo..._Particle Trace..._Perspective..._Predator..._Rectangular..._Refresh Scripts_Remove all Guides_Rippling..._Round Button..._Round Corners..._Search:_Slide..._Small Header..._Sphere..._Spinning Globe..._Spyrogimp..._Start Server..._Swirly..._Text_Textured..._Tileable Blur..._Tube Button Label..._Unsharp Mask..._Waves..._Weave..._Xach-Effect...Project-Id-Version: gimp script-fu Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:48+0100 +POT-Creation-Date: 2004-12-28 15:42+0100 PO-Revision-Date: 2004-11-18 00:14-0400 Last-Translator: Adam Weinberger Language-Team: English/Canada MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit -%d Procedures%s:(none)/Script-Fu/1 Procedure3D _Outline...3_D Truchet.../Script-Fu/Alchemy/Script-Fu/Alpha to Logo/Script-Fu/Animators/Script-Fu/Decor/Script-Fu/Render/Script-Fu/Selection/Script-Fu/Shadow/Script-Fu/Stencil Ops/Script-Fu/Utils/Help/The GIMP Online/Xtns/Script-Fu/Xtns/Script-Fu/Buttons/Xtns/Script-Fu/Logos/Xtns/Script-Fu/Make Brush/Xtns/Script-Fu/Misc/Xtns/Script-Fu/Patterns/Xtns/Script-Fu/Utils/Xtns/Script-Fu/Web Page Themes/Alien Glow/Xtns/Script-Fu/Web Page Themes/Bevelled Pattern/Xtns/Script-Fu/Web Page Themes/Classic.Gimp.OrgActive coloursAdd B_evel...Add _Border...Add backgroundAdd drop-shadowAdd glowingAdd shadowAdditional InformationAfter glowAirbrushAlien _Glow...Alien _Neon...Allow resizingAmplitudeAngleAntialiasApply generated layermaskApply layer mask (or discard)Author:AutocropAzimuthBG opacityB_asic II...B_urn-In...B_utton...Background ColourBackground ImageBackground colourBackground imageBar heightBar lengthBase colourBehaviourBevel height (Sharpness)Bevel height (sharpness)Bevel widthBlackBlack on whiteBlen_ded...Blend gradient (Text)Blend gradient (outline)Blend gradient (text)Blend modeBlock sizeBlur XBlur YBlur amountBlur borderBlur horizontallyBlur radiusBlur typeBlur verticallyBo_vination...Border X sizeBorder Y sizeBorder colourBorder sizeBorder size (pixels)BrushBrush nameBuffer amount (% height of text)Bumpmap (alpha layer) blur radiusBurn-In: Need two layers in total!Burst colourC_arve-It...C_hrome-It...C_hrome...Carve raised textCarve white areasCarved...Cell size (pixels)Chalk colourChip Awa_y...Chip amountChrome balanceChrome factorChrome lightnessChrome saturationChrome white areasCircleCircuit seedClear unselected maskareaColourColour 1Colour 2Colour 3Colour methodColumnsComic Boo_k...ConcaveCool _Metal...Copyright:Corona widthCreate new imageCreate shadowCreates four guides around the bounding box of the current selection.Crystal...CubicCurrent CommandCustom GradientCustom _Gradient...Dark colourDarken only +%d Procedures%s:(none)/Script-Fu/1 Procedure3D _Outline...3_D Truchet.../Script-Fu/Alchemy/Script-Fu/Alpha to Logo/Script-Fu/Animators/Script-Fu/Decor/Script-Fu/Render/Script-Fu/Selection/Script-Fu/Shadow/Script-Fu/Stencil Ops/Script-Fu/Utils/Help/The GIMP Online/Xtns/Script-Fu/Xtns/Script-Fu/Buttons/Xtns/Script-Fu/Logos/Xtns/Script-Fu/Make Brush/Xtns/Script-Fu/Misc/Xtns/Script-Fu/Patterns/Xtns/Script-Fu/Utils/Xtns/Script-Fu/Web Page Themes/Alien Glow/Xtns/Script-Fu/Web Page Themes/Bevelled Pattern/Xtns/Script-Fu/Web Page Themes/Classic.Gimp.OrgActive coloursAdd B_evel...Add _Border...Add backgroundAdd drop-shadowAdd glowingAdd shadowAdditional InformationAfter glowAirbrushAlien _Glow...Alien _Neon...Allow resizingAmplitudeAngleAntialiasApply generated layermaskApply layer mask (or discard)Author:AutocropAzimuthBG opacityB_asic II...B_urn-In...B_utton...Background ColourBackground ImageBackground colourBackground imageBar heightBar lengthBase colourBehaviourBevel height (Sharpness)Bevel height (sharpness)Bevel widthBlackBlack on whiteBlen_ded...Blend gradient (Text)Blend gradient (outline)Blend gradient (text)Blend modeBlock sizeBlur XBlur YBlur amountBlur borderBlur horizontallyBlur radiusBlur typeBlur verticallyBo_vination...Border X sizeBorder Y sizeBorder colourBorder sizeBorder size (pixels)BrushBrush nameBumpmap (alpha layer) blur radiusBurn-In: Need two layers in total!Burst colourC_arve-It...C_hrome-It...C_hrome...Carve raised textCarve white areasCarved...Cell size (pixels)Chalk colourChip Awa_y...Chip amountChrome balanceChrome factorChrome lightnessChrome saturationChrome white areasCircleCircuit seedClear unselected maskareaColourColour 1Colour 2Colour 3Colour methodColumnsComic Boo_k...ConcaveCool _Metal...Copyright:Corona widthCreate new imageCreate shadowCreates four guides around the bounding box of the current selection.Crystal...CubicCurrent CommandCustom GradientCustom _Gradient...Dark colourDarken only (Better, but only for images with a lot of white)Date:Default bumpmap settingsDefocusDelta value on colourDensity (%)DepthDetail in MiddleDetail levelDiameterDirectionDownDraw _HSV Graph...Draws Spirographs, Epitrochoids and Lissajous Curves. More info at http://netword.com/*spyrogimpDrop shadowDrop shadow X offsetDrop shadow Y offsetDrop shadow blur radiusDrop shadow colourDrop shadow opacityEdge amountEdge behaviourEdge onlyEdge radiusEdge widthEffect size (pixels * 3)Effect size (pixels * 30)Effect size (pixels * 4)Effect size (pixels * 5)Effect size (pixels)ElevationElli_ptical, Feathered...End XEnd YEnd blendEnding blendEnvironment mapEpitrochoidEraseErase/fillError while executing %s -%sEvenEven/oddFG-BG-HSVFG-BG-RGBFG-TransparentFade awayFade from %Fade to %FadeoutFadeout widthFeatheringFile nameFilenameFill BG with patternFill angleFill with BGFlatten imageFontFont _size (pixels)Font colourFont size (pixels)Foreground colourFrameFrame colourFrame sizeFramesFrom top-left to bottom-rightGIMP ExtensionGIMP Plug-InGlo_ssy...Glo_wing Hot...Glow colourGlow radiusGlow size (pixels * 4)GradientGradient Beve_l...Gradient reverseGradient: Loop SawtoothGradient: Loop TriangleGranularityGranularity (1 is Low)Granularity (1 is low)Graph scaleH_eading...HeightHexagonHexagonsHighlight X offsetHighlight Y offsetHighlight balanceHighlight colourHighlight opacityHit rateHole ratioHorizontalIIRImage Types:Image heightImage sizeImage to carveImage widthImigre-26...Index imageIndex to n colours (0 = remain RGB)Inner teethInsert layer namesIntermediate framesInternal GIMP procedureInterpolationInvertInvert directionKeep backgroundKeep bump layerKeep selectionLand heightLeftLighting (degrees)Line _Nova...LinearLissajousLoopedLower colourLower colour (active)Lower-right colourMake new backgroundMargin (pixels)Mask opacityMask sizeMax. blur radiusMosaic tile typeMottleN_eon...NameNew Guide (by _Percent)...New Guides from _SelectionNew _Guide...Newsprint Text...No background (only for separate layer)No matchesNoneNot pressedNot pressed (active)NumberNumber of X tilesNumber of Y tilesNumber of bandsNumber of coloursNumber of framesNumber of linesNumber of times to whirlOctagonsOddOffset (pixels)Offset XOffset YOffset radiusOffsets (pixels * 2)Oilify mask sizeOpacityOrientationOuter borderOuter teethOutline blur radiusOutline colourOutline gradient reverseOutline sizePad colourPad opacityPaddingPadding XPadding YPadding around textPadding for transparent regionsParametersPatternPattern (outline)Pattern (overlay)Pattern (text)Pattern namePencilPentagonPixel amountPixelizePlug-in _RegistryPolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPosition (in %)Prepare for GIFPressedProcedure BrowserQuarter sizeRLERadiusRadius (%)Radius (pixels)Random seedRandomnessRe_ctangular, Feathered...Relative distance of horizonRelative length of shadowRemove backgroundRender _Map...Return ValuesRibbon spacingRibbon widthRightRippling strengthRoughnessRound ratioRounded R_ectangle...RowsRows/colsSIOD OutputSOTA Chrome...Scale XScale YScript ArgumentsScript ProgressScript-Fu Brush SelectionScript-Fu Colour SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Palette SelectionScript-Fu Server OptionsScript-Fu _ConsoleScript-Fu cannot process two scripts at the same time.Script-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSea depthSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSelect-by-colour thresholdSeparate layerSepiaServer Logfile:Server Port:ShadowShadow X offsetShadow Y offsetShadow blur radiusShadow colourShadow darknessShadow depthShadow weight (%)ShapeSharpness (degrees)Shear lengthShow Image _Structure...Simple _Bevelled Button...SizeSmearSmoothSmooth horizontallySmooth verticallySolid ColourSpace between layersSpacingSpeed (pixels/frame)Speed Text...Sphere colourSpots density XSpots density YSpreadSpyrographSquareSquaresSta_rscape...StainsStarb_urst...Start XStart YStart angleStart blendStarting blendSupersampleSwirl-_Tile...T_ruchet...T_ube Sub-Button Label...Temporary ProcedureTextText Circle...Text colourText colour (active)Text gradient reverseText patternThicknessThread densityThread intensityThread lengthThreshold (bigger 1<-->255 smaller)TileTo _Brush...To _ImageTo _Pattern...ToolTransparent backgroundTriangleTub_e Sub-Sub-Button Label...Turn from left to rightTypeUpUpper colourUpper colour (active)Upper-left colourUse current gradientUse font _name as textUse growing selectionUse pattern for outline instead of gradientUse pattern for text instead of gradientUse pattern overlayUse selection bounds instead of belowsVerticalWavelengthWeb Title Header...Whirl amountWhirl angleWidthWidth of bandsWidth of gapsWork on copyWrapX divisionsY divisionsYou are already running the "%s" script._ASCII to Image..._ASCII to Layer..._Arrow..._Basic I..._Big Header..._Blend..._Border (pixels)_Browse..._Bullet..._Camouflage..._Chalk..._Circuit..._Clothify..._Coffee Stain..._Colour scheme_Developer Web Site_Distress Selection..._Drop-Shadow..._Elliptical..._Erase every other Row..._Fade Outline..._Filter (regexp)_Flatland..._Font Map..._Frosty..._Fuzzy Border..._General Tube Labels..._Grid..._Hrule..._Labels_Land..._Lava..._Main Web Site_Old Photo..._Particle Trace..._Perspective..._Predator..._Rectangular..._Refresh Scripts_Remove all Guides_Rippling..._Round Button..._Round Corners..._Search:_Slide..._Small Header..._Sphere..._Spinning Globe..._Spyrogimp..._Start Server..._Swirly..._Text_Textured..._Tileable Blur..._Tube Button Label..._Unsharp Mask..._Waves..._Weave..._Xach-Effect... \ No newline at end of file +%sEvenEven/oddFG-BG-HSVFG-BG-RGBFG-TransparentFade awayFade from %Fade to %FadeoutFadeout widthFeatheringFile nameFilenameFill BG with patternFill angleFill with BGFlatten imageFontFont _size (pixels)Font colourFont size (pixels)Foreground colourFrameFrame colourFrame sizeFramesFrom top-left to bottom-rightGIMP ExtensionGIMP Plug-InGlo_ssy...Glo_wing Hot...Glow colourGlow radiusGlow size (pixels * 4)GradientGradient Beve_l...Gradient reverseGradient: Loop SawtoothGradient: Loop TriangleGranularityGranularity (1 is Low)Granularity (1 is low)Graph scaleH_eading...HeightHexagonHexagonsHighlight X offsetHighlight Y offsetHighlight balanceHighlight colourHighlight opacityHit rateHole ratioHorizontalIIRImage Types:Image heightImage sizeImage to carveImage widthImigre-26...Index imageIndex to n colours (0 = remain RGB)Inner teethInsert layer namesIntermediate framesInternal GIMP procedureInterpolationInvertInvert directionKeep backgroundKeep bump layerKeep selectionLand heightLeftLighting (degrees)Line _Nova...LinearLissajousLoopedLower colourLower colour (active)Lower-right colourMake new backgroundMargin (pixels)Mask opacityMask sizeMax. blur radiusMosaic tile typeMottleN_eon...NameNew Guide (by _Percent)...New Guides from _SelectionNew _Guide...Newsprint Text...No background (only for separate layer)No matchesNoneNot pressedNot pressed (active)NumberNumber of X tilesNumber of Y tilesNumber of bandsNumber of coloursNumber of framesNumber of linesNumber of times to whirlOctagonsOddOffset (pixels)Offset XOffset YOffset radiusOffsets (pixels * 2)Oilify mask sizeOpacityOrientationOuter borderOuter teethOutline blur radiusOutline colourOutline gradient reverseOutline sizePad colourPad opacityPaddingPadding XPadding YPadding around textPadding for transparent regionsParametersPatternPattern (outline)Pattern (overlay)Pattern (text)Pattern namePencilPentagonPixel amountPixelizePlug-in _RegistryPolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPosition (in %)Prepare for GIFPressedProcedure BrowserQuarter sizeRLERadiusRadius (%)Radius (pixels)Random seedRandomnessRe_ctangular, Feathered...Relative distance of horizonRelative length of shadowRemove backgroundRender _Map...Return ValuesRibbon spacingRibbon widthRightRippling strengthRoughnessRound ratioRounded R_ectangle...RowsRows/colsSIOD OutputSOTA Chrome...Scale XScale YScript ArgumentsScript ProgressScript-Fu Brush SelectionScript-Fu Colour SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Palette SelectionScript-Fu Server OptionsScript-Fu _ConsoleScript-Fu cannot process two scripts at the same time.Script-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSea depthSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSelect-by-colour thresholdSeparate layerSepiaServer Logfile:Server Port:ShadowShadow X offsetShadow Y offsetShadow blur radiusShadow colourShadow darknessShadow depthShadow weight (%)ShapeSharpness (degrees)Shear lengthShow Image _Structure...Simple _Bevelled Button...SizeSmearSmoothSmooth horizontallySmooth verticallySolid ColourSpace between layersSpacingSpeed (pixels/frame)Speed Text...Sphere colourSpots density XSpots density YSpreadSpyrographSquareSquaresSta_rscape...StainsStarb_urst...Start XStart YStart angleStart blendStarting blendSupersampleSwirl-_Tile...T_ruchet...T_ube Sub-Button Label...Temporary ProcedureTextText Circle...Text colourText colour (active)Text gradient reverseText patternThicknessThread densityThread intensityThread lengthThreshold (bigger 1<-->255 smaller)TileTo _Brush...To _ImageTo _Pattern...ToolTransparent backgroundTriangleTub_e Sub-Sub-Button Label...Turn from left to rightTypeUpUpper colourUpper colour (active)Upper-left colourUse current gradientUse font _name as textUse growing selectionUse pattern for outline instead of gradientUse pattern for text instead of gradientUse pattern overlayUse selection bounds instead of belowsVerticalWavelengthWeb Title Header...Whirl amountWhirl angleWidthWidth of bandsWidth of gapsWork on copyWrapX divisionsY divisionsYou are already running the "%s" script._Arrow..._Basic I..._Big Header..._Blend..._Border (pixels)_Browse..._Bullet..._Camouflage..._Chalk..._Circuit..._Clothify..._Coffee Stain..._Colour scheme_Developer Web Site_Distress Selection..._Drop-Shadow..._Elliptical..._Erase every other Row..._Fade Outline..._Filter (regexp)_Flatland..._Font Map..._Frosty..._Fuzzy Border..._General Tube Labels..._Grid..._Hrule..._Labels_Land..._Lava..._Main Web Site_Old Photo..._Particle Trace..._Perspective..._Predator..._Rectangular..._Refresh Scripts_Remove all Guides_Rippling..._Round Button..._Round Corners..._Search:_Slide..._Small Header..._Sphere..._Spinning Globe..._Spyrogimp..._Start Server..._Swirly..._Text_Textured..._Tileable Blur..._Tube Button Label..._Unsharp Mask..._Waves..._Weave..._Xach-Effect... \ No newline at end of file diff -uraN gimp-2.2.0/po-script-fu/en_CA.po gimp-2.2.1/po-script-fu/en_CA.po --- gimp-2.2.0/po-script-fu/en_CA.po 2004-12-19 03:34:26.000000000 +0100 +++ gimp-2.2.1/po-script-fu/en_CA.po 2004-12-28 16:59:10.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: gimp script-fu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:48+0100\n" +"POT-Creation-Date: 2004-12-28 15:42+0100\n" "PO-Revision-Date: 2004-11-18 00:14-0400\n" "Last-Translator: Adam Weinberger \n" "Language-Team: English/Canada \n" @@ -318,7 +318,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:5 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:4 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:6 -#: plug-ins/script-fu/scripts/asc2img.scm.h:8 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:4 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:5 #: plug-ins/script-fu/scripts/beveled-button.scm.h:3 @@ -359,7 +358,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:6 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:5 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:7 -#: plug-ins/script-fu/scripts/asc2img.scm.h:9 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:5 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:6 #: plug-ins/script-fu/scripts/beveled-button.scm.h:4 @@ -487,7 +485,6 @@ #: plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:2 #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:3 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:4 -#: plug-ins/script-fu/scripts/asc2img.scm.h:3 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:3 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:4 #: plug-ins/script-fu/scripts/blended-logo.scm.h:3 @@ -700,7 +697,6 @@ msgstr "Padding" #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:11 -#: plug-ins/script-fu/scripts/asc2img.scm.h:10 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:7 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:8 #: plug-ins/script-fu/scripts/beveled-button.scm.h:10 @@ -743,48 +739,6 @@ msgid "Width of gaps" msgstr "Width of gaps" -#: plug-ins/script-fu/scripts/asc2img.scm.h:1 -#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 -#: plug-ins/script-fu/scripts/image-structure.scm.h:1 -msgid "/Script-Fu/Utils" -msgstr "/Script-Fu/Utils" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:2 -#: plug-ins/script-fu/scripts/font-map.scm.h:1 -#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 -msgid "/Xtns/Script-Fu/Utils" -msgstr "/Xtns/Script-Fu/Utils" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:5 -#, no-c-format -msgid "Buffer amount (% height of text)" -msgstr "Buffer amount (% height of text)" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:6 -#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 -msgid "File name" -msgstr "File name" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:7 -#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 -msgid "Filename" -msgstr "Filename" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:11 -#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 -#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 -#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 -msgid "Transparent background" -msgstr "Transparent background" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:12 -msgid "_ASCII to Image..." -msgstr "_ASCII to Image..." - -#: plug-ins/script-fu/scripts/asc2img.scm.h:13 -msgid "_ASCII to Layer..." -msgstr "_ASCII to Layer..." - #: plug-ins/script-fu/scripts/basic1-logo.scm.h:8 msgid "_Basic I..." msgstr "_Basic I..." @@ -834,6 +788,12 @@ msgid "Diameter" msgstr "Diameter" +#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 +#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 +#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 +msgid "Transparent background" +msgstr "Transparent background" + #: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:4 msgid "H_eading..." msgstr "H_eading..." @@ -1426,6 +1386,11 @@ msgid "_Flatland..." msgstr "_Flatland..." +#: plug-ins/script-fu/scripts/font-map.scm.h:1 +#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 +msgid "/Xtns/Script-Fu/Utils" +msgstr "/Xtns/Script-Fu/Utils" + #: plug-ins/script-fu/scripts/font-map.scm.h:2 msgid "Active colors" msgstr "Active colours" @@ -1693,6 +1658,11 @@ msgid "_Remove all Guides" msgstr "_Remove all Guides" +#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 +#: plug-ins/script-fu/scripts/image-structure.scm.h:1 +msgid "/Script-Fu/Utils" +msgstr "/Script-Fu/Utils" + #: plug-ins/script-fu/scripts/hsv-graph.scm.h:2 msgid "BG opacity" msgstr "BG opacity" @@ -2066,6 +2036,10 @@ msgid "Brush name" msgstr "Brush name" +#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 +msgid "File name" +msgstr "File name" + #: plug-ins/script-fu/scripts/select-to-brush.scm.h:5 msgid "To _Brush..." msgstr "To _Brush..." @@ -2074,6 +2048,10 @@ msgid "To _Image" msgstr "To _Image" +#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 +msgid "Filename" +msgstr "Filename" + #: plug-ins/script-fu/scripts/select-to-pattern.scm.h:3 msgid "Pattern name" msgstr "Pattern name" @@ -2532,5 +2510,14 @@ msgid "_Xach-Effect..." msgstr "_Xach-Effect..." +#~ msgid "Buffer amount (% height of text)" +#~ msgstr "Buffer amount (% height of text)" + +#~ msgid "_ASCII to Image..." +#~ msgstr "_ASCII to Image..." + +#~ msgid "_ASCII to Layer..." +#~ msgstr "_ASCII to Layer..." + #~ msgid "Copy _Visible" #~ msgstr "Copy _Visible" diff -uraN gimp-2.2.0/po-script-fu/en_GB.gmo gimp-2.2.1/po-script-fu/en_GB.gmo --- gimp-2.2.0/po-script-fu/en_GB.gmo 2004-12-19 03:34:32.000000000 +0100 +++ gimp-2.2.1/po-script-fu/en_GB.gmo 2004-12-28 16:59:16.000000000 +0100 @@ -1,95 +1,91 @@ -  + +++ + ,,!,0,J,j,,,,,, --"-A- Z-{-#--!--3.8Q.9. . .... / -/%/ ->$>5> => I> V>b> v>> > > >> > >>> -??#?5?G? V?c?j? s?????????@@ @'@+@ -2@=@ M@ -Y@d@@@@@ @@ @AA A #A/AEA JA TA`AoAwAAAAAAAAB3BPBlBB6B9B= C GCUC qC{CCC CCCCD#D)D 9DFDMD]DmD DD DDDD DDDEE!E(EkIk ]k jkvk|k k kk k k(kkk l l(l 7lAl -Rl -]lhl wl l lllllllmm/m @m Mm -Zmemvmm mmmmm mmm mnn)n n" bf2,.(B-^y *gh /3P$izA` 0gx Mqb`kv81=7-? [@u'|zLkH@D: JBS*Nf5GcKZ. 8 - -LG)<A:CoT3m5&4]$Rw="xY~!+&VT1i uj9S}N^ePr  #|RvwUIJ{Q!F762 aopqrsDY~[I+dOMnElZtOmKE/\{>j%<eX%(Q# -,;X)}lWtFap'9_;0C]_y\V U%d Procedures%s:(none)/Script-Fu/1 Procedure3D _Outline...3_D Truchet.../Script-Fu/Alchemy/Script-Fu/Alpha to Logo/Script-Fu/Animators/Script-Fu/Decor/Script-Fu/Render/Script-Fu/Selection/Script-Fu/Shadow/Script-Fu/Stencil Ops/Script-Fu/Utils/Help/The GIMP Online/Xtns/Script-Fu/Xtns/Script-Fu/Buttons/Xtns/Script-Fu/Logos/Xtns/Script-Fu/Make Brush/Xtns/Script-Fu/Misc/Xtns/Script-Fu/Patterns/Xtns/Script-Fu/Utils/Xtns/Script-Fu/Web Page Themes/Alien Glow/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/Xtns/Script-Fu/Web Page Themes/Classic.Gimp.OrgActive colorsAdd B_evel...Add _Border...Add backgroundAdd drop-shadowAdd glowingAdd shadowAdditional InformationAfter glowAirbrushAlien _Glow...Alien _Neon...Allow resizingAmplitudeAngleAntialiasApply generated layermaskApply layer mask (or discard)Author:AutocropAzimuthBG opacityB_asic II...B_urn-In...B_utton...Background ColorBackground ImageBackground colorBackground imageBar heightBar lengthBase colorBehaviourBevel height (Sharpness)Bevel height (sharpness)Bevel widthBlackBlack on whiteBlen_ded...Blend gradient (Text)Blend gradient (outline)Blend gradient (text)Blend modeBlock sizeBlur XBlur YBlur amountBlur borderBlur horizontallyBlur radiusBlur typeBlur verticallyBo_vination...Border X sizeBorder Y sizeBorder colorBorder sizeBorder size (pixels)BrushBrush nameBuffer amount (% height of text)Bumpmap (alpha layer) blur radiusBurn-In: Need two layers in total!Burst colorC_arve-It...C_hrome-It...C_hrome...Carve raised textCarve white areasCarved...Cell size (pixels)Chalk colorChip Awa_y...Chip amountChrome balanceChrome factorChrome lightnessChrome saturationChrome white areasCircleCircuit seedClear unselected maskareaColorColor 1Color 2Color 3Color methodColumnsComic Boo_k...ConcaveCool _Metal...Copyright:Corona widthCreate new imageCreate shadowCreates four Guides around the bounding box of the current selection.Crystal...CubicCurrent CommandCustom GradientCustom _Gradient...Dark colorDarken only + +l + +++ + +++,,:,V,n,,,,,,- *-K-#j--!--3-8!.9Z. . .... . +.. + // ///>/ M/W/ ]/g///// +/ / / +/// 00 ++0 +60 +A0 L0V0o0 000 0000 +0 +111 1 *161 H1 T1^1n1 }1 1 1 111 +1!1"1 2 )2 62 +D2O2a2 s2}2 2 2 22 2222 3 3373=3E3M3 U3b3j3y33 +3 33 3E3 + 444.4>4 +R4<]44444 444 45 555`15 555555 66 !6 +6 +76B6[6u666 6666 6 67 77 +%707L7Q7 Z7 d7n7 }7 7 77 7 +7 777 +7 7 888 +'828E8V8 \8 +h8s8z88 8 +88 +8 88899*9B9 Z9f9}9 9 99999999 :: +': +2:=: A: N: +[:f: u: : :": :::: ;;;.;>;N; ];i;n; ;; ;; ;;;;; ; <<&<7<><G<L<g< <<'< +<< <<<==&=6=G=X=h====== ==== = = >> %>3> L> Y> c>o> w> >>> +>>>>> ??? "?/?8?J?\?m?~????? ??? +?? ? +@@.@K@e@w@ @@ @@@ @ @@@ @ AAA&A.A?AOAiAAAAAAAB4B6GB9~B=B BC C*C;CKC cCCCCCCC CCC DD /DRHRaR zRRR RRRR +R +RS S S S(S :S FSPS`S oS }S S SSS +S!S"S T T *T +8TCTUT gTqT T T TT TTTTT UU,U3Ud6Qd9d=d ee *e4eEeUe meeeeeee efff'f :fHf Xfefwf}f ffffffff gg+g3g Hg Vgdgtgg +ggg gg ggg g gg g h h&h@hThYh hhthh h hhh h#hi i i$i3i8iOiXiviii iiiiii+ j(9jbj&vjj +jj j jjj j kk k k(+k Tk ^kjk ykk +k +kk k k kkkkl'l7lFl`lql l l +llll lllll mm-m =mJmZmkm ~mmmm mm +mm mm +nn n-n?nUn fn pnznb5Hg3V?cr=m! ae2+-'B,]x +)fg .2P#hyA_ 0fw Mpa_ju81<7~-> +Z?t'{yLjG@D9IAS*Me5FbKY. 7 KG(;@:BnS3l4%4\$Rv="w}!*~&VT0h  ti9R|N]dOq #{QuvTIJzP F661`nopqrCX}ZH+cOLmDkYsNlJE/[z>i$<dW%(Q" +,:X)|kWsE`o&8^;/C\^x[UU%d Procedures%s:(none)/Script-Fu/1 Procedure3D _Outline...3_D Truchet.../Script-Fu/Alchemy/Script-Fu/Alpha to Logo/Script-Fu/Animators/Script-Fu/Decor/Script-Fu/Render/Script-Fu/Selection/Script-Fu/Shadow/Script-Fu/Stencil Ops/Script-Fu/Utils/Help/The GIMP Online/Xtns/Script-Fu/Xtns/Script-Fu/Buttons/Xtns/Script-Fu/Logos/Xtns/Script-Fu/Make Brush/Xtns/Script-Fu/Misc/Xtns/Script-Fu/Patterns/Xtns/Script-Fu/Utils/Xtns/Script-Fu/Web Page Themes/Alien Glow/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/Xtns/Script-Fu/Web Page Themes/Classic.Gimp.OrgActive colorsAdd B_evel...Add _Border...Add backgroundAdd drop-shadowAdd glowingAdd shadowAdditional InformationAfter glowAirbrushAlien _Glow...Alien _Neon...Allow resizingAmplitudeAngleAntialiasApply generated layermaskApply layer mask (or discard)Author:AutocropAzimuthBG opacityB_asic II...B_urn-In...B_utton...Background ColorBackground ImageBackground colorBackground imageBar heightBar lengthBase colorBehaviourBevel height (Sharpness)Bevel height (sharpness)Bevel widthBlackBlack on whiteBlen_ded...Blend gradient (Text)Blend gradient (outline)Blend gradient (text)Blend modeBlock sizeBlur XBlur YBlur amountBlur borderBlur horizontallyBlur radiusBlur typeBlur verticallyBo_vination...Border X sizeBorder Y sizeBorder colorBorder sizeBorder size (pixels)BrushBrush nameBumpmap (alpha layer) blur radiusBurn-In: Need two layers in total!Burst colorC_arve-It...C_hrome-It...C_hrome...Carve raised textCarve white areasCarved...Cell size (pixels)Chalk colorChip Awa_y...Chip amountChrome balanceChrome factorChrome lightnessChrome saturationChrome white areasCircleCircuit seedClear unselected maskareaColorColor 1Color 2Color 3Color methodColumnsComic Boo_k...ConcaveCool _Metal...Copyright:Corona widthCreate new imageCreate shadowCreates four Guides around the bounding box of the current selection.Crystal...CubicCurrent CommandCustom GradientCustom _Gradient...Dark colorDarken only (Better, but only for images with alot of white)Date:Default bumpmap settingsDefocusDelta value on colorDensity (%)DepthDetail in MiddleDetail levelDiameterDirectionDownDraw _HSV Graph...Draws Spirographs, Epitrochoids and Lissajous Curves. More info at http://netword.com/*spyrogimpDrop shadowDrop shadow X offsetDrop shadow Y offsetDrop shadow blur radiusDrop shadow colorDrop shadow opacityEdge amountEdge behaviourEdge onlyEdge radiusEdge widthEffect size (pixels * 3)Effect size (pixels * 30)Effect size (pixels * 4)Effect size (pixels * 5)Effect size (pixels)ElevationElli_ptical, Feathered...End XEnd YEnd blendEnding blendEnvironment mapEpitrochoidEraseErase/fillError while executing %s -%sEvenEven/oddFG-BG-HSVFG-BG-RGBFG-TransparentFade awayFade from %Fade to %FadeoutFadeout widthFeatheringFile nameFilenameFill BG with patternFill angleFill with BGFlatten imageFontFont _size (pixels)Font colorFont size (pixels)Foreground colorFrameFrame colorFrame sizeFramesFrom top-left to bottom-rightGIMP ExtensionGIMP Plug-InGlo_ssy...Glo_wing Hot...Glow colorGlow radiusGlow size (pixels * 4)GradientGradient Beve_l...Gradient reverseGradient: Loop SawtoothGradient: Loop TriangleGranularityGranularity (1 is Low)Granularity (1 is low)Graph scaleH_eading...HeightHexagonHexagonsHighlight X offsetHighlight Y offsetHighlight balanceHighlight colorHighlight opacityHit rateHole ratioHorizontalIIRImage Types:Image heightImage sizeImage to carveImage widthImigre-26...Index imageIndex to n colors (0 = remain RGB)Inner teethInsert layer namesIntermediate framesInternal GIMP procedureInterpolationInvertInvert directionKeep backgroundKeep bump layerKeep selectionLand heightLeftLighting (degrees)Line _Nova...LinearLissajousLoopedLower colorLower color (active)Lower-right colorMake new backgroundMargin (pixels)Mask opacityMask sizeMax. blur radiusMosaic tile typeMottleN_eon...NameNew Guide (by _Percent)...New Guides from _SelectionNew _Guide...Newsprint Text...No background (only for separate layer)No matchesNoneNot pressedNot pressed (active)NumberNumber of X tilesNumber of Y tilesNumber of bandsNumber of colorsNumber of framesNumber of linesNumber of times to whirlOctagonsOddOffset (pixels)Offset XOffset YOffset radiusOffsets (pixels * 2)Oilify mask sizeOpacityOrientationOuter borderOuter teethOutline blur radiusOutline colorOutline gradient reverseOutline sizePad colorPad opacityPaddingPadding XPadding YPadding around textPadding for transparent regionsParametersPatternPattern (outline)Pattern (overlay)Pattern (text)Pattern namePencilPentagonPixel amountPixelizePlug-in _RegistryPolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPosition (in %)Prepare for GIFPressedProcedure BrowserQuarter sizeRLERadiusRadius (%)Radius (pixels)Random seedRandomnessRe_ctangular, Feathered...Relative distance of horizonRelative length of shadowRemove backgroundRender _Map...Return ValuesRibbon spacingRibbon widthRightRippling strengthRoughnessRound ratioRounded R_ectangle...RowsRows/colsSIOD OutputSOTA Chrome...Scale XScale YScript ArgumentsScript ProgressScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Palette SelectionScript-Fu Server OptionsScript-Fu _ConsoleScript-Fu cannot process two scripts at the same time.Script-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSea depthSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSelect-by-color thresholdSeparate layerSepiaServer Logfile:Server Port:ShadowShadow X offsetShadow Y offsetShadow blur radiusShadow colorShadow darknessShadow depthShadow weight (%)ShapeSharpness (degrees)Shear lengthShow Image _Structure...Simple _Beveled Button...SizeSmearSmoothSmooth horizontallySmooth verticallySolid ColorSpace between layersSpacingSpeed (pixels/frame)Speed Text...Sphere colorSpots density XSpots density YSpreadSpyrographSquareSquaresSta_rscape...StainsStarb_urst...Start XStart YStart angleStart blendStarting blendSupersampleSwirl-_Tile...T_ruchet...T_ube Sub-Button Label...Temporary ProcedureTextText Circle...Text colorText color (active)Text gradient reverseText patternThicknessThread densityThread intensityThread lengthThreshold (bigger 1<-->255 smaller)TileTo _Brush...To _ImageTo _Pattern...ToolTransparent backgroundTriangleTub_e Sub-Sub-Button Label...Turn from left to rightTypeUpUpper colorUpper color (active)Upper-left colorUse current gradientUse font _name as textUse growing selectionUse pattern for outline instead of gradientUse pattern for text instead of gradientUse pattern overlayUse selection bounds instead of belowsVerticalWavelengthWeb Title Header...Whirl amountWhirl angleWidthWidth of bandsWidth of gapsWork on copyWrapX divisionsY divisionsYou are already running the "%s" script._ASCII to Image..._ASCII to Layer..._Arrow..._Basic I..._Big Header..._Blend..._Border (pixels)_Browse..._Bullet..._Camouflage..._Chalk..._Circuit..._Clothify..._Coffee Stain..._Color scheme_Developer Web Site_Distress Selection..._Drop-Shadow..._Elliptical..._Erase every other Row..._Fade Outline..._Filter (regexp)_Flatland..._Font Map..._Frosty..._Fuzzy Border..._General Tube Labels..._Grid..._Hrule..._Labels_Land..._Lava..._Main Web Site_Old Photo..._Particle Trace..._Perspective..._Predator..._Rectangular..._Refresh Scripts_Remove all Guides_Rippling..._Round Button..._Round Corners..._Search:_Slide..._Small Header..._Sphere..._Spinning Globe..._Spyrogimp..._Start Server..._Swirly..._Text_Textured..._Tileable Blur..._Tube Button Label..._Unsharp Mask..._Waves..._Weave..._Xach-Effect...Project-Id-Version: GIMP +%sEvenEven/oddFG-BG-HSVFG-BG-RGBFG-TransparentFade awayFade from %Fade to %FadeoutFadeout widthFeatheringFile nameFilenameFill BG with patternFill angleFill with BGFlatten imageFontFont _size (pixels)Font colorFont size (pixels)Foreground colorFrameFrame colorFrame sizeFramesFrom top-left to bottom-rightGIMP ExtensionGIMP Plug-InGlo_ssy...Glo_wing Hot...Glow colorGlow radiusGlow size (pixels * 4)GradientGradient Beve_l...Gradient reverseGradient: Loop SawtoothGradient: Loop TriangleGranularityGranularity (1 is Low)Granularity (1 is low)Graph scaleH_eading...HeightHexagonHexagonsHighlight X offsetHighlight Y offsetHighlight balanceHighlight colorHighlight opacityHit rateHole ratioHorizontalIIRImage Types:Image heightImage sizeImage to carveImage widthImigre-26...Index imageIndex to n colors (0 = remain RGB)Inner teethInsert layer namesIntermediate framesInternal GIMP procedureInterpolationInvertInvert directionKeep backgroundKeep bump layerKeep selectionLand heightLeftLighting (degrees)Line _Nova...LinearLissajousLoopedLower colorLower color (active)Lower-right colorMake new backgroundMargin (pixels)Mask opacityMask sizeMax. blur radiusMosaic tile typeMottleN_eon...NameNew Guide (by _Percent)...New Guides from _SelectionNew _Guide...Newsprint Text...No background (only for separate layer)No matchesNoneNot pressedNot pressed (active)NumberNumber of X tilesNumber of Y tilesNumber of bandsNumber of colorsNumber of framesNumber of linesNumber of times to whirlOctagonsOddOffset (pixels)Offset XOffset YOffset radiusOffsets (pixels * 2)Oilify mask sizeOpacityOrientationOuter borderOuter teethOutline blur radiusOutline colorOutline gradient reverseOutline sizePad colorPad opacityPaddingPadding XPadding YPadding around textPadding for transparent regionsParametersPatternPattern (outline)Pattern (overlay)Pattern (text)Pattern namePencilPentagonPixel amountPixelizePlug-in _RegistryPolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPosition (in %)Prepare for GIFPressedProcedure BrowserQuarter sizeRLERadiusRadius (%)Radius (pixels)Random seedRandomnessRe_ctangular, Feathered...Relative distance of horizonRelative length of shadowRemove backgroundRender _Map...Return ValuesRibbon spacingRibbon widthRightRippling strengthRoughnessRound ratioRounded R_ectangle...RowsRows/colsSIOD OutputSOTA Chrome...Scale XScale YScript ArgumentsScript ProgressScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Palette SelectionScript-Fu Server OptionsScript-Fu _ConsoleScript-Fu cannot process two scripts at the same time.Script-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSea depthSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSelect-by-color thresholdSeparate layerSepiaServer Logfile:Server Port:ShadowShadow X offsetShadow Y offsetShadow blur radiusShadow colorShadow darknessShadow depthShadow weight (%)ShapeSharpness (degrees)Shear lengthShow Image _Structure...Simple _Beveled Button...SizeSmearSmoothSmooth horizontallySmooth verticallySolid ColorSpace between layersSpacingSpeed (pixels/frame)Speed Text...Sphere colorSpots density XSpots density YSpreadSpyrographSquareSquaresSta_rscape...StainsStarb_urst...Start XStart YStart angleStart blendStarting blendSupersampleSwirl-_Tile...T_ruchet...T_ube Sub-Button Label...Temporary ProcedureTextText Circle...Text colorText color (active)Text gradient reverseText patternThicknessThread densityThread intensityThread lengthThreshold (bigger 1<-->255 smaller)TileTo _Brush...To _ImageTo _Pattern...ToolTransparent backgroundTriangleTub_e Sub-Sub-Button Label...Turn from left to rightTypeUpUpper colorUpper color (active)Upper-left colorUse current gradientUse font _name as textUse growing selectionUse pattern for outline instead of gradientUse pattern for text instead of gradientUse pattern overlayUse selection bounds instead of belowsVerticalWavelengthWeb Title Header...Whirl amountWhirl angleWidthWidth of bandsWidth of gapsWork on copyWrapX divisionsY divisionsYou are already running the "%s" script._Arrow..._Basic I..._Big Header..._Blend..._Border (pixels)_Browse..._Bullet..._Camouflage..._Chalk..._Circuit..._Clothify..._Coffee Stain..._Color scheme_Developer Web Site_Distress Selection..._Drop-Shadow..._Elliptical..._Erase every other Row..._Fade Outline..._Filter (regexp)_Flatland..._Font Map..._Frosty..._Fuzzy Border..._General Tube Labels..._Grid..._Hrule..._Labels_Land..._Lava..._Main Web Site_Old Photo..._Particle Trace..._Perspective..._Predator..._Rectangular..._Refresh Scripts_Remove all Guides_Rippling..._Round Button..._Round Corners..._Search:_Slide..._Small Header..._Sphere..._Spinning Globe..._Spyrogimp..._Start Server..._Swirly..._Text_Textured..._Tileable Blur..._Tube Button Label..._Unsharp Mask..._Waves..._Weave..._Xach-Effect...Project-Id-Version: GIMP Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:48+0100 +POT-Creation-Date: 2004-12-28 15:42+0100 PO-Revision-Date: 2004-11-21 22:59+0100 Last-Translator: David Lodge Language-Team: English, British MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit -%d Procedures%s:(none)/Script-Fu/1 Procedure3D _Outline...3_D Truchet.../Script-Fu/Alchemy/Script-Fu/Alpha to Logo/Script-Fu/Animators/Script-Fu/Decor/Script-Fu/Render/Script-Fu/Selection/Script-Fu/Shadow/Script-Fu/Stencil Ops/Script-Fu/Utils/Help/The GIMP Online/Xtns/Script-Fu/Xtns/Script-Fu/Buttons/Xtns/Script-Fu/Logos/Xtns/Script-Fu/Make Brush/Xtns/Script-Fu/Misc/Xtns/Script-Fu/Patterns/Xtns/Script-Fu/Utils/Xtns/Script-Fu/Web Page Themes/Alien Glow/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/Xtns/Script-Fu/Web Page Themes/Classic.Gimp.OrgActive coloursAdd B_evel...Add _Border...Add backgroundAdd drop-shadowAdd glowingAdd shadowAdditional InformationAfter glowAirbrushAlien _Glow...Alien _Neon...Allow resizingAmplitudeAngleAntialiasApply generated layermaskApply layer mask (or discard)Author:AutocropAzimuthBG opacityB_asic II...B_urn-In...B_utton...Background ColourBackground ImageBackground colourBackground imageBar heightBar lengthBase colourBehaviourBevel height (Sharpness)Bevel height (sharpness)Bevel widthBlackBlack on whiteBlen_ded...Blend gradient (Text)Blend gradient (outline)Blend gradient (text)Blend modeBlock sizeBlur XBlur YBlur amountBlur borderBlur horizontallyBlur radiusBlur typeBlur verticallyBo_vination...Border X sizeBorder Y sizeBorder colourBorder sizeBorder size (pixels)BrushBrush nameBuffer amount (% height of text)Bumpmap (alpha layer) blur radiusBurn-In: Need two layers in total!Burst colourC_arve-It...C_hrome-It...C_hrome...Carve raised textCarve white areasCarved...Cell size (pixels)Chalk colourChip Awa_y...Chip amountChrome balanceChrome factorChrome lightnessChrome saturationChrome white areasCircleCircuit seedClear unselected maskareaColourColour 1Colour 2Colour 3Colour methodColumnsComic Boo_k...ConcaveCool _Metal...Copyright:Corona widthCreate new imageCreate shadowCreates four Guides around the bounding box of the current selection.Crystal...CubicCurrent CommandCustom GradientCustom _Gradient...Dark colourDarken only +%d Procedures%s:(none)/Script-Fu/1 Procedure3D _Outline...3_D Truchet.../Script-Fu/Alchemy/Script-Fu/Alpha to Logo/Script-Fu/Animators/Script-Fu/Decor/Script-Fu/Render/Script-Fu/Selection/Script-Fu/Shadow/Script-Fu/Stencil Ops/Script-Fu/Utils/Help/The GIMP Online/Xtns/Script-Fu/Xtns/Script-Fu/Buttons/Xtns/Script-Fu/Logos/Xtns/Script-Fu/Make Brush/Xtns/Script-Fu/Misc/Xtns/Script-Fu/Patterns/Xtns/Script-Fu/Utils/Xtns/Script-Fu/Web Page Themes/Alien Glow/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/Xtns/Script-Fu/Web Page Themes/Classic.Gimp.OrgActive coloursAdd B_evel...Add _Border...Add backgroundAdd drop-shadowAdd glowingAdd shadowAdditional InformationAfter glowAirbrushAlien _Glow...Alien _Neon...Allow resizingAmplitudeAngleAntialiasApply generated layermaskApply layer mask (or discard)Author:AutocropAzimuthBG opacityB_asic II...B_urn-In...B_utton...Background ColourBackground ImageBackground colourBackground imageBar heightBar lengthBase colourBehaviourBevel height (Sharpness)Bevel height (sharpness)Bevel widthBlackBlack on whiteBlen_ded...Blend gradient (Text)Blend gradient (outline)Blend gradient (text)Blend modeBlock sizeBlur XBlur YBlur amountBlur borderBlur horizontallyBlur radiusBlur typeBlur verticallyBo_vination...Border X sizeBorder Y sizeBorder colourBorder sizeBorder size (pixels)BrushBrush nameBumpmap (alpha layer) blur radiusBurn-In: Need two layers in total!Burst colourC_arve-It...C_hrome-It...C_hrome...Carve raised textCarve white areasCarved...Cell size (pixels)Chalk colourChip Awa_y...Chip amountChrome balanceChrome factorChrome lightnessChrome saturationChrome white areasCircleCircuit seedClear unselected maskareaColourColour 1Colour 2Colour 3Colour methodColumnsComic Boo_k...ConcaveCool _Metal...Copyright:Corona widthCreate new imageCreate shadowCreates four Guides around the bounding box of the current selection.Crystal...CubicCurrent CommandCustom GradientCustom _Gradient...Dark colourDarken only (Better, but only for images with alot of white)Date:Default bumpmap settingsDefocusDelta value on colourDensity (%)DepthDetail in MiddleDetail levelDiameterDirectionDownDraw _HSV Graph...Draws Spirographs, Epitrochoids and Lissajous Curves. More info at http://netword.com/*spyrogimpDrop shadowDrop shadow X offsetDrop shadow Y offsetDrop shadow blur radiusDrop shadow colourDrop shadow opacityEdge amountEdge behaviourEdge onlyEdge radiusEdge widthEffect size (pixels * 3)Effect size (pixels * 30)Effect size (pixels * 4)Effect size (pixels * 5)Effect size (pixels)ElevationElli_ptical, Feathered...End XEnd YEnd blendEnding blendEnvironment mapEpitrochoidEraseErase/fillError while executing %s -%sEvenEven/oddFG-BG-HSVFG-BG-RGBFG-TransparentFade awayFade from %Fade to %FadeoutFadeout widthFeatheringFile nameFilenameFill BG with patternFill angleFill with BGFlatten imageFontFont _size (pixels)Font colourFont size (pixels)Foreground colourFrameFrame colourFrame sizeFramesFrom top-left to bottom-rightGIMP ExtensionGIMP Plug-InGlo_ssy...Glo_wing Hot...Glow colourGlow radiusGlow size (pixels * 4)GradientGradient Beve_l...Gradient reverseGradient: Loop SawtoothGradient: Loop TriangleGranularityGranularity (1 is Low)Granularity (1 is low)Graph scaleH_eading...HeightHexagonHexagonsHighlight X offsetHighlight Y offsetHighlight balanceHighlight colourHighlight opacityHit rateHole ratioHorizontalIIRImage Types:Image heightImage sizeImage to carveImage widthImigre-26...Index imageIndex to n colours (0 = remain RGB)Inner teethInsert layer namesIntermediate framesInternal GIMP procedureInterpolationInvertInvert directionKeep backgroundKeep bump layerKeep selectionLand heightLeftLighting (degrees)Line _Nova...LinearLissajousLoopedLower colourLower colour (active)Lower-right colourMake new backgroundMargin (pixels)Mask opacityMask sizeMax. blur radiusMosaic tile typeMottleN_eon...NameNew Guide (by _Percent)...New Guides from _SelectionNew _Guide...Newsprint Text...No background (only for separate layer)No matchesNoneNot pressedNot pressed (active)NumberNumber of X tilesNumber of Y tilesNumber of bandsNumber of coloursNumber of framesNumber of linesNumber of times to whirlOctagonsOddOffset (pixels)Offset XOffset YOffset radiusOffsets (pixels * 2)Oilify mask sizeOpacityOrientationOuter borderOuter teethOutline blur radiusOutline colourOutline gradient reverseOutline sizePad colourPad opacityPaddingPadding XPadding YPadding around textPadding for transparent regionsParametersPatternPattern (outline)Pattern (overlay)Pattern (text)Pattern namePencilPentagonPixel amountPixelizePlug-in _RegistryPolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPosition (in %)Prepare for GIFPressedProcedure BrowserQuarter sizeRLERadiusRadius (%)Radius (pixels)Random seedRandomnessRe_ctangular, Feathered...Relative distance of horizonRelative length of shadowRemove backgroundRender _Map...Return ValuesRibbon spacingRibbon widthRightRippling strengthRoughnessRound ratioRounded R_ectangle...RowsRows/colsSIOD OutputSOTA Chrome...Scale XScale YScript ArgumentsScript ProgressScript-Fu Brush SelectionScript-Fu Colour SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Palette SelectionScript-Fu Server OptionsScript-Fu _ConsoleScript-Fu cannot process two scripts at the same time.Script-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSea depthSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSelect-by-colour thresholdSeparate layerSepiaServer Logfile:Server Port:ShadowShadow X offsetShadow Y offsetShadow blur radiusShadow colourShadow darknessShadow depthShadow weight (%)ShapeSharpness (degrees)Shear lengthShow Image _Structure...Simple _Beveled Button...SizeSmearSmoothSmooth horizontallySmooth verticallySolid ColourSpace between layersSpacingSpeed (pixels/frame)Speed Text...Sphere colourSpots density XSpots density YSpreadSpyrographSquareSquaresSta_rscape...StainsStarb_urst...Start XStart YStart angleStart blendStarting blendSupersampleSwirl-_Tile...T_ruchet...T_ube Sub-Button Label...Temporary ProcedureTextText Circle...Text colourText colour (active)Text gradient reverseText patternThicknessThread densityThread intensityThread lengthThreshold (bigger 1<-->255 smaller)TileTo _Brush...To _ImageTo _Pattern...ToolTransparent backgroundTriangleTub_e Sub-Sub-Button Label...Turn from left to rightTypeUpUpper colourUpper colour (active)Upper-left colourUse current gradientUse font _name as textUse growing selectionUse pattern for outline instead of gradientUse pattern for text instead of gradientUse pattern overlayUse selection bounds instead of belowsVerticalWavelengthWeb Title Header...Whirl amountWhirl angleWidthWidth of bandsWidth of gapsWork on copyWrapX divisionsY divisionsYou are already running the "%s" script._ASCII to Image..._ASCII to Layer..._Arrow..._Basic I..._Big Header..._Blend..._Border (pixels)_Browse..._Bullet..._Camouflage..._Chalk..._Circuit..._Clothify..._Coffee Stain..._Colour scheme_Developer Web Site_Distress Selection..._Drop-Shadow..._Elliptical..._Erase every other Row..._Fade Outline..._Filter (regexp)_Flatland..._Font Map..._Frosty..._Fuzzy Border..._General Tube Labels..._Grid..._Hrule..._Labels_Land..._Lava..._Main Web Site_Old Photo..._Particle Trace..._Perspective..._Predator..._Rectangular..._Refresh Scripts_Remove all Guides_Rippling..._Round Button..._Round Corners..._Search:_Slide..._Small Header..._Sphere..._Spinning Globe..._Spyrogimp..._Start Server..._Swirly..._Text_Textured..._Tileable Blur..._Tube Button Label..._Unsharp Mask..._Waves..._Weave..._Xach-Effect... \ No newline at end of file +%sEvenEven/oddFG-BG-HSVFG-BG-RGBFG-TransparentFade awayFade from %Fade to %FadeoutFadeout widthFeatheringFile nameFilenameFill BG with patternFill angleFill with BGFlatten imageFontFont _size (pixels)Font colourFont size (pixels)Foreground colourFrameFrame colourFrame sizeFramesFrom top-left to bottom-rightGIMP ExtensionGIMP Plug-InGlo_ssy...Glo_wing Hot...Glow colourGlow radiusGlow size (pixels * 4)GradientGradient Beve_l...Gradient reverseGradient: Loop SawtoothGradient: Loop TriangleGranularityGranularity (1 is Low)Granularity (1 is low)Graph scaleH_eading...HeightHexagonHexagonsHighlight X offsetHighlight Y offsetHighlight balanceHighlight colourHighlight opacityHit rateHole ratioHorizontalIIRImage Types:Image heightImage sizeImage to carveImage widthImigre-26...Index imageIndex to n colours (0 = remain RGB)Inner teethInsert layer namesIntermediate framesInternal GIMP procedureInterpolationInvertInvert directionKeep backgroundKeep bump layerKeep selectionLand heightLeftLighting (degrees)Line _Nova...LinearLissajousLoopedLower colourLower colour (active)Lower-right colourMake new backgroundMargin (pixels)Mask opacityMask sizeMax. blur radiusMosaic tile typeMottleN_eon...NameNew Guide (by _Percent)...New Guides from _SelectionNew _Guide...Newsprint Text...No background (only for separate layer)No matchesNoneNot pressedNot pressed (active)NumberNumber of X tilesNumber of Y tilesNumber of bandsNumber of coloursNumber of framesNumber of linesNumber of times to whirlOctagonsOddOffset (pixels)Offset XOffset YOffset radiusOffsets (pixels * 2)Oilify mask sizeOpacityOrientationOuter borderOuter teethOutline blur radiusOutline colourOutline gradient reverseOutline sizePad colourPad opacityPaddingPadding XPadding YPadding around textPadding for transparent regionsParametersPatternPattern (outline)Pattern (overlay)Pattern (text)Pattern namePencilPentagonPixel amountPixelizePlug-in _RegistryPolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPosition (in %)Prepare for GIFPressedProcedure BrowserQuarter sizeRLERadiusRadius (%)Radius (pixels)Random seedRandomnessRe_ctangular, Feathered...Relative distance of horizonRelative length of shadowRemove backgroundRender _Map...Return ValuesRibbon spacingRibbon widthRightRippling strengthRoughnessRound ratioRounded R_ectangle...RowsRows/colsSIOD OutputSOTA Chrome...Scale XScale YScript ArgumentsScript ProgressScript-Fu Brush SelectionScript-Fu Colour SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Palette SelectionScript-Fu Server OptionsScript-Fu _ConsoleScript-Fu cannot process two scripts at the same time.Script-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSea depthSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSelect-by-colour thresholdSeparate layerSepiaServer Logfile:Server Port:ShadowShadow X offsetShadow Y offsetShadow blur radiusShadow colourShadow darknessShadow depthShadow weight (%)ShapeSharpness (degrees)Shear lengthShow Image _Structure...Simple _Beveled Button...SizeSmearSmoothSmooth horizontallySmooth verticallySolid ColourSpace between layersSpacingSpeed (pixels/frame)Speed Text...Sphere colourSpots density XSpots density YSpreadSpyrographSquareSquaresSta_rscape...StainsStarb_urst...Start XStart YStart angleStart blendStarting blendSupersampleSwirl-_Tile...T_ruchet...T_ube Sub-Button Label...Temporary ProcedureTextText Circle...Text colourText colour (active)Text gradient reverseText patternThicknessThread densityThread intensityThread lengthThreshold (bigger 1<-->255 smaller)TileTo _Brush...To _ImageTo _Pattern...ToolTransparent backgroundTriangleTub_e Sub-Sub-Button Label...Turn from left to rightTypeUpUpper colourUpper colour (active)Upper-left colourUse current gradientUse font _name as textUse growing selectionUse pattern for outline instead of gradientUse pattern for text instead of gradientUse pattern overlayUse selection bounds instead of belowsVerticalWavelengthWeb Title Header...Whirl amountWhirl angleWidthWidth of bandsWidth of gapsWork on copyWrapX divisionsY divisionsYou are already running the "%s" script._Arrow..._Basic I..._Big Header..._Blend..._Border (pixels)_Browse..._Bullet..._Camouflage..._Chalk..._Circuit..._Clothify..._Coffee Stain..._Colour scheme_Developer Web Site_Distress Selection..._Drop-Shadow..._Elliptical..._Erase every other Row..._Fade Outline..._Filter (regexp)_Flatland..._Font Map..._Frosty..._Fuzzy Border..._General Tube Labels..._Grid..._Hrule..._Labels_Land..._Lava..._Main Web Site_Old Photo..._Particle Trace..._Perspective..._Predator..._Rectangular..._Refresh Scripts_Remove all Guides_Rippling..._Round Button..._Round Corners..._Search:_Slide..._Small Header..._Sphere..._Spinning Globe..._Spyrogimp..._Start Server..._Swirly..._Text_Textured..._Tileable Blur..._Tube Button Label..._Unsharp Mask..._Waves..._Weave..._Xach-Effect... \ No newline at end of file diff -uraN gimp-2.2.0/po-script-fu/en_GB.po gimp-2.2.1/po-script-fu/en_GB.po --- gimp-2.2.0/po-script-fu/en_GB.po 2004-12-19 03:34:27.000000000 +0100 +++ gimp-2.2.1/po-script-fu/en_GB.po 2004-12-28 16:59:10.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: GIMP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:48+0100\n" +"POT-Creation-Date: 2004-12-28 15:42+0100\n" "PO-Revision-Date: 2004-11-21 22:59+0100\n" "Last-Translator: David Lodge \n" "Language-Team: English, British\n" @@ -317,7 +317,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:5 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:4 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:6 -#: plug-ins/script-fu/scripts/asc2img.scm.h:8 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:4 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:5 #: plug-ins/script-fu/scripts/beveled-button.scm.h:3 @@ -358,7 +357,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:6 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:5 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:7 -#: plug-ins/script-fu/scripts/asc2img.scm.h:9 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:5 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:6 #: plug-ins/script-fu/scripts/beveled-button.scm.h:4 @@ -486,7 +484,6 @@ #: plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:2 #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:3 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:4 -#: plug-ins/script-fu/scripts/asc2img.scm.h:3 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:3 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:4 #: plug-ins/script-fu/scripts/blended-logo.scm.h:3 @@ -699,7 +696,6 @@ msgstr "Padding" #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:11 -#: plug-ins/script-fu/scripts/asc2img.scm.h:10 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:7 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:8 #: plug-ins/script-fu/scripts/beveled-button.scm.h:10 @@ -742,48 +738,6 @@ msgid "Width of gaps" msgstr "Width of gaps" -#: plug-ins/script-fu/scripts/asc2img.scm.h:1 -#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 -#: plug-ins/script-fu/scripts/image-structure.scm.h:1 -msgid "/Script-Fu/Utils" -msgstr "/Script-Fu/Utils" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:2 -#: plug-ins/script-fu/scripts/font-map.scm.h:1 -#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 -msgid "/Xtns/Script-Fu/Utils" -msgstr "/Xtns/Script-Fu/Utils" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:5 -#, no-c-format -msgid "Buffer amount (% height of text)" -msgstr "Buffer amount (% height of text)" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:6 -#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 -msgid "File name" -msgstr "File name" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:7 -#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 -msgid "Filename" -msgstr "Filename" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:11 -#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 -#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 -#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 -msgid "Transparent background" -msgstr "Transparent background" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:12 -msgid "_ASCII to Image..." -msgstr "_ASCII to Image..." - -#: plug-ins/script-fu/scripts/asc2img.scm.h:13 -msgid "_ASCII to Layer..." -msgstr "_ASCII to Layer..." - #: plug-ins/script-fu/scripts/basic1-logo.scm.h:8 msgid "_Basic I..." msgstr "_Basic I..." @@ -833,6 +787,12 @@ msgid "Diameter" msgstr "Diameter" +#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 +#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 +#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 +msgid "Transparent background" +msgstr "Transparent background" + #: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:4 msgid "H_eading..." msgstr "H_eading..." @@ -1425,6 +1385,11 @@ msgid "_Flatland..." msgstr "_Flatland..." +#: plug-ins/script-fu/scripts/font-map.scm.h:1 +#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 +msgid "/Xtns/Script-Fu/Utils" +msgstr "/Xtns/Script-Fu/Utils" + #: plug-ins/script-fu/scripts/font-map.scm.h:2 msgid "Active colors" msgstr "Active colours" @@ -1692,6 +1657,11 @@ msgid "_Remove all Guides" msgstr "_Remove all Guides" +#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 +#: plug-ins/script-fu/scripts/image-structure.scm.h:1 +msgid "/Script-Fu/Utils" +msgstr "/Script-Fu/Utils" + #: plug-ins/script-fu/scripts/hsv-graph.scm.h:2 msgid "BG opacity" msgstr "BG opacity" @@ -2065,6 +2035,10 @@ msgid "Brush name" msgstr "Brush name" +#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 +msgid "File name" +msgstr "File name" + #: plug-ins/script-fu/scripts/select-to-brush.scm.h:5 msgid "To _Brush..." msgstr "To _Brush..." @@ -2073,6 +2047,10 @@ msgid "To _Image" msgstr "To _Image" +#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 +msgid "Filename" +msgstr "Filename" + #: plug-ins/script-fu/scripts/select-to-pattern.scm.h:3 msgid "Pattern name" msgstr "Pattern name" @@ -2531,5 +2509,14 @@ msgid "_Xach-Effect..." msgstr "_Xach-Effect..." +#~ msgid "Buffer amount (% height of text)" +#~ msgstr "Buffer amount (% height of text)" + +#~ msgid "_ASCII to Image..." +#~ msgstr "_ASCII to Image..." + +#~ msgid "_ASCII to Layer..." +#~ msgstr "_ASCII to Layer..." + #~ msgid "Copy _Visible" #~ msgstr "Copy _Visible" diff -uraN gimp-2.2.0/po-script-fu/es.gmo gimp-2.2.1/po-script-fu/es.gmo --- gimp-2.2.0/po-script-fu/es.gmo 2004-12-19 03:34:32.000000000 +0100 +++ gimp-2.2.1/po-script-fu/es.gmo 2004-12-28 16:59:16.000000000 +0100 @@ -1,77 +1,75 @@ -  + +++ + ,,!,0,J,j,,,,,, --"-A- Z-{-#--!--3.8Q.9. . .... / -/%/ ->$>5> => I> V>b> v>> > > >> > >>> -??#?5?G? V?c?j? s?????????@@ @'@+@ -2@=@ M@ -Y@d@@@@@ @@ @AA A #A/AEA JA TA`AoAwAAAAAAAAB3BPBlBB6B9B= C GCUC qC{CCC CCCCD#D)D 9DFDMD]DmD DD DDDD DDDEE!E(ErCrJrYrqrr,rr3r.sMs9lsssssst t"t8t Jt Tt at%nttt -t tt -tt u u u'u 0u =uIu^uruu u uuuvv,v EvSvgv vv -v -vvvvvw w!w1wDw ]wgwzwwww -wwww xxx(xAx_x vx xxc6Hh4W?ds>n" bf2,.(B-^y *gh /3P$izA` 0gx Mqb`kv81=7-? [@u'|zLkH@D: JBS*Nf5GcKZ. 8 - -LG)<A:CoT3m5&4]$Rw="xY~!+&VT1i uj9S}N^ePr  #|RvwUIJ{Q!F762 aopqrsDY~[I+dOMnElZtOmKE/\{>j%<eX%(Q# -,;X)}lWtFap'9_;0C]_y\V U%d Procedures%s:(none)/Script-Fu/1 Procedure3D _Outline...3_D Truchet.../Script-Fu/Alchemy/Script-Fu/Alpha to Logo/Script-Fu/Animators/Script-Fu/Decor/Script-Fu/Render/Script-Fu/Selection/Script-Fu/Shadow/Script-Fu/Stencil Ops/Script-Fu/Utils/Help/The GIMP Online/Xtns/Script-Fu/Xtns/Script-Fu/Buttons/Xtns/Script-Fu/Logos/Xtns/Script-Fu/Make Brush/Xtns/Script-Fu/Misc/Xtns/Script-Fu/Patterns/Xtns/Script-Fu/Utils/Xtns/Script-Fu/Web Page Themes/Alien Glow/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/Xtns/Script-Fu/Web Page Themes/Classic.Gimp.OrgActive colorsAdd B_evel...Add _Border...Add backgroundAdd drop-shadowAdd glowingAdd shadowAdditional InformationAfter glowAirbrushAlien _Glow...Alien _Neon...Allow resizingAmplitudeAngleAntialiasApply generated layermaskApply layer mask (or discard)Author:AutocropAzimuthBG opacityB_asic II...B_urn-In...B_utton...Background ColorBackground ImageBackground colorBackground imageBar heightBar lengthBase colorBehaviourBevel height (Sharpness)Bevel height (sharpness)Bevel widthBlackBlack on whiteBlen_ded...Blend gradient (Text)Blend gradient (outline)Blend gradient (text)Blend modeBlock sizeBlur XBlur YBlur amountBlur borderBlur horizontallyBlur radiusBlur typeBlur verticallyBo_vination...Border X sizeBorder Y sizeBorder colorBorder sizeBorder size (pixels)BrushBrush nameBuffer amount (% height of text)Bumpmap (alpha layer) blur radiusBurn-In: Need two layers in total!Burst colorC_arve-It...C_hrome-It...C_hrome...Carve raised textCarve white areasCarved...Cell size (pixels)Chalk colorChip Awa_y...Chip amountChrome balanceChrome factorChrome lightnessChrome saturationChrome white areasCircleCircuit seedClear unselected maskareaColorColor 1Color 2Color 3Color methodColumnsComic Boo_k...ConcaveCool _Metal...Copyright:Corona widthCreate new imageCreate shadowCreates four Guides around the bounding box of the current selection.Crystal...CubicCurrent CommandCustom GradientCustom _Gradient...Dark colorDarken only + +l + +++ + +++,,:,V,n,,,,,,- *-K-#j--!--3-8!.9Z. . .... . +.. + // ///>/ M/W/ ]/g///// +/ / / +/// 00 ++0 +60 +A0 L0V0o0 000 0000 +0 +111 1 *161 H1 T1^1n1 }1 1 1 111 +1!1"1 2 )2 62 +D2O2a2 s2}2 2 2 22 2222 3 3373=3E3M3 U3b3j3y33 +3 33 3E3 + 444.4>4 +R4<]44444 444 45 555`15 555555 66 !6 +6 +76B6[6u666 6666 6 67 77 +%707L7Q7 Z7 d7n7 }7 7 77 7 +7 777 +7 7 888 +'828E8V8 \8 +h8s8z88 8 +88 +8 88899*9B9 Z9f9}9 9 99999999 :: +': +2:=: A: N: +[:f: u: : :": :::: ;;;.;>;N; ];i;n; ;; ;; ;;;;; ; <<&<7<><G<L<g< <<'< +<< <<<==&=6=G=X=h====== ==== = = >> %>3> L> Y> c>o> w> >>> +>>>>> ??? "?/?8?J?\?m?~????? ??? +?? ? +@@.@K@e@w@ @@ @@@ @ @@@ @ AAA&A.A?AOAiAAAAAAAB4B6GB9~B=B BC C*C;CKC cCCCCCCC CCC DD /DnFnNnTnin |nn nnnnno o $o1o :o DoRo Zo ho voooo oo o#o p7p=pOp^pwppppppp q q !q +q 9qEq +Xqcqqqqqqqq,r1r3Kr.rr9rss!suRuiu uuu uu +u +uuvv)vDv Tv^vnvv vvvvvv +vww,w AwNwUwew~ww w wwb5Hg3V?cr=m! ae2+-'B,]x +)fg .2P#hyA_ 0fw Mpa_ju81<7~-> +Z?t'{yLjG@D9IAS*Me5FbKY. 7 KG(;@:BnS3l4%4\$Rv="w}!*~&VT0h  ti9R|N]dOq #{QuvTIJzP F661`nopqrCX}ZH+cOLmDkYsNlJE/[z>i$<dW%(Q" +,:X)|kWsE`o&8^;/C\^x[UU%d Procedures%s:(none)/Script-Fu/1 Procedure3D _Outline...3_D Truchet.../Script-Fu/Alchemy/Script-Fu/Alpha to Logo/Script-Fu/Animators/Script-Fu/Decor/Script-Fu/Render/Script-Fu/Selection/Script-Fu/Shadow/Script-Fu/Stencil Ops/Script-Fu/Utils/Help/The GIMP Online/Xtns/Script-Fu/Xtns/Script-Fu/Buttons/Xtns/Script-Fu/Logos/Xtns/Script-Fu/Make Brush/Xtns/Script-Fu/Misc/Xtns/Script-Fu/Patterns/Xtns/Script-Fu/Utils/Xtns/Script-Fu/Web Page Themes/Alien Glow/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/Xtns/Script-Fu/Web Page Themes/Classic.Gimp.OrgActive colorsAdd B_evel...Add _Border...Add backgroundAdd drop-shadowAdd glowingAdd shadowAdditional InformationAfter glowAirbrushAlien _Glow...Alien _Neon...Allow resizingAmplitudeAngleAntialiasApply generated layermaskApply layer mask (or discard)Author:AutocropAzimuthBG opacityB_asic II...B_urn-In...B_utton...Background ColorBackground ImageBackground colorBackground imageBar heightBar lengthBase colorBehaviourBevel height (Sharpness)Bevel height (sharpness)Bevel widthBlackBlack on whiteBlen_ded...Blend gradient (Text)Blend gradient (outline)Blend gradient (text)Blend modeBlock sizeBlur XBlur YBlur amountBlur borderBlur horizontallyBlur radiusBlur typeBlur verticallyBo_vination...Border X sizeBorder Y sizeBorder colorBorder sizeBorder size (pixels)BrushBrush nameBumpmap (alpha layer) blur radiusBurn-In: Need two layers in total!Burst colorC_arve-It...C_hrome-It...C_hrome...Carve raised textCarve white areasCarved...Cell size (pixels)Chalk colorChip Awa_y...Chip amountChrome balanceChrome factorChrome lightnessChrome saturationChrome white areasCircleCircuit seedClear unselected maskareaColorColor 1Color 2Color 3Color methodColumnsComic Boo_k...ConcaveCool _Metal...Copyright:Corona widthCreate new imageCreate shadowCreates four Guides around the bounding box of the current selection.Crystal...CubicCurrent CommandCustom GradientCustom _Gradient...Dark colorDarken only (Better, but only for images with alot of white)Date:Default bumpmap settingsDefocusDelta value on colorDensity (%)DepthDetail in MiddleDetail levelDiameterDirectionDownDraw _HSV Graph...Draws Spirographs, Epitrochoids and Lissajous Curves. More info at http://netword.com/*spyrogimpDrop shadowDrop shadow X offsetDrop shadow Y offsetDrop shadow blur radiusDrop shadow colorDrop shadow opacityEdge amountEdge behaviourEdge onlyEdge radiusEdge widthEffect size (pixels * 3)Effect size (pixels * 30)Effect size (pixels * 4)Effect size (pixels * 5)Effect size (pixels)ElevationElli_ptical, Feathered...End XEnd YEnd blendEnding blendEnvironment mapEpitrochoidEraseErase/fillError while executing %s -%sEvenEven/oddFG-BG-HSVFG-BG-RGBFG-TransparentFade awayFade from %Fade to %FadeoutFadeout widthFeatheringFile nameFilenameFill BG with patternFill angleFill with BGFlatten imageFontFont _size (pixels)Font colorFont size (pixels)Foreground colorFrameFrame colorFrame sizeFramesFrom top-left to bottom-rightGIMP ExtensionGIMP Plug-InGlo_ssy...Glo_wing Hot...Glow colorGlow radiusGlow size (pixels * 4)GradientGradient Beve_l...Gradient reverseGradient: Loop SawtoothGradient: Loop TriangleGranularityGranularity (1 is Low)Granularity (1 is low)Graph scaleH_eading...HeightHexagonHexagonsHighlight X offsetHighlight Y offsetHighlight balanceHighlight colorHighlight opacityHit rateHole ratioHorizontalIIRImage Types:Image heightImage sizeImage to carveImage widthImigre-26...Index imageIndex to n colors (0 = remain RGB)Inner teethInsert layer namesIntermediate framesInternal GIMP procedureInterpolationInvertInvert directionKeep backgroundKeep bump layerKeep selectionLand heightLeftLighting (degrees)Line _Nova...LinearLissajousLoopedLower colorLower color (active)Lower-right colorMake new backgroundMargin (pixels)Mask opacityMask sizeMax. blur radiusMosaic tile typeMottleN_eon...NameNew Guide (by _Percent)...New Guides from _SelectionNew _Guide...Newsprint Text...No background (only for separate layer)No matchesNoneNot pressedNot pressed (active)NumberNumber of X tilesNumber of Y tilesNumber of bandsNumber of colorsNumber of framesNumber of linesNumber of times to whirlOctagonsOddOffset (pixels)Offset XOffset YOffset radiusOffsets (pixels * 2)Oilify mask sizeOpacityOrientationOuter borderOuter teethOutline blur radiusOutline colorOutline gradient reverseOutline sizePad colorPad opacityPaddingPadding XPadding YPadding around textPadding for transparent regionsParametersPatternPattern (outline)Pattern (overlay)Pattern (text)Pattern namePencilPentagonPixel amountPixelizePlug-in _RegistryPolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPosition (in %)Prepare for GIFPressedProcedure BrowserQuarter sizeRLERadiusRadius (%)Radius (pixels)Random seedRandomnessRe_ctangular, Feathered...Relative distance of horizonRelative length of shadowRemove backgroundRender _Map...Return ValuesRibbon spacingRibbon widthRightRippling strengthRoughnessRound ratioRounded R_ectangle...RowsRows/colsSIOD OutputSOTA Chrome...Scale XScale YScript ArgumentsScript ProgressScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Palette SelectionScript-Fu Server OptionsScript-Fu _ConsoleScript-Fu cannot process two scripts at the same time.Script-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSea depthSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSelect-by-color thresholdSeparate layerSepiaServer Logfile:Server Port:ShadowShadow X offsetShadow Y offsetShadow blur radiusShadow colorShadow darknessShadow depthShadow weight (%)ShapeSharpness (degrees)Shear lengthShow Image _Structure...Simple _Beveled Button...SizeSmearSmoothSmooth horizontallySmooth verticallySolid ColorSpace between layersSpacingSpeed (pixels/frame)Speed Text...Sphere colorSpots density XSpots density YSpreadSpyrographSquareSquaresSta_rscape...StainsStarb_urst...Start XStart YStart angleStart blendStarting blendSupersampleSwirl-_Tile...T_ruchet...T_ube Sub-Button Label...Temporary ProcedureTextText Circle...Text colorText color (active)Text gradient reverseText patternThicknessThread densityThread intensityThread lengthThreshold (bigger 1<-->255 smaller)TileTo _Brush...To _ImageTo _Pattern...ToolTransparent backgroundTriangleTub_e Sub-Sub-Button Label...Turn from left to rightTypeUpUpper colorUpper color (active)Upper-left colorUse current gradientUse font _name as textUse growing selectionUse pattern for outline instead of gradientUse pattern for text instead of gradientUse pattern overlayUse selection bounds instead of belowsVerticalWavelengthWeb Title Header...Whirl amountWhirl angleWidthWidth of bandsWidth of gapsWork on copyWrapX divisionsY divisionsYou are already running the "%s" script._ASCII to Image..._ASCII to Layer..._Arrow..._Basic I..._Big Header..._Blend..._Border (pixels)_Browse..._Bullet..._Camouflage..._Chalk..._Circuit..._Clothify..._Coffee Stain..._Color scheme_Developer Web Site_Distress Selection..._Drop-Shadow..._Elliptical..._Erase every other Row..._Fade Outline..._Filter (regexp)_Flatland..._Font Map..._Frosty..._Fuzzy Border..._General Tube Labels..._Grid..._Hrule..._Labels_Land..._Lava..._Main Web Site_Old Photo..._Particle Trace..._Perspective..._Predator..._Rectangular..._Refresh Scripts_Remove all Guides_Rippling..._Round Button..._Round Corners..._Search:_Slide..._Small Header..._Sphere..._Spinning Globe..._Spyrogimp..._Start Server..._Swirly..._Text_Textured..._Tileable Blur..._Tube Button Label..._Unsharp Mask..._Waves..._Weave..._Xach-Effect...Project-Id-Version: es +%sEvenEven/oddFG-BG-HSVFG-BG-RGBFG-TransparentFade awayFade from %Fade to %FadeoutFadeout widthFeatheringFile nameFilenameFill BG with patternFill angleFill with BGFlatten imageFontFont _size (pixels)Font colorFont size (pixels)Foreground colorFrameFrame colorFrame sizeFramesFrom top-left to bottom-rightGIMP ExtensionGIMP Plug-InGlo_ssy...Glo_wing Hot...Glow colorGlow radiusGlow size (pixels * 4)GradientGradient Beve_l...Gradient reverseGradient: Loop SawtoothGradient: Loop TriangleGranularityGranularity (1 is Low)Granularity (1 is low)Graph scaleH_eading...HeightHexagonHexagonsHighlight X offsetHighlight Y offsetHighlight balanceHighlight colorHighlight opacityHit rateHole ratioHorizontalIIRImage Types:Image heightImage sizeImage to carveImage widthImigre-26...Index imageIndex to n colors (0 = remain RGB)Inner teethInsert layer namesIntermediate framesInternal GIMP procedureInterpolationInvertInvert directionKeep backgroundKeep bump layerKeep selectionLand heightLeftLighting (degrees)Line _Nova...LinearLissajousLoopedLower colorLower color (active)Lower-right colorMake new backgroundMargin (pixels)Mask opacityMask sizeMax. blur radiusMosaic tile typeMottleN_eon...NameNew Guide (by _Percent)...New Guides from _SelectionNew _Guide...Newsprint Text...No background (only for separate layer)No matchesNoneNot pressedNot pressed (active)NumberNumber of X tilesNumber of Y tilesNumber of bandsNumber of colorsNumber of framesNumber of linesNumber of times to whirlOctagonsOddOffset (pixels)Offset XOffset YOffset radiusOffsets (pixels * 2)Oilify mask sizeOpacityOrientationOuter borderOuter teethOutline blur radiusOutline colorOutline gradient reverseOutline sizePad colorPad opacityPaddingPadding XPadding YPadding around textPadding for transparent regionsParametersPatternPattern (outline)Pattern (overlay)Pattern (text)Pattern namePencilPentagonPixel amountPixelizePlug-in _RegistryPolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPosition (in %)Prepare for GIFPressedProcedure BrowserQuarter sizeRLERadiusRadius (%)Radius (pixels)Random seedRandomnessRe_ctangular, Feathered...Relative distance of horizonRelative length of shadowRemove backgroundRender _Map...Return ValuesRibbon spacingRibbon widthRightRippling strengthRoughnessRound ratioRounded R_ectangle...RowsRows/colsSIOD OutputSOTA Chrome...Scale XScale YScript ArgumentsScript ProgressScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Palette SelectionScript-Fu Server OptionsScript-Fu _ConsoleScript-Fu cannot process two scripts at the same time.Script-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSea depthSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSelect-by-color thresholdSeparate layerSepiaServer Logfile:Server Port:ShadowShadow X offsetShadow Y offsetShadow blur radiusShadow colorShadow darknessShadow depthShadow weight (%)ShapeSharpness (degrees)Shear lengthShow Image _Structure...Simple _Beveled Button...SizeSmearSmoothSmooth horizontallySmooth verticallySolid ColorSpace between layersSpacingSpeed (pixels/frame)Speed Text...Sphere colorSpots density XSpots density YSpreadSpyrographSquareSquaresSta_rscape...StainsStarb_urst...Start XStart YStart angleStart blendStarting blendSupersampleSwirl-_Tile...T_ruchet...T_ube Sub-Button Label...Temporary ProcedureTextText Circle...Text colorText color (active)Text gradient reverseText patternThicknessThread densityThread intensityThread lengthThreshold (bigger 1<-->255 smaller)TileTo _Brush...To _ImageTo _Pattern...ToolTransparent backgroundTriangleTub_e Sub-Sub-Button Label...Turn from left to rightTypeUpUpper colorUpper color (active)Upper-left colorUse current gradientUse font _name as textUse growing selectionUse pattern for outline instead of gradientUse pattern for text instead of gradientUse pattern overlayUse selection bounds instead of belowsVerticalWavelengthWeb Title Header...Whirl amountWhirl angleWidthWidth of bandsWidth of gapsWork on copyWrapX divisionsY divisionsYou are already running the "%s" script._Arrow..._Basic I..._Big Header..._Blend..._Border (pixels)_Browse..._Bullet..._Camouflage..._Chalk..._Circuit..._Clothify..._Coffee Stain..._Color scheme_Developer Web Site_Distress Selection..._Drop-Shadow..._Elliptical..._Erase every other Row..._Fade Outline..._Filter (regexp)_Flatland..._Font Map..._Frosty..._Fuzzy Border..._General Tube Labels..._Grid..._Hrule..._Labels_Land..._Lava..._Main Web Site_Old Photo..._Particle Trace..._Perspective..._Predator..._Rectangular..._Refresh Scripts_Remove all Guides_Rippling..._Round Button..._Round Corners..._Search:_Slide..._Small Header..._Sphere..._Spinning Globe..._Spyrogimp..._Start Server..._Swirly..._Text_Textured..._Tileable Blur..._Tube Button Label..._Unsharp Mask..._Waves..._Weave..._Xach-Effect...Project-Id-Version: es Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:48+0100 +POT-Creation-Date: 2004-12-28 15:42+0100 PO-Revision-Date: 2004-11-22 23:49+0100 Last-Translator: Language-Team: @@ -81,7 +79,7 @@ X-Generator: KBabel 1.3.1 Plural-Forms: nplurals=2; plural=(n != 1); -%d procedimientos%s: (ninguno)/Script-Fu/1 procedimiento_Contorno 3D...Truchet 3_D.../Script-Fu/Alquimia/Script-Fu/Alfa a logo/Script-Fu/Animadores/Script-Fu/Decoración/Script-Fu/Render/Script-Fu/Selección/Script-Fu/Sombra/Script-Fu/Ops. de escultura/Script-Fu/Utilidades/Ayuda/El GIMP en línea/Exts/Script-Fu/Exts/Script-Fu/Botones/Exts/Script-Fu/Logos/Exts/Script-Fu/Crear brocha/Exts/Script-Fu/Misc/Exts/Script-Fu/Patrones//Exts/Script-Fu/Utilidades/Exts/Script-Fu/Temas de Páginas Web/Resplandor alienígena/Exts/Script-Fu/Temas de Páginas Web/Patrón biselado/Exts/Script-Fu/Temas de páginas Web/Classic.Gimp.OrgColores activosAñadir _bisel...Añadir _borde...Añadir fondoAñadir sombra baseAñadir resplandorAñadir sombraInformación adicionalDespués de resplandecerAerógrafo_Resplandor alienígena…_Neón alienígena…Permitir redimensionadoAmplitudÁnguloAlisadoAplicar la máscara de capa generadaAplicar la máscara de capa (o descartar)Autor:Recortar automáticamenteAzimutOpacidad del fondoB_ásico II…_Quemado…_Botón...Color de fondoImagen de fondoColor de fondoImagen de fondoAltura de la barraLongitud de la barraColor baseComportamientoAltura del bisel (afilado)Altura del bisel (afilado)Anchura del biselNegroNegro sobre blanco_Fundido…[Blended]Degradado de fundido (texto)Degradado de fundido (contorno)Degradado de fundido (texto)Modo de fundidoTamaño de bloqueDesenfoque en XDesenfoque en YCantidad de desenfoque [blur]Borde de desenfoqueDesenfocar horizontalmenteRadio de desenfoqueTipo de desenfoqueDesenfocar verticalmenteBo_vinación…Tamaño X del bordeTamaño Y del bordeColor del bordeTamaño del bordeTamaño del borde (píxeles)BrochaNombre de la brochaTamaño del búfer (% altura del texto)Radio de desenfoque del mapa de relieve (capa alfa)Quemado: ¡Se necesitan dos capas en total!Color de la explosiónEsc_ulpir…_Cromar..._Cromar...Esculpir texto elevadoEsculpir las áreas blancasEsculpido…Tamaño de celda (píxeles)Color de la tiza_Desmenuzar…Cantidad de desmenuzado [Chip]Balance del cromadoFactor de cromadoLuminosidad del cromadoSaturación del cromadoCromar las áreas blancasCirculoSemilla del circuitoBorrar el área de máscara no seleccionadaColorColor 1Color 2Color 3Método de coloraciónColumnas_Libro de cómic…Cóncavo_Metal frío...Copyright:Ancho de la coronaCrear imagen nuevaCrear sombraCrea cuatro guías alrededor de la caja que bordea la selección actual.Cristal...CúbicoComando actualDegradado personalizado_Degradado personalizadoColor oscuroSólo oscurecer +%d procedimientos%s: (ninguno)/Script-Fu/1 procedimiento_Contorno 3D...Truchet 3_D.../Script-Fu/Alquimia/Script-Fu/Alfa a logo/Script-Fu/Animadores/Script-Fu/Decoración/Script-Fu/Render/Script-Fu/Selección/Script-Fu/Sombra/Script-Fu/Ops. de escultura/Script-Fu/Utilidades/Ayuda/El GIMP en línea/Exts/Script-Fu/Exts/Script-Fu/Botones/Exts/Script-Fu/Logos/Exts/Script-Fu/Crear brocha/Exts/Script-Fu/Misc/Exts/Script-Fu/Patrones//Exts/Script-Fu/Utilidades/Exts/Script-Fu/Temas de Páginas Web/Resplandor alienígena/Exts/Script-Fu/Temas de Páginas Web/Patrón biselado/Exts/Script-Fu/Temas de páginas Web/Classic.Gimp.OrgColores activosAñadir _bisel...Añadir _borde...Añadir fondoAñadir sombra baseAñadir resplandorAñadir sombraInformación adicionalDespués de resplandecerAerógrafo_Resplandor alienígena…_Neón alienígena…Permitir redimensionadoAmplitudÁnguloAlisadoAplicar la máscara de capa generadaAplicar la máscara de capa (o descartar)Autor:Recortar automáticamenteAzimutOpacidad del fondoB_ásico II…_Quemado…_Botón...Color de fondoImagen de fondoColor de fondoImagen de fondoAltura de la barraLongitud de la barraColor baseComportamientoAltura del bisel (afilado)Altura del bisel (afilado)Anchura del biselNegroNegro sobre blanco_Fundido…[Blended]Degradado de fundido (texto)Degradado de fundido (contorno)Degradado de fundido (texto)Modo de fundidoTamaño de bloqueDesenfoque en XDesenfoque en YCantidad de desenfoque [blur]Borde de desenfoqueDesenfocar horizontalmenteRadio de desenfoqueTipo de desenfoqueDesenfocar verticalmenteBo_vinación…Tamaño X del bordeTamaño Y del bordeColor del bordeTamaño del bordeTamaño del borde (píxeles)BrochaNombre de la brochaRadio de desenfoque del mapa de relieve (capa alfa)Quemado: ¡Se necesitan dos capas en total!Color de la explosiónEsc_ulpir…_Cromar..._Cromar...Esculpir texto elevadoEsculpir las áreas blancasEsculpido…Tamaño de celda (píxeles)Color de la tiza_Desmenuzar…Cantidad de desmenuzado [Chip]Balance del cromadoFactor de cromadoLuminosidad del cromadoSaturación del cromadoCromar las áreas blancasCirculoSemilla del circuitoBorrar el área de máscara no seleccionadaColorColor 1Color 2Color 3Método de coloraciónColumnas_Libro de cómic…Cóncavo_Metal frío...Copyright:Ancho de la coronaCrear imagen nuevaCrear sombraCrea cuatro guías alrededor de la caja que bordea la selección actual.Cristal...CúbicoComando actualDegradado personalizado_Degradado personalizadoColor oscuroSólo oscurecer (Mejor, pero sólo para imágenes con mucho blanco)Fecha:Ajustes predeterminados del mapa de relieveDesenfocarValor delta en el colorDensidad (%)ProfundidadPequeñas islasNivel de detalleDiámetroDirección AbajoDibujar gráfico _HSV...Dibuja espirografías, epitrotopías y curvas de Lissajous. Mas información en http://netword.com/*spyrogimpSombra baseDesplazamiento X de la sombra baseDesplazamiento Y de la sombra baseRadio de desenfoque de la sombra baseColor de la sombra baseOpacidad de la sombra baseGrosor del bordeComportamiento del bordeSólo bordeRadio del bordeAnchura del bordeTamaño del efecto (píxeles * 3)Tamaño del efecto (píxeles * 30)Tamaño del efecto (píxeles * 4)Tamaño del efecto (píxeles * 5)Tamaño del efecto (píxeles)ElevaciónElíptica,difuminada...X finalY finalFundido finalFundido finalMapa de entornoEpitrocoideBorrarBorrar/RellenarError durante la ejecución %s -%sParesPares/imparesFrente-fondo-HSVFrente-fondo-RGBFrente-transparenteDesvanecerseDesvanecer desde %Desvanecer hasta %DesvanecerAnchura del desvanecimientoDifuminarNombre de archivoArchivoRellenar fondo con patrónÁngulo de rellenoRellenar con fondoAplanar imagenTipografía_Tamaño de la tipografía (píxeles)Color de la tipografíaTamaño de la tipografía (píxeles)Color de primer planoCuadroColor del fotogramaTamaño del fotogramaFotogramasDe arriba-izquierda a abajo-derechaAñadido de El GimpExtensión de El Gimp_Bruñido...Calor _resplandeciente...Color del resplandorRadio del resplandorTamaño del resplandor (píxeles * 4)DegradadoBisel degradado... Degradado invertidoDegradado: Bucle diente de sierraDegradado: Bucle de triánguloGranularidadGranularidad (1 es menor)Granularidad (1 es menor)Escala del gráfico_Cabecera…AlturaHexágonoHexágonosDesplazamiento X del brilloDesplazamiento Y del brilloBalance del brilloColor del brilloOpacidad del brilloTasa de choquesRadio del hoyoHorizontalIIRTipos de imagen:Altura de imagenTamaño de la imagenImagen a esculpirAnchura de imagenImigre-26...Indexar imagenIndexar a n colores (0 = permanece RGB)Diente internoInsertar los nombres de las capasFotogramas intermediosProcedimiento interno de El GimpInterpolaciónInvertirInvertir direcciónMantener fondoMantener la capa de relieveMantener la selecciónAltura del terrenoIzquierdaIluminación (grados)Línea _nova...LinealLissajousBucleColor inferiorColor inferior (activo)Color inferior-derechoCrear nuevo fondoMargen (píxeles)Opacidad de máscaraTamaño de máscaraRadio Máx. de desenfoqueTipo de embaldosado del mosaicoMoteadoN_eón...NombreGuía nueva (por _porcentaje)...Guías nuevas desde la _selección_Guía nueva...Texto de nueva impresión...Sin fondo (sólo para capa separada)No hay coincidenciasNingunoNo pulsadoNo pulsado (activo)NúmeroNúmero de baldosas en XNúmero de baldosas en YNúmero de bandasNúmero de coloresNúmero de fotogramasNúmero de líneasNúmero de veces a girarOctógonosImparesDesplazamiento (píxeles)Desplazamiento en XDesplazamiento en YRadio de desplazamientoDesplazamiento (píxeles * 2)Tamaño de la máscara del óleoOpacidadOrientaciónBorde exteriorDiente exteriorRadio de desenfoque del contornoColor del contornoDegradado de contorno invertidoTamaño del contornoColor del relleno [pad]Opacidad del relleno [pad]Relleno [Padding]Relleno en XRelleno en YRellenado alrededor del texto [Padding]Relleno para las zonas transparentes [Padding]ParámetrosPatrónPatrón (contorno)Patrón (superpuesto)Patrón (texto)Nombre del patrónLápizPentágonoTamaño del píxelPixelizar_Registro de complementosPolígono: 10 ladosPolígono: 7 ladosPolígono: 8 ladosPolígono: 9 ladosPosición (en %)Preparar para GIFPulsadoExaminador de procedimientosUn cuarto del tamañoRLERadioRadio (%)Radio (píxeles)Semilla aleatoriaAleatoriedad_Rectangular,difuminada...Distancia relativa del horizonteLongitud relativa de la sombraQuitar fondo_Renderizar mapa...Valores de retornoEspacio entre lazosAncho del lazoDerechaFuerza de ondulaciónRugosidadRazón de redondeo_Rectángulo redondeado...FilasFilas/columnasSalida SIODCromado SOTA...Escala en XEscala en YArgumentos del scriptProgreso del scriptSelección de brocha de Script-FuSelección de color de Script-FuConsola Script-FuSelección de archivos de Script-FuSelección de carpetas de Script-FuSelección de tipografía de Script-FuSelección de degradado de Script-FuSelección de paleta de Script-FuOpciones de servidor de Script-Fu_Consola Script-FuScript-Fu no puede procesar dos scripts a la vez.El modo de consola de Script-Fu sólo permite invocación interactivaEl modo de evaluación de Script-Fu sólo permite invocación no interactivaScript-Fu: %sSelección de patrón de Script-FuProfundidad del océanoBuscar por _propagandaBuscar por _nombreBuscar aguardeBuscando por propaganda - aguardeBuscando por nombre - aguardeSemillaUmbral de selección por colorCapa separadaSepiaArchivo de registro del servidor: Puerto del servidor:SombraDesplazamiento X de la sombraDesplazamiento Y de la sombraRadio de desenfoque de la sombraColor de la sombraOscuridad de la sombraProfundidad de la sombraPeso de la sombra (%)FormaÁngulo de la púasLongitud de la inclinaciónMostrar la e_structura de la imagen...Botón simple _biselado...TamañoMancharSuaveSuavizado horizontalSuavizado verticalColor sólidoEspacio entre capasEspaciadoVelocidad (píxeles/cuadro)Velocidad del texto...Color de la esferaDensidad X de manchasDensidad Y de manchasDifusiónEspirógrafoCuadradoCuadradosSta_rscape...ManchasStarb_urst...Comienzo en XComienzo en YÁngulo inicialIniciar fundido [blend]Color inicial de fundidoSobremuestreo_Embaldosado de remolinos...T_ruchet...Etiqueta del _tubo de sub-botón...Procedimiento temporalTextoTexto circular...Color de textoColor del texto (activo)Texto degradado invertidoPatrón del textoGrosorDensidad de los hilosIntensidad de los hilosLongitud de los hilosUmbral (mayor 1<-->255 menor)MosaicoA _brocha...A _imagenA _patrón...HerramientaFondo transparenteTriánguloEtiqueta del sub-sub-botón...Girar de izquierda a derechaTipoArribaColor superiorColor superior (activo)Color superior-izquierdoUsar el degradado actualUsar el _nombre de la tipografía como textoUsar selección crecienteUsar patrón en lugar de degradado para el contornoUsar patrón para texto en vez de un degradadoUsar superposición de patrónUsar los límites de la selección en vez de los de abajoVerticalLongitud de ondaCabecera de título web...Fuerza del remolinoÁngulo del remolinoAnchuraAnchura de las bandasAnchura de los huecosTrabajar en copiaDesformarDivisiones XDivisiones YEstá ya ejecutando el script «%s»._ASCII a imagen…_ASCII a capa…_Flecha..._Básico I…Cabecera _grande..._Fundir..._Borde (píxeles)_Examinar..._Punto..._Camuflaje…_Tiza…_Circuito..._Entelar…Manchas de _café…Esquema de _coloresSitio web del _desarrollador_Distorsionar selección..._Sombra base_Elíptica..._Borrar las otras Filas..._Contorno de desvanecimiento..._Filtro (exp. reg.)_Aplanar... [Flatland]_Tipografía del mapa..._Congelado..._Difuminar borde...Etiquetas del tubo _general..._Rejilla..._Regla horizontal...E_tiquetas_Tierra..._Lava...Sitio web _principal_Foto antigua..._Trazado de partículas..._Perspectiva..._Voraz..._Rectangular..._Refrescar scripts_Quitar todas las guías_Ondas...Botón _redondo...Esquinas _redondeadasB_uscar:_Diapositiva...Cabecera _pequeña..._Esfera...Globo _giratorio..._Espirógrafo..._Iniciar servidor..._Remolino..._Texto_Texturizado...Desenfoque en_losable...Etiqueta del botón del _tubo_Desafilar máscara..._Ondas..._Weave...Efecto _Xach... \ No newline at end of file +%sParesPares/imparesFrente-fondo-HSVFrente-fondo-RGBFrente-transparenteDesvanecerseDesvanecer desde %Desvanecer hasta %DesvanecerAnchura del desvanecimientoDifuminarNombre de archivoArchivoRellenar fondo con patrónÁngulo de rellenoRellenar con fondoAplanar imagenTipografía_Tamaño de la tipografía (píxeles)Color de la tipografíaTamaño de la tipografía (píxeles)Color de primer planoCuadroColor del fotogramaTamaño del fotogramaFotogramasDe arriba-izquierda a abajo-derechaAñadido de El GimpExtensión de El Gimp_Bruñido...Calor _resplandeciente...Color del resplandorRadio del resplandorTamaño del resplandor (píxeles * 4)DegradadoBisel degradado... Degradado invertidoDegradado: Bucle diente de sierraDegradado: Bucle de triánguloGranularidadGranularidad (1 es menor)Granularidad (1 es menor)Escala del gráfico_Cabecera…AlturaHexágonoHexágonosDesplazamiento X del brilloDesplazamiento Y del brilloBalance del brilloColor del brilloOpacidad del brilloTasa de choquesRadio del hoyoHorizontalIIRTipos de imagen:Altura de imagenTamaño de la imagenImagen a esculpirAnchura de imagenImigre-26...Indexar imagenIndexar a n colores (0 = permanece RGB)Diente internoInsertar los nombres de las capasFotogramas intermediosProcedimiento interno de El GimpInterpolaciónInvertirInvertir direcciónMantener fondoMantener la capa de relieveMantener la selecciónAltura del terrenoIzquierdaIluminación (grados)Línea _nova...LinealLissajousBucleColor inferiorColor inferior (activo)Color inferior-derechoCrear nuevo fondoMargen (píxeles)Opacidad de máscaraTamaño de máscaraRadio Máx. de desenfoqueTipo de embaldosado del mosaicoMoteadoN_eón...NombreGuía nueva (por _porcentaje)...Guías nuevas desde la _selección_Guía nueva...Texto de nueva impresión...Sin fondo (sólo para capa separada)No hay coincidenciasNingunoNo pulsadoNo pulsado (activo)NúmeroNúmero de baldosas en XNúmero de baldosas en YNúmero de bandasNúmero de coloresNúmero de fotogramasNúmero de líneasNúmero de veces a girarOctógonosImparesDesplazamiento (píxeles)Desplazamiento en XDesplazamiento en YRadio de desplazamientoDesplazamiento (píxeles * 2)Tamaño de la máscara del óleoOpacidadOrientaciónBorde exteriorDiente exteriorRadio de desenfoque del contornoColor del contornoDegradado de contorno invertidoTamaño del contornoColor del relleno [pad]Opacidad del relleno [pad]Relleno [Padding]Relleno en XRelleno en YRellenado alrededor del texto [Padding]Relleno para las zonas transparentes [Padding]ParámetrosPatrónPatrón (contorno)Patrón (superpuesto)Patrón (texto)Nombre del patrónLápizPentágonoTamaño del píxelPixelizar_Registro de complementosPolígono: 10 ladosPolígono: 7 ladosPolígono: 8 ladosPolígono: 9 ladosPosición (en %)Preparar para GIFPulsadoExaminador de procedimientosUn cuarto del tamañoRLERadioRadio (%)Radio (píxeles)Semilla aleatoriaAleatoriedad_Rectangular,difuminada...Distancia relativa del horizonteLongitud relativa de la sombraQuitar fondo_Renderizar mapa...Valores de retornoEspacio entre lazosAncho del lazoDerechaFuerza de ondulaciónRugosidadRazón de redondeo_Rectángulo redondeado...FilasFilas/columnasSalida SIODCromado SOTA...Escala en XEscala en YArgumentos del scriptProgreso del scriptSelección de brocha de Script-FuSelección de color de Script-FuConsola Script-FuSelección de archivos de Script-FuSelección de carpetas de Script-FuSelección de tipografía de Script-FuSelección de degradado de Script-FuSelección de paleta de Script-FuOpciones de servidor de Script-Fu_Consola Script-FuScript-Fu no puede procesar dos scripts a la vez.El modo de consola de Script-Fu sólo permite invocación interactivaEl modo de evaluación de Script-Fu sólo permite invocación no interactivaScript-Fu: %sSelección de patrón de Script-FuProfundidad del océanoBuscar por _propagandaBuscar por _nombreBuscar aguardeBuscando por propaganda - aguardeBuscando por nombre - aguardeSemillaUmbral de selección por colorCapa separadaSepiaArchivo de registro del servidor: Puerto del servidor:SombraDesplazamiento X de la sombraDesplazamiento Y de la sombraRadio de desenfoque de la sombraColor de la sombraOscuridad de la sombraProfundidad de la sombraPeso de la sombra (%)FormaÁngulo de la púasLongitud de la inclinaciónMostrar la e_structura de la imagen...Botón simple _biselado...TamañoMancharSuaveSuavizado horizontalSuavizado verticalColor sólidoEspacio entre capasEspaciadoVelocidad (píxeles/cuadro)Velocidad del texto...Color de la esferaDensidad X de manchasDensidad Y de manchasDifusiónEspirógrafoCuadradoCuadradosSta_rscape...ManchasStarb_urst...Comienzo en XComienzo en YÁngulo inicialIniciar fundido [blend]Color inicial de fundidoSobremuestreo_Embaldosado de remolinos...T_ruchet...Etiqueta del _tubo de sub-botón...Procedimiento temporalTextoTexto circular...Color de textoColor del texto (activo)Texto degradado invertidoPatrón del textoGrosorDensidad de los hilosIntensidad de los hilosLongitud de los hilosUmbral (mayor 1<-->255 menor)MosaicoA _brocha...A _imagenA _patrón...HerramientaFondo transparenteTriánguloEtiqueta del sub-sub-botón...Girar de izquierda a derechaTipoArribaColor superiorColor superior (activo)Color superior-izquierdoUsar el degradado actualUsar el _nombre de la tipografía como textoUsar selección crecienteUsar patrón en lugar de degradado para el contornoUsar patrón para texto en vez de un degradadoUsar superposición de patrónUsar los límites de la selección en vez de los de abajoVerticalLongitud de ondaCabecera de título web...Fuerza del remolinoÁngulo del remolinoAnchuraAnchura de las bandasAnchura de los huecosTrabajar en copiaDesformarDivisiones XDivisiones YEstá ya ejecutando el script «%s»._Flecha..._Básico I…Cabecera _grande..._Fundir..._Borde (píxeles)_Examinar..._Punto..._Camuflaje…_Tiza…_Circuito..._Entelar…Manchas de _café…Esquema de _coloresSitio web del _desarrollador_Distorsionar selección..._Sombra base_Elíptica..._Borrar las otras Filas..._Contorno de desvanecimiento..._Filtro (exp. reg.)_Aplanar... [Flatland]_Tipografía del mapa..._Congelado..._Difuminar borde...Etiquetas del tubo _general..._Rejilla..._Regla horizontal...E_tiquetas_Tierra..._Lava...Sitio web _principal_Foto antigua..._Trazado de partículas..._Perspectiva..._Voraz..._Rectangular..._Refrescar scripts_Quitar todas las guías_Ondas...Botón _redondo...Esquinas _redondeadasB_uscar:_Diapositiva...Cabecera _pequeña..._Esfera...Globo _giratorio..._Espirógrafo..._Iniciar servidor..._Remolino..._Texto_Texturizado...Desenfoque en_losable...Etiqueta del botón del _tubo_Desafilar máscara..._Ondas..._Weave...Efecto _Xach... \ No newline at end of file diff -uraN gimp-2.2.0/po-script-fu/es.po gimp-2.2.1/po-script-fu/es.po --- gimp-2.2.0/po-script-fu/es.po 2004-12-19 03:34:27.000000000 +0100 +++ gimp-2.2.1/po-script-fu/es.po 2004-12-28 16:59:10.000000000 +0100 @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: es\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:48+0100\n" +"POT-Creation-Date: 2004-12-28 15:42+0100\n" "PO-Revision-Date: 2004-11-22 23:49+0100\n" "Last-Translator: \n" "Language-Team: \n" @@ -326,7 +326,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:5 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:4 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:6 -#: plug-ins/script-fu/scripts/asc2img.scm.h:8 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:4 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:5 #: plug-ins/script-fu/scripts/beveled-button.scm.h:3 @@ -367,7 +366,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:6 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:5 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:7 -#: plug-ins/script-fu/scripts/asc2img.scm.h:9 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:5 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:6 #: plug-ins/script-fu/scripts/beveled-button.scm.h:4 @@ -495,7 +493,6 @@ #: plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:2 #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:3 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:4 -#: plug-ins/script-fu/scripts/asc2img.scm.h:3 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:3 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:4 #: plug-ins/script-fu/scripts/blended-logo.scm.h:3 @@ -708,7 +705,6 @@ msgstr "Relleno [Padding]" #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:11 -#: plug-ins/script-fu/scripts/asc2img.scm.h:10 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:7 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:8 #: plug-ins/script-fu/scripts/beveled-button.scm.h:10 @@ -757,48 +753,6 @@ msgid "Width of gaps" msgstr "Anchura de los huecos" -#: plug-ins/script-fu/scripts/asc2img.scm.h:1 -#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 -#: plug-ins/script-fu/scripts/image-structure.scm.h:1 -msgid "/Script-Fu/Utils" -msgstr "/Script-Fu/Utilidades" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:2 -#: plug-ins/script-fu/scripts/font-map.scm.h:1 -#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 -msgid "/Xtns/Script-Fu/Utils" -msgstr "/Exts/Script-Fu/Utilidades" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:5 -#, no-c-format -msgid "Buffer amount (% height of text)" -msgstr "Tamaño del búfer (% altura del texto)" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:6 -#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 -msgid "File name" -msgstr "Nombre de archivo" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:7 -#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 -msgid "Filename" -msgstr "Archivo" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:11 -#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 -#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 -#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 -msgid "Transparent background" -msgstr "Fondo transparente" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:12 -msgid "_ASCII to Image..." -msgstr "_ASCII a imagen…" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:13 -msgid "_ASCII to Layer..." -msgstr "_ASCII a capa…" - #: plug-ins/script-fu/scripts/basic1-logo.scm.h:8 msgid "_Basic I..." msgstr "_Básico I…" @@ -848,6 +802,12 @@ msgid "Diameter" msgstr "Diámetro" +#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 +#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 +#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 +msgid "Transparent background" +msgstr "Fondo transparente" + #: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:4 msgid "H_eading..." msgstr "_Cabecera…" @@ -1448,6 +1408,11 @@ msgid "_Flatland..." msgstr "_Aplanar... [Flatland]" +#: plug-ins/script-fu/scripts/font-map.scm.h:1 +#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 +msgid "/Xtns/Script-Fu/Utils" +msgstr "/Exts/Script-Fu/Utilidades" + #: plug-ins/script-fu/scripts/font-map.scm.h:2 msgid "Active colors" msgstr "Colores activos" @@ -1715,6 +1680,11 @@ msgid "_Remove all Guides" msgstr "_Quitar todas las guías" +#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 +#: plug-ins/script-fu/scripts/image-structure.scm.h:1 +msgid "/Script-Fu/Utils" +msgstr "/Script-Fu/Utilidades" + #: plug-ins/script-fu/scripts/hsv-graph.scm.h:2 msgid "BG opacity" msgstr "Opacidad del fondo" @@ -2089,6 +2059,10 @@ msgid "Brush name" msgstr "Nombre de la brocha" +#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 +msgid "File name" +msgstr "Nombre de archivo" + #: plug-ins/script-fu/scripts/select-to-brush.scm.h:5 msgid "To _Brush..." msgstr "A _brocha..." @@ -2097,6 +2071,10 @@ msgid "To _Image" msgstr "A _imagen" +#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 +msgid "Filename" +msgstr "Archivo" + #: plug-ins/script-fu/scripts/select-to-pattern.scm.h:3 msgid "Pattern name" msgstr "Nombre del patrón" @@ -2558,5 +2536,14 @@ msgid "_Xach-Effect..." msgstr "Efecto _Xach..." +#~ msgid "Buffer amount (% height of text)" +#~ msgstr "Tamaño del búfer (% altura del texto)" + +#~ msgid "_ASCII to Image..." +#~ msgstr "_ASCII a imagen…" + +#~ msgid "_ASCII to Layer..." +#~ msgstr "_ASCII a capa…" + #~ msgid "Copy _Visible" #~ msgstr "Copiar _visible" diff -uraN gimp-2.2.0/po-script-fu/eu.gmo gimp-2.2.1/po-script-fu/eu.gmo --- gimp-2.2.0/po-script-fu/eu.gmo 2004-12-19 03:34:32.000000000 +0100 +++ gimp-2.2.1/po-script-fu/eu.gmo 2004-12-28 16:59:16.000000000 +0100 @@ -24,7 +24,7 @@ %s %sEvenFG-BG-HSVFG-BG-RGBFG-TransparentFadeoutFeatheringFilenameFill with BGFontFrameFramesGradientGradient: Loop SawtoothGradient: Loop TriangleGranularityGranularity (1 is Low)HeightHexagonHexagonsIIRImage Types:InvertInvert directionLeftLighting (degrees)LissajousLoopedMargin (pixels)MottleNo matchesNumberOctagonsOddOffset (pixels)Offset XOffset YOffsets (pixels * 2)OpacityOrientationPaddingPadding XPadding YPatternPencilPentagonPixelizePolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPrepare for GIFPressedRLERadiusRadius (pixels)RandomnessRightRoughnessRowsSIOD OutputScale XScale YScript ArgumentsScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Server OptionsScript-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSepiaServer Logfile:Server Port:ShadowShapeSharpness (degrees)SizeSmearSmoothSolid ColorSpacingSpeed (pixels/frame)Spots density XSpots density YSpreadSpyrographSquareSquaresStainsStart XStart YSupersampleTextThicknessTileToolTriangleTypeUpWavelengthWidthWrap_Border (pixels)_Filter (regexp)_Labels_Search:_TextProject-Id-Version: eu Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:48+0100 +POT-Creation-Date: 2004-12-28 15:42+0100 PO-Revision-Date: 2004-04-06 19:42+0200 Last-Translator: Iñaki Larrañaga Murgoitio Language-Team: Basque diff -uraN gimp-2.2.0/po-script-fu/eu.po gimp-2.2.1/po-script-fu/eu.po --- gimp-2.2.0/po-script-fu/eu.po 2004-12-19 03:34:27.000000000 +0100 +++ gimp-2.2.1/po-script-fu/eu.po 2004-12-28 16:59:11.000000000 +0100 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: eu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:48+0100\n" +"POT-Creation-Date: 2004-12-28 15:42+0100\n" "PO-Revision-Date: 2004-04-06 19:42+0200\n" "Last-Translator: Iñaki Larrañaga Murgoitio \n" "Language-Team: Basque \n" @@ -333,7 +333,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:5 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:4 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:6 -#: plug-ins/script-fu/scripts/asc2img.scm.h:8 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:4 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:5 #: plug-ins/script-fu/scripts/beveled-button.scm.h:3 @@ -374,7 +373,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:6 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:5 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:7 -#: plug-ins/script-fu/scripts/asc2img.scm.h:9 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:5 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:6 #: plug-ins/script-fu/scripts/beveled-button.scm.h:4 @@ -508,7 +506,6 @@ #: plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:2 #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:3 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:4 -#: plug-ins/script-fu/scripts/asc2img.scm.h:3 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:3 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:4 #: plug-ins/script-fu/scripts/blended-logo.scm.h:3 @@ -745,7 +742,6 @@ msgstr "Tarte betegarria" #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:11 -#: plug-ins/script-fu/scripts/asc2img.scm.h:10 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:7 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:8 #: plug-ins/script-fu/scripts/beveled-button.scm.h:10 @@ -794,53 +790,6 @@ msgid "Width of gaps" msgstr "Hutsuneen zabalera" -#: plug-ins/script-fu/scripts/asc2img.scm.h:1 -#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 -#: plug-ins/script-fu/scripts/image-structure.scm.h:1 -#, fuzzy -msgid "/Script-Fu/Utils" -msgstr "/Script-Fu/Utilitateak/_ASCII geruzara..." - -#: plug-ins/script-fu/scripts/asc2img.scm.h:2 -#: plug-ins/script-fu/scripts/font-map.scm.h:1 -#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 -#, fuzzy -msgid "/Xtns/Script-Fu/Utils" -msgstr "/Luzp/Script-Fu/Logotipoak/Ne_on..." - -#: plug-ins/script-fu/scripts/asc2img.scm.h:5 -#, fuzzy, no-c-format -msgid "Buffer amount (% height of text)" -msgstr "Bufferraren tamaina (testuaren altueraren %)" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:6 -#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 -#, fuzzy -msgid "File name" -msgstr "Fitxategi-izena" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:7 -#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 -msgid "Filename" -msgstr "Fitxategi-izena" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:11 -#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 -#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 -#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 -#, fuzzy -msgid "Transparent background" -msgstr "Atzeko plano gardena" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:12 -msgid "_ASCII to Image..." -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:13 -#, fuzzy -msgid "_ASCII to Layer..." -msgstr "/Script-Fu/Utilitateak/_ASCII geruzara..." - #: plug-ins/script-fu/scripts/basic1-logo.scm.h:8 msgid "_Basic I..." msgstr "" @@ -896,6 +845,13 @@ msgid "Diameter" msgstr "Diametroa" +#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 +#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 +#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 +#, fuzzy +msgid "Transparent background" +msgstr "Atzeko plano gardena" + #: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:4 msgid "H_eading..." msgstr "" @@ -1554,6 +1510,12 @@ msgid "_Flatland..." msgstr "" +#: plug-ins/script-fu/scripts/font-map.scm.h:1 +#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 +#, fuzzy +msgid "/Xtns/Script-Fu/Utils" +msgstr "/Luzp/Script-Fu/Logotipoak/Ne_on..." + #: plug-ins/script-fu/scripts/font-map.scm.h:2 #, fuzzy msgid "Active colors" @@ -1860,6 +1822,12 @@ msgid "_Remove all Guides" msgstr "" +#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 +#: plug-ins/script-fu/scripts/image-structure.scm.h:1 +#, fuzzy +msgid "/Script-Fu/Utils" +msgstr "/Script-Fu/Utilitateak/_ASCII geruzara..." + #: plug-ins/script-fu/scripts/hsv-graph.scm.h:2 #, fuzzy msgid "BG opacity" @@ -2281,6 +2249,11 @@ msgid "Brush name" msgstr "Brotxaren izena" +#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 +#, fuzzy +msgid "File name" +msgstr "Fitxategi-izena" + #: plug-ins/script-fu/scripts/select-to-brush.scm.h:5 #, fuzzy msgid "To _Brush..." @@ -2290,6 +2263,10 @@ msgid "To _Image" msgstr "" +#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 +msgid "Filename" +msgstr "Fitxategi-izena" + #: plug-ins/script-fu/scripts/select-to-pattern.scm.h:3 #, fuzzy msgid "Pattern name" @@ -2802,6 +2779,14 @@ msgid "_Xach-Effect..." msgstr "" +#, fuzzy +#~ msgid "Buffer amount (% height of text)" +#~ msgstr "Bufferraren tamaina (testuaren altueraren %)" + +#, fuzzy +#~ msgid "_ASCII to Layer..." +#~ msgstr "/Script-Fu/Utilitateak/_ASCII geruzara..." + #~ msgid "/Xtns/Script-Fu/_Refresh Scripts" #~ msgstr "/Luzp/Script-Fu/_Freskatu script-ak..." diff -uraN gimp-2.2.0/po-script-fu/fi.gmo gimp-2.2.1/po-script-fu/fi.gmo --- gimp-2.2.0/po-script-fu/fi.gmo 2004-12-19 03:34:32.000000000 +0100 +++ gimp-2.2.1/po-script-fu/fi.gmo 2004-12-28 16:59:16.000000000 +0100 @@ -1,23 +1,89 @@ -GTa !)1BSZaiq -y   -"- =IQYah nz;9T=   / P p v          Y M Q ] -f q -}    -  -   # $ 1 : -@ K U ] i o -x          ) ; X u   B H \j  + 0:M`gw~53*=6,E8G - ;4 $% "B-'D2A(?@&# F0</1.9)>+C!:7%s:/Script-Fu/Author:AzimuthBackground ColorBackground ImageBlur XBlur YColor 1Color 2Color 3Copyright:Current CommandDate:DefocusDepthDiameterDownError while executing + * *** * ***+3+O+g++++++ +, #,D,#c,,!,,3,8-9S- - ---- - +-- +...(.7. F.P. V.`.z.... +. . . +...// +$/ +// +:/ E/O/h/ /// //// +/ +/ 00 0 #0/0 A0 M0W0g0 v0 0 0 000 +0!0"0 1 "1 /1 +=1H1Z1 l1v1 1 1 11 11112 220262>2F2 N2[2c2r2z2 +2 22 2E2 +333'373 +K3<V33333 333 33 444`*4 444444 4 5 5 $5 +05;5T5n555 5555 5 55 66 +6)6E6J6 S6 ]6g6 v6 6 66 6 +6 666 +6 6 67 7 + 7+7>7O7 U7 +a7l7s77 7 +77 +7 77778#8;8 S8_8v8 8 8888888899 + 9 ++969 :9 G9 +T9_9 n9 z9"9 9999 9: ::*::: I:U:Z: m:{: :: ::::: : :;;#;*;3;8;S; n;|;'; +;; ;;;;<<"<3<D<T<m<v<z<<< <<<< < < << == 8= E= O=[= c= m=w== +===== ==> >>$>6>H>Y>j>{>>>> >>> +>> > +>>?7?Q?c? r?? ??? ? ??? ? ?? +@@@+@;@U@o@@@@@@A A63A9jA=A AA BB'B7B OBpBBBBBB BBBBC C(C 8CECWC]C qC~CCCCCCC CC +DD 'D 5DBDRDbD +iDtD{D DD DDD D DD DDD EE + E+E?E UE bElE{E E#EE E EEEEFF&F+F .F:FOF`FuFF+F(FF& G2G +;GFG ZG gGsGyG G GG G G(G G GG HH +)H +4H?H NH XH dHqH HHHHHHH H + II(I 1I;ICILIUI dIrIIIII IIIIJ +JJ 1J?J +PJ[J aJnJJ J JJ#JKK K KL L#L*=LhL LLLLL M'M DM#eM&M%M#MM"N4=N8rN=NNN OO .O m Qm]m pm|mmmm mmmmmm n #n/nCnXn_npnynnn +nnnnn n ooigf1*;[MN Pnop#" pAUf0Frzk}T?<d ^Bq:N=|v)"zl ce$_Q'w?V@KEZ7Vq&>C58jlO);2:S+hWs `enM,u\1(LBa .&d=3~Fi5(@,yA$`R+ +J-t{6yY!SDP%U]>4XcEb'mD8% +6I4Ob~x_HIQL!2 -j/9 tmGk]Z./hX{^|HGx <}or0*ga #v9C7R3uY[w\TJWKs%d Procedures%s:(none)/Script-Fu/1 Procedure3D _Outline.../Script-Fu/Alchemy/Script-Fu/Alpha to Logo/Script-Fu/Animators/Script-Fu/Decor/Script-Fu/Render/Script-Fu/Selection/Script-Fu/Shadow/Script-Fu/Stencil Ops/Script-Fu/Utils/Help/The GIMP Online/Xtns/Script-Fu/Xtns/Script-Fu/Buttons/Xtns/Script-Fu/Logos/Xtns/Script-Fu/Make Brush/Xtns/Script-Fu/Misc/Xtns/Script-Fu/Patterns/Xtns/Script-Fu/Utils/Xtns/Script-Fu/Web Page Themes/Alien Glow/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/Xtns/Script-Fu/Web Page Themes/Classic.Gimp.OrgActive colorsAdd B_evel...Add _Border...Add backgroundAdd drop-shadowAdd glowingAdd shadowAdditional InformationAfter glowAirbrushAlien _Glow...Alien _Neon...Allow resizingAmplitudeAngleAntialiasApply generated layermaskApply layer mask (or discard)Author:AutocropAzimuthBG opacityB_asic II...B_urn-In...B_utton...Background ColorBackground ImageBackground colorBackground imageBar heightBar lengthBase colorBehaviourBevel height (Sharpness)Bevel height (sharpness)Bevel widthBlackBlack on whiteBlen_ded...Blend gradient (Text)Blend gradient (outline)Blend gradient (text)Blend modeBlock sizeBlur XBlur YBlur amountBlur borderBlur horizontallyBlur radiusBlur typeBlur verticallyBo_vination...Border X sizeBorder Y sizeBorder colorBorder sizeBorder size (pixels)BrushBrush nameBumpmap (alpha layer) blur radiusBurn-In: Need two layers in total!Burst colorC_arve-It...C_hrome-It...C_hrome...Carve raised textCarve white areasCarved...Cell size (pixels)Chalk colorChip Awa_y...Chip amountChrome balanceChrome factorChrome lightnessChrome saturationChrome white areasCircleCircuit seedClear unselected maskareaColorColor 1Color 2Color 3Color methodColumnsComic Boo_k...ConcaveCool _Metal...Copyright:Corona widthCreate new imageCreate shadowCreates four Guides around the bounding box of the current selection.Crystal...CubicCurrent CommandCustom GradientCustom _Gradient...Dark colorDarken only +(Better, but only for images with alot of white)Date:Default bumpmap settingsDefocusDelta value on colorDensity (%)DepthDetail in MiddleDetail levelDiameterDirectionDownDraw _HSV Graph...Draws Spirographs, Epitrochoids and Lissajous Curves. More info at http://netword.com/*spyrogimpDrop shadowDrop shadow X offsetDrop shadow Y offsetDrop shadow blur radiusDrop shadow colorDrop shadow opacityEdge amountEdge behaviourEdge onlyEdge radiusEdge widthEffect size (pixels * 3)Effect size (pixels * 30)Effect size (pixels * 4)Effect size (pixels * 5)Effect size (pixels)ElevationElli_ptical, Feathered...End XEnd YEnd blendEnding blendEnvironment mapEpitrochoidEraseErase/fillError while executing %s -%sFilenameFontFrameGradientGranularityHeightImage Types:LeftLoopedMottleNo matchesOffset (pixels)OrientationPaddingPatternPressedRadiusRightSIOD OutputScript ArgumentsScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Server OptionsScript-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSepiaServer Logfile:Server Port:SizeSmoothSpots density XSpots density YStainsSupersampleTextThicknessUpWidth_Search:Project-Id-Version: script-fu +%sEvenEven/oddFG-BG-HSVFG-BG-RGBFG-TransparentFade awayFade from %Fade to %FadeoutFadeout widthFeatheringFile nameFilenameFill BG with patternFill angleFill with BGFlatten imageFontFont _size (pixels)Font colorFont size (pixels)Foreground colorFrameFrame colorFrame sizeFramesFrom top-left to bottom-rightGIMP ExtensionGIMP Plug-InGlo_ssy...Glo_wing Hot...Glow colorGlow radiusGlow size (pixels * 4)GradientGradient Beve_l...Gradient reverseGradient: Loop SawtoothGradient: Loop TriangleGranularityGranularity (1 is Low)Granularity (1 is low)Graph scaleH_eading...HeightHexagonHexagonsHighlight X offsetHighlight Y offsetHighlight balanceHighlight colorHighlight opacityHit rateHole ratioHorizontalIIRImage Types:Image heightImage sizeImage to carveImage widthIndex imageIndex to n colors (0 = remain RGB)Inner teethInsert layer namesIntermediate framesInternal GIMP procedureInterpolationInvertInvert directionKeep backgroundKeep bump layerKeep selectionLand heightLeftLighting (degrees)Line _Nova...LinearLissajousLoopedLower colorLower color (active)Lower-right colorMake new backgroundMargin (pixels)Mask opacityMask sizeMax. blur radiusMosaic tile typeMottleN_eon...NameNew Guide (by _Percent)...New Guides from _SelectionNew _Guide...Newsprint Text...No background (only for separate layer)No matchesNoneNot pressedNot pressed (active)NumberNumber of X tilesNumber of Y tilesNumber of bandsNumber of colorsNumber of framesNumber of linesNumber of times to whirlOctagonsOddOffset (pixels)Offset XOffset YOffset radiusOffsets (pixels * 2)Oilify mask sizeOpacityOrientationOuter borderOuter teethOutline blur radiusOutline colorOutline gradient reverseOutline sizePad colorPad opacityPaddingPadding XPadding YPadding around textPadding for transparent regionsParametersPatternPattern (outline)Pattern (overlay)Pattern (text)Pattern namePencilPentagonPixel amountPixelizePlug-in _RegistryPolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPosition (in %)Prepare for GIFPressedProcedure BrowserQuarter sizeRLERadiusRadius (%)Radius (pixels)Random seedRandomnessRe_ctangular, Feathered...Relative distance of horizonRelative length of shadowRemove backgroundRender _Map...Return ValuesRibbon spacingRibbon widthRightRippling strengthRoughnessRound ratioRounded R_ectangle...RowsRows/colsSIOD OutputSOTA Chrome...Scale XScale YScript ArgumentsScript ProgressScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Palette SelectionScript-Fu Server OptionsScript-Fu _ConsoleScript-Fu cannot process two scripts at the same time.Script-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSea depthSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSelect-by-color thresholdSeparate layerSepiaServer Logfile:Server Port:ShadowShadow X offsetShadow Y offsetShadow blur radiusShadow colorShadow darknessShadow depthShadow weight (%)ShapeSharpness (degrees)Shear lengthShow Image _Structure...Simple _Beveled Button...SizeSmearSmoothSmooth horizontallySmooth verticallySolid ColorSpace between layersSpacingSpeed (pixels/frame)Speed Text...Sphere colorSpots density XSpots density YSpreadSpyrographSquareSquaresSta_rscape...StainsStarb_urst...Start XStart YStart angleStart blendStarting blendSupersampleSwirl-_Tile...Temporary ProcedureTextText Circle...Text colorText color (active)Text gradient reverseText patternThicknessThread densityThread intensityThread lengthThreshold (bigger 1<-->255 smaller)TileTo _Brush...To _ImageTo _Pattern...ToolTransparent backgroundTriangleTurn from left to rightTypeUpUpper colorUpper color (active)Upper-left colorUse current gradientUse font _name as textUse growing selectionUse pattern for outline instead of gradientUse pattern for text instead of gradientUse pattern overlayUse selection bounds instead of belowsVerticalWavelengthWeb Title Header...Whirl amountWhirl angleWidthWidth of bandsWidth of gapsWork on copyWrapX divisionsY divisionsYou are already running the "%s" script._Arrow..._Basic I..._Big Header..._Blend..._Border (pixels)_Browse..._Bullet..._Camouflage..._Chalk..._Circuit..._Clothify..._Coffee Stain..._Color scheme_Developer Web Site_Drop-Shadow..._Elliptical..._Erase every other Row..._Fade Outline..._Filter (regexp)_Font Map..._Frosty..._Fuzzy Border..._Grid..._Hrule..._Labels_Land..._Lava..._Main Web Site_Old Photo..._Particle Trace..._Perspective..._Rectangular..._Refresh Scripts_Remove all Guides_Rippling..._Round Button..._Round Corners..._Search:_Small Header..._Sphere..._Spinning Globe..._Spyrogimp..._Start Server..._Swirly..._Text_Textured..._Tileable Blur..._Unsharp Mask..._Waves..._Weave..._Xach-Effect...Project-Id-Version: script-fu Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:48+0100 -PO-Revision-Date: 2004-03-19 01:51+0200 -Last-Translator: Ville Hautamäki -Language-Team: Finnish +POT-Creation-Date: 2004-12-28 15:42+0100 +PO-Revision-Date: 2004-12-18 06:42+0200 +Last-Translator: Mikko Paananen +Language-Team: fi MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8-bit -%s:/Script-Fu/Tekijä:AtsimuuttiTaustaväriTaustakuvaSumenna XSumenna YVäri 1Väri 2Väri 3Copyright:Nykyinen komentoPäiväys:EpäteräväSyvyysHalkaisija:AlasScript-Fu Virhe suorittaessa +%d proseduuria%s:(ei mitään)/Script-Fu/Yksi proseduuri3D reunus.../Script-Fu/Alchemy/Script-Fu/Läpinäkyvyydestä logo/Script-Fu/Animaatiot/Script-Fu/Koristeelliset/Script-Fu/Luo/Script-Fu/Valinta/Script-Fu/Varjo/Script-Fu/Stensiilit/Script-Fu/Työkalut/Help/GIMP verkossa/Laajennokset/Script-Fu/Xtns/Script-Fu/Painikkeet/Laajennokset/Script-Fu/Logot/Xtns/Script-Fu/Luo sivellin/Xtns/Script-Fu/Sekalaiset/Xtns/Script-Fu/Kuviot/Xtns/Script-Fu/Työkalut/Xtns/Script-Fu/Web-sivu teemat/Alien-hohto/Xtns/Script-Fu/Web-sivu teemat/Viistottu kuvio/Xtns/Script-Fu/Web-sivu teemat/Gimp.Org (klassinen)Aktiiviset väritLisää viiste...Lisää reunus...Lisää taustaLisää varjoLisää hohtoLisää varjoLisätietojaJälkihohtoRuiskuAlienhehku...Alien _neon...Salli koon muuttaminenVoimakkuusKulmaReunan pehmennysSovella luotua tasomaskiaKäytä tason maskia (tai hylkää)Tekijä:AutomaattirajausAtsimuuttiTaustan peittoPerus IIPolta...P_ainike...TaustaväriTaustakuvaTaustaväriTaustakuvaViivan korkeusViivan pituusPerusväriKäyttäytyminenViistouksen korkeus (terävyys)Viistouksen korkeus (terävyys)Viisteen leveysMustaMusta valkoisellaSekoitettu...Väriliuku (teksti)Väriliuku (ulkoreuna)Väriliuku (teksti)SekoitustilaPalan kokoSumenna XSumenna YSumennuksen määräPehmennysreunaSumenna vaakasuoraanPehmennuksen sädeSumennustyyppiSumenna pystysuoraanLehmätys...Reunan X kokoReunan Y kokoReunan väriReunuksen kokoReunuksen koko (pikseliä)SivellinSiveltimen nimiKuhmutuksen säde (Alfatasolla)Polta: tarvitaan kaksi tasoa!Ryöpyn väriKaiverra..._Kromita..._Kromi...Kaiverra teksti koholleKaiverra vaaleat alueetKaiverrettu...Solun koko (pikseliä)Liidun väriSirpaleista...Sirpaleen määräKromitasapainoKromikerroinKromivalotusKromikylläisyysKromaa valkoiset alueetYmpyräSiemenlukuTyhjennä valitsematon maskialueVäriVäri 1Väri 2Väri 3VärimetodiSarakkeetSarjakuva...KoveraViileä metalli...Copyright:Koronan paksuusLuo uusi kuvaLuo varjoLuo neljä apulinjaa valinnan ympärille.Kristalli...NeliöllinenNykyinen komentoOma väriliukuOma väriliuku...Tumma väriVain tummennus +(Parempi, mutta vain kuvilla jossa on paljon valkoista)Päiväys:Kuhmutuksen perusasetuksetEpäteräväVärin muutosarvoTiheys (%)SyvyysYksityiskohdat keskelläYksityiskohtatasoHalkaisija:SuuntaAlasPiirrä _HSV graafi...Piirrä spirograafeja, epitrosoideja ja Lissajoun käyriä. Lisätietoja http://netword.com/*spyrogimpVarjoVarjon X siirtymäVarjon Y siirtymäVarjon sumennuksen sädeVarjon väriVarjon peittoReunan määräReunan käytösVain reunaReunan sädeReunan leveysEfektin koko (pikseliä × 3)Efektin koko (pikseliä × 30)Efektin koko (pikseliä × 4)Efektin koko (pikseliä × 5)Efektin koko (pikseliä)KohoamaElliptinen, sulitettu...Loppu XLoppu YLopun sekoitusLopun sekoitusYmpäristökarttaEpitrosoidiPoistaPoista/täytäScript-Fu Virhe suorittaessa %s -%sTiedostonimiKirjasinKehysVäriliukuRakeisuusKorkeusKuvatyypit:VasenSilmukkaLäikikäsEi löytynytSiirtymä (pikseliä)SuuntaReunustusKuvioPainettuSädeOikeaSIOD-tulosteScriptin parametritScript-Fu siveltimien selainScript-Fu värien selainScript-Fu-konsoliScript-Fu tiedostojen selainScript-Fu kansioiden valintaScript-Fu merkistön valintaScript-Fu väriliukumien selainScript-Fu palvelimen valinnatScript-Fu konsoli moodi sallii ainoastaan interaktiivisen käytönScript-Fu:n evaluointitila sallii ainoastaan ei-interaktiivisen käytönScript-Fu: %sScript-fu kuvioiden selainEtsi kuvauksellaEtsi nimelläEtsitään – odotaEtsitään kuvauksella – odotaEtsitään nimellä – odotaSeepiaPalvelimen lokitiedosto:Palvelimen portti:KokoPehmennysKuvioiden tiheys XKuvioiden tiheys YTahratYlinäytteistysTekstiPaksuusYlösLeveys_Etsi: \ No newline at end of file +%sParillinenParillinen/paritonEdusta-tausta-HSVEdusta-tausta-RGBEdusta-läpinäkyväHäivytysHäivytä %:staHäivytä %:iinHäivytysHäivytyksen leveysSulitusTiedostonimiTiedostonimiTäytä tausta kuviollaTäyttökulmaTäytä taustallaYhdistä kuvaKirjasinKirjasin_koko (pikseliä)Kirjasinmen väriKirjasinkoko (pikseleinä)EdustaväriKehysRuudun väriRuudun kokoRuutujaYlhäältä vasemmalta - alas oikealleGIMP-laajennusGIMP-liitännäinenKiiltävä...Hehkuva kuuma...Hehkun väriHehkun sädeHehkun koko (pikseliä × 4)VäriliukuViistottu väriliuku...Väriliuku takaperinVäriliuku: toistuva saha-aaltoVäriliuku: toistuva kolmioRakeisuusRakeisuus (1 on matala)Rakeisuus (1 on matala)Graafin skaalaOtsikko...KorkeusHeksagoniHeksagonitKorostuksen X siirtymäKorostuksen Y siirtymäValaistustasapainoKorostusväriKorostuksen peittoOsumasuhdeReiän suhdeVaakasuoraIIRKuvatyypit:Kuvan korkeusKuvan kokoKaiverrettava kuvaKuvan leveysIndeksikuvaIndeksi n:ksi väriksi (0 = säilytä RGB)SisähammastusLisää tasojen nimetVäliruutujaSisäinen proseduuriInterpolaatioKäännäKäänteinen suuntaSäilytä taustaSäilytä kuhmutustasoSäilytä valintaMaan korkeusVasenValaistus (astetta)Line _Nova...LineaarinenLissajouSilmukkaAlempi väriAlempi väri (aktiivinen)Oikean alareunan väriLuo uusi taustaMarginaali (pikseliä)Maskin peittoMaskin kokoSuurin sumennussädeMosaiikkiLäikikäsN_eon...NimiUusi apulinja (%)...Uudet apulinjat valinnastaUusi apulinja...Sanomalehtiteksti...Ei taustaa (vain erilliselle tasolle)Ei löytynytEi mitäänEi painettuEi painettu (aktiivinen)NumeroLohkoja vaakasuoraanLohkoja pystysuuntaanKaistojen määräVärien määräRuutujen määräViivojen määräPyörteen kierroksetOktagonitParitonSiirtymä (pikseliä)Siirtymä XSiirtymä YSiirtymän sädeSiirtymä (pikseliä × 2)Öljyväri-maskin kokoPeittoSuuntaUlkoreunusUlkohammastusUlkoreunan sumennuksen sädeUlkoreunan väriKäänteinen ulkoreunan väriliukuUlkoreunan kokoTäyttökuvion väriTäyttökuvion peittoReunustusReunustus XReunustus YTekstin reunustusTäyttö läpinäkyville alueilleParametritKuvioKuvio (ulkoreuna)Kuvio (päällystaso)Kuvio (teksti)Kuvion nimiKynäPentagoniPikselimääräPikselöiLiitännäisrekisteri10-sivuinen polygoni7-sivuinen polygoni8-sivuinen polygoni9-sivuinen polygoniSijainti (%:na)Optimoi GIFPainettuProseduuriselainNeljänneskokoRLESädeSäde (%)Säde (pikseliä)SiemenlukuSatunnaisuusNelikulmio, sulitettu...Suhteellinen etäisyys horisontistaVarjon suhteellinen pituusPoista taustaLuo kartta...PaluuarvotNauhojen väliNauhan leveysOikeaAaltoilun voimakkuusEpätasaisuusPyöreyssuhdePyö_ristetty neliö...RivitRivit/SarakkeetSIOD-tulosteSOTA kromi...Skaalaa XSkaalaa YKomentosarjan parametritKomentosarjan eteneminenScript-Fu siveltimien selainScript-Fu värien selainScript-Fu-konsoliScript-Fu tiedostojen selainScript-Fu kansioiden valintaScript-Fu merkistön valintaScript-Fu väriliukumien selainScript-fu palettien selainScript-Fu palvelimen valinnatScript-Fu-konsoliScript-Fu ei voi suorittaa kahta komentosarjaa samaan aikaan.Script-Fu konsoli moodi sallii ainoastaan interaktiivisen käytönScript-Fu:n evaluointitila sallii ainoastaan ei-interaktiivisen käytönScript-Fu: %sScript-fu kuvioiden selainVeden syvyysEtsi kuvauksellaEtsi nimelläEtsitään – odotaEtsitään kuvauksella – odotaEtsitään nimellä – odotaSiemenValitse-värin-mukaan rajaErillinen tasoSeepiaPalvelimen lokitiedosto:Palvelimen portti:VarjoVarjon X siirtymäVarjon Y siirtymäVarjon sumennuksen sädeVarjon väriVarjon tummuusVarjon syvyysVarjon vahvuus (%)MuotoTerävyys (astetta)Väännön pituusNäytä kuvan _rakenne...Yksinkertainen viistottu painike...KokoTuhriPehmennysPehmennä vaakasuuntaanPehmennä pystysuuntaanYhtenäinen väriTila tasojen välissäVälistysNopeus (pikseliä/ruutu)Vauhtiteksti...Pallon väriKuvioiden tiheys XKuvioiden tiheys YLevitäSpirograafiNeliöNeliötTähdistöTahratTähtiryöppy...Alku XAlku YAlkukulmaAlun sekoitusAlun sekoitusYlinäytteistysPyörrekuvioVäliaikainen proseduuriTekstiTekstiympyräTekstin väriTekstin väri (aktiivinen)Tekstiväriliuku takaperinTekstin kuvioPaksuusLangan tiheysLangan voimakkuusLangan pituusRaja (iso 1<-->255 pieni)Lohko_Siveltimeksi..._Kuvaksi...Kuvioksi...TyökaluLäpinäkyvä taustaKolmioKäänny vasemmalta oikealleTyyppiYlösYlempi väriYlempi väri (aktiivinen)Vasemman yläreunan väriKäytä valittua väriliukuaKäytä kirjasimen nimeä tekstinäKäytä kasvavaa valintaaKäytä kuviota ulkoreunalla väriliu'un sijaanKäytä kuviota tekstissä väriliu'un sijaanKäytä päällystason kuviotaKäytä valinnan rajojaPystysuoraAallonpituusWeb-otsikko...Pyörteen määräPyörteen kulmaLeveysKaistojen leveysVälien leveysTyöskentele kopiollaKierräX jakoY jakoKomentosarja "%s" on jo ajossa._Nuoli...Perus IIso otsikko..._Sekoita..._Reunus (pikseliä)_Selaa..._Kohta...Naamioväri..._Liitu..._Piiri...KangasKahvitahra..._VäriskeemaKehittäjien sivustoVarjo...Elliptinen..._Poista joka toinen rivi...Häivytä reuna..._Suodatin (regexp)_Kirjasinkartta...Hileinen...Häivytä reuna...Ristikko..._Vaakaerotin..._NimiötMaa..._Lava...Web-sivustoVanha valokuva...Hiukkasen jäljitysPerspektiivi...Neliömäinen...Päivitä skriptitPoista kaikki apulinjatAaltoilu...Pyöreä painike...Pyöristä reunat..._Etsi:Pieni otsikko...Pallo...Pyörivä maapallo...Spirograafi...Käynnistä palvelin...Pyörre..._TekstiPinnoitettu..._Saumaton sumennus...Sumennusmaski...Aallot...Kudos..._Xach-efekti... \ No newline at end of file diff -uraN gimp-2.2.0/po-script-fu/fi.po gimp-2.2.1/po-script-fu/fi.po --- gimp-2.2.0/po-script-fu/fi.po 2004-12-19 03:34:27.000000000 +0100 +++ gimp-2.2.1/po-script-fu/fi.po 2004-12-28 16:59:11.000000000 +0100 @@ -1,15 +1,16 @@ -# Gimp 1.2 script-fu finnish translation +# Gimp script-fu finnish translation # Copyright (C) 2000 Free Software Foundation, Inc. # Ville Hautamäki , 2000. -# +# Päivitti versiota 2.0 varten +# Mikko Paananen msgid "" msgstr "" "Project-Id-Version: script-fu \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:48+0100\n" -"PO-Revision-Date: 2004-03-19 01:51+0200\n" -"Last-Translator: Ville Hautamäki \n" -"Language-Team: Finnish \n" +"POT-Creation-Date: 2004-12-28 15:42+0100\n" +"PO-Revision-Date: 2004-12-18 06:42+0200\n" +"Last-Translator: Mikko Paananen \n" +"Language-Team: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8-bit\n" @@ -32,9 +33,8 @@ msgstr "Nykyinen komento" #: plug-ins/script-fu/script-fu-console.c:267 -#, fuzzy msgid "_Browse..." -msgstr "Selaa..." +msgstr "_Selaa..." #: plug-ins/script-fu/script-fu-console.c:548 msgid "Script-Fu evaluate mode allows only noninteractive invocation" @@ -42,12 +42,12 @@ #: plug-ins/script-fu/script-fu-interface.c:177 msgid "Script-Fu cannot process two scripts at the same time." -msgstr "" +msgstr "Script-Fu ei voi suorittaa kahta komentosarjaa samaan aikaan." #: plug-ins/script-fu/script-fu-interface.c:179 #, c-format msgid "You are already running the \"%s\" script." -msgstr "" +msgstr "Komentosarja \"%s\" on jo ajossa." #. strip the first part of the menupath if it contains _("/Script-Fu/") #: plug-ins/script-fu/script-fu-interface.c:202 @@ -63,7 +63,7 @@ #. the script arguments frame #: plug-ins/script-fu/script-fu-interface.c:254 msgid "Script Arguments" -msgstr "Scriptin parametrit" +msgstr "Komentosarjan parametrit" #. we add a colon after the label; #. some languages want an extra space here @@ -89,9 +89,8 @@ msgstr "Script-Fu merkistön valinta" #: plug-ins/script-fu/script-fu-interface.c:454 -#, fuzzy msgid "Script-Fu Palette Selection" -msgstr "Script-fu kuvioiden selain" +msgstr "Script-fu palettien selain" #: plug-ins/script-fu/script-fu-interface.c:462 msgid "Script-fu Pattern Selection" @@ -107,13 +106,12 @@ #. the script progress frame #: plug-ins/script-fu/script-fu-interface.c:533 -#, fuzzy msgid "Script Progress" -msgstr "Scriptin parametrit" +msgstr "Komentosarjan eteneminen" #: plug-ins/script-fu/script-fu-interface.c:541 msgid "(none)" -msgstr "" +msgstr "(ei mitään)" #: plug-ins/script-fu/script-fu-interface.c:1058 #: plug-ins/dbbrowser/gimpprocview.c:198 @@ -158,28 +156,26 @@ msgstr "Palvelimen lokitiedosto:" #: plug-ins/script-fu/script-fu.c:122 -#, fuzzy msgid "Script-Fu _Console" msgstr "Script-Fu-konsoli" #: plug-ins/script-fu/script-fu.c:129 plug-ins/script-fu/script-fu.c:158 #: plug-ins/script-fu/script-fu.c:290 -#, fuzzy msgid "/Xtns/Script-Fu" -msgstr "/Xtns/Script-Fu/Käynnistä palvelin" +msgstr "/Laajennokset/Script-Fu" #: plug-ins/script-fu/script-fu.c:151 msgid "_Start Server..." -msgstr "" +msgstr "Käynnistä palvelin..." #: plug-ins/script-fu/script-fu.c:282 msgid "_Refresh Scripts" -msgstr "" +msgstr "Päivitä skriptit" #: plug-ins/dbbrowser/gimpprocbrowser.c:128 #: plug-ins/dbbrowser/gimpprocbrowser.c:142 msgid "Procedure Browser" -msgstr "" +msgstr "Proseduuriselain" #: plug-ins/dbbrowser/gimpprocbrowser.c:132 #: plug-ins/dbbrowser/gimpprocbrowser.c:146 @@ -209,49 +205,48 @@ #: plug-ins/dbbrowser/gimpprocbrowser.c:428 msgid "1 Procedure" -msgstr "" +msgstr "Yksi proseduuri" #: plug-ins/dbbrowser/gimpprocbrowser.c:430 #, c-format msgid "%d Procedures" -msgstr "" +msgstr "%d proseduuria" #: plug-ins/dbbrowser/gimpprocbrowser.c:476 msgid "No matches" msgstr "Ei löytynyt" #: plug-ins/dbbrowser/gimpprocview.c:133 -#, fuzzy msgid "Parameters" -msgstr "Halkaisija:" +msgstr "Parametrit" #: plug-ins/dbbrowser/gimpprocview.c:146 msgid "Return Values" -msgstr "" +msgstr "Paluuarvot" #: plug-ins/dbbrowser/gimpprocview.c:159 msgid "Additional Information" -msgstr "" +msgstr "Lisätietoja" #: plug-ins/dbbrowser/gimpprocview.c:319 msgid "Internal GIMP procedure" -msgstr "" +msgstr "Sisäinen proseduuri" #: plug-ins/dbbrowser/gimpprocview.c:320 msgid "GIMP Plug-In" -msgstr "" +msgstr "GIMP-liitännäinen" #: plug-ins/dbbrowser/gimpprocview.c:321 msgid "GIMP Extension" -msgstr "" +msgstr "GIMP-laajennus" #: plug-ins/dbbrowser/gimpprocview.c:322 msgid "Temporary Procedure" -msgstr "" +msgstr "Väliaikainen proseduuri" #: plug-ins/script-fu/scripts/3d-outline.scm.h:1 msgid "3D _Outline..." -msgstr "" +msgstr "3D reunus..." #: plug-ins/script-fu/scripts/3d-outline.scm.h:2 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:1 @@ -274,9 +269,8 @@ #: plug-ins/script-fu/scripts/starscape-logo.scm.h:1 #: plug-ins/script-fu/scripts/t-o-p-logo.scm.h:1 #: plug-ins/script-fu/scripts/textured-logo.scm.h:1 -#, fuzzy msgid "/Script-Fu/Alpha to Logo" -msgstr "/Script-Fu/Decor/Wanha valokuva..." +msgstr "/Script-Fu/Läpinäkyvyydestä logo" #: plug-ins/script-fu/scripts/3d-outline.scm.h:3 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:2 @@ -307,26 +301,22 @@ #: plug-ins/script-fu/scripts/text-circle.scm.h:1 #: plug-ins/script-fu/scripts/textured-logo.scm.h:2 #: plug-ins/script-fu/scripts/title-header.scm.h:1 -#, fuzzy msgid "/Xtns/Script-Fu/Logos" -msgstr "/Xtns/Script-Fu/Käynnistä palvelin" +msgstr "/Laajennokset/Script-Fu/Logot" #: plug-ins/script-fu/scripts/3d-outline.scm.h:4 -#, fuzzy msgid "Bumpmap (alpha layer) blur radius" msgstr "Kuhmutuksen säde (Alfatasolla)" #: plug-ins/script-fu/scripts/3d-outline.scm.h:5 #: plug-ins/script-fu/scripts/glossy.scm.h:7 -#, fuzzy msgid "Default bumpmap settings" -msgstr "Kuhmutuksen asetukset" +msgstr "Kuhmutuksen perusasetukset" #: plug-ins/script-fu/scripts/3d-outline.scm.h:6 #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:5 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:4 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:6 -#: plug-ins/script-fu/scripts/asc2img.scm.h:8 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:4 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:5 #: plug-ins/script-fu/scripts/beveled-button.scm.h:3 @@ -367,7 +357,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:6 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:5 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:7 -#: plug-ins/script-fu/scripts/asc2img.scm.h:9 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:5 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:6 #: plug-ins/script-fu/scripts/beveled-button.scm.h:4 @@ -400,12 +389,10 @@ #: plug-ins/script-fu/scripts/text-circle.scm.h:5 #: plug-ins/script-fu/scripts/textured-logo.scm.h:7 #: plug-ins/script-fu/scripts/title-header.scm.h:3 -#, fuzzy msgid "Font size (pixels)" msgstr "Kirjasinkoko (pikseleinä)" #: plug-ins/script-fu/scripts/3d-outline.scm.h:8 -#, fuzzy msgid "Outline blur radius" msgstr "Ulkoreunan sumennuksen säde" @@ -423,19 +410,16 @@ #: plug-ins/script-fu/scripts/3d-outline.scm.h:10 #: plug-ins/script-fu/scripts/glossy.scm.h:17 #: plug-ins/script-fu/scripts/round-corners.scm.h:6 -#, fuzzy msgid "Shadow X offset" msgstr "Varjon X siirtymä" #: plug-ins/script-fu/scripts/3d-outline.scm.h:11 #: plug-ins/script-fu/scripts/glossy.scm.h:18 #: plug-ins/script-fu/scripts/round-corners.scm.h:7 -#, fuzzy msgid "Shadow Y offset" msgstr "Varjon Y siirtymä" #: plug-ins/script-fu/scripts/3d-outline.scm.h:12 -#, fuzzy msgid "Shadow blur radius" msgstr "Varjon sumennuksen säde" @@ -491,9 +475,8 @@ #: plug-ins/script-fu/scripts/swirltile.scm.h:1 #: plug-ins/script-fu/scripts/swirly-pattern.scm.h:1 #: plug-ins/script-fu/scripts/truchet.scm.h:1 -#, fuzzy msgid "/Xtns/Script-Fu/Patterns" -msgstr "/Xtns/Script-Fu/Käynnistä palvelin" +msgstr "/Xtns/Script-Fu/Kuviot" #: plug-ins/script-fu/scripts/3dTruchet.scm.h:3 #: plug-ins/script-fu/scripts/alien-glow-arrow.scm.h:2 @@ -501,7 +484,6 @@ #: plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:2 #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:3 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:4 -#: plug-ins/script-fu/scripts/asc2img.scm.h:3 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:3 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:4 #: plug-ins/script-fu/scripts/blended-logo.scm.h:3 @@ -525,34 +507,33 @@ #: plug-ins/script-fu/scripts/t-o-p-logo.scm.h:3 #: plug-ins/script-fu/scripts/textured-logo.scm.h:3 #: plug-ins/script-fu/scripts/truchet.scm.h:2 -#, fuzzy msgid "Background color" msgstr "Taustaväri" #: plug-ins/script-fu/scripts/3dTruchet.scm.h:4 #: plug-ins/script-fu/scripts/truchet.scm.h:3 msgid "Block size" -msgstr "" +msgstr "Palan koko" #: plug-ins/script-fu/scripts/3dTruchet.scm.h:5 #: plug-ins/script-fu/scripts/blended-logo.scm.h:7 msgid "End blend" -msgstr "" +msgstr "Lopun sekoitus" #: plug-ins/script-fu/scripts/3dTruchet.scm.h:6 #: plug-ins/script-fu/scripts/truchet.scm.h:5 msgid "Number of X tiles" -msgstr "" +msgstr "Lohkoja vaakasuoraan" #: plug-ins/script-fu/scripts/3dTruchet.scm.h:7 #: plug-ins/script-fu/scripts/truchet.scm.h:6 msgid "Number of Y tiles" -msgstr "" +msgstr "Lohkoja pystysuuntaan" #: plug-ins/script-fu/scripts/3dTruchet.scm.h:8 #: plug-ins/script-fu/scripts/blended-logo.scm.h:16 msgid "Start blend" -msgstr "" +msgstr "Alun sekoitus" #: plug-ins/script-fu/scripts/3dTruchet.scm.h:9 msgid "Supersample" @@ -571,18 +552,17 @@ #: plug-ins/script-fu/scripts/old-photo.scm.h:1 #: plug-ins/script-fu/scripts/round-corners.scm.h:1 #: plug-ins/script-fu/scripts/slide.scm.h:1 -#, fuzzy msgid "/Script-Fu/Decor" -msgstr "/Script-Fu/Decor/Wanha valokuva..." +msgstr "/Script-Fu/Koristeelliset" #: plug-ins/script-fu/scripts/add-bevel.scm.h:2 msgid "Add B_evel..." -msgstr "" +msgstr "Lisää viiste..." #: plug-ins/script-fu/scripts/add-bevel.scm.h:3 #: plug-ins/script-fu/scripts/chip-away.scm.h:12 msgid "Keep bump layer" -msgstr "" +msgstr "Säilytä kuhmutustaso" #: plug-ins/script-fu/scripts/add-bevel.scm.h:5 #: plug-ins/script-fu/scripts/fuzzyborder.scm.h:10 @@ -590,40 +570,35 @@ #: plug-ins/script-fu/scripts/round-corners.scm.h:8 #: plug-ins/script-fu/scripts/slide.scm.h:6 #: plug-ins/script-fu/scripts/spinning-globe.scm.h:6 -#, fuzzy msgid "Work on copy" msgstr "Työskentele kopiolla" #: plug-ins/script-fu/scripts/addborder.scm.h:2 msgid "Add _Border..." -msgstr "" +msgstr "Lisää reunus..." #: plug-ins/script-fu/scripts/addborder.scm.h:3 -#, fuzzy msgid "Border X size" msgstr "Reunan X koko" #: plug-ins/script-fu/scripts/addborder.scm.h:4 -#, fuzzy msgid "Border Y size" msgstr "Reunan Y koko" #: plug-ins/script-fu/scripts/addborder.scm.h:5 -#, fuzzy msgid "Border color" msgstr "Reunan väri" #: plug-ins/script-fu/scripts/addborder.scm.h:6 msgid "Delta value on color" -msgstr "" +msgstr "Värin muutosarvo" #: plug-ins/script-fu/scripts/alien-glow-arrow.scm.h:1 #: plug-ins/script-fu/scripts/alien-glow-bar.scm.h:1 #: plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:1 #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:1 -#, fuzzy msgid "/Xtns/Script-Fu/Web Page Themes/Alien Glow" -msgstr "/Xtns/Script-Fu/Patterns/Maastokuvio..." +msgstr "/Xtns/Script-Fu/Web-sivu teemat/Alien-hohto" #: plug-ins/script-fu/scripts/alien-glow-arrow.scm.h:3 #: plug-ins/script-fu/scripts/beveled-pattern-arrow.scm.h:2 @@ -637,7 +612,7 @@ #: plug-ins/script-fu/scripts/camo.scm.h:5 #: plug-ins/script-fu/scripts/fuzzyborder.scm.h:6 msgid "Flatten image" -msgstr "" +msgstr "Yhdistä kuva" #: plug-ins/script-fu/scripts/alien-glow-arrow.scm.h:5 #: plug-ins/script-fu/scripts/alien-glow-bar.scm.h:6 @@ -649,7 +624,7 @@ #: plug-ins/script-fu/scripts/neon-logo.scm.h:8 #: plug-ins/script-fu/scripts/starscape-logo.scm.h:6 msgid "Glow color" -msgstr "" +msgstr "Hehkun väri" #: plug-ins/script-fu/scripts/alien-glow-arrow.scm.h:6 #: plug-ins/script-fu/scripts/beveled-pattern-arrow.scm.h:3 @@ -679,24 +654,21 @@ #: plug-ins/script-fu/scripts/alien-glow-arrow.scm.h:11 #: plug-ins/script-fu/scripts/beveled-pattern-arrow.scm.h:9 -#, fuzzy msgid "_Arrow..." -msgstr "Selaa..." +msgstr "_Nuoli..." #: plug-ins/script-fu/scripts/alien-glow-bar.scm.h:3 -#, fuzzy msgid "Bar height" -msgstr "Korkeus" +msgstr "Viivan korkeus" #: plug-ins/script-fu/scripts/alien-glow-bar.scm.h:4 msgid "Bar length" -msgstr "" +msgstr "Viivan pituus" #: plug-ins/script-fu/scripts/alien-glow-bar.scm.h:7 #: plug-ins/script-fu/scripts/beveled-pattern-hrule.scm.h:5 -#, fuzzy msgid "_Hrule..." -msgstr "Selaa..." +msgstr "_Vaakaerotin..." #: plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:5 #: plug-ins/script-fu/scripts/text-circle.scm.h:6 @@ -706,19 +678,17 @@ #: plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:6 #: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:5 -#, fuzzy msgid "_Bullet..." -msgstr "Selaa..." +msgstr "_Kohta..." #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:2 #: plug-ins/script-fu/scripts/beveled-pattern-button.scm.h:2 msgid "B_utton..." -msgstr "" +msgstr "P_ainike..." #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:8 -#, fuzzy msgid "Glow radius" -msgstr "Varjon sumennuksen säde" +msgstr "Hehkun säde" #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:9 #: plug-ins/script-fu/scripts/beveled-button.scm.h:6 @@ -726,7 +696,6 @@ msgstr "Reunustus" #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:11 -#: plug-ins/script-fu/scripts/asc2img.scm.h:10 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:7 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:8 #: plug-ins/script-fu/scripts/beveled-button.scm.h:10 @@ -738,107 +707,57 @@ #: plug-ins/script-fu/scripts/news-text.scm.h:11 #: plug-ins/script-fu/scripts/pupi-button.scm.h:14 #: plug-ins/script-fu/scripts/speed-text.scm.h:9 -#, fuzzy msgid "Text color" msgstr "Tekstin väri" #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:3 msgid "Alien _Glow..." -msgstr "" +msgstr "Alienhehku..." #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:7 -#, fuzzy msgid "Glow size (pixels * 4)" -msgstr "Kirjasinkoko (pikseleinä)" +msgstr "Hehkun koko (pikseliä × 4)" #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:3 msgid "Alien _Neon..." -msgstr "" +msgstr "Alien _neon..." #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:5 msgid "Fade away" -msgstr "" +msgstr "Häivytys" #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:9 msgid "Number of bands" -msgstr "" +msgstr "Kaistojen määrä" #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:11 msgid "Width of bands" -msgstr "" +msgstr "Kaistojen leveys" #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:12 msgid "Width of gaps" -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:1 -#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 -#: plug-ins/script-fu/scripts/image-structure.scm.h:1 -#, fuzzy -msgid "/Script-Fu/Utils" -msgstr "/Script-Fu/" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:2 -#: plug-ins/script-fu/scripts/font-map.scm.h:1 -#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 -#, fuzzy -msgid "/Xtns/Script-Fu/Utils" -msgstr "/Xtns/Script-Fu/Käynnistä palvelin" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:5 -#, no-c-format -msgid "Buffer amount (% height of text)" -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:6 -#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 -#, fuzzy -msgid "File name" -msgstr "Tiedostonimi" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:7 -#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 -msgid "Filename" -msgstr "Tiedostonimi" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:11 -#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 -#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 -#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 -#, fuzzy -msgid "Transparent background" -msgstr "Läpinäkyvä tausta" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:12 -msgid "_ASCII to Image..." -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:13 -msgid "_ASCII to Layer..." -msgstr "" +msgstr "Välien leveys" #: plug-ins/script-fu/scripts/basic1-logo.scm.h:8 msgid "_Basic I..." -msgstr "" +msgstr "Perus I" #: plug-ins/script-fu/scripts/basic2-logo.scm.h:3 msgid "B_asic II..." -msgstr "" +msgstr "Perus II" #: plug-ins/script-fu/scripts/beveled-button.scm.h:1 #: plug-ins/script-fu/scripts/pupi-button.scm.h:1 -#, fuzzy msgid "/Xtns/Script-Fu/Buttons" -msgstr "/Xtns/Script-Fu/Käynnistä palvelin" +msgstr "/Xtns/Script-Fu/Painikkeet" #: plug-ins/script-fu/scripts/beveled-button.scm.h:2 #: plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:6 #: plug-ins/script-fu/scripts/pupi-button.scm.h:2 msgid "Bevel width" -msgstr "" +msgstr "Viisteen leveys" #: plug-ins/script-fu/scripts/beveled-button.scm.h:5 -#, fuzzy msgid "Lower-right color" msgstr "Oikean alareunan väri" @@ -850,10 +769,9 @@ #: plug-ins/script-fu/scripts/beveled-button.scm.h:8 msgid "Simple _Beveled Button..." -msgstr "" +msgstr "Yksinkertainen viistottu painike..." #: plug-ins/script-fu/scripts/beveled-button.scm.h:11 -#, fuzzy msgid "Upper-left color" msgstr "Vasemman yläreunan väri" @@ -862,17 +780,22 @@ #: plug-ins/script-fu/scripts/beveled-pattern-button.scm.h:1 #: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:1 #: plug-ins/script-fu/scripts/beveled-pattern-hrule.scm.h:1 -#, fuzzy msgid "/Xtns/Script-Fu/Web Page Themes/Beveled Pattern" -msgstr "/Xtns/Script-Fu/Patterns/Maastokuvio..." +msgstr "/Xtns/Script-Fu/Web-sivu teemat/Viistottu kuvio" #: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:2 msgid "Diameter" msgstr "Halkaisija:" +#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 +#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 +#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 +msgid "Transparent background" +msgstr "Läpinäkyvä tausta" + #: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:4 msgid "H_eading..." -msgstr "" +msgstr "Otsikko..." #: plug-ins/script-fu/scripts/beveled-pattern-hrule.scm.h:2 #: plug-ins/script-fu/scripts/gimp-labels.scm.h:5 @@ -894,12 +817,10 @@ #: plug-ins/script-fu/scripts/ripply-anim.scm.h:1 #: plug-ins/script-fu/scripts/spinning-globe.scm.h:1 #: plug-ins/script-fu/scripts/waves-anim.scm.h:1 -#, fuzzy msgid "/Script-Fu/Animators" -msgstr "/Script-Fu/Decor/Wanha valokuva..." +msgstr "/Script-Fu/Animaatiot" #: plug-ins/script-fu/scripts/blend-anim.scm.h:2 -#, fuzzy msgid "Intermediate frames" msgstr "Väliruutuja" @@ -908,38 +829,36 @@ msgstr "Silmukka" #: plug-ins/script-fu/scripts/blend-anim.scm.h:4 -#, fuzzy msgid "Max. blur radius" -msgstr "Varjon sumennuksen säde" +msgstr "Suurin sumennussäde" #: plug-ins/script-fu/scripts/blend-anim.scm.h:5 -#, fuzzy msgid "_Blend..." -msgstr "Selaa..." +msgstr "_Sekoita..." #: plug-ins/script-fu/scripts/blended-logo.scm.h:4 msgid "Blen_ded..." -msgstr "" +msgstr "Sekoitettu..." #: plug-ins/script-fu/scripts/blended-logo.scm.h:5 msgid "Blend mode" -msgstr "" +msgstr "Sekoitustila" #: plug-ins/script-fu/scripts/blended-logo.scm.h:6 msgid "Custom Gradient" -msgstr "" +msgstr "Oma väriliuku" #: plug-ins/script-fu/scripts/blended-logo.scm.h:8 msgid "FG-BG-HSV" -msgstr "" +msgstr "Edusta-tausta-HSV" #: plug-ins/script-fu/scripts/blended-logo.scm.h:9 msgid "FG-BG-RGB" -msgstr "" +msgstr "Edusta-tausta-RGB" #: plug-ins/script-fu/scripts/blended-logo.scm.h:10 msgid "FG-Transparent" -msgstr "" +msgstr "Edusta-läpinäkyvä" #: plug-ins/script-fu/scripts/blended-logo.scm.h:13 #: plug-ins/script-fu/scripts/comic-logo.scm.h:7 @@ -957,7 +876,6 @@ #: plug-ins/script-fu/scripts/gradient-example.scm.h:3 #: plug-ins/script-fu/scripts/rendermap.scm.h:5 #: plug-ins/script-fu/scripts/title-header.scm.h:4 -#, fuzzy msgid "Gradient reverse" msgstr "Väriliuku takaperin" @@ -972,7 +890,7 @@ #: plug-ins/script-fu/scripts/bovinated-logo.scm.h:5 msgid "Bo_vination..." -msgstr "" +msgstr "Lehmätys..." #: plug-ins/script-fu/scripts/bovinated-logo.scm.h:8 msgid "Spots density X" @@ -983,42 +901,40 @@ msgstr "Kuvioiden tiheys Y" #: plug-ins/script-fu/scripts/burn-in-anim.scm.h:2 -#, fuzzy msgid "Add glowing" -msgstr "Lisää kiilto" +msgstr "Lisää hohto" #: plug-ins/script-fu/scripts/burn-in-anim.scm.h:3 msgid "After glow" -msgstr "" +msgstr "Jälkihohto" #: plug-ins/script-fu/scripts/burn-in-anim.scm.h:4 msgid "B_urn-In..." -msgstr "" +msgstr "Polta..." #: plug-ins/script-fu/scripts/burn-in-anim.scm.h:5 msgid "Burn-In: Need two layers in total!" -msgstr "" +msgstr "Polta: tarvitaan kaksi tasoa!" #: plug-ins/script-fu/scripts/burn-in-anim.scm.h:6 -#, fuzzy msgid "Corona width" msgstr "Koronan paksuus" #: plug-ins/script-fu/scripts/burn-in-anim.scm.h:7 msgid "Fadeout" -msgstr "" +msgstr "Häivytys" #: plug-ins/script-fu/scripts/burn-in-anim.scm.h:8 msgid "Fadeout width" -msgstr "" +msgstr "Häivytyksen leveys" #: plug-ins/script-fu/scripts/burn-in-anim.scm.h:10 msgid "Prepare for GIF" -msgstr "" +msgstr "Optimoi GIF" #: plug-ins/script-fu/scripts/burn-in-anim.scm.h:11 msgid "Speed (pixels/frame)" -msgstr "" +msgstr "Nopeus (pikseliä/ruutu)" #: plug-ins/script-fu/scripts/camo.scm.h:2 msgid "Color 1" @@ -1039,7 +955,6 @@ #: plug-ins/script-fu/scripts/camo.scm.h:7 #: plug-ins/script-fu/scripts/rendermap.scm.h:7 -#, fuzzy msgid "Image size" msgstr "Kuvan koko" @@ -1050,25 +965,24 @@ #: plug-ins/script-fu/scripts/camo.scm.h:9 msgid "_Camouflage..." -msgstr "" +msgstr "Naamioväri..." #: plug-ins/script-fu/scripts/carve-it.scm.h:1 #: plug-ins/script-fu/scripts/chrome-it.scm.h:1 -#, fuzzy msgid "/Script-Fu/Stencil Ops" -msgstr "/Script-Fu/Decor/Wanha valokuva..." +msgstr "/Script-Fu/Stensiilit" #: plug-ins/script-fu/scripts/carve-it.scm.h:2 msgid "C_arve-It..." -msgstr "" +msgstr "Kaiverra..." #: plug-ins/script-fu/scripts/carve-it.scm.h:3 msgid "Carve white areas" -msgstr "" +msgstr "Kaiverra vaaleat alueet" #: plug-ins/script-fu/scripts/carve-it.scm.h:4 msgid "Image to carve" -msgstr "" +msgstr "Kaiverrettava kuva" #: plug-ins/script-fu/scripts/carved-logo.scm.h:2 msgid "Background Image" @@ -1076,150 +990,144 @@ #: plug-ins/script-fu/scripts/carved-logo.scm.h:3 msgid "Carve raised text" -msgstr "" +msgstr "Kaiverra teksti koholle" #: plug-ins/script-fu/scripts/carved-logo.scm.h:4 msgid "Carved..." -msgstr "" +msgstr "Kaiverrettu..." #: plug-ins/script-fu/scripts/carved-logo.scm.h:7 msgid "Padding around text" -msgstr "" +msgstr "Tekstin reunustus" #: plug-ins/script-fu/scripts/chalk.scm.h:4 -#, fuzzy msgid "Chalk color" msgstr "Liidun väri" #: plug-ins/script-fu/scripts/chalk.scm.h:8 msgid "_Chalk..." -msgstr "" +msgstr "_Liitu..." #: plug-ins/script-fu/scripts/chip-away.scm.h:3 msgid "Blur amount" -msgstr "" +msgstr "Sumennuksen määrä" #: plug-ins/script-fu/scripts/chip-away.scm.h:4 msgid "Chip Awa_y..." -msgstr "" +msgstr "Sirpaleista..." #: plug-ins/script-fu/scripts/chip-away.scm.h:5 msgid "Chip amount" -msgstr "" +msgstr "Sirpaleen määrä" #: plug-ins/script-fu/scripts/chip-away.scm.h:6 msgid "Drop shadow" -msgstr "" +msgstr "Varjo" #: plug-ins/script-fu/scripts/chip-away.scm.h:7 msgid "Fill BG with pattern" -msgstr "" +msgstr "Täytä tausta kuviolla" #: plug-ins/script-fu/scripts/chip-away.scm.h:10 msgid "Invert" -msgstr "" +msgstr "Käännä" #: plug-ins/script-fu/scripts/chip-away.scm.h:11 msgid "Keep background" -msgstr "" +msgstr "Säilytä tausta" #: plug-ins/script-fu/scripts/chrome-it.scm.h:2 -#, fuzzy msgid "C_hrome-It..." -msgstr "Selaa..." +msgstr "_Kromita..." #: plug-ins/script-fu/scripts/chrome-it.scm.h:3 #: plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:2 msgid "Chrome balance" -msgstr "" +msgstr "Kromitasapaino" #: plug-ins/script-fu/scripts/chrome-it.scm.h:4 #: plug-ins/script-fu/scripts/crystal-logo.scm.h:3 #: plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:3 msgid "Chrome factor" -msgstr "" +msgstr "Kromikerroin" #: plug-ins/script-fu/scripts/chrome-it.scm.h:5 #: plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:4 msgid "Chrome lightness" -msgstr "" +msgstr "Kromivalotus" #: plug-ins/script-fu/scripts/chrome-it.scm.h:6 #: plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:5 msgid "Chrome saturation" -msgstr "" +msgstr "Kromikylläisyys" #: plug-ins/script-fu/scripts/chrome-it.scm.h:7 msgid "Chrome white areas" -msgstr "" +msgstr "Kromaa valkoiset alueet" #: plug-ins/script-fu/scripts/chrome-it.scm.h:8 #: plug-ins/script-fu/scripts/crystal-logo.scm.h:5 #: plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:6 msgid "Environment map" -msgstr "" +msgstr "Ympäristökartta" #: plug-ins/script-fu/scripts/chrome-it.scm.h:9 #: plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:9 msgid "Highlight balance" -msgstr "" +msgstr "Valaistustasapaino" #: plug-ins/script-fu/scripts/chrome-logo.scm.h:5 -#, fuzzy msgid "C_hrome..." -msgstr "Selaa..." +msgstr "_Kromi..." #: plug-ins/script-fu/scripts/chrome-logo.scm.h:8 msgid "Offsets (pixels * 2)" -msgstr "" +msgstr "Siirtymä (pikseliä × 2)" #: plug-ins/script-fu/scripts/circuit.scm.h:1 #: plug-ins/script-fu/scripts/grid-system.scm.h:1 #: plug-ins/script-fu/scripts/lava.scm.h:1 #: plug-ins/script-fu/scripts/line-nova.scm.h:1 #: plug-ins/script-fu/scripts/spyrogimp.scm.h:1 -#, fuzzy msgid "/Script-Fu/Render" -msgstr "/Script-Fu/Decor/Wanha valokuva..." +msgstr "/Script-Fu/Luo" #: plug-ins/script-fu/scripts/circuit.scm.h:2 msgid "Circuit seed" -msgstr "" +msgstr "Siemenluku" #: plug-ins/script-fu/scripts/circuit.scm.h:3 #: plug-ins/script-fu/scripts/lava.scm.h:3 #: plug-ins/script-fu/scripts/predator.scm.h:3 #: plug-ins/script-fu/scripts/xach-effect.scm.h:11 msgid "Keep selection" -msgstr "" +msgstr "Säilytä valinta" #: plug-ins/script-fu/scripts/circuit.scm.h:4 msgid "No background (only for separate layer)" -msgstr "" +msgstr "Ei taustaa (vain erilliselle tasolle)" #: plug-ins/script-fu/scripts/circuit.scm.h:5 msgid "Oilify mask size" -msgstr "" +msgstr "Öljyväri-maskin koko" #: plug-ins/script-fu/scripts/circuit.scm.h:6 #: plug-ins/script-fu/scripts/lava.scm.h:6 #: plug-ins/script-fu/scripts/predator.scm.h:6 -#, fuzzy msgid "Separate layer" msgstr "Erillinen taso" #: plug-ins/script-fu/scripts/circuit.scm.h:7 msgid "_Circuit..." -msgstr "" +msgstr "_Piiri..." #: plug-ins/script-fu/scripts/clothify.scm.h:1 #: plug-ins/script-fu/scripts/erase-rows.scm.h:1 #: plug-ins/script-fu/scripts/predator.scm.h:1 #: plug-ins/script-fu/scripts/unsharp-mask.scm.h:1 #: plug-ins/script-fu/scripts/weave.scm.h:1 -#, fuzzy msgid "/Script-Fu/Alchemy" -msgstr "/Script-Fu/Decor/Wanha valokuva..." +msgstr "/Script-Fu/Alchemy" #: plug-ins/script-fu/scripts/clothify.scm.h:2 #: plug-ins/script-fu/scripts/swirltile.scm.h:2 @@ -1242,14 +1150,13 @@ #: plug-ins/script-fu/scripts/clothify.scm.h:6 #: plug-ins/script-fu/scripts/swirltile.scm.h:6 msgid "Elevation" -msgstr "" +msgstr "Kohoama" #: plug-ins/script-fu/scripts/clothify.scm.h:7 msgid "_Clothify..." -msgstr "" +msgstr "Kangas" #: plug-ins/script-fu/scripts/coffee.scm.h:2 -#, fuzzy msgid "" "Darken only\n" "(Better, but only for images with alot of white)" @@ -1263,71 +1170,65 @@ #: plug-ins/script-fu/scripts/coffee.scm.h:4 msgid "_Coffee Stain..." -msgstr "" +msgstr "Kahvitahra..." #: plug-ins/script-fu/scripts/comic-logo.scm.h:4 msgid "Comic Boo_k..." -msgstr "" +msgstr "Sarjakuva..." #: plug-ins/script-fu/scripts/comic-logo.scm.h:9 -#, fuzzy msgid "Outline color" msgstr "Ulkoreunan väri" #: plug-ins/script-fu/scripts/comic-logo.scm.h:10 #: plug-ins/script-fu/scripts/glossy.scm.h:12 -#, fuzzy msgid "Outline size" msgstr "Ulkoreunan koko" #: plug-ins/script-fu/scripts/coolmetal-logo.scm.h:4 msgid "Cool _Metal..." -msgstr "" +msgstr "Viileä metalli..." #: plug-ins/script-fu/scripts/coolmetal-logo.scm.h:5 #: plug-ins/script-fu/scripts/frosty-logo.scm.h:4 -#, fuzzy msgid "Effect size (pixels)" -msgstr "Siirtymä (pikseliä)" +msgstr "Efektin koko (pikseliä)" #: plug-ins/script-fu/scripts/crystal-logo.scm.h:2 -#, fuzzy msgid "Background image" msgstr "Taustakuva" #: plug-ins/script-fu/scripts/crystal-logo.scm.h:4 msgid "Crystal..." -msgstr "" +msgstr "Kristalli..." #: plug-ins/script-fu/scripts/distress-selection.scm.h:1 #: plug-ins/script-fu/scripts/fade-outline.scm.h:1 #: plug-ins/script-fu/scripts/select-to-brush.scm.h:1 #: plug-ins/script-fu/scripts/select-to-image.scm.h:1 #: plug-ins/script-fu/scripts/select-to-pattern.scm.h:1 -#, fuzzy msgid "/Script-Fu/Selection" -msgstr "Script-Fu tiedostojen selain" +msgstr "/Script-Fu/Valinta" #: plug-ins/script-fu/scripts/distress-selection.scm.h:2 -#, fuzzy msgid "Granularity (1 is low)" -msgstr "Rakeisuus" +msgstr "Rakeisuus (1 on matala)" #: plug-ins/script-fu/scripts/distress-selection.scm.h:4 msgid "Smooth horizontally" -msgstr "" +msgstr "Pehmennä vaakasuuntaan" #: plug-ins/script-fu/scripts/distress-selection.scm.h:5 msgid "Smooth vertically" -msgstr "" +msgstr "Pehmennä pystysuuntaan" #: plug-ins/script-fu/scripts/distress-selection.scm.h:6 msgid "Spread" -msgstr "" +msgstr "Levitä" #: plug-ins/script-fu/scripts/distress-selection.scm.h:7 msgid "Threshold (bigger 1<-->255 smaller)" -msgstr "" +msgstr "Raja (iso 1<-->255 pieni)" #: plug-ins/script-fu/scripts/distress-selection.scm.h:8 msgid "_Distress Selection..." @@ -1336,283 +1237,274 @@ #: plug-ins/script-fu/scripts/drop-shadow.scm.h:1 #: plug-ins/script-fu/scripts/perspective-shadow.scm.h:1 #: plug-ins/script-fu/scripts/xach-effect.scm.h:1 -#, fuzzy msgid "/Script-Fu/Shadow" -msgstr "/Script-Fu/Decor/Wanha valokuva..." +msgstr "/Script-Fu/Varjo" #: plug-ins/script-fu/scripts/drop-shadow.scm.h:2 #: plug-ins/script-fu/scripts/perspective-shadow.scm.h:2 msgid "Allow resizing" -msgstr "" +msgstr "Salli koon muuttaminen" #: plug-ins/script-fu/scripts/drop-shadow.scm.h:3 #: plug-ins/script-fu/scripts/news-text.scm.h:3 #: plug-ins/script-fu/scripts/perspective-shadow.scm.h:4 #: plug-ins/script-fu/scripts/round-corners.scm.h:4 #: plug-ins/script-fu/scripts/swirltile.scm.h:4 -#, fuzzy msgid "Blur radius" -msgstr "Varjon sumennuksen säde" +msgstr "Pehmennuksen säde" #: plug-ins/script-fu/scripts/drop-shadow.scm.h:4 #: plug-ins/script-fu/scripts/fuzzyborder.scm.h:5 #: plug-ins/script-fu/scripts/perspective-shadow.scm.h:5 #: plug-ins/script-fu/scripts/spyrogimp.scm.h:5 msgid "Color" -msgstr "" +msgstr "Väri" #: plug-ins/script-fu/scripts/drop-shadow.scm.h:5 #: plug-ins/script-fu/scripts/gimp-labels.scm.h:8 msgid "Offset X" -msgstr "" +msgstr "Siirtymä X" #: plug-ins/script-fu/scripts/drop-shadow.scm.h:6 #: plug-ins/script-fu/scripts/gimp-labels.scm.h:9 msgid "Offset Y" -msgstr "" +msgstr "Siirtymä Y" #: plug-ins/script-fu/scripts/drop-shadow.scm.h:7 #: plug-ins/script-fu/scripts/perspective-shadow.scm.h:10 msgid "Opacity" -msgstr "" +msgstr "Peitto" #: plug-ins/script-fu/scripts/drop-shadow.scm.h:8 msgid "_Drop-Shadow..." -msgstr "" +msgstr "Varjo..." #: plug-ins/script-fu/scripts/erase-rows.scm.h:2 msgid "Columns" -msgstr "" +msgstr "Sarakkeet" #: plug-ins/script-fu/scripts/erase-rows.scm.h:3 msgid "Erase" -msgstr "" +msgstr "Poista" #: plug-ins/script-fu/scripts/erase-rows.scm.h:4 msgid "Erase/fill" -msgstr "" +msgstr "Poista/täytä" #: plug-ins/script-fu/scripts/erase-rows.scm.h:5 msgid "Even" -msgstr "" +msgstr "Parillinen" #: plug-ins/script-fu/scripts/erase-rows.scm.h:6 msgid "Even/odd" -msgstr "" +msgstr "Parillinen/pariton" #: plug-ins/script-fu/scripts/erase-rows.scm.h:7 msgid "Fill with BG" -msgstr "" +msgstr "Täytä taustalla" #: plug-ins/script-fu/scripts/erase-rows.scm.h:8 msgid "Odd" -msgstr "" +msgstr "Pariton" #: plug-ins/script-fu/scripts/erase-rows.scm.h:9 msgid "Rows" -msgstr "" +msgstr "Rivit" #: plug-ins/script-fu/scripts/erase-rows.scm.h:10 msgid "Rows/cols" -msgstr "" +msgstr "Rivit/Sarakkeet" #: plug-ins/script-fu/scripts/erase-rows.scm.h:11 msgid "_Erase every other Row..." -msgstr "" +msgstr "_Poista joka toinen rivi..." #: plug-ins/script-fu/scripts/fade-outline.scm.h:2 msgid "Apply generated layermask" -msgstr "" +msgstr "Sovella luotua tasomaskia" #: plug-ins/script-fu/scripts/fade-outline.scm.h:3 #: plug-ins/script-fu/scripts/fuzzyborder.scm.h:4 #: plug-ins/script-fu/scripts/old-photo.scm.h:2 -#, fuzzy msgid "Border size" -msgstr "Reunan X koko" +msgstr "Reunuksen koko" #: plug-ins/script-fu/scripts/fade-outline.scm.h:4 msgid "Clear unselected maskarea" -msgstr "" +msgstr "Tyhjennä valitsematon maskialue" #: plug-ins/script-fu/scripts/fade-outline.scm.h:6 #, no-c-format msgid "Fade from %" -msgstr "" +msgstr "Häivytä %:sta" #: plug-ins/script-fu/scripts/fade-outline.scm.h:8 #, no-c-format msgid "Fade to %" -msgstr "" +msgstr "Häivytä %:iin" #: plug-ins/script-fu/scripts/fade-outline.scm.h:9 msgid "Use growing selection" -msgstr "" +msgstr "Käytä kasvavaa valintaa" #: plug-ins/script-fu/scripts/fade-outline.scm.h:10 msgid "_Fade Outline..." -msgstr "" +msgstr "Häivytä reuna..." #: plug-ins/script-fu/scripts/flatland.scm.h:2 #: plug-ins/script-fu/scripts/land.scm.h:2 msgid "Detail level" -msgstr "" +msgstr "Yksityiskohtataso" #: plug-ins/script-fu/scripts/flatland.scm.h:3 #: plug-ins/script-fu/scripts/land.scm.h:4 -#, fuzzy msgid "Image height" -msgstr "Kuvan koko" +msgstr "Kuvan korkeus" #: plug-ins/script-fu/scripts/flatland.scm.h:4 #: plug-ins/script-fu/scripts/land.scm.h:5 -#, fuzzy msgid "Image width" -msgstr "Kuvan koko" +msgstr "Kuvan leveys" #: plug-ins/script-fu/scripts/flatland.scm.h:5 #: plug-ins/script-fu/scripts/land.scm.h:7 msgid "Random seed" -msgstr "" +msgstr "Siemenluku" #: plug-ins/script-fu/scripts/flatland.scm.h:6 #: plug-ins/script-fu/scripts/land.scm.h:8 msgid "Scale X" -msgstr "" +msgstr "Skaalaa X" #: plug-ins/script-fu/scripts/flatland.scm.h:7 #: plug-ins/script-fu/scripts/land.scm.h:9 msgid "Scale Y" -msgstr "" +msgstr "Skaalaa Y" #: plug-ins/script-fu/scripts/flatland.scm.h:8 msgid "_Flatland..." msgstr "" +#: plug-ins/script-fu/scripts/font-map.scm.h:1 +#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 +msgid "/Xtns/Script-Fu/Utils" +msgstr "/Xtns/Script-Fu/Työkalut" + #: plug-ins/script-fu/scripts/font-map.scm.h:2 -#, fuzzy msgid "Active colors" -msgstr "Ulkoreunan väri" +msgstr "Aktiiviset värit" #: plug-ins/script-fu/scripts/font-map.scm.h:3 msgid "Black on white" -msgstr "" +msgstr "Musta valkoisella" #: plug-ins/script-fu/scripts/font-map.scm.h:4 -#, fuzzy msgid "Font _size (pixels)" -msgstr "Kirjasinkoko (pikseleinä)" +msgstr "Kirjasin_koko (pikseliä)" #: plug-ins/script-fu/scripts/font-map.scm.h:5 msgid "Use font _name as text" -msgstr "" +msgstr "Käytä kirjasimen nimeä tekstinä" #: plug-ins/script-fu/scripts/font-map.scm.h:6 msgid "_Border (pixels)" -msgstr "" +msgstr "_Reunus (pikseliä)" #: plug-ins/script-fu/scripts/font-map.scm.h:7 -#, fuzzy msgid "_Color scheme" -msgstr "Väri 3" +msgstr "_Väriskeema" #: plug-ins/script-fu/scripts/font-map.scm.h:8 msgid "_Filter (regexp)" -msgstr "" +msgstr "_Suodatin (regexp)" #: plug-ins/script-fu/scripts/font-map.scm.h:9 msgid "_Font Map..." -msgstr "" +msgstr "_Kirjasinkartta..." #: plug-ins/script-fu/scripts/font-map.scm.h:10 msgid "_Labels" -msgstr "" +msgstr "_Nimiöt" #: plug-ins/script-fu/scripts/font-map.scm.h:11 msgid "_Text" -msgstr "" +msgstr "_Teksti" #: plug-ins/script-fu/scripts/frosty-logo.scm.h:8 -#, fuzzy msgid "_Frosty..." -msgstr "Selaa..." +msgstr "Hileinen..." #: plug-ins/script-fu/scripts/fuzzyborder.scm.h:2 msgid "Add shadow" -msgstr "" +msgstr "Lisää varjo" #: plug-ins/script-fu/scripts/fuzzyborder.scm.h:3 msgid "Blur border" -msgstr "" +msgstr "Pehmennysreuna" #: plug-ins/script-fu/scripts/fuzzyborder.scm.h:7 msgid "Granularity (1 is Low)" -msgstr "" +msgstr "Rakeisuus (1 on matala)" #: plug-ins/script-fu/scripts/fuzzyborder.scm.h:9 #, no-c-format msgid "Shadow weight (%)" -msgstr "" +msgstr "Varjon vahvuus (%)" #: plug-ins/script-fu/scripts/fuzzyborder.scm.h:11 msgid "_Fuzzy Border..." -msgstr "" +msgstr "Häivytä reuna..." #: plug-ins/script-fu/scripts/gimp-headers.scm.h:1 #: plug-ins/script-fu/scripts/gimp-labels.scm.h:1 -#, fuzzy msgid "/Xtns/Script-Fu/Web Page Themes/Classic.Gimp.Org" -msgstr "/Xtns/Script-Fu/Patterns/Maastokuvio..." +msgstr "/Xtns/Script-Fu/Web-sivu teemat/Gimp.Org (klassinen)" #: plug-ins/script-fu/scripts/gimp-headers.scm.h:2 -#, fuzzy msgid "Autocrop" -msgstr "Tekijä:" +msgstr "Automaattirajaus" #: plug-ins/script-fu/scripts/gimp-headers.scm.h:3 -#, fuzzy msgid "Dark color" -msgstr "Liidun väri" +msgstr "Tumma väri" #: plug-ins/script-fu/scripts/gimp-headers.scm.h:6 #: plug-ins/script-fu/scripts/xach-effect.scm.h:9 -#, fuzzy msgid "Highlight color" -msgstr "Oikean alareunan väri" +msgstr "Korostusväri" #: plug-ins/script-fu/scripts/gimp-headers.scm.h:7 #: plug-ins/script-fu/scripts/gimp-labels.scm.h:6 msgid "Index image" -msgstr "" +msgstr "Indeksikuva" #: plug-ins/script-fu/scripts/gimp-headers.scm.h:8 #: plug-ins/script-fu/scripts/gimp-labels.scm.h:7 msgid "Number of colors" -msgstr "" +msgstr "Värien määrä" #: plug-ins/script-fu/scripts/gimp-headers.scm.h:9 #: plug-ins/script-fu/scripts/gimp-labels.scm.h:10 msgid "Remove background" -msgstr "" +msgstr "Poista tausta" #: plug-ins/script-fu/scripts/gimp-headers.scm.h:10 #: plug-ins/script-fu/scripts/gimp-labels.scm.h:11 msgid "Select-by-color threshold" -msgstr "" +msgstr "Valitse-värin-mukaan raja" #: plug-ins/script-fu/scripts/gimp-headers.scm.h:11 #: plug-ins/script-fu/scripts/gimp-labels.scm.h:12 -#, fuzzy msgid "Shadow color" -msgstr "Liidun väri" +msgstr "Varjon väri" #: plug-ins/script-fu/scripts/gimp-headers.scm.h:14 msgid "_Big Header..." -msgstr "" +msgstr "Iso otsikko..." #: plug-ins/script-fu/scripts/gimp-headers.scm.h:15 msgid "_Small Header..." -msgstr "" +msgstr "Pieni otsikko..." #: plug-ins/script-fu/scripts/gimp-labels.scm.h:13 msgid "T_ube Sub-Button Label..." @@ -1632,191 +1524,187 @@ #: plug-ins/script-fu/scripts/glossy.scm.h:4 msgid "Blend gradient (Text)" -msgstr "" +msgstr "Väriliuku (teksti)" #: plug-ins/script-fu/scripts/glossy.scm.h:5 msgid "Blend gradient (outline)" -msgstr "" +msgstr "Väriliuku (ulkoreuna)" #: plug-ins/script-fu/scripts/glossy.scm.h:6 msgid "Blend gradient (text)" -msgstr "" +msgstr "Väriliuku (teksti)" #: plug-ins/script-fu/scripts/glossy.scm.h:10 msgid "Glo_ssy..." -msgstr "" +msgstr "Kiiltävä..." #: plug-ins/script-fu/scripts/glossy.scm.h:11 -#, fuzzy msgid "Outline gradient reverse" -msgstr "Väriliuku takaperin" +msgstr "Käänteinen ulkoreunan väriliuku" #: plug-ins/script-fu/scripts/glossy.scm.h:13 msgid "Pattern (outline)" -msgstr "" +msgstr "Kuvio (ulkoreuna)" #: plug-ins/script-fu/scripts/glossy.scm.h:14 msgid "Pattern (overlay)" -msgstr "" +msgstr "Kuvio (päällystaso)" #: plug-ins/script-fu/scripts/glossy.scm.h:15 -#, fuzzy msgid "Pattern (text)" -msgstr "Kuvio" +msgstr "Kuvio (teksti)" #: plug-ins/script-fu/scripts/glossy.scm.h:16 #: plug-ins/script-fu/scripts/sphere.scm.h:5 msgid "Shadow" -msgstr "" +msgstr "Varjo" #: plug-ins/script-fu/scripts/glossy.scm.h:20 -#, fuzzy msgid "Text gradient reverse" -msgstr "Väriliuku takaperin" +msgstr "Tekstiväriliuku takaperin" #: plug-ins/script-fu/scripts/glossy.scm.h:21 msgid "Use pattern for outline instead of gradient" -msgstr "" +msgstr "Käytä kuviota ulkoreunalla väriliu'un sijaan" #: plug-ins/script-fu/scripts/glossy.scm.h:22 msgid "Use pattern for text instead of gradient" -msgstr "" +msgstr "Käytä kuviota tekstissä väriliu'un sijaan" #: plug-ins/script-fu/scripts/glossy.scm.h:23 msgid "Use pattern overlay" -msgstr "" +msgstr "Käytä päällystason kuviota" #: plug-ins/script-fu/scripts/glowing-logo.scm.h:4 -#, fuzzy msgid "Effect size (pixels * 3)" -msgstr "Siirtymä (pikseliä)" +msgstr "Efektin koko (pikseliä × 3)" #: plug-ins/script-fu/scripts/glowing-logo.scm.h:7 msgid "Glo_wing Hot..." -msgstr "" +msgstr "Hehkuva kuuma..." #: plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:4 msgid "Bevel height (Sharpness)" -msgstr "" +msgstr "Viistouksen korkeus (terävyys)" #: plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:5 msgid "Bevel height (sharpness)" -msgstr "" +msgstr "Viistouksen korkeus (terävyys)" #: plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:7 #: plug-ins/script-fu/scripts/t-o-p-logo.scm.h:5 #: plug-ins/script-fu/scripts/textured-logo.scm.h:4 -#, fuzzy msgid "Border size (pixels)" -msgstr "Kirjasinkoko (pikseleinä)" +msgstr "Reunuksen koko (pikseliä)" #: plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:10 -#, fuzzy msgid "Gradient Beve_l..." -msgstr "Väriliuku takaperin" +msgstr "Viistottu väriliuku..." #: plug-ins/script-fu/scripts/gradient-example.scm.h:2 msgid "Custom _Gradient..." -msgstr "" +msgstr "Oma väriliuku..." #: plug-ins/script-fu/scripts/grid-system.scm.h:2 msgid "X divisions" -msgstr "" +msgstr "X jako" #: plug-ins/script-fu/scripts/grid-system.scm.h:3 msgid "Y divisions" -msgstr "" +msgstr "Y jako" #: plug-ins/script-fu/scripts/grid-system.scm.h:4 msgid "_Grid..." -msgstr "" +msgstr "Ristikko..." #: plug-ins/script-fu/scripts/guides-from-selection.scm.h:1 msgid "Creates four Guides around the bounding box of the current selection." -msgstr "" +msgstr "Luo neljä apulinjaa valinnan ympärille." #: plug-ins/script-fu/scripts/guides-from-selection.scm.h:2 msgid "New Guides from _Selection" -msgstr "" +msgstr "Uudet apulinjat valinnasta" #: plug-ins/script-fu/scripts/guides-new-percent.scm.h:1 #: plug-ins/script-fu/scripts/guides-new.scm.h:1 -#, fuzzy msgid "Direction" msgstr "Suunta" #: plug-ins/script-fu/scripts/guides-new-percent.scm.h:2 #: plug-ins/script-fu/scripts/guides-new.scm.h:2 msgid "Horizontal" -msgstr "" +msgstr "Vaakasuora" #: plug-ins/script-fu/scripts/guides-new-percent.scm.h:3 msgid "New Guide (by _Percent)..." -msgstr "" +msgstr "Uusi apulinja (%)..." #: plug-ins/script-fu/scripts/guides-new-percent.scm.h:5 #, no-c-format msgid "Position (in %)" -msgstr "" +msgstr "Sijainti (%:na)" #: plug-ins/script-fu/scripts/guides-new-percent.scm.h:6 #: plug-ins/script-fu/scripts/guides-new.scm.h:4 msgid "Vertical" -msgstr "" +msgstr "Pystysuora" #: plug-ins/script-fu/scripts/guides-new.scm.h:3 msgid "New _Guide..." -msgstr "" +msgstr "Uusi apulinja..." #: plug-ins/script-fu/scripts/guides-remove-all.scm.h:1 msgid "_Remove all Guides" -msgstr "" +msgstr "Poista kaikki apulinjat" + +#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 +#: plug-ins/script-fu/scripts/image-structure.scm.h:1 +msgid "/Script-Fu/Utils" +msgstr "/Script-Fu/Työkalut" #: plug-ins/script-fu/scripts/hsv-graph.scm.h:2 msgid "BG opacity" -msgstr "" +msgstr "Taustan peitto" #: plug-ins/script-fu/scripts/hsv-graph.scm.h:3 msgid "Draw _HSV Graph..." -msgstr "" +msgstr "Piirrä _HSV graafi..." #: plug-ins/script-fu/scripts/hsv-graph.scm.h:4 msgid "End X" -msgstr "" +msgstr "Loppu X" #: plug-ins/script-fu/scripts/hsv-graph.scm.h:5 msgid "End Y" -msgstr "" +msgstr "Loppu Y" #: plug-ins/script-fu/scripts/hsv-graph.scm.h:6 msgid "From top-left to bottom-right" -msgstr "" +msgstr "Ylhäältä vasemmalta - alas oikealle" #: plug-ins/script-fu/scripts/hsv-graph.scm.h:7 msgid "Graph scale" -msgstr "" +msgstr "Graafin skaala" #: plug-ins/script-fu/scripts/hsv-graph.scm.h:8 msgid "Start X" -msgstr "" +msgstr "Alku X" #: plug-ins/script-fu/scripts/hsv-graph.scm.h:9 msgid "Start Y" -msgstr "" +msgstr "Alku Y" #: plug-ins/script-fu/scripts/hsv-graph.scm.h:10 msgid "Use selection bounds instead of belows" -msgstr "" +msgstr "Käytä valinnan rajoja" #: plug-ins/script-fu/scripts/i26-gunya2.scm.h:4 -#, fuzzy msgid "Frame color" -msgstr "Kehys" +msgstr "Ruudun väri" #: plug-ins/script-fu/scripts/i26-gunya2.scm.h:5 -#, fuzzy msgid "Frame size" -msgstr "Kehys" +msgstr "Ruudun koko" #: plug-ins/script-fu/scripts/i26-gunya2.scm.h:6 msgid "Imigre-26..." @@ -1824,162 +1712,155 @@ #: plug-ins/script-fu/scripts/image-structure.scm.h:2 msgid "Apply layer mask (or discard)" -msgstr "" +msgstr "Käytä tason maskia (tai hylkää)" #: plug-ins/script-fu/scripts/image-structure.scm.h:4 msgid "Create new image" -msgstr "" +msgstr "Luo uusi kuva" #: plug-ins/script-fu/scripts/image-structure.scm.h:5 msgid "Insert layer names" -msgstr "" +msgstr "Lisää tasojen nimet" #: plug-ins/script-fu/scripts/image-structure.scm.h:6 -#, fuzzy msgid "Make new background" -msgstr "Läpinäkyvä tausta" +msgstr "Luo uusi tausta" #: plug-ins/script-fu/scripts/image-structure.scm.h:7 msgid "Outer border" -msgstr "" +msgstr "Ulkoreunus" #: plug-ins/script-fu/scripts/image-structure.scm.h:8 -#, fuzzy msgid "Pad color" -msgstr "Liidun väri" +msgstr "Täyttökuvion väri" #: plug-ins/script-fu/scripts/image-structure.scm.h:9 msgid "Pad opacity" -msgstr "" +msgstr "Täyttökuvion peitto" #: plug-ins/script-fu/scripts/image-structure.scm.h:10 msgid "Padding for transparent regions" -msgstr "" +msgstr "Täyttö läpinäkyville alueille" #: plug-ins/script-fu/scripts/image-structure.scm.h:11 msgid "Shear length" -msgstr "" +msgstr "Väännön pituus" #: plug-ins/script-fu/scripts/image-structure.scm.h:12 msgid "Show Image _Structure..." -msgstr "" +msgstr "Näytä kuvan _rakenne..." #: plug-ins/script-fu/scripts/image-structure.scm.h:13 msgid "Space between layers" -msgstr "" +msgstr "Tila tasojen välissä" #: plug-ins/script-fu/scripts/land.scm.h:6 msgid "Land height" -msgstr "" +msgstr "Maan korkeus" #: plug-ins/script-fu/scripts/land.scm.h:10 msgid "Sea depth" -msgstr "" +msgstr "Veden syvyys" #: plug-ins/script-fu/scripts/land.scm.h:11 msgid "_Land..." -msgstr "" +msgstr "Maa..." #: plug-ins/script-fu/scripts/lava.scm.h:4 #: plug-ins/script-fu/scripts/swirltile.scm.h:8 msgid "Roughness" -msgstr "" +msgstr "Epätasaisuus" #: plug-ins/script-fu/scripts/lava.scm.h:5 msgid "Seed" -msgstr "" +msgstr "Siemen" #: plug-ins/script-fu/scripts/lava.scm.h:8 msgid "Use current gradient" -msgstr "" +msgstr "Käytä valittua väriliukua" #: plug-ins/script-fu/scripts/lava.scm.h:9 msgid "_Lava..." -msgstr "" +msgstr "_Lava..." #: plug-ins/script-fu/scripts/line-nova.scm.h:2 msgid "Line _Nova..." -msgstr "" +msgstr "Line _Nova..." #: plug-ins/script-fu/scripts/line-nova.scm.h:3 msgid "Number of lines" -msgstr "" +msgstr "Viivojen määrä" #: plug-ins/script-fu/scripts/line-nova.scm.h:4 -#, fuzzy msgid "Offset radius" -msgstr "Siirtymä (pikseliä)" +msgstr "Siirtymän säde" #: plug-ins/script-fu/scripts/line-nova.scm.h:5 msgid "Randomness" -msgstr "" +msgstr "Satunnaisuus" #: plug-ins/script-fu/scripts/line-nova.scm.h:6 msgid "Sharpness (degrees)" -msgstr "" +msgstr "Terävyys (astetta)" #: plug-ins/script-fu/scripts/mkbrush.scm.h:1 -#, fuzzy msgid "/Xtns/Script-Fu/Make Brush" -msgstr "/Xtns/Script-Fu/Käynnistä palvelin" +msgstr "/Xtns/Script-Fu/Luo sivellin" #: plug-ins/script-fu/scripts/mkbrush.scm.h:2 msgid "Elli_ptical, Feathered..." -msgstr "" +msgstr "Elliptinen, sulitettu..." #: plug-ins/script-fu/scripts/mkbrush.scm.h:3 msgid "Feathering" -msgstr "" +msgstr "Sulitus" #: plug-ins/script-fu/scripts/mkbrush.scm.h:5 -#, fuzzy msgid "Name" -msgstr "Nimi:" +msgstr "Nimi" #: plug-ins/script-fu/scripts/mkbrush.scm.h:6 msgid "Re_ctangular, Feathered..." -msgstr "" +msgstr "Nelikulmio, sulitettu..." #: plug-ins/script-fu/scripts/mkbrush.scm.h:7 #: plug-ins/script-fu/scripts/select-to-brush.scm.h:4 msgid "Spacing" -msgstr "" +msgstr "Välistys" #: plug-ins/script-fu/scripts/mkbrush.scm.h:9 msgid "_Elliptical..." -msgstr "" +msgstr "Elliptinen..." #: plug-ins/script-fu/scripts/mkbrush.scm.h:10 msgid "_Rectangular..." -msgstr "" +msgstr "Neliömäinen..." #: plug-ins/script-fu/scripts/neon-logo.scm.h:4 msgid "Create shadow" -msgstr "" +msgstr "Luo varjo" #: plug-ins/script-fu/scripts/neon-logo.scm.h:5 -#, fuzzy msgid "Effect size (pixels * 5)" -msgstr "Siirtymä (pikseliä)" +msgstr "Efektin koko (pikseliä × 5)" #: plug-ins/script-fu/scripts/neon-logo.scm.h:9 msgid "N_eon..." -msgstr "" +msgstr "N_eon..." #: plug-ins/script-fu/scripts/news-text.scm.h:4 -#, fuzzy msgid "Cell size (pixels)" -msgstr "Kirjasinkoko (pikseleinä)" +msgstr "Solun koko (pikseliä)" #: plug-ins/script-fu/scripts/news-text.scm.h:6 #: plug-ins/script-fu/scripts/speed-text.scm.h:4 #, no-c-format msgid "Density (%)" -msgstr "" +msgstr "Tiheys (%)" #: plug-ins/script-fu/scripts/news-text.scm.h:9 msgid "Newsprint Text..." -msgstr "" +msgstr "Sanomalehtiteksti..." #: plug-ins/script-fu/scripts/old-photo.scm.h:3 msgid "Defocus" @@ -1995,212 +1876,209 @@ #: plug-ins/script-fu/scripts/old-photo.scm.h:7 msgid "_Old Photo..." -msgstr "" +msgstr "Vanha valokuva..." #: plug-ins/script-fu/scripts/perspective-shadow.scm.h:3 msgid "Angle" -msgstr "" +msgstr "Kulma" #: plug-ins/script-fu/scripts/perspective-shadow.scm.h:6 msgid "Cubic" -msgstr "" +msgstr "Neliöllinen" #: plug-ins/script-fu/scripts/perspective-shadow.scm.h:7 msgid "Interpolation" -msgstr "" +msgstr "Interpolaatio" #: plug-ins/script-fu/scripts/perspective-shadow.scm.h:8 msgid "Linear" -msgstr "" +msgstr "Lineaarinen" #: plug-ins/script-fu/scripts/perspective-shadow.scm.h:9 msgid "None" -msgstr "" +msgstr "Ei mitään" #: plug-ins/script-fu/scripts/perspective-shadow.scm.h:11 msgid "Relative distance of horizon" -msgstr "" +msgstr "Suhteellinen etäisyys horisontista" #: plug-ins/script-fu/scripts/perspective-shadow.scm.h:12 msgid "Relative length of shadow" -msgstr "" +msgstr "Varjon suhteellinen pituus" #: plug-ins/script-fu/scripts/perspective-shadow.scm.h:13 msgid "_Perspective..." -msgstr "" +msgstr "Perspektiivi..." #: plug-ins/script-fu/scripts/predator.scm.h:2 msgid "Edge amount" -msgstr "" +msgstr "Reunan määrä" #: plug-ins/script-fu/scripts/predator.scm.h:4 msgid "Pixel amount" -msgstr "" +msgstr "Pikselimäärä" #: plug-ins/script-fu/scripts/predator.scm.h:5 msgid "Pixelize" -msgstr "" +msgstr "Pikselöi" #: plug-ins/script-fu/scripts/predator.scm.h:7 msgid "_Predator..." msgstr "" #: plug-ins/script-fu/scripts/pupi-button.scm.h:5 -#, fuzzy msgid "Lower color" -msgstr "Oikean alareunan väri" +msgstr "Alempi väri" #: plug-ins/script-fu/scripts/pupi-button.scm.h:6 msgid "Lower color (active)" -msgstr "" +msgstr "Alempi väri (aktiivinen)" #: plug-ins/script-fu/scripts/pupi-button.scm.h:7 -#, fuzzy msgid "Not pressed" -msgstr "Painettu" +msgstr "Ei painettu" #: plug-ins/script-fu/scripts/pupi-button.scm.h:8 msgid "Not pressed (active)" -msgstr "" +msgstr "Ei painettu (aktiivinen)" #: plug-ins/script-fu/scripts/pupi-button.scm.h:9 msgid "Padding X" -msgstr "" +msgstr "Reunustus X" #: plug-ins/script-fu/scripts/pupi-button.scm.h:10 msgid "Padding Y" -msgstr "" +msgstr "Reunustus Y" #: plug-ins/script-fu/scripts/pupi-button.scm.h:12 msgid "Round ratio" -msgstr "" +msgstr "Pyöreyssuhde" #: plug-ins/script-fu/scripts/pupi-button.scm.h:15 -#, fuzzy msgid "Text color (active)" -msgstr "Tekstin väri" +msgstr "Tekstin väri (aktiivinen)" #: plug-ins/script-fu/scripts/pupi-button.scm.h:16 -#, fuzzy msgid "Upper color" -msgstr "Vasemman yläreunan väri" +msgstr "Ylempi väri" #: plug-ins/script-fu/scripts/pupi-button.scm.h:17 -#, fuzzy msgid "Upper color (active)" -msgstr "Vasemman yläreunan väri" +msgstr "Ylempi väri (aktiivinen)" #: plug-ins/script-fu/scripts/pupi-button.scm.h:18 msgid "_Round Button..." -msgstr "" +msgstr "Pyöreä painike..." #: plug-ins/script-fu/scripts/rendermap.scm.h:2 msgid "Behaviour" -msgstr "" +msgstr "Käyttäytyminen" #: plug-ins/script-fu/scripts/rendermap.scm.h:3 msgid "Detail in Middle" -msgstr "" +msgstr "Yksityiskohdat keskellä" #: plug-ins/script-fu/scripts/rendermap.scm.h:8 msgid "Render _Map..." -msgstr "" +msgstr "Luo kartta..." #: plug-ins/script-fu/scripts/rendermap.scm.h:9 msgid "Tile" -msgstr "" +msgstr "Lohko" #: plug-ins/script-fu/scripts/ripply-anim.scm.h:2 msgid "Black" -msgstr "" +msgstr "Musta" #: plug-ins/script-fu/scripts/ripply-anim.scm.h:3 msgid "Edge behaviour" -msgstr "" +msgstr "Reunan käytös" #: plug-ins/script-fu/scripts/ripply-anim.scm.h:4 #: plug-ins/script-fu/scripts/waves-anim.scm.h:4 msgid "Number of frames" -msgstr "" +msgstr "Ruutujen määrä" #: plug-ins/script-fu/scripts/ripply-anim.scm.h:5 msgid "Rippling strength" -msgstr "" +msgstr "Aaltoilun voimakkuus" #: plug-ins/script-fu/scripts/ripply-anim.scm.h:6 msgid "Smear" -msgstr "" +msgstr "Tuhri" #: plug-ins/script-fu/scripts/ripply-anim.scm.h:7 msgid "Wrap" -msgstr "" +msgstr "Kierrä" #: plug-ins/script-fu/scripts/ripply-anim.scm.h:8 msgid "_Rippling..." -msgstr "" +msgstr "Aaltoilu..." #: plug-ins/script-fu/scripts/round-corners.scm.h:2 -#, fuzzy msgid "Add background" -msgstr "Taustakuva" +msgstr "Lisää tausta" #: plug-ins/script-fu/scripts/round-corners.scm.h:3 msgid "Add drop-shadow" -msgstr "" +msgstr "Lisää varjo" #: plug-ins/script-fu/scripts/round-corners.scm.h:5 msgid "Edge radius" -msgstr "" +msgstr "Reunan säde" #: plug-ins/script-fu/scripts/round-corners.scm.h:9 msgid "_Round Corners..." -msgstr "" +msgstr "Pyöristä reunat..." #: plug-ins/script-fu/scripts/select-to-brush.scm.h:2 msgid "Brush name" -msgstr "" +msgstr "Siveltimen nimi" + +#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 +msgid "File name" +msgstr "Tiedostonimi" #: plug-ins/script-fu/scripts/select-to-brush.scm.h:5 -#, fuzzy msgid "To _Brush..." -msgstr "Selaa..." +msgstr "_Siveltimeksi..." #: plug-ins/script-fu/scripts/select-to-image.scm.h:2 msgid "To _Image" -msgstr "" +msgstr "_Kuvaksi..." + +#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 +msgid "Filename" +msgstr "Tiedostonimi" #: plug-ins/script-fu/scripts/select-to-pattern.scm.h:3 -#, fuzzy msgid "Pattern name" -msgstr "Kuvio" +msgstr "Kuvion nimi" #: plug-ins/script-fu/scripts/select-to-pattern.scm.h:4 -#, fuzzy msgid "To _Pattern..." -msgstr "Kuvio" +msgstr "Kuvioksi..." #: plug-ins/script-fu/scripts/selection-round.scm.h:1 -#, fuzzy msgid "Concave" -msgstr "Peru" +msgstr "Kovera" #: plug-ins/script-fu/scripts/selection-round.scm.h:3 -#, fuzzy, no-c-format +#, no-c-format msgid "Radius (%)" -msgstr "Säde" +msgstr "Säde (%)" #: plug-ins/script-fu/scripts/selection-round.scm.h:4 msgid "Rounded R_ectangle..." -msgstr "" +msgstr "Pyö_ristetty neliö..." #: plug-ins/script-fu/scripts/slide.scm.h:3 -#, fuzzy msgid "Font color" -msgstr "Tekstin väri" +msgstr "Kirjasinmen väri" #: plug-ins/script-fu/scripts/slide.scm.h:4 msgid "Number" -msgstr "" +msgstr "Numero" #: plug-ins/script-fu/scripts/slide.scm.h:7 msgid "_Slide..." @@ -2208,77 +2086,75 @@ #: plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:10 msgid "SOTA Chrome..." -msgstr "" +msgstr "SOTA kromi..." #: plug-ins/script-fu/scripts/speed-text.scm.h:7 msgid "Speed Text..." -msgstr "" +msgstr "Vauhtiteksti..." #: plug-ins/script-fu/scripts/sphere.scm.h:1 -#, fuzzy msgid "/Xtns/Script-Fu/Misc" -msgstr "/Xtns/Script-Fu/Käynnistä palvelin" +msgstr "/Xtns/Script-Fu/Sekalaiset" #: plug-ins/script-fu/scripts/sphere.scm.h:3 msgid "Lighting (degrees)" -msgstr "" +msgstr "Valaistus (astetta)" #: plug-ins/script-fu/scripts/sphere.scm.h:4 msgid "Radius (pixels)" -msgstr "" +msgstr "Säde (pikseliä)" #: plug-ins/script-fu/scripts/sphere.scm.h:6 -#, fuzzy msgid "Sphere color" -msgstr "Vasemman yläreunan väri" +msgstr "Pallon väri" #: plug-ins/script-fu/scripts/sphere.scm.h:7 -#, fuzzy msgid "_Sphere..." -msgstr "Selaa..." +msgstr "Pallo..." #: plug-ins/script-fu/scripts/spinning-globe.scm.h:2 msgid "Frames" -msgstr "" +msgstr "Ruutuja" #: plug-ins/script-fu/scripts/spinning-globe.scm.h:3 msgid "Index to n colors (0 = remain RGB)" -msgstr "" +msgstr "Indeksi n:ksi väriksi (0 = säilytä RGB)" #: plug-ins/script-fu/scripts/spinning-globe.scm.h:5 msgid "Turn from left to right" -msgstr "" +msgstr "Käänny vasemmalta oikealle" #: plug-ins/script-fu/scripts/spinning-globe.scm.h:7 msgid "_Spinning Globe..." -msgstr "" +msgstr "Pyörivä maapallo..." #: plug-ins/script-fu/scripts/spyrogimp.scm.h:2 msgid "Airbrush" -msgstr "" +msgstr "Ruisku" #: plug-ins/script-fu/scripts/spyrogimp.scm.h:3 msgid "Brush" -msgstr "" +msgstr "Sivellin" #: plug-ins/script-fu/scripts/spyrogimp.scm.h:4 msgid "Circle" -msgstr "" +msgstr "Ympyrä" #: plug-ins/script-fu/scripts/spyrogimp.scm.h:6 -#, fuzzy msgid "Color method" -msgstr "Väri 3" +msgstr "Värimetodi" #: plug-ins/script-fu/scripts/spyrogimp.scm.h:7 msgid "" "Draws Spirographs, Epitrochoids and Lissajous Curves. More info at http://" "netword.com/*spyrogimp" msgstr "" +"Piirrä spirograafeja, epitrosoideja ja Lissajoun käyriä. Lisätietoja http://" +"netword.com/*spyrogimp" #: plug-ins/script-fu/scripts/spyrogimp.scm.h:8 msgid "Epitrochoid" -msgstr "" +msgstr "Epitrosoidi" #: plug-ins/script-fu/scripts/spyrogimp.scm.h:9 msgid "Frame" @@ -2286,244 +2162,236 @@ #: plug-ins/script-fu/scripts/spyrogimp.scm.h:11 msgid "Gradient: Loop Sawtooth" -msgstr "" +msgstr "Väriliuku: toistuva saha-aalto" #: plug-ins/script-fu/scripts/spyrogimp.scm.h:12 msgid "Gradient: Loop Triangle" -msgstr "" +msgstr "Väriliuku: toistuva kolmio" #: plug-ins/script-fu/scripts/spyrogimp.scm.h:13 msgid "Hexagon" -msgstr "" +msgstr "Heksagoni" #: plug-ins/script-fu/scripts/spyrogimp.scm.h:14 msgid "Hole ratio" -msgstr "" +msgstr "Reiän suhde" #: plug-ins/script-fu/scripts/spyrogimp.scm.h:15 msgid "Inner teeth" -msgstr "" +msgstr "Sisähammastus" #: plug-ins/script-fu/scripts/spyrogimp.scm.h:16 msgid "Lissajous" -msgstr "" +msgstr "Lissajou" #: plug-ins/script-fu/scripts/spyrogimp.scm.h:17 msgid "Margin (pixels)" -msgstr "" +msgstr "Marginaali (pikseliä)" #: plug-ins/script-fu/scripts/spyrogimp.scm.h:18 msgid "Outer teeth" -msgstr "" +msgstr "Ulkohammastus" #: plug-ins/script-fu/scripts/spyrogimp.scm.h:19 msgid "Pencil" -msgstr "" +msgstr "Kynä" #: plug-ins/script-fu/scripts/spyrogimp.scm.h:20 msgid "Pentagon" -msgstr "" +msgstr "Pentagoni" #: plug-ins/script-fu/scripts/spyrogimp.scm.h:21 msgid "Polygon: 10 sides" -msgstr "" +msgstr "10-sivuinen polygoni" #: plug-ins/script-fu/scripts/spyrogimp.scm.h:22 msgid "Polygon: 7 sides" -msgstr "" +msgstr "7-sivuinen polygoni" #: plug-ins/script-fu/scripts/spyrogimp.scm.h:23 msgid "Polygon: 8 sides" -msgstr "" +msgstr "8-sivuinen polygoni" #: plug-ins/script-fu/scripts/spyrogimp.scm.h:24 msgid "Polygon: 9 sides" -msgstr "" +msgstr "9-sivuinen polygoni" #: plug-ins/script-fu/scripts/spyrogimp.scm.h:25 msgid "Shape" -msgstr "" +msgstr "Muoto" #: plug-ins/script-fu/scripts/spyrogimp.scm.h:26 msgid "Solid Color" -msgstr "" +msgstr "Yhtenäinen väri" #: plug-ins/script-fu/scripts/spyrogimp.scm.h:27 msgid "Spyrograph" -msgstr "" +msgstr "Spirograafi" #: plug-ins/script-fu/scripts/spyrogimp.scm.h:28 msgid "Square" -msgstr "" +msgstr "Neliö" #: plug-ins/script-fu/scripts/spyrogimp.scm.h:29 #: plug-ins/script-fu/scripts/text-circle.scm.h:7 msgid "Start angle" -msgstr "" +msgstr "Alkukulma" #: plug-ins/script-fu/scripts/spyrogimp.scm.h:30 msgid "Tool" -msgstr "" +msgstr "Työkalu" #: plug-ins/script-fu/scripts/spyrogimp.scm.h:31 msgid "Triangle" -msgstr "" +msgstr "Kolmio" #: plug-ins/script-fu/scripts/spyrogimp.scm.h:32 msgid "Type" -msgstr "" +msgstr "Tyyppi" #: plug-ins/script-fu/scripts/spyrogimp.scm.h:33 msgid "_Spyrogimp..." -msgstr "" +msgstr "Spirograafi..." #: plug-ins/script-fu/scripts/starburst-logo.scm.h:4 -#, fuzzy msgid "Burst color" -msgstr "Reunan väri" +msgstr "Ryöpyn väri" #: plug-ins/script-fu/scripts/starburst-logo.scm.h:5 -#, fuzzy msgid "Effect size (pixels * 30)" -msgstr "Kirjasinkoko (pikseleinä)" +msgstr "Efektin koko (pikseliä × 30)" #: plug-ins/script-fu/scripts/starburst-logo.scm.h:8 msgid "Starb_urst..." -msgstr "" +msgstr "Tähtiryöppy..." #: plug-ins/script-fu/scripts/starscape-logo.scm.h:3 -#, fuzzy msgid "Effect size (pixels * 4)" -msgstr "Siirtymä (pikseliä)" +msgstr "Efektin koko (pikseliä × 4)" #: plug-ins/script-fu/scripts/starscape-logo.scm.h:7 -#, fuzzy msgid "Sta_rscape..." -msgstr "Selaa..." +msgstr "Tähdistö" #: plug-ins/script-fu/scripts/swirltile.scm.h:9 msgid "Swirl-_Tile..." -msgstr "" +msgstr "Pyörrekuvio" #: plug-ins/script-fu/scripts/swirltile.scm.h:10 msgid "Whirl amount" -msgstr "" +msgstr "Pyörteen määrä" #: plug-ins/script-fu/scripts/swirly-pattern.scm.h:2 msgid "Number of times to whirl" -msgstr "" +msgstr "Pyörteen kierrokset" #: plug-ins/script-fu/scripts/swirly-pattern.scm.h:3 msgid "Quarter size" -msgstr "" +msgstr "Neljänneskoko" #: plug-ins/script-fu/scripts/swirly-pattern.scm.h:4 msgid "Whirl angle" -msgstr "" +msgstr "Pyörteen kulma" #: plug-ins/script-fu/scripts/swirly-pattern.scm.h:5 msgid "_Swirly..." -msgstr "" +msgstr "Pyörre..." #: plug-ins/script-fu/scripts/t-o-p-logo.scm.h:4 -#, fuzzy msgid "Base color" -msgstr "Reunan väri" +msgstr "Perusväri" #: plug-ins/script-fu/scripts/t-o-p-logo.scm.h:6 msgid "Edge only" -msgstr "" +msgstr "Vain reuna" #: plug-ins/script-fu/scripts/t-o-p-logo.scm.h:7 msgid "Edge width" -msgstr "" +msgstr "Reunan leveys" #: plug-ins/script-fu/scripts/t-o-p-logo.scm.h:10 msgid "Hit rate" -msgstr "" +msgstr "Osumasuhde" #: plug-ins/script-fu/scripts/t-o-p-logo.scm.h:12 msgid "_Particle Trace..." -msgstr "" +msgstr "Hiukkasen jäljitys" #: plug-ins/script-fu/scripts/text-circle.scm.h:2 msgid "Antialias" -msgstr "" +msgstr "Reunan pehmennys" #: plug-ins/script-fu/scripts/text-circle.scm.h:3 msgid "Fill angle" -msgstr "" +msgstr "Täyttökulma" #: plug-ins/script-fu/scripts/text-circle.scm.h:9 msgid "Text Circle..." -msgstr "" +msgstr "Tekstiympyrä" #: plug-ins/script-fu/scripts/textured-logo.scm.h:5 msgid "Ending blend" -msgstr "" +msgstr "Lopun sekoitus" #: plug-ins/script-fu/scripts/textured-logo.scm.h:8 msgid "Hexagons" -msgstr "" +msgstr "Heksagonit" #: plug-ins/script-fu/scripts/textured-logo.scm.h:9 msgid "Mosaic tile type" -msgstr "" +msgstr "Mosaiikki" #: plug-ins/script-fu/scripts/textured-logo.scm.h:10 msgid "Octagons" -msgstr "" +msgstr "Oktagonit" #: plug-ins/script-fu/scripts/textured-logo.scm.h:12 msgid "Squares" -msgstr "" +msgstr "Neliöt" #: plug-ins/script-fu/scripts/textured-logo.scm.h:13 msgid "Starting blend" -msgstr "" +msgstr "Alun sekoitus" #: plug-ins/script-fu/scripts/textured-logo.scm.h:15 -#, fuzzy msgid "Text pattern" -msgstr "Kuvio" +msgstr "Tekstin kuvio" #: plug-ins/script-fu/scripts/textured-logo.scm.h:16 msgid "_Textured..." -msgstr "" +msgstr "Pinnoitettu..." #: plug-ins/script-fu/scripts/tileblur.scm.h:1 msgid "Blur horizontally" -msgstr "" +msgstr "Sumenna vaakasuoraan" #: plug-ins/script-fu/scripts/tileblur.scm.h:2 -#, fuzzy msgid "Blur type" -msgstr "Sumenna Y" +msgstr "Sumennustyyppi" #: plug-ins/script-fu/scripts/tileblur.scm.h:3 msgid "Blur vertically" -msgstr "" +msgstr "Sumenna pystysuoraan" #: plug-ins/script-fu/scripts/tileblur.scm.h:4 msgid "IIR" -msgstr "" +msgstr "IIR" #: plug-ins/script-fu/scripts/tileblur.scm.h:5 msgid "RLE" -msgstr "" +msgstr "RLE" #: plug-ins/script-fu/scripts/tileblur.scm.h:7 msgid "_Tileable Blur..." -msgstr "" +msgstr "_Saumaton sumennus..." #: plug-ins/script-fu/scripts/title-header.scm.h:6 msgid "Web Title Header..." -msgstr "" +msgstr "Web-otsikko..." #: plug-ins/script-fu/scripts/truchet.scm.h:4 -#, fuzzy msgid "Foreground color" -msgstr "Taustaväri" +msgstr "Edustaväri" #: plug-ins/script-fu/scripts/truchet.scm.h:7 msgid "T_ruchet..." @@ -2531,154 +2399,469 @@ #: plug-ins/script-fu/scripts/unsharp-mask.scm.h:2 msgid "Mask opacity" -msgstr "" +msgstr "Maskin peitto" #: plug-ins/script-fu/scripts/unsharp-mask.scm.h:3 msgid "Mask size" -msgstr "" +msgstr "Maskin koko" #: plug-ins/script-fu/scripts/unsharp-mask.scm.h:4 msgid "_Unsharp Mask..." -msgstr "" +msgstr "Sumennusmaski..." #: plug-ins/script-fu/scripts/waves-anim.scm.h:2 msgid "Amplitude" -msgstr "" +msgstr "Voimakkuus" #: plug-ins/script-fu/scripts/waves-anim.scm.h:3 msgid "Invert direction" -msgstr "" +msgstr "Käänteinen suunta" #: plug-ins/script-fu/scripts/waves-anim.scm.h:5 msgid "Wavelength" -msgstr "" +msgstr "Aallonpituus" #: plug-ins/script-fu/scripts/waves-anim.scm.h:6 msgid "_Waves..." -msgstr "" +msgstr "Aallot..." #: plug-ins/script-fu/scripts/weave.scm.h:2 msgid "Ribbon spacing" -msgstr "" +msgstr "Nauhojen väli" #: plug-ins/script-fu/scripts/weave.scm.h:3 msgid "Ribbon width" -msgstr "" +msgstr "Nauhan leveys" #: plug-ins/script-fu/scripts/weave.scm.h:4 msgid "Shadow darkness" -msgstr "" +msgstr "Varjon tummuus" #: plug-ins/script-fu/scripts/weave.scm.h:5 -#, fuzzy msgid "Shadow depth" -msgstr "Varjon Y siirtymä" +msgstr "Varjon syvyys" #: plug-ins/script-fu/scripts/weave.scm.h:6 msgid "Thread density" -msgstr "" +msgstr "Langan tiheys" #: plug-ins/script-fu/scripts/weave.scm.h:7 msgid "Thread intensity" -msgstr "" +msgstr "Langan voimakkuus" #: plug-ins/script-fu/scripts/weave.scm.h:8 msgid "Thread length" -msgstr "" +msgstr "Langan pituus" #: plug-ins/script-fu/scripts/weave.scm.h:9 msgid "_Weave..." -msgstr "" +msgstr "Kudos..." #: plug-ins/script-fu/scripts/web-browser.scm.h:1 msgid "/Help/The GIMP Online" -msgstr "" +msgstr "/Help/GIMP verkossa" #: plug-ins/script-fu/scripts/web-browser.scm.h:2 msgid "Plug-in _Registry" -msgstr "" +msgstr "Liitännäisrekisteri" #: plug-ins/script-fu/scripts/web-browser.scm.h:3 msgid "_Developer Web Site" -msgstr "" +msgstr "Kehittäjien sivusto" #: plug-ins/script-fu/scripts/web-browser.scm.h:4 msgid "_Main Web Site" -msgstr "" +msgstr "Web-sivusto" #: plug-ins/script-fu/scripts/xach-effect.scm.h:2 -#, fuzzy msgid "Drop shadow X offset" msgstr "Varjon X siirtymä" #: plug-ins/script-fu/scripts/xach-effect.scm.h:3 -#, fuzzy msgid "Drop shadow Y offset" msgstr "Varjon Y siirtymä" #: plug-ins/script-fu/scripts/xach-effect.scm.h:4 -#, fuzzy msgid "Drop shadow blur radius" msgstr "Varjon sumennuksen säde" #: plug-ins/script-fu/scripts/xach-effect.scm.h:5 msgid "Drop shadow color" -msgstr "" +msgstr "Varjon väri" #: plug-ins/script-fu/scripts/xach-effect.scm.h:6 msgid "Drop shadow opacity" -msgstr "" +msgstr "Varjon peitto" #: plug-ins/script-fu/scripts/xach-effect.scm.h:7 msgid "Highlight X offset" -msgstr "" +msgstr "Korostuksen X siirtymä" #: plug-ins/script-fu/scripts/xach-effect.scm.h:8 msgid "Highlight Y offset" -msgstr "" +msgstr "Korostuksen Y siirtymä" #: plug-ins/script-fu/scripts/xach-effect.scm.h:10 msgid "Highlight opacity" -msgstr "" +msgstr "Korostuksen peitto" #: plug-ins/script-fu/scripts/xach-effect.scm.h:12 msgid "_Xach-Effect..." -msgstr "" +msgstr "_Xach-efekti..." + +#~ msgid "Buffer amount (% height of text)" +#~ msgstr "Puskurin määrä (% tekstin korkeudesta)" + +#~ msgid "_ASCII to Image..." +#~ msgstr "_ASCII kuvaksi..." + +#~ msgid "_ASCII to Layer..." +#~ msgstr "_ASCII Tasoksi..." + +#~ msgid "Copy _Visible" +#~ msgstr "Kopio näkyvä" #~ msgid "/Xtns/Script-Fu/_Refresh Scripts" #~ msgstr "/Xtns/Script-Fu/Virkistä scriptit" +#~ msgid "/Script-Fu/Alpha to Logo/3D _Outline..." +#~ msgstr "/Script-Fu/Läpinäkyvyydestä logo/3D _Reunus..." + +#~ msgid "/Xtns/Script-Fu/Logos/3D _Outline..." +#~ msgstr "/Xtns/Script-Fu/Logot/3D _Reunus..." + +#~ msgid "/Xtns/Script-Fu/Patterns/3_D Truchet..." +#~ msgstr "/Xtns/Script-Fu/Kuviot/3_D Truchet..." + +#~ msgid "/Script-Fu/Decor/Add B_evel..." +#~ msgstr "/Script-Fu/Koristeelliset/Lisää viiste..." + +#~ msgid "/Script-Fu/Decor/Add _Border..." +#~ msgstr "/Script-Fu/Koristeelliset/Lisää reunus..." + +#~ msgid "/Xtns/Script-Fu/Web Page Themes/Alien Glow/_Arrow..." +#~ msgstr "/Xtns/Script-Fu/Web-sivu teemat/Alien-hohto/_Nuoli..." + +#~ msgid "/Xtns/Script-Fu/Web Page Themes/Alien Glow/_Bullet..." +#~ msgstr "" +#~ "/Xtns/Script-Fu/Web-sivu teemat/Alien-hohto/_Järjestysmerkki..." + +#~ msgid "/Xtns/Script-Fu/Web Page Themes/Alien Glow/B_utton..." +#~ msgstr "/Xtns/Script-Fu/Web-sivu teemat/Alien-hohto/Nappula..." + +#~ msgid "/Script-Fu/Alpha to Logo/Alien _Glow..." +#~ msgstr "/Script-Fu/Läpinäkyvyydestä logo/Alien-_hohto..." + +#~ msgid "/Xtns/Script-Fu/Logos/Alien _Glow..." +#~ msgstr "/Xtns/Script-Fu/Logot/Alien-_hohto..." + +#~ msgid "/Script-Fu/Alpha to Logo/Alien _Neon..." +#~ msgstr "/Script-Fu/Läpinäkyvyydestä logo/Alien-_neoni..." + +#~ msgid "/Xtns/Script-Fu/Logos/Alien _Neon..." +#~ msgstr "/Xtns/Script-Fu/Logot/Alien-_neoni..." + +#~ msgid "/Xtns/Script-Fu/Utils/_ASCII to Image..." +#~ msgstr "/Xtns/Script-Fu/Utils/_ASCII Kuvaksi..." + +#~ msgid "/Script-Fu/Alpha to Logo/_Basic I..." +#~ msgstr "/Script-Fu/Läpinäkyvyydestä logo/_Perus I..." + +#~ msgid "/Xtns/Script-Fu/Logos/_Basic I..." +#~ msgstr "/Xtns/Script-Fu/Logot/_Perus I..." + +#~ msgid "/Script-Fu/Alpha to Logo/B_asic II..." +#~ msgstr "/Script-Fu/Läpinäkyvyydestä logo/P_erus II..." + +#~ msgid "/Xtns/Script-Fu/Logos/B_asic II..." +#~ msgstr "/Xtns/Script-Fu/Logot/P_erus II..." + +#~ msgid "/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/_Bullet..." +#~ msgstr "" +#~ "/Xtns/Script-Fu/Web-sivu teemat/Beveled Pattern/" +#~ "_Järjestysmerkki..." + +#~ msgid "/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/B_utton..." +#~ msgstr "" +#~ "/Xtns/Script-Fu/Web-sivu teemat/Beveled Pattern/_Nappula..." + +#~ msgid "/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/H_eading..." +#~ msgstr "" +#~ "/Xtns/Script-Fu/Web-sivu teemat/Beveled Pattern/_Otsikko..." + +#~ msgid "/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/_Hrule..." +#~ msgstr "/Xtns/Script-Fu/Web-sivu teemat/Beveled Pattern/_Erotin..." + +#~ msgid "/Script-Fu/Alpha to Logo/Blen_ded..." +#~ msgstr "/Script-Fu/Läpinäkyvyydestä logo/Blen_ded..." + +#~ msgid "/Xtns/Script-Fu/Logos/Blen_ded..." +#~ msgstr "/Xtns/Script-Fu/Logot/Sekoitettu..." + +#~ msgid "/Script-Fu/Alpha to Logo/Bo_vination..." +#~ msgstr "/Script-Fu/Läpinäkyvyydestä logo/Lehmätys..." + +#~ msgid "/Xtns/Script-Fu/Logos/Bo_vination..." +#~ msgstr "/Xtns/Script-Fu/Logot/Lehmätys..." + +#~ msgid "/Script-Fu/Animators/B_urn-In..." +#~ msgstr "/Script-Fu/Animaatiot/_Polta..." + +#~ msgid "Burn-in like effect on a fg (text) layer and a bg layer; V2.1" +#~ msgstr "Polttaa tekstitason kuvaan; V2.1" + #~ msgid "/Xtns/Script-Fu/Patterns/_Camouflage..." -#~ msgstr "/Xtns/Script-Fu/Patterns/Maastokuvio..." +#~ msgstr "/Xtns/Script-Fu/Kuviot/Maastokuvio..." + +#~ msgid "/Xtns/Script-Fu/Logos/Carved..." +#~ msgstr "/Xtns/Script-Fu/Logot/Kaiverrettu..." + +#~ msgid "/Script-Fu/Alpha to Logo/_Chalk..." +#~ msgstr "/Script-Fu/Läpinäkyvyydestä logo/_Liitu..." + +#~ msgid "/Xtns/Script-Fu/Logos/_Chalk..." +#~ msgstr "/Xtns/Script-Fu/Logot/_Liitu..." + +#~ msgid "/Script-Fu/Alpha to Logo/Chip Awa_y..." +#~ msgstr "/Script-Fu/Läpinäkyvyydestä logo/Sirpaloitu teksti..." + +#~ msgid "/Xtns/Script-Fu/Logos/Chip Awa_y..." +#~ msgstr "/Xtns/Script-Fu/Logot/Sirpaloitu teksti..." + +#~ msgid "/Script-Fu/Stencil Ops/C_hrome-It..." +#~ msgstr "/Script-Fu/Stencil Ops/Kromita..." + +#~ msgid "/Script-Fu/Alpha to Logo/C_hrome..." +#~ msgstr "/Script-Fu/Läpinäkyvyydestä logo/_Kromi..." + +#~ msgid "/Xtns/Script-Fu/Logos/C_hrome..." +#~ msgstr "/Xtns/Script-Fu/Logot/_Kromi..." + +#~ msgid "/Script-Fu/Render/_Circuit..." +#~ msgstr "/Script-Fu/Luo/_Piiri..." + +#~ msgid "/Script-Fu/Alchemy/_Clothify..." +#~ msgstr "/Script-Fu/Alchemy/_Kangas..." #~ msgid "/Script-Fu/Decor/_Coffee Stain..." -#~ msgstr "/Script-Fu/Decor/Kahvitahra..." +#~ msgstr "/Script-Fu/Koristeelliset/K_ahvitahra..." + +#~ msgid "/Script-Fu/Alpha to Logo/Comic Boo_k..." +#~ msgstr "/Script-Fu/Läpinäkyvyydestä logo/Sarjakuva..." #~ msgid "/Xtns/Script-Fu/Logos/Comic Boo_k..." -#~ msgstr "/Xtns/Script-Fu/Logos/Sarjakuva..." +#~ msgstr "/Xtns/Script-Fu/Logot/Sarjakuva..." + +#~ msgid "/Script-Fu/Alpha to Logo/Cool _Metal..." +#~ msgstr "/Script-Fu/Läpinäkyvyydestä logo/Viileä metalli..." + +#~ msgid "/Xtns/Script-Fu/Logos/Cool _Metal..." +#~ msgstr "/Xtns/Script-Fu/Logot/Viileä metalli..." -#, fuzzy #~ msgid "/Edit/Copy/Copy _Visible" -#~ msgstr "/Edit/Kopioi näkyvä osa" +#~ msgstr "/Edit/Kopioi _näkyvä osa" + +#~ msgid "/Xtns/Script-Fu/Logos/Crystal..." +#~ msgstr "/Xtns/Script-Fu/Logot/Kristalli..." + +#~ msgid "/Script-Fu/Selection/_Fade Outline..." +#~ msgstr "/Script-Fu/Valinta/_Häivytä ulkoreuna..." + +#~ msgid "/Xtns/Script-Fu/Patterns/_Flatland..." +#~ msgstr "/Xtns/Script-Fu/Kuviot/_Flatland..." + +#~ msgid "/Xtns/Script-Fu/Utils/_Font Map..." +#~ msgstr "/Xtns/Script-Fu/Utils/_Kirjasinkartta..." + +#~ msgid "/Script-Fu/Alpha to Logo/_Frosty..." +#~ msgstr "/Script-Fu/Läpinäkyvyydestä logo/_Hileinen..." + +#~ msgid "/Xtns/Script-Fu/Logos/_Frosty..." +#~ msgstr "/Xtns/Script-Fu/Logot/_Hileinen..." + +#~ msgid "/Script-Fu/Decor/_Fuzzy Border..." +#~ msgstr "/Script-Fu/Koristeelliset/_Pehmeä reunus..." -#, fuzzy #~ msgid "" #~ "/Xtns/Script-Fu/Web Page Themes/Classic.Gimp.Org/_Small Header..." -#~ msgstr "/Xtns/Script-Fu/Patterns/Maastokuvio..." +#~ msgstr "/Xtns/Script-Fu/Web-sivu teemat/Gimp.Org/_Pieni otsikko..." + +#~ msgid "" +#~ "/Xtns/Script-Fu/Web Page Themes/Classic.Gimp.Org/T_ube Sub-" +#~ "Button Label..." +#~ msgstr "" +#~ "/Xtns/Script-Fu/Web-sivu teemat/Gimp.Org/T_ube Sub-Button " +#~ "Label..." + +#~ msgid "" +#~ "/Xtns/Script-Fu/Web Page Themes/Classic.Gimp.Org/Tub_e Sub-Sub-" +#~ "Button Label..." +#~ msgstr "" +#~ "/Xtns/Script-Fu/Web-sivu teemat/Gimp.Org/Tub_e Sub-Sub-Button " +#~ "Label..." -#, fuzzy #~ msgid "" #~ "/Xtns/Script-Fu/Web Page Themes/Classic.Gimp.Org/_General Tube " #~ "Labels..." -#~ msgstr "/Xtns/Script-Fu/Patterns/Maastokuvio..." +#~ msgstr "" +#~ "/Xtns/Script-Fu/Web-sivu teemat/Gimp.Org/_General Tube Labels..." -#~ msgid "Re-read all available scripts" -#~ msgstr "Lue uudestaan kaikki skriptit" +#~ msgid "" +#~ "/Xtns/Script-Fu/Web Page Themes/Classic.Gimp.Org/_Tube Button " +#~ "Label..." +#~ msgstr "" +#~ "/Xtns/Script-Fu/Web-sivu teemat/Gimp.Org/_Tube Button Label..." -#, fuzzy -#~ msgid "_About" +#~ msgid "/Script-Fu/Alpha to Logo/Glo_ssy..." +#~ msgstr "/Script-Fu/Läpinäkyvyydestä logo/Kiiltävä..." + +#~ msgid "/Xtns/Script-Fu/Logos/Glo_ssy..." +#~ msgstr "/Xtns/Script-Fu/Logot/Kiiltävä..." + +#~ msgid "Use tattern for outline instead of gradient" +#~ msgstr "Käytä kuviota ulkoreunalla väriliu'un sijaan" + +#~ msgid "/Script-Fu/Alpha to Logo/Glo_wing Hot..." +#~ msgstr "/Script-Fu/Läpinäkyvyydestä logo/Hehkuvan kuuma..." + +#~ msgid "/Xtns/Script-Fu/Logos/Glo_wing Hot..." +#~ msgstr "/Xtns/Script-Fu/Logot/Hehkuvan kuuma..." + +#~ msgid "/Script-Fu/Alpha to Logo/Gradient Beve_l..." +#~ msgstr "/Script-Fu/Läpinäkyvyydestä logo/Väriliuku viistous..." + +#~ msgid "/Xtns/Script-Fu/Logos/Gradient Beve_l..." +#~ msgstr "/Xtns/Script-Fu/Logot/Väriliuku viistous..." + +#~ msgid "/Xtns/Script-Fu/Utils/Custom _Gradient..." +#~ msgstr "/Xtns/Script-Fu/Utils/Oma väriliuku..." + +#~ msgid "/Script-Fu/Render/_Grid..." +#~ msgstr "/Script-Fu/Luo/_Ristikko..." + +#~ msgid "/Xtns/Script-Fu/Logos/Imigre-26..." +#~ msgstr "/Xtns/Script-Fu/Logot/Imigre-26..." + +#~ msgid "/Script-Fu/Render/Line _Nova..." +#~ msgstr "/Script-Fu/Luo/Viiva _nova..." + +#~ msgid "/Xtns/Script-Fu/Make Brush/Elli_ptical, Feathered..." +#~ msgstr "/Xtns/Script-Fu/Make Brush/Elli_ptinen, sulitettu..." + +#~ msgid "/Xtns/Script-Fu/Make Brush/Re_ctangular, Feathered..." +#~ msgstr "/Xtns/Script-Fu/Make Brush/N_eliömäinen, sulitettu..." + +#~ msgid "/Xtns/Script-Fu/Make Brush/_Rectangular..." +#~ msgstr "/Xtns/Script-Fu/Make Brush/_Neliömäinen..." + +#~ msgid "/Xtns/Script-Fu/Logos/N_eon..." +#~ msgstr "/Xtns/Script-Fu/Logot/N_eon..." + +#~ msgid "/Xtns/Script-Fu/Logos/Newsprint Text..." +#~ msgstr "/Xtns/Script-Fu/Logot/Sanomalehtiteksti..." + +#~ msgid "/Script-Fu/Decor/_Old Photo..." +#~ msgstr "/Script-Fu/Koristeelliset/Wanha valokuva..." + +#~ msgid "/Script-Fu/Shadow/_Perspective..." +#~ msgstr "/Script-Fu/Shadow/_Perspektiivi..." + +#~ msgid "/Script-Fu/Alchemy/_Predator..." +#~ msgstr "/Script-Fu/Alchemy/_Predator..." + +#~ msgid "/Xtns/Script-Fu/Buttons/_Round Button..." +#~ msgstr "/Xtns/Script-Fu/Buttons/_Pyöreä nappula..." + +#~ msgid "/Xtns/Script-Fu/Patterns/Render _Map..." +#~ msgstr "/Xtns/Script-Fu/Kuviot/Luo kartta..." + +#~ msgid "/Script-Fu/Animators/_Rippling..." +#~ msgstr "/Script-Fu/Animaatiot/_Aaltoilu..." + +#~ msgid "/Script-Fu/Decor/_Round Corners..." +#~ msgstr "/Script-Fu/Koristeelliset/_Pyöristä reunat..." + +#~ msgid "/Script-Fu/Selection/To _Brush..." +#~ msgstr "/Script-Fu/Valinta/_Siveltimeksi..." + +#~ msgid "/Script-Fu/Selection/To _Pattern..." +#~ msgstr "/Script-Fu/Valinta/Kuvi_oksi..." + +#~ msgid "/Xtns/Script-Fu/Logos/SOTA Chrome..." +#~ msgstr "/Xtns/Script-Fu/Logot/SOTA-Kromi..." + +#~ msgid "/Xtns/Script-Fu/Logos/Speed Text..." +#~ msgstr "/Xtns/Script-Fu/Logot/Vauhtiteksti..." + +#~ msgid "/Xtns/Script-Fu/Misc/_Sphere..." +#~ msgstr "/Xtns/Script-Fu/Sekalaiset/Pallo..." + +#~ msgid "/Script-Fu/Animators/_Spinning Globe..." +#~ msgstr "/Script-Fu/Animaatiot/_Pyörivä maapallo..." + +#~ msgid "/Script-Fu/Render/_Spyrogimp..." +#~ msgstr "/Script-Fu/Luo/_Spyrogimp..." + +#~ msgid "/Script-Fu/Alpha to Logo/Starb_urst..." +#~ msgstr "/Script-Fu/Läpinäkyvyydestä logo/Tähtiryöppy..." + +#~ msgid "/Xtns/Script-Fu/Logos/Starb_urst..." +#~ msgstr "/Xtns/Script-Fu/Logot/Tähtiryöppy..." + +#~ msgid "/Script-Fu/Alpha to Logo/Sta_rscape..." +#~ msgstr "/Script-Fu/Läpinäkyvyydestä logo/Tähdistö..." + +#~ msgid "/Xtns/Script-Fu/Logos/Sta_rscape..." +#~ msgstr "/Xtns/Script-Fu/Logot/Tähdistö..." + +#~ msgid "/Xtns/Script-Fu/Patterns/Swirl-_Tile..." +#~ msgstr "/Xtns/Script-Fu/Kuviot/Pyörrekuvio..." + +#~ msgid "/Xtns/Script-Fu/Patterns/_Swirly..." +#~ msgstr "/Xtns/Script-Fu/Kuviot/_Pyörre..." + +#~ msgid "/Script-Fu/Alpha to Logo/_Particle Trace..." +#~ msgstr "/Script-Fu/Läpinäkyvyydestä logo/_Hiukkasen jäljitys..." + +#~ msgid "/Xtns/Script-Fu/Logos/_Particle Trace..." +#~ msgstr "/Xtns/Script-Fu/Logot/_Hiukkasen jäljitys..." + +#~ msgid "/Xtns/Script-Fu/Logos/Text Circle..." +#~ msgstr "/Xtns/Script-Fu/Logot/Tekstiympyrä..." + +#~ msgid "/Script-Fu/Alpha to Logo/_Textured..." +#~ msgstr "/Script-Fu/Läpinäkyvyydestä logo/_Pinnoitettu..." + +#~ msgid "/Xtns/Script-Fu/Logos/_Textured..." +#~ msgstr "/Xtns/Script-Fu/Logot/_Pinnoitettu..." + +#~ msgid "/Xtns/Script-Fu/Logos/Web Title Header..." +#~ msgstr "/Xtns/Script-Fu/Logot/Web otsikko..." + +#~ msgid "/Xtns/Script-Fu/Patterns/T_ruchet..." +#~ msgstr "/Xtns/Script-Fu/Kuviot/T_ruchet..." + +#~ msgid "/Script-Fu/Alchemy/_Unsharp Mask..." +#~ msgstr "/Script-Fu/Alchemy/_Sumennusmaski..." + +#~ msgid "/Script-Fu/Animators/_Waves..." +#~ msgstr "/Script-Fu/Animaatiot/_Aallot..." + +#~ msgid "/Help/The GIMP Online/Plug-in _Registry" +#~ msgstr "/Help/GIMP verkossa/Liitännäisrekisteri" + +#~ msgid "/Help/The GIMP Online/_Developer Web Site" +#~ msgstr "/Help/GIMP verkossa/_Kehittäjän sivusto" + +#~ msgid "/Script-Fu/Shadow/_Xach-Effect..." +#~ msgstr "/Script-Fu/Shadow/_Xach-efekti..." + +#~ msgid "About" #~ msgstr "Tietoja" +#~ msgid "Re-read all available scripts" +#~ msgstr "Lue uudestaan kaikki skriptit" + #~ msgid "DB Browser" #~ msgstr "Selain" @@ -2694,6 +2877,20 @@ #~ msgid "Help:" #~ msgstr "Apu:" +#~ msgid "" +#~ "\n" +#~ "\t\t SF-ADJUSTMENT _" +#~ msgstr "" +#~ "\n" +#~ "\t\t SF-Säätö _" + +#~ msgid "" +#~ "\n" +#~ "\t\t SF-COLOR _" +#~ msgstr "" +#~ "\n" +#~ "\t\t SF-Väri _" + #~ msgid "Font Size (pixels)" #~ msgstr "Kirjasinkoko (pikseleinä)" @@ -2703,6 +2900,9 @@ #~ msgid "Transparent Background" #~ msgstr "Läpinäkyvä tausta" +#~ msgid "Relative radius" +#~ msgstr "Suhteellinen säde" + #~ msgid "Unable to open a stream on the SIOD output pipe" #~ msgstr "SIODin tulostusputkea ei saatu avatuksi" @@ -2712,6 +2912,9 @@ #~ msgid "/Xtns/Script-Fu/Script-Fu _Console" #~ msgstr "/Xtns/Script-Fu/Script-Fu Konsoli" +#~ msgid "/Xtns/Script-Fu/_Start Server..." +#~ msgstr "/Xtns/Script-Fu/Käynnistä palvelin" + #~ msgid "" #~ "At least one font you've choosen is invalid.\n" #~ "Please check your settings.\n" diff -uraN gimp-2.2.0/po-script-fu/fr.gmo gimp-2.2.1/po-script-fu/fr.gmo --- gimp-2.2.0/po-script-fu/fr.gmo 2004-12-19 03:34:32.000000000 +0100 +++ gimp-2.2.1/po-script-fu/fr.gmo 2004-12-28 16:59:16.000000000 +0100 @@ -1,57 +1,54 @@ - `! a!o!s! z! !! !!! ! -!! -""" )"3" 9"C"]"{""" -""""" -" -" -" ##'# @#L#R#a#w## -# -### # ## # $ -$ $ ($ 6$ C$O$d$ -j$ u$!$"$ $$$ % % *%6% E%S%d%v%% %%%%%% %%% -% % -& &E)&o&& -&<&&&&& ''%' 6'C' L'V'`[' '''' -(( 0(<( K( U( -a(l((((( ((( ( )) #)/) -5)@)\)a) j) t)~) ) ) )) ) -) ))) -) * **#* -7*B*U*f* l* -x**** * -* **** +$+ <+H+_+ v++++++++++ -+ -,, , $, -1,<, K, W,"c, ,,,,,,,, - -$-)- <-F- M-Y-n--- - -----'- -. .(.=.D.V.h.x......... .//&/ ./ :/ G/S/ g/u/ / / // / /// -0 00&080 G0T0[0 d0q0z00000000 01 -1 -11 ,1 -81C1`1z1 11 111 1 11 1 1122 202J2d2v22222239(3=b3 33 3333 4.4N4S4m4|44 44444 44 4555 /5<5A5G5N5b5 t5555 5555 -555666 6 #6/6 >6J6^6 -c6n66 6 666 6#677 7"7+7C7H7 K7W7l7}777+7(78&(8O8 -X8 c8 p8|88 8 88 8 88 -8 889 99&9a,9::: : :::: ; %;3;E; a; n;z; ;;;';/; <<2<:<Q<i<<<<<< <<=+=== B=P=b=w== ==== == = > >'>A>[>q>>>>1>&>2?E?Y?t??????? @!@9@@@0Q@@ @ @ @@@@ @@@AKAkA}AAOAA"AB 0B QB -^BiB{B B BBrB C&CBC"^CCCCCCCDD2DRDqDD DDDDDD DE E#EAE FE RE ^EjEzEEEEEEEEEF'F9FIFPFnFFFFFFF$FG *G7GKG]G }GG(G#G GG H%H8H@H IHSHjHHHHH H -HHHHI$I7I JI&VI}IIIIIIJJ5JMJ`JgJ |J JJJJJJJ KK/K@KHK6LKKKKKKKKKLL(L FLPLWL jL vLLLLL LLLLM'MEMWMnMMMMM(M MMMN N &N3N :NDN UN_NuNNNNNNNN OO O O/O@OFOeOOOOOOO OOPP -P 9P GPUPkP$P*PP!P# Q$-Q$RQ%wQQQDQNRiR yRRRRR(R&!SHSOSoS~SSSSSSSTT1TGTaTgT}TTTTTT TT -U U#U9UQU -iU tUUUUUUUUUUU -VV!V:VVV -eV pV}V V&VVVVVV WWW&W>WRW)pW"W6W4W!)X;KXXXXXXXXXYY.Y=Y OY]YqY YYYYw8_.4$l?6/Vv6+N1fSob -mB4 PCMN8dK|rQ,-F&.rp/90(h5e+P> c$HL!nq;E]D sRY~yUO'7oZu'x0Q=bU#dim[&(*Xtf:V3L IYjZ7~Fzs*ila>|;GcWe#}?D1v-3wIkj9u)tEK@O_C["]k{pxagM%=@JqA22R -GT 5J"\{yz,AT%\h^`HW`B< ^)nX !  }:<gS%d Procedures%s:(none)/Script-Fu/1 Procedure/Xtns/Script-FuActive colorsAdd backgroundAdd drop-shadowAdd glowingAdd shadowAdditional InformationAfter glowAirbrushAllow resizingAmplitudeAngleAntialiasApply generated layermaskApply layer mask (or discard)Author:AutocropAzimuthBG opacityBackground ColorBackground ImageBackground colorBackground imageBar heightBar lengthBase colorBehaviourBevel height (Sharpness)Bevel height (sharpness)Bevel widthBlackBlack on whiteBlend gradient (Text)Blend gradient (outline)Blend gradient (text)Blend modeBlock sizeBlur XBlur YBlur amountBlur borderBlur horizontallyBlur radiusBlur typeBlur verticallyBorder X sizeBorder Y sizeBorder colorBorder sizeBorder size (pixels)BrushBrush nameBuffer amount (% height of text)Bumpmap (alpha layer) blur radiusBurn-In: Need two layers in total!Burst colorCarve raised textCarve white areasCell size (pixels)Chalk colorChip amountChrome balanceChrome factorChrome lightnessChrome saturationChrome white areasCircleCircuit seedClear unselected maskareaColorColor 1Color 2Color 3Color methodColumnsConcaveCopyright:Corona widthCreate new imageCreate shadowCreates four Guides around the bounding box of the current selection.Current CommandCustom GradientDark colorDarken only +| P! Q!_!c! j! v!! !!! ! +!! +!" +" "#" )"3"M"k"s"|" +""""" +" +" +" ""# 0#<#B#Q#g## +# +### # ## # ## +$ $ &$ 3$?$T$ +Z$!e$"$ $$$$ $ $% %"%3%E%X% _%l%%%%% %%% +% %% %E%>&N& +^&<i&&&&& &&& '' '%'`*' '''''' ' ( ( $( +0(;(T(n((( ((( ( (( (( +))+)0) 9) C)M) \) f) r)~) ) +) ))) +) ) ))) +**$*5* ;* +G*R*Y*w* * +* ****** ++.+ E+Q+X+`+i+|+++++ ++ +++ + + +, , , &,"2, U,a,t,,,,,,, ,,, -- -(-=-O-c- s- -----'- +- -- ..%.7.G.X.i.y...... .... . / /"/ 6/D/ ]/ j/ t// / /// +////0 0#0*0 30@0I0[0l0}00000 000 +00 0 +11/1I1 [1i1 x111 1 11 1 111111232E2^2y2222292=13 o3}3 3333 334"4<4K4Q4 a4n4u444 44 4444 4 555515 C5O5d5l5 5555 +555555 5 55 66-6 +26=6Q6 g6 t6~66 6#66666677 7&7;7L7a7x7+7(77&78 +'8 28 ?8K8Q8 `8 n8{8 8 88 +8 888888a8]:l:r: z: ::::: :;; 0; =;I; h;r;x;';/; ;;< < <8<N<f<|<<< <<<< = ==1=F=X= i=w=~== == = ===>*>@>R>p>w>&>2>>>?-?J?[?o???????0?@ '@ 1@ ;@E@\@e@ m@z@@@K@AA2AOAAA"AA A A +ABB *B 4B>BrBB BBB"BC9CUCiC~CCCCCCD-D HDTDZD`DoD~D DDD#DD D D DEE'E6.Uu5+M0eRna lA3 +OBLM8~cJ{qP,-E%-qo/90'g5d*O= b$GK mpD\C rQX}xTN'6nYt&w/P<aT#chlZ&(*Wse9U3K HXiY7}Eyr)hk`={:FbVd"|>C1u,2vHji8t(sDJ?N^BZ"\jzow`fL$<?Ip@12Q +FS 4I![zxy+@ S%[g]_GV_A;])mW!  ~|:;fR%d Procedures%s:(none)/Script-Fu/1 Procedure/Xtns/Script-FuActive colorsAdd backgroundAdd drop-shadowAdd glowingAdd shadowAdditional InformationAfter glowAirbrushAllow resizingAmplitudeAngleAntialiasApply generated layermaskApply layer mask (or discard)Author:AutocropAzimuthBG opacityBackground ColorBackground ImageBackground colorBackground imageBar heightBar lengthBase colorBehaviourBevel height (Sharpness)Bevel height (sharpness)Bevel widthBlackBlack on whiteBlend gradient (Text)Blend gradient (outline)Blend gradient (text)Blend modeBlock sizeBlur XBlur YBlur amountBlur borderBlur horizontallyBlur radiusBlur typeBlur verticallyBorder X sizeBorder Y sizeBorder colorBorder sizeBorder size (pixels)BrushBrush nameBumpmap (alpha layer) blur radiusBurn-In: Need two layers in total!Burst colorCarve raised textCarve white areasCell size (pixels)Chalk colorChip amountChrome balanceChrome factorChrome lightnessChrome saturationChrome white areasCircleCircuit seedClear unselected maskareaColorColor 1Color 2Color 3Color methodColumnsConcaveCopyright:Corona widthCreate new imageCreate shadowCreates four Guides around the bounding box of the current selection.Current CommandCustom GradientDark colorDarken only (Better, but only for images with alot of white)Date:Default bumpmap settingsDefocusDelta value on colorDensity (%)DepthDetail in MiddleDetail levelDiameterDirectionDownDraws Spirographs, Epitrochoids and Lissajous Curves. More info at http://netword.com/*spyrogimpDrop shadowDrop shadow X offsetDrop shadow Y offsetDrop shadow blur radiusDrop shadow colorDrop shadow opacityEdge amountEdge behaviourEdge onlyEdge radiusEdge widthEffect size (pixels * 3)Effect size (pixels * 30)Effect size (pixels * 4)Effect size (pixels * 5)Effect size (pixels)ElevationEnd XEnd YEnd blendEnding blendEnvironment mapEpitrochoidEraseErase/fillError while executing %s %sEvenEven/oddFG-BG-HSVFG-BG-RGBFG-TransparentFade awayFade from %Fade to %FadeoutFadeout widthFeatheringFile nameFilenameFill BG with patternFill angleFill with BGFlatten imageFontFont _size (pixels)Font colorFont size (pixels)Foreground colorFrameFrame colorFrame sizeFramesFrom top-left to bottom-rightGIMP ExtensionGIMP Plug-InGlow colorGlow radiusGlow size (pixels * 4)GradientGradient reverseGradient: Loop SawtoothGradient: Loop TriangleGranularityGranularity (1 is Low)Granularity (1 is low)Graph scaleHeightHexagonHexagonsHighlight X offsetHighlight Y offsetHighlight balanceHighlight colorHighlight opacityHit rateHole ratioHorizontalIIRImage Types:Image heightImage sizeImage to carveImage widthIndex imageIndex to n colors (0 = remain RGB)Inner teethInsert layer namesIntermediate framesInternal GIMP procedureInvertInvert directionKeep backgroundKeep bump layerKeep selectionLand heightLeftLighting (degrees)LissajousLoopedLower colorLower color (active)Lower-right colorMake new backgroundMargin (pixels)Mask opacityMask sizeMax. blur radiusMosaic tile typeMottleNameNo background (only for separate layer)No matchesNot pressedNot pressed (active)NumberNumber of X tilesNumber of Y tilesNumber of bandsNumber of colorsNumber of framesNumber of linesNumber of times to whirlOctagonsOddOffset (pixels)Offset XOffset YOffset radiusOffsets (pixels * 2)Oilify mask sizeOpacityOrientationOuter borderOuter teethOutline blur radiusOutline colorOutline gradient reverseOutline sizePad colorPad opacityPaddingPadding XPadding YPadding around textPadding for transparent regionsParametersPatternPattern (outline)Pattern (overlay)Pattern (text)Pattern namePencilPentagonPixel amountPixelizePolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPosition (in %)Prepare for GIFPressedProcedure BrowserQuarter sizeRLERadiusRadius (%)Radius (pixels)Random seedRandomnessRelative distance of horizonRelative length of shadowRemove backgroundReturn ValuesRibbon spacingRibbon widthRightRippling strengthRoughnessRound ratioRowsRows/colsSIOD OutputScale XScale YScript ArgumentsScript ProgressScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Palette SelectionScript-Fu Server OptionsScript-Fu _ConsoleScript-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSea depthSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSelect-by-color thresholdSeparate layerSepiaServer Logfile:Server Port:ShadowShadow X offsetShadow Y offsetShadow blur radiusShadow colorShadow darknessShadow depthShadow weight (%)ShapeSharpness (degrees)Shear lengthSizeSmearSmoothSmooth horizontallySmooth verticallySolid ColorSpace between layersSpacingSpeed (pixels/frame)Sphere colorSpots density XSpots density YSpreadSpyrographSquareSquaresStainsStart XStart YStart angleStart blendStarting blendSupersampleTemporary ProcedureTextText colorText color (active)Text gradient reverseText patternThicknessThread densityThread intensityThread lengthThreshold (bigger 1<-->255 smaller)TileToolTransparent backgroundTriangleTurn from left to rightTypeUpUpper colorUpper color (active)Upper-left colorUse current gradientUse font _name as textUse growing selectionUse pattern for outline instead of gradientUse pattern for text instead of gradientUse pattern overlayUse selection bounds instead of belowsVerticalWavelengthWhirl amountWhirl angleWidthWidth of bandsWidth of gapsWork on copyWrapX divisionsY divisions_Border (pixels)_Browse..._Color scheme_Filter (regexp)_Labels_Search:_Start Server..._TextProject-Id-Version: gimp-script-fu 2.2.0pre1 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:48+0100 +POT-Creation-Date: 2004-12-28 15:42+0100 PO-Revision-Date: 2004-11-13 18:09+0100 Last-Translator: Raymond Ostertag Language-Team: GNOME French Team MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit -%d procédures%s :(aucun)/Script-Fu/1 procédure/Exts/Script-FuActiver les couleursAjouter un arrière-planAjouter une ombre portéeAjouter lueurAjouter une ombreInformation supplémentaireRougeoiementAérographePermettre le redimensionnementAmplitudeAngleAnti-crénelageAppliquer le masque de calque généréAppliquer le masque de calque (ou le supprimer)Auteur :Découpage automatiqueAzimuthOpacité de l'Ar. PlanCouleur d'arrière-planImage d'arrière-planCouleur d'arrière-planImage d'arrière-planHauteur de la barreLongueur de la barreCouleur de baseComportementHauteur du biseau (finesse)Hauteur du biseau (finesse)Largeur du biseauNoirNoir et blancDégradé (texte)Dégradé (contours)Dégradé (texte)Mode de mélangeTaile de blocFlou XFlou YQuantité de flouBordure floueRendre flou horizontalementRayon du flouType de flouRendre flou verticalementTaille de la bordure en XTaille de la bordure en YCouleur de la bordureTaille de bordureTaille de la bordure (pixels)BrosseNom de la brosseQuantité de mémoire tampon (% hauteur de texte)Bosselage (calque Alpha) rayon de flouEnflammer : à besoin de deux calques au total !Couleur d'explosionEntailler le texte agrandiEntailler les zone blanchesTaille des cellules (pixels)Couleur de craieQuantité d'éclatsBalance du chromeFacteur de chromeLuminosité du chromeSaturation du chromeZone blanches du chromeCercleGerme du circuitEffacer les zones non sélectionnées du masque CouleurCouleur 1Couleur 2Couleur 3Méthode de colorationColonnesConcaveCopyright :Largeur de la couronneCréer une nouvelle imageCréer une ombreCréé quatre guides autour du rectangle englobant la sélection courante. Commande couranteDégradé personnaliséCouleur sombreAssombrir seulement +%d procédures%s :(aucun)/Script-Fu/1 procédure/Exts/Script-FuActiver les couleursAjouter un arrière-planAjouter une ombre portéeAjouter lueurAjouter une ombreInformation supplémentaireRougeoiementAérographePermettre le redimensionnementAmplitudeAngleAnti-crénelageAppliquer le masque de calque généréAppliquer le masque de calque (ou le supprimer)Auteur :Découpage automatiqueAzimuthOpacité de l'Ar. PlanCouleur d'arrière-planImage d'arrière-planCouleur d'arrière-planImage d'arrière-planHauteur de la barreLongueur de la barreCouleur de baseComportementHauteur du biseau (finesse)Hauteur du biseau (finesse)Largeur du biseauNoirNoir et blancDégradé (texte)Dégradé (contours)Dégradé (texte)Mode de mélangeTaile de blocFlou XFlou YQuantité de flouBordure floueRendre flou horizontalementRayon du flouType de flouRendre flou verticalementTaille de la bordure en XTaille de la bordure en YCouleur de la bordureTaille de bordureTaille de la bordure (pixels)BrosseNom de la brosseBosselage (calque Alpha) rayon de flouEnflammer : à besoin de deux calques au total !Couleur d'explosionEntailler le texte agrandiEntailler les zone blanchesTaille des cellules (pixels)Couleur de craieQuantité d'éclatsBalance du chromeFacteur de chromeLuminosité du chromeSaturation du chromeZone blanches du chromeCercleGerme du circuitEffacer les zones non sélectionnées du masque CouleurCouleur 1Couleur 2Couleur 3Méthode de colorationColonnesConcaveCopyright :Largeur de la couronneCréer une nouvelle imageCréer une ombreCréé quatre guides autour du rectangle englobant la sélection courante. Commande couranteDégradé personnaliséCouleur sombreAssombrir seulement (Seulement meilleur pour des images avec beaucoup de blanc)Date :Réglages par défaut du bosselageEnlever le focusValeur de différence de couleurDensité (%)ProfondeurDétail au milieuNiveau de détailDiamètreDirectionBasDessine des courbes épitrochoïdes et Lissajous avec un spyrographe. Plus d'info à http://netword.com/*spyrogimpOmbre portéeDécalage X d'ombre portéeDécalage Y d'ombre portéeRayon de flou pour l'ombre portéeCouleur de l'ombre portéeOpacité de l'ombre portéeQuantité d'arètesComportement du bordBords seulementRayon des bordsLargeur des bordsTaille de l'effet (pixels * 3)Taille de l'effet (pixels * 30)Taille de l'effet (pixels * 4)Taille de l'effet (pixels * 5)Taille de l'effet (pixels)ÉlévationFin XFin YMélange finalMélange finalCarte d'environnementÉpitrochoideEffacerEffacer/RemplirErreur durant l'exécution de %s %sPairPair/ImpairAvp-Arp-HSVAvp-Arp-RGBAvp TransparentAffaiblissementEstompement depuis %Estompement vers %FonduLargeur de l'estompementPlumageNom de fichierNom de fichierRemplir l'AP avec un motifAngle de remplissageRemplir avec l'APAplatir l'imagePolice_Taille de la police (pixels)Couleur de la policeTaille de la police (pixels)Couleur de premier planCadreCouleur de l'encadrementTaille de l'encadrementTramesDepuis de haut-gauche vers bas-droitExtension GimpGreffon GimpCouleur de la lueurRayon de la lueurTaille de la lueur (pixels * 4)DégradéDégradé inverseDégradé : rebouclage en dents de scieDégradé : rebouclage en triangleGranularitéGranularité (1 est bas)Granularité (1 est bas)Échelle du grapheHauteurHexagoneHexagonesDécalage X éclairageDécalage Y éclairageBalance d'éclairageCouleur d'éclairageOpacité d'éclairageTaux de tracesRatio du trouHorizontalIIRTypes d'images :Hauteur de l'imageTaille de l'imageImage à entaillerLargeur de l'imageImage indexIndex à n couleurs (0 = reste en RVB)Denture intérieureInsérer le nom des calquesSéquences intermédairesProcédure interne à GimpInverserInverse la directionGarder l'arrière-planConserver le calque de reliefConserver la sélectionHauteur du terrainGaucheÉclairage (degrés)Lissajousen BoucleCouleur du basCouleur du bas (active)Couleur bas-droiteCréer un nouvel arrière-planMarge (pixels)Opacité du masqueTaille du masqueRayon max. du flouType de mosaiqueMarbrerNomAucun arrière-plan (seulement pour le nouveau calque)Aucunes correspondancesInactifNormalNombreNombre de carreaux en XNombre de carreaux en YNombre de bandesNombres de couleursNombre d'imagesNombres de lignesCombien de fois tourbillonnerOctogonesImpairDécalage (pixels)Décalage XDécalage YRayon du décalageDécalages (pixels x 2)Taille de masque OpacitéOrientationContour extérieurDenture extérieureRayon de flou du contourCouleur du contourDégradé du contour inverséTaille du contourCouleur de remplissageOpacité du remplissageMargeMarge XMarge YRemplissage autour du texteRemplissage pour les zones transparentesParamètresMotifMotif (contour)Motif (recouvrement)Motif (texte)Nom du motifCrayonPentagoneNombre de pixelsPixeliserPolygone : 10 cotésPolygone : 7 cotésPolygone : 8 cotéspolygone : 9 cotésPosition (en %)Préparer pour GIFActivéNavigateur de procéduresTaille du quartierRLERayonRayon (%)Rayon (pixels)Germe aléatoireAléaDistance relative de l'horizonLongueur relative de l'ombreEnlever l'arrière-planValeurs de retourEspacement bandesLargeur des bandesDroiteVigueur de l'ondulationRugositéProportion de l'arrondiRangéesRangées/ColonnesSortie SIODÉchelle en XÉchelle en YParamètres du scriptAvancement du scriptSélection de la brosse de Script-FuSélection de la Couleur pour le Script-FuConsole pour Script-FuSélection du fichier (Script-Fu)Sélection du répertoire Script-FuSélection de la police de Script-FuSélection du dégradé de Script-FuSélection de la palette de Script-FuOptions du serveur du Script-Fu_Console pour Script-FuLe mode console pour Script-Fu n'autorise que des appels interactifsLe mode d'évaluation du Script-Fu autorise uniquement un appel non-interactifScript-Fu : %sSélection du motif de Script-FuProfondeur de la merRechercher par _blurbRechercher par _nomRecherche - veuillez patienterRecherche par blurb - veuillez patienterRecherche par nom - veuillez patienterGraineSeuil de sélection par couleurNouveau calqueSépiaFichier de log du serveur :Port du serveur :OmbreDécalage de l'ombre en XDécalage de l'ombre en YRayon de flou de l'ombreCouleur de l'ombreObscurité de l'ombreProfondeur de l'ombreÉpaisseur de l'ombre (%)FormeÉtroitesse (degrés)Longueur de cisaillementTailleÉtalerAdoucirAdoucir horizontalementAdoucir verticalementCouleur unieEspace entre les calquesEspacementVitesse (pixels/image)Couleur de la sphèreDensité de points en XDensité de points en YDispersionSpyrographeCarréCarrésTâchesDébut XDébut YAngle de départDépart du mélangeDébut mélangeSuper-échantillonageProcédure temporaireTexteCouleur du texteCouleur du texte (actif)Dégradé de texte inverséMotif du texteÉpaisseurDensité filIntensité filLongueur filSeuil (plus grand 1<-->255 plus petit)CarreauOutilArrière-plan transparentTriangleTourne de gauche à droiteTypeHautCouleur du hautCouleur du haut (actif)Couleur haut-gaucheUtiliser le dégradé courantUtiliser le n_om de la police comme texteUtiliser une sélection croissanteUtiliser un motif pour le contour au lieu du dégradéUtiliser un motif pour le texte au lieu du dégradéUtiliser un motif de recouvrementUtiliser les limites de la sélection au lieu de ci-dessousVerticalLongueur d'ondeQuantité de tourbillonsAngle de tourbillonLargeurLargeur des bandesLargeur des brèchesTravailler sur une copieEnroulerDivisions en XDivisions en Y_Bordure (pixels)_Parcourir..._Schéma de couleur_Filtre (regexp)_Étiquettes_Rechercher :_Démarrer le serveur...Te_xte \ No newline at end of file diff -uraN gimp-2.2.0/po-script-fu/fr.po gimp-2.2.1/po-script-fu/fr.po --- gimp-2.2.0/po-script-fu/fr.po 2004-12-19 03:34:27.000000000 +0100 +++ gimp-2.2.1/po-script-fu/fr.po 2004-12-28 16:59:11.000000000 +0100 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: gimp-script-fu 2.2.0pre1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:48+0100\n" +"POT-Creation-Date: 2004-12-28 15:42+0100\n" "PO-Revision-Date: 2004-11-13 18:09+0100\n" "Last-Translator: Raymond Ostertag \n" "Language-Team: GNOME French Team \n" @@ -324,7 +324,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:5 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:4 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:6 -#: plug-ins/script-fu/scripts/asc2img.scm.h:8 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:4 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:5 #: plug-ins/script-fu/scripts/beveled-button.scm.h:3 @@ -365,7 +364,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:6 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:5 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:7 -#: plug-ins/script-fu/scripts/asc2img.scm.h:9 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:5 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:6 #: plug-ins/script-fu/scripts/beveled-button.scm.h:4 @@ -494,7 +492,6 @@ #: plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:2 #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:3 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:4 -#: plug-ins/script-fu/scripts/asc2img.scm.h:3 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:3 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:4 #: plug-ins/script-fu/scripts/blended-logo.scm.h:3 @@ -712,7 +709,6 @@ msgstr "Marge" #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:11 -#: plug-ins/script-fu/scripts/asc2img.scm.h:10 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:7 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:8 #: plug-ins/script-fu/scripts/beveled-button.scm.h:10 @@ -755,51 +751,6 @@ msgid "Width of gaps" msgstr "Largeur des brèches" -#: plug-ins/script-fu/scripts/asc2img.scm.h:1 -#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 -#: plug-ins/script-fu/scripts/image-structure.scm.h:1 -#, fuzzy -msgid "/Script-Fu/Utils" -msgstr "/Script-Fu/Utilitaires/_ASCII vers calque..." - -#: plug-ins/script-fu/scripts/asc2img.scm.h:2 -#: plug-ins/script-fu/scripts/font-map.scm.h:1 -#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 -#, fuzzy -msgid "/Xtns/Script-Fu/Utils" -msgstr "/Exts/Script-Fu" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:5 -#, no-c-format -msgid "Buffer amount (% height of text)" -msgstr "Quantité de mémoire tampon (% hauteur de texte)" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:6 -#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 -msgid "File name" -msgstr "Nom de fichier" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:7 -#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 -msgid "Filename" -msgstr "Nom de fichier" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:11 -#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 -#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 -#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 -msgid "Transparent background" -msgstr "Arrière-plan transparent" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:12 -msgid "_ASCII to Image..." -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:13 -#, fuzzy -msgid "_ASCII to Layer..." -msgstr "/Script-Fu/Utilitaires/_ASCII vers calque..." - #: plug-ins/script-fu/scripts/basic1-logo.scm.h:8 msgid "_Basic I..." msgstr "" @@ -854,6 +805,12 @@ msgid "Diameter" msgstr "Diamètre" +#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 +#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 +#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 +msgid "Transparent background" +msgstr "Arrière-plan transparent" + #: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:4 msgid "H_eading..." msgstr "" @@ -1459,6 +1416,12 @@ msgid "_Flatland..." msgstr "" +#: plug-ins/script-fu/scripts/font-map.scm.h:1 +#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 +#, fuzzy +msgid "/Xtns/Script-Fu/Utils" +msgstr "/Exts/Script-Fu" + #: plug-ins/script-fu/scripts/font-map.scm.h:2 msgid "Active colors" msgstr "Activer les couleurs" @@ -1736,6 +1699,12 @@ msgid "_Remove all Guides" msgstr "/Image/Guides/_Enlever tous les guides" +#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 +#: plug-ins/script-fu/scripts/image-structure.scm.h:1 +#, fuzzy +msgid "/Script-Fu/Utils" +msgstr "/Script-Fu/Utilitaires/_ASCII vers calque..." + #: plug-ins/script-fu/scripts/hsv-graph.scm.h:2 msgid "BG opacity" msgstr "Opacité de l'Ar. Plan" @@ -2114,6 +2083,10 @@ msgid "Brush name" msgstr "Nom de la brosse" +#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 +msgid "File name" +msgstr "Nom de fichier" + #: plug-ins/script-fu/scripts/select-to-brush.scm.h:5 #, fuzzy msgid "To _Brush..." @@ -2123,6 +2096,10 @@ msgid "To _Image" msgstr "" +#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 +msgid "Filename" +msgstr "Nom de fichier" + #: plug-ins/script-fu/scripts/select-to-pattern.scm.h:3 msgid "Pattern name" msgstr "Nom du motif" @@ -2590,6 +2567,13 @@ msgid "_Xach-Effect..." msgstr "" +#~ msgid "Buffer amount (% height of text)" +#~ msgstr "Quantité de mémoire tampon (% hauteur de texte)" + +#, fuzzy +#~ msgid "_ASCII to Layer..." +#~ msgstr "/Script-Fu/Utilitaires/_ASCII vers calque..." + #~ msgid "/Xtns/Script-Fu/_Refresh Scripts" #~ msgstr "/Exts/Script-Fu/_Rafraîchir les scripts" diff -uraN gimp-2.2.0/po-script-fu/ga.gmo gimp-2.2.1/po-script-fu/ga.gmo --- gimp-2.2.0/po-script-fu/ga.gmo 2004-12-19 03:34:32.000000000 +0100 +++ gimp-2.2.1/po-script-fu/ga.gmo 2004-12-28 16:59:16.000000000 +0100 @@ -2,7 +2,7 @@ !17<EJ O[b h t\   $0BGPU\c j w         %s:/Script-Fu/Author:Background ColorBackground ImageBlackCircleColorColor 1Color 2Color 3Copyright:Current CommandDate:DownFilenameFontLeftOrientationPencilRightSIOD OutputScript-Fu: %sSizeTextToolTypeUp_Border (pixels)_TextProject-Id-Version: gimp-script-fu HEAD Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:48+0100 +POT-Creation-Date: 2004-12-28 15:42+0100 PO-Revision-Date: 2004-01-20 0740+0000 Last-Translator: Alastair McKinstry Language-Team: Gaeilge diff -uraN gimp-2.2.0/po-script-fu/ga.po gimp-2.2.1/po-script-fu/ga.po --- gimp-2.2.0/po-script-fu/ga.po 2004-12-19 03:34:27.000000000 +0100 +++ gimp-2.2.1/po-script-fu/ga.po 2004-12-28 16:59:11.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: gimp-script-fu HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:48+0100\n" +"POT-Creation-Date: 2004-12-28 15:42+0100\n" "PO-Revision-Date: 2004-01-20 0740+0000\n" "Last-Translator: Alastair McKinstry \n" "Language-Team: Gaeilge \n" @@ -316,7 +316,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:5 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:4 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:6 -#: plug-ins/script-fu/scripts/asc2img.scm.h:8 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:4 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:5 #: plug-ins/script-fu/scripts/beveled-button.scm.h:3 @@ -357,7 +356,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:6 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:5 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:7 -#: plug-ins/script-fu/scripts/asc2img.scm.h:9 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:5 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:6 #: plug-ins/script-fu/scripts/beveled-button.scm.h:4 @@ -486,7 +484,6 @@ #: plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:2 #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:3 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:4 -#: plug-ins/script-fu/scripts/asc2img.scm.h:3 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:3 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:4 #: plug-ins/script-fu/scripts/blended-logo.scm.h:3 @@ -706,7 +703,6 @@ msgstr "" #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:11 -#: plug-ins/script-fu/scripts/asc2img.scm.h:10 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:7 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:8 #: plug-ins/script-fu/scripts/beveled-button.scm.h:10 @@ -751,50 +747,6 @@ msgid "Width of gaps" msgstr "" -#: plug-ins/script-fu/scripts/asc2img.scm.h:1 -#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 -#: plug-ins/script-fu/scripts/image-structure.scm.h:1 -#, fuzzy -msgid "/Script-Fu/Utils" -msgstr "/Script-Fu/" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:2 -#: plug-ins/script-fu/scripts/font-map.scm.h:1 -#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 -msgid "/Xtns/Script-Fu/Utils" -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:5 -#, no-c-format -msgid "Buffer amount (% height of text)" -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:6 -#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 -#, fuzzy -msgid "File name" -msgstr "Ainm Chomhad" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:7 -#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 -msgid "Filename" -msgstr "Ainm Chomhad" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:11 -#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 -#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 -#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 -msgid "Transparent background" -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:12 -msgid "_ASCII to Image..." -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:13 -msgid "_ASCII to Layer..." -msgstr "" - #: plug-ins/script-fu/scripts/basic1-logo.scm.h:8 msgid "_Basic I..." msgstr "" @@ -844,6 +796,12 @@ msgid "Diameter" msgstr "" +#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 +#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 +#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 +msgid "Transparent background" +msgstr "" + #: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:4 msgid "H_eading..." msgstr "" @@ -1444,6 +1402,11 @@ msgid "_Flatland..." msgstr "" +#: plug-ins/script-fu/scripts/font-map.scm.h:1 +#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 +msgid "/Xtns/Script-Fu/Utils" +msgstr "" + #: plug-ins/script-fu/scripts/font-map.scm.h:2 msgid "Active colors" msgstr "" @@ -1718,6 +1681,12 @@ msgid "_Remove all Guides" msgstr "" +#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 +#: plug-ins/script-fu/scripts/image-structure.scm.h:1 +#, fuzzy +msgid "/Script-Fu/Utils" +msgstr "/Script-Fu/" + #: plug-ins/script-fu/scripts/hsv-graph.scm.h:2 msgid "BG opacity" msgstr "" @@ -2096,6 +2065,11 @@ msgid "Brush name" msgstr "" +#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 +#, fuzzy +msgid "File name" +msgstr "Ainm Chomhad" + #: plug-ins/script-fu/scripts/select-to-brush.scm.h:5 #, fuzzy msgid "To _Brush..." @@ -2105,6 +2079,10 @@ msgid "To _Image" msgstr "" +#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 +msgid "Filename" +msgstr "Ainm Chomhad" + #: plug-ins/script-fu/scripts/select-to-pattern.scm.h:3 msgid "Pattern name" msgstr "" diff -uraN gimp-2.2.0/po-script-fu/gimp20-script-fu.pot gimp-2.2.1/po-script-fu/gimp20-script-fu.pot --- gimp-2.2.0/po-script-fu/gimp20-script-fu.pot 2004-12-18 01:48:26.000000000 +0100 +++ gimp-2.2.1/po-script-fu/gimp20-script-fu.pot 2004-12-28 15:42:33.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:48+0100\n" +"POT-Creation-Date: 2004-12-28 15:42+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -315,7 +315,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:5 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:4 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:6 -#: plug-ins/script-fu/scripts/asc2img.scm.h:8 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:4 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:5 #: plug-ins/script-fu/scripts/beveled-button.scm.h:3 @@ -356,7 +355,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:6 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:5 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:7 -#: plug-ins/script-fu/scripts/asc2img.scm.h:9 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:5 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:6 #: plug-ins/script-fu/scripts/beveled-button.scm.h:4 @@ -484,7 +482,6 @@ #: plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:2 #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:3 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:4 -#: plug-ins/script-fu/scripts/asc2img.scm.h:3 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:3 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:4 #: plug-ins/script-fu/scripts/blended-logo.scm.h:3 @@ -697,7 +694,6 @@ msgstr "" #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:11 -#: plug-ins/script-fu/scripts/asc2img.scm.h:10 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:7 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:8 #: plug-ins/script-fu/scripts/beveled-button.scm.h:10 @@ -740,48 +736,6 @@ msgid "Width of gaps" msgstr "" -#: plug-ins/script-fu/scripts/asc2img.scm.h:1 -#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 -#: plug-ins/script-fu/scripts/image-structure.scm.h:1 -msgid "/Script-Fu/Utils" -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:2 -#: plug-ins/script-fu/scripts/font-map.scm.h:1 -#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 -msgid "/Xtns/Script-Fu/Utils" -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:5 -#, no-c-format -msgid "Buffer amount (% height of text)" -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:6 -#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 -msgid "File name" -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:7 -#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 -msgid "Filename" -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:11 -#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 -#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 -#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 -msgid "Transparent background" -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:12 -msgid "_ASCII to Image..." -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:13 -msgid "_ASCII to Layer..." -msgstr "" - #: plug-ins/script-fu/scripts/basic1-logo.scm.h:8 msgid "_Basic I..." msgstr "" @@ -831,6 +785,12 @@ msgid "Diameter" msgstr "" +#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 +#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 +#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 +msgid "Transparent background" +msgstr "" + #: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:4 msgid "H_eading..." msgstr "" @@ -1421,6 +1381,11 @@ msgid "_Flatland..." msgstr "" +#: plug-ins/script-fu/scripts/font-map.scm.h:1 +#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 +msgid "/Xtns/Script-Fu/Utils" +msgstr "" + #: plug-ins/script-fu/scripts/font-map.scm.h:2 msgid "Active colors" msgstr "" @@ -1688,6 +1653,11 @@ msgid "_Remove all Guides" msgstr "" +#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 +#: plug-ins/script-fu/scripts/image-structure.scm.h:1 +msgid "/Script-Fu/Utils" +msgstr "" + #: plug-ins/script-fu/scripts/hsv-graph.scm.h:2 msgid "BG opacity" msgstr "" @@ -2061,6 +2031,10 @@ msgid "Brush name" msgstr "" +#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 +msgid "File name" +msgstr "" + #: plug-ins/script-fu/scripts/select-to-brush.scm.h:5 msgid "To _Brush..." msgstr "" @@ -2069,6 +2043,10 @@ msgid "To _Image" msgstr "" +#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 +msgid "Filename" +msgstr "" + #: plug-ins/script-fu/scripts/select-to-pattern.scm.h:3 msgid "Pattern name" msgstr "" diff -uraN gimp-2.2.0/po-script-fu/gl.gmo gimp-2.2.1/po-script-fu/gl.gmo --- gimp-2.2.0/po-script-fu/gl.gmo 2004-12-19 03:34:32.000000000 +0100 +++ gimp-2.2.1/po-script-fu/gl.gmo 2004-12-28 16:59:16.000000000 +0100 @@ -39,7 +39,7 @@ 'C!Uw"=F [ h   '4= E Q ]jpw VYJTBSb,lE f5F$=DHn?3m78Ric"/N\L!9I:K%20.(4+)k&1MjU';`PA]X @C_#*a>^ WOhG<QdZg6e-[ %s:/Script-Fu/AmplitudeAngleAntialiasAuthor:AzimuthBackground ColorBackground ImageBehaviourBlur XBlur YColorColor 1Color 2Color 3ColumnsCopyright:Current CommandCustom GradientDate:DefocusDensity (%)DepthDetail in MiddleDiameterDownElevationEnd XEnd YEvenFG-BG-HSVFG-BG-RGBFG-TransparentFeatheringFilenameFontFramesGradientGranularityGranularity (1 is Low)HeightIIRImage Types:InvertInvert directionLeftLighting (degrees)LoopedMottleNumberOddOffset (pixels)Offset XOffset YOffsets (pixels * 2)OpacityOrientationPaddingPadding XPadding YPatternPixelizePressedRLERadiusRadius (pixels)RandomnessRightRoughnessRowsSIOD OutputScale XScale YScript ArgumentsScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Server OptionsScript-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSeedSepiaServer Logfile:Server Port:ShadowSharpness (degrees)SizeSmoothSpacingSpots density XSpots density YSpreadSquaresStainsStart XStart YSupersampleTextThicknessTileUpWavelengthWidthProject-Id-Version: Gimp CVS Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:48+0100 +POT-Creation-Date: 2004-12-28 15:42+0100 PO-Revision-Date: 2001-03-19 21:35+0100 Last-Translator: Francisco Xosé Vázquez Grandal Language-Team: Galician diff -uraN gimp-2.2.0/po-script-fu/gl.po gimp-2.2.1/po-script-fu/gl.po --- gimp-2.2.0/po-script-fu/gl.po 2004-12-19 03:34:27.000000000 +0100 +++ gimp-2.2.1/po-script-fu/gl.po 2004-12-28 16:59:11.000000000 +0100 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: Gimp CVS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:48+0100\n" +"POT-Creation-Date: 2004-12-28 15:42+0100\n" "PO-Revision-Date: 2001-03-19 21:35+0100\n" "Last-Translator: Francisco Xosé Vázquez Grandal \n" "Language-Team: Galician \n" @@ -329,7 +329,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:5 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:4 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:6 -#: plug-ins/script-fu/scripts/asc2img.scm.h:8 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:4 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:5 #: plug-ins/script-fu/scripts/beveled-button.scm.h:3 @@ -370,7 +369,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:6 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:5 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:7 -#: plug-ins/script-fu/scripts/asc2img.scm.h:9 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:5 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:6 #: plug-ins/script-fu/scripts/beveled-button.scm.h:4 @@ -504,7 +502,6 @@ #: plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:2 #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:3 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:4 -#: plug-ins/script-fu/scripts/asc2img.scm.h:3 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:3 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:4 #: plug-ins/script-fu/scripts/blended-logo.scm.h:3 @@ -743,7 +740,6 @@ msgstr "Recheo" #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:11 -#: plug-ins/script-fu/scripts/asc2img.scm.h:10 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:7 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:8 #: plug-ins/script-fu/scripts/beveled-button.scm.h:10 @@ -792,53 +788,6 @@ msgid "Width of gaps" msgstr "Ancho dos Espacios" -#: plug-ins/script-fu/scripts/asc2img.scm.h:1 -#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 -#: plug-ins/script-fu/scripts/image-structure.scm.h:1 -#, fuzzy -msgid "/Script-Fu/Utils" -msgstr "/Script-Fu/Útiles/ASCII a Capa de Imaxe..." - -#: plug-ins/script-fu/scripts/asc2img.scm.h:2 -#: plug-ins/script-fu/scripts/font-map.scm.h:1 -#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 -#, fuzzy -msgid "/Xtns/Script-Fu/Utils" -msgstr "/Extns/Script-Fu/Logos/Neón..." - -#: plug-ins/script-fu/scripts/asc2img.scm.h:5 -#, fuzzy, no-c-format -msgid "Buffer amount (% height of text)" -msgstr "Cantidade de Buffer (% da Altura do Texto)" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:6 -#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 -#, fuzzy -msgid "File name" -msgstr "Nome de Ficheiro" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:7 -#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 -msgid "Filename" -msgstr "Nome de Ficheiro" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:11 -#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 -#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 -#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 -#, fuzzy -msgid "Transparent background" -msgstr "Fondo Transparente" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:12 -msgid "_ASCII to Image..." -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:13 -#, fuzzy -msgid "_ASCII to Layer..." -msgstr "/Script-Fu/Útiles/ASCII a Capa de Imaxe..." - #: plug-ins/script-fu/scripts/basic1-logo.scm.h:8 msgid "_Basic I..." msgstr "" @@ -895,6 +844,13 @@ msgid "Diameter" msgstr "Diámetro" +#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 +#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 +#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 +#, fuzzy +msgid "Transparent background" +msgstr "Fondo Transparente" + #: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:4 msgid "H_eading..." msgstr "" @@ -1552,6 +1508,12 @@ msgid "_Flatland..." msgstr "" +#: plug-ins/script-fu/scripts/font-map.scm.h:1 +#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 +#, fuzzy +msgid "/Xtns/Script-Fu/Utils" +msgstr "/Extns/Script-Fu/Logos/Neón..." + #: plug-ins/script-fu/scripts/font-map.scm.h:2 #, fuzzy msgid "Active colors" @@ -1857,6 +1819,12 @@ msgid "_Remove all Guides" msgstr "" +#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 +#: plug-ins/script-fu/scripts/image-structure.scm.h:1 +#, fuzzy +msgid "/Script-Fu/Utils" +msgstr "/Script-Fu/Útiles/ASCII a Capa de Imaxe..." + #: plug-ins/script-fu/scripts/hsv-graph.scm.h:2 #, fuzzy msgid "BG opacity" @@ -2279,6 +2247,11 @@ msgid "Brush name" msgstr "Usar Pincel" +#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 +#, fuzzy +msgid "File name" +msgstr "Nome de Ficheiro" + #: plug-ins/script-fu/scripts/select-to-brush.scm.h:5 #, fuzzy msgid "To _Brush..." @@ -2288,6 +2261,10 @@ msgid "To _Image" msgstr "" +#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 +msgid "Filename" +msgstr "Nome de Ficheiro" + #: plug-ins/script-fu/scripts/select-to-pattern.scm.h:3 #, fuzzy msgid "Pattern name" @@ -2810,6 +2787,14 @@ msgstr "" #, fuzzy +#~ msgid "Buffer amount (% height of text)" +#~ msgstr "Cantidade de Buffer (% da Altura do Texto)" + +#, fuzzy +#~ msgid "_ASCII to Layer..." +#~ msgstr "/Script-Fu/Útiles/ASCII a Capa de Imaxe..." + +#, fuzzy #~ msgid "/Xtns/Script-Fu/_Refresh Scripts" #~ msgstr "/Extns/Script-Fu/Actualizar" diff -uraN gimp-2.2.0/po-script-fu/he.gmo gimp-2.2.1/po-script-fu/he.gmo --- gimp-2.2.0/po-script-fu/he.gmo 2004-12-19 03:34:32.000000000 +0100 +++ gimp-2.2.1/po-script-fu/he.gmo 2004-12-28 16:59:16.000000000 +0100 @@ -5,7 +5,7 @@ bmv}     Author:Background ImageColorColor 1Color 2Color 3ColumnsCopyright:Date:DiameterEvenFG-BG-HSVFG-BG-RGBFilenameFontGradientGranularityImage Types:LeftOddOpacityOrientationPatternPressedRadiusRightRowsSizeSmoothTextThicknessProject-Id-Version: gimp-script-fu.HEAD Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:48+0100 +POT-Creation-Date: 2004-12-28 15:42+0100 PO-Revision-Date: 2003-08-13 22:11+0300 Last-Translator: Gil 'Dolfin' Osher Language-Team: Hebrew diff -uraN gimp-2.2.0/po-script-fu/he.po gimp-2.2.1/po-script-fu/he.po --- gimp-2.2.0/po-script-fu/he.po 2004-12-19 03:34:28.000000000 +0100 +++ gimp-2.2.1/po-script-fu/he.po 2004-12-28 16:59:11.000000000 +0100 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: gimp-script-fu.HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:48+0100\n" +"POT-Creation-Date: 2004-12-28 15:42+0100\n" "PO-Revision-Date: 2003-08-13 22:11+0300\n" "Last-Translator: Gil 'Dolfin' Osher \n" "Language-Team: Hebrew \n" @@ -318,7 +318,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:5 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:4 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:6 -#: plug-ins/script-fu/scripts/asc2img.scm.h:8 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:4 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:5 #: plug-ins/script-fu/scripts/beveled-button.scm.h:3 @@ -359,7 +358,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:6 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:5 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:7 -#: plug-ins/script-fu/scripts/asc2img.scm.h:9 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:5 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:6 #: plug-ins/script-fu/scripts/beveled-button.scm.h:4 @@ -488,7 +486,6 @@ #: plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:2 #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:3 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:4 -#: plug-ins/script-fu/scripts/asc2img.scm.h:3 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:3 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:4 #: plug-ins/script-fu/scripts/blended-logo.scm.h:3 @@ -710,7 +707,6 @@ msgstr "" #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:11 -#: plug-ins/script-fu/scripts/asc2img.scm.h:10 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:7 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:8 #: plug-ins/script-fu/scripts/beveled-button.scm.h:10 @@ -758,49 +754,6 @@ msgid "Width of gaps" msgstr "עובי מרווחים" -#: plug-ins/script-fu/scripts/asc2img.scm.h:1 -#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 -#: plug-ins/script-fu/scripts/image-structure.scm.h:1 -msgid "/Script-Fu/Utils" -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:2 -#: plug-ins/script-fu/scripts/font-map.scm.h:1 -#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 -msgid "/Xtns/Script-Fu/Utils" -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:5 -#, no-c-format -msgid "Buffer amount (% height of text)" -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:6 -#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 -#, fuzzy -msgid "File name" -msgstr "שם קובץ" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:7 -#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 -msgid "Filename" -msgstr "שם קובץ" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:11 -#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 -#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 -#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 -msgid "Transparent background" -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:12 -msgid "_ASCII to Image..." -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:13 -msgid "_ASCII to Layer..." -msgstr "" - #: plug-ins/script-fu/scripts/basic1-logo.scm.h:8 msgid "_Basic I..." msgstr "" @@ -850,6 +803,12 @@ msgid "Diameter" msgstr "קוטר" +#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 +#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 +#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 +msgid "Transparent background" +msgstr "" + #: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:4 msgid "H_eading..." msgstr "" @@ -1454,6 +1413,11 @@ msgid "_Flatland..." msgstr "" +#: plug-ins/script-fu/scripts/font-map.scm.h:1 +#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 +msgid "/Xtns/Script-Fu/Utils" +msgstr "" + #: plug-ins/script-fu/scripts/font-map.scm.h:2 #, fuzzy msgid "Active colors" @@ -1737,6 +1701,11 @@ msgid "_Remove all Guides" msgstr "" +#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 +#: plug-ins/script-fu/scripts/image-structure.scm.h:1 +msgid "/Script-Fu/Utils" +msgstr "" + #: plug-ins/script-fu/scripts/hsv-graph.scm.h:2 #, fuzzy msgid "BG opacity" @@ -2125,6 +2094,11 @@ msgid "Brush name" msgstr "" +#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 +#, fuzzy +msgid "File name" +msgstr "שם קובץ" + #: plug-ins/script-fu/scripts/select-to-brush.scm.h:5 msgid "To _Brush..." msgstr "" @@ -2133,6 +2107,10 @@ msgid "To _Image" msgstr "" +#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 +msgid "Filename" +msgstr "שם קובץ" + #: plug-ins/script-fu/scripts/select-to-pattern.scm.h:3 #, fuzzy msgid "Pattern name" diff -uraN gimp-2.2.0/po-script-fu/hr.gmo gimp-2.2.1/po-script-fu/hr.gmo --- gimp-2.2.0/po-script-fu/hr.gmo 2004-12-19 03:34:32.000000000 +0100 +++ gimp-2.2.1/po-script-fu/hr.gmo 2004-12-28 16:59:16.000000000 +0100 @@ -19,7 +19,7 @@ %s %sEvenFG-BG-HSVFG-BG-RGBFG-TransparentFadeoutFeatheringFilenameFill with BGFontFrameFramesGradientGradient: Loop SawtoothGradient: Loop TriangleGranularityGranularity (1 is Low)HeightHexagonHexagonsIIRImage Types:InvertInvert directionLeftLighting (degrees)LissajousLoopedMargin (pixels)MottleNo matchesNumberOctagonsOddOffset (pixels)Offset XOffset YOffsets (pixels * 2)OpacityOrientationPaddingPadding XPadding YPatternPencilPentagonPixelizePolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPrepare for GIFPressedRLERadiusRadius (pixels)RandomnessRightRoughnessRowsSIOD OutputScale XScale YScript ArgumentsScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Server OptionsScript-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSepiaServer Logfile:Server Port:ShadowShapeSharpness (degrees)SizeSmearSmoothSolid ColorSpacingSpeed (pixels/frame)Spots density XSpots density YSpreadSpyrographSquareSquaresStainsStart XStart YSupersampleTextThicknessTileToolTriangleTypeUpWavelengthWidthWrap_Border (pixels)_Filter (regexp)_Labels_Search:_TextProject-Id-Version: gimp-script-fu 0 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:48+0100 +POT-Creation-Date: 2004-12-28 15:42+0100 PO-Revision-Date: 2004-03-20 14:50+CET Last-Translator: auto Language-Team: Croatian diff -uraN gimp-2.2.0/po-script-fu/hr.po gimp-2.2.1/po-script-fu/hr.po --- gimp-2.2.0/po-script-fu/hr.po 2004-12-19 03:34:28.000000000 +0100 +++ gimp-2.2.1/po-script-fu/hr.po 2004-12-28 16:59:12.000000000 +0100 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: gimp-script-fu 0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:48+0100\n" +"POT-Creation-Date: 2004-12-28 15:42+0100\n" "PO-Revision-Date: 2004-03-20 14:50+CET\n" "Last-Translator: auto\n" "Language-Team: Croatian \n" @@ -326,7 +326,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:5 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:4 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:6 -#: plug-ins/script-fu/scripts/asc2img.scm.h:8 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:4 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:5 #: plug-ins/script-fu/scripts/beveled-button.scm.h:3 @@ -367,7 +366,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:6 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:5 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:7 -#: plug-ins/script-fu/scripts/asc2img.scm.h:9 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:5 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:6 #: plug-ins/script-fu/scripts/beveled-button.scm.h:4 @@ -501,7 +499,6 @@ #: plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:2 #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:3 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:4 -#: plug-ins/script-fu/scripts/asc2img.scm.h:3 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:3 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:4 #: plug-ins/script-fu/scripts/blended-logo.scm.h:3 @@ -737,7 +734,6 @@ msgstr "Popunjavanje" #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:11 -#: plug-ins/script-fu/scripts/asc2img.scm.h:10 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:7 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:8 #: plug-ins/script-fu/scripts/beveled-button.scm.h:10 @@ -786,53 +782,6 @@ msgid "Width of gaps" msgstr "Širina Pukotina" -#: plug-ins/script-fu/scripts/asc2img.scm.h:1 -#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 -#: plug-ins/script-fu/scripts/image-structure.scm.h:1 -#, fuzzy -msgid "/Script-Fu/Utils" -msgstr "/Script-Fu/Uslužni/_ASCII u sloj slike..." - -#: plug-ins/script-fu/scripts/asc2img.scm.h:2 -#: plug-ins/script-fu/scripts/font-map.scm.h:1 -#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 -#, fuzzy -msgid "/Xtns/Script-Fu/Utils" -msgstr "/Proširenja/Script-Fu/Logotip/Neonski..." - -#: plug-ins/script-fu/scripts/asc2img.scm.h:5 -#, fuzzy, no-c-format -msgid "Buffer amount (% height of text)" -msgstr "Vrijednost Spremnika (%Visine Teksta)" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:6 -#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 -#, fuzzy -msgid "File name" -msgstr "Ime datoteke" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:7 -#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 -msgid "Filename" -msgstr "Ime datoteke" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:11 -#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 -#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 -#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 -#, fuzzy -msgid "Transparent background" -msgstr "Prozirna Pozadina" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:12 -msgid "_ASCII to Image..." -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:13 -#, fuzzy -msgid "_ASCII to Layer..." -msgstr "/Script-Fu/Uslužni/_ASCII u sloj slike..." - #: plug-ins/script-fu/scripts/basic1-logo.scm.h:8 msgid "_Basic I..." msgstr "" @@ -888,6 +837,13 @@ msgid "Diameter" msgstr "Promjer" +#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 +#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 +#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 +#, fuzzy +msgid "Transparent background" +msgstr "Prozirna Pozadina" + #: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:4 msgid "H_eading..." msgstr "" @@ -1546,6 +1502,12 @@ msgid "_Flatland..." msgstr "" +#: plug-ins/script-fu/scripts/font-map.scm.h:1 +#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 +#, fuzzy +msgid "/Xtns/Script-Fu/Utils" +msgstr "/Proširenja/Script-Fu/Logotip/Neonski..." + #: plug-ins/script-fu/scripts/font-map.scm.h:2 #, fuzzy msgid "Active colors" @@ -1852,6 +1814,12 @@ msgid "_Remove all Guides" msgstr "" +#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 +#: plug-ins/script-fu/scripts/image-structure.scm.h:1 +#, fuzzy +msgid "/Script-Fu/Utils" +msgstr "/Script-Fu/Uslužni/_ASCII u sloj slike..." + #: plug-ins/script-fu/scripts/hsv-graph.scm.h:2 #, fuzzy msgid "BG opacity" @@ -2273,6 +2241,11 @@ msgid "Brush name" msgstr "Ime kista" +#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 +#, fuzzy +msgid "File name" +msgstr "Ime datoteke" + #: plug-ins/script-fu/scripts/select-to-brush.scm.h:5 #, fuzzy msgid "To _Brush..." @@ -2282,6 +2255,10 @@ msgid "To _Image" msgstr "" +#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 +msgid "Filename" +msgstr "Ime datoteke" + #: plug-ins/script-fu/scripts/select-to-pattern.scm.h:3 #, fuzzy msgid "Pattern name" @@ -2796,6 +2773,14 @@ msgid "_Xach-Effect..." msgstr "" +#, fuzzy +#~ msgid "Buffer amount (% height of text)" +#~ msgstr "Vrijednost Spremnika (%Visine Teksta)" + +#, fuzzy +#~ msgid "_ASCII to Layer..." +#~ msgstr "/Script-Fu/Uslužni/_ASCII u sloj slike..." + #~ msgid "/Xtns/Script-Fu/_Refresh Scripts" #~ msgstr "/Proširenja/Script-Fu/_Osvjeeži skripte" diff -uraN gimp-2.2.0/po-script-fu/hu.gmo gimp-2.2.1/po-script-fu/hu.gmo --- gimp-2.2.0/po-script-fu/hu.gmo 2004-12-19 03:34:32.000000000 +0100 +++ gimp-2.2.1/po-script-fu/hu.gmo 2004-12-28 16:59:16.000000000 +0100 @@ -1,84 +1,88 @@ -  + +++ + ,,!,0,J,j,,,,,, --"-A- Z-{-#--!--3.8Q.9. . .... / -/%/ ->$>5> => I> V>b> v>> > > >> > >>> -??#?5?G? V?c?j? s?????????@@ @'@+@ -2@=@ M@ -Y@d@@@@@ @@ @AA A #A/AEA JA TA`AoAwAAAAAAAAB3BPBlBB6B9B= C GCUC qC{CCC CCCCD#D)D 9DFDMD]DmD DD DDDD DDDEE!E(EeIeYeqeee eeee"ef%f7f Vfdftff)f ffffg -g g'g0g GgUgkg~ggggg gghhh -h*h%n" bf2,.(B-^y *gh /3P$izA` 0gx Mqb`kv81=7-? [@u'|zLkH@D: JBS*Nf5GcKZ. 8 - -LG)<A:CoT3m5&4]$Rw="xY~!+&VT1i uj9S}N^ePr  #|RvwUIJ{Q!F762 aopqrsDY~[I+dOMnElZtOmKE/\{>j%<eX%(Q# -,;X)}lWtFap'9_;0C]_y\V U%d Procedures%s:(none)/Script-Fu/1 Procedure3D _Outline...3_D Truchet.../Script-Fu/Alchemy/Script-Fu/Alpha to Logo/Script-Fu/Animators/Script-Fu/Decor/Script-Fu/Render/Script-Fu/Selection/Script-Fu/Shadow/Script-Fu/Stencil Ops/Script-Fu/Utils/Help/The GIMP Online/Xtns/Script-Fu/Xtns/Script-Fu/Buttons/Xtns/Script-Fu/Logos/Xtns/Script-Fu/Make Brush/Xtns/Script-Fu/Misc/Xtns/Script-Fu/Patterns/Xtns/Script-Fu/Utils/Xtns/Script-Fu/Web Page Themes/Alien Glow/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/Xtns/Script-Fu/Web Page Themes/Classic.Gimp.OrgActive colorsAdd B_evel...Add _Border...Add backgroundAdd drop-shadowAdd glowingAdd shadowAdditional InformationAfter glowAirbrushAlien _Glow...Alien _Neon...Allow resizingAmplitudeAngleAntialiasApply generated layermaskApply layer mask (or discard)Author:AutocropAzimuthBG opacityB_asic II...B_urn-In...B_utton...Background ColorBackground ImageBackground colorBackground imageBar heightBar lengthBase colorBehaviourBevel height (Sharpness)Bevel height (sharpness)Bevel widthBlackBlack on whiteBlen_ded...Blend gradient (Text)Blend gradient (outline)Blend gradient (text)Blend modeBlock sizeBlur XBlur YBlur amountBlur borderBlur horizontallyBlur radiusBlur typeBlur verticallyBo_vination...Border X sizeBorder Y sizeBorder colorBorder sizeBorder size (pixels)BrushBrush nameBuffer amount (% height of text)Bumpmap (alpha layer) blur radiusBurn-In: Need two layers in total!Burst colorC_arve-It...C_hrome-It...C_hrome...Carve raised textCarve white areasCarved...Cell size (pixels)Chalk colorChip Awa_y...Chip amountChrome balanceChrome factorChrome lightnessChrome saturationChrome white areasCircleCircuit seedClear unselected maskareaColorColor 1Color 2Color 3Color methodColumnsComic Boo_k...ConcaveCool _Metal...Copyright:Corona widthCreate new imageCreate shadowCreates four Guides around the bounding box of the current selection.Crystal...CubicCurrent CommandCustom GradientCustom _Gradient...Dark colorDarken only + +l + +++ + +++,,:,V,n,,,,,,- *-K-#j--!--3-8!.9Z. . .... . +.. + // ///>/ M/W/ ]/g///// +/ / / +/// 00 ++0 +60 +A0 L0V0o0 000 0000 +0 +111 1 *161 H1 T1^1n1 }1 1 1 111 +1!1"1 2 )2 62 +D2O2a2 s2}2 2 2 22 2222 3 3373=3E3M3 U3b3j3y33 +3 33 3E3 + 444.4>4 +R4<]44444 444 45 555`15 555555 66 !6 +6 +76B6[6u666 6666 6 67 77 +%707L7Q7 Z7 d7n7 }7 7 77 7 +7 777 +7 7 888 +'828E8V8 \8 +h8s8z88 8 +88 +8 88899*9B9 Z9f9}9 9 99999999 :: +': +2:=: A: N: +[:f: u: : :": :::: ;;;.;>;N; ];i;n; ;; ;; ;;;;; ; <<&<7<><G<L<g< <<'< +<< <<<==&=6=G=X=h====== ==== = = >> %>3> L> Y> c>o> w> >>> +>>>>> ??? "?/?8?J?\?m?~????? ??? +?? ? +@@.@K@e@w@ @@ @@@ @ @@@ @ AAA&A.A?AOAiAAAAAAAB4B6GB9~B=B BC C*C;CKC cCCCCCCC CCC DD /DYHY[Y mYwY~YYsYZ!Z=Z$YZ~Z#ZZZ +Z ZZ[%[D[b[[ +[[[[ [[[ \\#\!7\Y\`\q\\\\\\\ +] (] 5] ?]I]h]z]] ]] ]] ]] ^ ^ ^+^I^\^ n^z^^^ ^ ^"^^_3_N_ __ __ _ __ +___ +` `1`O` `` m`y` }`` ``` ``*`a#a;aSaia xaaaaaaaa b b #b +-b 8bDbYbjbbb bbb bbc)c$2cWckc,}ccc ccccc dd-d@dOd bd odyd +d +dddddd d +ee9e"Jemeee eeee)e (f5f;fMf_f +ofzfff ffffffg(g @gJg_gngrg +ygg%ggg!g +h'h:hWhphhhh +hhhhh ii +'i +2i=iQikiiiii"i"j*j%Fjlj=~jEjQk Tkbk|kkkk-k' +l 2l-@lnll*l#llll m+m;mQmemmmm$m#mm m n n#n:nInanjnn nnnn +nn +n n oo (o 2o  +Z?t'{yLjG@D9IAS*Me5FbKY. 7 KG(;@:BnS3l4%4\$Rv="w}!*~&VT0h  ti9R|N]dOq #{QuvTIJzP F661`nopqrCX}ZH+cOLmDkYsNlJE/[z>i$<dW%(Q" +,:X)|kWsE`o&8^;/C\^x[UU%d Procedures%s:(none)/Script-Fu/1 Procedure3D _Outline...3_D Truchet.../Script-Fu/Alchemy/Script-Fu/Alpha to Logo/Script-Fu/Animators/Script-Fu/Decor/Script-Fu/Render/Script-Fu/Selection/Script-Fu/Shadow/Script-Fu/Stencil Ops/Script-Fu/Utils/Help/The GIMP Online/Xtns/Script-Fu/Xtns/Script-Fu/Buttons/Xtns/Script-Fu/Logos/Xtns/Script-Fu/Make Brush/Xtns/Script-Fu/Misc/Xtns/Script-Fu/Patterns/Xtns/Script-Fu/Utils/Xtns/Script-Fu/Web Page Themes/Alien Glow/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/Xtns/Script-Fu/Web Page Themes/Classic.Gimp.OrgActive colorsAdd B_evel...Add _Border...Add backgroundAdd drop-shadowAdd glowingAdd shadowAdditional InformationAfter glowAirbrushAlien _Glow...Alien _Neon...Allow resizingAmplitudeAngleAntialiasApply generated layermaskApply layer mask (or discard)Author:AutocropAzimuthBG opacityB_asic II...B_urn-In...B_utton...Background ColorBackground ImageBackground colorBackground imageBar heightBar lengthBase colorBehaviourBevel height (Sharpness)Bevel height (sharpness)Bevel widthBlackBlack on whiteBlen_ded...Blend gradient (Text)Blend gradient (outline)Blend gradient (text)Blend modeBlock sizeBlur XBlur YBlur amountBlur borderBlur horizontallyBlur radiusBlur typeBlur verticallyBo_vination...Border X sizeBorder Y sizeBorder colorBorder sizeBorder size (pixels)BrushBrush nameBumpmap (alpha layer) blur radiusBurn-In: Need two layers in total!Burst colorC_arve-It...C_hrome-It...C_hrome...Carve raised textCarve white areasCarved...Cell size (pixels)Chalk colorChip Awa_y...Chip amountChrome balanceChrome factorChrome lightnessChrome saturationChrome white areasCircleCircuit seedClear unselected maskareaColorColor 1Color 2Color 3Color methodColumnsComic Boo_k...ConcaveCool _Metal...Copyright:Corona widthCreate new imageCreate shadowCreates four Guides around the bounding box of the current selection.Crystal...CubicCurrent CommandCustom GradientCustom _Gradient...Dark colorDarken only (Better, but only for images with alot of white)Date:Default bumpmap settingsDefocusDelta value on colorDensity (%)DepthDetail in MiddleDetail levelDiameterDirectionDownDraw _HSV Graph...Draws Spirographs, Epitrochoids and Lissajous Curves. More info at http://netword.com/*spyrogimpDrop shadowDrop shadow X offsetDrop shadow Y offsetDrop shadow blur radiusDrop shadow colorDrop shadow opacityEdge amountEdge behaviourEdge onlyEdge radiusEdge widthEffect size (pixels * 3)Effect size (pixels * 30)Effect size (pixels * 4)Effect size (pixels * 5)Effect size (pixels)ElevationElli_ptical, Feathered...End XEnd YEnd blendEnding blendEnvironment mapEpitrochoidEraseErase/fillError while executing %s -%sEvenEven/oddFG-BG-HSVFG-BG-RGBFG-TransparentFade awayFade from %Fade to %FadeoutFadeout widthFeatheringFile nameFilenameFill BG with patternFill angleFill with BGFlatten imageFontFont _size (pixels)Font colorFont size (pixels)Foreground colorFrameFrame colorFrame sizeFramesFrom top-left to bottom-rightGIMP ExtensionGIMP Plug-InGlo_ssy...Glo_wing Hot...Glow colorGlow radiusGlow size (pixels * 4)GradientGradient Beve_l...Gradient reverseGradient: Loop SawtoothGradient: Loop TriangleGranularityGranularity (1 is Low)Granularity (1 is low)Graph scaleH_eading...HeightHexagonHexagonsHighlight X offsetHighlight Y offsetHighlight balanceHighlight colorHighlight opacityHit rateHole ratioHorizontalIIRImage Types:Image heightImage sizeImage to carveImage widthImigre-26...Index imageIndex to n colors (0 = remain RGB)Inner teethInsert layer namesIntermediate framesInternal GIMP procedureInterpolationInvertInvert directionKeep backgroundKeep bump layerKeep selectionLand heightLeftLighting (degrees)Line _Nova...LinearLissajousLoopedLower colorLower color (active)Lower-right colorMake new backgroundMargin (pixels)Mask opacityMask sizeMax. blur radiusMosaic tile typeMottleN_eon...NameNew Guide (by _Percent)...New Guides from _SelectionNew _Guide...Newsprint Text...No background (only for separate layer)No matchesNoneNot pressedNot pressed (active)NumberNumber of X tilesNumber of Y tilesNumber of bandsNumber of colorsNumber of framesNumber of linesNumber of times to whirlOctagonsOddOffset (pixels)Offset XOffset YOffset radiusOffsets (pixels * 2)Oilify mask sizeOpacityOrientationOuter borderOuter teethOutline blur radiusOutline colorOutline gradient reverseOutline sizePad colorPad opacityPaddingPadding XPadding YPadding around textPadding for transparent regionsParametersPatternPattern (outline)Pattern (overlay)Pattern (text)Pattern namePencilPentagonPixel amountPixelizePlug-in _RegistryPolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPosition (in %)Prepare for GIFPressedProcedure BrowserQuarter sizeRLERadiusRadius (%)Radius (pixels)Random seedRandomnessRe_ctangular, Feathered...Relative distance of horizonRelative length of shadowRemove backgroundRender _Map...Return ValuesRibbon spacingRibbon widthRightRippling strengthRoughnessRound ratioRounded R_ectangle...RowsRows/colsSIOD OutputSOTA Chrome...Scale XScale YScript ArgumentsScript ProgressScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Palette SelectionScript-Fu Server OptionsScript-Fu _ConsoleScript-Fu cannot process two scripts at the same time.Script-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSea depthSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSelect-by-color thresholdSeparate layerSepiaServer Logfile:Server Port:ShadowShadow X offsetShadow Y offsetShadow blur radiusShadow colorShadow darknessShadow depthShadow weight (%)ShapeSharpness (degrees)Shear lengthShow Image _Structure...Simple _Beveled Button...SizeSmearSmoothSmooth horizontallySmooth verticallySolid ColorSpace between layersSpacingSpeed (pixels/frame)Speed Text...Sphere colorSpots density XSpots density YSpreadSpyrographSquareSquaresSta_rscape...StainsStarb_urst...Start XStart YStart angleStart blendStarting blendSupersampleSwirl-_Tile...T_ruchet...T_ube Sub-Button Label...Temporary ProcedureTextText Circle...Text colorText color (active)Text gradient reverseText patternThicknessThread densityThread intensityThread lengthThreshold (bigger 1<-->255 smaller)TileTo _Brush...To _ImageTo _Pattern...ToolTransparent backgroundTriangleTub_e Sub-Sub-Button Label...Turn from left to rightTypeUpUpper colorUpper color (active)Upper-left colorUse current gradientUse font _name as textUse growing selectionUse pattern for outline instead of gradientUse pattern for text instead of gradientUse pattern overlayUse selection bounds instead of belowsVerticalWavelengthWeb Title Header...Whirl amountWhirl angleWidthWidth of bandsWidth of gapsWork on copyWrapX divisionsY divisionsYou are already running the "%s" script._ASCII to Image..._ASCII to Layer..._Arrow..._Basic I..._Big Header..._Blend..._Border (pixels)_Browse..._Bullet..._Camouflage..._Chalk..._Circuit..._Clothify..._Coffee Stain..._Color scheme_Developer Web Site_Distress Selection..._Drop-Shadow..._Elliptical..._Erase every other Row..._Fade Outline..._Filter (regexp)_Flatland..._Font Map..._Frosty..._Fuzzy Border..._General Tube Labels..._Grid..._Hrule..._Labels_Land..._Lava..._Main Web Site_Old Photo..._Particle Trace..._Perspective..._Predator..._Rectangular..._Refresh Scripts_Remove all Guides_Rippling..._Round Button..._Round Corners..._Search:_Slide..._Small Header..._Sphere..._Spinning Globe..._Spyrogimp..._Start Server..._Swirly..._Text_Textured..._Tileable Blur..._Tube Button Label..._Unsharp Mask..._Waves..._Weave..._Xach-Effect...Project-Id-Version: gimp-script-fu +%sEvenEven/oddFG-BG-HSVFG-BG-RGBFG-TransparentFade awayFade from %Fade to %FadeoutFadeout widthFeatheringFile nameFilenameFill BG with patternFill angleFill with BGFlatten imageFontFont _size (pixels)Font colorFont size (pixels)Foreground colorFrameFrame colorFrame sizeFramesFrom top-left to bottom-rightGIMP ExtensionGIMP Plug-InGlo_ssy...Glo_wing Hot...Glow colorGlow radiusGlow size (pixels * 4)GradientGradient Beve_l...Gradient reverseGradient: Loop SawtoothGradient: Loop TriangleGranularityGranularity (1 is Low)Granularity (1 is low)Graph scaleH_eading...HeightHexagonHexagonsHighlight X offsetHighlight Y offsetHighlight balanceHighlight colorHighlight opacityHit rateHole ratioHorizontalIIRImage Types:Image heightImage sizeImage to carveImage widthImigre-26...Index imageIndex to n colors (0 = remain RGB)Inner teethInsert layer namesIntermediate framesInternal GIMP procedureInterpolationInvertInvert directionKeep backgroundKeep bump layerKeep selectionLand heightLeftLighting (degrees)Line _Nova...LinearLissajousLoopedLower colorLower color (active)Lower-right colorMake new backgroundMargin (pixels)Mask opacityMask sizeMax. blur radiusMosaic tile typeMottleN_eon...NameNew Guide (by _Percent)...New Guides from _SelectionNew _Guide...Newsprint Text...No background (only for separate layer)No matchesNoneNot pressedNot pressed (active)NumberNumber of X tilesNumber of Y tilesNumber of bandsNumber of colorsNumber of framesNumber of linesNumber of times to whirlOctagonsOddOffset (pixels)Offset XOffset YOffset radiusOffsets (pixels * 2)Oilify mask sizeOpacityOrientationOuter borderOuter teethOutline blur radiusOutline colorOutline gradient reverseOutline sizePad colorPad opacityPaddingPadding XPadding YPadding around textPadding for transparent regionsParametersPatternPattern (outline)Pattern (overlay)Pattern (text)Pattern namePencilPentagonPixel amountPixelizePlug-in _RegistryPolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPosition (in %)Prepare for GIFPressedProcedure BrowserQuarter sizeRLERadiusRadius (%)Radius (pixels)Random seedRandomnessRe_ctangular, Feathered...Relative distance of horizonRelative length of shadowRemove backgroundRender _Map...Return ValuesRibbon spacingRibbon widthRightRippling strengthRoughnessRound ratioRounded R_ectangle...RowsRows/colsSIOD OutputSOTA Chrome...Scale XScale YScript ArgumentsScript ProgressScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Palette SelectionScript-Fu Server OptionsScript-Fu _ConsoleScript-Fu cannot process two scripts at the same time.Script-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSea depthSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSelect-by-color thresholdSeparate layerSepiaServer Logfile:Server Port:ShadowShadow X offsetShadow Y offsetShadow blur radiusShadow colorShadow darknessShadow depthShadow weight (%)ShapeSharpness (degrees)Shear lengthShow Image _Structure...Simple _Beveled Button...SizeSmearSmoothSmooth horizontallySmooth verticallySolid ColorSpace between layersSpacingSpeed (pixels/frame)Speed Text...Sphere colorSpots density XSpots density YSpreadSpyrographSquareSquaresSta_rscape...StainsStarb_urst...Start XStart YStart angleStart blendStarting blendSupersampleSwirl-_Tile...T_ruchet...T_ube Sub-Button Label...Temporary ProcedureTextText Circle...Text colorText color (active)Text gradient reverseText patternThicknessThread densityThread intensityThread lengthThreshold (bigger 1<-->255 smaller)TileTo _Brush...To _ImageTo _Pattern...ToolTransparent backgroundTriangleTub_e Sub-Sub-Button Label...Turn from left to rightTypeUpUpper colorUpper color (active)Upper-left colorUse current gradientUse font _name as textUse growing selectionUse pattern for outline instead of gradientUse pattern for text instead of gradientUse pattern overlayUse selection bounds instead of belowsVerticalWavelengthWeb Title Header...Whirl amountWhirl angleWidthWidth of bandsWidth of gapsWork on copyWrapX divisionsY divisionsYou are already running the "%s" script._Arrow..._Basic I..._Big Header..._Blend..._Border (pixels)_Browse..._Bullet..._Camouflage..._Chalk..._Circuit..._Clothify..._Coffee Stain..._Color scheme_Developer Web Site_Distress Selection..._Drop-Shadow..._Elliptical..._Erase every other Row..._Fade Outline..._Filter (regexp)_Flatland..._Font Map..._Frosty..._Fuzzy Border..._General Tube Labels..._Grid..._Hrule..._Labels_Land..._Lava..._Main Web Site_Old Photo..._Particle Trace..._Perspective..._Predator..._Rectangular..._Refresh Scripts_Remove all Guides_Rippling..._Round Button..._Round Corners..._Search:_Slide..._Small Header..._Sphere..._Spinning Globe..._Spyrogimp..._Start Server..._Swirly..._Text_Textured..._Tileable Blur..._Tube Button Label..._Unsharp Mask..._Waves..._Weave..._Xach-Effect...Project-Id-Version: gimp-script-fu Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:48+0100 +POT-Creation-Date: 2004-12-28 15:42+0100 PO-Revision-Date: 2004-12-02 11:06+0100 Last-Translator: Arpad Biro Language-Team: Hungarian MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit -%d eljárás%s:(nincs)/Script-Fu/1 eljárás_3D keret...Három_dimenziós Truchet.../Script-Fu/Alkímia/Script-Fu/Alfából logót/Script-Fu/Animáció/Script-Fu/Dekor/Script-Fu/Megjelenítés/Script-Fu/Kijelölés/Script-Fu/Árnyék/Script-Fu/Sablon/Script-Fu/Segédeszközök/Súgó/A GIMP a weben/Kiterj./Script-Fu/Kiterj./Script-Fu/Gombok/Kiterj./Script-Fu/Logók/Kiterj./Script-Fu/Ecsetkészítés/Kiterj./Script-Fu/Egyéb/Kiterj./Script-Fu/Minták/Kiterj./Script-Fu/Segédeszközök/Kiterj./Script-Fu/Weblap-témák/Idegen ragyogás/Kiterj./Script-Fu/Weblap-témák/Lesarkított minta/Kiterj./Script-Fu/Weblap-témák/Classic.Gimp.OrgAktív színekLe_sarkítás...Kere_t hozzáadása...Háttér hozzáadásaVetett árnyék hozzáadásaRagyogás hozzáadásaÁrnyék hozzáadásaTovábbi információUtó-ragyogásFestékszóróIdegen r_agyogás..._Idegen neon...Átméretezés engedélyezéseAmplitúdóSzögÉlsimításGenerált rétegmaszk alkalmazásaRétegmaszk alkalmazása (vagy eldobása)Szerző:Automatikus levágásIrányszögHáttér átlátszatlanságaE_gyszerű II..._Beégetés...G_omb...HáttérszínHáttérképHáttérszínHáttérképTéglalap magasságaTéglalap hosszúságaAlapszínViselkedésRézsútos rész magassága (élesség)Rézsútos rész magassága (élesség)Rézsútos rész szélességeFeketeFehér alapon fekete_Színátmenetes...Színátmenet (szöveg)Színátmenet (körvonal)Színátmenet (szöveg)Színátmenet-módBlokkméretX-elmosásY-elmosásElmosás mértékeKeret elmosásaVízszintes elmosásElmosás sugaraElmosás típusaFüggőleges elmosás_Tehén...Keret X-méreteKeret Y-méreteKeret színeKeret méreteKeret mérete (képpont)EcsetEcset nevePufferelési mennyiség (szövegmagasság %-a)Buckaleképezés (alfa-réteg) elmosásának sugaraBeégetés: összesen két rétegre van szükség.Kitörés színe_Vésés..._Krómozás...Kró_m...Emelt szöveg véséseFehér részek véséseVésett...Cellaméret (képpont)Kréta színeMorzso_lás...Morzsolás mértékeKróm-egyensúlyKrómtényezőKróm világosságaKróm színtelítettségeFehér részek krómozásaKörÁramkör-kezdőértékNem kijelölt maszkterület törléseSzín1. szín2. szín3. színSzínmódOszlopok_Képregény...Konkáv_Hűvös fém...Copyright:KoronaszélességÚj kép létrehozásaÁrnyék létrehozásaNégy segédvonalat hoz létre a jelenlegi kijelölés határoló téglalapja köré.Kristály...KöbösAktuális parancsEgyéni színátmenetEgyéni _színátmenet...Sötét színCsak sötétítés +%d eljárás%s:(nincs)/Script-Fu/1 eljárás_3D keret...Három_dimenziós Truchet.../Script-Fu/Alkímia/Script-Fu/Alfából logót/Script-Fu/Animáció/Script-Fu/Dekor/Script-Fu/Megjelenítés/Script-Fu/Kijelölés/Script-Fu/Árnyék/Script-Fu/Sablon/Script-Fu/Segédeszközök/Súgó/A GIMP a weben/Kiterj./Script-Fu/Kiterj./Script-Fu/Gombok/Kiterj./Script-Fu/Logók/Kiterj./Script-Fu/Ecsetkészítés/Kiterj./Script-Fu/Egyéb/Kiterj./Script-Fu/Minták/Kiterj./Script-Fu/Segédeszközök/Kiterj./Script-Fu/Weblap-témák/Idegen ragyogás/Kiterj./Script-Fu/Weblap-témák/Lesarkított minta/Kiterj./Script-Fu/Weblap-témák/Classic.Gimp.OrgAktív színekLe_sarkítás...Kere_t hozzáadása...Háttér hozzáadásaVetett árnyék hozzáadásaRagyogás hozzáadásaÁrnyék hozzáadásaTovábbi információUtó-ragyogásFestékszóróIdegen r_agyogás..._Idegen neon...Átméretezés engedélyezéseAmplitúdóSzögÉlsimításGenerált rétegmaszk alkalmazásaRétegmaszk alkalmazása (vagy eldobása)Szerző:Automatikus levágásIrányszögHáttér átlátszatlanságaE_gyszerű II..._Beégetés...G_omb...HáttérszínHáttérképHáttérszínHáttérképTéglalap magasságaTéglalap hosszúságaAlapszínViselkedésRézsútos rész magassága (élesség)Rézsútos rész magassága (élesség)Rézsútos rész szélességeFeketeFehér alapon fekete_Színátmenetes...Színátmenet (szöveg)Színátmenet (körvonal)Színátmenet (szöveg)Színátmenet-módBlokkméretX-elmosásY-elmosásElmosás mértékeKeret elmosásaVízszintes elmosásElmosás sugaraElmosás típusaFüggőleges elmosás_Tehén...Keret X-méreteKeret Y-méreteKeret színeKeret méreteKeret mérete (képpont)EcsetEcset neveBuckaleképezés (alfa-réteg) elmosásának sugaraBeégetés: összesen két rétegre van szükség.Kitörés színe_Vésés..._Krómozás...Kró_m...Emelt szöveg véséseFehér részek véséseVésett...Cellaméret (képpont)Kréta színeMorzso_lás...Morzsolás mértékeKróm-egyensúlyKrómtényezőKróm világosságaKróm színtelítettségeFehér részek krómozásaKörÁramkör-kezdőértékNem kijelölt maszkterület törléseSzín1. szín2. szín3. színSzínmódOszlopok_Képregény...Konkáv_Hűvös fém...Copyright:KoronaszélességÚj kép létrehozásaÁrnyék létrehozásaNégy segédvonalat hoz létre a jelenlegi kijelölés határoló téglalapja köré.Kristály...KöbösAktuális parancsEgyéni színátmenetEgyéni _színátmenet...Sötét színCsak sötétítés (jobb, de csak sok fehéret tartalmazó képeknél)Dátum:Buckaleképezés alapértelmezett beállításaiFókusz elvételeDelta-érték a színenSűrűség (%)MélységRészlet középreRészletezettségÁtmérőIrányLe_HSV-grafikon rajzolása...Spirográfok, epitrochoidok és Lissajous-görbék rajzolása. További információ: http://netword.com/*spyrogimpVetett árnyékVetett árnyék X-eltolásaVetett árnyék Y-eltolásaVetett árnyék elmosásának sugaraVetett árnyék színeVetett árnyék átlátszatlanságaSzél mértékeSzél viselkedéseCsak szélSzél sugaraSzél szélességeHatás mérete (képpont * 3)Hatás mérete (képpont * 30)Hatás mérete (képpont * 4)Hatás mérete (képpont * 5)Hatás mérete (képpont)MegemelésElli_ptikus, elmosott...Vég, XVég, YVégső színSzínátmenet befejezéseKörnyezeti leképezésEpitrochoidTörlésTörlés/kitöltésHiba végrehajtás közben %s -%sPárosPáros/páratlanElőtér-háttér-HSVElőtér-háttér-RGBElőtér-átlátszóElhalványításElhalványítás kezdete, %Elhalványítás vége, %ElhalványításElhalványítási szélességElmosottságFájlnévFájlnévHáttér kitöltése mintávalKitöltési szögKitöltés háttérszínnelKép lapításaBetűkészletBetűmér_et (képpont)SzövegszínBetűméret (képpont)ElőtérszínKeretKeret színeKeret méreteKépkockákBal felsőtől a jobb alsóigGIMP-kiegészítőGIMP-bővítményFé_nyes...I_zzó forró...Ragyogás színeRagyogás sugaraRagyogás mérete (képpont * 4)SzínátmenetHárom_dimenziós színátmenet...Fordított színátmenetSzínátmenet: fűrészfogSzínátmenet: háromszögSzemcsézettségSzemcsézettség (1 a legkisebb)Szemcsézettség (1 a legkisebb)Grafikon léptéke_Fejléc...MagasságHatszögHatszögekKiemelés X-eltolásaKiemelés Y-eltolásaKiemelés egyensúlyaKiemelés színeKiemelés átlátszatlanságaTalálati arányLyuk arányaVízszintesIIRKéptípusok:Kép magasságaKép méreteKivésendő képKép szélességeImigre-26...Kép indexeléseKép indexelése n színre (0 = RGB marad)Belső fogazatRétegnevek beszúrásaKözbülső képkockákBelső GIMP-eljárásInterpolálásMegfordításIrány megfordításaHáttér megtartásaBuckaréteg megtartásaKijelölés megtartásaTerepmagasságBalMegvilágítás (fokban)_Vonalak...LineárisLissajousIsmétlésAlsó színAlsó szín (aktív)Jobb alsó színÚj háttér készítéseMargó (képpont)Maszk átlátszatlanságaMaszk méreteElmosás maximális sugaraMozaikcsempe típusaMárványosNe_on...NévÚj segédvonal (szá_zalék alapján)...Új segédvonalak a _kijelölésbőlÚ_j segédvonal...Újságszöveg...Nincs háttér (csak különálló rétegre)Nincs találatNincsNem lenyomottNem lenyomott (aktív)SzámCsempék száma, XCsempék száma, YSávok számaSzínek számaKépkockák számaVonalak számaCsavarások számaNyolcszögekPáratlanEltolás (képpont)X-eltolásY-eltolásEltolás sugaraEltolás (képpont * 2)Olajozó maszk méreteÁtlátszatlanságIrányKülső szélKülső fogazatKörvonal elmosásának sugaraKörvonal színeFordított körvonal-színátmenetKörvonal méreteKitöltés színeKitöltés átlátszatlanságaHelykihagyásX-helykihagyásY-helykihagyásHelykihagyás a szöveg körülHelykitöltés az átlátszó részeknélParaméterekMintaMinta (körvonal)Minta (átfedés)Minta (szöveg)Minta neveCeruzaÖtszögKéppontok mennyiségePixelesítés_BővítményjegyzékSokszög: 10 oldalSokszög: 7 oldalSokszög: 8 oldalSokszög: 9 oldalPozíció (százalékban)Előkészítés GIF-hezLenyomottEljárásböngészőNegyed méreteRLESugárSugár (%)Sugár (képpont)Véletlenszerűségi kiindulóértékVéletlenszerűségTé_glalap, elmosott...Horizont viszonylagos távolságaÁrnyék viszonylagos hosszaHáttér törléseTérkép _megjelenítése...Visszatérési értékekSzalagok közti helySzalagok szélességeJobbFodrozás erősségeÉrdességLekerekítés mértékeLeke_rekített téglalap...SorokSorok/oszlopokSIOD kimenetFejlett króm...X-léptékY-léptékSzkriptargumentumokA szkript előrehaladásaScript-Fu ecsetválasztóScript-Fu színválasztóScript-Fu konzolScript-Fu fájlválasztóScript-Fu mappaválasztóScript-Fu betűkészlet-választóScript-Fu színátmenet-választóScript-Fu palettaválasztóScript-Fu Kiszolgáló beállításaiScript-Fu-_konzolA Script-Fu nem képes egyszerre több szkriptet feldolgozni.A Script-Fu konzolmódja csak interaktív meghívást tesz lehetővéA Script-Fu kiértékelő módja csak nem-interaktív meghívást tesz lehetővéScript-Fu: %sScript-Fu mintaválasztóTengermélységKeresés _ismertető alapjánKeresés _név alapjánKeresés - kérem várjonKeresés ismertető alapján - kérem várjonKeresés név alapján - kérem várjonKezdőérték"Kijelölés szín alapján" küszöbértékeKülönálló rétegSzépiaKiszolgáló által használt naplófájl:Kiszolgáló által használt port:ÁrnyékÁrnyék X-eltolásaÁrnyék Y-eltolásaÁrnyék elmosásának sugaraÁrnyék színeÁrnyék sötétségeÁrnyék mélységeÁrnyék szélessége (%)AlakÉlesség (fokban)Nyírás hosszaKép_felépítés megjelenítése..._Egyszerű háromdimenziós gomb...MéretMaszatolásSimításVízszintes simításFüggőleges simításHomogén színRétegek közötti térTérközSebesség (képpont/képkocka)Száguldó szöveg...Gömb színeFoltok X-sűrűségeFoltok Y-sűrűségeSzórásSpirográfNégyzetNégyzetekStarsca_pe...Foltok_Csillagkitörés...Kezdet, XKezdet, YKezdőszögKezdőszínSzínátmenet indításaTúlmintavételezésÖrvény_csempe...Tr_uchet..._Algomb-címke...Ideiglenes eljárásSzövegSzövegkör...SzövegszínSzövegszín (aktív)Fordított szöveg-színátmenetSzöveg mintájaVastagságSzálsűrűségSzálintenzitásSzálhosszúságKüszöb (nagyobb 1 <--> 255 kisebb)Csempe_Ecsetté...Ké_ppé_Mintává...EszközÁtlátszó háttérHáromszögA_l-algomb-címke...Fordítás balról jobbraTípusFelFelső színFelső szín (aktív)Bal felső színAktuális színátmenet használataBetűkészletek _neveinek használata szövegkéntNövekvő kijelölés használataKörvonalhoz minta használata színátmenet helyettSzöveghez minta használata színátmenet helyettÁtfedési minta használataA kijelölés határainak használata a lentiek helyettFüggőlegesHullámhosszWebes fejléc...Csavarások számaCsavarási szögSzélességSávok szélességeRések szélességeMunka a másolatonKörbeX-felosztásY-felosztásMár futtatja a(z) "%s" szkriptet._ASCII-ből kép..._ASCII-ből képréteg..._Nyíl..._Egyszerű I..._Nagy fejléc..._Színkeverés..._Keret (képpont)_Tallózás..._Golyó..._Kamuflázs...K_réta...Ára_mkör..._Szövetszerűvé tétel..._Kávéfolt...Színsém_aFe_jlesztői webhelyKijelölés _torzítása..._Vetett árnyék..._Elliptikus..._Minden második sor törlése...Körvonal el_halványítása...Szű_rő (regexp)_Lapos térkép..._Betűkészlet-jegyzék..._Fagyos..._Elmosott szélek...Ál_talános címke..._Rács..._Vízszintes elválasztó..._Címkék_Térkép..._Láva..._Fő webhely_Régi fénykép...Részecsken_yom..._Perspektivikus..._Predator..._Téglalap...Parancsfájlok _frissítéseAz összes segédvonal _törlése_Fodrozás..._Lekerekített gomb..._Gömbölyített sarok..._Keresés:_Dia..._Kis fejléc..._Gömb...Fo_rgó földgömb..._SpiroGIMP...Kiszolgáló _indítása...Ö_rvénylő..._SzövegTe_xtúrázás..._Csempézhető elmosás..._Gombcímke...Masz_k életlenítése..._Hullámok...Szö_vés..._Xach-effektus... \ No newline at end of file +%sPárosPáros/páratlanElőtér-háttér-HSVElőtér-háttér-RGBElőtér-átlátszóElhalványításElhalványítás kezdete, %Elhalványítás vége, %ElhalványításElhalványítási szélességElmosottságFájlnévFájlnévHáttér kitöltése mintávalKitöltési szögKitöltés háttérszínnelKép lapításaBetűkészletBetűmér_et (képpont)SzövegszínBetűméret (képpont)ElőtérszínKeretKeret színeKeret méreteKépkockákBal felsőtől a jobb alsóigGIMP-kiegészítőGIMP-bővítményFé_nyes...I_zzó forró...Ragyogás színeRagyogás sugaraRagyogás mérete (képpont * 4)SzínátmenetHárom_dimenziós színátmenet...Fordított színátmenetSzínátmenet: fűrészfogSzínátmenet: háromszögSzemcsézettségSzemcsézettség (1 a legkisebb)Szemcsézettség (1 a legkisebb)Grafikon léptéke_Fejléc...MagasságHatszögHatszögekKiemelés X-eltolásaKiemelés Y-eltolásaKiemelés egyensúlyaKiemelés színeKiemelés átlátszatlanságaTalálati arányLyuk arányaVízszintesIIRKéptípusok:Kép magasságaKép méreteKivésendő képKép szélességeImigre-26...Kép indexeléseKép indexelése n színre (0 = RGB marad)Belső fogazatRétegnevek beszúrásaKözbülső képkockákBelső GIMP-eljárásInterpolálásMegfordításIrány megfordításaHáttér megtartásaBuckaréteg megtartásaKijelölés megtartásaTerepmagasságBalMegvilágítás (fokban)_Vonalak...LineárisLissajousIsmétlésAlsó színAlsó szín (aktív)Jobb alsó színÚj háttér készítéseMargó (képpont)Maszk átlátszatlanságaMaszk méreteElmosás maximális sugaraMozaikcsempe típusaMárványosNe_on...NévÚj segédvonal (szá_zalék alapján)...Új segédvonalak a _kijelölésbőlÚ_j segédvonal...Újságszöveg...Nincs háttér (csak különálló rétegre)Nincs találatNincsNem lenyomottNem lenyomott (aktív)SzámCsempék száma, XCsempék száma, YSávok számaSzínek számaKépkockák számaVonalak számaCsavarások számaNyolcszögekPáratlanEltolás (képpont)X-eltolásY-eltolásEltolás sugaraEltolás (képpont * 2)Olajozó maszk méreteÁtlátszatlanságIrányKülső szélKülső fogazatKörvonal elmosásának sugaraKörvonal színeFordított körvonal-színátmenetKörvonal méreteKitöltés színeKitöltés átlátszatlanságaHelykihagyásX-helykihagyásY-helykihagyásHelykihagyás a szöveg körülHelykitöltés az átlátszó részeknélParaméterekMintaMinta (körvonal)Minta (átfedés)Minta (szöveg)Minta neveCeruzaÖtszögKéppontok mennyiségePixelesítés_BővítményjegyzékSokszög: 10 oldalSokszög: 7 oldalSokszög: 8 oldalSokszög: 9 oldalPozíció (százalékban)Előkészítés GIF-hezLenyomottEljárásböngészőNegyed méreteRLESugárSugár (%)Sugár (képpont)Véletlenszerűségi kiindulóértékVéletlenszerűségTé_glalap, elmosott...Horizont viszonylagos távolságaÁrnyék viszonylagos hosszaHáttér törléseTérkép _megjelenítése...Visszatérési értékekSzalagok közti helySzalagok szélességeJobbFodrozás erősségeÉrdességLekerekítés mértékeLeke_rekített téglalap...SorokSorok/oszlopokSIOD kimenetFejlett króm...X-léptékY-léptékSzkriptargumentumokA szkript előrehaladásaScript-Fu ecsetválasztóScript-Fu színválasztóScript-Fu konzolScript-Fu fájlválasztóScript-Fu mappaválasztóScript-Fu betűkészlet-választóScript-Fu színátmenet-választóScript-Fu palettaválasztóScript-Fu Kiszolgáló beállításaiScript-Fu-_konzolA Script-Fu nem képes egyszerre több szkriptet feldolgozni.A Script-Fu konzolmódja csak interaktív meghívást tesz lehetővéA Script-Fu kiértékelő módja csak nem-interaktív meghívást tesz lehetővéScript-Fu: %sScript-Fu mintaválasztóTengermélységKeresés _ismertető alapjánKeresés _név alapjánKeresés - kérem várjonKeresés ismertető alapján - kérem várjonKeresés név alapján - kérem várjonKezdőérték"Kijelölés szín alapján" küszöbértékeKülönálló rétegSzépiaKiszolgáló által használt naplófájl:Kiszolgáló által használt port:ÁrnyékÁrnyék X-eltolásaÁrnyék Y-eltolásaÁrnyék elmosásának sugaraÁrnyék színeÁrnyék sötétségeÁrnyék mélységeÁrnyék szélessége (%)AlakÉlesség (fokban)Nyírás hosszaKép_felépítés megjelenítése..._Egyszerű háromdimenziós gomb...MéretMaszatolásSimításVízszintes simításFüggőleges simításHomogén színRétegek közötti térTérközSebesség (képpont/képkocka)Száguldó szöveg...Gömb színeFoltok X-sűrűségeFoltok Y-sűrűségeSzórásSpirográfNégyzetNégyzetekStarsca_pe...Foltok_Csillagkitörés...Kezdet, XKezdet, YKezdőszögKezdőszínSzínátmenet indításaTúlmintavételezésÖrvény_csempe...Tr_uchet..._Algomb-címke...Ideiglenes eljárásSzövegSzövegkör...SzövegszínSzövegszín (aktív)Fordított szöveg-színátmenetSzöveg mintájaVastagságSzálsűrűségSzálintenzitásSzálhosszúságKüszöb (nagyobb 1 <--> 255 kisebb)Csempe_Ecsetté...Ké_ppé_Mintává...EszközÁtlátszó háttérHáromszögA_l-algomb-címke...Fordítás balról jobbraTípusFelFelső színFelső szín (aktív)Bal felső színAktuális színátmenet használataBetűkészletek _neveinek használata szövegkéntNövekvő kijelölés használataKörvonalhoz minta használata színátmenet helyettSzöveghez minta használata színátmenet helyettÁtfedési minta használataA kijelölés határainak használata a lentiek helyettFüggőlegesHullámhosszWebes fejléc...Csavarások számaCsavarási szögSzélességSávok szélességeRések szélességeMunka a másolatonKörbeX-felosztásY-felosztásMár futtatja a(z) "%s" szkriptet._Nyíl..._Egyszerű I..._Nagy fejléc..._Színkeverés..._Keret (képpont)_Tallózás..._Golyó..._Kamuflázs...K_réta...Ára_mkör..._Szövetszerűvé tétel..._Kávéfolt...Színsém_aFe_jlesztői webhelyKijelölés _torzítása..._Vetett árnyék..._Elliptikus..._Minden második sor törlése...Körvonal el_halványítása...Szű_rő (regexp)_Lapos térkép..._Betűkészlet-jegyzék..._Fagyos..._Elmosott szélek...Ál_talános címke..._Rács..._Vízszintes elválasztó..._Címkék_Térkép..._Láva..._Fő webhely_Régi fénykép...Részecsken_yom..._Perspektivikus..._Predator..._Téglalap...Parancsfájlok _frissítéseAz összes segédvonal _törlése_Fodrozás..._Lekerekített gomb..._Gömbölyített sarok..._Keresés:_Dia..._Kis fejléc..._Gömb...Fo_rgó földgömb..._SpiroGIMP...Kiszolgáló _indítása...Ö_rvénylő..._SzövegTe_xtúrázás..._Csempézhető elmosás..._Gombcímke...Masz_k életlenítése..._Hullámok...Szö_vés..._Xach-effektus... \ No newline at end of file diff -uraN gimp-2.2.0/po-script-fu/hu.po gimp-2.2.1/po-script-fu/hu.po --- gimp-2.2.0/po-script-fu/hu.po 2004-12-19 03:34:28.000000000 +0100 +++ gimp-2.2.1/po-script-fu/hu.po 2004-12-28 16:59:11.000000000 +0100 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: gimp-script-fu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:48+0100\n" +"POT-Creation-Date: 2004-12-28 15:42+0100\n" "PO-Revision-Date: 2004-12-02 11:06+0100\n" "Last-Translator: Arpad Biro \n" "Language-Team: Hungarian \n" @@ -321,7 +321,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:5 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:4 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:6 -#: plug-ins/script-fu/scripts/asc2img.scm.h:8 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:4 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:5 #: plug-ins/script-fu/scripts/beveled-button.scm.h:3 @@ -362,7 +361,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:6 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:5 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:7 -#: plug-ins/script-fu/scripts/asc2img.scm.h:9 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:5 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:6 #: plug-ins/script-fu/scripts/beveled-button.scm.h:4 @@ -490,7 +488,6 @@ #: plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:2 #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:3 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:4 -#: plug-ins/script-fu/scripts/asc2img.scm.h:3 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:3 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:4 #: plug-ins/script-fu/scripts/blended-logo.scm.h:3 @@ -703,7 +700,6 @@ msgstr "Helykihagyás" #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:11 -#: plug-ins/script-fu/scripts/asc2img.scm.h:10 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:7 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:8 #: plug-ins/script-fu/scripts/beveled-button.scm.h:10 @@ -746,48 +742,6 @@ msgid "Width of gaps" msgstr "Rések szélessége" -#: plug-ins/script-fu/scripts/asc2img.scm.h:1 -#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 -#: plug-ins/script-fu/scripts/image-structure.scm.h:1 -msgid "/Script-Fu/Utils" -msgstr "/Script-Fu/Segédeszközök" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:2 -#: plug-ins/script-fu/scripts/font-map.scm.h:1 -#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 -msgid "/Xtns/Script-Fu/Utils" -msgstr "/Kiterj./Script-Fu/Segédeszközök" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:5 -#, no-c-format -msgid "Buffer amount (% height of text)" -msgstr "Pufferelési mennyiség (szövegmagasság %-a)" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:6 -#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 -msgid "File name" -msgstr "Fájlnév" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:7 -#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 -msgid "Filename" -msgstr "Fájlnév" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:11 -#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 -#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 -#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 -msgid "Transparent background" -msgstr "Átlátszó háttér" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:12 -msgid "_ASCII to Image..." -msgstr "_ASCII-ből kép..." - -#: plug-ins/script-fu/scripts/asc2img.scm.h:13 -msgid "_ASCII to Layer..." -msgstr "_ASCII-ből képréteg..." - #: plug-ins/script-fu/scripts/basic1-logo.scm.h:8 msgid "_Basic I..." msgstr "_Egyszerű I..." @@ -837,6 +791,12 @@ msgid "Diameter" msgstr "Átmérő" +#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 +#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 +#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 +msgid "Transparent background" +msgstr "Átlátszó háttér" + #: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:4 msgid "H_eading..." msgstr "_Fejléc..." @@ -1429,6 +1389,11 @@ msgid "_Flatland..." msgstr "_Lapos térkép..." +#: plug-ins/script-fu/scripts/font-map.scm.h:1 +#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 +msgid "/Xtns/Script-Fu/Utils" +msgstr "/Kiterj./Script-Fu/Segédeszközök" + #: plug-ins/script-fu/scripts/font-map.scm.h:2 msgid "Active colors" msgstr "Aktív színek" @@ -1697,6 +1662,11 @@ msgid "_Remove all Guides" msgstr "Az összes segédvonal _törlése" +#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 +#: plug-ins/script-fu/scripts/image-structure.scm.h:1 +msgid "/Script-Fu/Utils" +msgstr "/Script-Fu/Segédeszközök" + #: plug-ins/script-fu/scripts/hsv-graph.scm.h:2 msgid "BG opacity" msgstr "Háttér átlátszatlansága" @@ -2070,6 +2040,10 @@ msgid "Brush name" msgstr "Ecset neve" +#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 +msgid "File name" +msgstr "Fájlnév" + #: plug-ins/script-fu/scripts/select-to-brush.scm.h:5 msgid "To _Brush..." msgstr "_Ecsetté..." @@ -2078,6 +2052,10 @@ msgid "To _Image" msgstr "Ké_ppé" +#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 +msgid "Filename" +msgstr "Fájlnév" + #: plug-ins/script-fu/scripts/select-to-pattern.scm.h:3 msgid "Pattern name" msgstr "Minta neve" @@ -2536,5 +2514,14 @@ msgid "_Xach-Effect..." msgstr "_Xach-effektus..." +#~ msgid "Buffer amount (% height of text)" +#~ msgstr "Pufferelési mennyiség (szövegmagasság %-a)" + +#~ msgid "_ASCII to Image..." +#~ msgstr "_ASCII-ből kép..." + +#~ msgid "_ASCII to Layer..." +#~ msgstr "_ASCII-ből képréteg..." + #~ msgid "Copy _Visible" #~ msgstr "_Látható másolása" diff -uraN gimp-2.2.0/po-script-fu/id.gmo gimp-2.2.1/po-script-fu/id.gmo --- gimp-2.2.0/po-script-fu/id.gmo 2004-12-19 03:34:32.000000000 +0100 +++ gimp-2.2.1/po-script-fu/id.gmo 2004-12-28 16:59:16.000000000 +0100 @@ -3,7 +3,7 @@     &     Background ColorBlackColorColumnsCopyright:Date:EraseFilenameFontHeightLeftOpacityOrientationPaddingPatternRightRowsSeedSizeSmoothSpacingTextTypeUpWidthWrapProject-Id-Version: gimp-script-fu HEAD Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:48+0100 +POT-Creation-Date: 2004-12-28 15:42+0100 PO-Revision-Date: 2003-06-28 22:05+0700 Last-Translator: Mohammad DAMT Language-Team: Indonesian diff -uraN gimp-2.2.0/po-script-fu/id.po gimp-2.2.1/po-script-fu/id.po --- gimp-2.2.0/po-script-fu/id.po 2004-12-19 03:34:28.000000000 +0100 +++ gimp-2.2.1/po-script-fu/id.po 2004-12-28 16:59:12.000000000 +0100 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: gimp-script-fu HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:48+0100\n" +"POT-Creation-Date: 2004-12-28 15:42+0100\n" "PO-Revision-Date: 2003-06-28 22:05+0700\n" "Last-Translator: Mohammad DAMT \n" "Language-Team: Indonesian \n" @@ -310,7 +310,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:5 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:4 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:6 -#: plug-ins/script-fu/scripts/asc2img.scm.h:8 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:4 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:5 #: plug-ins/script-fu/scripts/beveled-button.scm.h:3 @@ -351,7 +350,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:6 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:5 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:7 -#: plug-ins/script-fu/scripts/asc2img.scm.h:9 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:5 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:6 #: plug-ins/script-fu/scripts/beveled-button.scm.h:4 @@ -479,7 +477,6 @@ #: plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:2 #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:3 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:4 -#: plug-ins/script-fu/scripts/asc2img.scm.h:3 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:3 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:4 #: plug-ins/script-fu/scripts/blended-logo.scm.h:3 @@ -695,7 +692,6 @@ msgstr "Isian" #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:11 -#: plug-ins/script-fu/scripts/asc2img.scm.h:10 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:7 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:8 #: plug-ins/script-fu/scripts/beveled-button.scm.h:10 @@ -739,49 +735,6 @@ msgid "Width of gaps" msgstr "" -#: plug-ins/script-fu/scripts/asc2img.scm.h:1 -#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 -#: plug-ins/script-fu/scripts/image-structure.scm.h:1 -msgid "/Script-Fu/Utils" -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:2 -#: plug-ins/script-fu/scripts/font-map.scm.h:1 -#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 -msgid "/Xtns/Script-Fu/Utils" -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:5 -#, no-c-format -msgid "Buffer amount (% height of text)" -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:6 -#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 -#, fuzzy -msgid "File name" -msgstr "Nama file" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:7 -#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 -msgid "Filename" -msgstr "Nama file" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:11 -#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 -#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 -#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 -msgid "Transparent background" -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:12 -msgid "_ASCII to Image..." -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:13 -msgid "_ASCII to Layer..." -msgstr "" - #: plug-ins/script-fu/scripts/basic1-logo.scm.h:8 msgid "_Basic I..." msgstr "" @@ -831,6 +784,12 @@ msgid "Diameter" msgstr "" +#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 +#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 +#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 +msgid "Transparent background" +msgstr "" + #: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:4 msgid "H_eading..." msgstr "" @@ -1429,6 +1388,11 @@ msgid "_Flatland..." msgstr "" +#: plug-ins/script-fu/scripts/font-map.scm.h:1 +#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 +msgid "/Xtns/Script-Fu/Utils" +msgstr "" + #: plug-ins/script-fu/scripts/font-map.scm.h:2 #, fuzzy msgid "Active colors" @@ -1702,6 +1666,11 @@ msgid "_Remove all Guides" msgstr "" +#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 +#: plug-ins/script-fu/scripts/image-structure.scm.h:1 +msgid "/Script-Fu/Utils" +msgstr "" + #: plug-ins/script-fu/scripts/hsv-graph.scm.h:2 #, fuzzy msgid "BG opacity" @@ -2081,6 +2050,11 @@ msgid "Brush name" msgstr "" +#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 +#, fuzzy +msgid "File name" +msgstr "Nama file" + #: plug-ins/script-fu/scripts/select-to-brush.scm.h:5 msgid "To _Brush..." msgstr "" @@ -2089,6 +2063,10 @@ msgid "To _Image" msgstr "" +#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 +msgid "Filename" +msgstr "Nama file" + #: plug-ins/script-fu/scripts/select-to-pattern.scm.h:3 #, fuzzy msgid "Pattern name" diff -uraN gimp-2.2.0/po-script-fu/it.gmo gimp-2.2.1/po-script-fu/it.gmo --- gimp-2.2.0/po-script-fu/it.gmo 2004-12-19 03:34:32.000000000 +0100 +++ gimp-2.2.1/po-script-fu/it.gmo 2004-12-28 16:59:16.000000000 +0100 @@ -1,81 +1,78 @@ -  + +++ + ,,!,0,J,j,,,,,, --"-A- Z-{-#--!--3.8Q.9. . .... / -/%/ ->$>5> => I> V>b> v>> > > >> > >>> -??#?5?G? V?c?j? s?????????@@ @'@+@ -2@=@ M@ -Y@d@@@@@ @@ @AA A #A/AEA JA TA`AoAwAAAAAAAAB3BPBlBB6B9B= C GCUC qC{CCC CCCCD#D)D 9DFDMD]DmD DD DDDD DDDEE!E(EuJu Qu]uzuuuuuc6Hh4W?ds>n" bf2,.(B-^y *gh /3P$izA` 0gx Mqb`kv81=7-? [@u'|zLkH@D: JBS*Nf5GcKZ. 8 - -LG)<A:CoT3m5&4]$Rw="xY~!+&VT1i uj9S}N^ePr  #|RvwUIJ{Q!F762 aopqrsDY~[I+dOMnElZtOmKE/\{>j%<eX%(Q# -,;X)}lWtFap'9_;0C]_y\V U%d Procedures%s:(none)/Script-Fu/1 Procedure3D _Outline...3_D Truchet.../Script-Fu/Alchemy/Script-Fu/Alpha to Logo/Script-Fu/Animators/Script-Fu/Decor/Script-Fu/Render/Script-Fu/Selection/Script-Fu/Shadow/Script-Fu/Stencil Ops/Script-Fu/Utils/Help/The GIMP Online/Xtns/Script-Fu/Xtns/Script-Fu/Buttons/Xtns/Script-Fu/Logos/Xtns/Script-Fu/Make Brush/Xtns/Script-Fu/Misc/Xtns/Script-Fu/Patterns/Xtns/Script-Fu/Utils/Xtns/Script-Fu/Web Page Themes/Alien Glow/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/Xtns/Script-Fu/Web Page Themes/Classic.Gimp.OrgActive colorsAdd B_evel...Add _Border...Add backgroundAdd drop-shadowAdd glowingAdd shadowAdditional InformationAfter glowAirbrushAlien _Glow...Alien _Neon...Allow resizingAmplitudeAngleAntialiasApply generated layermaskApply layer mask (or discard)Author:AutocropAzimuthBG opacityB_asic II...B_urn-In...B_utton...Background ColorBackground ImageBackground colorBackground imageBar heightBar lengthBase colorBehaviourBevel height (Sharpness)Bevel height (sharpness)Bevel widthBlackBlack on whiteBlen_ded...Blend gradient (Text)Blend gradient (outline)Blend gradient (text)Blend modeBlock sizeBlur XBlur YBlur amountBlur borderBlur horizontallyBlur radiusBlur typeBlur verticallyBo_vination...Border X sizeBorder Y sizeBorder colorBorder sizeBorder size (pixels)BrushBrush nameBuffer amount (% height of text)Bumpmap (alpha layer) blur radiusBurn-In: Need two layers in total!Burst colorC_arve-It...C_hrome-It...C_hrome...Carve raised textCarve white areasCarved...Cell size (pixels)Chalk colorChip Awa_y...Chip amountChrome balanceChrome factorChrome lightnessChrome saturationChrome white areasCircleCircuit seedClear unselected maskareaColorColor 1Color 2Color 3Color methodColumnsComic Boo_k...ConcaveCool _Metal...Copyright:Corona widthCreate new imageCreate shadowCreates four Guides around the bounding box of the current selection.Crystal...CubicCurrent CommandCustom GradientCustom _Gradient...Dark colorDarken only + +l + +++ + +++,,:,V,n,,,,,,- *-K-#j--!--3-8!.9Z. . .... . +.. + // ///>/ M/W/ ]/g///// +/ / / +/// 00 ++0 +60 +A0 L0V0o0 000 0000 +0 +111 1 *161 H1 T1^1n1 }1 1 1 111 +1!1"1 2 )2 62 +D2O2a2 s2}2 2 2 22 2222 3 3373=3E3M3 U3b3j3y33 +3 33 3E3 + 444.4>4 +R4<]44444 444 45 555`15 555555 66 !6 +6 +76B6[6u666 6666 6 67 77 +%707L7Q7 Z7 d7n7 }7 7 77 7 +7 777 +7 7 888 +'828E8V8 \8 +h8s8z88 8 +88 +8 88899*9B9 Z9f9}9 9 99999999 :: +': +2:=: A: N: +[:f: u: : :": :::: ;;;.;>;N; ];i;n; ;; ;; ;;;;; ; <<&<7<><G<L<g< <<'< +<< <<<==&=6=G=X=h====== ==== = = >> %>3> L> Y> c>o> w> >>> +>>>>> ??? "?/?8?J?\?m?~????? ??? +?? ? +@@.@K@e@w@ @@ @@@ @ @@@ @ AAA&A.A?AOAiAAAAAAAB4B6GB9~B=B BC C*C;CKC cCCCCCCC CCC DD /Dl Nl[lnll +llllllllll mm1m Dm"Pmsmmm mmm mm mnn &n +GnRn bn pn ~nn n(nnnn nno.o%Jopo2o-oo2 p  +Z?t'{yLjG@D9IAS*Me5FbKY. 7 KG(;@:BnS3l4%4\$Rv="w}!*~&VT0h  ti9R|N]dOq #{QuvTIJzP F661`nopqrCX}ZH+cOLmDkYsNlJE/[z>i$<dW%(Q" +,:X)|kWsE`o&8^;/C\^x[UU%d Procedures%s:(none)/Script-Fu/1 Procedure3D _Outline...3_D Truchet.../Script-Fu/Alchemy/Script-Fu/Alpha to Logo/Script-Fu/Animators/Script-Fu/Decor/Script-Fu/Render/Script-Fu/Selection/Script-Fu/Shadow/Script-Fu/Stencil Ops/Script-Fu/Utils/Help/The GIMP Online/Xtns/Script-Fu/Xtns/Script-Fu/Buttons/Xtns/Script-Fu/Logos/Xtns/Script-Fu/Make Brush/Xtns/Script-Fu/Misc/Xtns/Script-Fu/Patterns/Xtns/Script-Fu/Utils/Xtns/Script-Fu/Web Page Themes/Alien Glow/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/Xtns/Script-Fu/Web Page Themes/Classic.Gimp.OrgActive colorsAdd B_evel...Add _Border...Add backgroundAdd drop-shadowAdd glowingAdd shadowAdditional InformationAfter glowAirbrushAlien _Glow...Alien _Neon...Allow resizingAmplitudeAngleAntialiasApply generated layermaskApply layer mask (or discard)Author:AutocropAzimuthBG opacityB_asic II...B_urn-In...B_utton...Background ColorBackground ImageBackground colorBackground imageBar heightBar lengthBase colorBehaviourBevel height (Sharpness)Bevel height (sharpness)Bevel widthBlackBlack on whiteBlen_ded...Blend gradient (Text)Blend gradient (outline)Blend gradient (text)Blend modeBlock sizeBlur XBlur YBlur amountBlur borderBlur horizontallyBlur radiusBlur typeBlur verticallyBo_vination...Border X sizeBorder Y sizeBorder colorBorder sizeBorder size (pixels)BrushBrush nameBumpmap (alpha layer) blur radiusBurn-In: Need two layers in total!Burst colorC_arve-It...C_hrome-It...C_hrome...Carve raised textCarve white areasCarved...Cell size (pixels)Chalk colorChip Awa_y...Chip amountChrome balanceChrome factorChrome lightnessChrome saturationChrome white areasCircleCircuit seedClear unselected maskareaColorColor 1Color 2Color 3Color methodColumnsComic Boo_k...ConcaveCool _Metal...Copyright:Corona widthCreate new imageCreate shadowCreates four Guides around the bounding box of the current selection.Crystal...CubicCurrent CommandCustom GradientCustom _Gradient...Dark colorDarken only (Better, but only for images with alot of white)Date:Default bumpmap settingsDefocusDelta value on colorDensity (%)DepthDetail in MiddleDetail levelDiameterDirectionDownDraw _HSV Graph...Draws Spirographs, Epitrochoids and Lissajous Curves. More info at http://netword.com/*spyrogimpDrop shadowDrop shadow X offsetDrop shadow Y offsetDrop shadow blur radiusDrop shadow colorDrop shadow opacityEdge amountEdge behaviourEdge onlyEdge radiusEdge widthEffect size (pixels * 3)Effect size (pixels * 30)Effect size (pixels * 4)Effect size (pixels * 5)Effect size (pixels)ElevationElli_ptical, Feathered...End XEnd YEnd blendEnding blendEnvironment mapEpitrochoidEraseErase/fillError while executing %s -%sEvenEven/oddFG-BG-HSVFG-BG-RGBFG-TransparentFade awayFade from %Fade to %FadeoutFadeout widthFeatheringFile nameFilenameFill BG with patternFill angleFill with BGFlatten imageFontFont _size (pixels)Font colorFont size (pixels)Foreground colorFrameFrame colorFrame sizeFramesFrom top-left to bottom-rightGIMP ExtensionGIMP Plug-InGlo_ssy...Glo_wing Hot...Glow colorGlow radiusGlow size (pixels * 4)GradientGradient Beve_l...Gradient reverseGradient: Loop SawtoothGradient: Loop TriangleGranularityGranularity (1 is Low)Granularity (1 is low)Graph scaleH_eading...HeightHexagonHexagonsHighlight X offsetHighlight Y offsetHighlight balanceHighlight colorHighlight opacityHit rateHole ratioHorizontalIIRImage Types:Image heightImage sizeImage to carveImage widthImigre-26...Index imageIndex to n colors (0 = remain RGB)Inner teethInsert layer namesIntermediate framesInternal GIMP procedureInterpolationInvertInvert directionKeep backgroundKeep bump layerKeep selectionLand heightLeftLighting (degrees)Line _Nova...LinearLissajousLoopedLower colorLower color (active)Lower-right colorMake new backgroundMargin (pixels)Mask opacityMask sizeMax. blur radiusMosaic tile typeMottleN_eon...NameNew Guide (by _Percent)...New Guides from _SelectionNew _Guide...Newsprint Text...No background (only for separate layer)No matchesNoneNot pressedNot pressed (active)NumberNumber of X tilesNumber of Y tilesNumber of bandsNumber of colorsNumber of framesNumber of linesNumber of times to whirlOctagonsOddOffset (pixels)Offset XOffset YOffset radiusOffsets (pixels * 2)Oilify mask sizeOpacityOrientationOuter borderOuter teethOutline blur radiusOutline colorOutline gradient reverseOutline sizePad colorPad opacityPaddingPadding XPadding YPadding around textPadding for transparent regionsParametersPatternPattern (outline)Pattern (overlay)Pattern (text)Pattern namePencilPentagonPixel amountPixelizePlug-in _RegistryPolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPosition (in %)Prepare for GIFPressedProcedure BrowserQuarter sizeRLERadiusRadius (%)Radius (pixels)Random seedRandomnessRe_ctangular, Feathered...Relative distance of horizonRelative length of shadowRemove backgroundRender _Map...Return ValuesRibbon spacingRibbon widthRightRippling strengthRoughnessRound ratioRounded R_ectangle...RowsRows/colsSIOD OutputSOTA Chrome...Scale XScale YScript ArgumentsScript ProgressScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Palette SelectionScript-Fu Server OptionsScript-Fu _ConsoleScript-Fu cannot process two scripts at the same time.Script-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSea depthSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSelect-by-color thresholdSeparate layerSepiaServer Logfile:Server Port:ShadowShadow X offsetShadow Y offsetShadow blur radiusShadow colorShadow darknessShadow depthShadow weight (%)ShapeSharpness (degrees)Shear lengthShow Image _Structure...Simple _Beveled Button...SizeSmearSmoothSmooth horizontallySmooth verticallySolid ColorSpace between layersSpacingSpeed (pixels/frame)Speed Text...Sphere colorSpots density XSpots density YSpreadSpyrographSquareSquaresSta_rscape...StainsStarb_urst...Start XStart YStart angleStart blendStarting blendSupersampleSwirl-_Tile...T_ruchet...T_ube Sub-Button Label...Temporary ProcedureTextText Circle...Text colorText color (active)Text gradient reverseText patternThicknessThread densityThread intensityThread lengthThreshold (bigger 1<-->255 smaller)TileTo _Brush...To _ImageTo _Pattern...ToolTransparent backgroundTriangleTub_e Sub-Sub-Button Label...Turn from left to rightTypeUpUpper colorUpper color (active)Upper-left colorUse current gradientUse font _name as textUse growing selectionUse pattern for outline instead of gradientUse pattern for text instead of gradientUse pattern overlayUse selection bounds instead of belowsVerticalWavelengthWeb Title Header...Whirl amountWhirl angleWidthWidth of bandsWidth of gapsWork on copyWrapX divisionsY divisionsYou are already running the "%s" script._ASCII to Image..._ASCII to Layer..._Arrow..._Basic I..._Big Header..._Blend..._Border (pixels)_Browse..._Bullet..._Camouflage..._Chalk..._Circuit..._Clothify..._Coffee Stain..._Color scheme_Developer Web Site_Distress Selection..._Drop-Shadow..._Elliptical..._Erase every other Row..._Fade Outline..._Filter (regexp)_Flatland..._Font Map..._Frosty..._Fuzzy Border..._General Tube Labels..._Grid..._Hrule..._Labels_Land..._Lava..._Main Web Site_Old Photo..._Particle Trace..._Perspective..._Predator..._Rectangular..._Refresh Scripts_Remove all Guides_Rippling..._Round Button..._Round Corners..._Search:_Slide..._Small Header..._Sphere..._Spinning Globe..._Spyrogimp..._Start Server..._Swirly..._Text_Textured..._Tileable Blur..._Tube Button Label..._Unsharp Mask..._Waves..._Weave..._Xach-Effect...Project-Id-Version: gimp 2.0 +%sEvenEven/oddFG-BG-HSVFG-BG-RGBFG-TransparentFade awayFade from %Fade to %FadeoutFadeout widthFeatheringFile nameFilenameFill BG with patternFill angleFill with BGFlatten imageFontFont _size (pixels)Font colorFont size (pixels)Foreground colorFrameFrame colorFrame sizeFramesFrom top-left to bottom-rightGIMP ExtensionGIMP Plug-InGlo_ssy...Glo_wing Hot...Glow colorGlow radiusGlow size (pixels * 4)GradientGradient Beve_l...Gradient reverseGradient: Loop SawtoothGradient: Loop TriangleGranularityGranularity (1 is Low)Granularity (1 is low)Graph scaleH_eading...HeightHexagonHexagonsHighlight X offsetHighlight Y offsetHighlight balanceHighlight colorHighlight opacityHit rateHole ratioHorizontalIIRImage Types:Image heightImage sizeImage to carveImage widthImigre-26...Index imageIndex to n colors (0 = remain RGB)Inner teethInsert layer namesIntermediate framesInternal GIMP procedureInterpolationInvertInvert directionKeep backgroundKeep bump layerKeep selectionLand heightLeftLighting (degrees)Line _Nova...LinearLissajousLoopedLower colorLower color (active)Lower-right colorMake new backgroundMargin (pixels)Mask opacityMask sizeMax. blur radiusMosaic tile typeMottleN_eon...NameNew Guide (by _Percent)...New Guides from _SelectionNew _Guide...Newsprint Text...No background (only for separate layer)No matchesNoneNot pressedNot pressed (active)NumberNumber of X tilesNumber of Y tilesNumber of bandsNumber of colorsNumber of framesNumber of linesNumber of times to whirlOctagonsOddOffset (pixels)Offset XOffset YOffset radiusOffsets (pixels * 2)Oilify mask sizeOpacityOrientationOuter borderOuter teethOutline blur radiusOutline colorOutline gradient reverseOutline sizePad colorPad opacityPaddingPadding XPadding YPadding around textPadding for transparent regionsParametersPatternPattern (outline)Pattern (overlay)Pattern (text)Pattern namePencilPentagonPixel amountPixelizePlug-in _RegistryPolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPosition (in %)Prepare for GIFPressedProcedure BrowserQuarter sizeRLERadiusRadius (%)Radius (pixels)Random seedRandomnessRe_ctangular, Feathered...Relative distance of horizonRelative length of shadowRemove backgroundRender _Map...Return ValuesRibbon spacingRibbon widthRightRippling strengthRoughnessRound ratioRounded R_ectangle...RowsRows/colsSIOD OutputSOTA Chrome...Scale XScale YScript ArgumentsScript ProgressScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Palette SelectionScript-Fu Server OptionsScript-Fu _ConsoleScript-Fu cannot process two scripts at the same time.Script-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSea depthSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSelect-by-color thresholdSeparate layerSepiaServer Logfile:Server Port:ShadowShadow X offsetShadow Y offsetShadow blur radiusShadow colorShadow darknessShadow depthShadow weight (%)ShapeSharpness (degrees)Shear lengthShow Image _Structure...Simple _Beveled Button...SizeSmearSmoothSmooth horizontallySmooth verticallySolid ColorSpace between layersSpacingSpeed (pixels/frame)Speed Text...Sphere colorSpots density XSpots density YSpreadSpyrographSquareSquaresSta_rscape...StainsStarb_urst...Start XStart YStart angleStart blendStarting blendSupersampleSwirl-_Tile...T_ruchet...T_ube Sub-Button Label...Temporary ProcedureTextText Circle...Text colorText color (active)Text gradient reverseText patternThicknessThread densityThread intensityThread lengthThreshold (bigger 1<-->255 smaller)TileTo _Brush...To _ImageTo _Pattern...ToolTransparent backgroundTriangleTub_e Sub-Sub-Button Label...Turn from left to rightTypeUpUpper colorUpper color (active)Upper-left colorUse current gradientUse font _name as textUse growing selectionUse pattern for outline instead of gradientUse pattern for text instead of gradientUse pattern overlayUse selection bounds instead of belowsVerticalWavelengthWeb Title Header...Whirl amountWhirl angleWidthWidth of bandsWidth of gapsWork on copyWrapX divisionsY divisionsYou are already running the "%s" script._Arrow..._Basic I..._Big Header..._Blend..._Border (pixels)_Browse..._Bullet..._Camouflage..._Chalk..._Circuit..._Clothify..._Coffee Stain..._Color scheme_Developer Web Site_Distress Selection..._Drop-Shadow..._Elliptical..._Erase every other Row..._Fade Outline..._Filter (regexp)_Flatland..._Font Map..._Frosty..._Fuzzy Border..._General Tube Labels..._Grid..._Hrule..._Labels_Land..._Lava..._Main Web Site_Old Photo..._Particle Trace..._Perspective..._Predator..._Rectangular..._Refresh Scripts_Remove all Guides_Rippling..._Round Button..._Round Corners..._Search:_Slide..._Small Header..._Sphere..._Spinning Globe..._Spyrogimp..._Start Server..._Swirly..._Text_Textured..._Tileable Blur..._Tube Button Label..._Unsharp Mask..._Waves..._Weave..._Xach-Effect...Project-Id-Version: gimp 2.0 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:48+0100 +POT-Creation-Date: 2004-12-28 15:42+0100 PO-Revision-Date: 2004-12-16 17:36+0100 Last-Translator: Marco Ciampa Language-Team: gimp.linux.it MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit -%d procedure%s:(nessuno)/Script-Fu/1 proceduraPr_ofilo 3D...Truchet 3_D.../Script-Fu/Alchimia/Script-Fu/Alfa a logotipo/Script-Fu/Animatori/Script-Fu/Decorazioni/Script-Fu/Render/Script-Fu/Selezione/Script-Fu/Ombre/Script-Fu/Stencil Ops/Script-Fu/Utilità/Aiuto/GIMP Online/Xtns/Script-Fu/Xtns/Script-Fu/Pulsanti/Xtns/Script-Fu/Logotipi/Xtns/Script-Fu/Crea pennello/Xtns/Script-Fu/Varie/Xtns/Script-Fu/Motivi/Xtns/Script-Fu/Utilità/Xtns/Script-Fu/Temi pagina web/Incandescenza aliena/Xtns/Script-Fu/Temi pagina web/Motivi in rilievo/Xtns/Script-Fu/Temi pagina web/Classico.Gimp.OrgColori attiviAggiungi rili_evo...Aggiungi _bordo...Aggiungi sfondoAggiungi ombraAggiungi incandescenzaAggiungi ombraInformazioni aggiuntivePost-incandescenzaAerografoIncandescen_za aliena..._Neon alieno...Permetti ridimensionamentoAmpiezzaAngoloAntialiasApplica livello maschera generatoApplica maschera di livello (o annulla)Autore:AutoritagliamentoAzimuthOpacità sfondoDi b_ase II...B_urn-In...P_ulsante...Colore sfondoImmagine di sfondoColore sfondoImmagine di sfondoAltezza barraLunghezza barraColore baseCaratteristicheAltezza rilievo (definizione)Altezza rilievo (definizione)Larghezza rilievoNeroNero su biancoSfuma_to...Sfuma gradiente (testo)Sfuma gradiente (contorno)Sfuma gradiente (testo)Modalità sfumataDimensione bloccoSfocatura XSfocatura YLivello sfocaturaSfuoca bordoSfocatura orizzontaleRaggio sfocaturaTipo sfocaturaSfocatura verticaleBo_vinazione...Dimensione bordo XDimensione bordo YColore bordoDimensione bordoDimensione bordo (pixel)PennelloNome pennelloDimensione buffer (% altezza del testo)Bumpmap (livello alfa) raggio di sfocaturaBurn-In: ha bisogno in totale di due livelli!Colore esplosione_Scolpiscilo...C_romalo..._Cromato...Testo scolpitoAree bianche scolpiteScolpito...Dimensione celle (pixel)Colore gessoSc_heggia...Livello scheggieBilanciamento cromaturaFattore cromaturaLuminosità cromaturaSaturazione cromaturaCromatura aree biancheCerchioSeme casualità circuitiPulisci aree maschere non selezionateChiudiColore 1Colore 2Colore 3Metodo coloreColonne_Fumetto...ConcavoMetallo _freddo...Copyright:Larghezza coronaCrea nuova immagineCrea ombraCrea quattro guide attorno al rettangolo che circoscrive la selezione corrente.Cristallo...CubicoComando correnteGradiente personalizzato_Gradiente personalizzato...Colore scuroSolo scuri +%d procedure%s:(nessuno)/Script-Fu/1 proceduraPr_ofilo 3D...Truchet 3_D.../Script-Fu/Alchimia/Script-Fu/Alfa a logotipo/Script-Fu/Animatori/Script-Fu/Decorazioni/Script-Fu/Render/Script-Fu/Selezione/Script-Fu/Ombre/Script-Fu/Stencil Ops/Script-Fu/Utilità/Aiuto/GIMP Online/Xtns/Script-Fu/Xtns/Script-Fu/Pulsanti/Xtns/Script-Fu/Logotipi/Xtns/Script-Fu/Crea pennello/Xtns/Script-Fu/Varie/Xtns/Script-Fu/Motivi/Xtns/Script-Fu/Utilità/Xtns/Script-Fu/Temi pagina web/Incandescenza aliena/Xtns/Script-Fu/Temi pagina web/Motivi in rilievo/Xtns/Script-Fu/Temi pagina web/Classico.Gimp.OrgColori attiviAggiungi rili_evo...Aggiungi _bordo...Aggiungi sfondoAggiungi ombraAggiungi incandescenzaAggiungi ombraInformazioni aggiuntivePost-incandescenzaAerografoIncandescen_za aliena..._Neon alieno...Permetti ridimensionamentoAmpiezzaAngoloAntialiasApplica livello maschera generatoApplica maschera di livello (o annulla)Autore:AutoritagliamentoAzimuthOpacità sfondoDi b_ase II...B_urn-In...P_ulsante...Colore sfondoImmagine di sfondoColore sfondoImmagine di sfondoAltezza barraLunghezza barraColore baseCaratteristicheAltezza rilievo (definizione)Altezza rilievo (definizione)Larghezza rilievoNeroNero su biancoSfuma_to...Sfuma gradiente (testo)Sfuma gradiente (contorno)Sfuma gradiente (testo)Modalità sfumataDimensione bloccoSfocatura XSfocatura YLivello sfocaturaSfuoca bordoSfocatura orizzontaleRaggio sfocaturaTipo sfocaturaSfocatura verticaleBo_vinazione...Dimensione bordo XDimensione bordo YColore bordoDimensione bordoDimensione bordo (pixel)PennelloNome pennelloBumpmap (livello alfa) raggio di sfocaturaBurn-In: ha bisogno in totale di due livelli!Colore esplosione_Scolpiscilo...C_romalo..._Cromato...Testo scolpitoAree bianche scolpiteScolpito...Dimensione celle (pixel)Colore gessoSc_heggia...Livello scheggieBilanciamento cromaturaFattore cromaturaLuminosità cromaturaSaturazione cromaturaCromatura aree biancheCerchioSeme casualità circuitiPulisci aree maschere non selezionateChiudiColore 1Colore 2Colore 3Metodo coloreColonne_Fumetto...ConcavoMetallo _freddo...Copyright:Larghezza coronaCrea nuova immagineCrea ombraCrea quattro guide attorno al rettangolo che circoscrive la selezione corrente.Cristallo...CubicoComando correnteGradiente personalizzato_Gradiente personalizzato...Colore scuroSolo scuri (migliore ma solo per immagini con molto bianco)Data:Impostazioni predefinite BumpmapSfocaValore delta su coloreDensità (%)ProfonditàDettagli in mezzoLivello di dettaglioDiametroDirezioneAbbassaDisegna grafico _HSV...Disegna spirografi, epitrocoidi e figure di Lissajous. Ulteriori informazioni su http://netword.com/*spyrogimpCrea ombraSpostamento ombra in XSpostamento ombra in YRaggio sfocatura ombraColore ombraOpacità ombraDimensione margineComportamento del bordoSolo margineRaggio margineLarghezza margineDimensione effetto (pixel * 3)Dimensione effetto (punti * 30)Dimensione effetto (punti * 4)Dimensione effetto (pixel * 5)Dimensione effetto (pixel)Elevazione_Ellittica, sfumata...Fine XFine YFine sfumaturaFine sfumaturaMappa ambienteEpitrocoidiCancellaCancella/RiempiErrore durante l'esecuzione %s -%sPariPari/dispariPP-SF-HSVPP-SF-RGBPP-trasparenteSfuma in uscitaSfuma da %Sfuma fino %Dissolvenza in uscitaLarghezza dissolvenza in uscitaSfumaturaNome fileNome fileRiempimento sfondo con un motivoAngolo di riempimentoRiempi con lo sfondoImmagine appiattitaCarattereDimen_sione carattere (pixel)Colore carattereDimensione font (pixel)Colore primo pianoFotogrammaColore corniceDimensione corniceFotogrammiDa Alto-sinistra a Basso-destraEstensione di GIMPPlug-in di GIMPL_ucida...Caldo fumante...Colore incandescenzaRaggio incandescenzaDimensione incandescenza (pixel * 4)GradienteGradiente s_fumato...Gradiente inversoGradiente: dente di sega ciclicoGradiente: triangolare ciclicoGranulositàGranulosità (1 è bassa)Granulosità (1 è bassa)Scala graficoIntestazion_e...AltezzaEsagonoEsagoniSpostamento illuminazione in XSpostamento illuminazione in YBilanciamento luminositàColore illuminazioneOpacità illuminazioneFrequenza di esecuzioneRapporto bucoOrizzontaleIIRTipi di immagini:Altezza immagineDimensione immagineImmagine da scolpireLarghezza immagineImigre-26...Immagine indicizzataIndicizzato a n colori (0 = RGB)Dente internoInserisci nome livelloFotogrammi intermediProcedura interna di GIMPInterpolazioneInvertiDirezione invertitaMantieni lo sfondoMantieni livello BumpMantieni la selezioneAltezza paesaggioSinistraLuminosità (angolazione)Linea _Nova...LineareLissajousCiclicoColore in bassoColore in basso (attivo)Colore in basso a destraCrea nuovo sfondoMargine (punti)Opacità mascheraDimensione mascheraRaggio di massima sfocaturaTipo di mosaico piastrelleChiazzeN_eon...NomeNuova guida (in _percentuale)...Nuove guide dalla _selezioneNuova _guida...Testo con effetto giornale...Senza sfondo (solo per livello separato)Nessun riscontroNessunoNon premutoNon premuto (attivo)NumeroNumero di piastrelle in XNumero di piastrelle in YNumero di fasceNumero di coloriNumero di fotogrammiNumero di righeNumero di giri di spiraleOttagoniDispariSpostamento (pixel)Spostamento in XSpostamento in YRaggio spostamentoSpostamento (pixel * 2)Rendi oleosa la dimensione mascheraOpacitàOrientamentoBordo esternoDente esternoRaggio di sfocatura contornoColore contornoGradiente del profilo invertitoDimensione contornoColore rilievoOpacità rilievoPaddingPadding XPadding YRilievo attorno al testoRilievo per regioni trasparentiParametriMotivoMotivo (contorno)Motivo (sovrapposto)Motivo (testo)Nome motivoMatitaPentagonoQuantità pixelEffetto pixel_Registro dei plug-inPoligono a 10 latiPoligono a 8 latiPoligono a 8 latiPoligono a 9 latiPosizione (in %)Prepara per il formato GIFPremutoNavigatore delle procedureDimensione di un quartoRLERaggioRaggio (%)Raggio (pixel)Seme casualitàCasualità_Rettan_golare, sfumata...Distanza relativa dell'orizzonteLunghezza relativa dell'ombraRimuovi sfondo_Mappa render...Valori restituitiSpaziatura nastroLarghezza nastroDestraLivello increspaturaRuviditàTasso di arrotondamentoR_ettangolo arrotondato...RigheRighe/ColonneUscita SIODCromatura SOTA...Scala XScala YArgomenti dello scriptAvanzamento dello scriptSelezione pennello Script-FuSelezione colore Script-fuConsole Script-FuSelezione file Script-FuSelezione cartella Script-fuSelezione carattere Script-fuSelezione gradiente Script-FuSelezione tavolozza Script-FuOpzioni server Script-Fu_Console Script-FuScript-Fu non può elaborare due o più script contemporaneamente.La modalità console Script-Fu permette solo invocazioni interattiveLa modalità di valutazione Script-Fu permette solo invocazioni non interattiveScript-Fu: %sSelezione motivo Script-FuProfondità del mareRicerca per _descrizioneRicerca per _nomeRicerca - attendereRicerca per descrizione - attendereRicerca per nome - attendereSemeSoglia selezione per coloreLivello separatoSeppiaFile di log server:Porta server:OmbraSpostamento X ombraSpostamento Y ombraRaggio sfocatura ombraColore ombraOscurità ombraProfondità dell'ombraPeso ombra (%)FormaAffilatura (gradi)Lunghezza inclinazioneMostra _struttura immagine...Pulsante semplice con _rilievo...DimensioneMacchiaDefinitoLiscia orizzontaleLiscia verticaleColore pienoSpazio tra livelliSpaziaturaVelocità (punti/fotogramma)Testo veloce...Colore sferaDensità macchie XDensità macchie YDiffusoSpirografoQuadratoQuadrati_Cielo stellato...Macchie_Esplosione di stella...Inizio XInizio YAngolo partenzaInizio sfumaturaInizio sfumaturaSupercampionamentoSpiropias_trella..T_ruchet...Etichetta sotto-pulsante a tubo...Procedura temporaneaTestoCerchio di testo...Colore testoColore testo (attivo)Gradiente del testo invertitoMotivi testoSpessoreDensità filoIntensità filoLunghezza filoSoglia (grande 1<-->255 piccola)PiastrellaAl _pennello...All'_immagineAl _motivo...StrumentoSfondo trasparenteTriangoloEtichetta sotto-sotto-pulsante a tubo...Ruota da sinistra a destraTipoAlzaAlza coloreAlza colore (attivo)Colore in alto a sinistraUtilizza gradiente correnteUsa il _nome del carattere come testoUtilizza selezione crescentePer il profilo usa il motivo anziché il gradientePer il testo usa motivo anziché il gradienteUsa sovrapposizione motivoUsa margini della selezione invece dei sottostantiVerticaleLunghezza d'ondaIntestazione titolo web...Ammontare della spiraleAngolo spiraleLarghezzaLarghezza delle fasceLarghezza degli intervalliLavora su una copiaLegaDivisioni XDivisioni YLo script "%s" è già in esecuzione.Da _ASCII a immagine...Da _ASCII a livello...Frecci_a...Di _base I...Intestazione _grande..._Sfuma..._Bordo (pixel)_Naviga..._Voce elenco puntato..._Camuffamento..._Gesso..._Circuito..._Drappeggia...Macchie di _caffè..._Schema coloreSito web _degli sviluppatori_Distorci selezione..._Crea ombra..._Ellittica...Canc_ella ogni altra riga...S_fuma il profilo..._Filtro (espr. reg.)Paesaggio piatt_o...Mappa _caratteri..._Congelato...Bordo _fuzzy...Etichette a tubo _generiche..._Griglia...Riga _orizzontale..._Etichette_Paesaggio..._Lava...Sito web _principale_Vecchia foto...Traccia di _particella..._Prospettiva..._Predator..._Rettangolare..._Rinfresca gli scripts_Rimuovi tutte le guide_Ondine...Pulsante _rotondo...Angoli a_rrotondati..._Cerca:_dia...Intestazione _piccola..._Sfera...Globo che _gira..._Spirografo...Avvia _server..._Spirale..._Testo_Tessuto...Sfocatura pias_trellabile...Etichetta pulsante a _tubo...Maschera sf_uocata..._Onde..._Onda...Effetto _xach... \ No newline at end of file +%sPariPari/dispariPP-SF-HSVPP-SF-RGBPP-trasparenteSfuma in uscitaSfuma da %Sfuma fino %Dissolvenza in uscitaLarghezza dissolvenza in uscitaSfumaturaNome fileNome fileRiempimento sfondo con un motivoAngolo di riempimentoRiempi con lo sfondoImmagine appiattitaCarattereDimen_sione carattere (pixel)Colore carattereDimensione font (pixel)Colore primo pianoFotogrammaColore corniceDimensione corniceFotogrammiDa Alto-sinistra a Basso-destraEstensione di GIMPPlug-in di GIMPL_ucida...Caldo fumante...Colore incandescenzaRaggio incandescenzaDimensione incandescenza (pixel * 4)GradienteGradiente s_fumato...Gradiente inversoGradiente: dente di sega ciclicoGradiente: triangolare ciclicoGranulositàGranulosità (1 è bassa)Granulosità (1 è bassa)Scala graficoIntestazion_e...AltezzaEsagonoEsagoniSpostamento illuminazione in XSpostamento illuminazione in YBilanciamento luminositàColore illuminazioneOpacità illuminazioneFrequenza di esecuzioneRapporto bucoOrizzontaleIIRTipi di immagini:Altezza immagineDimensione immagineImmagine da scolpireLarghezza immagineImigre-26...Immagine indicizzataIndicizzato a n colori (0 = RGB)Dente internoInserisci nome livelloFotogrammi intermediProcedura interna di GIMPInterpolazioneInvertiDirezione invertitaMantieni lo sfondoMantieni livello BumpMantieni la selezioneAltezza paesaggioSinistraLuminosità (angolazione)Linea _Nova...LineareLissajousCiclicoColore in bassoColore in basso (attivo)Colore in basso a destraCrea nuovo sfondoMargine (punti)Opacità mascheraDimensione mascheraRaggio di massima sfocaturaTipo di mosaico piastrelleChiazzeN_eon...NomeNuova guida (in _percentuale)...Nuove guide dalla _selezioneNuova _guida...Testo con effetto giornale...Senza sfondo (solo per livello separato)Nessun riscontroNessunoNon premutoNon premuto (attivo)NumeroNumero di piastrelle in XNumero di piastrelle in YNumero di fasceNumero di coloriNumero di fotogrammiNumero di righeNumero di giri di spiraleOttagoniDispariSpostamento (pixel)Spostamento in XSpostamento in YRaggio spostamentoSpostamento (pixel * 2)Rendi oleosa la dimensione mascheraOpacitàOrientamentoBordo esternoDente esternoRaggio di sfocatura contornoColore contornoGradiente del profilo invertitoDimensione contornoColore rilievoOpacità rilievoPaddingPadding XPadding YRilievo attorno al testoRilievo per regioni trasparentiParametriMotivoMotivo (contorno)Motivo (sovrapposto)Motivo (testo)Nome motivoMatitaPentagonoQuantità pixelEffetto pixel_Registro dei plug-inPoligono a 10 latiPoligono a 8 latiPoligono a 8 latiPoligono a 9 latiPosizione (in %)Prepara per il formato GIFPremutoNavigatore delle procedureDimensione di un quartoRLERaggioRaggio (%)Raggio (pixel)Seme casualitàCasualità_Rettan_golare, sfumata...Distanza relativa dell'orizzonteLunghezza relativa dell'ombraRimuovi sfondo_Mappa render...Valori restituitiSpaziatura nastroLarghezza nastroDestraLivello increspaturaRuviditàTasso di arrotondamentoR_ettangolo arrotondato...RigheRighe/ColonneUscita SIODCromatura SOTA...Scala XScala YArgomenti dello scriptAvanzamento dello scriptSelezione pennello Script-FuSelezione colore Script-fuConsole Script-FuSelezione file Script-FuSelezione cartella Script-fuSelezione carattere Script-fuSelezione gradiente Script-FuSelezione tavolozza Script-FuOpzioni server Script-Fu_Console Script-FuScript-Fu non può elaborare due o più script contemporaneamente.La modalità console Script-Fu permette solo invocazioni interattiveLa modalità di valutazione Script-Fu permette solo invocazioni non interattiveScript-Fu: %sSelezione motivo Script-FuProfondità del mareRicerca per _descrizioneRicerca per _nomeRicerca - attendereRicerca per descrizione - attendereRicerca per nome - attendereSemeSoglia selezione per coloreLivello separatoSeppiaFile di log server:Porta server:OmbraSpostamento X ombraSpostamento Y ombraRaggio sfocatura ombraColore ombraOscurità ombraProfondità dell'ombraPeso ombra (%)FormaAffilatura (gradi)Lunghezza inclinazioneMostra _struttura immagine...Pulsante semplice con _rilievo...DimensioneMacchiaDefinitoLiscia orizzontaleLiscia verticaleColore pienoSpazio tra livelliSpaziaturaVelocità (punti/fotogramma)Testo veloce...Colore sferaDensità macchie XDensità macchie YDiffusoSpirografoQuadratoQuadrati_Cielo stellato...Macchie_Esplosione di stella...Inizio XInizio YAngolo partenzaInizio sfumaturaInizio sfumaturaSupercampionamentoSpiropias_trella..T_ruchet...Etichetta sotto-pulsante a tubo...Procedura temporaneaTestoCerchio di testo...Colore testoColore testo (attivo)Gradiente del testo invertitoMotivi testoSpessoreDensità filoIntensità filoLunghezza filoSoglia (grande 1<-->255 piccola)PiastrellaAl _pennello...All'_immagineAl _motivo...StrumentoSfondo trasparenteTriangoloEtichetta sotto-sotto-pulsante a tubo...Ruota da sinistra a destraTipoAlzaAlza coloreAlza colore (attivo)Colore in alto a sinistraUtilizza gradiente correnteUsa il _nome del carattere come testoUtilizza selezione crescentePer il profilo usa il motivo anziché il gradientePer il testo usa motivo anziché il gradienteUsa sovrapposizione motivoUsa margini della selezione invece dei sottostantiVerticaleLunghezza d'ondaIntestazione titolo web...Ammontare della spiraleAngolo spiraleLarghezzaLarghezza delle fasceLarghezza degli intervalliLavora su una copiaLegaDivisioni XDivisioni YLo script "%s" è già in esecuzione.Frecci_a...Di _base I...Intestazione _grande..._Sfuma..._Bordo (pixel)_Naviga..._Voce elenco puntato..._Camuffamento..._Gesso..._Circuito..._Drappeggia...Macchie di _caffè..._Schema coloreSito web _degli sviluppatori_Distorci selezione..._Crea ombra..._Ellittica...Canc_ella ogni altra riga...S_fuma il profilo..._Filtro (espr. reg.)Paesaggio piatt_o...Mappa _caratteri..._Congelato...Bordo _fuzzy...Etichette a tubo _generiche..._Griglia...Riga _orizzontale..._Etichette_Paesaggio..._Lava...Sito web _principale_Vecchia foto...Traccia di _particella..._Prospettiva..._Predator..._Rettangolare..._Rinfresca gli scripts_Rimuovi tutte le guide_Ondine...Pulsante _rotondo...Angoli a_rrotondati..._Cerca:_dia...Intestazione _piccola..._Sfera...Globo che _gira..._Spirografo...Avvia _server..._Spirale..._Testo_Tessuto...Sfocatura pias_trellabile...Etichetta pulsante a _tubo...Maschera sf_uocata..._Onde..._Onda...Effetto _xach... \ No newline at end of file diff -uraN gimp-2.2.0/po-script-fu/it.po gimp-2.2.1/po-script-fu/it.po --- gimp-2.2.0/po-script-fu/it.po 2004-12-19 03:34:28.000000000 +0100 +++ gimp-2.2.1/po-script-fu/it.po 2004-12-28 16:59:12.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: gimp 2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:48+0100\n" +"POT-Creation-Date: 2004-12-28 15:42+0100\n" "PO-Revision-Date: 2004-12-16 17:36+0100\n" "Last-Translator: Marco Ciampa \n" "Language-Team: gimp.linux.it\n" @@ -318,7 +318,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:5 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:4 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:6 -#: plug-ins/script-fu/scripts/asc2img.scm.h:8 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:4 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:5 #: plug-ins/script-fu/scripts/beveled-button.scm.h:3 @@ -359,7 +358,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:6 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:5 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:7 -#: plug-ins/script-fu/scripts/asc2img.scm.h:9 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:5 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:6 #: plug-ins/script-fu/scripts/beveled-button.scm.h:4 @@ -487,7 +485,6 @@ #: plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:2 #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:3 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:4 -#: plug-ins/script-fu/scripts/asc2img.scm.h:3 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:3 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:4 #: plug-ins/script-fu/scripts/blended-logo.scm.h:3 @@ -700,7 +697,6 @@ msgstr "Padding" #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:11 -#: plug-ins/script-fu/scripts/asc2img.scm.h:10 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:7 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:8 #: plug-ins/script-fu/scripts/beveled-button.scm.h:10 @@ -743,48 +739,6 @@ msgid "Width of gaps" msgstr "Larghezza degli intervalli" -#: plug-ins/script-fu/scripts/asc2img.scm.h:1 -#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 -#: plug-ins/script-fu/scripts/image-structure.scm.h:1 -msgid "/Script-Fu/Utils" -msgstr "/Script-Fu/Utilità" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:2 -#: plug-ins/script-fu/scripts/font-map.scm.h:1 -#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 -msgid "/Xtns/Script-Fu/Utils" -msgstr "/Xtns/Script-Fu/Utilità" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:5 -#, no-c-format -msgid "Buffer amount (% height of text)" -msgstr "Dimensione buffer (% altezza del testo)" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:6 -#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 -msgid "File name" -msgstr "Nome file" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:7 -#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 -msgid "Filename" -msgstr "Nome file" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:11 -#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 -#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 -#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 -msgid "Transparent background" -msgstr "Sfondo trasparente" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:12 -msgid "_ASCII to Image..." -msgstr "Da _ASCII a immagine..." - -#: plug-ins/script-fu/scripts/asc2img.scm.h:13 -msgid "_ASCII to Layer..." -msgstr "Da _ASCII a livello..." - #: plug-ins/script-fu/scripts/basic1-logo.scm.h:8 msgid "_Basic I..." msgstr "Di _base I..." @@ -834,6 +788,12 @@ msgid "Diameter" msgstr "Diametro" +#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 +#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 +#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 +msgid "Transparent background" +msgstr "Sfondo trasparente" + #: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:4 msgid "H_eading..." msgstr "Intestazion_e..." @@ -1426,6 +1386,11 @@ msgid "_Flatland..." msgstr "Paesaggio piatt_o..." +#: plug-ins/script-fu/scripts/font-map.scm.h:1 +#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 +msgid "/Xtns/Script-Fu/Utils" +msgstr "/Xtns/Script-Fu/Utilità" + #: plug-ins/script-fu/scripts/font-map.scm.h:2 msgid "Active colors" msgstr "Colori attivi" @@ -1695,6 +1660,11 @@ msgid "_Remove all Guides" msgstr "_Rimuovi tutte le guide" +#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 +#: plug-ins/script-fu/scripts/image-structure.scm.h:1 +msgid "/Script-Fu/Utils" +msgstr "/Script-Fu/Utilità" + #: plug-ins/script-fu/scripts/hsv-graph.scm.h:2 msgid "BG opacity" msgstr "Opacità sfondo" @@ -2068,6 +2038,10 @@ msgid "Brush name" msgstr "Nome pennello" +#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 +msgid "File name" +msgstr "Nome file" + #: plug-ins/script-fu/scripts/select-to-brush.scm.h:5 msgid "To _Brush..." msgstr "Al _pennello..." @@ -2076,6 +2050,10 @@ msgid "To _Image" msgstr "All'_immagine" +#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 +msgid "Filename" +msgstr "Nome file" + #: plug-ins/script-fu/scripts/select-to-pattern.scm.h:3 msgid "Pattern name" msgstr "Nome motivo" @@ -2534,3 +2512,12 @@ #: plug-ins/script-fu/scripts/xach-effect.scm.h:12 msgid "_Xach-Effect..." msgstr "Effetto _xach..." + +#~ msgid "Buffer amount (% height of text)" +#~ msgstr "Dimensione buffer (% altezza del testo)" + +#~ msgid "_ASCII to Image..." +#~ msgstr "Da _ASCII a immagine..." + +#~ msgid "_ASCII to Layer..." +#~ msgstr "Da _ASCII a livello..." diff -uraN gimp-2.2.0/po-script-fu/ja.gmo gimp-2.2.1/po-script-fu/ja.gmo --- gimp-2.2.0/po-script-fu/ja.gmo 2004-12-19 03:34:32.000000000 +0100 +++ gimp-2.2.1/po-script-fu/ja.gmo 2004-12-28 16:59:16.000000000 +0100 @@ -10,7 +10,7 @@    %.GN Ub isz~  D=fmaVvsTp&|"qK`i>#+c ;*AC/?0r!kg,2 )]Sty1{YbhldJo\.F9 ~unB<ze[N5 ROP4 8_I6 $HWX'GMZ7U-Ex:w%(}j@LQ^3%s:/Script-Fu/AirbrushAmplitudeAngleAntialiasAuthor:AzimuthBackground ColorBackground ImageBehaviourBlackBlur XBlur YBrushBurn-In: Need two layers in total!CircleColorColor 1Color 2Color 3ColumnsCopyright:Current CommandCustom GradientDate:DefocusDensity (%)DepthDetail in MiddleDiameterDownElevationEnd XEnd YEpitrochoidEraseEvenFG-BG-HSVFG-BG-RGBFG-TransparentFadeoutFeatheringFilenameFill with BGFontFrameFramesGradientGradient: Loop SawtoothGradient: Loop TriangleGranularityGranularity (1 is Low)HeightHexagonHexagonsIIRImage Types:InvertInvert directionLeftLighting (degrees)LissajousLoopedMargin (pixels)MottleNo matchesNumberOctagonsOddOffset (pixels)Offset XOffset YOffsets (pixels * 2)OpacityOrientationPaddingPadding XPadding YPatternPencilPentagonPixelizePolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPrepare for GIFPressedRLERadiusRadius (pixels)RandomnessRightRoughnessRowsSIOD OutputScale XScale YScript ArgumentsScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Server OptionsScript-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSepiaServer Logfile:Server Port:ShadowShapeSharpness (degrees)SizeSmearSmoothSolid ColorSpacingSpeed (pixels/frame)Spots density XSpots density YSpreadSpyrographSquareSquaresStainsStart XStart YSupersampleTextThicknessTileToolTriangleTypeUpWavelengthWidthWrap_Search:Project-Id-Version: gimp-script-fu HEAD Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:48+0100 +POT-Creation-Date: 2004-12-28 15:42+0100 PO-Revision-Date: 2003-09-12 18:36+0900 Last-Translator: Ryoichi INAGAKI Language-Team: Japanese diff -uraN gimp-2.2.0/po-script-fu/ja.po gimp-2.2.1/po-script-fu/ja.po --- gimp-2.2.0/po-script-fu/ja.po 2004-12-19 03:34:28.000000000 +0100 +++ gimp-2.2.1/po-script-fu/ja.po 2004-12-28 16:59:12.000000000 +0100 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: gimp-script-fu HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:48+0100\n" +"POT-Creation-Date: 2004-12-28 15:42+0100\n" "PO-Revision-Date: 2003-09-12 18:36+0900\n" "Last-Translator: Ryoichi INAGAKI \n" "Language-Team: Japanese \n" @@ -329,7 +329,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:5 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:4 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:6 -#: plug-ins/script-fu/scripts/asc2img.scm.h:8 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:4 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:5 #: plug-ins/script-fu/scripts/beveled-button.scm.h:3 @@ -370,7 +369,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:6 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:5 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:7 -#: plug-ins/script-fu/scripts/asc2img.scm.h:9 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:5 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:6 #: plug-ins/script-fu/scripts/beveled-button.scm.h:4 @@ -504,7 +502,6 @@ #: plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:2 #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:3 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:4 -#: plug-ins/script-fu/scripts/asc2img.scm.h:3 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:3 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:4 #: plug-ins/script-fu/scripts/blended-logo.scm.h:3 @@ -740,7 +737,6 @@ msgstr "空間" #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:11 -#: plug-ins/script-fu/scripts/asc2img.scm.h:10 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:7 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:8 #: plug-ins/script-fu/scripts/beveled-button.scm.h:10 @@ -789,53 +785,6 @@ msgid "Width of gaps" msgstr "隙間幅" -#: plug-ins/script-fu/scripts/asc2img.scm.h:1 -#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 -#: plug-ins/script-fu/scripts/image-structure.scm.h:1 -#, fuzzy -msgid "/Script-Fu/Utils" -msgstr "/Script-Fu/ユーティリティ/ASCII を画像レイヤーに..." - -#: plug-ins/script-fu/scripts/asc2img.scm.h:2 -#: plug-ins/script-fu/scripts/font-map.scm.h:1 -#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 -#, fuzzy -msgid "/Xtns/Script-Fu/Utils" -msgstr "/拡張/Script-Fu/ロゴ/ネオン(_E)..." - -#: plug-ins/script-fu/scripts/asc2img.scm.h:5 -#, fuzzy, no-c-format -msgid "Buffer amount (% height of text)" -msgstr "バッファ量 (% 文字の高さ)" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:6 -#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 -#, fuzzy -msgid "File name" -msgstr "ファイル名" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:7 -#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 -msgid "Filename" -msgstr "ファイル名" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:11 -#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 -#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 -#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 -#, fuzzy -msgid "Transparent background" -msgstr "透過背景" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:12 -msgid "_ASCII to Image..." -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:13 -#, fuzzy -msgid "_ASCII to Layer..." -msgstr "/Script-Fu/ユーティリティ/ASCII を画像レイヤーに..." - #: plug-ins/script-fu/scripts/basic1-logo.scm.h:8 msgid "_Basic I..." msgstr "" @@ -891,6 +840,13 @@ msgid "Diameter" msgstr "直径" +#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 +#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 +#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 +#, fuzzy +msgid "Transparent background" +msgstr "透過背景" + #: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:4 msgid "H_eading..." msgstr "" @@ -1549,6 +1505,12 @@ msgid "_Flatland..." msgstr "" +#: plug-ins/script-fu/scripts/font-map.scm.h:1 +#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 +#, fuzzy +msgid "/Xtns/Script-Fu/Utils" +msgstr "/拡張/Script-Fu/ロゴ/ネオン(_E)..." + #: plug-ins/script-fu/scripts/font-map.scm.h:2 #, fuzzy msgid "Active colors" @@ -1858,6 +1820,12 @@ msgid "_Remove all Guides" msgstr "" +#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 +#: plug-ins/script-fu/scripts/image-structure.scm.h:1 +#, fuzzy +msgid "/Script-Fu/Utils" +msgstr "/Script-Fu/ユーティリティ/ASCII を画像レイヤーに..." + #: plug-ins/script-fu/scripts/hsv-graph.scm.h:2 #, fuzzy msgid "BG opacity" @@ -2279,6 +2247,11 @@ msgid "Brush name" msgstr "ブラシの名前" +#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 +#, fuzzy +msgid "File name" +msgstr "ファイル名" + #: plug-ins/script-fu/scripts/select-to-brush.scm.h:5 #, fuzzy msgid "To _Brush..." @@ -2288,6 +2261,10 @@ msgid "To _Image" msgstr "" +#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 +msgid "Filename" +msgstr "ファイル名" + #: plug-ins/script-fu/scripts/select-to-pattern.scm.h:3 #, fuzzy msgid "Pattern name" @@ -2802,6 +2779,14 @@ msgstr "" #, fuzzy +#~ msgid "Buffer amount (% height of text)" +#~ msgstr "バッファ量 (% 文字の高さ)" + +#, fuzzy +#~ msgid "_ASCII to Layer..." +#~ msgstr "/Script-Fu/ユーティリティ/ASCII を画像レイヤーに..." + +#, fuzzy #~ msgid "/Xtns/Script-Fu/_Refresh Scripts" #~ msgstr "/拡張/Script-Fu/再読み込み(_R)" diff -uraN gimp-2.2.0/po-script-fu/ko.gmo gimp-2.2.1/po-script-fu/ko.gmo --- gimp-2.2.0/po-script-fu/ko.gmo 2004-12-19 03:34:32.000000000 +0100 +++ gimp-2.2.1/po-script-fu/ko.gmo 2004-12-28 16:59:16.000000000 +0100 @@ -16,7 +16,7 @@ %s %sEvenFG-BG-HSVFG-BG-RGBFG-TransparentFadeoutFeatheringFilenameFill with BGFontFrameFramesGradientGradient: Loop SawtoothGradient: Loop TriangleGranularityGranularity (1 is Low)HeightHexagonHexagonsIIRImage Types:InvertInvert directionLeftLighting (degrees)LissajousLoopedMargin (pixels)MottleNo matchesNumberOctagonsOddOffset (pixels)Offset XOffset YOffsets (pixels * 2)OpacityOrientationPaddingPadding XPadding YPatternPencilPentagonPixelizePolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPrepare for GIFPressedRLERadiusRadius (pixels)RandomnessRightRoughnessRowsSIOD OutputScale XScale YScript ArgumentsScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Server OptionsScript-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSepiaServer Logfile:Server Port:ShadowShapeSharpness (degrees)SizeSmearSmoothSolid ColorSpacingSpeed (pixels/frame)Spots density XSpots density YSpreadSpyrographSquareSquaresStainsStart XStart YSupersampleTextThicknessTileToolTriangleTypeUpWavelengthWidthWrap_Border (pixels)_Filter (regexp)_Labels_Search:_TextProject-Id-Version: gimp-script-fu HEAD Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:48+0100 +POT-Creation-Date: 2004-12-28 15:42+0100 PO-Revision-Date: 2003-06-05 07:54+0800 Last-Translator: Dongsu Jang Language-Team: Korean diff -uraN gimp-2.2.0/po-script-fu/ko.po gimp-2.2.1/po-script-fu/ko.po --- gimp-2.2.0/po-script-fu/ko.po 2004-12-19 03:34:28.000000000 +0100 +++ gimp-2.2.1/po-script-fu/ko.po 2004-12-28 16:59:12.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: gimp-script-fu HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:48+0100\n" +"POT-Creation-Date: 2004-12-28 15:42+0100\n" "PO-Revision-Date: 2003-06-05 07:54+0800\n" "Last-Translator: Dongsu Jang \n" "Language-Team: Korean \n" @@ -326,7 +326,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:5 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:4 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:6 -#: plug-ins/script-fu/scripts/asc2img.scm.h:8 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:4 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:5 #: plug-ins/script-fu/scripts/beveled-button.scm.h:3 @@ -367,7 +366,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:6 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:5 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:7 -#: plug-ins/script-fu/scripts/asc2img.scm.h:9 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:5 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:6 #: plug-ins/script-fu/scripts/beveled-button.scm.h:4 @@ -501,7 +499,6 @@ #: plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:2 #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:3 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:4 -#: plug-ins/script-fu/scripts/asc2img.scm.h:3 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:3 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:4 #: plug-ins/script-fu/scripts/blended-logo.scm.h:3 @@ -736,7 +733,6 @@ msgstr "채움" #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:11 -#: plug-ins/script-fu/scripts/asc2img.scm.h:10 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:7 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:8 #: plug-ins/script-fu/scripts/beveled-button.scm.h:10 @@ -785,53 +781,6 @@ msgid "Width of gaps" msgstr "틈의 너비" -#: plug-ins/script-fu/scripts/asc2img.scm.h:1 -#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 -#: plug-ins/script-fu/scripts/image-structure.scm.h:1 -#, fuzzy -msgid "/Script-Fu/Utils" -msgstr "/Script-Fu/유틸리티/아스키를 레이어로(_A)..." - -#: plug-ins/script-fu/scripts/asc2img.scm.h:2 -#: plug-ins/script-fu/scripts/font-map.scm.h:1 -#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 -#, fuzzy -msgid "/Xtns/Script-Fu/Utils" -msgstr "/확장/Script-Fu/로고/네온(_E)..." - -#: plug-ins/script-fu/scripts/asc2img.scm.h:5 -#, fuzzy, no-c-format -msgid "Buffer amount (% height of text)" -msgstr "버퍼 량 (텍스트 높이의 %)" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:6 -#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 -#, fuzzy -msgid "File name" -msgstr "파일이름" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:7 -#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 -msgid "Filename" -msgstr "파일이름" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:11 -#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 -#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 -#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 -#, fuzzy -msgid "Transparent background" -msgstr "투명 배경" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:12 -msgid "_ASCII to Image..." -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:13 -#, fuzzy -msgid "_ASCII to Layer..." -msgstr "/Script-Fu/유틸리티/아스키를 레이어로(_A)..." - #: plug-ins/script-fu/scripts/basic1-logo.scm.h:8 msgid "_Basic I..." msgstr "" @@ -887,6 +836,13 @@ msgid "Diameter" msgstr "지름" +#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 +#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 +#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 +#, fuzzy +msgid "Transparent background" +msgstr "투명 배경" + #: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:4 msgid "H_eading..." msgstr "" @@ -1545,6 +1501,12 @@ msgid "_Flatland..." msgstr "" +#: plug-ins/script-fu/scripts/font-map.scm.h:1 +#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 +#, fuzzy +msgid "/Xtns/Script-Fu/Utils" +msgstr "/확장/Script-Fu/로고/네온(_E)..." + #: plug-ins/script-fu/scripts/font-map.scm.h:2 #, fuzzy msgid "Active colors" @@ -1851,6 +1813,12 @@ msgid "_Remove all Guides" msgstr "" +#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 +#: plug-ins/script-fu/scripts/image-structure.scm.h:1 +#, fuzzy +msgid "/Script-Fu/Utils" +msgstr "/Script-Fu/유틸리티/아스키를 레이어로(_A)..." + #: plug-ins/script-fu/scripts/hsv-graph.scm.h:2 #, fuzzy msgid "BG opacity" @@ -2272,6 +2240,11 @@ msgid "Brush name" msgstr "브러시 이름" +#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 +#, fuzzy +msgid "File name" +msgstr "파일이름" + #: plug-ins/script-fu/scripts/select-to-brush.scm.h:5 #, fuzzy msgid "To _Brush..." @@ -2281,6 +2254,10 @@ msgid "To _Image" msgstr "" +#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 +msgid "Filename" +msgstr "파일이름" + #: plug-ins/script-fu/scripts/select-to-pattern.scm.h:3 #, fuzzy msgid "Pattern name" @@ -2795,6 +2772,14 @@ msgid "_Xach-Effect..." msgstr "" +#, fuzzy +#~ msgid "Buffer amount (% height of text)" +#~ msgstr "버퍼 량 (텍스트 높이의 %)" + +#, fuzzy +#~ msgid "_ASCII to Layer..." +#~ msgstr "/Script-Fu/유틸리티/아스키를 레이어로(_A)..." + #~ msgid "/Xtns/Script-Fu/_Refresh Scripts" #~ msgstr "/확장/Script-Fu/스크립트 새로 고침(_R)" diff -uraN gimp-2.2.0/po-script-fu/lt.gmo gimp-2.2.1/po-script-fu/lt.gmo --- gimp-2.2.0/po-script-fu/lt.gmo 2004-12-19 03:34:32.000000000 +0100 +++ gimp-2.2.1/po-script-fu/lt.gmo 2004-12-28 16:59:16.000000000 +0100 @@ -5,7 +5,7 @@     %s:/Script-Fu/AmplitudeAuthor:Copyright:Current CommandDate:DiameterFG-BG-HSVFG-BG-RGBFontHeightIIRImage Types:RLESIOD OutputScript-Fu _ConsoleScript-Fu: %sServer Logfile:Server Port:TextWavelengthWidth_Search:_TextProject-Id-Version: GIMP HEAD Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:48+0100 +POT-Creation-Date: 2004-12-28 15:42+0100 PO-Revision-Date: 2004-05-23 11:55+0300 Last-Translator: Žygimantas Beručka Language-Team: Lithuanian diff -uraN gimp-2.2.0/po-script-fu/lt.po gimp-2.2.1/po-script-fu/lt.po --- gimp-2.2.0/po-script-fu/lt.po 2004-12-19 03:34:29.000000000 +0100 +++ gimp-2.2.1/po-script-fu/lt.po 2004-12-28 16:59:12.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: GIMP HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:48+0100\n" +"POT-Creation-Date: 2004-12-28 15:42+0100\n" "PO-Revision-Date: 2004-05-23 11:55+0300\n" "Last-Translator: Žygimantas Beručka \n" "Language-Team: Lithuanian \n" @@ -316,7 +316,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:5 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:4 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:6 -#: plug-ins/script-fu/scripts/asc2img.scm.h:8 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:4 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:5 #: plug-ins/script-fu/scripts/beveled-button.scm.h:3 @@ -357,7 +356,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:6 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:5 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:7 -#: plug-ins/script-fu/scripts/asc2img.scm.h:9 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:5 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:6 #: plug-ins/script-fu/scripts/beveled-button.scm.h:4 @@ -486,7 +484,6 @@ #: plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:2 #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:3 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:4 -#: plug-ins/script-fu/scripts/asc2img.scm.h:3 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:3 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:4 #: plug-ins/script-fu/scripts/blended-logo.scm.h:3 @@ -705,7 +702,6 @@ msgstr "" #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:11 -#: plug-ins/script-fu/scripts/asc2img.scm.h:10 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:7 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:8 #: plug-ins/script-fu/scripts/beveled-button.scm.h:10 @@ -749,49 +745,6 @@ msgid "Width of gaps" msgstr "" -#: plug-ins/script-fu/scripts/asc2img.scm.h:1 -#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 -#: plug-ins/script-fu/scripts/image-structure.scm.h:1 -#, fuzzy -msgid "/Script-Fu/Utils" -msgstr "/Script-Fu/" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:2 -#: plug-ins/script-fu/scripts/font-map.scm.h:1 -#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 -msgid "/Xtns/Script-Fu/Utils" -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:5 -#, no-c-format -msgid "Buffer amount (% height of text)" -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:6 -#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 -msgid "File name" -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:7 -#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 -msgid "Filename" -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:11 -#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 -#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 -#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 -msgid "Transparent background" -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:12 -msgid "_ASCII to Image..." -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:13 -msgid "_ASCII to Layer..." -msgstr "" - #: plug-ins/script-fu/scripts/basic1-logo.scm.h:8 msgid "_Basic I..." msgstr "" @@ -841,6 +794,12 @@ msgid "Diameter" msgstr "Diametras" +#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 +#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 +#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 +msgid "Transparent background" +msgstr "" + #: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:4 msgid "H_eading..." msgstr "" @@ -1439,6 +1398,11 @@ msgid "_Flatland..." msgstr "" +#: plug-ins/script-fu/scripts/font-map.scm.h:1 +#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 +msgid "/Xtns/Script-Fu/Utils" +msgstr "" + #: plug-ins/script-fu/scripts/font-map.scm.h:2 msgid "Active colors" msgstr "" @@ -1711,6 +1675,12 @@ msgid "_Remove all Guides" msgstr "" +#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 +#: plug-ins/script-fu/scripts/image-structure.scm.h:1 +#, fuzzy +msgid "/Script-Fu/Utils" +msgstr "/Script-Fu/" + #: plug-ins/script-fu/scripts/hsv-graph.scm.h:2 msgid "BG opacity" msgstr "" @@ -2088,6 +2058,10 @@ msgid "Brush name" msgstr "" +#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 +msgid "File name" +msgstr "" + #: plug-ins/script-fu/scripts/select-to-brush.scm.h:5 #, fuzzy msgid "To _Brush..." @@ -2097,6 +2071,10 @@ msgid "To _Image" msgstr "" +#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 +msgid "Filename" +msgstr "" + #: plug-ins/script-fu/scripts/select-to-pattern.scm.h:3 msgid "Pattern name" msgstr "" diff -uraN gimp-2.2.0/po-script-fu/ms.gmo gimp-2.2.1/po-script-fu/ms.gmo --- gimp-2.2.0/po-script-fu/ms.gmo 2004-12-19 03:34:32.000000000 +0100 +++ gimp-2.2.1/po-script-fu/ms.gmo 2004-12-28 16:59:16.000000000 +0100 @@ -16,7 +16,7 @@  - 7AEKQW^ gq    '5Oiz<C: ~.-> DP anu|  $*1 8E JTZ _iowE>gnbWwtUq"}#rLaj?$,` <+BD0@1s!lh-3 *^Tuz2|ZcidmeKp]/G: voC={f\O6 SPQ5 9'J7 %IXY(HN[8V.Fy;x&)~kAMR_4%s:/Script-Fu/AirbrushAmplitudeAngleAntialiasAuthor:AzimuthBackground ColorBackground ImageBehaviourBlackBlur XBlur YBrushBurn-In: Need two layers in total!CircleColorColor 1Color 2Color 3ColumnsCopyright:Current CommandCustom GradientDate:DefocusDensity (%)DepthDetail in MiddleDiameterDownDraws Spirographs, Epitrochoids and Lissajous Curves. More info at http://netword.com/*spyrogimpElevationEnd XEnd YEpitrochoidEraseEvenFG-BG-HSVFG-BG-RGBFG-TransparentFadeoutFeatheringFilenameFill with BGFontFrameFramesGradientGradient: Loop SawtoothGradient: Loop TriangleGranularityGranularity (1 is Low)HeightHexagonHexagonsIIRImage Types:InvertInvert directionLeftLighting (degrees)LissajousLoopedMargin (pixels)MottleNo matchesNumberOctagonsOddOffset (pixels)Offset XOffset YOffsets (pixels * 2)OpacityOrientationPaddingPadding XPadding YPatternPencilPentagonPixelizePolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPrepare for GIFPressedRLERadiusRadius (pixels)RandomnessRightRoughnessRowsSIOD OutputScale XScale YScript ArgumentsScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Server OptionsScript-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSepiaServer Logfile:Server Port:ShadowShapeSharpness (degrees)SizeSmearSmoothSolid ColorSpacingSpeed (pixels/frame)Spots density XSpots density YSpreadSpyrographSquareSquaresStainsStart XStart YSupersampleTextThicknessTileToolTriangleTypeUpWavelengthWidthWrap_Border (pixels)_Filter (regexp)_Labels_Search:_TextProject-Id-Version: Gimp-script-fu HEAD Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:48+0100 +POT-Creation-Date: 2004-12-28 15:42+0100 PO-Revision-Date: 2003-10-30 09:35+0800 Last-Translator: MIMOS Open Source Development Group Language-Team: Projek Gabai diff -uraN gimp-2.2.0/po-script-fu/ms.po gimp-2.2.1/po-script-fu/ms.po --- gimp-2.2.0/po-script-fu/ms.po 2004-12-19 03:34:29.000000000 +0100 +++ gimp-2.2.1/po-script-fu/ms.po 2004-12-28 16:59:12.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Gimp-script-fu HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:48+0100\n" +"POT-Creation-Date: 2004-12-28 15:42+0100\n" "PO-Revision-Date: 2003-10-30 09:35+0800\n" "Last-Translator: MIMOS Open Source Development Group \n" "Language-Team: Projek Gabai \n" @@ -327,7 +327,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:5 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:4 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:6 -#: plug-ins/script-fu/scripts/asc2img.scm.h:8 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:4 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:5 #: plug-ins/script-fu/scripts/beveled-button.scm.h:3 @@ -368,7 +367,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:6 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:5 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:7 -#: plug-ins/script-fu/scripts/asc2img.scm.h:9 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:5 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:6 #: plug-ins/script-fu/scripts/beveled-button.scm.h:4 @@ -502,7 +500,6 @@ #: plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:2 #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:3 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:4 -#: plug-ins/script-fu/scripts/asc2img.scm.h:3 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:3 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:4 #: plug-ins/script-fu/scripts/blended-logo.scm.h:3 @@ -738,7 +735,6 @@ msgstr "Pad" #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:11 -#: plug-ins/script-fu/scripts/asc2img.scm.h:10 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:7 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:8 #: plug-ins/script-fu/scripts/beveled-button.scm.h:10 @@ -787,53 +783,6 @@ msgid "Width of gaps" msgstr "Lebar Sela" -#: plug-ins/script-fu/scripts/asc2img.scm.h:1 -#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 -#: plug-ins/script-fu/scripts/image-structure.scm.h:1 -#, fuzzy -msgid "/Script-Fu/Utils" -msgstr "/Script-Fu/Utils/ASCII ke Lapisan Imej..." - -#: plug-ins/script-fu/scripts/asc2img.scm.h:2 -#: plug-ins/script-fu/scripts/font-map.scm.h:1 -#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 -#, fuzzy -msgid "/Xtns/Script-Fu/Utils" -msgstr "/Xtns/Script-Fu/Logo/N_eon..." - -#: plug-ins/script-fu/scripts/asc2img.scm.h:5 -#, fuzzy, no-c-format -msgid "Buffer amount (% height of text)" -msgstr "Jumlah Penimbal (% Tinggi Teks)" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:6 -#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 -#, fuzzy -msgid "File name" -msgstr "Nama fail" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:7 -#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 -msgid "Filename" -msgstr "Nama fail" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:11 -#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 -#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 -#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 -#, fuzzy -msgid "Transparent background" -msgstr "Latar belakang Lut sinar" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:12 -msgid "_ASCII to Image..." -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:13 -#, fuzzy -msgid "_ASCII to Layer..." -msgstr "/Script-Fu/Utils/ASCII ke Lapisan Imej..." - #: plug-ins/script-fu/scripts/basic1-logo.scm.h:8 msgid "_Basic I..." msgstr "" @@ -889,6 +838,13 @@ msgid "Diameter" msgstr "Garis pusat" +#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 +#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 +#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 +#, fuzzy +msgid "Transparent background" +msgstr "Latar belakang Lut sinar" + #: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:4 msgid "H_eading..." msgstr "" @@ -1547,6 +1503,12 @@ msgid "_Flatland..." msgstr "" +#: plug-ins/script-fu/scripts/font-map.scm.h:1 +#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 +#, fuzzy +msgid "/Xtns/Script-Fu/Utils" +msgstr "/Xtns/Script-Fu/Logo/N_eon..." + #: plug-ins/script-fu/scripts/font-map.scm.h:2 #, fuzzy msgid "Active colors" @@ -1853,6 +1815,12 @@ msgid "_Remove all Guides" msgstr "" +#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 +#: plug-ins/script-fu/scripts/image-structure.scm.h:1 +#, fuzzy +msgid "/Script-Fu/Utils" +msgstr "/Script-Fu/Utils/ASCII ke Lapisan Imej..." + #: plug-ins/script-fu/scripts/hsv-graph.scm.h:2 #, fuzzy msgid "BG opacity" @@ -2274,6 +2242,11 @@ msgid "Brush name" msgstr "Nama Berus" +#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 +#, fuzzy +msgid "File name" +msgstr "Nama fail" + #: plug-ins/script-fu/scripts/select-to-brush.scm.h:5 #, fuzzy msgid "To _Brush..." @@ -2283,6 +2256,10 @@ msgid "To _Image" msgstr "" +#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 +msgid "Filename" +msgstr "Nama fail" + #: plug-ins/script-fu/scripts/select-to-pattern.scm.h:3 #, fuzzy msgid "Pattern name" @@ -2797,6 +2774,14 @@ msgid "_Xach-Effect..." msgstr "" +#, fuzzy +#~ msgid "Buffer amount (% height of text)" +#~ msgstr "Jumlah Penimbal (% Tinggi Teks)" + +#, fuzzy +#~ msgid "_ASCII to Layer..." +#~ msgstr "/Script-Fu/Utils/ASCII ke Lapisan Imej..." + #~ msgid "/Xtns/Script-Fu/_Refresh Scripts" #~ msgstr "/Xtns/Script-Fu/_Muat semula Skrip" diff -uraN gimp-2.2.0/po-script-fu/nb.gmo gimp-2.2.1/po-script-fu/nb.gmo --- gimp-2.2.0/po-script-fu/nb.gmo 2004-12-19 03:34:33.000000000 +0100 +++ gimp-2.2.1/po-script-fu/nb.gmo 2004-12-28 16:59:16.000000000 +0100 @@ -21,7 +21,7 @@ {   &+ /<C~6,8GyX$U(s#]9-ke:\HV /I.Z>1"3M?;@Wo_qilPc[&*xbKA T!fu na4)C{ 0N%t}2OmFRSQp <^rhdJv+wgz`DE Yj7BL'5|=%s:/Script-Fu/AmplitudeAngleAntialiasAuthor:AzimuthBackground ColorBackground ImageBehaviourBlackBlur XBlur YColorColor 1Color 2Color 3ColumnsCopyright:Current CommandCustom GradientDate:DefocusDensity (%)DepthDetail in MiddleDiameterDownElevationEnd XEnd YEraseEvenFG-BG-HSVFG-BG-RGBFG-TransparentFadeoutFeatheringFilenameFill with BGFontFramesGradientGranularityGranularity (1 is Low)HeightHexagonsIIRImage Types:InvertInvert directionLeftLighting (degrees)LoopedMottleNo matchesNumberOctagonsOddOffset (pixels)Offset XOffset YOffsets (pixels * 2)OpacityOrientationPaddingPadding XPadding YPatternPixelizePrepare for GIFPressedRLERadiusRadius (pixels)RandomnessRightRoughnessRowsSIOD OutputScale XScale YScript ArgumentsScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Server OptionsScript-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSepiaServer Logfile:Server Port:ShadowSharpness (degrees)SizeSmearSmoothSpacingSpeed (pixels/frame)Spots density XSpots density YSpreadSquaresStainsStart XStart YSupersampleTextThicknessTileUpWavelengthWidth_Search:Project-Id-Version: achtung 1.1.25 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:48+0100 +POT-Creation-Date: 2004-12-28 15:42+0100 PO-Revision-Date: 2003-01-26 17:18+0100 Last-Translator: Kjartan Maraas Language-Team: Norwegian diff -uraN gimp-2.2.0/po-script-fu/nb.po gimp-2.2.1/po-script-fu/nb.po --- gimp-2.2.0/po-script-fu/nb.po 2004-12-19 03:34:29.000000000 +0100 +++ gimp-2.2.1/po-script-fu/nb.po 2004-12-28 16:59:13.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: achtung 1.1.25\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:48+0100\n" +"POT-Creation-Date: 2004-12-28 15:42+0100\n" "PO-Revision-Date: 2003-01-26 17:18+0100\n" "Last-Translator: Kjartan Maraas \n" "Language-Team: Norwegian \n" @@ -326,7 +326,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:5 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:4 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:6 -#: plug-ins/script-fu/scripts/asc2img.scm.h:8 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:4 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:5 #: plug-ins/script-fu/scripts/beveled-button.scm.h:3 @@ -367,7 +366,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:6 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:5 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:7 -#: plug-ins/script-fu/scripts/asc2img.scm.h:9 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:5 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:6 #: plug-ins/script-fu/scripts/beveled-button.scm.h:4 @@ -501,7 +499,6 @@ #: plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:2 #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:3 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:4 -#: plug-ins/script-fu/scripts/asc2img.scm.h:3 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:3 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:4 #: plug-ins/script-fu/scripts/blended-logo.scm.h:3 @@ -737,7 +734,6 @@ msgstr "Fyll" #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:11 -#: plug-ins/script-fu/scripts/asc2img.scm.h:10 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:7 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:8 #: plug-ins/script-fu/scripts/beveled-button.scm.h:10 @@ -786,53 +782,6 @@ msgid "Width of gaps" msgstr "Bredde for mellomrom" -#: plug-ins/script-fu/scripts/asc2img.scm.h:1 -#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 -#: plug-ins/script-fu/scripts/image-structure.scm.h:1 -#, fuzzy -msgid "/Script-Fu/Utils" -msgstr "/Script-Fu/Verktøy/ASCII til bildelag..." - -#: plug-ins/script-fu/scripts/asc2img.scm.h:2 -#: plug-ins/script-fu/scripts/font-map.scm.h:1 -#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 -#, fuzzy -msgid "/Xtns/Script-Fu/Utils" -msgstr "/Utvd/Script-Fu/Logoer/Neon..." - -#: plug-ins/script-fu/scripts/asc2img.scm.h:5 -#, fuzzy, no-c-format -msgid "Buffer amount (% height of text)" -msgstr "Buffermengde (% høyde av tekst)" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:6 -#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 -#, fuzzy -msgid "File name" -msgstr "Filnavn" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:7 -#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 -msgid "Filename" -msgstr "Filnavn" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:11 -#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 -#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 -#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 -#, fuzzy -msgid "Transparent background" -msgstr "Gjennomsiktig bakgrunn" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:12 -msgid "_ASCII to Image..." -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:13 -#, fuzzy -msgid "_ASCII to Layer..." -msgstr "/Script-Fu/Verktøy/ASCII til bildelag..." - #: plug-ins/script-fu/scripts/basic1-logo.scm.h:8 msgid "_Basic I..." msgstr "" @@ -888,6 +837,13 @@ msgid "Diameter" msgstr "Diameter" +#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 +#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 +#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 +#, fuzzy +msgid "Transparent background" +msgstr "Gjennomsiktig bakgrunn" + #: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:4 msgid "H_eading..." msgstr "" @@ -1546,6 +1502,12 @@ msgid "_Flatland..." msgstr "" +#: plug-ins/script-fu/scripts/font-map.scm.h:1 +#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 +#, fuzzy +msgid "/Xtns/Script-Fu/Utils" +msgstr "/Utvd/Script-Fu/Logoer/Neon..." + #: plug-ins/script-fu/scripts/font-map.scm.h:2 #, fuzzy msgid "Active colors" @@ -1850,6 +1812,12 @@ msgid "_Remove all Guides" msgstr "" +#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 +#: plug-ins/script-fu/scripts/image-structure.scm.h:1 +#, fuzzy +msgid "/Script-Fu/Utils" +msgstr "/Script-Fu/Verktøy/ASCII til bildelag..." + #: plug-ins/script-fu/scripts/hsv-graph.scm.h:2 #, fuzzy msgid "BG opacity" @@ -2272,6 +2240,11 @@ msgid "Brush name" msgstr "Bruk kost" +#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 +#, fuzzy +msgid "File name" +msgstr "Filnavn" + #: plug-ins/script-fu/scripts/select-to-brush.scm.h:5 #, fuzzy msgid "To _Brush..." @@ -2281,6 +2254,10 @@ msgid "To _Image" msgstr "" +#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 +msgid "Filename" +msgstr "Filnavn" + #: plug-ins/script-fu/scripts/select-to-pattern.scm.h:3 #, fuzzy msgid "Pattern name" @@ -2803,6 +2780,14 @@ msgstr "" #, fuzzy +#~ msgid "Buffer amount (% height of text)" +#~ msgstr "Buffermengde (% høyde av tekst)" + +#, fuzzy +#~ msgid "_ASCII to Layer..." +#~ msgstr "/Script-Fu/Verktøy/ASCII til bildelag..." + +#, fuzzy #~ msgid "/Xtns/Script-Fu/_Refresh Scripts" #~ msgstr "/Utvidelser/Script-Fu/Gjenoppfrisk" diff -uraN gimp-2.2.0/po-script-fu/nl.gmo gimp-2.2.1/po-script-fu/nl.gmo --- gimp-2.2.0/po-script-fu/nl.gmo 2004-12-19 03:34:33.000000000 +0100 +++ gimp-2.2.1/po-script-fu/nl.gmo 2004-12-28 16:59:16.000000000 +0100 @@ -1,83 +1,86 @@ -\) ))) ) **!*;*[*w******+2+ K+l+#++!++3,8B,9{, , ,,,, , - -- ---8-A-P-_- n-x- ~------ -- - - --..*.;. -L. -W. -b. m.w.. ... -... . .. / /#/3/ B/ P/ ^/ k/w// -/ /!/"/ 0 0 -0)0;0 M0W0 j0 v0 00 0000001 -111 "1/171F1N1 -]1 h1u1 1E1 -1111 2 -2<*2g2m222 222 22 222`2 _3k33333 33 3 3 -44(4B4[4t4 4444 44 44 -44 55 5 $5.5 =5 G5 S5_5 -g5 r5|55 -5 5 555 -5556 6 -6%6,6J6 Y6 -f6q6 -6 666666 677 37?7F7N7W7j7}7777 -7 -77 7 7 -77 8 8 !8"-8 P8\8o88 888888 889 9"9 )939 :9F9[9m99 9 99999999 :'#: -K:V: [:g:|::::::::; ;;;(; 1;?;T;e; m; y; ;; ;; ; ; ;; ; < < < -@<K<S<e<w< <<< <<<<<<<= =0=8= J=W=[= -b=m= }= -===== => >">(> :> D>P>f> k> u>>>>>>>>>?,?E?b?~??6?9?=@ Y@g@ @@@@ @@A A&A5A;A KAXA_AoAA AA AAAA AAB(B-B3B:BNB `BlBBB B BBBB -BBBBC C C C )C5COCcChC -wCCC C CCC C#CD D 'D1D@DED\DeDDDD DDDDDE+E(CElE&EE -EE E EEE E FF F )F(5F^FqF F FFF -F -FF F FF GG)G@GPG_GyGG G G -GGGG GGH HH %H3H CHPH`HqH HHHH HH -H HHI II'I=I NI XIbIArI JJJ J J JJ!K0KLKdKKK"K!K&K L 9LZL&zLL!L(L3 M;@M8|MMMMM NN-N?N VN `NjNzNN NN -N N NN O OO )O 6ODOMO^OtOO -O -O -OOOOOP P &P 2P WHWWW`WqWW W W WWW WWWW XX+X:X -@X KXXX_X X X -XX -X XXXXYY .Y;YTY mY{YY YYYYYYZ #Z 1Z=ZAZSZeZxZZ ZZ)ZZZ[$[ ;[H[P[b[w[[ -[[[[[ [[ [[ \\4\C\ [\i\\\\\$\!\\)].]B]G]V]n]t]] ]] ] ]] -]]] ^^+^?^Z^v^ ^^^^ ^^ ^ -_ _ $_ ._ :_F_$[_ -_____ ____ _``(`;`N`a`p` `` ``` -`` ``` a*aGa_apa aa aaaaa -a aaaab b:bRbdbbbbbbb;c@DcFc cc ccd$d%:d`d ~dd ddd dddd e #e0e @eNeaefexeeeeeeee ff "f.fFfVf_frf f -ff -ffff f fffgg!g -0g;gOg fgsgygg g!ggggg h h%h.hJhfhkh rhhhhhh1h0'iXi2oi i -iii -iiiij)j0j8j@j`jzjj j j j j jj jjk kk2kHkWkfkkk kk k kk -k l lll %l 3lAl Ql^lnll llllllllmm m+mAmTm -hm sm}m'*p?)t~SGQ=p*lN ow8(3T-.(y?e4T[B{AYhJW |QxZd&da!vH/ V>h`O02NrU$9OtD[WCDukv,%;{+"abKb+q-Eym375~>;K!# $L<<zYk4 1}I  '8fJ - 012sFzHPBU`g\7/ijL^@"|sjuM6GA\%o -MqS} @Pxl]I#5_:gmiV:6nfcn=F,EeC_ R]Zr)9^wX&cX.R%d Procedures%s:(none)/Script-Fu/1 Procedure3D _Outline.../Script-Fu/Alchemy/Script-Fu/Alpha to Logo/Script-Fu/Animators/Script-Fu/Decor/Script-Fu/Render/Script-Fu/Selection/Script-Fu/Shadow/Script-Fu/Stencil Ops/Script-Fu/Utils/Help/The GIMP Online/Xtns/Script-Fu/Xtns/Script-Fu/Buttons/Xtns/Script-Fu/Logos/Xtns/Script-Fu/Make Brush/Xtns/Script-Fu/Misc/Xtns/Script-Fu/Patterns/Xtns/Script-Fu/Utils/Xtns/Script-Fu/Web Page Themes/Alien Glow/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/Xtns/Script-Fu/Web Page Themes/Classic.Gimp.OrgActive colorsAdd B_evel...Add _Border...Add backgroundAdd drop-shadowAdd glowingAdd shadowAdditional InformationAfter glowAirbrushAlien _Glow...Alien _Neon...Allow resizingAmplitudeAngleAntialiasApply generated layermaskApply layer mask (or discard)Author:AutocropAzimuthBG opacityB_asic II...B_urn-In...B_utton...Background ColorBackground ImageBackground colorBackground imageBar heightBar lengthBase colorBehaviourBevel height (Sharpness)Bevel height (sharpness)Bevel widthBlackBlack on whiteBlock sizeBlur XBlur YBlur amountBlur borderBlur horizontallyBlur radiusBlur typeBlur verticallyBo_vination...Border X sizeBorder Y sizeBorder colorBorder sizeBorder size (pixels)BrushBrush nameBuffer amount (% height of text)Bumpmap (alpha layer) blur radiusBurn-In: Need two layers in total!C_arve-It...C_hrome-It...C_hrome...Carve raised textCarve white areasCarved...Cell size (pixels)Chalk colorChip Awa_y...Chip amountChrome balanceChrome factorChrome lightnessChrome saturationChrome white areasCircleClear unselected maskareaColorColor 1Color 2Color 3Color methodColumnsComic Boo_k...ConcaveCool _Metal...Copyright:Corona widthCreate new imageCreate shadowCreates four Guides around the bounding box of the current selection.Crystal...CubicCurrent CommandCustom GradientCustom _Gradient...Dark colorDarken only +,) ))) ) ))) *+*G*_*x*****+ +<+#[++!++3+8,9K, , ,,,, , +,, +,-- -/- >-H- N-X-r---- +- - - +---- . +. +'. +2. =.G.`. y... +... . .. . ../ / / ./ ;/G/\/ +b/!m/"/ / / +/// /0 0 %0 30?0 N0\0m00000000 00000 + 1 1$1 51EC1 +11111 +1<12252=2 R2^2d2 u22 222`2 33/3D3\3n3 33 3 3 +3333 +4#4 84B4\4b4 h4r4 44 +4444 4 44 4 4 55 +5 !5+545 +I5 T5 a5o5t5 +5555 5 +5555 6 +6 6 +06 ;6G6^6g6x66 666 666677,7>7N7`7 +i7 +t77 7 7 +77 7 7 7"7 7 8828 J8X8_8p888 888 88 88 88 +9909 @9 M9W9h9y99999 9'9 +9: +::+:2:D:V:f:w:::::::: ::;; ; (; 5;A; U;c; |; ; ;; ; ;;; +;;<<&< 5<B<I< R<_<h<z<<<<<<<< <= += +== ,= +8=C=^={== == === = ==> > $>0>8>@>Q>a>{>>>>>>?-?F?6Y?9?=? @@ 2@<@M@]@ u@@@@@@@ @AAA.A AANA ^AkA}AA AAAAAAAA BB0B8B MB [BhBxBB +BBBBBB B B BBBCC +&C1CEC [C hCrCC C#CC C CCCC DD2DJDOD RD^DsDDDD+D(DE&/EVE +_EjE ~E EEE E EE E E(E F F#F2F +CF +NFYF hF rFF FFFFFFGG $G 1G +>GIGZGrG {GGGGG GG GGGG HH+H=H FHPH +aH lHzHH HHHH H HHAH =JKJOJ VJ bJ nJ|J!JJJJK#K"=K!`K&KK KK&L*L!JL(lL3L;L8M>MNMhM|MMMMM M MMNN &N0N +5N @N aNN NNN N NNNNNO +$O +/O +:OEOLOjOOO O O O OOOO PP)P^ V^ +d^o^ ^ ^ ^^$^ +^^^__ *_6_>_G_ X_d_v______ __ ``` +`(` 8`D`T`n````` `` `aaa1a +7a BaOaXaaaraaaaaaab(b@bWb;jb@bFb .cd4SZAzAXgIV{QwYc%c`!uG. U>g_N02NqT$9OsCZVCDtju,$;z*!`aJa+p-Dxl264}=:K " #K;<yXj 3 1|H + '8eJ + /01rEyHPBT_f[7/hiL]@"{ritL6F@[%n Mp| ?Owk\I#5~^:flhU95mebm<F+EdB^R\Yq)8]vW&bW-Q%d Procedures%s:(none)/Script-Fu/1 Procedure3D _Outline.../Script-Fu/Alchemy/Script-Fu/Alpha to Logo/Script-Fu/Animators/Script-Fu/Decor/Script-Fu/Render/Script-Fu/Selection/Script-Fu/Shadow/Script-Fu/Stencil Ops/Script-Fu/Utils/Help/The GIMP Online/Xtns/Script-Fu/Xtns/Script-Fu/Buttons/Xtns/Script-Fu/Logos/Xtns/Script-Fu/Make Brush/Xtns/Script-Fu/Misc/Xtns/Script-Fu/Patterns/Xtns/Script-Fu/Utils/Xtns/Script-Fu/Web Page Themes/Alien Glow/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/Xtns/Script-Fu/Web Page Themes/Classic.Gimp.OrgActive colorsAdd B_evel...Add _Border...Add backgroundAdd drop-shadowAdd glowingAdd shadowAdditional InformationAfter glowAirbrushAlien _Glow...Alien _Neon...Allow resizingAmplitudeAngleAntialiasApply generated layermaskApply layer mask (or discard)Author:AutocropAzimuthBG opacityB_asic II...B_urn-In...B_utton...Background ColorBackground ImageBackground colorBackground imageBar heightBar lengthBase colorBehaviourBevel height (Sharpness)Bevel height (sharpness)Bevel widthBlackBlack on whiteBlock sizeBlur XBlur YBlur amountBlur borderBlur horizontallyBlur radiusBlur typeBlur verticallyBo_vination...Border X sizeBorder Y sizeBorder colorBorder sizeBorder size (pixels)BrushBrush nameBumpmap (alpha layer) blur radiusBurn-In: Need two layers in total!C_arve-It...C_hrome-It...C_hrome...Carve raised textCarve white areasCarved...Cell size (pixels)Chalk colorChip Awa_y...Chip amountChrome balanceChrome factorChrome lightnessChrome saturationChrome white areasCircleClear unselected maskareaColorColor 1Color 2Color 3Color methodColumnsComic Boo_k...ConcaveCool _Metal...Copyright:Corona widthCreate new imageCreate shadowCreates four Guides around the bounding box of the current selection.Crystal...CubicCurrent CommandCustom GradientCustom _Gradient...Dark colorDarken only (Better, but only for images with alot of white)Date:Default bumpmap settingsDefocusDelta value on colorDensity (%)DepthDetail in MiddleDetail levelDiameterDirectionDownDraw _HSV Graph...Draws Spirographs, Epitrochoids and Lissajous Curves. More info at http://netword.com/*spyrogimpDrop shadowDrop shadow X offsetDrop shadow Y offsetDrop shadow blur radiusDrop shadow colorDrop shadow opacityEdge amountEdge behaviourEdge onlyEdge radiusEdge widthEffect size (pixels * 3)Effect size (pixels * 30)Effect size (pixels * 4)Effect size (pixels * 5)Effect size (pixels)ElevationElli_ptical, Feathered...End XEnd YEnd blendEnvironment mapEpitrochoidEraseErase/fillError while executing %s -%sEvenEven/oddFG-BG-HSVFG-BG-RGBFG-TransparentFade awayFade from %Fade to %FadeoutFeatheringFile nameFilenameFill BG with patternFill angleFill with BGFlatten imageFontFont _size (pixels)Font colorFont size (pixels)Foreground colorFrameFrame colorFrame sizeFramesFrom top-left to bottom-rightGIMP ExtensionGIMP Plug-InGlo_ssy...Glo_wing Hot...Glow colorGlow radiusGlow size (pixels * 4)GradientGradient reverseGradient: Loop SawtoothGradient: Loop TriangleGranularityGranularity (1 is Low)Granularity (1 is low)Graph scaleHeightHexagonHexagonsHighlight X offsetHighlight Y offsetHighlight balanceHighlight colorHighlight opacityHit rateHole ratioHorizontalIIRImage Types:Image heightImage sizeImage to carveImage widthImigre-26...Index imageIndex to n colors (0 = remain RGB)Inner teethInsert layer namesIntermediate framesInternal GIMP procedureInterpolationInvertInvert directionKeep backgroundKeep bump layerKeep selectionLand heightLeftLighting (degrees)Line _Nova...LinearLissajousLoopedLower colorLower color (active)Lower-right colorMake new backgroundMargin (pixels)Mask opacityMask sizeMax. blur radiusMosaic tile typeMottleN_eon...NameNew Guide (by _Percent)...New Guides from _SelectionNew _Guide...No background (only for separate layer)No matchesNoneNot pressedNot pressed (active)NumberNumber of X tilesNumber of Y tilesNumber of bandsNumber of colorsNumber of framesNumber of linesNumber of times to whirlOctagonsOddOffset (pixels)Offset XOffset YOffset radiusOffsets (pixels * 2)Oilify mask sizeOpacityOrientationOuter borderOuter teethOutline blur radiusOutline colorOutline gradient reverseOutline sizePad colorPad opacityPaddingPadding XPadding YPadding around textPadding for transparent regionsParametersPatternPattern (outline)Pattern (overlay)Pattern (text)Pattern namePencilPentagonPixel amountPixelizePlug-in _RegistryPolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPosition (in %)Prepare for GIFPressedProcedure BrowserQuarter sizeRLERadiusRadius (%)Radius (pixels)Random seedRandomnessRe_ctangular, Feathered...Relative distance of horizonRelative length of shadowRemove backgroundReturn ValuesRibbon spacingRibbon widthRightRippling strengthRoughnessRound ratioRounded R_ectangle...RowsRows/colsSIOD OutputScale XScale YScript ArgumentsScript ProgressScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Palette SelectionScript-Fu Server OptionsScript-Fu _ConsoleScript-Fu cannot process two scripts at the same time.Script-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSea depthSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSelect-by-color thresholdSeparate layerSepiaServer Logfile:Server Port:ShadowShadow X offsetShadow Y offsetShadow blur radiusShadow colorShadow darknessShadow depthShadow weight (%)ShapeSharpness (degrees)Shear lengthShow Image _Structure...Simple _Beveled Button...SizeSmearSmoothSmooth horizontallySmooth verticallySolid ColorSpace between layersSpacingSpeed (pixels/frame)Speed Text...Sphere colorSpots density XSpots density YSpreadSpyrographSquareSquaresStainsStart XStart YStart angleStart blendSupersampleT_ube Sub-Button Label...Temporary ProcedureTextText Circle...Text colorText color (active)Text gradient reverseText patternThicknessThread densityThread intensityThread lengthThreshold (bigger 1<-->255 smaller)TileTo _Brush...To _ImageTo _Pattern...ToolTransparent backgroundTriangleTub_e Sub-Sub-Button Label...Turn from left to rightTypeUpUpper colorUpper color (active)Upper-left colorUse current gradientUse font _name as textUse growing selectionUse pattern for outline instead of gradientUse pattern for text instead of gradientUse pattern overlayUse selection bounds instead of belowsVerticalWavelengthWeb Title Header...Whirl amountWhirl angleWidthWidth of bandsWidth of gapsWork on copyWrapX divisionsY divisionsYou are already running the "%s" script._ASCII to Image..._ASCII to Layer..._Arrow..._Basic I..._Big Header..._Border (pixels)_Browse..._Bullet..._Camouflage..._Chalk..._Clothify..._Coffee Stain..._Color scheme_Developer Web Site_Distress Selection..._Drop-Shadow..._Elliptical..._Erase every other Row..._Fade Outline..._Filter (regexp)_Flatland..._Font Map..._Frosty..._Fuzzy Border..._General Tube Labels..._Grid..._Hrule..._Labels_Land..._Lava..._Main Web Site_Old Photo..._Perspective..._Predator..._Rectangular..._Refresh Scripts_Remove all Guides_Rippling..._Round Button..._Round Corners..._Search:_Slide..._Small Header..._Sphere..._Spyrogimp..._Start Server..._Text_Textured..._Tileable Blur..._Tube Button Label..._Unsharp Mask..._Waves..._Weave..._Xach-Effect...Project-Id-Version: GIMP 2.0 +%sEvenEven/oddFG-BG-HSVFG-BG-RGBFG-TransparentFade awayFade from %Fade to %FadeoutFeatheringFile nameFilenameFill BG with patternFill angleFill with BGFlatten imageFontFont _size (pixels)Font colorFont size (pixels)Foreground colorFrameFrame colorFrame sizeFramesFrom top-left to bottom-rightGIMP ExtensionGIMP Plug-InGlo_ssy...Glo_wing Hot...Glow colorGlow radiusGlow size (pixels * 4)GradientGradient reverseGradient: Loop SawtoothGradient: Loop TriangleGranularityGranularity (1 is Low)Granularity (1 is low)Graph scaleHeightHexagonHexagonsHighlight X offsetHighlight Y offsetHighlight balanceHighlight colorHighlight opacityHit rateHole ratioHorizontalIIRImage Types:Image heightImage sizeImage to carveImage widthImigre-26...Index imageIndex to n colors (0 = remain RGB)Inner teethInsert layer namesIntermediate framesInternal GIMP procedureInterpolationInvertInvert directionKeep backgroundKeep bump layerKeep selectionLand heightLeftLighting (degrees)Line _Nova...LinearLissajousLoopedLower colorLower color (active)Lower-right colorMake new backgroundMargin (pixels)Mask opacityMask sizeMax. blur radiusMosaic tile typeMottleN_eon...NameNew Guide (by _Percent)...New Guides from _SelectionNew _Guide...No background (only for separate layer)No matchesNoneNot pressedNot pressed (active)NumberNumber of X tilesNumber of Y tilesNumber of bandsNumber of colorsNumber of framesNumber of linesNumber of times to whirlOctagonsOddOffset (pixels)Offset XOffset YOffset radiusOffsets (pixels * 2)Oilify mask sizeOpacityOrientationOuter borderOuter teethOutline blur radiusOutline colorOutline gradient reverseOutline sizePad colorPad opacityPaddingPadding XPadding YPadding around textPadding for transparent regionsParametersPatternPattern (outline)Pattern (overlay)Pattern (text)Pattern namePencilPentagonPixel amountPixelizePlug-in _RegistryPolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPosition (in %)Prepare for GIFPressedProcedure BrowserQuarter sizeRLERadiusRadius (%)Radius (pixels)Random seedRandomnessRe_ctangular, Feathered...Relative distance of horizonRelative length of shadowRemove backgroundReturn ValuesRibbon spacingRibbon widthRightRippling strengthRoughnessRound ratioRounded R_ectangle...RowsRows/colsSIOD OutputScale XScale YScript ArgumentsScript ProgressScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Palette SelectionScript-Fu Server OptionsScript-Fu _ConsoleScript-Fu cannot process two scripts at the same time.Script-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSea depthSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSelect-by-color thresholdSeparate layerSepiaServer Logfile:Server Port:ShadowShadow X offsetShadow Y offsetShadow blur radiusShadow colorShadow darknessShadow depthShadow weight (%)ShapeSharpness (degrees)Shear lengthShow Image _Structure...Simple _Beveled Button...SizeSmearSmoothSmooth horizontallySmooth verticallySolid ColorSpace between layersSpacingSpeed (pixels/frame)Speed Text...Sphere colorSpots density XSpots density YSpreadSpyrographSquareSquaresStainsStart XStart YStart angleStart blendSupersampleT_ube Sub-Button Label...Temporary ProcedureTextText Circle...Text colorText color (active)Text gradient reverseText patternThicknessThread densityThread intensityThread lengthThreshold (bigger 1<-->255 smaller)TileTo _Brush...To _ImageTo _Pattern...ToolTransparent backgroundTriangleTub_e Sub-Sub-Button Label...Turn from left to rightTypeUpUpper colorUpper color (active)Upper-left colorUse current gradientUse font _name as textUse growing selectionUse pattern for outline instead of gradientUse pattern for text instead of gradientUse pattern overlayUse selection bounds instead of belowsVerticalWavelengthWeb Title Header...Whirl amountWhirl angleWidthWidth of bandsWidth of gapsWork on copyWrapX divisionsY divisionsYou are already running the "%s" script._Arrow..._Basic I..._Big Header..._Border (pixels)_Browse..._Bullet..._Camouflage..._Chalk..._Clothify..._Coffee Stain..._Color scheme_Developer Web Site_Distress Selection..._Drop-Shadow..._Elliptical..._Erase every other Row..._Fade Outline..._Filter (regexp)_Flatland..._Font Map..._Frosty..._Fuzzy Border..._General Tube Labels..._Grid..._Hrule..._Labels_Land..._Lava..._Main Web Site_Old Photo..._Perspective..._Predator..._Rectangular..._Refresh Scripts_Remove all Guides_Rippling..._Round Button..._Round Corners..._Search:_Slide..._Small Header..._Sphere..._Spyrogimp..._Start Server..._Text_Textured..._Tileable Blur..._Tube Button Label..._Unsharp Mask..._Waves..._Weave..._Xach-Effect...Project-Id-Version: GIMP 2.0 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:48+0100 +POT-Creation-Date: 2004-12-28 15:42+0100 PO-Revision-Date: 2004-12-05 22:21+0100 Last-Translator: Tino Meinen Language-Team: Dutch MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit -%d procedures%s:(geen)/Script-Fu/1 procedure3D _omtrek.../Script-Fu/Alchemie/Script-Fu/Alpha naar logo/Script-Fu/Animators/Script-Fu/Decor/Script-Fu/Renderen/Script-Fu/Selectie/Script-Fu/Schaduw/Script-Fu/Stenciloperaties/Script-Fu/Hulpprogramma's/Hulp/De GIMP Online (Engels)/Xtra/Script-Fu/Xtra/Script-Fu/Knoppen/Xtra/Script-Fu/Logo's/Xtra/Script-Fu/Penseel maken/Xtra/Script-Fu/Overig/Xtra/Script-Fu/Patronen/Xtra/Script-Fu/Hulpprogramma's/Xtra/Script-Fu/Websitethema's/Alien-gloed/Xtra/Script-Fu/Websitethema's/Afgeschuind patroon/Xtra/Script-Fu/Websitethema's/Classic.Gimp.OrgActieve kleuren_Afschuining toevoegen..._Rand _toevoegen...Achtergrond toevoegenValshadow toevoegenGloed toevoegenSchaduw toevoegenAanvullende informatieNagloeienVerfspuitAlien _gloed...Alien _Neon...Herschalen toestaanAmplitudeHoekAnti-aliasGegenereerd laagmasker toepassenPas laagmasker toe (of gooi weg)Auteur:AutosnijdenAzimutAG-ondoorzichtigheidB_asis II..._Inbranden...K_nop...AchtergrondkleurAchtergrondafbeeldingAchtergrondkleurAchtergrondafbeeldingBalkhoogteBalklengteBasiskleurGedragAfschuiningshoogte (scherpte)Afschuiningshoogte (scherpte)AfschuiningsbreedteZwartZwart op witBlokgrootteVervaag XVervaag YHoeveelheid vervagingVervagingsrandHorizontaal vervagenVervagingsradiusVervagingstypeVerticaal vervagenVer_koeiing...Rand X-grootteRand Y-grootteRand kleurRandgrootteRandgrootte (pixels)PenseelPenseelnaamBufferhoeveelheid (% hoogte van tekst)Bumpmap (alphalaag) vervagingsradiusInbranden: heb in totaal twee lagen nodig!_Kerfen...Verc_hromen...C_hroom...Kerf verhoogde tekstKerf witte gebiedenGekerfd...Celgrootte (pixels)Krijtkleur_Uitgehakt...Te hakkenChroombalansChroomfactorChroomlichtheidChroomverzadigingChroom witte gebiedenCirkelNiet geselecteerd maskergebied wissenKleurKleur 1Kleur 2Kleur 3KleurmethodeKolommen_Stripboek...ConcaafKoud _metaal...Copyright:KransbreedteNieuwe afbeelding aanmakenSchaduw aanmakenMaakt vier hulplijnen rond de omhullende van de huidige selectie.K_ristal...KubischHuidige opdrachtEigen verloop_Eigen verloop...Donkere kleurAlleen donker maken +%d procedures%s:(geen)/Script-Fu/1 procedure3D _omtrek.../Script-Fu/Alchemie/Script-Fu/Alpha naar logo/Script-Fu/Animators/Script-Fu/Decor/Script-Fu/Renderen/Script-Fu/Selectie/Script-Fu/Schaduw/Script-Fu/Stenciloperaties/Script-Fu/Hulpprogramma's/Hulp/De GIMP Online (Engels)/Xtra/Script-Fu/Xtra/Script-Fu/Knoppen/Xtra/Script-Fu/Logo's/Xtra/Script-Fu/Penseel maken/Xtra/Script-Fu/Overig/Xtra/Script-Fu/Patronen/Xtra/Script-Fu/Hulpprogramma's/Xtra/Script-Fu/Websitethema's/Alien-gloed/Xtra/Script-Fu/Websitethema's/Afgeschuind patroon/Xtra/Script-Fu/Websitethema's/Classic.Gimp.OrgActieve kleuren_Afschuining toevoegen..._Rand _toevoegen...Achtergrond toevoegenValshadow toevoegenGloed toevoegenSchaduw toevoegenAanvullende informatieNagloeienVerfspuitAlien _gloed...Alien _Neon...Herschalen toestaanAmplitudeHoekAnti-aliasGegenereerd laagmasker toepassenPas laagmasker toe (of gooi weg)Auteur:AutosnijdenAzimutAG-ondoorzichtigheidB_asis II..._Inbranden...K_nop...AchtergrondkleurAchtergrondafbeeldingAchtergrondkleurAchtergrondafbeeldingBalkhoogteBalklengteBasiskleurGedragAfschuiningshoogte (scherpte)Afschuiningshoogte (scherpte)AfschuiningsbreedteZwartZwart op witBlokgrootteVervaag XVervaag YHoeveelheid vervagingVervagingsrandHorizontaal vervagenVervagingsradiusVervagingstypeVerticaal vervagenVer_koeiing...Rand X-grootteRand Y-grootteRand kleurRandgrootteRandgrootte (pixels)PenseelPenseelnaamBumpmap (alphalaag) vervagingsradiusInbranden: heb in totaal twee lagen nodig!_Kerfen...Verc_hromen...C_hroom...Kerf verhoogde tekstKerf witte gebiedenGekerfd...Celgrootte (pixels)Krijtkleur_Uitgehakt...Te hakkenChroombalansChroomfactorChroomlichtheidChroomverzadigingChroom witte gebiedenCirkelNiet geselecteerd maskergebied wissenKleurKleur 1Kleur 2Kleur 3KleurmethodeKolommen_Stripboek...ConcaafKoud _metaal...Copyright:KransbreedteNieuwe afbeelding aanmakenSchaduw aanmakenMaakt vier hulplijnen rond de omhullende van de huidige selectie.K_ristal...KubischHuidige opdrachtEigen verloop_Eigen verloop...Donkere kleurAlleen donker maken (Beter, maar alleen voor afbeeldingen met veel wit)Datum:Standaard bumpprojectieinstellingenOntfocusDeltawaarde op kleurDichtheid (%)DiepteDetail in middenDetailniveauDiameterRichtingOmlaagKVW-grafiek tekenen...Tekent spirografen, epitrochoids en Lissajous-krommen. Meer informatie op http://netword.com/*spyrogimpValschaduwX-verschuiving van valschaduwY-verschuiving van dropshadowVervagingsradius van valschaduwKleur van valschaduwOndoorzichtigheid van valschaduwRandgrootteRandgedragAlleen randRandradiusRandbreedteEffectgrootte (pixels * 3)Effectgrootte (pixels * 30)Effectgrootte (pixels * 4)Effectgrootte (pixels * 5)Effectgrootte (pixels)VerhogingElli_ptisch, vervaagd...Einde XEinde YEinde verloopOmgevingsprojectieEpitrochoidWissenWissen/vullenFout tijdens uitvoeren %s -%sEvenEven/onevenVG-AG-HSVVG-AG-RGBVG-transparantVervagenVervagen vanaf %Vervagen naar %UitvloeiVervagingBestandsnaamBestandsnaamVul AG met patroonVulhoekVullen met AGAfbeelding plettenFontLettertype_grootte (pixels)FontkleurFontgrootte (pixels)VoorgrondkleurFrameFramekleurFramegrootteFramesVan linksboven naar rechtsonderGIMP extensieGIMP Plug-InGlo_ssy...G_loeiend heet...GloeikleurGloeiradiusGloeigrootte (pixels * 4)VerloopOmgekeerd verloopVerloop: lus zaagtandVerloop: lus driehoekKorreligheidKorreligheid (1 is laag)Korreligheid (1 is laag)GrafiekschaalHoogteZeshoekZeshoekenX-verschuiving hoge lichtenY-verschuiving hoge lichtenHoge-lichtenbalansHoge-lichtenkleurOndoorzichtheid hoge lichtenHoeveelheid inslagenGatverhoudingHorizontaalIIRAfbeeldingstypen:AfbeeldingshoogteAfbeeldingsgrootteAfbeelding naar kervingAfbeeldingsbreedteImigre-26...IndexafbeeldingIndexeren naar n kleuren (0 = behoud RGB)Binnenste tandenLaagnamen invoegenTussenliggende framesInterne GIMP-procedureInterpolatieOmkerenDraai richting omAchtergrond behoudenBumplaag bewarenBewaar selectieLandhoogteLinksBelichting (graden)Nova _lijnen...LineairLissajousGelustLagere kleurLagere kleur (actief)Kleur rechtsonderNieuwe achtergrond makenMarge (pixels)MaskerondoorzichtigheidMaskergrootteMax. vervagingsradiusTegeltype v. mozaiekBevlekN_eon...NaamNieuwe hulplijn (per _percentage)...Nieuwe hulplijnen vanaf _selectieNieuwe _hulplijn...Geen achtergrond (enkel voor aparte laag)Geen overeenkomstenGeenNiet ingedruktNiet ingedrukt (actief)GetalAantal X-tegelsAantal Y-tegelsAantal bandenAantal kleurenAantal framesAantal lijnenAantal keren te draaienAchthoekenOnevenVerspringing (pixels)Verspringing XVerspringing YVerschuivingsradiusVerspringingen (pixels x 2Maskergrootte voor olieverfOndoorzichtigheidOriëntatieBuitenste grensBuitenste tandenVervagingsradius v. omtrekOmtrekkleurOmtrekverloop omgekeerdOmtrekgrootteOpvulkleurOpvulondoorzichtigheidOpvullingOpvulling XOpvulling YOpvulling rond tekstOpvulling voor transparante gebiedenParametersPatroonPatroon (omtrek)Patroon (bedekking)Patroon (tekst)PatroonnaamPotloodVijfhoekPixelhoeveelheidPixeliserenPlug-in _registerVeelhoek: 10 zijdenVeelhoek: 7 zijdenVeelhoek: 8 zijdenVeelhoek: 9 zijdenPositie (in %)Voor GIF voorbereidenIngedruktProcedureverkennerKwartgrootteRLERadiusRadius (%)Radius (pixels)StartwaardeWillekeurigheidRe_chthoekig, vervaagd...Relatieve afstand van horizonRelatieve lengte van schaduwAchtergrond verwijderenTeruggeefwaardesTussenruimte van lintLintbreedteRechtsRimpelkrachtRuwheidRondheidA_fgeronde rechthoek...RijenRijen/Kol.SIOD-uitvoerSchaal XSchaal YScriptargumentenScriptvoortgangScript-Fu-penseelselectieScript-Fu-kleurselectieScript-Fu ConsoleScript-Fu-bestandsselectieScript-Fu-mapselectieScript-Fu-fontselectieScript-Fu-verloopselectieScript-Fu-paletselectieScript-Fu ServeroptiesScript-Fu _ConsoleScript-Fu kan niet twee processen tegelijkertijd uitvoeren.Script-Fu-consolemodus staat alleen een interactieve aanroep toeScript-Fu-evaluatiemodus staat alleen een nietinteractieve aanroep toeScript-Fu: %sScript-Fu-patroonselectieZeediepteOp omschrijving zoekenOp naam zoekenZoeken - wacht a.u.b.Zoeken op omschrijving - wacht A.U.B.Zoeken op naam - wacht A.U.B.StartwaardeDrempel selecteer-op-kleurAparte laagSepiaServerlogbestand:Serverpoort:SchaduwSchaduw X-verschuivingSchaduw Y-verschuivingSchaduwvaagheidsomtrekSchaduwkleurSchaduwdonkerteSchaduwdiepteSchaduwgewicht (%)VormScherpte (graden)HellingslengteAfbeeldings_structuur tonen...Simpele _afgeschuinde knop...GrootteSmerenGladHorizontaal gladmakenVerticaal gladmakenVaste kleurRuimte tussen lagenSpatiëringSnelheid (pixels/frame)Snelle tekst...BolkleurVlekkendichtheid XVlekkendichtheid YSpreidingSpyrograafVierkantVierkantenVlekkenBegin XBegin YBeginhoekBegin verloopSupermonsterenB_uis, sub-knop label...Tijdelijke procedureTekstTekstcirkel...TekstkleurTekstkleur (actief)Tekstverloop omgekeerdTekstpatroonDikteDraaddichtheidDraadintensiteitDraadlengteDrempel (groter 1<-->255 kleiner)TegelNaar _penseel...Naar _afbeeldingNaar pa_troon...GereedschapTransparante achtergrondDriehoekBuis _sub-sub-knop label...Draai van links naar rechtsTypeOmhoogHogere kleurHogere kleur (actief)Kleur linksbovenGebruik huidig verloopGebruik font_naam als tekstGebruik uitdijende selectieGebruik patroon voor omtrek in plaats van verloopGebruik patroon voor tekst in plaats van verloopGebruik patroondeklaagGebruik selectiegrenzen in plaats van onderstaandeVerticaalGolflengteWebtitel kop...WervelhoeveelheidWervelhoekBreedteBreedte van bandenBreedte van tussenruimtesOp kopie werkenOmloopX-delenY-delenU voert het script "%s" al uit._ASCII naar afbeelding..._ASCII naar laag..._Pijl..._Basis I..._Grote kop..._Rand (pixel)_Verkennen..._Kogel..._Camouflage..._Krijt..._Textieldruk...Ko_ffievlek..._Kleurschema_OntwikkelaarswebsiteSelectie ver_ruwen..._Valschaduw..._Elliptisch..._Elke andere rij wissen..._Omtrek vervagen..._Filter (regexp)_Platland..._Lettertypes..._Bevroren..._Vage rand..._Algemene buislabels..._Raster..._Hrule..._Labels_Land..._Lava..._Hoofdwebsite_Oude foto..._Perspectief..._Predator..._Rechthoekig...S_cripts verversenAlle hulplijnen _verwijderen_Rimpelend..._Ronde knop..._Ronde hoeken..._Zoeken:_Dia..._Kleine kop..._Bol..._Spyrograaf..._Server opstarten..._Tekst_Textuur..._Naadloos vervagen..._Buisknop label..._Onscherp masker..._Golven..._Weven..._Xach-effect... \ No newline at end of file +%sEvenEven/onevenVG-AG-HSVVG-AG-RGBVG-transparantVervagenVervagen vanaf %Vervagen naar %UitvloeiVervagingBestandsnaamBestandsnaamVul AG met patroonVulhoekVullen met AGAfbeelding plettenFontLettertype_grootte (pixels)FontkleurFontgrootte (pixels)VoorgrondkleurFrameFramekleurFramegrootteFramesVan linksboven naar rechtsonderGIMP extensieGIMP Plug-InGlo_ssy...G_loeiend heet...GloeikleurGloeiradiusGloeigrootte (pixels * 4)VerloopOmgekeerd verloopVerloop: lus zaagtandVerloop: lus driehoekKorreligheidKorreligheid (1 is laag)Korreligheid (1 is laag)GrafiekschaalHoogteZeshoekZeshoekenX-verschuiving hoge lichtenY-verschuiving hoge lichtenHoge-lichtenbalansHoge-lichtenkleurOndoorzichtheid hoge lichtenHoeveelheid inslagenGatverhoudingHorizontaalIIRAfbeeldingstypen:AfbeeldingshoogteAfbeeldingsgrootteAfbeelding naar kervingAfbeeldingsbreedteImigre-26...IndexafbeeldingIndexeren naar n kleuren (0 = behoud RGB)Binnenste tandenLaagnamen invoegenTussenliggende framesInterne GIMP-procedureInterpolatieOmkerenDraai richting omAchtergrond behoudenBumplaag bewarenBewaar selectieLandhoogteLinksBelichting (graden)Nova _lijnen...LineairLissajousGelustLagere kleurLagere kleur (actief)Kleur rechtsonderNieuwe achtergrond makenMarge (pixels)MaskerondoorzichtigheidMaskergrootteMax. vervagingsradiusTegeltype v. mozaiekBevlekN_eon...NaamNieuwe hulplijn (per _percentage)...Nieuwe hulplijnen vanaf _selectieNieuwe _hulplijn...Geen achtergrond (enkel voor aparte laag)Geen overeenkomstenGeenNiet ingedruktNiet ingedrukt (actief)GetalAantal X-tegelsAantal Y-tegelsAantal bandenAantal kleurenAantal framesAantal lijnenAantal keren te draaienAchthoekenOnevenVerspringing (pixels)Verspringing XVerspringing YVerschuivingsradiusVerspringingen (pixels x 2Maskergrootte voor olieverfOndoorzichtigheidOriëntatieBuitenste grensBuitenste tandenVervagingsradius v. omtrekOmtrekkleurOmtrekverloop omgekeerdOmtrekgrootteOpvulkleurOpvulondoorzichtigheidOpvullingOpvulling XOpvulling YOpvulling rond tekstOpvulling voor transparante gebiedenParametersPatroonPatroon (omtrek)Patroon (bedekking)Patroon (tekst)PatroonnaamPotloodVijfhoekPixelhoeveelheidPixeliserenPlug-in _registerVeelhoek: 10 zijdenVeelhoek: 7 zijdenVeelhoek: 8 zijdenVeelhoek: 9 zijdenPositie (in %)Voor GIF voorbereidenIngedruktProcedureverkennerKwartgrootteRLERadiusRadius (%)Radius (pixels)StartwaardeWillekeurigheidRe_chthoekig, vervaagd...Relatieve afstand van horizonRelatieve lengte van schaduwAchtergrond verwijderenTeruggeefwaardesTussenruimte van lintLintbreedteRechtsRimpelkrachtRuwheidRondheidA_fgeronde rechthoek...RijenRijen/Kol.SIOD-uitvoerSchaal XSchaal YScriptargumentenScriptvoortgangScript-Fu-penseelselectieScript-Fu-kleurselectieScript-Fu ConsoleScript-Fu-bestandsselectieScript-Fu-mapselectieScript-Fu-fontselectieScript-Fu-verloopselectieScript-Fu-paletselectieScript-Fu ServeroptiesScript-Fu _ConsoleScript-Fu kan niet twee processen tegelijkertijd uitvoeren.Script-Fu-consolemodus staat alleen een interactieve aanroep toeScript-Fu-evaluatiemodus staat alleen een nietinteractieve aanroep toeScript-Fu: %sScript-Fu-patroonselectieZeediepteOp omschrijving zoekenOp naam zoekenZoeken - wacht a.u.b.Zoeken op omschrijving - wacht A.U.B.Zoeken op naam - wacht A.U.B.StartwaardeDrempel selecteer-op-kleurAparte laagSepiaServerlogbestand:Serverpoort:SchaduwSchaduw X-verschuivingSchaduw Y-verschuivingSchaduwvaagheidsomtrekSchaduwkleurSchaduwdonkerteSchaduwdiepteSchaduwgewicht (%)VormScherpte (graden)HellingslengteAfbeeldings_structuur tonen...Simpele _afgeschuinde knop...GrootteSmerenGladHorizontaal gladmakenVerticaal gladmakenVaste kleurRuimte tussen lagenSpatiëringSnelheid (pixels/frame)Snelle tekst...BolkleurVlekkendichtheid XVlekkendichtheid YSpreidingSpyrograafVierkantVierkantenVlekkenBegin XBegin YBeginhoekBegin verloopSupermonsterenB_uis, sub-knop label...Tijdelijke procedureTekstTekstcirkel...TekstkleurTekstkleur (actief)Tekstverloop omgekeerdTekstpatroonDikteDraaddichtheidDraadintensiteitDraadlengteDrempel (groter 1<-->255 kleiner)TegelNaar _penseel...Naar _afbeeldingNaar pa_troon...GereedschapTransparante achtergrondDriehoekBuis _sub-sub-knop label...Draai van links naar rechtsTypeOmhoogHogere kleurHogere kleur (actief)Kleur linksbovenGebruik huidig verloopGebruik font_naam als tekstGebruik uitdijende selectieGebruik patroon voor omtrek in plaats van verloopGebruik patroon voor tekst in plaats van verloopGebruik patroondeklaagGebruik selectiegrenzen in plaats van onderstaandeVerticaalGolflengteWebtitel kop...WervelhoeveelheidWervelhoekBreedteBreedte van bandenBreedte van tussenruimtesOp kopie werkenOmloopX-delenY-delenU voert het script "%s" al uit._Pijl..._Basis I..._Grote kop..._Rand (pixel)_Verkennen..._Kogel..._Camouflage..._Krijt..._Textieldruk...Ko_ffievlek..._Kleurschema_OntwikkelaarswebsiteSelectie ver_ruwen..._Valschaduw..._Elliptisch..._Elke andere rij wissen..._Omtrek vervagen..._Filter (regexp)_Platland..._Lettertypes..._Bevroren..._Vage rand..._Algemene buislabels..._Raster..._Hrule..._Labels_Land..._Lava..._Hoofdwebsite_Oude foto..._Perspectief..._Predator..._Rechthoekig...S_cripts verversenAlle hulplijnen _verwijderen_Rimpelend..._Ronde knop..._Ronde hoeken..._Zoeken:_Dia..._Kleine kop..._Bol..._Spyrograaf..._Server opstarten..._Tekst_Textuur..._Naadloos vervagen..._Buisknop label..._Onscherp masker..._Golven..._Weven..._Xach-effect... \ No newline at end of file diff -uraN gimp-2.2.0/po-script-fu/nl.po gimp-2.2.1/po-script-fu/nl.po --- gimp-2.2.0/po-script-fu/nl.po 2004-12-19 03:34:29.000000000 +0100 +++ gimp-2.2.1/po-script-fu/nl.po 2004-12-28 16:59:13.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: GIMP 2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:48+0100\n" +"POT-Creation-Date: 2004-12-28 15:42+0100\n" "PO-Revision-Date: 2004-12-05 22:21+0100\n" "Last-Translator: Tino Meinen \n" "Language-Team: Dutch \n" @@ -317,7 +317,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:5 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:4 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:6 -#: plug-ins/script-fu/scripts/asc2img.scm.h:8 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:4 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:5 #: plug-ins/script-fu/scripts/beveled-button.scm.h:3 @@ -358,7 +357,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:6 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:5 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:7 -#: plug-ins/script-fu/scripts/asc2img.scm.h:9 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:5 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:6 #: plug-ins/script-fu/scripts/beveled-button.scm.h:4 @@ -487,7 +485,6 @@ #: plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:2 #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:3 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:4 -#: plug-ins/script-fu/scripts/asc2img.scm.h:3 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:3 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:4 #: plug-ins/script-fu/scripts/blended-logo.scm.h:3 @@ -704,7 +701,6 @@ msgstr "Opvulling" #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:11 -#: plug-ins/script-fu/scripts/asc2img.scm.h:10 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:7 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:8 #: plug-ins/script-fu/scripts/beveled-button.scm.h:10 @@ -747,48 +743,6 @@ msgid "Width of gaps" msgstr "Breedte van tussenruimtes" -#: plug-ins/script-fu/scripts/asc2img.scm.h:1 -#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 -#: plug-ins/script-fu/scripts/image-structure.scm.h:1 -msgid "/Script-Fu/Utils" -msgstr "/Script-Fu/Hulpprogramma's" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:2 -#: plug-ins/script-fu/scripts/font-map.scm.h:1 -#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 -msgid "/Xtns/Script-Fu/Utils" -msgstr "/Xtra/Script-Fu/Hulpprogramma's" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:5 -#, no-c-format -msgid "Buffer amount (% height of text)" -msgstr "Bufferhoeveelheid (% hoogte van tekst)" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:6 -#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 -msgid "File name" -msgstr "Bestandsnaam" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:7 -#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 -msgid "Filename" -msgstr "Bestandsnaam" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:11 -#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 -#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 -#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 -msgid "Transparent background" -msgstr "Transparante achtergrond" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:12 -msgid "_ASCII to Image..." -msgstr "_ASCII naar afbeelding..." - -#: plug-ins/script-fu/scripts/asc2img.scm.h:13 -msgid "_ASCII to Layer..." -msgstr "_ASCII naar laag..." - #: plug-ins/script-fu/scripts/basic1-logo.scm.h:8 msgid "_Basic I..." msgstr "_Basis I..." @@ -838,6 +792,12 @@ msgid "Diameter" msgstr "Diameter" +#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 +#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 +#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 +msgid "Transparent background" +msgstr "Transparante achtergrond" + #: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:4 msgid "H_eading..." msgstr "" @@ -1441,6 +1401,11 @@ msgid "_Flatland..." msgstr "_Platland..." +#: plug-ins/script-fu/scripts/font-map.scm.h:1 +#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 +msgid "/Xtns/Script-Fu/Utils" +msgstr "/Xtra/Script-Fu/Hulpprogramma's" + #: plug-ins/script-fu/scripts/font-map.scm.h:2 msgid "Active colors" msgstr "Actieve kleuren" @@ -1715,6 +1680,11 @@ msgid "_Remove all Guides" msgstr "Alle hulplijnen _verwijderen" +#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 +#: plug-ins/script-fu/scripts/image-structure.scm.h:1 +msgid "/Script-Fu/Utils" +msgstr "/Script-Fu/Hulpprogramma's" + #: plug-ins/script-fu/scripts/hsv-graph.scm.h:2 msgid "BG opacity" msgstr "AG-ondoorzichtigheid" @@ -2093,6 +2063,10 @@ msgid "Brush name" msgstr "Penseelnaam" +#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 +msgid "File name" +msgstr "Bestandsnaam" + #: plug-ins/script-fu/scripts/select-to-brush.scm.h:5 msgid "To _Brush..." msgstr "Naar _penseel..." @@ -2101,6 +2075,10 @@ msgid "To _Image" msgstr "Naar _afbeelding" +#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 +msgid "Filename" +msgstr "Bestandsnaam" + #: plug-ins/script-fu/scripts/select-to-pattern.scm.h:3 msgid "Pattern name" msgstr "Patroonnaam" @@ -2565,6 +2543,15 @@ msgid "_Xach-Effect..." msgstr "_Xach-effect..." +#~ msgid "Buffer amount (% height of text)" +#~ msgstr "Bufferhoeveelheid (% hoogte van tekst)" + +#~ msgid "_ASCII to Image..." +#~ msgstr "_ASCII naar afbeelding..." + +#~ msgid "_ASCII to Layer..." +#~ msgstr "_ASCII naar laag..." + #~ msgid "Copy _Visible" #~ msgstr "_Zichbare kopiëren" diff -uraN gimp-2.2.0/po-script-fu/no.gmo gimp-2.2.1/po-script-fu/no.gmo --- gimp-2.2.0/po-script-fu/no.gmo 2004-12-19 03:34:33.000000000 +0100 +++ gimp-2.2.1/po-script-fu/no.gmo 2004-12-28 16:59:16.000000000 +0100 @@ -21,7 +21,7 @@ {   &+ /<C~6,8GyX$U(s#]9-ke:\HV /I.Z>1"3M?;@Wo_qilPc[&*xbKA T!fu na4)C{ 0N%t}2OmFRSQp <^rhdJv+wgz`DE Yj7BL'5|=%s:/Script-Fu/AmplitudeAngleAntialiasAuthor:AzimuthBackground ColorBackground ImageBehaviourBlackBlur XBlur YColorColor 1Color 2Color 3ColumnsCopyright:Current CommandCustom GradientDate:DefocusDensity (%)DepthDetail in MiddleDiameterDownElevationEnd XEnd YEraseEvenFG-BG-HSVFG-BG-RGBFG-TransparentFadeoutFeatheringFilenameFill with BGFontFramesGradientGranularityGranularity (1 is Low)HeightHexagonsIIRImage Types:InvertInvert directionLeftLighting (degrees)LoopedMottleNo matchesNumberOctagonsOddOffset (pixels)Offset XOffset YOffsets (pixels * 2)OpacityOrientationPaddingPadding XPadding YPatternPixelizePrepare for GIFPressedRLERadiusRadius (pixels)RandomnessRightRoughnessRowsSIOD OutputScale XScale YScript ArgumentsScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Server OptionsScript-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSepiaServer Logfile:Server Port:ShadowSharpness (degrees)SizeSmearSmoothSpacingSpeed (pixels/frame)Spots density XSpots density YSpreadSquaresStainsStart XStart YSupersampleTextThicknessTileUpWavelengthWidth_Search:Project-Id-Version: achtung 1.1.25 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:48+0100 +POT-Creation-Date: 2004-12-28 15:42+0100 PO-Revision-Date: 2003-01-26 17:18+0100 Last-Translator: Kjartan Maraas Language-Team: Norwegian diff -uraN gimp-2.2.0/po-script-fu/no.po gimp-2.2.1/po-script-fu/no.po --- gimp-2.2.0/po-script-fu/no.po 2004-12-19 03:34:29.000000000 +0100 +++ gimp-2.2.1/po-script-fu/no.po 2004-12-28 16:59:13.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: achtung 1.1.25\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:48+0100\n" +"POT-Creation-Date: 2004-12-28 15:42+0100\n" "PO-Revision-Date: 2003-01-26 17:18+0100\n" "Last-Translator: Kjartan Maraas \n" "Language-Team: Norwegian \n" @@ -326,7 +326,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:5 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:4 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:6 -#: plug-ins/script-fu/scripts/asc2img.scm.h:8 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:4 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:5 #: plug-ins/script-fu/scripts/beveled-button.scm.h:3 @@ -367,7 +366,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:6 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:5 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:7 -#: plug-ins/script-fu/scripts/asc2img.scm.h:9 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:5 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:6 #: plug-ins/script-fu/scripts/beveled-button.scm.h:4 @@ -501,7 +499,6 @@ #: plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:2 #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:3 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:4 -#: plug-ins/script-fu/scripts/asc2img.scm.h:3 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:3 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:4 #: plug-ins/script-fu/scripts/blended-logo.scm.h:3 @@ -737,7 +734,6 @@ msgstr "Fyll" #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:11 -#: plug-ins/script-fu/scripts/asc2img.scm.h:10 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:7 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:8 #: plug-ins/script-fu/scripts/beveled-button.scm.h:10 @@ -786,53 +782,6 @@ msgid "Width of gaps" msgstr "Bredde for mellomrom" -#: plug-ins/script-fu/scripts/asc2img.scm.h:1 -#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 -#: plug-ins/script-fu/scripts/image-structure.scm.h:1 -#, fuzzy -msgid "/Script-Fu/Utils" -msgstr "/Script-Fu/Verktøy/ASCII til bildelag..." - -#: plug-ins/script-fu/scripts/asc2img.scm.h:2 -#: plug-ins/script-fu/scripts/font-map.scm.h:1 -#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 -#, fuzzy -msgid "/Xtns/Script-Fu/Utils" -msgstr "/Utvd/Script-Fu/Logoer/Neon..." - -#: plug-ins/script-fu/scripts/asc2img.scm.h:5 -#, fuzzy, no-c-format -msgid "Buffer amount (% height of text)" -msgstr "Buffermengde (% høyde av tekst)" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:6 -#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 -#, fuzzy -msgid "File name" -msgstr "Filnavn" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:7 -#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 -msgid "Filename" -msgstr "Filnavn" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:11 -#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 -#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 -#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 -#, fuzzy -msgid "Transparent background" -msgstr "Gjennomsiktig bakgrunn" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:12 -msgid "_ASCII to Image..." -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:13 -#, fuzzy -msgid "_ASCII to Layer..." -msgstr "/Script-Fu/Verktøy/ASCII til bildelag..." - #: plug-ins/script-fu/scripts/basic1-logo.scm.h:8 msgid "_Basic I..." msgstr "" @@ -888,6 +837,13 @@ msgid "Diameter" msgstr "Diameter" +#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 +#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 +#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 +#, fuzzy +msgid "Transparent background" +msgstr "Gjennomsiktig bakgrunn" + #: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:4 msgid "H_eading..." msgstr "" @@ -1546,6 +1502,12 @@ msgid "_Flatland..." msgstr "" +#: plug-ins/script-fu/scripts/font-map.scm.h:1 +#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 +#, fuzzy +msgid "/Xtns/Script-Fu/Utils" +msgstr "/Utvd/Script-Fu/Logoer/Neon..." + #: plug-ins/script-fu/scripts/font-map.scm.h:2 #, fuzzy msgid "Active colors" @@ -1850,6 +1812,12 @@ msgid "_Remove all Guides" msgstr "" +#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 +#: plug-ins/script-fu/scripts/image-structure.scm.h:1 +#, fuzzy +msgid "/Script-Fu/Utils" +msgstr "/Script-Fu/Verktøy/ASCII til bildelag..." + #: plug-ins/script-fu/scripts/hsv-graph.scm.h:2 #, fuzzy msgid "BG opacity" @@ -2272,6 +2240,11 @@ msgid "Brush name" msgstr "Bruk kost" +#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 +#, fuzzy +msgid "File name" +msgstr "Filnavn" + #: plug-ins/script-fu/scripts/select-to-brush.scm.h:5 #, fuzzy msgid "To _Brush..." @@ -2281,6 +2254,10 @@ msgid "To _Image" msgstr "" +#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 +msgid "Filename" +msgstr "Filnavn" + #: plug-ins/script-fu/scripts/select-to-pattern.scm.h:3 #, fuzzy msgid "Pattern name" @@ -2803,6 +2780,14 @@ msgstr "" #, fuzzy +#~ msgid "Buffer amount (% height of text)" +#~ msgstr "Buffermengde (% høyde av tekst)" + +#, fuzzy +#~ msgid "_ASCII to Layer..." +#~ msgstr "/Script-Fu/Verktøy/ASCII til bildelag..." + +#, fuzzy #~ msgid "/Xtns/Script-Fu/_Refresh Scripts" #~ msgstr "/Utvidelser/Script-Fu/Gjenoppfrisk" diff -uraN gimp-2.2.0/po-script-fu/pa.gmo gimp-2.2.1/po-script-fu/pa.gmo --- gimp-2.2.0/po-script-fu/pa.gmo 2004-12-19 03:34:33.000000000 +0100 +++ gimp-2.2.1/po-script-fu/pa.gmo 2004-12-28 16:59:16.000000000 +0100 @@ -12,7 +12,7 @@ %s %sEvenFG-BG-HSVFG-BG-RGBFG-TransparentFadeoutFeatheringFilenameFill with BGFontFrameFramesGradientGradient: Loop SawtoothGradient: Loop TriangleGranularityGranularity (1 is Low)HeightHexagonHexagonsIIRImage Types:InvertInvert directionLeftLighting (degrees)LissajousLoopedMargin (pixels)MottleNo matchesNumberOctagonsOddOffset (pixels)Offset XOffset YOffsets (pixels * 2)OpacityOrientationPaddingPadding XPadding YPatternPencilPentagonPixelizePolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPrepare for GIFPressedRLERadiusRadius (pixels)RandomnessRightRoughnessRowsSIOD OutputScale XScale YScript ArgumentsScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Server OptionsScript-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSepiaServer Logfile:Server Port:ShadowShapeSharpness (degrees)SizeSmearSmoothSolid ColorSpacingSpeed (pixels/frame)Spots density XSpots density YSpreadSpyrographSquareSquaresStainsStart XStart YSupersampleTextThicknessTileToolTriangleTypeUpWavelengthWidthWrap_Border (pixels)_Filter (regexp)_Labels_Search:_TextProject-Id-Version: gimp-script-fu Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:48+0100 +POT-Creation-Date: 2004-12-28 15:42+0100 PO-Revision-Date: 2004-08-23 20:22+0530 Last-Translator: Amanpreet Singh Alam Language-Team: Punjabi diff -uraN gimp-2.2.0/po-script-fu/pa.po gimp-2.2.1/po-script-fu/pa.po --- gimp-2.2.0/po-script-fu/pa.po 2004-12-19 03:34:29.000000000 +0100 +++ gimp-2.2.1/po-script-fu/pa.po 2004-12-28 16:59:13.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: gimp-script-fu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:48+0100\n" +"POT-Creation-Date: 2004-12-28 15:42+0100\n" "PO-Revision-Date: 2004-08-23 20:22+0530\n" "Last-Translator: Amanpreet Singh Alam \n" "Language-Team: Punjabi \n" @@ -331,7 +331,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:5 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:4 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:6 -#: plug-ins/script-fu/scripts/asc2img.scm.h:8 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:4 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:5 #: plug-ins/script-fu/scripts/beveled-button.scm.h:3 @@ -372,7 +371,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:6 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:5 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:7 -#: plug-ins/script-fu/scripts/asc2img.scm.h:9 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:5 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:6 #: plug-ins/script-fu/scripts/beveled-button.scm.h:4 @@ -506,7 +504,6 @@ #: plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:2 #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:3 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:4 -#: plug-ins/script-fu/scripts/asc2img.scm.h:3 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:3 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:4 #: plug-ins/script-fu/scripts/blended-logo.scm.h:3 @@ -741,7 +738,6 @@ msgstr "ਚਿਣਿਆ" #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:11 -#: plug-ins/script-fu/scripts/asc2img.scm.h:10 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:7 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:8 #: plug-ins/script-fu/scripts/beveled-button.scm.h:10 @@ -790,53 +786,6 @@ msgid "Width of gaps" msgstr "ਖਾਲੀ ਥਾਂ ਦੀ ਚੌਡ਼ਾਈ" -#: plug-ins/script-fu/scripts/asc2img.scm.h:1 -#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 -#: plug-ins/script-fu/scripts/image-structure.scm.h:1 -#, fuzzy -msgid "/Script-Fu/Utils" -msgstr "/ਸਕਰਿਪਟ-Fu/ਵਰਤੋ/_ASCII ਤੋਂ ਪਰਤ..." - -#: plug-ins/script-fu/scripts/asc2img.scm.h:2 -#: plug-ins/script-fu/scripts/font-map.scm.h:1 -#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 -#, fuzzy -msgid "/Xtns/Script-Fu/Utils" -msgstr "/Xtns/ਸਕਰਿਪਟ-Fu/ਲੋਗੋ/ਨੀਆਨ..." - -#: plug-ins/script-fu/scripts/asc2img.scm.h:5 -#, fuzzy, no-c-format -msgid "Buffer amount (% height of text)" -msgstr "ਬਫਰ ਮੁੱਲ (ਪਾਠ ਦੀ ਉਚਾਈ% )" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:6 -#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 -#, fuzzy -msgid "File name" -msgstr "ਫਾਇਲ ਨਾਂ" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:7 -#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 -msgid "Filename" -msgstr "ਫਾਇਲ ਨਾਂ" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:11 -#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 -#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 -#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 -#, fuzzy -msgid "Transparent background" -msgstr "ਪਾਰਦਰਸ਼ੀ ਪਿੱਠਭੂਮੀ" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:12 -msgid "_ASCII to Image..." -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:13 -#, fuzzy -msgid "_ASCII to Layer..." -msgstr "/ਸਕਰਿਪਟ-Fu/ਵਰਤੋ/_ASCII ਤੋਂ ਪਰਤ..." - #: plug-ins/script-fu/scripts/basic1-logo.scm.h:8 msgid "_Basic I..." msgstr "" @@ -892,6 +841,13 @@ msgid "Diameter" msgstr "ਵਿਆਸ" +#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 +#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 +#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 +#, fuzzy +msgid "Transparent background" +msgstr "ਪਾਰਦਰਸ਼ੀ ਪਿੱਠਭੂਮੀ" + #: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:4 msgid "H_eading..." msgstr "" @@ -1550,6 +1506,12 @@ msgid "_Flatland..." msgstr "" +#: plug-ins/script-fu/scripts/font-map.scm.h:1 +#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 +#, fuzzy +msgid "/Xtns/Script-Fu/Utils" +msgstr "/Xtns/ਸਕਰਿਪਟ-Fu/ਲੋਗੋ/ਨੀਆਨ..." + #: plug-ins/script-fu/scripts/font-map.scm.h:2 #, fuzzy msgid "Active colors" @@ -1856,6 +1818,12 @@ msgid "_Remove all Guides" msgstr "" +#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 +#: plug-ins/script-fu/scripts/image-structure.scm.h:1 +#, fuzzy +msgid "/Script-Fu/Utils" +msgstr "/ਸਕਰਿਪਟ-Fu/ਵਰਤੋ/_ASCII ਤੋਂ ਪਰਤ..." + #: plug-ins/script-fu/scripts/hsv-graph.scm.h:2 #, fuzzy msgid "BG opacity" @@ -2277,6 +2245,11 @@ msgid "Brush name" msgstr "ਬੁਰਸ਼ ਨਾਂ" +#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 +#, fuzzy +msgid "File name" +msgstr "ਫਾਇਲ ਨਾਂ" + #: plug-ins/script-fu/scripts/select-to-brush.scm.h:5 #, fuzzy msgid "To _Brush..." @@ -2286,6 +2259,10 @@ msgid "To _Image" msgstr "" +#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 +msgid "Filename" +msgstr "ਫਾਇਲ ਨਾਂ" + #: plug-ins/script-fu/scripts/select-to-pattern.scm.h:3 #, fuzzy msgid "Pattern name" @@ -2800,6 +2777,14 @@ msgid "_Xach-Effect..." msgstr "" +#, fuzzy +#~ msgid "Buffer amount (% height of text)" +#~ msgstr "ਬਫਰ ਮੁੱਲ (ਪਾਠ ਦੀ ਉਚਾਈ% )" + +#, fuzzy +#~ msgid "_ASCII to Layer..." +#~ msgstr "/ਸਕਰਿਪਟ-Fu/ਵਰਤੋ/_ASCII ਤੋਂ ਪਰਤ..." + #~ msgid "/Xtns/Script-Fu/_Refresh Scripts" #~ msgstr "/Xtns/ਸਕਰਿਪਟ-Fu/ਮੁਡ਼ ਲੋਡ ਕਰੋ ਸਕਰਿਪਟ" diff -uraN gimp-2.2.0/po-script-fu/pl.gmo gimp-2.2.1/po-script-fu/pl.gmo --- gimp-2.2.0/po-script-fu/pl.gmo 2004-12-19 03:34:33.000000000 +0100 +++ gimp-2.2.1/po-script-fu/pl.gmo 2004-12-28 16:59:16.000000000 +0100 @@ -26,7 +26,7 @@ %s %sEvenFG-BG-HSVFG-BG-RGBFG-TransparentFadeoutFeatheringFilenameFill with BGFontFrameFramesGradientGradient: Loop SawtoothGradient: Loop TriangleGranularityGranularity (1 is Low)HeightHexagonHexagonsIIRImage Types:InvertInvert directionLeftLighting (degrees)LissajousLoopedMargin (pixels)MottleNo matchesNumberOctagonsOddOffset (pixels)Offset XOffset YOffsets (pixels * 2)OpacityOrientationPaddingPadding XPadding YPatternPencilPentagonPixelizePolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPrepare for GIFPressedRLERadiusRadius (pixels)RandomnessRightRoughnessRowsSIOD OutputScale XScale YScript ArgumentsScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Server OptionsScript-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSepiaServer Logfile:Server Port:ShadowShapeSharpness (degrees)SizeSmearSmoothSolid ColorSpacingSpeed (pixels/frame)Spots density XSpots density YSpreadSpyrographSquareSquaresStainsStart XStart YSupersampleTextThicknessTileToolTriangleTypeUpWavelengthWidthWrap_Border (pixels)_Filter (regexp)_Labels_Search:_TextProject-Id-Version: gimp-script-fu Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:48+0100 +POT-Creation-Date: 2004-12-28 15:42+0100 PO-Revision-Date: 2004-01-22 10:37+0100 Last-Translator: GNOME PL Team Language-Team: Polish diff -uraN gimp-2.2.0/po-script-fu/pl.po gimp-2.2.1/po-script-fu/pl.po --- gimp-2.2.0/po-script-fu/pl.po 2004-12-19 03:34:29.000000000 +0100 +++ gimp-2.2.1/po-script-fu/pl.po 2004-12-28 16:59:13.000000000 +0100 @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: gimp-script-fu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:48+0100\n" +"POT-Creation-Date: 2004-12-28 15:42+0100\n" "PO-Revision-Date: 2004-01-22 10:37+0100\n" "Last-Translator: GNOME PL Team \n" "Language-Team: Polish \n" @@ -334,7 +334,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:5 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:4 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:6 -#: plug-ins/script-fu/scripts/asc2img.scm.h:8 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:4 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:5 #: plug-ins/script-fu/scripts/beveled-button.scm.h:3 @@ -375,7 +374,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:6 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:5 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:7 -#: plug-ins/script-fu/scripts/asc2img.scm.h:9 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:5 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:6 #: plug-ins/script-fu/scripts/beveled-button.scm.h:4 @@ -509,7 +507,6 @@ #: plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:2 #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:3 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:4 -#: plug-ins/script-fu/scripts/asc2img.scm.h:3 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:3 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:4 #: plug-ins/script-fu/scripts/blended-logo.scm.h:3 @@ -747,7 +744,6 @@ msgstr "Wyściółka" #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:11 -#: plug-ins/script-fu/scripts/asc2img.scm.h:10 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:7 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:8 #: plug-ins/script-fu/scripts/beveled-button.scm.h:10 @@ -796,53 +792,6 @@ msgid "Width of gaps" msgstr "Szerokość przerw" -#: plug-ins/script-fu/scripts/asc2img.scm.h:1 -#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 -#: plug-ins/script-fu/scripts/image-structure.scm.h:1 -#, fuzzy -msgid "/Script-Fu/Utils" -msgstr "/Script-Fu/Narzędzia/_Tekst ASCII do warstwy..." - -#: plug-ins/script-fu/scripts/asc2img.scm.h:2 -#: plug-ins/script-fu/scripts/font-map.scm.h:1 -#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 -#, fuzzy -msgid "/Xtns/Script-Fu/Utils" -msgstr "/Dodatki/Script-Fu/Loga/Ne_on..." - -#: plug-ins/script-fu/scripts/asc2img.scm.h:5 -#, fuzzy, no-c-format -msgid "Buffer amount (% height of text)" -msgstr "Rozmiar bufora (% wysokości tekstu)" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:6 -#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 -#, fuzzy -msgid "File name" -msgstr "Nazwa pliku" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:7 -#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 -msgid "Filename" -msgstr "Nazwa pliku" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:11 -#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 -#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 -#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 -#, fuzzy -msgid "Transparent background" -msgstr "Przezroczyste tło" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:12 -msgid "_ASCII to Image..." -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:13 -#, fuzzy -msgid "_ASCII to Layer..." -msgstr "/Script-Fu/Narzędzia/_Tekst ASCII do warstwy..." - #: plug-ins/script-fu/scripts/basic1-logo.scm.h:8 msgid "_Basic I..." msgstr "" @@ -898,6 +847,13 @@ msgid "Diameter" msgstr "Średnica" +#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 +#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 +#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 +#, fuzzy +msgid "Transparent background" +msgstr "Przezroczyste tło" + #: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:4 msgid "H_eading..." msgstr "" @@ -1556,6 +1512,12 @@ msgid "_Flatland..." msgstr "" +#: plug-ins/script-fu/scripts/font-map.scm.h:1 +#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 +#, fuzzy +msgid "/Xtns/Script-Fu/Utils" +msgstr "/Dodatki/Script-Fu/Loga/Ne_on..." + #: plug-ins/script-fu/scripts/font-map.scm.h:2 #, fuzzy msgid "Active colors" @@ -1863,6 +1825,12 @@ msgid "_Remove all Guides" msgstr "" +#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 +#: plug-ins/script-fu/scripts/image-structure.scm.h:1 +#, fuzzy +msgid "/Script-Fu/Utils" +msgstr "/Script-Fu/Narzędzia/_Tekst ASCII do warstwy..." + #: plug-ins/script-fu/scripts/hsv-graph.scm.h:2 #, fuzzy msgid "BG opacity" @@ -2284,6 +2252,11 @@ msgid "Brush name" msgstr "Nazwa pędzla" +#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 +#, fuzzy +msgid "File name" +msgstr "Nazwa pliku" + #: plug-ins/script-fu/scripts/select-to-brush.scm.h:5 #, fuzzy msgid "To _Brush..." @@ -2293,6 +2266,10 @@ msgid "To _Image" msgstr "" +#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 +msgid "Filename" +msgstr "Nazwa pliku" + #: plug-ins/script-fu/scripts/select-to-pattern.scm.h:3 #, fuzzy msgid "Pattern name" @@ -2807,6 +2784,14 @@ msgid "_Xach-Effect..." msgstr "" +#, fuzzy +#~ msgid "Buffer amount (% height of text)" +#~ msgstr "Rozmiar bufora (% wysokości tekstu)" + +#, fuzzy +#~ msgid "_ASCII to Layer..." +#~ msgstr "/Script-Fu/Narzędzia/_Tekst ASCII do warstwy..." + #~ msgid "/Xtns/Script-Fu/_Refresh Scripts" #~ msgstr "/Dodatki/Script-Fu/_Odśwież skrypty" diff -uraN gimp-2.2.0/po-script-fu/POTFILES.in gimp-2.2.1/po-script-fu/POTFILES.in --- gimp-2.2.0/po-script-fu/POTFILES.in 2004-10-13 15:03:29.000000000 +0200 +++ gimp-2.2.1/po-script-fu/POTFILES.in 2004-12-27 20:42:17.000000000 +0100 @@ -20,7 +20,6 @@ plug-ins/script-fu/scripts/alien-glow-button.scm plug-ins/script-fu/scripts/alien-glow-logo.scm plug-ins/script-fu/scripts/alien-neon-logo.scm -plug-ins/script-fu/scripts/asc2img.scm plug-ins/script-fu/scripts/basic1-logo.scm plug-ins/script-fu/scripts/basic2-logo.scm plug-ins/script-fu/scripts/beveled-button.scm diff -uraN gimp-2.2.0/po-script-fu/pt_BR.gmo gimp-2.2.1/po-script-fu/pt_BR.gmo --- gimp-2.2.0/po-script-fu/pt_BR.gmo 2004-12-19 03:34:33.000000000 +0100 +++ gimp-2.2.1/po-script-fu/pt_BR.gmo 2004-12-28 16:59:16.000000000 +0100 @@ -1,72 +1,68 @@ - | + +++ + +,, ,:,Z,v,,,,,,-1- J-k-#--!--3 .8A.9z. . .... . - -// -,/7/@/O/^/ m/w/ }////// -/ / / -/00)0:0 -K0 -V0 -a0 l0v00 000 0001 -1 -%10171 >1 J1V1 h1 t1~11 1 1 1 111 -1 1!2";2 ^2 j2 w2 -222 22 2 2 22 33%373J3 Q3^3x3~333 33333 -3 33 3E4 -N4Y4_4o44 -4<44445 5#5)5 :5G5 P5Z5_5`r5 555 6!636 G6S6 b6 l6 -x666666 67!7'7 -7 77D7 T7`7 -f7q777 7 77 7 7 77 7 -7 8 88 -)8 48 A8O8T8 -h8s888 8 -8888 8 -89 -9 9'9>9G9Z9k99 999 9 9999::+:=:M:_: -h: -s:~: : : -:: : : :": : -;;1; I;W;^;o;;; ;;; ;; ;; ;; <</< ?< L<V<g<x<<<<< <<'< - == ='=<=C=U=g=w========= ==>%> -> 9> F>R> f>t> > > >> > >>> -? ??%?7? F?S?Z? c?p?y????????? -@@@ -"@-@ =@ -I@T@o@@@@ @@ @@@ A AA5A :A DAPA_AgAoAAAAAAA -B#B@B\BuB6B9B=B 7CEC aCkC|CC CCCCDDD )D6D=DMD]D pD}D DDDD DDDE EEE,E >EJE_EgE |E EEEE -EEE EE EEF F F#F 2F>F MFYFsFFF -FFF F FFF G#G9G >G KGUGdGiGGGGGG GGGGH%H+;H(gHH&HH -HH H I II !I /IZ"OZ"rZ#ZZZZ[ ['[7[H[g[[[[ -[[\ \ \!\2\ -C\N\U\f\~\ -\\\\\\\ \\ ]]%]5]Q]j]]]] ]] ]]]^^(^H^Z^ j^x^ ^^^^^^#^_ <_J_e__ __ _ -____ ``/`?` -O`Z`^`p```` ``*`aa-aEabaqaza aaaaaaab b!b )b6bKbcbtbbbbbbbb5b"-c Pc^c'scccccccdd)d:dMd_d -qd|dddddd&d e e $e2eBe^eneeeeeeee)f =fIfQfdfxfff -ff ffffgg,g=g Og[gvgggg gggg gh 1h?hNhahyhhhhhhhh hi i i'ishs~ss ssss s ss -t tt2tFtWtttt tttttuu&u BuLu bu luvuuuuu uuuu v$v;v -Qv \vfv -}vv vv vvvvvw .w 8wEwc6Hh4W?ds>n" bf2,.(B-^y *gh /3P$izA` 0gx Mqb`kv81=7-? [@u'|zLkH@D: JBS*Nf5GcKZ. 8 - LG)<A:CoT3m5&4]$Rw="xY~!+&VT1i uj9S}N^ePr #|RvwUIJ{Q!F762 aopqrsDY~[I+dOMnElZtOmKE/\{>j%<eX%(Q# -,;X)}lWtFap'9_;0C]_y\V -U%d Procedures%s:(none)/Script-Fu/1 Procedure3D _Outline...3_D Truchet.../Script-Fu/Alchemy/Script-Fu/Alpha to Logo/Script-Fu/Animators/Script-Fu/Decor/Script-Fu/Render/Script-Fu/Selection/Script-Fu/Shadow/Script-Fu/Stencil Ops/Script-Fu/Utils/Help/The GIMP Online/Xtns/Script-Fu/Xtns/Script-Fu/Buttons/Xtns/Script-Fu/Logos/Xtns/Script-Fu/Make Brush/Xtns/Script-Fu/Misc/Xtns/Script-Fu/Patterns/Xtns/Script-Fu/Utils/Xtns/Script-Fu/Web Page Themes/Alien Glow/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/Xtns/Script-Fu/Web Page Themes/Classic.Gimp.OrgActive colorsAdd B_evel...Add _Border...Add backgroundAdd drop-shadowAdd glowingAdd shadowAdditional InformationAfter glowAirbrushAlien _Glow...Alien _Neon...Allow resizingAmplitudeAngleAntialiasApply generated layermaskApply layer mask (or discard)Author:AutocropAzimuthBG opacityB_asic II...B_urn-In...B_utton...Background ColorBackground ImageBackground colorBackground imageBar heightBar lengthBase colorBehaviourBevel height (Sharpness)Bevel height (sharpness)Bevel widthBlackBlack on whiteBlen_ded...Blend gradient (Text)Blend gradient (outline)Blend gradient (text)Blend modeBlock sizeBlur XBlur YBlur amountBlur borderBlur horizontallyBlur radiusBlur typeBlur verticallyBo_vination...Border X sizeBorder Y sizeBorder colorBorder sizeBorder size (pixels)BrushBrush nameBuffer amount (% height of text)Bumpmap (alpha layer) blur radiusBurn-In: Need two layers in total!Burst colorC_arve-It...C_hrome-It...C_hrome...Carve raised textCarve white areasCarved...Cell size (pixels)Chalk colorChip Awa_y...Chip amountChrome balanceChrome factorChrome lightnessChrome saturationChrome white areasCircleCircuit seedClear unselected maskareaColorColor 1Color 2Color 3Color methodColumnsComic Boo_k...ConcaveCool _Metal...Copyright:Corona widthCreate new imageCreate shadowCreates four Guides around the bounding box of the current selection.Crystal...CubicCurrent CommandCustom GradientCustom _Gradient...Dark colorDarken only + d + +++ + ++++ +,*,F,^,w,,,,,- -;-#Z-~-!--3-8.9J. . .... . +.. +.///./ =/G/ M/W/q//// +/ / / +//// +0 +0 +&0 +10 <0F0_0 x000 0000 +0 +011 1 1&1 81 D1N1^1 m1 {1 1 111 +1!1"1 2 2 &2 +42?2Q2 c2m2 2 2 22 22222 3 3'3-353=3 E3R3Z3i3q3 +3 33 3E3 +3444.4 +B4<M44444 444 44 4 55`!5 555555 56 6 6 +'626K6e6~66 6666 6 66 77 +7 7<7A7 J7 T7^7 m7 w7 77 7 +7 777 +7 7 778 +8"858F8 L8 +X8c8j88 8 +88 +8 8888 9929 J9V9m9 9 999999999: +: +":-: 1: >: +K:V: e: q: ~:": :::: :; ;;.;>; M;Y;^; q;; ;; ;;;;; ; ;<<'<.<7<<<W< r<<'< +<< <<<<==&=7=H=X=q=z=~=== ==== = = => >#> <> I> S>_> g> q>{>> +>>>>> >? ? ??(?:?L?]?n????? ??? +?? ? +?@@;@U@g@ v@@ @@@ @ @@@ @ @@AAA/A?AYAsAAAAAA B$B67B9nB=B BB CC+C;C SCtCCCCCC CCCC D D,D VTViVVV)VVVVVVVVW W +W(W:W LWFYW +WW WWW +WCWAX)GXqX"zX X XXX X X +XXYY"Y"Y#YZ.ZLZ`Z wZZZZZZ["[ +=[H[`[h[ p[~[[ +[[[[[ +[[[ \ \)\8\ I\S\j\r\\\\\\\\ ]!] ;]I]P]`]t](|]]] ]] ]]^$^-^D^#U^y^ ^^^^ ^^ _ + __3_N_f_v___ +______` `'`*7`b`r`````` ``a a0a@aUama ta~a aaaaaaa b!b>bFbOb5Tb"b bb'bb cc%c>cFc]ctccccc +ccccdd)d&Cd jd td ddddddde/e6eFeVe)pe eeeeeee +ef f&f +Z?t'{yLjG@D9IAS*Me5FbKY. 7 KG(;@:BnS3l4%4\$Rv="w}!*~&VT0h  ti9R|N]dOq #{QuvTIJzP F661`nopqrCX}ZH+cOLmDkYsNlJE/[z>i$<dW%(Q" +,:X)|kWsE`o&8^;/C\^x[UU%d Procedures%s:(none)/Script-Fu/1 Procedure3D _Outline...3_D Truchet.../Script-Fu/Alchemy/Script-Fu/Alpha to Logo/Script-Fu/Animators/Script-Fu/Decor/Script-Fu/Render/Script-Fu/Selection/Script-Fu/Shadow/Script-Fu/Stencil Ops/Script-Fu/Utils/Help/The GIMP Online/Xtns/Script-Fu/Xtns/Script-Fu/Buttons/Xtns/Script-Fu/Logos/Xtns/Script-Fu/Make Brush/Xtns/Script-Fu/Misc/Xtns/Script-Fu/Patterns/Xtns/Script-Fu/Utils/Xtns/Script-Fu/Web Page Themes/Alien Glow/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/Xtns/Script-Fu/Web Page Themes/Classic.Gimp.OrgActive colorsAdd B_evel...Add _Border...Add backgroundAdd drop-shadowAdd glowingAdd shadowAdditional InformationAfter glowAirbrushAlien _Glow...Alien _Neon...Allow resizingAmplitudeAngleAntialiasApply generated layermaskApply layer mask (or discard)Author:AutocropAzimuthBG opacityB_asic II...B_urn-In...B_utton...Background ColorBackground ImageBackground colorBackground imageBar heightBar lengthBase colorBehaviourBevel height (Sharpness)Bevel height (sharpness)Bevel widthBlackBlack on whiteBlen_ded...Blend gradient (Text)Blend gradient (outline)Blend gradient (text)Blend modeBlock sizeBlur XBlur YBlur amountBlur borderBlur horizontallyBlur radiusBlur typeBlur verticallyBo_vination...Border X sizeBorder Y sizeBorder colorBorder sizeBorder size (pixels)BrushBrush nameBumpmap (alpha layer) blur radiusBurn-In: Need two layers in total!Burst colorC_arve-It...C_hrome-It...C_hrome...Carve raised textCarve white areasCarved...Cell size (pixels)Chalk colorChip Awa_y...Chip amountChrome balanceChrome factorChrome lightnessChrome saturationChrome white areasCircleCircuit seedClear unselected maskareaColorColor 1Color 2Color 3Color methodColumnsComic Boo_k...ConcaveCool _Metal...Copyright:Corona widthCreate new imageCreate shadowCreates four Guides around the bounding box of the current selection.Crystal...CubicCurrent CommandCustom GradientCustom _Gradient...Dark colorDarken only (Better, but only for images with alot of white)Date:Default bumpmap settingsDefocusDelta value on colorDensity (%)DepthDetail in MiddleDetail levelDiameterDirectionDownDraw _HSV Graph...Draws Spirographs, Epitrochoids and Lissajous Curves. More info at http://netword.com/*spyrogimpDrop shadowDrop shadow X offsetDrop shadow Y offsetDrop shadow blur radiusDrop shadow colorDrop shadow opacityEdge amountEdge behaviourEdge onlyEdge radiusEdge widthEffect size (pixels * 3)Effect size (pixels * 30)Effect size (pixels * 4)Effect size (pixels * 5)Effect size (pixels)ElevationElli_ptical, Feathered...End XEnd YEnd blendEnding blendEnvironment mapEpitrochoidEraseErase/fillError while executing %s -%sEvenEven/oddFG-BG-HSVFG-BG-RGBFG-TransparentFade awayFade from %Fade to %FadeoutFadeout widthFeatheringFile nameFilenameFill BG with patternFill angleFill with BGFlatten imageFontFont _size (pixels)Font colorFont size (pixels)Foreground colorFrameFrame colorFrame sizeFramesFrom top-left to bottom-rightGIMP ExtensionGIMP Plug-InGlo_ssy...Glo_wing Hot...Glow colorGlow radiusGlow size (pixels * 4)GradientGradient Beve_l...Gradient reverseGradient: Loop SawtoothGradient: Loop TriangleGranularityGranularity (1 is Low)Granularity (1 is low)Graph scaleH_eading...HeightHexagonHexagonsHighlight X offsetHighlight Y offsetHighlight balanceHighlight colorHighlight opacityHit rateHole ratioHorizontalIIRImage Types:Image heightImage sizeImage to carveImage widthImigre-26...Index imageIndex to n colors (0 = remain RGB)Inner teethInsert layer namesIntermediate framesInternal GIMP procedureInterpolationInvertInvert directionKeep backgroundKeep bump layerKeep selectionLand heightLeftLighting (degrees)Line _Nova...LinearLissajousLoopedLower colorLower color (active)Lower-right colorMake new backgroundMargin (pixels)Mask opacityMask sizeMax. blur radiusMosaic tile typeMottleN_eon...NameNew Guide (by _Percent)...New Guides from _SelectionNew _Guide...Newsprint Text...No background (only for separate layer)No matchesNoneNot pressedNot pressed (active)NumberNumber of X tilesNumber of Y tilesNumber of bandsNumber of colorsNumber of framesNumber of linesNumber of times to whirlOctagonsOddOffset (pixels)Offset XOffset YOffset radiusOffsets (pixels * 2)Oilify mask sizeOpacityOrientationOuter borderOuter teethOutline blur radiusOutline colorOutline gradient reverseOutline sizePad colorPad opacityPaddingPadding XPadding YPadding around textPadding for transparent regionsParametersPatternPattern (outline)Pattern (overlay)Pattern (text)Pattern namePencilPentagonPixel amountPixelizePlug-in _RegistryPolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPosition (in %)Prepare for GIFPressedProcedure BrowserQuarter sizeRLERadiusRadius (%)Radius (pixels)Random seedRandomnessRe_ctangular, Feathered...Relative distance of horizonRelative length of shadowRemove backgroundRender _Map...Return ValuesRibbon spacingRibbon widthRightRippling strengthRoughnessRound ratioRounded R_ectangle...RowsRows/colsSIOD OutputSOTA Chrome...Scale XScale YScript ArgumentsScript ProgressScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Palette SelectionScript-Fu Server OptionsScript-Fu _ConsoleScript-Fu cannot process two scripts at the same time.Script-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSea depthSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSelect-by-color thresholdSeparate layerSepiaServer Logfile:Server Port:ShadowShadow X offsetShadow Y offsetShadow blur radiusShadow colorShadow darknessShadow depthShadow weight (%)ShapeSharpness (degrees)Shear lengthShow Image _Structure...Simple _Beveled Button...SizeSmearSmoothSmooth horizontallySmooth verticallySolid ColorSpace between layersSpacingSpeed (pixels/frame)Speed Text...Sphere colorSpots density XSpots density YSpreadSpyrographSquareSquaresSta_rscape...StainsStarb_urst...Start XStart YStart angleStart blendStarting blendSupersampleSwirl-_Tile...T_ruchet...T_ube Sub-Button Label...Temporary ProcedureTextText Circle...Text colorText color (active)Text gradient reverseText patternThicknessThread densityThread intensityThread lengthThreshold (bigger 1<-->255 smaller)TileTo _Brush...To _ImageTo _Pattern...ToolTransparent backgroundTriangleTub_e Sub-Sub-Button Label...Turn from left to rightTypeUpUpper colorUpper color (active)Upper-left colorUse current gradientUse font _name as textUse growing selectionUse pattern for outline instead of gradientUse pattern for text instead of gradientUse pattern overlayUse selection bounds instead of belowsVerticalWavelengthWeb Title Header...Whirl amountWhirl angleWidthWidth of bandsWidth of gapsWork on copyWrapX divisionsY divisionsYou are already running the "%s" script._ASCII to Image..._ASCII to Layer..._Arrow..._Basic I..._Big Header..._Blend..._Border (pixels)_Browse..._Bullet..._Camouflage..._Chalk..._Circuit..._Clothify..._Coffee Stain..._Color scheme_Developer Web Site_Distress Selection..._Drop-Shadow..._Elliptical..._Erase every other Row..._Fade Outline..._Filter (regexp)_Flatland..._Font Map..._Fuzzy Border..._General Tube Labels..._Grid..._Hrule..._Labels_Land..._Lava..._Main Web Site_Old Photo..._Particle Trace..._Perspective..._Predator..._Rectangular..._Refresh Scripts_Remove all Guides_Rippling..._Round Button..._Round Corners..._Search:_Slide..._Small Header..._Sphere..._Spinning Globe..._Spyrogimp..._Start Server..._Swirly..._Text_Textured..._Tileable Blur..._Tube Button Label..._Unsharp Mask..._Waves..._Weave..._Xach-Effect...Project-Id-Version: pt_BR +%sEvenEven/oddFG-BG-HSVFG-BG-RGBFG-TransparentFade awayFade from %Fade to %FadeoutFadeout widthFeatheringFile nameFilenameFill BG with patternFill angleFill with BGFlatten imageFontFont _size (pixels)Font colorFont size (pixels)Foreground colorFrameFrame colorFrame sizeFramesFrom top-left to bottom-rightGIMP ExtensionGIMP Plug-InGlo_ssy...Glo_wing Hot...Glow colorGlow radiusGlow size (pixels * 4)GradientGradient Beve_l...Gradient reverseGradient: Loop SawtoothGradient: Loop TriangleGranularityGranularity (1 is Low)Granularity (1 is low)Graph scaleH_eading...HeightHexagonHexagonsHighlight X offsetHighlight Y offsetHighlight balanceHighlight colorHighlight opacityHit rateHole ratioHorizontalIIRImage Types:Image heightImage sizeImage to carveImage widthImigre-26...Index imageIndex to n colors (0 = remain RGB)Inner teethInsert layer namesIntermediate framesInternal GIMP procedureInterpolationInvertInvert directionKeep backgroundKeep bump layerKeep selectionLand heightLeftLighting (degrees)Line _Nova...LinearLissajousLoopedLower colorLower color (active)Lower-right colorMake new backgroundMargin (pixels)Mask opacityMask sizeMax. blur radiusMosaic tile typeMottleN_eon...NameNew Guide (by _Percent)...New Guides from _SelectionNew _Guide...Newsprint Text...No background (only for separate layer)No matchesNoneNot pressedNot pressed (active)NumberNumber of X tilesNumber of Y tilesNumber of bandsNumber of colorsNumber of framesNumber of linesNumber of times to whirlOctagonsOddOffset (pixels)Offset XOffset YOffset radiusOffsets (pixels * 2)Oilify mask sizeOpacityOrientationOuter borderOuter teethOutline blur radiusOutline colorOutline gradient reverseOutline sizePad colorPad opacityPaddingPadding XPadding YPadding around textPadding for transparent regionsParametersPatternPattern (outline)Pattern (overlay)Pattern (text)Pattern namePencilPentagonPixel amountPixelizePlug-in _RegistryPolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPosition (in %)Prepare for GIFPressedProcedure BrowserQuarter sizeRLERadiusRadius (%)Radius (pixels)Random seedRandomnessRe_ctangular, Feathered...Relative distance of horizonRelative length of shadowRemove backgroundRender _Map...Return ValuesRibbon spacingRibbon widthRightRippling strengthRoughnessRound ratioRounded R_ectangle...RowsRows/colsSIOD OutputSOTA Chrome...Scale XScale YScript ArgumentsScript ProgressScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Palette SelectionScript-Fu Server OptionsScript-Fu _ConsoleScript-Fu cannot process two scripts at the same time.Script-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSea depthSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSelect-by-color thresholdSeparate layerSepiaServer Logfile:Server Port:ShadowShadow X offsetShadow Y offsetShadow blur radiusShadow colorShadow darknessShadow depthShadow weight (%)ShapeSharpness (degrees)Shear lengthShow Image _Structure...Simple _Beveled Button...SizeSmearSmoothSmooth horizontallySmooth verticallySolid ColorSpace between layersSpacingSpeed (pixels/frame)Speed Text...Sphere colorSpots density XSpots density YSpreadSpyrographSquareSquaresSta_rscape...StainsStarb_urst...Start XStart YStart angleStart blendStarting blendSupersampleSwirl-_Tile...T_ruchet...T_ube Sub-Button Label...Temporary ProcedureTextText Circle...Text colorText color (active)Text gradient reverseText patternThicknessThread densityThread intensityThread lengthThreshold (bigger 1<-->255 smaller)TileTo _Brush...To _ImageTo _Pattern...ToolTransparent backgroundTriangleTub_e Sub-Sub-Button Label...Turn from left to rightTypeUpUpper colorUpper color (active)Upper-left colorUse current gradientUse font _name as textUse growing selectionUse pattern for outline instead of gradientUse pattern for text instead of gradientUse pattern overlayUse selection bounds instead of belowsVerticalWavelengthWeb Title Header...Whirl amountWhirl angleWidthWidth of bandsWidth of gapsWork on copyWrapX divisionsY divisionsYou are already running the "%s" script._Arrow..._Basic I..._Big Header..._Blend..._Border (pixels)_Browse..._Bullet..._Camouflage..._Chalk..._Circuit..._Clothify..._Coffee Stain..._Color scheme_Developer Web Site_Distress Selection..._Drop-Shadow..._Elliptical..._Erase every other Row..._Fade Outline..._Filter (regexp)_Flatland..._Font Map..._Fuzzy Border..._General Tube Labels..._Grid..._Hrule..._Labels_Land..._Lava..._Main Web Site_Old Photo..._Particle Trace..._Perspective..._Predator..._Rectangular..._Refresh Scripts_Remove all Guides_Rippling..._Round Button..._Round Corners..._Search:_Slide..._Small Header..._Sphere..._Spinning Globe..._Spyrogimp..._Start Server..._Swirly..._Text_Textured..._Tileable Blur..._Tube Button Label..._Unsharp Mask..._Waves..._Weave..._Xach-Effect...Project-Id-Version: pt_BR Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:48+0100 +POT-Creation-Date: 2004-12-28 15:42+0100 PO-Revision-Date: 2004-12-14 19:22-0200 Last-Translator: Joao S. O. Bueno Calligaris Language-Team: Brazilian Portuguese <> @@ -74,7 +70,7 @@ Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Generator: KBabel 1.3 -%d Procedimentos%s:(nenhum)/Script-Fu/1 ProcedimentoC_ontorno 3D...Crochet 3_D.../Script-Fu/Alquimia/Script-Fu/Alfa para Logo/Script-Fu/Animadores/Script-Fu/Decoração/Script-Fu/Renderizar/Script-Fu/Seleção/Script-Fu/Sombra/Script-Fu/Estêncil/Script-Fu/Utilidades/Ajuda/O GIMP Online/Xtns/Script-Fu/Xtns/Script-Fu/Botões/Xtns/Script-Fu/Logos/Xtns/Script-Fu/Criar Pincel/Xtns/Script-Fu/Misc/Xtns/Script-Fu/Padrões/Xtns/Script-Fu/Utilidades/Xtns/Script-Fu/Temas para Web/Brilho Alien/Xtns/Script-Fu/Temas para Web/Textura Chanfrada/Xtns/Script-Fu/Temas para Web/Gimp.Org ClássicoCores ativas_Adicionar ChanfroAdicionar _BordaAdicionar fundoAdicionar sombra de projeçãoAdicionar brilhoAdicionar sombraInformação AdicionalDepois do brilhoAerógrafoB_rilho Alien..._Neon Alien...Permitir redimensionamentoAmplitudeÂnguloSuavizarAplicar máscara de camada geradaAplicar máscara de camada (ou descartar)Autor:Corte AutomáticoAzimuteOpacidade de fundoBá_sico II...Q_ueimar...B_otão...Cor de FundoImagem de fundoCor de fundoImagem de fundoAltura da barraComprimento da barraCor de baseComportamentoAltura do relevo (Acuidade)Altura do relevo (acuidade)Largura do chanfroPretoPreto sobre brancoMistura_do...Degradê para misturar (Texto)Degradê para misturar (Contorno)Degradê para misturar (texto)Modo de misturaTamanho do blocoDesfoc. XDesfoc. YQuantidade de desfoc.Desfocar bordaDesfoc. horizontalRaio do desfoc.Tipo de desfoc.Desfoc. vertical_Vaquificar...Tamanho X da bordaTamanho Y da bordaCor da bordaTamanho da bordaTamanho da borda (pixels)PincelNome do pincelQuantidade de buffer (% da altura do texto)Raio de desfoc. do mapa de relevo (camada alfa)Queimar precisa de duas camadas no total!Cor da explosão_Esculpir...C_romar-Máscara..._CromarEsculpir texto em relevoEsculpir áreas brancasEsculpido...Tamanho da célula (pixels)Cor do giz_Pedacinhos...Quantos pedacinhosEquilíbrio de cromoFator de cromoLuminosidade do cromoSaturação do cromoCromar áreas em brancoCírculoSemente do circuitoLimpar área não selecionada da máscaraCorCor 1Cor 2Cor 3Método de corColunas_Quadrinhos...Côncavo_Metal Louco...Copyright:Largura da coronaCriar nova imagemCriar sombraCria quatro guias em torno do retângulo que limita a seleção atual.Cristal...CúbicaComando AtualDegradê personalizadoDegradê Personalizado...Cor escuraApenas escurecer +%d Procedimentos%s:(nenhum)/Script-Fu/1 ProcedimentoC_ontorno 3D...Crochet 3_D.../Script-Fu/Alquimia/Script-Fu/Alfa para Logo/Script-Fu/Animadores/Script-Fu/Decoração/Script-Fu/Renderizar/Script-Fu/Seleção/Script-Fu/Sombra/Script-Fu/Estêncil/Script-Fu/Utilidades/Ajuda/O GIMP Online/Xtns/Script-Fu/Xtns/Script-Fu/Botões/Xtns/Script-Fu/Logos/Xtns/Script-Fu/Criar Pincel/Xtns/Script-Fu/Misc/Xtns/Script-Fu/Padrões/Xtns/Script-Fu/Utilidades/Xtns/Script-Fu/Temas para Web/Brilho Alien/Xtns/Script-Fu/Temas para Web/Textura Chanfrada/Xtns/Script-Fu/Temas para Web/Gimp.Org ClássicoCores ativas_Adicionar ChanfroAdicionar _BordaAdicionar fundoAdicionar sombra de projeçãoAdicionar brilhoAdicionar sombraInformação AdicionalDepois do brilhoAerógrafoB_rilho Alien..._Neon Alien...Permitir redimensionamentoAmplitudeÂnguloSuavizarAplicar máscara de camada geradaAplicar máscara de camada (ou descartar)Autor:Corte AutomáticoAzimuteOpacidade de fundoBá_sico II...Q_ueimar...B_otão...Cor de FundoImagem de fundoCor de fundoImagem de fundoAltura da barraComprimento da barraCor de baseComportamentoAltura do relevo (Acuidade)Altura do relevo (acuidade)Largura do chanfroPretoPreto sobre brancoMistura_do...Degradê para misturar (Texto)Degradê para misturar (Contorno)Degradê para misturar (texto)Modo de misturaTamanho do blocoDesfoc. XDesfoc. YQuantidade de desfoc.Desfocar bordaDesfoc. horizontalRaio do desfoc.Tipo de desfoc.Desfoc. vertical_Vaquificar...Tamanho X da bordaTamanho Y da bordaCor da bordaTamanho da bordaTamanho da borda (pixels)PincelNome do pincelRaio de desfoc. do mapa de relevo (camada alfa)Queimar precisa de duas camadas no total!Cor da explosão_Esculpir...C_romar-Máscara..._CromarEsculpir texto em relevoEsculpir áreas brancasEsculpido...Tamanho da célula (pixels)Cor do giz_Pedacinhos...Quantos pedacinhosEquilíbrio de cromoFator de cromoLuminosidade do cromoSaturação do cromoCromar áreas em brancoCírculoSemente do circuitoLimpar área não selecionada da máscaraCorCor 1Cor 2Cor 3Método de corColunas_Quadrinhos...Côncavo_Metal Louco...Copyright:Largura da coronaCriar nova imagemCriar sombraCria quatro guias em torno do retângulo que limita a seleção atual.Cristal...CúbicaComando AtualDegradê personalizadoDegradê Personalizado...Cor escuraApenas escurecer (melhor, mas apenas para imagens com muito branco)Data:Configurações padrão do mapa de relevoDesfocarInfluência da iluminação na corDensidade (%)ProfundidadeDetalhe no meioNível de detalhesDiâmetroDireçãoPara baixoDesenhar Gráfico _HSV...Desenha Espirógrafos, 'Epitróides' e Curvas de Lissajous. Maiores informações em http://www.wisdom.weizmann.ac.il/~elad/spyrogimp/Sombra projetadaDeslocamento X da sombra projetadaDeslocamento Y da sombra projetadaRaio de desfoc. da sombra projetadaCor da sombra projetadaOpacidade da sombra projetadaQuantidade de bordaComportamento na bordaApenas bordaRaio dos cantosLargura da bordaTamanho do efeito (pixels * 3)Tamanho do efeito (pixels * 30)Tamanho do efeito (pixels * 4)Tamanho do efeito (pixels * 5)Tamanho do efeito (pixels)ElevaçãoElí_ptico, Enevoado...X finalY finalMistura finalMistura do finalMapa de ambienteEpitróideApagarApagar/preencherErro ao executar %s -%sParPar/ímparFrente-Fundo-HSVFrente-Fundo-RGBFrente-TransparenteDesbotarEsvanecer de %Esvanecer para %EsvanecerLargura para esvanecerEnevoarNome do arquivoNome do arquivoPreencher fundo com texturaÂngulo de preenchimentoPreencher com cor de fundoAchatar imagemFonteT_amanho das fontes (pixels)Cor da fonteTamanho da fonte (pixels)Cor de frenteQuadroCor do contornoTamanho do contornoQuadrosDa esquerda superior à direita inferiorExtensão do GIMPPlug-in do GIMPBri_lhante..._Incandesecente...Cor do brilhoRaio do brilhoTamanho do brilho (pixels * 4)DegradêRe_levo Arredondado...Degradê inversoDegradê: Repetir em Dente de SerraDegradê: Repetir em TriânguloGranularidadeGranularidade (1 é baixo)Granularidade (1 é baixo)Escala do gráfico_Título...AlturaHexágonoHexágonosDeslocamento X dos brilhosDeslocamento Y dos brilhosEquilíbrio de reflexosCor de destaqueOpacidade dos brilhosTaxa de acertosTaxa de buracosHorizontalIIRTipos de Imagens:Altura da imagemTamanho da imagemImagem na qual esculpirLargura da imagemImigre-26...Imagem indexadaCriar índice de n cores (0 = manter RGB )Dentes internosInserir nomes de camadaQuadros intermediáriosProcedimento interno do GIMPInterpolaçãoInverterInverter direçãoManter fundoManter camada de relevoManter seleçãoAltura da terraPara a esquerdaIluminação (graus)E_xplosão de Linhas...LinearLissajousRepetirCor de baixoCor de baixo (Ativa)Cor da direita inferiorCriar novo fundoMargem (pixels)Opacidade da máscaraTamanho da máscaraRaio de desfoc. máx.Tipo de pastilhas do mosaicoMatizarN_eon...Nome/Image/Réguas/Nova Guia (por _Percentagem)...Novas Guias a Partir da _SeleçãoNova _Guia...Te_xto Reticulado...Sem fundo (apenas para camada separada)Nenhuma ocorrênciaNenhumaNão pressionadoNão pressionado (ativo)NúmeroNúmero de ladrilhos XNúmero de ladrilhos YNúmero de faixasNúmero de coresNúmero de quadrosNúmero de linhasNúmero de voltasOctógonosÍmparDeslocamento (pixels)Deslocamento XDeslocamento YRaio de deslocamentoDeslocamentos (pixels *2)Tamanho de máscara de pintura a óleoOpacidadeOrientaçãoBorda externaDentes externosRaio de desfoc. do contornoCor de contornoInverter o degradê do contornoTamanho do contornoCor de preenchimentoOpacidade do preenchimentoMargemPreenchimento XPreenchimento YEspaço em torno do textoPreenchimento para regiões transparentesParâmetrosTexturaTextura (contorno)Textura (cobertura)Textura (texto)Nome da texturaLápisPentágonoQuantidade de pixelsPixelizar_Registro de Plug-InsPolígono: 10 ladosPolígono: 7 ladosPolígono: 8 ladosPolígono: 9 ladosPosição (em %)Preparar para GIFPressionadoNavegador de ProcedimentosTamanho de um quarto do des.RLERaioRaio (%)Raio (pixels)Semente aleatóriaFator aleatórioRetân_gular, Enevoado...Distância relativa do horizonteComprimento relativo da sombraRemover fundoCriar _Mapa...Valores de RetornoEspaçamento das faixasLargura das faixasPara a direitaForça da ondaAsperezaQuanto arredondarRetângulo _Arredondado...LinhasLinhas/colunasSaída SIODCromagem SOTA...Tamanho XTamanho YParâmetro de ScriptProgresso do ScriptSeleção de Pincel do Script-FuSeleção de Cor do Script-FuConsole Script-FuSeleção de Arquivo do Script-FuSeleção de Diretório do Script-FuSeleção de Fonte do Script-FuSeleção de Degradê do Script-FuSeleção de Paleta do Script-fuOpções do Servidor de Script-Fu_Console do Script-FuScript-fu não pode processar dois scripts ao mesmo tempo.O modo de console do Script-Fu só pode ser chamado de forma interativaO modo de avaliação Script-Fu só pode ser chamado de forma não interativaScript-Fu: %sSeleção de Textura do Script-fuProfundidade do marProcurar por _DescriçãoProcurar por _NomeProcurando - por favor aguardeProcurando por descrição - por favor aguardeProcurando por nome - por favor aguardeSementeLimite selecionado por coresSeparar camadaSépiaArquivo de Registros (logfile) do Servidor:Porta do Servidor:SombraDeslocamento X da sombraDeslocamento Y da sombraRaio de desfoc. da sombraCor da sombraEscuridão da sombraProfundidade da sombraQuantidade de sombra (%)FormaÂngulo das pontasComprimento da inclinaçãoExibir E_strutura da Imagem...Botão Chanfrado Simples...TamanhoBorrarSuavizarSuavização horizontalSuavização verticalCor SólidaEspaço entre as camadasEspaçamentoVelocidade (pixels/quadro)Texto Veloz...Cor da esferaDensidade de manchas Mooqs XDensidade de manchas Mooqs YEspalharEspirógrafoQuadradoQuadradosVista Estela_r...ManchasE_xplosão Estelar...X inicialY inicialÂngulo inicialMistura inicialMistura do inícioSuper-amostragemRede_moinho Encaixável...C_rochet...Rótulo de Sub-Botão do T_uboProcedimento temporárioTextoTexto Circular...Cor do textoCor do texto (Ativo)Inverter o degradê do textoTextura do textoEspessuraDensidade de fiosIntensidade dos fiosComprimento dos fiosLimite (maior 1<-->255 menor)Tornar encaixávelPara _Pincel...Para _ImagemPara _Textura...FerramentaFundo transparenteTriânguloRótulo d_e Sub-Sub-Botão do Tubo...Girar da esquerda para a direitaTipoPara cimaCor de cimaCor de cima (ativa)Cor esquerda superiorUsar degradê atualUsar _nome da fonte como o textoUsar aumento de seleçãoUsar textura para contorno em vez de degradêUsar textura para texto em vez de degradêUsar textura para cobertura Usar limites da seleção em vez dos abaixoVerticalComprimento da OndaTítulo para Web...Quantidade de voltasÂngulo da voltaLarguraLargura das faixasLargura dos intervalosTrabalhar em uma cópiaDar a voltaDivisões XDivisões YVocê já está executando o script "%s"._ASCII para Imagem...A_SCII para Camada..._Seta..._Básico I..._Cabeçalho Grande..._Transição..._Borda (pixels)_Procurar..._Marcador..._Camuflagem..._Giz..._CircuitoAspecto de _Tecido...Mancha de _Café...Esquema de coresPágina dos _Desenvolvedores_Distorcer Seleção..._Sombra Projetada..._Elíptico...Apagar _Linhas Alternadas...Es_vanecer Contorno..._Filtro (regexp)_Terra Plana..._Mapear Fontes...Borrar Borda...Rótulos _Gerais do Tubo..._Grade..._Traço Horizontal..._LegendasTe_rra..._Lava...Página _PrincipalF_oto Antiga...Acompanhar _Partículas..._Perspectiva..._Predador..._Retângular..._Recarregar Scripts_Remover todas as Guias_Ondulando...Botão A_rredondado...A_rredondar Cantos..._Procurar:_Slide...Cabeçalho _Pequeno..._Esfera..._Globo Giratório...E_spirogimp_Iniciar Servidor..._Rococó..._Texto_Texturizado...Desfoc. Encai_xável...Rótulo de Botão do _Tubo...Máscara de Ênfase..._Ondas..._Trançar...Efeito-_Xach... \ No newline at end of file +%sParPar/ímparFrente-Fundo-HSVFrente-Fundo-RGBFrente-TransparenteDesbotarEsvanecer de %Esvanecer para %EsvanecerLargura para esvanecerEnevoarNome do arquivoNome do arquivoPreencher fundo com texturaÂngulo de preenchimentoPreencher com cor de fundoAchatar imagemFonteT_amanho das fontes (pixels)Cor da fonteTamanho da fonte (pixels)Cor de frenteQuadroCor do contornoTamanho do contornoQuadrosDa esquerda superior à direita inferiorExtensão do GIMPPlug-in do GIMPBri_lhante..._Incandesecente...Cor do brilhoRaio do brilhoTamanho do brilho (pixels * 4)DegradêRe_levo Arredondado...Degradê inversoDegradê: Repetir em Dente de SerraDegradê: Repetir em TriânguloGranularidadeGranularidade (1 é baixo)Granularidade (1 é baixo)Escala do gráfico_Título...AlturaHexágonoHexágonosDeslocamento X dos brilhosDeslocamento Y dos brilhosEquilíbrio de reflexosCor de destaqueOpacidade dos brilhosTaxa de acertosTaxa de buracosHorizontalIIRTipos de Imagens:Altura da imagemTamanho da imagemImagem na qual esculpirLargura da imagemImigre-26...Imagem indexadaCriar índice de n cores (0 = manter RGB )Dentes internosInserir nomes de camadaQuadros intermediáriosProcedimento interno do GIMPInterpolaçãoInverterInverter direçãoManter fundoManter camada de relevoManter seleçãoAltura da terraPara a esquerdaIluminação (graus)E_xplosão de Linhas...LinearLissajousRepetirCor de baixoCor de baixo (Ativa)Cor da direita inferiorCriar novo fundoMargem (pixels)Opacidade da máscaraTamanho da máscaraRaio de desfoc. máx.Tipo de pastilhas do mosaicoMatizarN_eon...Nome/Image/Réguas/Nova Guia (por _Percentagem)...Novas Guias a Partir da _SeleçãoNova _Guia...Te_xto Reticulado...Sem fundo (apenas para camada separada)Nenhuma ocorrênciaNenhumaNão pressionadoNão pressionado (ativo)NúmeroNúmero de ladrilhos XNúmero de ladrilhos YNúmero de faixasNúmero de coresNúmero de quadrosNúmero de linhasNúmero de voltasOctógonosÍmparDeslocamento (pixels)Deslocamento XDeslocamento YRaio de deslocamentoDeslocamentos (pixels *2)Tamanho de máscara de pintura a óleoOpacidadeOrientaçãoBorda externaDentes externosRaio de desfoc. do contornoCor de contornoInverter o degradê do contornoTamanho do contornoCor de preenchimentoOpacidade do preenchimentoMargemPreenchimento XPreenchimento YEspaço em torno do textoPreenchimento para regiões transparentesParâmetrosTexturaTextura (contorno)Textura (cobertura)Textura (texto)Nome da texturaLápisPentágonoQuantidade de pixelsPixelizar_Registro de Plug-InsPolígono: 10 ladosPolígono: 7 ladosPolígono: 8 ladosPolígono: 9 ladosPosição (em %)Preparar para GIFPressionadoNavegador de ProcedimentosTamanho de um quarto do des.RLERaioRaio (%)Raio (pixels)Semente aleatóriaFator aleatórioRetân_gular, Enevoado...Distância relativa do horizonteComprimento relativo da sombraRemover fundoCriar _Mapa...Valores de RetornoEspaçamento das faixasLargura das faixasPara a direitaForça da ondaAsperezaQuanto arredondarRetângulo _Arredondado...LinhasLinhas/colunasSaída SIODCromagem SOTA...Tamanho XTamanho YParâmetro de ScriptProgresso do ScriptSeleção de Pincel do Script-FuSeleção de Cor do Script-FuConsole Script-FuSeleção de Arquivo do Script-FuSeleção de Diretório do Script-FuSeleção de Fonte do Script-FuSeleção de Degradê do Script-FuSeleção de Paleta do Script-fuOpções do Servidor de Script-Fu_Console do Script-FuScript-fu não pode processar dois scripts ao mesmo tempo.O modo de console do Script-Fu só pode ser chamado de forma interativaO modo de avaliação Script-Fu só pode ser chamado de forma não interativaScript-Fu: %sSeleção de Textura do Script-fuProfundidade do marProcurar por _DescriçãoProcurar por _NomeProcurando - por favor aguardeProcurando por descrição - por favor aguardeProcurando por nome - por favor aguardeSementeLimite selecionado por coresSeparar camadaSépiaArquivo de Registros (logfile) do Servidor:Porta do Servidor:SombraDeslocamento X da sombraDeslocamento Y da sombraRaio de desfoc. da sombraCor da sombraEscuridão da sombraProfundidade da sombraQuantidade de sombra (%)FormaÂngulo das pontasComprimento da inclinaçãoExibir E_strutura da Imagem...Botão Chanfrado Simples...TamanhoBorrarSuavizarSuavização horizontalSuavização verticalCor SólidaEspaço entre as camadasEspaçamentoVelocidade (pixels/quadro)Texto Veloz...Cor da esferaDensidade de manchas Mooqs XDensidade de manchas Mooqs YEspalharEspirógrafoQuadradoQuadradosVista Estela_r...ManchasE_xplosão Estelar...X inicialY inicialÂngulo inicialMistura inicialMistura do inícioSuper-amostragemRede_moinho Encaixável...C_rochet...Rótulo de Sub-Botão do T_uboProcedimento temporárioTextoTexto Circular...Cor do textoCor do texto (Ativo)Inverter o degradê do textoTextura do textoEspessuraDensidade de fiosIntensidade dos fiosComprimento dos fiosLimite (maior 1<-->255 menor)Tornar encaixávelPara _Pincel...Para _ImagemPara _Textura...FerramentaFundo transparenteTriânguloRótulo d_e Sub-Sub-Botão do Tubo...Girar da esquerda para a direitaTipoPara cimaCor de cimaCor de cima (ativa)Cor esquerda superiorUsar degradê atualUsar _nome da fonte como o textoUsar aumento de seleçãoUsar textura para contorno em vez de degradêUsar textura para texto em vez de degradêUsar textura para cobertura Usar limites da seleção em vez dos abaixoVerticalComprimento da OndaTítulo para Web...Quantidade de voltasÂngulo da voltaLarguraLargura das faixasLargura dos intervalosTrabalhar em uma cópiaDar a voltaDivisões XDivisões YVocê já está executando o script "%s"._Seta..._Básico I..._Cabeçalho Grande..._Transição..._Borda (pixels)_Procurar..._Marcador..._Camuflagem..._Giz..._CircuitoAspecto de _Tecido...Mancha de _Café...Esquema de coresPágina dos _Desenvolvedores_Distorcer Seleção..._Sombra Projetada..._Elíptico...Apagar _Linhas Alternadas...Es_vanecer Contorno..._Filtro (regexp)_Terra Plana..._Mapear Fontes...Borrar Borda...Rótulos _Gerais do Tubo..._Grade..._Traço Horizontal..._LegendasTe_rra..._Lava...Página _PrincipalF_oto Antiga...Acompanhar _Partículas..._Perspectiva..._Predador..._Retângular..._Recarregar Scripts_Remover todas as Guias_Ondulando...Botão A_rredondado...A_rredondar Cantos..._Procurar:_Slide...Cabeçalho _Pequeno..._Esfera..._Globo Giratório...E_spirogimp_Iniciar Servidor..._Rococó..._Texto_Texturizado...Desfoc. Encai_xável...Rótulo de Botão do _Tubo...Máscara de Ênfase..._Ondas..._Trançar...Efeito-_Xach... \ No newline at end of file diff -uraN gimp-2.2.0/po-script-fu/pt_BR.po gimp-2.2.1/po-script-fu/pt_BR.po --- gimp-2.2.0/po-script-fu/pt_BR.po 2004-12-19 03:34:30.000000000 +0100 +++ gimp-2.2.1/po-script-fu/pt_BR.po 2004-12-28 16:59:13.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: pt_BR\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:48+0100\n" +"POT-Creation-Date: 2004-12-28 15:42+0100\n" "PO-Revision-Date: 2004-12-14 19:22-0200\n" "Last-Translator: Joao S. O. Bueno Calligaris \n" "Language-Team: Brazilian Portuguese <>\n" @@ -320,7 +320,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:5 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:4 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:6 -#: plug-ins/script-fu/scripts/asc2img.scm.h:8 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:4 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:5 #: plug-ins/script-fu/scripts/beveled-button.scm.h:3 @@ -361,7 +360,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:6 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:5 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:7 -#: plug-ins/script-fu/scripts/asc2img.scm.h:9 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:5 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:6 #: plug-ins/script-fu/scripts/beveled-button.scm.h:4 @@ -489,7 +487,6 @@ #: plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:2 #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:3 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:4 -#: plug-ins/script-fu/scripts/asc2img.scm.h:3 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:3 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:4 #: plug-ins/script-fu/scripts/blended-logo.scm.h:3 @@ -702,7 +699,6 @@ msgstr "Margem" #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:11 -#: plug-ins/script-fu/scripts/asc2img.scm.h:10 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:7 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:8 #: plug-ins/script-fu/scripts/beveled-button.scm.h:10 @@ -745,48 +741,6 @@ msgid "Width of gaps" msgstr "Largura dos intervalos" -#: plug-ins/script-fu/scripts/asc2img.scm.h:1 -#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 -#: plug-ins/script-fu/scripts/image-structure.scm.h:1 -msgid "/Script-Fu/Utils" -msgstr "/Script-Fu/Utilidades" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:2 -#: plug-ins/script-fu/scripts/font-map.scm.h:1 -#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 -msgid "/Xtns/Script-Fu/Utils" -msgstr "/Xtns/Script-Fu/Utilidades" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:5 -#, no-c-format -msgid "Buffer amount (% height of text)" -msgstr "Quantidade de buffer (% da altura do texto)" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:6 -#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 -msgid "File name" -msgstr "Nome do arquivo" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:7 -#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 -msgid "Filename" -msgstr "Nome do arquivo" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:11 -#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 -#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 -#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 -msgid "Transparent background" -msgstr "Fundo transparente" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:12 -msgid "_ASCII to Image..." -msgstr "_ASCII para Imagem..." - -#: plug-ins/script-fu/scripts/asc2img.scm.h:13 -msgid "_ASCII to Layer..." -msgstr "A_SCII para Camada..." - #: plug-ins/script-fu/scripts/basic1-logo.scm.h:8 msgid "_Basic I..." msgstr "_Básico I..." @@ -836,6 +790,12 @@ msgid "Diameter" msgstr "Diâmetro" +#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 +#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 +#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 +msgid "Transparent background" +msgstr "Fundo transparente" + #: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:4 msgid "H_eading..." msgstr "_Título..." @@ -1428,6 +1388,11 @@ msgid "_Flatland..." msgstr "_Terra Plana..." +#: plug-ins/script-fu/scripts/font-map.scm.h:1 +#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 +msgid "/Xtns/Script-Fu/Utils" +msgstr "/Xtns/Script-Fu/Utilidades" + #: plug-ins/script-fu/scripts/font-map.scm.h:2 msgid "Active colors" msgstr "Cores ativas" @@ -1696,6 +1661,11 @@ msgid "_Remove all Guides" msgstr "_Remover todas as Guias" +#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 +#: plug-ins/script-fu/scripts/image-structure.scm.h:1 +msgid "/Script-Fu/Utils" +msgstr "/Script-Fu/Utilidades" + #: plug-ins/script-fu/scripts/hsv-graph.scm.h:2 msgid "BG opacity" msgstr "Opacidade de fundo" @@ -2069,6 +2039,10 @@ msgid "Brush name" msgstr "Nome do pincel" +#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 +msgid "File name" +msgstr "Nome do arquivo" + #: plug-ins/script-fu/scripts/select-to-brush.scm.h:5 msgid "To _Brush..." msgstr "Para _Pincel..." @@ -2077,6 +2051,10 @@ msgid "To _Image" msgstr "Para _Imagem" +#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 +msgid "Filename" +msgstr "Nome do arquivo" + #: plug-ins/script-fu/scripts/select-to-pattern.scm.h:3 msgid "Pattern name" msgstr "Nome da textura" @@ -2534,3 +2512,12 @@ #: plug-ins/script-fu/scripts/xach-effect.scm.h:12 msgid "_Xach-Effect..." msgstr "Efeito-_Xach..." + +#~ msgid "Buffer amount (% height of text)" +#~ msgstr "Quantidade de buffer (% da altura do texto)" + +#~ msgid "_ASCII to Image..." +#~ msgstr "_ASCII para Imagem..." + +#~ msgid "_ASCII to Layer..." +#~ msgstr "A_SCII para Camada..." diff -uraN gimp-2.2.0/po-script-fu/pt.gmo gimp-2.2.1/po-script-fu/pt.gmo --- gimp-2.2.0/po-script-fu/pt.gmo 2004-12-19 03:34:33.000000000 +0100 +++ gimp-2.2.1/po-script-fu/pt.gmo 2004-12-28 16:59:16.000000000 +0100 @@ -21,7 +21,7 @@ %s %sEvenFG-BG-HSVFG-BG-RGBFG-TransparentFadeoutFeatheringFilenameFill with BGFontFrameFramesGradientGradient: Loop SawtoothGradient: Loop TriangleGranularityGranularity (1 is Low)HeightHexagonHexagonsIIRImage Types:InvertInvert directionLeftLighting (degrees)LissajousLoopedMargin (pixels)MottleNo matchesNumberOctagonsOddOffset (pixels)Offset XOffset YOffsets (pixels * 2)OpacityOrientationPaddingPadding XPadding YPatternPencilPentagonPixelizePolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPrepare for GIFPressedRLERadiusRadius (pixels)RandomnessRightRoughnessRowsSIOD OutputScale XScale YScript ArgumentsScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Server OptionsScript-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSepiaServer Logfile:Server Port:ShadowShapeSharpness (degrees)SizeSmearSmoothSolid ColorSpacingSpeed (pixels/frame)Spots density XSpots density YSpreadSpyrographSquareSquaresStainsStart XStart YSupersampleTextThicknessTileToolTriangleTypeUpWavelengthWidthWrap_Border (pixels)_Filter (regexp)_Labels_Search:_TextProject-Id-Version: 2.6 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:48+0100 +POT-Creation-Date: 2004-12-28 15:42+0100 PO-Revision-Date: 2004-03-08 21:40+0000 Last-Translator: Duarte Loreto Language-Team: Portuguese diff -uraN gimp-2.2.0/po-script-fu/pt.po gimp-2.2.1/po-script-fu/pt.po --- gimp-2.2.0/po-script-fu/pt.po 2004-12-19 03:34:30.000000000 +0100 +++ gimp-2.2.1/po-script-fu/pt.po 2004-12-28 16:59:13.000000000 +0100 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: 2.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:48+0100\n" +"POT-Creation-Date: 2004-12-28 15:42+0100\n" "PO-Revision-Date: 2004-03-08 21:40+0000\n" "Last-Translator: Duarte Loreto \n" "Language-Team: Portuguese \n" @@ -331,7 +331,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:5 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:4 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:6 -#: plug-ins/script-fu/scripts/asc2img.scm.h:8 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:4 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:5 #: plug-ins/script-fu/scripts/beveled-button.scm.h:3 @@ -372,7 +371,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:6 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:5 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:7 -#: plug-ins/script-fu/scripts/asc2img.scm.h:9 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:5 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:6 #: plug-ins/script-fu/scripts/beveled-button.scm.h:4 @@ -506,7 +504,6 @@ #: plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:2 #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:3 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:4 -#: plug-ins/script-fu/scripts/asc2img.scm.h:3 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:3 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:4 #: plug-ins/script-fu/scripts/blended-logo.scm.h:3 @@ -742,7 +739,6 @@ msgstr "Espaçamento" #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:11 -#: plug-ins/script-fu/scripts/asc2img.scm.h:10 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:7 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:8 #: plug-ins/script-fu/scripts/beveled-button.scm.h:10 @@ -791,53 +787,6 @@ msgid "Width of gaps" msgstr "Largura dos Intervalos" -#: plug-ins/script-fu/scripts/asc2img.scm.h:1 -#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 -#: plug-ins/script-fu/scripts/image-structure.scm.h:1 -#, fuzzy -msgid "/Script-Fu/Utils" -msgstr "/Script-Fu/Utilitários/_ASCII para Camada..." - -#: plug-ins/script-fu/scripts/asc2img.scm.h:2 -#: plug-ins/script-fu/scripts/font-map.scm.h:1 -#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 -#, fuzzy -msgid "/Xtns/Script-Fu/Utils" -msgstr "/Exten/Script-Fu/Logos/N_eon..." - -#: plug-ins/script-fu/scripts/asc2img.scm.h:5 -#, fuzzy, no-c-format -msgid "Buffer amount (% height of text)" -msgstr "Quantidade de Buffer (% Altura do Texto)" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:6 -#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 -#, fuzzy -msgid "File name" -msgstr "Nome Ficheiro" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:7 -#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 -msgid "Filename" -msgstr "Nome Ficheiro" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:11 -#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 -#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 -#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 -#, fuzzy -msgid "Transparent background" -msgstr "Fundo Transparente" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:12 -msgid "_ASCII to Image..." -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:13 -#, fuzzy -msgid "_ASCII to Layer..." -msgstr "/Script-Fu/Utilitários/_ASCII para Camada..." - #: plug-ins/script-fu/scripts/basic1-logo.scm.h:8 msgid "_Basic I..." msgstr "" @@ -893,6 +842,13 @@ msgid "Diameter" msgstr "Diâmetro" +#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 +#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 +#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 +#, fuzzy +msgid "Transparent background" +msgstr "Fundo Transparente" + #: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:4 msgid "H_eading..." msgstr "" @@ -1551,6 +1507,12 @@ msgid "_Flatland..." msgstr "" +#: plug-ins/script-fu/scripts/font-map.scm.h:1 +#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 +#, fuzzy +msgid "/Xtns/Script-Fu/Utils" +msgstr "/Exten/Script-Fu/Logos/N_eon..." + #: plug-ins/script-fu/scripts/font-map.scm.h:2 #, fuzzy msgid "Active colors" @@ -1857,6 +1819,12 @@ msgid "_Remove all Guides" msgstr "" +#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 +#: plug-ins/script-fu/scripts/image-structure.scm.h:1 +#, fuzzy +msgid "/Script-Fu/Utils" +msgstr "/Script-Fu/Utilitários/_ASCII para Camada..." + #: plug-ins/script-fu/scripts/hsv-graph.scm.h:2 #, fuzzy msgid "BG opacity" @@ -2278,6 +2246,11 @@ msgid "Brush name" msgstr "Nome Pincel" +#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 +#, fuzzy +msgid "File name" +msgstr "Nome Ficheiro" + #: plug-ins/script-fu/scripts/select-to-brush.scm.h:5 #, fuzzy msgid "To _Brush..." @@ -2287,6 +2260,10 @@ msgid "To _Image" msgstr "" +#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 +msgid "Filename" +msgstr "Nome Ficheiro" + #: plug-ins/script-fu/scripts/select-to-pattern.scm.h:3 #, fuzzy msgid "Pattern name" @@ -2802,6 +2779,14 @@ msgid "_Xach-Effect..." msgstr "" +#, fuzzy +#~ msgid "Buffer amount (% height of text)" +#~ msgstr "Quantidade de Buffer (% Altura do Texto)" + +#, fuzzy +#~ msgid "_ASCII to Layer..." +#~ msgstr "/Script-Fu/Utilitários/_ASCII para Camada..." + #~ msgid "/Xtns/Script-Fu/_Refresh Scripts" #~ msgstr "/Exten/Script-Fu/_Actualizar Scripts" diff -uraN gimp-2.2.0/po-script-fu/ro.gmo gimp-2.2.1/po-script-fu/ro.gmo --- gimp-2.2.0/po-script-fu/ro.gmo 2004-12-19 03:34:33.000000000 +0100 +++ gimp-2.2.1/po-script-fu/ro.gmo 2004-12-28 16:59:16.000000000 +0100 @@ -5,7 +5,7 @@    Author:ColorCopyright:Custom GradientDate:GIMP ExtensionGIMP Plug-InGradientHeightInternal GIMP procedureInvertLinearNoneOpacityShapeSizeSmoothTemporary ProcedureTypeWidthProject-Id-Version: gimp-script-fu Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:48+0100 +POT-Creation-Date: 2004-12-28 15:42+0100 PO-Revision-Date: 2000-11-24 15:46+0100 Last-Translator: Robert Claudiu Gheorghe Language-Team: Română diff -uraN gimp-2.2.0/po-script-fu/ro.po gimp-2.2.1/po-script-fu/ro.po --- gimp-2.2.0/po-script-fu/ro.po 2004-12-19 03:34:30.000000000 +0100 +++ gimp-2.2.1/po-script-fu/ro.po 2004-12-28 16:59:14.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: gimp-script-fu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:48+0100\n" +"POT-Creation-Date: 2004-12-28 15:42+0100\n" "PO-Revision-Date: 2000-11-24 15:46+0100\n" "Last-Translator: Robert Claudiu Gheorghe \n" "Language-Team: Română \n" @@ -338,7 +338,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:5 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:4 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:6 -#: plug-ins/script-fu/scripts/asc2img.scm.h:8 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:4 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:5 #: plug-ins/script-fu/scripts/beveled-button.scm.h:3 @@ -380,7 +379,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:6 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:5 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:7 -#: plug-ins/script-fu/scripts/asc2img.scm.h:9 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:5 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:6 #: plug-ins/script-fu/scripts/beveled-button.scm.h:4 @@ -516,7 +514,6 @@ #: plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:2 #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:3 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:4 -#: plug-ins/script-fu/scripts/asc2img.scm.h:3 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:3 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:4 #: plug-ins/script-fu/scripts/blended-logo.scm.h:3 @@ -753,7 +750,6 @@ msgstr "" #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:11 -#: plug-ins/script-fu/scripts/asc2img.scm.h:10 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:7 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:8 #: plug-ins/script-fu/scripts/beveled-button.scm.h:10 @@ -799,54 +795,6 @@ msgid "Width of gaps" msgstr "" -#: plug-ins/script-fu/scripts/asc2img.scm.h:1 -#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 -#: plug-ins/script-fu/scripts/image-structure.scm.h:1 -#, fuzzy -msgid "/Script-Fu/Utils" -msgstr "Micşorează selecţia" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:2 -#: plug-ins/script-fu/scripts/font-map.scm.h:1 -#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 -#, fuzzy -msgid "/Xtns/Script-Fu/Utils" -msgstr "Micşorează selecţia" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:5 -#, no-c-format -msgid "Buffer amount (% height of text)" -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:6 -#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 -#, fuzzy -msgid "File name" -msgstr "/Fişier/Salvează" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:7 -#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 -#, fuzzy -msgid "Filename" -msgstr "/Fişier/Salvează" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:11 -#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 -#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 -#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 -#, fuzzy -msgid "Transparent background" -msgstr "Transparent" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:12 -msgid "_ASCII to Image..." -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:13 -#, fuzzy -msgid "_ASCII to Layer..." -msgstr "FS -> Strat" - #: plug-ins/script-fu/scripts/basic1-logo.scm.h:8 msgid "_Basic I..." msgstr "" @@ -903,6 +851,13 @@ msgid "Diameter" msgstr "milimetru" +#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 +#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 +#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 +#, fuzzy +msgid "Transparent background" +msgstr "Transparent" + #: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:4 #, fuzzy msgid "H_eading..." @@ -1579,6 +1534,12 @@ msgid "_Flatland..." msgstr "" +#: plug-ins/script-fu/scripts/font-map.scm.h:1 +#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 +#, fuzzy +msgid "/Xtns/Script-Fu/Utils" +msgstr "Micşorează selecţia" + #: plug-ins/script-fu/scripts/font-map.scm.h:2 #, fuzzy msgid "Active colors" @@ -1888,6 +1849,12 @@ msgid "_Remove all Guides" msgstr "" +#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 +#: plug-ins/script-fu/scripts/image-structure.scm.h:1 +#, fuzzy +msgid "/Script-Fu/Utils" +msgstr "Micşorează selecţia" + #: plug-ins/script-fu/scripts/hsv-graph.scm.h:2 #, fuzzy msgid "BG opacity" @@ -2321,6 +2288,11 @@ msgid "Brush name" msgstr "Interfaţă utilizator pentru Pensule" +#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 +#, fuzzy +msgid "File name" +msgstr "/Fişier/Salvează" + #: plug-ins/script-fu/scripts/select-to-brush.scm.h:5 #, fuzzy msgid "To _Brush..." @@ -2331,6 +2303,11 @@ msgid "To _Image" msgstr "Încarcă imagine" +#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 +#, fuzzy +msgid "Filename" +msgstr "/Fişier/Salvează" + #: plug-ins/script-fu/scripts/select-to-pattern.scm.h:3 #, fuzzy msgid "Pattern name" @@ -2855,6 +2832,10 @@ msgstr "" #, fuzzy +#~ msgid "_ASCII to Layer..." +#~ msgstr "FS -> Strat" + +#, fuzzy #~ msgid "/Xtns/Script-Fu/_Refresh Scripts" #~ msgstr "Micşorează selecţia" diff -uraN gimp-2.2.0/po-script-fu/ru.gmo gimp-2.2.1/po-script-fu/ru.gmo --- gimp-2.2.0/po-script-fu/ru.gmo 2004-12-19 03:34:33.000000000 +0100 +++ gimp-2.2.1/po-script-fu/ru.gmo 2004-12-28 16:59:16.000000000 +0100 @@ -24,7 +24,7 @@ %s %sEvenFG-BG-HSVFG-BG-RGBFG-TransparentFadeoutFeatheringFilenameFill with BGFontFrameFramesGradientGradient: Loop SawtoothGradient: Loop TriangleGranularityGranularity (1 is Low)HeightHexagonHexagonsIIRImage Types:InvertInvert directionLeftLighting (degrees)LissajousLoopedMargin (pixels)MottleNo matchesNumberOctagonsOddOffset (pixels)Offset XOffset YOffsets (pixels * 2)OpacityOrientationPaddingPadding XPadding YPatternPencilPentagonPixelizePolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPrepare for GIFPressedRLERadiusRadius (pixels)RandomnessRightRoughnessRowsSIOD OutputScale XScale YScript ArgumentsScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Server OptionsScript-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSepiaServer Logfile:Server Port:ShadowShapeSharpness (degrees)SizeSmearSmoothSolid ColorSpacingSpeed (pixels/frame)Spots density XSpots density YSpreadSpyrographSquareSquaresStainsStart XStart YSupersampleTextThicknessTileToolTriangleTypeUpWavelengthWidthWrap_Border (pixels)_Filter (regexp)_Labels_Search:_TextProject-Id-Version: gimp.SCRIPTFU.ru Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:48+0100 +POT-Creation-Date: 2004-12-28 15:42+0100 PO-Revision-Date: 2004-07-15 00:10+0400 Last-Translator: AnatolyA. Yakushin Language-Team: russian diff -uraN gimp-2.2.0/po-script-fu/ru.po gimp-2.2.1/po-script-fu/ru.po --- gimp-2.2.0/po-script-fu/ru.po 2004-12-19 03:34:30.000000000 +0100 +++ gimp-2.2.1/po-script-fu/ru.po 2004-12-28 16:59:14.000000000 +0100 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: gimp.SCRIPTFU.ru\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:48+0100\n" +"POT-Creation-Date: 2004-12-28 15:42+0100\n" "PO-Revision-Date: 2004-07-15 00:10+0400\n" "Last-Translator: AnatolyA. Yakushin \n" "Language-Team: russian \n" @@ -332,7 +332,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:5 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:4 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:6 -#: plug-ins/script-fu/scripts/asc2img.scm.h:8 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:4 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:5 #: plug-ins/script-fu/scripts/beveled-button.scm.h:3 @@ -373,7 +372,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:6 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:5 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:7 -#: plug-ins/script-fu/scripts/asc2img.scm.h:9 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:5 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:6 #: plug-ins/script-fu/scripts/beveled-button.scm.h:4 @@ -507,7 +505,6 @@ #: plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:2 #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:3 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:4 -#: plug-ins/script-fu/scripts/asc2img.scm.h:3 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:3 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:4 #: plug-ins/script-fu/scripts/blended-logo.scm.h:3 @@ -744,7 +741,6 @@ msgstr "Заполнение" #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:11 -#: plug-ins/script-fu/scripts/asc2img.scm.h:10 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:7 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:8 #: plug-ins/script-fu/scripts/beveled-button.scm.h:10 @@ -793,53 +789,6 @@ msgid "Width of gaps" msgstr "Ширина зазора" -#: plug-ins/script-fu/scripts/asc2img.scm.h:1 -#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 -#: plug-ins/script-fu/scripts/image-structure.scm.h:1 -#, fuzzy -msgid "/Script-Fu/Utils" -msgstr "/Скрипт-Фу/Утилиты/ASCII -> Слой изображения..." - -#: plug-ins/script-fu/scripts/asc2img.scm.h:2 -#: plug-ins/script-fu/scripts/font-map.scm.h:1 -#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 -#, fuzzy -msgid "/Xtns/Script-Fu/Utils" -msgstr "/Расш./Скрипт-Фу/Эмблемы/Неон..." - -#: plug-ins/script-fu/scripts/asc2img.scm.h:5 -#, fuzzy, no-c-format -msgid "Buffer amount (% height of text)" -msgstr "Размер отступа (% высоты текста)" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:6 -#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 -#, fuzzy -msgid "File name" -msgstr "Имя файла" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:7 -#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 -msgid "Filename" -msgstr "Имя файла" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:11 -#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 -#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 -#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 -#, fuzzy -msgid "Transparent background" -msgstr "Прозрачный фон" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:12 -msgid "_ASCII to Image..." -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:13 -#, fuzzy -msgid "_ASCII to Layer..." -msgstr "/Скрипт-Фу/Утилиты/ASCII -> Слой изображения..." - #: plug-ins/script-fu/scripts/basic1-logo.scm.h:8 msgid "_Basic I..." msgstr "" @@ -895,6 +844,13 @@ msgid "Diameter" msgstr "Диаметр" +#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 +#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 +#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 +#, fuzzy +msgid "Transparent background" +msgstr "Прозрачный фон" + #: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:4 msgid "H_eading..." msgstr "" @@ -1553,6 +1509,12 @@ msgid "_Flatland..." msgstr "" +#: plug-ins/script-fu/scripts/font-map.scm.h:1 +#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 +#, fuzzy +msgid "/Xtns/Script-Fu/Utils" +msgstr "/Расш./Скрипт-Фу/Эмблемы/Неон..." + #: plug-ins/script-fu/scripts/font-map.scm.h:2 #, fuzzy msgid "Active colors" @@ -1860,6 +1822,12 @@ msgid "_Remove all Guides" msgstr "" +#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 +#: plug-ins/script-fu/scripts/image-structure.scm.h:1 +#, fuzzy +msgid "/Script-Fu/Utils" +msgstr "/Скрипт-Фу/Утилиты/ASCII -> Слой изображения..." + #: plug-ins/script-fu/scripts/hsv-graph.scm.h:2 #, fuzzy msgid "BG opacity" @@ -2281,6 +2249,11 @@ msgid "Brush name" msgstr "Название кисти" +#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 +#, fuzzy +msgid "File name" +msgstr "Имя файла" + #: plug-ins/script-fu/scripts/select-to-brush.scm.h:5 #, fuzzy msgid "To _Brush..." @@ -2290,6 +2263,10 @@ msgid "To _Image" msgstr "" +#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 +msgid "Filename" +msgstr "Имя файла" + #: plug-ins/script-fu/scripts/select-to-pattern.scm.h:3 #, fuzzy msgid "Pattern name" @@ -2804,6 +2781,14 @@ msgid "_Xach-Effect..." msgstr "" +#, fuzzy +#~ msgid "Buffer amount (% height of text)" +#~ msgstr "Размер отступа (% высоты текста)" + +#, fuzzy +#~ msgid "_ASCII to Layer..." +#~ msgstr "/Скрипт-Фу/Утилиты/ASCII -> Слой изображения..." + #~ msgid "/Xtns/Script-Fu/_Refresh Scripts" #~ msgstr "/Расш./Скрипт-Фу/Обновить сценарии" diff -uraN gimp-2.2.0/po-script-fu/sk.gmo gimp-2.2.1/po-script-fu/sk.gmo --- gimp-2.2.0/po-script-fu/sk.gmo 2004-12-19 03:34:33.000000000 +0100 +++ gimp-2.2.1/po-script-fu/sk.gmo 2004-12-28 16:59:17.000000000 +0100 @@ -1,66 +1,61 @@ - d + +++ + ++++ -,*,F,^,w,,,,,- -;-#Z-~-!--3-8.9J. . .... . -.. -.///./ =/G/ M/W/q//// -/ / / -//// -0 -0 &000I0 b0n0t0 0000 -0 -000 0 11 "1 .181H1 W1 e1 s1 111 -1 1!1"1 2 $2 12 -?2J2\2 n2x2 2 2 22 22223 332383@3H3 P3]3e3t3|3 -3 33 3E3 -444)494 -M4<X44444 444 45 -555`,5 555555 6 6 6 &6 -26=6V6p666 6666 6 66 77 - 7+7G7L7 U7 _7i7 x7 7 77 7 -7 777 -7 7 7 88 -"8-8@8Q8W8^8|8 8 -88 -8 888889&9 >9J9a9 x9 999999999: - : -:!: %: 2: -?:J: Y: e: r:"~: :::: ::;;";2; A;M;R; e;s; z;; ;;;;; ; ;; -<<"<+<0<K< f<t<'< -<< <<<<< -==+=<=L=e=n=r=== ==== = = == >> 0> => G>S> [> e>o>> ->>>>> >>> ???.?@?Q?b?s???? ??? -?? ? -??@/@I@[@ j@x@ @@@ @ @@@ @ @@A -AA#A3AMAgAyAAAAAAB6+B9bB=B BB CCC/C GChCCCCCC CCCCD D D 0D=DODUD iDvDDDDDDD DDE -E E -E:EJEZE -aElEsE {EE EEE E EE EE EEF*F/F ->FIF]F sF FFF F#FF F FFG G#G,GJGbGgG jGvGGGGG+G( -H3H&GHnH -wHH H HHH H HH H H(H%I8I KI UIaI pIzI -I -II I I II IIJJ-JSLS `SnSSSSSSSS S T$T>TWThT xT TTTTTTT T UU /UVMVfV}VV VVVVVWW-WIWNW!]WWWWWWWWWW -WWWXI&X pX}XXXX X@X Y(Y =YIY ]YkYrYYYYYYjY(Z7ZPZ#iZZZ ZZ Z Z Z[ ![B[a[[[[[[[[[ [ \\ "\C\J\Z\o\\ \\\ \\ -\\ ] ] )]6]J][]b] ]]]]]]] -]^ -^ ^-^<^X^`^u^^^ ^^^ ^ -___(_7_G_W_k_~_ _ -_ __ _____ ``)-`W`g``` ` ````a a"a)aBa Ua _ala taaaaa aaa b&b /b9b#@bdb}bb&b bb bbc cc /c =cKc \cic ccccccccc dd!d1d KdXdrd ddd d ddd ddee "e 0e>e FeTe deqeeeeeee -ff3fJfNf Vfbfuf ff!fff gg3gCgRg Ygggpgggg gggggg h$h;hMhfhhhhhh:h?5iHui ii ii j!j*>j*ijjjjjj jjjkk ,k9k IkWkjkokk#k#k k k kkl l1lIlRlnl -~lll l llllll m mm2mFm^mmm m#mmm m mmm n%n-n=nOn!_n n n n nnn n&noo o %o2oJo^o#yoo*o(o -p5%p[pbprppppppp -p p p q'q:q KqWqhq ~qqq qq -q q qqqr,rArTr"crrr -rr rr%r ss 1s=s EsOses{ss ssss stt -*t 5tAt Ut_t utt ttt!t$tuu u*ua2Fd0S=`q:j `b2(*$@)Zw &ef +/N gx?\ 0ctKm^^gt8197{-; W<q|'xvJiD>B6F>Q*~J d5C_IV. 4HE}%8=?mP3i1"~4[$Pu;"vWz!'}&TR-e  -sh9O{L\aLn#zNrsQGHwMD36. _knopo@U|YE+bMIlAjXrKkGC/Zy<f!:cT%(O - ,7V)yhUpB]l#5],AY[uXRS%d Procedures%s:(none)/Script-Fu/1 Procedure3D _Outline...3_D Truchet.../Script-Fu/Alchemy/Script-Fu/Alpha to Logo/Script-Fu/Animators/Script-Fu/Decor/Script-Fu/Render/Script-Fu/Selection/Script-Fu/Shadow/Script-Fu/Stencil Ops/Script-Fu/Utils/Help/The GIMP Online/Xtns/Script-Fu/Xtns/Script-Fu/Buttons/Xtns/Script-Fu/Logos/Xtns/Script-Fu/Make Brush/Xtns/Script-Fu/Misc/Xtns/Script-Fu/Patterns/Xtns/Script-Fu/Utils/Xtns/Script-Fu/Web Page Themes/Alien Glow/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/Xtns/Script-Fu/Web Page Themes/Classic.Gimp.OrgActive colorsAdd B_evel...Add _Border...Add backgroundAdd drop-shadowAdd glowingAdd shadowAdditional InformationAfter glowAirbrushAlien _Glow...Alien _Neon...Allow resizingAmplitudeAngleAntialiasApply generated layermaskApply layer mask (or discard)Author:AutocropAzimuthBG opacityB_asic II...B_urn-In...B_utton...Background ColorBackground ImageBackground colorBackground imageBase colorBehaviourBevel height (Sharpness)Bevel height (sharpness)Bevel widthBlackBlack on whiteBlen_ded...Blend gradient (Text)Blend gradient (outline)Blend gradient (text)Blend modeBlock sizeBlur XBlur YBlur amountBlur borderBlur horizontallyBlur radiusBlur typeBlur verticallyBo_vination...Border X sizeBorder Y sizeBorder colorBorder sizeBorder size (pixels)BrushBrush nameBuffer amount (% height of text)Bumpmap (alpha layer) blur radiusBurn-In: Need two layers in total!Burst colorC_arve-It...C_hrome-It...C_hrome...Carve raised textCarve white areasCarved...Cell size (pixels)Chalk colorChip Awa_y...Chip amountChrome balanceChrome factorChrome lightnessChrome saturationChrome white areasCircleCircuit seedClear unselected maskareaColorColor 1Color 2Color 3Color methodColumnsComic Boo_k...ConcaveCool _Metal...Copyright:Corona widthCreate new imageCreate shadowCreates four Guides around the bounding box of the current selection.Crystal...CubicCurrent CommandCustom GradientCustom _Gradient...Dark colorDarken only +L| H+ I+W+[+ b+ n+z++++++,,;,T,r,,, ,,#-&-!D-f-3-8-9- ,. :.H.W.f. v. +.. +..... .. ../7/?/H/ +P/ [/ h/ +t///// +/ /// +000 +070M0f0 +|0 +000 0 00 0 000 0 1 1 (141I1 +O1!Z1"|1 1 1 1 +111 11 2 2 ,282 G2U2f2x22 222222 22223 +3 3*3 ;3EI3 +33333 +3<34"4;4C4 X4d4j4 {44 444`4 5 555J5b5t5 55 5 5 +55556)6 >6H6b6h6 n6 x66 66 +6666 6 66 6 7 7!7 )7 +77 B7L7U7 +j7 u7 777 +7777778 8 +8*8 +:8 E8Q8h8q8888 888 8 999&9/9B9U9g9w99 +9 +99 9 9 +99 9 9 9": (:4:G:[: s:::::: ::: :: ; ; ;;3;E;Y; i; v;;;;;;;; ;;' < +5<@< E<Q<f<m<<<<<<<<<< == =)=>=O= W= c= p=|= == = = == = == +> +*>5>=>O>a> p>}>> >>>>>>>> +??"? 4?A?E? +L?W? g? +s?~????? ?? @@!@ 3@ =@I@_@ d@ n@z@@@@@@@@AA4AMAjAAA6A9A=#B aBoB BBBB BBCC.C=CCC SC`CgCwCC CC CCCC CCD0D5D;DBDVD hDtDDD D DDDD +DDD EE E%E-E 5E AEME \EhE wEEEEE +EEE E FF F 1F#?FcF hF uFFFFFFFFF FFG#G8GOG+eG(GG&GG +G H H *H6H` N`[`b`{` ` `` ````` aa,aDa_a hara#yaaaa&a bb b#b;bBbUb hb vbb bb bbbbbbcc4c ;cGcZcjc ccc ccc c cc d )d3d:dId [d idwd dd ddddde)e8e +KeVeleee eee ee!ef0fDfXflf|ff ffffff ffgg"g4gDg]gtggggggh!h:3h?nhHh hi i)iBiZi*wi*iiiijj j'j-jnUnYn ^nknnn#nn*n(oCo5^ooooooooo p +p (p 5pBp `plp}p ppp pp +p p ppq#qAqVqiq"xqqq +qq qq%q r-r FrRr Zrdrzrrr rrrr ss-s +?s JsVs jsts ss sss!s$st,t 5t?tAMfGHiJWX!8~ j"}Bt*CG ax3UBJ6?cT= +R?=DzNqo:. d<~_ /u^p4 0OhP;+AqxCf|bld78]a{: gTVY(i#7%#.&e20^`[vU9Y-IrM%,16hF;Q2Kw+@1\ kS_$gKs!)"]XP}mv'>j>bRk +&L94 SlQ'noeZLzr`EWyEFtI\V -/c|{(<3$HZup[@s,5n Om5)yD*Nw%d Procedures%s:(none)/Script-Fu/1 Procedure3D _Outline...3_D Truchet.../Script-Fu/Alchemy/Script-Fu/Alpha to Logo/Script-Fu/Animators/Script-Fu/Decor/Script-Fu/Render/Script-Fu/Selection/Script-Fu/Shadow/Script-Fu/Stencil Ops/Script-Fu/Utils/Help/The GIMP Online/Xtns/Script-Fu/Xtns/Script-Fu/Buttons/Xtns/Script-Fu/Logos/Xtns/Script-Fu/Make Brush/Xtns/Script-Fu/Misc/Xtns/Script-Fu/Patterns/Xtns/Script-Fu/Utils/Xtns/Script-Fu/Web Page Themes/Alien Glow/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/Xtns/Script-Fu/Web Page Themes/Classic.Gimp.OrgActive colorsAdd B_evel...Add _Border...Add backgroundAdd drop-shadowAdd glowingAdd shadowAdditional InformationAfter glowAirbrushAlien _Glow...Alien _Neon...Allow resizingAmplitudeAngleAntialiasApply generated layermaskApply layer mask (or discard)Author:AutocropAzimuthBG opacityB_asic II...B_urn-In...B_utton...Background ColorBackground ImageBackground colorBackground imageBase colorBehaviourBevel height (Sharpness)Bevel height (sharpness)Bevel widthBlackBlack on whiteBlen_ded...Blend gradient (Text)Blend gradient (outline)Blend gradient (text)Blend modeBlock sizeBlur XBlur YBlur amountBlur borderBlur horizontallyBlur radiusBlur typeBlur verticallyBo_vination...Border X sizeBorder Y sizeBorder colorBorder sizeBorder size (pixels)BrushBrush nameBumpmap (alpha layer) blur radiusBurn-In: Need two layers in total!Burst colorC_arve-It...C_hrome-It...C_hrome...Carve raised textCarve white areasCarved...Cell size (pixels)Chalk colorChip Awa_y...Chip amountChrome balanceChrome factorChrome lightnessChrome saturationChrome white areasCircleCircuit seedClear unselected maskareaColorColor 1Color 2Color 3Color methodColumnsComic Boo_k...ConcaveCool _Metal...Copyright:Corona widthCreate new imageCreate shadowCreates four Guides around the bounding box of the current selection.Crystal...CubicCurrent CommandCustom GradientCustom _Gradient...Dark colorDarken only (Better, but only for images with alot of white)Date:Default bumpmap settingsDefocusDelta value on colorDensity (%)DepthDetail in MiddleDetail levelDiameterDirectionDownDraw _HSV Graph...Draws Spirographs, Epitrochoids and Lissajous Curves. More info at http://netword.com/*spyrogimpDrop shadowDrop shadow X offsetDrop shadow Y offsetDrop shadow blur radiusDrop shadow colorDrop shadow opacityEdge amountEdge behaviourEdge onlyEdge radiusEdge widthEffect size (pixels * 3)Effect size (pixels * 30)Effect size (pixels * 4)Effect size (pixels * 5)Effect size (pixels)ElevationElli_ptical, Feathered...End XEnd YEnd blendEnding blendEnvironment mapEpitrochoidEraseErase/fillError while executing %s -%sEvenEven/oddFG-BG-HSVFG-BG-RGBFG-TransparentFade awayFade from %Fade to %FadeoutFadeout widthFeatheringFile nameFilenameFill BG with patternFill angleFill with BGFlatten imageFontFont _size (pixels)Font colorFont size (pixels)Foreground colorFrameFramesFrom top-left to bottom-rightGIMP ExtensionGIMP Plug-InGlo_ssy...Glo_wing Hot...Glow colorGlow radiusGlow size (pixels * 4)GradientGradient Beve_l...Gradient reverseGradient: Loop SawtoothGradient: Loop TriangleGranularityGranularity (1 is Low)Granularity (1 is low)Graph scaleH_eading...HeightHexagonHexagonsHighlight X offsetHighlight Y offsetHighlight balanceHighlight colorHighlight opacityHit rateHole ratioHorizontalIIRImage Types:Image heightImage sizeImage to carveImage widthImigre-26...Index imageIndex to n colors (0 = remain RGB)Inner teethInsert layer namesIntermediate framesInternal GIMP procedureInterpolationInvertInvert directionKeep backgroundKeep bump layerKeep selectionLand heightLeftLighting (degrees)Line _Nova...LinearLissajousLoopedLower colorLower color (active)Lower-right colorMake new backgroundMargin (pixels)Mask opacityMask sizeMax. blur radiusMosaic tile typeMottleN_eon...NameNew Guide (by _Percent)...New Guides from _SelectionNew _Guide...Newsprint Text...No background (only for separate layer)No matchesNoneNot pressedNot pressed (active)NumberNumber of X tilesNumber of Y tilesNumber of bandsNumber of colorsNumber of framesNumber of linesNumber of times to whirlOctagonsOddOffset (pixels)Offset XOffset YOffset radiusOffsets (pixels * 2)Oilify mask sizeOpacityOrientationOuter borderOuter teethOutline blur radiusOutline colorOutline gradient reverseOutline sizePad colorPad opacityPaddingPadding XPadding YPadding around textPadding for transparent regionsParametersPatternPattern (outline)Pattern (overlay)Pattern (text)Pattern namePencilPentagonPixel amountPixelizePlug-in _RegistryPolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPosition (in %)Prepare for GIFPressedProcedure BrowserQuarter sizeRLERadiusRadius (%)Radius (pixels)Random seedRandomnessRe_ctangular, Feathered...Relative distance of horizonRelative length of shadowRemove backgroundRender _Map...Return ValuesRibbon spacingRibbon widthRightRippling strengthRoughnessRound ratioRounded R_ectangle...RowsRows/colsSIOD OutputSOTA Chrome...Scale XScale YScript ArgumentsScript ProgressScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Palette SelectionScript-Fu Server OptionsScript-Fu _ConsoleScript-Fu cannot process two scripts at the same time.Script-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSea depthSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSelect-by-color thresholdSeparate layerSepiaServer Logfile:Server Port:ShadowShadow X offsetShadow Y offsetShadow blur radiusShadow colorShadow darknessShadow depthShadow weight (%)ShapeSharpness (degrees)Shear lengthShow Image _Structure...Simple _Beveled Button...SizeSmearSmoothSmooth horizontallySmooth verticallySolid ColorSpace between layersSpacingSpeed (pixels/frame)Speed Text...Sphere colorSpots density XSpots density YSpreadSpyrographSquareSquaresSta_rscape...StainsStarb_urst...Start XStart YStart angleStart blendStarting blendSupersampleSwirl-_Tile...T_ruchet...T_ube Sub-Button Label...Temporary ProcedureTextText Circle...Text colorText color (active)Text gradient reverseText patternThicknessThread densityThread intensityThread lengthThreshold (bigger 1<-->255 smaller)TileTo _Brush...To _ImageTo _Pattern...ToolTransparent backgroundTriangleTub_e Sub-Sub-Button Label...Turn from left to rightTypeUpUpper colorUpper color (active)Upper-left colorUse current gradientUse font _name as textUse growing selectionUse pattern for outline instead of gradientUse pattern for text instead of gradientUse pattern overlayUse selection bounds instead of belowsVerticalWavelengthWeb Title Header...Whirl amountWhirl angleWidthWidth of bandsWidth of gapsWork on copyWrapX divisionsY divisionsYou are already running the "%s" script._ASCII to Image..._ASCII to Layer..._Arrow..._Basic I..._Big Header..._Blend..._Border (pixels)_Browse..._Bullet..._Camouflage..._Chalk..._Circuit..._Clothify..._Coffee Stain..._Color scheme_Developer Web Site_Distress Selection..._Drop-Shadow..._Elliptical..._Erase every other Row..._Fade Outline..._Filter (regexp)_Flatland..._Font Map..._Frosty..._Fuzzy Border..._General Tube Labels..._Grid..._Hrule..._Labels_Land..._Lava..._Main Web Site_Old Photo..._Particle Trace..._Perspective..._Predator..._Rectangular..._Refresh Scripts_Remove all Guides_Rippling..._Round Button..._Round Corners..._Search:_Slide..._Small Header..._Sphere..._Spinning Globe..._Spyrogimp..._Start Server..._Swirly..._Text_Textured..._Tileable Blur..._Tube Button Label..._Unsharp Mask..._Waves..._Weave..._Xach-Effect...Project-Id-Version: gimp-script-fu.HEAD +%sEvenEven/oddFG-BG-HSVFG-BG-RGBFG-TransparentFade awayFade from %Fade to %FadeoutFadeout widthFeatheringFile nameFilenameFill BG with patternFill angleFill with BGFlatten imageFontFont _size (pixels)Font colorFont size (pixels)Foreground colorFrameFramesFrom top-left to bottom-rightGIMP ExtensionGIMP Plug-InGlo_ssy...Glo_wing Hot...Glow colorGlow radiusGlow size (pixels * 4)GradientGradient Beve_l...Gradient reverseGradient: Loop SawtoothGradient: Loop TriangleGranularityGranularity (1 is Low)Granularity (1 is low)Graph scaleH_eading...HeightHexagonHexagonsHighlight X offsetHighlight Y offsetHighlight balanceHighlight colorHighlight opacityHit rateHole ratioHorizontalIIRImage Types:Image heightImage sizeImage to carveImage widthImigre-26...Index imageIndex to n colors (0 = remain RGB)Inner teethInsert layer namesIntermediate framesInternal GIMP procedureInterpolationInvertInvert directionKeep backgroundKeep bump layerKeep selectionLand heightLeftLighting (degrees)Line _Nova...LinearLissajousLoopedLower colorLower color (active)Lower-right colorMake new backgroundMargin (pixels)Mask opacityMask sizeMax. blur radiusMosaic tile typeMottleN_eon...NameNew Guide (by _Percent)...New Guides from _SelectionNew _Guide...Newsprint Text...No background (only for separate layer)No matchesNoneNot pressedNot pressed (active)NumberNumber of X tilesNumber of Y tilesNumber of bandsNumber of colorsNumber of framesNumber of linesNumber of times to whirlOctagonsOddOffset (pixels)Offset XOffset YOffset radiusOffsets (pixels * 2)Oilify mask sizeOpacityOrientationOuter borderOuter teethOutline blur radiusOutline colorOutline gradient reverseOutline sizePad colorPad opacityPaddingPadding XPadding YPadding around textPadding for transparent regionsParametersPatternPattern (outline)Pattern (overlay)Pattern (text)Pattern namePencilPentagonPixel amountPixelizePlug-in _RegistryPolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPosition (in %)Prepare for GIFPressedProcedure BrowserQuarter sizeRLERadiusRadius (%)Radius (pixels)Random seedRandomnessRe_ctangular, Feathered...Relative distance of horizonRelative length of shadowRemove backgroundRender _Map...Return ValuesRibbon spacingRibbon widthRightRippling strengthRoughnessRound ratioRounded R_ectangle...RowsRows/colsSIOD OutputSOTA Chrome...Scale XScale YScript ArgumentsScript ProgressScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Palette SelectionScript-Fu Server OptionsScript-Fu _ConsoleScript-Fu cannot process two scripts at the same time.Script-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSea depthSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSelect-by-color thresholdSeparate layerSepiaServer Logfile:Server Port:ShadowShadow X offsetShadow Y offsetShadow blur radiusShadow colorShadow darknessShadow depthShadow weight (%)ShapeSharpness (degrees)Shear lengthShow Image _Structure...Simple _Beveled Button...SizeSmearSmoothSmooth horizontallySmooth verticallySolid ColorSpace between layersSpacingSpeed (pixels/frame)Speed Text...Sphere colorSpots density XSpots density YSpreadSpyrographSquareSquaresSta_rscape...StainsStarb_urst...Start XStart YStart angleStart blendStarting blendSupersampleSwirl-_Tile...T_ruchet...T_ube Sub-Button Label...Temporary ProcedureTextText Circle...Text colorText color (active)Text gradient reverseText patternThicknessThread densityThread intensityThread lengthThreshold (bigger 1<-->255 smaller)TileTo _Brush...To _ImageTo _Pattern...ToolTransparent backgroundTriangleTub_e Sub-Sub-Button Label...Turn from left to rightTypeUpUpper colorUpper color (active)Upper-left colorUse current gradientUse font _name as textUse growing selectionUse pattern for outline instead of gradientUse pattern for text instead of gradientUse pattern overlayUse selection bounds instead of belowsVerticalWavelengthWeb Title Header...Whirl amountWhirl angleWidthWidth of bandsWidth of gapsWork on copyWrapX divisionsY divisionsYou are already running the "%s" script._Arrow..._Basic I..._Big Header..._Blend..._Border (pixels)_Browse..._Bullet..._Camouflage..._Chalk..._Circuit..._Clothify..._Coffee Stain..._Color scheme_Developer Web Site_Distress Selection..._Drop-Shadow..._Elliptical..._Erase every other Row..._Fade Outline..._Filter (regexp)_Flatland..._Font Map..._Frosty..._Fuzzy Border..._General Tube Labels..._Grid..._Hrule..._Labels_Land..._Lava..._Main Web Site_Old Photo..._Particle Trace..._Perspective..._Predator..._Rectangular..._Refresh Scripts_Remove all Guides_Rippling..._Round Button..._Round Corners..._Search:_Slide..._Small Header..._Sphere..._Spinning Globe..._Spyrogimp..._Start Server..._Swirly..._Text_Textured..._Tileable Blur..._Tube Button Label..._Unsharp Mask..._Waves..._Weave..._Xach-Effect...Project-Id-Version: gimp-script-fu.HEAD Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:48+0100 +POT-Creation-Date: 2004-12-28 15:42+0100 PO-Revision-Date: 2004-11-27 11:58+0100 Last-Translator: Zdenko Podobný Language-Team: Slovak <> @@ -69,7 +64,7 @@ Content-Transfer-Encoding: 8bit X-Generator: KBabel 1.3 Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2); -%d procedúr%s:(nič)/Script-Fu/1 procedúra3D _obrys...3_D Truchet.../Script-Fu/Alchýmia/Script-Fu/Alfa do loga/Script-Fu/Animátory/Script-Fu/Dekorácia/Script-Fu/Generovanie/Script-Fu/Výber/Script-Fu/Tieň/Script-Fu/Šablóny/Script-Fu/Pomôcky/Pomocník/GIMP online/Rozš./Script-Fu/Rozš./Script-Fu/Tlačítka/Rozš./Script-Fu/Logá/Rozš./Script-Fu/Vytvoriť štetec/Rozš./Script-Fu/Rôzne/Rozš./Script-Fu/Vzorky/Rozš./Script-Fu/Pomôcky/Rozš./Script-Fu/Témy pre web stránky/Mimozemská žiara/Rozš./Script-Fu/Témy pre web stránky/Skosený vzor/Rozš./Script-Fu/Témy pre web stránky/Klasický.Gimp.orgAktívne farbyPridať _skorenie...Pridať o_kraj...Pridať pozadiePridať vrhanie tieňaPridať vyžarovaniePridať tieňĎalšie informáciePo žiareRozprašovačMimo_zemská žiara...Mimozemský _neón...Povoliť zmenu veľkostiRozkmitUholVyhladzovaniePoužiť generovanú masku vrstyPoužiť masku vrstvy (alebo zahodiť)Autor:Automatické orezanieAzimutKrytie pozadiaZ_ákladné II..._Vpálenie...Tlačí_tko...Farba pozadiaObrázok na pozadíFarba pozadiaObrázok pozadiaZákladná farbaChovanieVýška skosenia (ostrosť)Výška skosenia (ostrosť)Šírka skosenia:ČiernaČierna na bielomMie_šané...Prechod miešania (text)Prechod miešania (obrys)Prechod miešania (text)Režim miešaniaVeľkosť blokuRozmazanie XRozmazanie YMiera rozmazaniaHranica rozmazaniaRozmazať vodorovnePolomer rozostreniaTyp rozostreniaRozmazať zvisle_Flaky...Veľkosť okraja XVeľkosť okraja YFarba okrajaVeľkosť okrajaVeľkosť ohraničenia (v bodoch)ŠtetecNázov štetcaVeľkosť zásobníka (% výšky textu)Polomer rozmazania mapy vyvýšenia (alfa vrstvy)Vpálenie: Potrebné sú celkom dve vrstvy!Farba prenikania_Vyrezať-to...Pochrómuj-to...Chrómovať...Vyrezať zvýšený textVyrezať biele oblastiRezba...Veľkosť bunky (v bodoch)Farba kriedy_Odštiepiť...Miera odštiepeniaVyváženosť chrómovaniaFaktor chrómovaniaSvetlosť chrómovaniaSýtosť chrómovaniaPochrómovať biele oblastiKruhHniezdo okruhuVymazať nevybrané oblasti maskyFarbaFarba 1Farba 2Farba 3Farebná metódaStĺpce_Kniha komiksov...KonkávaSt_udený kov...Copyright:Šírka koronyVytvoriť nový obrázokVytvoriť tieňVytvorí štyri vodítka okolo ohraničujúcej plochy zvoleného výberu.Kryštál...KubickáAktuálny príkazVlastný prechodV_lastný prechod...Tmavá farbaIba stmaviť +%d procedúr%s:(nič)/Script-Fu/1 procedúra3D _obrys...3_D Truchet.../Script-Fu/Alchýmia/Script-Fu/Alfa do loga/Script-Fu/Animátory/Script-Fu/Dekorácia/Script-Fu/Generovanie/Script-Fu/Výber/Script-Fu/Tieň/Script-Fu/Šablóny/Script-Fu/Pomôcky/Pomocník/GIMP online/Rozš./Script-Fu/Rozš./Script-Fu/Tlačítka/Rozš./Script-Fu/Logá/Rozš./Script-Fu/Vytvoriť štetec/Rozš./Script-Fu/Rôzne/Rozš./Script-Fu/Vzorky/Rozš./Script-Fu/Pomôcky/Rozš./Script-Fu/Témy pre web stránky/Mimozemská žiara/Rozš./Script-Fu/Témy pre web stránky/Skosený vzor/Rozš./Script-Fu/Témy pre web stránky/Klasický.Gimp.orgAktívne farbyPridať _skorenie...Pridať o_kraj...Pridať pozadiePridať vrhanie tieňaPridať vyžarovaniePridať tieňĎalšie informáciePo žiareRozprašovačMimo_zemská žiara...Mimozemský _neón...Povoliť zmenu veľkostiRozkmitUholVyhladzovaniePoužiť generovanú masku vrstyPoužiť masku vrstvy (alebo zahodiť)Autor:Automatické orezanieAzimutKrytie pozadiaZ_ákladné II..._Vpálenie...Tlačí_tko...Farba pozadiaObrázok na pozadíFarba pozadiaObrázok pozadiaZákladná farbaChovanieVýška skosenia (ostrosť)Výška skosenia (ostrosť)Šírka skosenia:ČiernaČierna na bielomMie_šané...Prechod miešania (text)Prechod miešania (obrys)Prechod miešania (text)Režim miešaniaVeľkosť blokuRozmazanie XRozmazanie YMiera rozmazaniaHranica rozmazaniaRozmazať vodorovnePolomer rozostreniaTyp rozostreniaRozmazať zvisle_Flaky...Veľkosť okraja XVeľkosť okraja YFarba okrajaVeľkosť okrajaVeľkosť ohraničenia (v bodoch)ŠtetecNázov štetcaPolomer rozmazania mapy vyvýšenia (alfa vrstvy)Vpálenie: Potrebné sú celkom dve vrstvy!Farba prenikania_Vyrezať-to...Pochrómuj-to...Chrómovať...Vyrezať zvýšený textVyrezať biele oblastiRezba...Veľkosť bunky (v bodoch)Farba kriedy_Odštiepiť...Miera odštiepeniaVyváženosť chrómovaniaFaktor chrómovaniaSvetlosť chrómovaniaSýtosť chrómovaniaPochrómovať biele oblastiKruhHniezdo okruhuVymazať nevybrané oblasti maskyFarbaFarba 1Farba 2Farba 3Farebná metódaStĺpce_Kniha komiksov...KonkávaSt_udený kov...Copyright:Šírka koronyVytvoriť nový obrázokVytvoriť tieňVytvorí štyri vodítka okolo ohraničujúcej plochy zvoleného výberu.Kryštál...KubickáAktuálny príkazVlastný prechodV_lastný prechod...Tmavá farbaIba stmaviť (Lepšie, ale len pre obrázky s množstvom bielej)Dátum:Štandardné nastavenie mapy vyvýšeniaRozostrenieDelta hodnota farbyIntenzita (%)HĺbkaDetaily v stredeÚroveň detailovPriemerSmerDoleKresliť _HSV graf...Kreslí Spirografy, Epitrochoidy a Lissajouské krivky. Viac informácií na http://netword.com/*spyrogimpVrhanie tieňaPosun X vrhaného tieňaPosun Y vrhaného tieňaPolomer rozmazania vrhaného tieňaFarba vrhaného tieňaKrytie vrhaného tieňaMiera hránSprávanie sa hránIba hranaPolomer hranyŠírka hranyVeľkosť efektu (v bodoch *3)Veľkosť efektu (v bodoch * 30)Veľkosť efektu (v bodoch *4)Veľkosť efektu (v bodoch *5)Veľkosť efektu (body)ZdvihEliptycké, neostré...Koniec XKoniec YSplývanie koncaKoncové splývanieMapa prostrediaEpitrochoidZmazaťZmazať/VyplniťChyba počas spúšťania %s -%sPárnyPárny/NepárnyPopredie-pozadie-HSVPopredie-pozadie-RGBTransparentné popredieVyblednúťVyblednúť z %Vyblednúť do %ZanikanieŠírka miznutiaNeostrosťNázov súboruMeno súboruVyplniť pozadie so vzorkouUhol výplneVyplniť s pozadímDo jednej vrstvyPísmoVeľkosť pí_sma (v bodoch)Farba písmaVeľkosť písma (v bodoch)Farba poprediaRámRámyZľava hore doprava doleRozšírenie programu GIMPGIMP modul_Lesk..._Sálajúca žiara...Farba žiaryPolomer žiaryVeľkosť žiary (body * 4)Prechod_Skosený prechod...Obrátený prechodPrechod: Cyklická pílaPrechod: Cyklický trojuholníkZrnitosťZrnitosť (1 je malá)Zrnitosť (1 je malá)Mierka grafuNadp_is...VýškaŠesťuholníkŠesťuholníkPosun X svetielPosun Y svetielVyváženie svetielFarba zvýrazneniaKrytie svetielPomer úderovMiera dierVodorovneIIRTyp obrázka:Výška obrázkaVeľkosť obrázkaObrázok na vyrezanieŠírka obrázkaImigre-26...Indexový obrázokIndexovaný v n farbách (0 = nechá RGB)Vnútorné zubyVložiť názvy vrstievMedziľahlé políčkaInterná procedúra GIMPInterpoláciaInvertovaťObrátiť smerNemeniť pozadieUchovať vrstvu vyvýšeniaUchovať výberVýška zemeVľavoOsvetlenie (v stupňoch)Čiarová _nova...LineárnaLissajouskéSlučkaDolná farbaDolná farba (aktívna)Dolná pravá farbaVytvoriť nové pozadieOkraj (v bodoch)Krytie maskyVeľkosť maskyMax. polomer rozmazaniaTyp dlaždicovania mozaikyŠkvrnkaN_eón...NázovNové vodítka (podľa _percent)...Nové vodítka z výberuNové v_odítko...Novinový text...Bez pozadia (iba pre oddelenú vrstvu)NenájdenéžiadnaNestlačenéNestlačené (aktívne)PočetPočet X dlaždícPočet Y dlaždícPočet pruhovPočet fariebPočet s_nímok:Počet čiarPočet opakovaní zvlneniaOsemuholníkNepárnyPosun (v bodoch)Posun XPosun YPolomer posunuPosun (v bodoch * 2)Veľkosť masky olejomaľbyKrytieOrientáciaVonkajšia hranicaVonkajšie zubyPolomer rozmazania obrysuFarba obrysuObrátený prechod obrysuVeľkosť obrysuFarba výplneKrytie výplneVýplňVýplň XVýplň YVýplň okolo textuVýplň pre priesvitné oblastiParametreVzorkaVzorka (obrys)Vzorka (prerytie)Vzorka (text)Názov vzorkyCeruzkaPäťuholníkVeľkosť bodovPixelizovať_Register zásuvných modulovMnohouholník: 10 stránMnohouholník: 7 stránMnohouholník: 8 stránMnohouholník: 9 stránPozícia (v %)Prepraviť pre GIFStlačenéPrehliadač procedúrŠtvrtinová veľkosťRLEPolomerPolomer (%)Polomer (v bodoch)Hniezdo náhodných číselNáhodnosťObdĺžníkové , neostré...Relatívna vzdialenosť horizontuRelatívna dĺžka tieňaOdstrániť pozadieGenerovať _mapu...Návratové hodnotyRozostup pásovŠírka pásovVpravoSila zvlneniaDrsnosťPomer zaobleniaZaobl_ený obdĺžnik...RiadkyRiadky/StĺpceSIOD výstupSOTA chróm...Zväčšenie XZväčšenie YArgumenty skriptuPriebeh skriptuScript-Fu výber štetcaScript-Fu výber farbyScript-Fu konzolaScript-Fu výber súboruScript-Fu výber priečinkaScript-Fu výber písmaScript-Fu výber prechoduScript-Fu výber farbyNastavenia Script-Fu serveraScript-Fu konzolaScript-Fu nemôže spracovať dva skritpy v rovnakom časeIba interaktívne spustenie umožňuje režim Script-Fu konzolyIba neinteraktívne spustenie umožňuje režim vyhodnocovanie Script-FuScript-Fu: %sScript-Fu výber vzorkyHĺbka moraHľadanie podľa _popisuHľadať podľa _názvuHľadanie - čakajte prosímHľadanie podľa popisu - čakajte prosímHľadanie podľa názvu - čakajte prosímHniezdoPrah výberu podľa farbyOddelená vrstvaSépiaProtokol servera:Port servera:TieňX posun tieňaY posun tieňaPolomer rozmazania tieňaFarba tieňaTmavosť tieňaHĺbka tieňaVýška tieňa (%)TvarOstrosť (v stupňoch)Dĺžka strihuZobraziť _štruktúru dokumentu...Jednoduché skosené _tlačítko...VeľkosťRozmazaťVyhladiťVyhladiť vodorovneVyhladiť zvisloJednoliata farbaRozostup medzi vrstvamiRozostupRýchlosť (body/políčko)Rýchly text...Farba guleX hustota bodiekY hustota bodiekRoztiahnuťSpyrografŠtvorecŠtvorceP_renikanie hviezd...Škvrny_Prenikanie hviezd...X začiatokY začiatokPočiatočný uholZačiatok miešaniaPočiatočné miešaniePrevzorkovanieVírivá _dlaždica...T_ruchet...Nápis podtlačítka na tr_ubici...Dočasná procedúraTextTextový kruhFarba textuFarba textu (aktívna)Obrátený prechod textuVzorka textuHrúbkaHustota vláknaIntenzita vláknaDĺžka vláknaPrah (väčší 1<-->255 menší)DlaždiceDo štetca...Do o_brázkuDo _vzorky...NástrojPriesvitné pozadieTrojuholníkNápis podpodtlačítka na tr_ubici...Točiť zľava dopravaTypHoreHorná farbaHorná farba (aktívna)Ľavá horná farbaPoužiť aktuálny prechodPoužívať _názov písma ako textPoužiť rastúci výberNamiesto prechodu použiť na obrys vzorkuNamiesto vzorky použiť na text prechodPoužiť prekrytie vzoriekPoužiť hranice výberu namiesto nižšie uvedenéhoZvisleVlnová dĺžkaHlavička web nadpisu...Miera zvlneniaUhol vírenia:ŠírkaŠírka pruhovŠírka medzierPracovať s kópiouZalamovaťRozdelenie XRozdelenie YUž spúšťate skript "%s"._ASCII do obrázku_ASCII do vrstvyŠípk_a..._Základné I...Ve_ľká hlavička..._Miešať..._Okraj (v bodoch)_Prechádzať..._Bodka..._Kamufláž..._Krieda...O_bvod..._Plátno..._Kávová škrna..._Farebná schéma_Web stránka pre vývojárovNú_dzový výber..._Vrhnúť tieň..._Eliptický..._Vymazať každý druhý riadok..._Pozvolný obrys..._Filter (regexp)_Rovina..._Mapa písma..._Mrazivo...N_eostrý okraj..._Všeobecné označenia na trubici..._Mriežka..._Vodorovné pravítko..._Označenia_Zem..._Láva..._Hlavná web stránkaStará f_otografia...Sto_pa častíc..._Perspektíva..._Predátor..._Obdĺžnikový..._Znovunačítať skripty_Odstrániť všetky vodítkaV_lnenie..._Oblé tlačítko..._Zaobliť rohy..._Hľadať:_Snímka..._Malá hlavička..._Guľa..._Rotujúci glóbus..._Spyrogimp...Štart _servera..._Vírivé..._Text_Textúrované..._Dlaždicoviteľné rozmazanie...Označenie _tlačítka na trubici..._Rozostriť masku..._Vlny..._Tkať...Efekt _Xach... \ No newline at end of file +%sPárnyPárny/NepárnyPopredie-pozadie-HSVPopredie-pozadie-RGBTransparentné popredieVyblednúťVyblednúť z %Vyblednúť do %ZanikanieŠírka miznutiaNeostrosťNázov súboruMeno súboruVyplniť pozadie so vzorkouUhol výplneVyplniť s pozadímDo jednej vrstvyPísmoVeľkosť pí_sma (v bodoch)Farba písmaVeľkosť písma (v bodoch)Farba poprediaRámRámyZľava hore doprava doleRozšírenie programu GIMPGIMP modul_Lesk..._Sálajúca žiara...Farba žiaryPolomer žiaryVeľkosť žiary (body * 4)Prechod_Skosený prechod...Obrátený prechodPrechod: Cyklická pílaPrechod: Cyklický trojuholníkZrnitosťZrnitosť (1 je malá)Zrnitosť (1 je malá)Mierka grafuNadp_is...VýškaŠesťuholníkŠesťuholníkPosun X svetielPosun Y svetielVyváženie svetielFarba zvýrazneniaKrytie svetielPomer úderovMiera dierVodorovneIIRTyp obrázka:Výška obrázkaVeľkosť obrázkaObrázok na vyrezanieŠírka obrázkaImigre-26...Indexový obrázokIndexovaný v n farbách (0 = nechá RGB)Vnútorné zubyVložiť názvy vrstievMedziľahlé políčkaInterná procedúra GIMPInterpoláciaInvertovaťObrátiť smerNemeniť pozadieUchovať vrstvu vyvýšeniaUchovať výberVýška zemeVľavoOsvetlenie (v stupňoch)Čiarová _nova...LineárnaLissajouskéSlučkaDolná farbaDolná farba (aktívna)Dolná pravá farbaVytvoriť nové pozadieOkraj (v bodoch)Krytie maskyVeľkosť maskyMax. polomer rozmazaniaTyp dlaždicovania mozaikyŠkvrnkaN_eón...NázovNové vodítka (podľa _percent)...Nové vodítka z výberuNové v_odítko...Novinový text...Bez pozadia (iba pre oddelenú vrstvu)NenájdenéžiadnaNestlačenéNestlačené (aktívne)PočetPočet X dlaždícPočet Y dlaždícPočet pruhovPočet fariebPočet s_nímok:Počet čiarPočet opakovaní zvlneniaOsemuholníkNepárnyPosun (v bodoch)Posun XPosun YPolomer posunuPosun (v bodoch * 2)Veľkosť masky olejomaľbyKrytieOrientáciaVonkajšia hranicaVonkajšie zubyPolomer rozmazania obrysuFarba obrysuObrátený prechod obrysuVeľkosť obrysuFarba výplneKrytie výplneVýplňVýplň XVýplň YVýplň okolo textuVýplň pre priesvitné oblastiParametreVzorkaVzorka (obrys)Vzorka (prerytie)Vzorka (text)Názov vzorkyCeruzkaPäťuholníkVeľkosť bodovPixelizovať_Register zásuvných modulovMnohouholník: 10 stránMnohouholník: 7 stránMnohouholník: 8 stránMnohouholník: 9 stránPozícia (v %)Prepraviť pre GIFStlačenéPrehliadač procedúrŠtvrtinová veľkosťRLEPolomerPolomer (%)Polomer (v bodoch)Hniezdo náhodných číselNáhodnosťObdĺžníkové , neostré...Relatívna vzdialenosť horizontuRelatívna dĺžka tieňaOdstrániť pozadieGenerovať _mapu...Návratové hodnotyRozostup pásovŠírka pásovVpravoSila zvlneniaDrsnosťPomer zaobleniaZaobl_ený obdĺžnik...RiadkyRiadky/StĺpceSIOD výstupSOTA chróm...Zväčšenie XZväčšenie YArgumenty skriptuPriebeh skriptuScript-Fu výber štetcaScript-Fu výber farbyScript-Fu konzolaScript-Fu výber súboruScript-Fu výber priečinkaScript-Fu výber písmaScript-Fu výber prechoduScript-Fu výber farbyNastavenia Script-Fu serveraScript-Fu konzolaScript-Fu nemôže spracovať dva skritpy v rovnakom časeIba interaktívne spustenie umožňuje režim Script-Fu konzolyIba neinteraktívne spustenie umožňuje režim vyhodnocovanie Script-FuScript-Fu: %sScript-Fu výber vzorkyHĺbka moraHľadanie podľa _popisuHľadať podľa _názvuHľadanie - čakajte prosímHľadanie podľa popisu - čakajte prosímHľadanie podľa názvu - čakajte prosímHniezdoPrah výberu podľa farbyOddelená vrstvaSépiaProtokol servera:Port servera:TieňX posun tieňaY posun tieňaPolomer rozmazania tieňaFarba tieňaTmavosť tieňaHĺbka tieňaVýška tieňa (%)TvarOstrosť (v stupňoch)Dĺžka strihuZobraziť _štruktúru dokumentu...Jednoduché skosené _tlačítko...VeľkosťRozmazaťVyhladiťVyhladiť vodorovneVyhladiť zvisloJednoliata farbaRozostup medzi vrstvamiRozostupRýchlosť (body/políčko)Rýchly text...Farba guleX hustota bodiekY hustota bodiekRoztiahnuťSpyrografŠtvorecŠtvorceP_renikanie hviezd...Škvrny_Prenikanie hviezd...X začiatokY začiatokPočiatočný uholZačiatok miešaniaPočiatočné miešaniePrevzorkovanieVírivá _dlaždica...T_ruchet...Nápis podtlačítka na tr_ubici...Dočasná procedúraTextTextový kruhFarba textuFarba textu (aktívna)Obrátený prechod textuVzorka textuHrúbkaHustota vláknaIntenzita vláknaDĺžka vláknaPrah (väčší 1<-->255 menší)DlaždiceDo štetca...Do o_brázkuDo _vzorky...NástrojPriesvitné pozadieTrojuholníkNápis podpodtlačítka na tr_ubici...Točiť zľava dopravaTypHoreHorná farbaHorná farba (aktívna)Ľavá horná farbaPoužiť aktuálny prechodPoužívať _názov písma ako textPoužiť rastúci výberNamiesto prechodu použiť na obrys vzorkuNamiesto vzorky použiť na text prechodPoužiť prekrytie vzoriekPoužiť hranice výberu namiesto nižšie uvedenéhoZvisleVlnová dĺžkaHlavička web nadpisu...Miera zvlneniaUhol vírenia:ŠírkaŠírka pruhovŠírka medzierPracovať s kópiouZalamovaťRozdelenie XRozdelenie YUž spúšťate skript "%s".Šípk_a..._Základné I...Ve_ľká hlavička..._Miešať..._Okraj (v bodoch)_Prechádzať..._Bodka..._Kamufláž..._Krieda...O_bvod..._Plátno..._Kávová škrna..._Farebná schéma_Web stránka pre vývojárovNú_dzový výber..._Vrhnúť tieň..._Eliptický..._Vymazať každý druhý riadok..._Pozvolný obrys..._Filter (regexp)_Rovina..._Mapa písma..._Mrazivo...N_eostrý okraj..._Všeobecné označenia na trubici..._Mriežka..._Vodorovné pravítko..._Označenia_Zem..._Láva..._Hlavná web stránkaStará f_otografia...Sto_pa častíc..._Perspektíva..._Predátor..._Obdĺžnikový..._Znovunačítať skripty_Odstrániť všetky vodítkaV_lnenie..._Oblé tlačítko..._Zaobliť rohy..._Hľadať:_Snímka..._Malá hlavička..._Guľa..._Rotujúci glóbus..._Spyrogimp...Štart _servera..._Vírivé..._Text_Textúrované..._Dlaždicoviteľné rozmazanie...Označenie _tlačítka na trubici..._Rozostriť masku..._Vlny..._Tkať...Efekt _Xach... \ No newline at end of file diff -uraN gimp-2.2.0/po-script-fu/sk.po gimp-2.2.1/po-script-fu/sk.po --- gimp-2.2.0/po-script-fu/sk.po 2004-12-19 03:34:30.000000000 +0100 +++ gimp-2.2.1/po-script-fu/sk.po 2004-12-28 16:59:14.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: gimp-script-fu.HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:48+0100\n" +"POT-Creation-Date: 2004-12-28 15:42+0100\n" "PO-Revision-Date: 2004-11-27 11:58+0100\n" "Last-Translator: Zdenko Podobný \n" "Language-Team: Slovak <>\n" @@ -321,7 +321,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:5 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:4 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:6 -#: plug-ins/script-fu/scripts/asc2img.scm.h:8 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:4 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:5 #: plug-ins/script-fu/scripts/beveled-button.scm.h:3 @@ -362,7 +361,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:6 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:5 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:7 -#: plug-ins/script-fu/scripts/asc2img.scm.h:9 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:5 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:6 #: plug-ins/script-fu/scripts/beveled-button.scm.h:4 @@ -490,7 +488,6 @@ #: plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:2 #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:3 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:4 -#: plug-ins/script-fu/scripts/asc2img.scm.h:3 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:3 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:4 #: plug-ins/script-fu/scripts/blended-logo.scm.h:3 @@ -705,7 +702,6 @@ msgstr "Výplň" #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:11 -#: plug-ins/script-fu/scripts/asc2img.scm.h:10 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:7 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:8 #: plug-ins/script-fu/scripts/beveled-button.scm.h:10 @@ -748,48 +744,6 @@ msgid "Width of gaps" msgstr "Šírka medzier" -#: plug-ins/script-fu/scripts/asc2img.scm.h:1 -#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 -#: plug-ins/script-fu/scripts/image-structure.scm.h:1 -msgid "/Script-Fu/Utils" -msgstr "/Script-Fu/Pomôcky" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:2 -#: plug-ins/script-fu/scripts/font-map.scm.h:1 -#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 -msgid "/Xtns/Script-Fu/Utils" -msgstr "/Rozš./Script-Fu/Pomôcky" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:5 -#, no-c-format -msgid "Buffer amount (% height of text)" -msgstr "Veľkosť zásobníka (% výšky textu)" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:6 -#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 -msgid "File name" -msgstr "Názov súboru" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:7 -#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 -msgid "Filename" -msgstr "Meno súboru" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:11 -#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 -#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 -#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 -msgid "Transparent background" -msgstr "Priesvitné pozadie" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:12 -msgid "_ASCII to Image..." -msgstr "_ASCII do obrázku" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:13 -msgid "_ASCII to Layer..." -msgstr "_ASCII do vrstvy" - #: plug-ins/script-fu/scripts/basic1-logo.scm.h:8 msgid "_Basic I..." msgstr "_Základné I..." @@ -839,6 +793,12 @@ msgid "Diameter" msgstr "Priemer" +#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 +#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 +#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 +msgid "Transparent background" +msgstr "Priesvitné pozadie" + #: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:4 msgid "H_eading..." msgstr "Nadp_is..." @@ -1431,6 +1391,11 @@ msgid "_Flatland..." msgstr "_Rovina..." +#: plug-ins/script-fu/scripts/font-map.scm.h:1 +#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 +msgid "/Xtns/Script-Fu/Utils" +msgstr "/Rozš./Script-Fu/Pomôcky" + #: plug-ins/script-fu/scripts/font-map.scm.h:2 msgid "Active colors" msgstr "Aktívne farby" @@ -1698,6 +1663,11 @@ msgid "_Remove all Guides" msgstr "_Odstrániť všetky vodítka" +#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 +#: plug-ins/script-fu/scripts/image-structure.scm.h:1 +msgid "/Script-Fu/Utils" +msgstr "/Script-Fu/Pomôcky" + #: plug-ins/script-fu/scripts/hsv-graph.scm.h:2 msgid "BG opacity" msgstr "Krytie pozadia" @@ -2073,6 +2043,10 @@ msgid "Brush name" msgstr "Názov štetca" +#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 +msgid "File name" +msgstr "Názov súboru" + #: plug-ins/script-fu/scripts/select-to-brush.scm.h:5 msgid "To _Brush..." msgstr "Do štetca..." @@ -2081,6 +2055,10 @@ msgid "To _Image" msgstr "Do o_brázku" +#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 +msgid "Filename" +msgstr "Meno súboru" + #: plug-ins/script-fu/scripts/select-to-pattern.scm.h:3 msgid "Pattern name" msgstr "Názov vzorky" @@ -2539,5 +2517,14 @@ msgid "_Xach-Effect..." msgstr "Efekt _Xach..." +#~ msgid "Buffer amount (% height of text)" +#~ msgstr "Veľkosť zásobníka (% výšky textu)" + +#~ msgid "_ASCII to Image..." +#~ msgstr "_ASCII do obrázku" + +#~ msgid "_ASCII to Layer..." +#~ msgstr "_ASCII do vrstvy" + #~ msgid "Copy _Visible" #~ msgstr "Kopírovať _viditeľné" diff -uraN gimp-2.2.0/po-script-fu/sr.gmo gimp-2.2.1/po-script-fu/sr.gmo --- gimp-2.2.0/po-script-fu/sr.gmo 2004-12-19 03:34:33.000000000 +0100 +++ gimp-2.2.1/po-script-fu/sr.gmo 2004-12-28 16:59:17.000000000 +0100 @@ -29,7 +29,7 @@ %s %sEvenFG-BG-HSVFG-BG-RGBFG-TransparentFadeoutFeatheringFilenameFill with BGFontFrameFramesGradientGradient: Loop SawtoothGradient: Loop TriangleGranularityGranularity (1 is Low)HeightHexagonHexagonsIIRImage Types:InvertInvert directionLeftLighting (degrees)LissajousLoopedMargin (pixels)MottleNo matchesNumberOctagonsOddOffset (pixels)Offset XOffset YOffsets (pixels * 2)OpacityOrientationPaddingPadding XPadding YPatternPencilPentagonPixelizePolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPrepare for GIFPressedRLERadiusRadius (pixels)RandomnessRightRoughnessRowsSIOD OutputScale XScale YScript ArgumentsScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Server OptionsScript-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSepiaServer Logfile:Server Port:ShadowShapeSharpness (degrees)SizeSmearSmoothSolid ColorSpacingSpeed (pixels/frame)Spots density XSpots density YSpreadSpyrographSquareSquaresStainsStart XStart YSupersampleTextThicknessTileToolTriangleTypeUpWavelengthWidthWrap_Border (pixels)_Filter (regexp)_Labels_Search:_TextProject-Id-Version: gimp-script-fu Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:48+0100 +POT-Creation-Date: 2004-12-28 15:42+0100 PO-Revision-Date: 2004-08-08 14:24+0200 Last-Translator: Бранко Ивановић Language-Team: Serbian (sr) diff -uraN gimp-2.2.0/po-script-fu/sr@Latn.gmo gimp-2.2.1/po-script-fu/sr@Latn.gmo --- gimp-2.2.0/po-script-fu/sr@Latn.gmo 2004-12-19 03:34:33.000000000 +0100 +++ gimp-2.2.1/po-script-fu/sr@Latn.gmo 2004-12-28 16:59:17.000000000 +0100 @@ -19,7 +19,7 @@ %s %sEvenFG-BG-HSVFG-BG-RGBFG-TransparentFadeoutFeatheringFilenameFill with BGFontFrameFramesGradientGradient: Loop SawtoothGradient: Loop TriangleGranularityGranularity (1 is Low)HeightHexagonHexagonsIIRImage Types:InvertInvert directionLeftLighting (degrees)LissajousLoopedMargin (pixels)MottleNo matchesNumberOctagonsOddOffset (pixels)Offset XOffset YOffsets (pixels * 2)OpacityOrientationPaddingPadding XPadding YPatternPencilPentagonPixelizePolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPrepare for GIFPressedRLERadiusRadius (pixels)RandomnessRightRoughnessRowsSIOD OutputScale XScale YScript ArgumentsScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Server OptionsScript-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSepiaServer Logfile:Server Port:ShadowShapeSharpness (degrees)SizeSmearSmoothSolid ColorSpacingSpeed (pixels/frame)Spots density XSpots density YSpreadSpyrographSquareSquaresStainsStart XStart YSupersampleTextThicknessTileToolTriangleTypeUpWavelengthWidthWrap_Border (pixels)_Filter (regexp)_Labels_Search:_TextProject-Id-Version: gimp-script-fu Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:48+0100 +POT-Creation-Date: 2004-12-28 15:42+0100 PO-Revision-Date: 2004-08-08 14:24+0200 Last-Translator: Branko Ivanović Language-Team: Serbian (sr) diff -uraN gimp-2.2.0/po-script-fu/sr@Latn.po gimp-2.2.1/po-script-fu/sr@Latn.po --- gimp-2.2.0/po-script-fu/sr@Latn.po 2004-12-19 03:34:31.000000000 +0100 +++ gimp-2.2.1/po-script-fu/sr@Latn.po 2004-12-28 16:59:14.000000000 +0100 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: gimp-script-fu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:48+0100\n" +"POT-Creation-Date: 2004-12-28 15:42+0100\n" "PO-Revision-Date: 2004-08-08 14:24+0200\n" "Last-Translator: Branko Ivanović \n" "Language-Team: Serbian (sr) \n" @@ -332,7 +332,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:5 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:4 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:6 -#: plug-ins/script-fu/scripts/asc2img.scm.h:8 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:4 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:5 #: plug-ins/script-fu/scripts/beveled-button.scm.h:3 @@ -373,7 +372,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:6 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:5 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:7 -#: plug-ins/script-fu/scripts/asc2img.scm.h:9 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:5 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:6 #: plug-ins/script-fu/scripts/beveled-button.scm.h:4 @@ -507,7 +505,6 @@ #: plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:2 #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:3 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:4 -#: plug-ins/script-fu/scripts/asc2img.scm.h:3 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:3 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:4 #: plug-ins/script-fu/scripts/blended-logo.scm.h:3 @@ -744,7 +741,6 @@ msgstr "Podloga" #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:11 -#: plug-ins/script-fu/scripts/asc2img.scm.h:10 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:7 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:8 #: plug-ins/script-fu/scripts/beveled-button.scm.h:10 @@ -793,53 +789,6 @@ msgid "Width of gaps" msgstr "Širina Pukotina" -#: plug-ins/script-fu/scripts/asc2img.scm.h:1 -#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 -#: plug-ins/script-fu/scripts/image-structure.scm.h:1 -#, fuzzy -msgid "/Script-Fu/Utils" -msgstr "/Skript-Fu/Uslužni/_ASCII u sloj..." - -#: plug-ins/script-fu/scripts/asc2img.scm.h:2 -#: plug-ins/script-fu/scripts/font-map.scm.h:1 -#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 -#, fuzzy -msgid "/Xtns/Script-Fu/Utils" -msgstr "/Proširenja/Skript-Fu/Logotip/Neonka..." - -#: plug-ins/script-fu/scripts/asc2img.scm.h:5 -#, fuzzy, no-c-format -msgid "Buffer amount (% height of text)" -msgstr "Vrijednost bafera (% Visine Teksta)" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:6 -#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 -#, fuzzy -msgid "File name" -msgstr "Naziv Datoteke" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:7 -#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 -msgid "Filename" -msgstr "Naziv Datoteke" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:11 -#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 -#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 -#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 -#, fuzzy -msgid "Transparent background" -msgstr "Providna Pozadina" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:12 -msgid "_ASCII to Image..." -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:13 -#, fuzzy -msgid "_ASCII to Layer..." -msgstr "/Skript-Fu/Uslužni/_ASCII u sloj..." - #: plug-ins/script-fu/scripts/basic1-logo.scm.h:8 msgid "_Basic I..." msgstr "" @@ -895,6 +844,13 @@ msgid "Diameter" msgstr "Prečnik" +#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 +#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 +#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 +#, fuzzy +msgid "Transparent background" +msgstr "Providna Pozadina" + #: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:4 msgid "H_eading..." msgstr "" @@ -1553,6 +1509,12 @@ msgid "_Flatland..." msgstr "" +#: plug-ins/script-fu/scripts/font-map.scm.h:1 +#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 +#, fuzzy +msgid "/Xtns/Script-Fu/Utils" +msgstr "/Proširenja/Skript-Fu/Logotip/Neonka..." + #: plug-ins/script-fu/scripts/font-map.scm.h:2 #, fuzzy msgid "Active colors" @@ -1860,6 +1822,12 @@ msgid "_Remove all Guides" msgstr "" +#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 +#: plug-ins/script-fu/scripts/image-structure.scm.h:1 +#, fuzzy +msgid "/Script-Fu/Utils" +msgstr "/Skript-Fu/Uslužni/_ASCII u sloj..." + #: plug-ins/script-fu/scripts/hsv-graph.scm.h:2 #, fuzzy msgid "BG opacity" @@ -2281,6 +2249,11 @@ msgid "Brush name" msgstr "Ime četke" +#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 +#, fuzzy +msgid "File name" +msgstr "Naziv Datoteke" + #: plug-ins/script-fu/scripts/select-to-brush.scm.h:5 #, fuzzy msgid "To _Brush..." @@ -2290,6 +2263,10 @@ msgid "To _Image" msgstr "" +#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 +msgid "Filename" +msgstr "Naziv Datoteke" + #: plug-ins/script-fu/scripts/select-to-pattern.scm.h:3 #, fuzzy msgid "Pattern name" @@ -2804,6 +2781,14 @@ msgid "_Xach-Effect..." msgstr "" +#, fuzzy +#~ msgid "Buffer amount (% height of text)" +#~ msgstr "Vrijednost bafera (% Visine Teksta)" + +#, fuzzy +#~ msgid "_ASCII to Layer..." +#~ msgstr "/Skript-Fu/Uslužni/_ASCII u sloj..." + #~ msgid "/Xtns/Script-Fu/_Refresh Scripts" #~ msgstr "/Proširenja/Skript-Fu/_Osveži skripte" diff -uraN gimp-2.2.0/po-script-fu/sr.po gimp-2.2.1/po-script-fu/sr.po --- gimp-2.2.0/po-script-fu/sr.po 2004-12-19 03:34:30.000000000 +0100 +++ gimp-2.2.1/po-script-fu/sr.po 2004-12-28 16:59:14.000000000 +0100 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: gimp-script-fu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:48+0100\n" +"POT-Creation-Date: 2004-12-28 15:42+0100\n" "PO-Revision-Date: 2004-08-08 14:24+0200\n" "Last-Translator: Бранко Ивановић \n" "Language-Team: Serbian (sr) \n" @@ -332,7 +332,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:5 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:4 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:6 -#: plug-ins/script-fu/scripts/asc2img.scm.h:8 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:4 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:5 #: plug-ins/script-fu/scripts/beveled-button.scm.h:3 @@ -373,7 +372,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:6 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:5 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:7 -#: plug-ins/script-fu/scripts/asc2img.scm.h:9 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:5 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:6 #: plug-ins/script-fu/scripts/beveled-button.scm.h:4 @@ -507,7 +505,6 @@ #: plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:2 #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:3 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:4 -#: plug-ins/script-fu/scripts/asc2img.scm.h:3 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:3 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:4 #: plug-ins/script-fu/scripts/blended-logo.scm.h:3 @@ -743,7 +740,6 @@ msgstr "Подлога" #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:11 -#: plug-ins/script-fu/scripts/asc2img.scm.h:10 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:7 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:8 #: plug-ins/script-fu/scripts/beveled-button.scm.h:10 @@ -792,53 +788,6 @@ msgid "Width of gaps" msgstr "Ширина Пукотина" -#: plug-ins/script-fu/scripts/asc2img.scm.h:1 -#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 -#: plug-ins/script-fu/scripts/image-structure.scm.h:1 -#, fuzzy -msgid "/Script-Fu/Utils" -msgstr "/Скрипт-Фу/Услужни/_ASCII у слој..." - -#: plug-ins/script-fu/scripts/asc2img.scm.h:2 -#: plug-ins/script-fu/scripts/font-map.scm.h:1 -#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 -#, fuzzy -msgid "/Xtns/Script-Fu/Utils" -msgstr "/Проширења/Скрипт-Фу/Логотип/Неонка..." - -#: plug-ins/script-fu/scripts/asc2img.scm.h:5 -#, fuzzy, no-c-format -msgid "Buffer amount (% height of text)" -msgstr "Вриједност бафера (% Висине Текста)" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:6 -#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 -#, fuzzy -msgid "File name" -msgstr "Назив Датотеке" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:7 -#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 -msgid "Filename" -msgstr "Назив Датотеке" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:11 -#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 -#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 -#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 -#, fuzzy -msgid "Transparent background" -msgstr "Провидна Позадина" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:12 -msgid "_ASCII to Image..." -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:13 -#, fuzzy -msgid "_ASCII to Layer..." -msgstr "/Скрипт-Фу/Услужни/_ASCII у слој..." - #: plug-ins/script-fu/scripts/basic1-logo.scm.h:8 msgid "_Basic I..." msgstr "" @@ -894,6 +843,13 @@ msgid "Diameter" msgstr "Пречник" +#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 +#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 +#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 +#, fuzzy +msgid "Transparent background" +msgstr "Провидна Позадина" + #: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:4 msgid "H_eading..." msgstr "" @@ -1552,6 +1508,12 @@ msgid "_Flatland..." msgstr "" +#: plug-ins/script-fu/scripts/font-map.scm.h:1 +#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 +#, fuzzy +msgid "/Xtns/Script-Fu/Utils" +msgstr "/Проширења/Скрипт-Фу/Логотип/Неонка..." + #: plug-ins/script-fu/scripts/font-map.scm.h:2 #, fuzzy msgid "Active colors" @@ -1859,6 +1821,12 @@ msgid "_Remove all Guides" msgstr "" +#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 +#: plug-ins/script-fu/scripts/image-structure.scm.h:1 +#, fuzzy +msgid "/Script-Fu/Utils" +msgstr "/Скрипт-Фу/Услужни/_ASCII у слој..." + #: plug-ins/script-fu/scripts/hsv-graph.scm.h:2 #, fuzzy msgid "BG opacity" @@ -2280,6 +2248,11 @@ msgid "Brush name" msgstr "Име четке" +#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 +#, fuzzy +msgid "File name" +msgstr "Назив Датотеке" + #: plug-ins/script-fu/scripts/select-to-brush.scm.h:5 #, fuzzy msgid "To _Brush..." @@ -2289,6 +2262,10 @@ msgid "To _Image" msgstr "" +#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 +msgid "Filename" +msgstr "Назив Датотеке" + #: plug-ins/script-fu/scripts/select-to-pattern.scm.h:3 #, fuzzy msgid "Pattern name" @@ -2803,6 +2780,14 @@ msgid "_Xach-Effect..." msgstr "" +#, fuzzy +#~ msgid "Buffer amount (% height of text)" +#~ msgstr "Вриједност бафера (% Висине Текста)" + +#, fuzzy +#~ msgid "_ASCII to Layer..." +#~ msgstr "/Скрипт-Фу/Услужни/_ASCII у слој..." + #~ msgid "/Xtns/Script-Fu/_Refresh Scripts" #~ msgstr "/Проширења/Скрипт-Фу/_Освежи скрипте" diff -uraN gimp-2.2.0/po-script-fu/sv.gmo gimp-2.2.1/po-script-fu/sv.gmo --- gimp-2.2.0/po-script-fu/sv.gmo 2004-12-19 03:34:33.000000000 +0100 +++ gimp-2.2.1/po-script-fu/sv.gmo 2004-12-28 16:59:17.000000000 +0100 @@ -1,93 +1,90 @@ -  + +++ + ,,!,0,J,j,,,,,, --"-A- Z-{-#--!--3.8Q.9. . .... / -/%/ ->$>5> => I> V>b> v>> > > >> > >>> -??#?5?G? V?c?j? s?????????@@ @'@+@ -2@=@ M@ -Y@d@@@@@ @@ @AA A #A/AEA JA TA`AoAwAAAAAAAAB3BPBlBB6B9B= C GCUC qC{CCC CCCCD#D)D 9DFDMD]DmD DD DDDD DDDEE!E(EP?)QiQxQQQQQQQ -RR R 'R5RNRWR ^RhR&R RRRR RR SS S+S :S HS TSaSjSsSSSSS SSS T%T 4TATTTgT yTTTTT TTT U UU4U -;UFU%fU(U U U UUUU VV 4V>V -MV -XV -cVnV }VVV VVVVVV -VVVWW -W *W 6W DW?QW WWWWW WDW3X$:X -_XjX XXX XX XXXhX BYPYnY#YYY Y Y Y -Z - Z Z!8Z ZZ {ZZZZZZZZ [ -[$[ ,[9[V[ -\[ g[ q[{[ [ [ [ [[[[[[[ \\1\:\Z\i\\\\ -\\.\\\ ] ] - ] -+]6] -V]a]w]]] ]]] ^ -^^ ^ (^2^L^f^w^^^^ ^^ -^ ^ ^^ _ -_ _)!_ K_X_ i_u_ _ _____ ___ `"` *` 4` @`L```s`` ` ``````-` a 7aDa*Xa aaaaaaa -a a a bb (b2b7bNb_bpbbbb b -b bb b c $c2cBc Uc_cqcc%c -ccccc dd d*d -=dHdgdyddddd dd -ddd e -e e(e8eSeseee eeeee eff3f9f Hf Tfafifqffffffffg8gQglg5~g>gCg 7hEh`hih{hh'h&h hi %i3i9i HiTi[irii -i i i iii iij j(j.j7jMj `jlj jj jjjj j k -k kk0k7k Ik Wk ekqkk kk kkkk k ll$l ;lHl Ql_l ol"{lll -lllll l m;m?m CmOmcmxm!mm7m5 n?n3\nn -nn n nnnno oo#o+oHo\ouo }oo oo o oo o o oo pp2pIp [pippp pp ppp pq -q(q1q -:qEq[qmq |qqqq qqqq qr rr /r=r Rr^rdrsrrr -r rrc6Hh4W?ds>n" bf2,.(B-^y *gh /3P$izA` 0gx Mqb`kv81=7-? [@u'|zLkH@D: JBS*Nf5GcKZ. 8 - -LG)<A:CoT3m5&4]$Rw="xY~!+&VT1i uj9S}N^ePr  #|RvwUIJ{Q!F762 aopqrsDY~[I+dOMnElZtOmKE/\{>j%<eX%(Q# -,;X)}lWtFap'9_;0C]_y\V U%d Procedures%s:(none)/Script-Fu/1 Procedure3D _Outline...3_D Truchet.../Script-Fu/Alchemy/Script-Fu/Alpha to Logo/Script-Fu/Animators/Script-Fu/Decor/Script-Fu/Render/Script-Fu/Selection/Script-Fu/Shadow/Script-Fu/Stencil Ops/Script-Fu/Utils/Help/The GIMP Online/Xtns/Script-Fu/Xtns/Script-Fu/Buttons/Xtns/Script-Fu/Logos/Xtns/Script-Fu/Make Brush/Xtns/Script-Fu/Misc/Xtns/Script-Fu/Patterns/Xtns/Script-Fu/Utils/Xtns/Script-Fu/Web Page Themes/Alien Glow/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/Xtns/Script-Fu/Web Page Themes/Classic.Gimp.OrgActive colorsAdd B_evel...Add _Border...Add backgroundAdd drop-shadowAdd glowingAdd shadowAdditional InformationAfter glowAirbrushAlien _Glow...Alien _Neon...Allow resizingAmplitudeAngleAntialiasApply generated layermaskApply layer mask (or discard)Author:AutocropAzimuthBG opacityB_asic II...B_urn-In...B_utton...Background ColorBackground ImageBackground colorBackground imageBar heightBar lengthBase colorBehaviourBevel height (Sharpness)Bevel height (sharpness)Bevel widthBlackBlack on whiteBlen_ded...Blend gradient (Text)Blend gradient (outline)Blend gradient (text)Blend modeBlock sizeBlur XBlur YBlur amountBlur borderBlur horizontallyBlur radiusBlur typeBlur verticallyBo_vination...Border X sizeBorder Y sizeBorder colorBorder sizeBorder size (pixels)BrushBrush nameBuffer amount (% height of text)Bumpmap (alpha layer) blur radiusBurn-In: Need two layers in total!Burst colorC_arve-It...C_hrome-It...C_hrome...Carve raised textCarve white areasCarved...Cell size (pixels)Chalk colorChip Awa_y...Chip amountChrome balanceChrome factorChrome lightnessChrome saturationChrome white areasCircleCircuit seedClear unselected maskareaColorColor 1Color 2Color 3Color methodColumnsComic Boo_k...ConcaveCool _Metal...Copyright:Corona widthCreate new imageCreate shadowCreates four Guides around the bounding box of the current selection.Crystal...CubicCurrent CommandCustom GradientCustom _Gradient...Dark colorDarken only + +l + +++ + +++,,:,V,n,,,,,,- *-K-#j--!--3-8!.9Z. . .... . +.. + // ///>/ M/W/ ]/g///// +/ / / +/// 00 ++0 +60 +A0 L0V0o0 000 0000 +0 +111 1 *161 H1 T1^1n1 }1 1 1 111 +1!1"1 2 )2 62 +D2O2a2 s2}2 2 2 22 2222 3 3373=3E3M3 U3b3j3y33 +3 33 3E3 + 444.4>4 +R4<]44444 444 45 555`15 555555 66 !6 +6 +76B6[6u666 6666 6 67 77 +%707L7Q7 Z7 d7n7 }7 7 77 7 +7 777 +7 7 888 +'828E8V8 \8 +h8s8z88 8 +88 +8 88899*9B9 Z9f9}9 9 99999999 :: +': +2:=: A: N: +[:f: u: : :": :::: ;;;.;>;N; ];i;n; ;; ;; ;;;;; ; <<&<7<><G<L<g< <<'< +<< <<<==&=6=G=X=h====== ==== = = >> %>3> L> Y> c>o> w> >>> +>>>>> ??? "?/?8?J?\?m?~????? ??? +?? ? +@@.@K@e@w@ @@ @@@ @ @@@ @ AAA&A.A?AOAiAAAAAAAB4B6GB9~B=B BC C*C;CKC cCCCCCCC CCC DD /DsP?PPQQ.QBQ[QlQ~Q +QQ Q QQQQ QQ&R 6RCRWR^R pR}R RR RR R R RRRRS0S@SFS USaSzSSS SSSS TT&T7TFT YTeTyT T TTT +T%T(T U ,U 9UGUPUdU wUU UU +U +U +UU UUV VV.V4VeOeVe fepeeee e eeeeeef)f;fQfhfffff5f>gC\g gggggg'h&9h `hnh hhh hhhhh +i i !i +i9i>i Oi[iqiiiiii ii ii jj/jGj _j ijsj {jjjj j j jjj k k "k.kIk^k ck qk{kk kk kk k"kll +l)l;lClYl bl lll llll!lm7:m5rmm3mm +n n &n 3n@nFnUnin znnnnn nn nn n o o o %o /o;o KoXonoo oooo oo o pp 6pBp +Ypdpmp +vpppp pppp p +qq)q 0q=q NqXq kqyq qqqqqq +q qqb5Hg3V?cr=m! ae2+-'B,]x +)fg .2P#hyA_ 0fw Mpa_ju81<7~-> +Z?t'{yLjG@D9IAS*Me5FbKY. 7 KG(;@:BnS3l4%4\$Rv="w}!*~&VT0h  ti9R|N]dOq #{QuvTIJzP F661`nopqrCX}ZH+cOLmDkYsNlJE/[z>i$<dW%(Q" +,:X)|kWsE`o&8^;/C\^x[UU%d Procedures%s:(none)/Script-Fu/1 Procedure3D _Outline...3_D Truchet.../Script-Fu/Alchemy/Script-Fu/Alpha to Logo/Script-Fu/Animators/Script-Fu/Decor/Script-Fu/Render/Script-Fu/Selection/Script-Fu/Shadow/Script-Fu/Stencil Ops/Script-Fu/Utils/Help/The GIMP Online/Xtns/Script-Fu/Xtns/Script-Fu/Buttons/Xtns/Script-Fu/Logos/Xtns/Script-Fu/Make Brush/Xtns/Script-Fu/Misc/Xtns/Script-Fu/Patterns/Xtns/Script-Fu/Utils/Xtns/Script-Fu/Web Page Themes/Alien Glow/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/Xtns/Script-Fu/Web Page Themes/Classic.Gimp.OrgActive colorsAdd B_evel...Add _Border...Add backgroundAdd drop-shadowAdd glowingAdd shadowAdditional InformationAfter glowAirbrushAlien _Glow...Alien _Neon...Allow resizingAmplitudeAngleAntialiasApply generated layermaskApply layer mask (or discard)Author:AutocropAzimuthBG opacityB_asic II...B_urn-In...B_utton...Background ColorBackground ImageBackground colorBackground imageBar heightBar lengthBase colorBehaviourBevel height (Sharpness)Bevel height (sharpness)Bevel widthBlackBlack on whiteBlen_ded...Blend gradient (Text)Blend gradient (outline)Blend gradient (text)Blend modeBlock sizeBlur XBlur YBlur amountBlur borderBlur horizontallyBlur radiusBlur typeBlur verticallyBo_vination...Border X sizeBorder Y sizeBorder colorBorder sizeBorder size (pixels)BrushBrush nameBumpmap (alpha layer) blur radiusBurn-In: Need two layers in total!Burst colorC_arve-It...C_hrome-It...C_hrome...Carve raised textCarve white areasCarved...Cell size (pixels)Chalk colorChip Awa_y...Chip amountChrome balanceChrome factorChrome lightnessChrome saturationChrome white areasCircleCircuit seedClear unselected maskareaColorColor 1Color 2Color 3Color methodColumnsComic Boo_k...ConcaveCool _Metal...Copyright:Corona widthCreate new imageCreate shadowCreates four Guides around the bounding box of the current selection.Crystal...CubicCurrent CommandCustom GradientCustom _Gradient...Dark colorDarken only (Better, but only for images with alot of white)Date:Default bumpmap settingsDefocusDelta value on colorDensity (%)DepthDetail in MiddleDetail levelDiameterDirectionDownDraw _HSV Graph...Draws Spirographs, Epitrochoids and Lissajous Curves. More info at http://netword.com/*spyrogimpDrop shadowDrop shadow X offsetDrop shadow Y offsetDrop shadow blur radiusDrop shadow colorDrop shadow opacityEdge amountEdge behaviourEdge onlyEdge radiusEdge widthEffect size (pixels * 3)Effect size (pixels * 30)Effect size (pixels * 4)Effect size (pixels * 5)Effect size (pixels)ElevationElli_ptical, Feathered...End XEnd YEnd blendEnding blendEnvironment mapEpitrochoidEraseErase/fillError while executing %s -%sEvenEven/oddFG-BG-HSVFG-BG-RGBFG-TransparentFade awayFade from %Fade to %FadeoutFadeout widthFeatheringFile nameFilenameFill BG with patternFill angleFill with BGFlatten imageFontFont _size (pixels)Font colorFont size (pixels)Foreground colorFrameFrame colorFrame sizeFramesFrom top-left to bottom-rightGIMP ExtensionGIMP Plug-InGlo_ssy...Glo_wing Hot...Glow colorGlow radiusGlow size (pixels * 4)GradientGradient Beve_l...Gradient reverseGradient: Loop SawtoothGradient: Loop TriangleGranularityGranularity (1 is Low)Granularity (1 is low)Graph scaleH_eading...HeightHexagonHexagonsHighlight X offsetHighlight Y offsetHighlight balanceHighlight colorHighlight opacityHit rateHole ratioHorizontalIIRImage Types:Image heightImage sizeImage to carveImage widthImigre-26...Index imageIndex to n colors (0 = remain RGB)Inner teethInsert layer namesIntermediate framesInternal GIMP procedureInterpolationInvertInvert directionKeep backgroundKeep bump layerKeep selectionLand heightLeftLighting (degrees)Line _Nova...LinearLissajousLoopedLower colorLower color (active)Lower-right colorMake new backgroundMargin (pixels)Mask opacityMask sizeMax. blur radiusMosaic tile typeMottleN_eon...NameNew Guide (by _Percent)...New Guides from _SelectionNew _Guide...Newsprint Text...No background (only for separate layer)No matchesNoneNot pressedNot pressed (active)NumberNumber of X tilesNumber of Y tilesNumber of bandsNumber of colorsNumber of framesNumber of linesNumber of times to whirlOctagonsOddOffset (pixels)Offset XOffset YOffset radiusOffsets (pixels * 2)Oilify mask sizeOpacityOrientationOuter borderOuter teethOutline blur radiusOutline colorOutline gradient reverseOutline sizePad colorPad opacityPaddingPadding XPadding YPadding around textPadding for transparent regionsParametersPatternPattern (outline)Pattern (overlay)Pattern (text)Pattern namePencilPentagonPixel amountPixelizePlug-in _RegistryPolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPosition (in %)Prepare for GIFPressedProcedure BrowserQuarter sizeRLERadiusRadius (%)Radius (pixels)Random seedRandomnessRe_ctangular, Feathered...Relative distance of horizonRelative length of shadowRemove backgroundRender _Map...Return ValuesRibbon spacingRibbon widthRightRippling strengthRoughnessRound ratioRounded R_ectangle...RowsRows/colsSIOD OutputSOTA Chrome...Scale XScale YScript ArgumentsScript ProgressScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Palette SelectionScript-Fu Server OptionsScript-Fu _ConsoleScript-Fu cannot process two scripts at the same time.Script-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSea depthSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSelect-by-color thresholdSeparate layerSepiaServer Logfile:Server Port:ShadowShadow X offsetShadow Y offsetShadow blur radiusShadow colorShadow darknessShadow depthShadow weight (%)ShapeSharpness (degrees)Shear lengthShow Image _Structure...Simple _Beveled Button...SizeSmearSmoothSmooth horizontallySmooth verticallySolid ColorSpace between layersSpacingSpeed (pixels/frame)Speed Text...Sphere colorSpots density XSpots density YSpreadSpyrographSquareSquaresSta_rscape...StainsStarb_urst...Start XStart YStart angleStart blendStarting blendSupersampleSwirl-_Tile...T_ruchet...T_ube Sub-Button Label...Temporary ProcedureTextText Circle...Text colorText color (active)Text gradient reverseText patternThicknessThread densityThread intensityThread lengthThreshold (bigger 1<-->255 smaller)TileTo _Brush...To _ImageTo _Pattern...ToolTransparent backgroundTriangleTub_e Sub-Sub-Button Label...Turn from left to rightTypeUpUpper colorUpper color (active)Upper-left colorUse current gradientUse font _name as textUse growing selectionUse pattern for outline instead of gradientUse pattern for text instead of gradientUse pattern overlayUse selection bounds instead of belowsVerticalWavelengthWeb Title Header...Whirl amountWhirl angleWidthWidth of bandsWidth of gapsWork on copyWrapX divisionsY divisionsYou are already running the "%s" script._ASCII to Image..._ASCII to Layer..._Arrow..._Basic I..._Big Header..._Blend..._Border (pixels)_Browse..._Bullet..._Camouflage..._Chalk..._Circuit..._Clothify..._Coffee Stain..._Color scheme_Developer Web Site_Distress Selection..._Drop-Shadow..._Elliptical..._Erase every other Row..._Fade Outline..._Filter (regexp)_Flatland..._Font Map..._Frosty..._Fuzzy Border..._General Tube Labels..._Grid..._Hrule..._Labels_Land..._Lava..._Main Web Site_Old Photo..._Particle Trace..._Perspective..._Predator..._Rectangular..._Refresh Scripts_Remove all Guides_Rippling..._Round Button..._Round Corners..._Search:_Slide..._Small Header..._Sphere..._Spinning Globe..._Spyrogimp..._Start Server..._Swirly..._Text_Textured..._Tileable Blur..._Tube Button Label..._Unsharp Mask..._Waves..._Weave..._Xach-Effect...Project-Id-Version: gimp-script-fu +%sEvenEven/oddFG-BG-HSVFG-BG-RGBFG-TransparentFade awayFade from %Fade to %FadeoutFadeout widthFeatheringFile nameFilenameFill BG with patternFill angleFill with BGFlatten imageFontFont _size (pixels)Font colorFont size (pixels)Foreground colorFrameFrame colorFrame sizeFramesFrom top-left to bottom-rightGIMP ExtensionGIMP Plug-InGlo_ssy...Glo_wing Hot...Glow colorGlow radiusGlow size (pixels * 4)GradientGradient Beve_l...Gradient reverseGradient: Loop SawtoothGradient: Loop TriangleGranularityGranularity (1 is Low)Granularity (1 is low)Graph scaleH_eading...HeightHexagonHexagonsHighlight X offsetHighlight Y offsetHighlight balanceHighlight colorHighlight opacityHit rateHole ratioHorizontalIIRImage Types:Image heightImage sizeImage to carveImage widthImigre-26...Index imageIndex to n colors (0 = remain RGB)Inner teethInsert layer namesIntermediate framesInternal GIMP procedureInterpolationInvertInvert directionKeep backgroundKeep bump layerKeep selectionLand heightLeftLighting (degrees)Line _Nova...LinearLissajousLoopedLower colorLower color (active)Lower-right colorMake new backgroundMargin (pixels)Mask opacityMask sizeMax. blur radiusMosaic tile typeMottleN_eon...NameNew Guide (by _Percent)...New Guides from _SelectionNew _Guide...Newsprint Text...No background (only for separate layer)No matchesNoneNot pressedNot pressed (active)NumberNumber of X tilesNumber of Y tilesNumber of bandsNumber of colorsNumber of framesNumber of linesNumber of times to whirlOctagonsOddOffset (pixels)Offset XOffset YOffset radiusOffsets (pixels * 2)Oilify mask sizeOpacityOrientationOuter borderOuter teethOutline blur radiusOutline colorOutline gradient reverseOutline sizePad colorPad opacityPaddingPadding XPadding YPadding around textPadding for transparent regionsParametersPatternPattern (outline)Pattern (overlay)Pattern (text)Pattern namePencilPentagonPixel amountPixelizePlug-in _RegistryPolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPosition (in %)Prepare for GIFPressedProcedure BrowserQuarter sizeRLERadiusRadius (%)Radius (pixels)Random seedRandomnessRe_ctangular, Feathered...Relative distance of horizonRelative length of shadowRemove backgroundRender _Map...Return ValuesRibbon spacingRibbon widthRightRippling strengthRoughnessRound ratioRounded R_ectangle...RowsRows/colsSIOD OutputSOTA Chrome...Scale XScale YScript ArgumentsScript ProgressScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Palette SelectionScript-Fu Server OptionsScript-Fu _ConsoleScript-Fu cannot process two scripts at the same time.Script-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSea depthSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSelect-by-color thresholdSeparate layerSepiaServer Logfile:Server Port:ShadowShadow X offsetShadow Y offsetShadow blur radiusShadow colorShadow darknessShadow depthShadow weight (%)ShapeSharpness (degrees)Shear lengthShow Image _Structure...Simple _Beveled Button...SizeSmearSmoothSmooth horizontallySmooth verticallySolid ColorSpace between layersSpacingSpeed (pixels/frame)Speed Text...Sphere colorSpots density XSpots density YSpreadSpyrographSquareSquaresSta_rscape...StainsStarb_urst...Start XStart YStart angleStart blendStarting blendSupersampleSwirl-_Tile...T_ruchet...T_ube Sub-Button Label...Temporary ProcedureTextText Circle...Text colorText color (active)Text gradient reverseText patternThicknessThread densityThread intensityThread lengthThreshold (bigger 1<-->255 smaller)TileTo _Brush...To _ImageTo _Pattern...ToolTransparent backgroundTriangleTub_e Sub-Sub-Button Label...Turn from left to rightTypeUpUpper colorUpper color (active)Upper-left colorUse current gradientUse font _name as textUse growing selectionUse pattern for outline instead of gradientUse pattern for text instead of gradientUse pattern overlayUse selection bounds instead of belowsVerticalWavelengthWeb Title Header...Whirl amountWhirl angleWidthWidth of bandsWidth of gapsWork on copyWrapX divisionsY divisionsYou are already running the "%s" script._Arrow..._Basic I..._Big Header..._Blend..._Border (pixels)_Browse..._Bullet..._Camouflage..._Chalk..._Circuit..._Clothify..._Coffee Stain..._Color scheme_Developer Web Site_Distress Selection..._Drop-Shadow..._Elliptical..._Erase every other Row..._Fade Outline..._Filter (regexp)_Flatland..._Font Map..._Frosty..._Fuzzy Border..._General Tube Labels..._Grid..._Hrule..._Labels_Land..._Lava..._Main Web Site_Old Photo..._Particle Trace..._Perspective..._Predator..._Rectangular..._Refresh Scripts_Remove all Guides_Rippling..._Round Button..._Round Corners..._Search:_Slide..._Small Header..._Sphere..._Spinning Globe..._Spyrogimp..._Start Server..._Swirly..._Text_Textured..._Tileable Blur..._Tube Button Label..._Unsharp Mask..._Waves..._Weave..._Xach-Effect...Project-Id-Version: gimp-script-fu Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:48+0100 +POT-Creation-Date: 2004-12-28 15:42+0100 PO-Revision-Date: 2004-11-23 14:20+0900 Last-Translator: Jan Morén Language-Team: Swedish MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit -%d procedurer%s:(inget)/Script-Fu/1 procedur3D _kontur...3_D Truchet.../Script-Fu/Alkemi/Script-Fu/Alfa till logotyp/Script-Fu/Animatörer/Script-Fu/Dekor/Script-Fu/Rendering/Script-Fu/Markering/Script-Fu/Skugga/Script-Fu/Stencilåtgärder/Script-Fu/Verktyg/Hjälp/GIMP på nätet/Utökningar/Script-Fu/Utökningar/Script-Fu/Knappar/Utökningar/Script-Fu/Logotyper/Utökningar/Script-Fu/Skapa pensel/Utökningar/Script-Fu/Diverse/Utökningar/Script-Fu/Mönster/Utökningar/Script-Fu/Verktyg/Utökningar/Script-Fu/Webbsideteman/Rymdglöd/Utökningar/Script-Fu/Webbsideteman/Avfasat mönster/Utökningar/Script-Fu/Webbsideteman/Klassisk.Gimp.orgAktiva färgerLägg till av_fasning...Lägg till _kant...Lägg till bakgrundLägg till kastad skuggaLägg till glödLägg till skuggaMer informationEfterglödAirbrushRymd_glöd...Rymd _neon...Tillåt storleksändringAmplitudVinkelAntialiasTillämpa genererad lagermaskTillämpa lagermask (eller kasta bort)Författare:Beskär automatisktAzimutBakgrundsopacitet_Basic II...In_bränning...K_napp...BakgrundsfärgBakgrundsbildBakgrundsfärgBakgrundsbildStapelhöjdStapellängdBasfärgBeteendeAvfasningshöjd (skärpa)Avfasningshöjd (skärpa)AvfasningsbreddSvartSvart på vittIn_tonad...Färgtoningsskala (text)Färgtoningsskala (kontur)Färgtoningsskala (text)IntoningslägeBlockstorlekUtsmetning i X-ledUtsmetning i Y-ledUtsmetningsmängdSmeta ut kantSmeta ut horisontelltUtsmetningsradieUtsmetningstypSmeta ut vertikaltKo_skinn...X-storlek för kantY-storlek för kantKantfärgKantstorlekKantstorlek (bildpunkter)PenselPenselnamnBuffertmängd (% höjd av text)Bumpmappsutsmetningsradie (alfalager)Inbränning: behöver totalt två lager!UtbrottsfärgSk_är ut..._Förkroma..._Krom...Skär ut höjd textSkär ut vita ytorUtskuren...Cellstorlek (bildpunkter)KritfärgHacka _bort...HackmängdKrombalansKromfaktorKromljusstyrkaKrommättnadKrom på vita ytorCirkelKretsfröTöm omarkerad maskytaFärgFärg 1Färg 2Färg 3FärgmetodKolumnerS_erietidning...KonkavKall _metall...Copyright:KoronabreddSkapa ny bildSkapa skuggaSkapar fyra guider runt gränsytan för det nurvarande urvalet.Kristall...KubiskAktuellt kommandoAnpassad färgskalaAnpassad _färgskala...Mörk färgGör endast mörkare +%d procedurer%s:(inget)/Script-Fu/1 procedur3D _kontur...3_D Truchet.../Script-Fu/Alkemi/Script-Fu/Alfa till logotyp/Script-Fu/Animatörer/Script-Fu/Dekor/Script-Fu/Rendering/Script-Fu/Markering/Script-Fu/Skugga/Script-Fu/Stencilåtgärder/Script-Fu/Verktyg/Hjälp/GIMP på nätet/Utökningar/Script-Fu/Utökningar/Script-Fu/Knappar/Utökningar/Script-Fu/Logotyper/Utökningar/Script-Fu/Skapa pensel/Utökningar/Script-Fu/Diverse/Utökningar/Script-Fu/Mönster/Utökningar/Script-Fu/Verktyg/Utökningar/Script-Fu/Webbsideteman/Rymdglöd/Utökningar/Script-Fu/Webbsideteman/Avfasat mönster/Utökningar/Script-Fu/Webbsideteman/Klassisk.Gimp.orgAktiva färgerLägg till av_fasning...Lägg till _kant...Lägg till bakgrundLägg till kastad skuggaLägg till glödLägg till skuggaMer informationEfterglödAirbrushRymd_glöd...Rymd _neon...Tillåt storleksändringAmplitudVinkelAntialiasTillämpa genererad lagermaskTillämpa lagermask (eller kasta bort)Författare:Beskär automatisktAzimutBakgrundsopacitet_Basic II...In_bränning...K_napp...BakgrundsfärgBakgrundsbildBakgrundsfärgBakgrundsbildStapelhöjdStapellängdBasfärgBeteendeAvfasningshöjd (skärpa)Avfasningshöjd (skärpa)AvfasningsbreddSvartSvart på vittIn_tonad...Färgtoningsskala (text)Färgtoningsskala (kontur)Färgtoningsskala (text)IntoningslägeBlockstorlekUtsmetning i X-ledUtsmetning i Y-ledUtsmetningsmängdSmeta ut kantSmeta ut horisontelltUtsmetningsradieUtsmetningstypSmeta ut vertikaltKo_skinn...X-storlek för kantY-storlek för kantKantfärgKantstorlekKantstorlek (bildpunkter)PenselPenselnamnBumpmappsutsmetningsradie (alfalager)Inbränning: behöver totalt två lager!UtbrottsfärgSk_är ut..._Förkroma..._Krom...Skär ut höjd textSkär ut vita ytorUtskuren...Cellstorlek (bildpunkter)KritfärgHacka _bort...HackmängdKrombalansKromfaktorKromljusstyrkaKrommättnadKrom på vita ytorCirkelKretsfröTöm omarkerad maskytaFärgFärg 1Färg 2Färg 3FärgmetodKolumnerS_erietidning...KonkavKall _metall...Copyright:KoronabreddSkapa ny bildSkapa skuggaSkapar fyra guider runt gränsytan för det nurvarande urvalet.Kristall...KubiskAktuellt kommandoAnpassad färgskalaAnpassad _färgskala...Mörk färgGör endast mörkare (bättre, men bara för bilder med mycket vitt)Datum:Standardinställningar för bumpmappAvfokuseraDeltavärde på färgDensitet (%)DjupDetalj i mittenDetaljnivåDiameterBeskrivningNedRita _HSV-graf...Ritar spirografer, epitrokoider och Lissajous-kurvor. Mer information på http://networld.com/*spyrogimpSkuggkastningX-avstånd för skuggkastningY-avstånd för skuggkastningUtsmetningsradie för skuggkastningSkuggkastningsfärgSkuggkastningsopacitetHörnmängdKantbeteendeEndast hörnHörnradieHörnbreddEffektstorlek (bildpunkter × 3)Effektstorlek (bildpunkter × 30)Effektstorlek (bildpunkter × 4)Effektstorlek (bildpunkter × 5)Effektstorlek (bildpunkter)HöjdElli_ptisk, fjädrad...X-slutY-slutAvsluta färgtoningAvslutar färgtoningMiljökartaEpitrokoidTa bortTa bort/FyllFel under körning av %s -%sJämnJämn/UddaFG-BG-HSVFG-BG-RGBFG-TransparentTyna bortTyna från %Tyna till %UtfasningUtfasningsbreddFjäderFilnamnFilnamnFyll bakgrund med mönsterFyllningsvinkelFyll med bakgrundPlatta till bildenTypsnittTypsnitts_storlek (bildpunkter)TypsnittsfärgTypsnittsstorlek (bildpunkter)FörgrundsfärgRamRamfärgRamstorlekRamarFrån övre vänsterkant till nedre högerkantGIMP utökningGIMP insticksmodulGl_ansig...Gl_ödhet...GlödfärgGlödradieGlödstorlek (bildpunkter × 4)FärgskalaFärgskale_fasning...Reversera färgskalaGradient: repetera sågtandGradient: repetera triangelGranularitetGranularitet (1 är låg)Granularitet (1 är låg)GrafskalaR_ubrik...HöjdHexagonHexagonerX-avstånd för markeringY-avstånd för markeringMarkeringsbalansMarkeringsfärgMarkeringsopacitetMängd träffarHålförhållandeHorisontellIIRBildtyper:BildhöjdBildstorlekBild att skära utBildbreddImigre-26...IndexbildIndexera till n färger (0 = behåll RGB)Inre tänderInfoga lagernamnMellanramarIntern GIMP-procedurInterpolationInverteraInvertera riktningBehåll bakgrundBehåll bumplagerBehåll markeringLandhöjdVänsterLjussättning (grader)Linje_nova...LinjärLissajousEvig slingaNedre färgNedre färg (aktiv)Nedre högra färgSkapa ny bakgrundMarginal (bildpunkter)MaskopacitetMaskstorlekMaximal utsmetningsradieMosaikbricktypFläckN_eon...Namn/Image/Guider/Ny guide (i _procent)...Nya guider from _urvalNy _guide...Dagstidningstext...Ingen bakgrund (endast för separat lager)Inga träffarIngenInte nedtrycktInte nedtryckt (aktiv)NummerAntal X-brickorAntal Y-brickorAntal bandAntal färgerAntal ramarAntal linjerAntal virvlelvarvOktagonerUddaAvstånd (bildpunkter)Avstånd i X-ledAvstånd i Y-ledAvståndsradieAvstånd (bildpunkter × 2)Storlek på oljningsmaskOpacitetOrienteringYttre kantYttre tänderUtsmetningsradie för konturKonturfärgReversera konturgradientKonturstorlekUtfyllnadsfärgUtfyllnadsopacitetUtfyllnadUtfyllnad i X-ledUtfyllnad i Y-ledUtfyllnad runt textUtfyllnad för genomskinliga områdenParametrarMönsterMönster (kontur)Mönster (överlagring)Mönster (text)MönsternamnPennaFemhörningMängd bildpunkterPixelisera_Register för insticksmodulerPolygon: 10 sidorPolygon: 7 sidorPolygon: 8 sidorPolygon: 9 sidorPosition (i %)Förbered för GIFNedtrycktProcedurbläddrareKvartsstorRLERadieRadie (%)Radie (bildpunkter)SlumpfröSlumpmässighetRe_ktangulär, fjädrad...Relativt avstånd till horisontRelativ längd på skuggaTa bort bakgrundRendera _karta...ReturvärdenMellanrum mellan remsorBredd på remsorHögerKrusningsstyrkaSträvhetRundningsförhållandeRundad r_ektangel...RaderRader/KolumnerSIOD-utdataSOTA-krom...Skala XSkala YSkriptargumentSkriptförloppScript-Fu-penselväljareScript-Fu-färgväljareScript-Fu-konsollScript-Fu-filväljareScript-Fu-mappväljareScript-Fu-typsnittsväljareScript-Fu-färgskaleväljareScript-Fu-palettväljareScript-Fu-serveralternativScript-Fu-konsollScript-Fu kan inte köra två skript på samma gång.Script-Fu-konsolläget tillåter endast interaktiv användningScript-Fu-evalueringsläget tillåter endast interaktiv användningScript-Fu: %sScript-Fu-mönsterväljareHavsdjupSök efter _blurbSök efter _namnSöker - var vänlig väntaSöker efter blurb - var vänlig väntaSöker efter namn - var vänlig väntaSlumptalsfröTröskel för markera-med-färgSeparat lagerSepiaServerloggfil:Serverport:SkuggaX-avstånd för skuggaY-avstånd för skuggaSkuggutsmetningsradieSkuggfärgSkuggmörkhetSkuggdjupSkuggvikt (%)FormSkärpa (grader)SkärlängdVisa bild_struktur...Enkel a_vfasad knapp...StorlekSmetaUtjämnaUtjämna horisontelltUtjämna vertikaltSolid färgMellanrum mellan lagerMellanrumHastighet (bildpunkter/ram)Snabbtext...Färg på sfärX-densitet för punkterY-densitet för punkterSpridningSpirografFyrkantFyrkanter_Stjärnlandskap...StänkStjärnutbrott...Start i X-ledStart i Y-ledStartvinkelStarta färgtoningStartar färgtoningÖversamplaVirvel_plattlägg...T_ruchet...T_ub underknappsetikett...Tillfällig procedurTextTextcirkel...TextfärgTextfärg (aktiv)Reversera textgradientTextmönsterTjocklekTråddensitetTrådintensitetTrådlängdTröskel (större 1<-->255 mindre)BrickaTill _pensel...Till _bildTill _mönster...VerktygGenomskinlig bakgrundTriangelTu_b under-underknappsetikett...Vänd från vänster till högerTypUppÖvre färgÖvre färg (aktiv)Övre vänstra färgAnvänd aktuell färgtoningAnvänd typsnitts_namnet som textAnvänd växande markeringAnvänd mönster för kontur istället för färgtoningAnvänd mönster för text istället för färgtoningAnvänd mönsteröverlagringAnvänd markeringsgränser istället för trösklarVertikalVåglängdTitelrubrik för nät...VirvelmängdVirvelvinkelBreddBredd på bandBredd på mellanrumArbeta på kopiaSlå runtX-delarY-delarDu kör redan skriptet "%s"._ASCII till bild..._ASCII till bildlager..._Pil..._Basic I..._Stor rubrik..._Intonad..._Kant (bildpunkter)_Bläddra..._Punkt..._Kamouflage..._Krita..._Krets..._Tyggör..._Kaffefläck...Färg_schema_Sajt för utvecklare_Matta ut markering..._Skuggkastning..._Elliptisk..._Ta bort varannan rad..._Blek kontur..._Filter (regexp)_Flatland..._Typsnittskarta..._Frostad..._Suddig kant..._Generella tubetiketter..._Rutnät..._Horisontell linjal..._Etiketter_Land..._Lava..._Huvugsajt_Gammalt fotografi..._Partikelspår..._Perspektiv..._Predator..._Rektangulär..._Uppdatera skript_Ta bort alla guider_Krusning..._Rund knapp..._Runda hörn..._Sök:_Bildspel..._Liten rubrik..._Sfär..._Roterande glob..._Spirogimp..._Aktivera servern..._Virvlig..._Text_Texturerad..._Brickutsmetning..._Tubtetikett..._Oskarp mask..._Vågor..._Väva..._Xach-effekt... \ No newline at end of file +%sJämnJämn/UddaFG-BG-HSVFG-BG-RGBFG-TransparentTyna bortTyna från %Tyna till %UtfasningUtfasningsbreddFjäderFilnamnFilnamnFyll bakgrund med mönsterFyllningsvinkelFyll med bakgrundPlatta till bildenTypsnittTypsnitts_storlek (bildpunkter)TypsnittsfärgTypsnittsstorlek (bildpunkter)FörgrundsfärgRamRamfärgRamstorlekRamarFrån övre vänsterkant till nedre högerkantGIMP utökningGIMP insticksmodulGl_ansig...Gl_ödhet...GlödfärgGlödradieGlödstorlek (bildpunkter × 4)FärgskalaFärgskale_fasning...Reversera färgskalaGradient: repetera sågtandGradient: repetera triangelGranularitetGranularitet (1 är låg)Granularitet (1 är låg)GrafskalaR_ubrik...HöjdHexagonHexagonerX-avstånd för markeringY-avstånd för markeringMarkeringsbalansMarkeringsfärgMarkeringsopacitetMängd träffarHålförhållandeHorisontellIIRBildtyper:BildhöjdBildstorlekBild att skära utBildbreddImigre-26...IndexbildIndexera till n färger (0 = behåll RGB)Inre tänderInfoga lagernamnMellanramarIntern GIMP-procedurInterpolationInverteraInvertera riktningBehåll bakgrundBehåll bumplagerBehåll markeringLandhöjdVänsterLjussättning (grader)Linje_nova...LinjärLissajousEvig slingaNedre färgNedre färg (aktiv)Nedre högra färgSkapa ny bakgrundMarginal (bildpunkter)MaskopacitetMaskstorlekMaximal utsmetningsradieMosaikbricktypFläckN_eon...Namn/Image/Guider/Ny guide (i _procent)...Nya guider from _urvalNy _guide...Dagstidningstext...Ingen bakgrund (endast för separat lager)Inga träffarIngenInte nedtrycktInte nedtryckt (aktiv)NummerAntal X-brickorAntal Y-brickorAntal bandAntal färgerAntal ramarAntal linjerAntal virvlelvarvOktagonerUddaAvstånd (bildpunkter)Avstånd i X-ledAvstånd i Y-ledAvståndsradieAvstånd (bildpunkter × 2)Storlek på oljningsmaskOpacitetOrienteringYttre kantYttre tänderUtsmetningsradie för konturKonturfärgReversera konturgradientKonturstorlekUtfyllnadsfärgUtfyllnadsopacitetUtfyllnadUtfyllnad i X-ledUtfyllnad i Y-ledUtfyllnad runt textUtfyllnad för genomskinliga områdenParametrarMönsterMönster (kontur)Mönster (överlagring)Mönster (text)MönsternamnPennaFemhörningMängd bildpunkterPixelisera_Register för insticksmodulerPolygon: 10 sidorPolygon: 7 sidorPolygon: 8 sidorPolygon: 9 sidorPosition (i %)Förbered för GIFNedtrycktProcedurbläddrareKvartsstorRLERadieRadie (%)Radie (bildpunkter)SlumpfröSlumpmässighetRe_ktangulär, fjädrad...Relativt avstånd till horisontRelativ längd på skuggaTa bort bakgrundRendera _karta...ReturvärdenMellanrum mellan remsorBredd på remsorHögerKrusningsstyrkaSträvhetRundningsförhållandeRundad r_ektangel...RaderRader/KolumnerSIOD-utdataSOTA-krom...Skala XSkala YSkriptargumentSkriptförloppScript-Fu-penselväljareScript-Fu-färgväljareScript-Fu-konsollScript-Fu-filväljareScript-Fu-mappväljareScript-Fu-typsnittsväljareScript-Fu-färgskaleväljareScript-Fu-palettväljareScript-Fu-serveralternativScript-Fu-konsollScript-Fu kan inte köra två skript på samma gång.Script-Fu-konsolläget tillåter endast interaktiv användningScript-Fu-evalueringsläget tillåter endast interaktiv användningScript-Fu: %sScript-Fu-mönsterväljareHavsdjupSök efter _blurbSök efter _namnSöker - var vänlig väntaSöker efter blurb - var vänlig väntaSöker efter namn - var vänlig väntaSlumptalsfröTröskel för markera-med-färgSeparat lagerSepiaServerloggfil:Serverport:SkuggaX-avstånd för skuggaY-avstånd för skuggaSkuggutsmetningsradieSkuggfärgSkuggmörkhetSkuggdjupSkuggvikt (%)FormSkärpa (grader)SkärlängdVisa bild_struktur...Enkel a_vfasad knapp...StorlekSmetaUtjämnaUtjämna horisontelltUtjämna vertikaltSolid färgMellanrum mellan lagerMellanrumHastighet (bildpunkter/ram)Snabbtext...Färg på sfärX-densitet för punkterY-densitet för punkterSpridningSpirografFyrkantFyrkanter_Stjärnlandskap...StänkStjärnutbrott...Start i X-ledStart i Y-ledStartvinkelStarta färgtoningStartar färgtoningÖversamplaVirvel_plattlägg...T_ruchet...T_ub underknappsetikett...Tillfällig procedurTextTextcirkel...TextfärgTextfärg (aktiv)Reversera textgradientTextmönsterTjocklekTråddensitetTrådintensitetTrådlängdTröskel (större 1<-->255 mindre)BrickaTill _pensel...Till _bildTill _mönster...VerktygGenomskinlig bakgrundTriangelTu_b under-underknappsetikett...Vänd från vänster till högerTypUppÖvre färgÖvre färg (aktiv)Övre vänstra färgAnvänd aktuell färgtoningAnvänd typsnitts_namnet som textAnvänd växande markeringAnvänd mönster för kontur istället för färgtoningAnvänd mönster för text istället för färgtoningAnvänd mönsteröverlagringAnvänd markeringsgränser istället för trösklarVertikalVåglängdTitelrubrik för nät...VirvelmängdVirvelvinkelBreddBredd på bandBredd på mellanrumArbeta på kopiaSlå runtX-delarY-delarDu kör redan skriptet "%s"._Pil..._Basic I..._Stor rubrik..._Intonad..._Kant (bildpunkter)_Bläddra..._Punkt..._Kamouflage..._Krita..._Krets..._Tyggör..._Kaffefläck...Färg_schema_Sajt för utvecklare_Matta ut markering..._Skuggkastning..._Elliptisk..._Ta bort varannan rad..._Blek kontur..._Filter (regexp)_Flatland..._Typsnittskarta..._Frostad..._Suddig kant..._Generella tubetiketter..._Rutnät..._Horisontell linjal..._Etiketter_Land..._Lava..._Huvugsajt_Gammalt fotografi..._Partikelspår..._Perspektiv..._Predator..._Rektangulär..._Uppdatera skript_Ta bort alla guider_Krusning..._Rund knapp..._Runda hörn..._Sök:_Bildspel..._Liten rubrik..._Sfär..._Roterande glob..._Spirogimp..._Aktivera servern..._Virvlig..._Text_Texturerad..._Brickutsmetning..._Tubtetikett..._Oskarp mask..._Vågor..._Väva..._Xach-effekt... \ No newline at end of file diff -uraN gimp-2.2.0/po-script-fu/sv.po gimp-2.2.1/po-script-fu/sv.po --- gimp-2.2.0/po-script-fu/sv.po 2004-12-19 03:34:31.000000000 +0100 +++ gimp-2.2.1/po-script-fu/sv.po 2004-12-28 16:59:14.000000000 +0100 @@ -4,13 +4,13 @@ # Jan Morén , 2003. # Tomas Ögren , 2001. # -# $Id: sv.po,v 1.77 2004/11/23 05:20:05 JanneM Exp $ +# $Id: sv.po,v 1.78 2004/12/19 02:37:27 neo Exp $ # msgid "" msgstr "" "Project-Id-Version: gimp-script-fu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:48+0100\n" +"POT-Creation-Date: 2004-12-28 15:42+0100\n" "PO-Revision-Date: 2004-11-23 14:20+0900\n" "Last-Translator: Jan Morén \n" "Language-Team: Swedish \n" @@ -320,7 +320,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:5 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:4 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:6 -#: plug-ins/script-fu/scripts/asc2img.scm.h:8 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:4 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:5 #: plug-ins/script-fu/scripts/beveled-button.scm.h:3 @@ -361,7 +360,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:6 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:5 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:7 -#: plug-ins/script-fu/scripts/asc2img.scm.h:9 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:5 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:6 #: plug-ins/script-fu/scripts/beveled-button.scm.h:4 @@ -489,7 +487,6 @@ #: plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:2 #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:3 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:4 -#: plug-ins/script-fu/scripts/asc2img.scm.h:3 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:3 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:4 #: plug-ins/script-fu/scripts/blended-logo.scm.h:3 @@ -702,7 +699,6 @@ msgstr "Utfyllnad" #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:11 -#: plug-ins/script-fu/scripts/asc2img.scm.h:10 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:7 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:8 #: plug-ins/script-fu/scripts/beveled-button.scm.h:10 @@ -745,48 +741,6 @@ msgid "Width of gaps" msgstr "Bredd på mellanrum" -#: plug-ins/script-fu/scripts/asc2img.scm.h:1 -#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 -#: plug-ins/script-fu/scripts/image-structure.scm.h:1 -msgid "/Script-Fu/Utils" -msgstr "/Script-Fu/Verktyg" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:2 -#: plug-ins/script-fu/scripts/font-map.scm.h:1 -#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 -msgid "/Xtns/Script-Fu/Utils" -msgstr "/Utökningar/Script-Fu/Verktyg" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:5 -#, no-c-format -msgid "Buffer amount (% height of text)" -msgstr "Buffertmängd (% höjd av text)" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:6 -#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 -msgid "File name" -msgstr "Filnamn" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:7 -#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 -msgid "Filename" -msgstr "Filnamn" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:11 -#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 -#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 -#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 -msgid "Transparent background" -msgstr "Genomskinlig bakgrund" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:12 -msgid "_ASCII to Image..." -msgstr "_ASCII till bild..." - -#: plug-ins/script-fu/scripts/asc2img.scm.h:13 -msgid "_ASCII to Layer..." -msgstr "_ASCII till bildlager..." - #: plug-ins/script-fu/scripts/basic1-logo.scm.h:8 msgid "_Basic I..." msgstr "_Basic I..." @@ -836,6 +790,12 @@ msgid "Diameter" msgstr "Diameter" +#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 +#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 +#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 +msgid "Transparent background" +msgstr "Genomskinlig bakgrund" + #: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:4 msgid "H_eading..." msgstr "R_ubrik..." @@ -1428,6 +1388,11 @@ msgid "_Flatland..." msgstr "_Flatland..." +#: plug-ins/script-fu/scripts/font-map.scm.h:1 +#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 +msgid "/Xtns/Script-Fu/Utils" +msgstr "/Utökningar/Script-Fu/Verktyg" + #: plug-ins/script-fu/scripts/font-map.scm.h:2 msgid "Active colors" msgstr "Aktiva färger" @@ -1695,6 +1660,11 @@ msgid "_Remove all Guides" msgstr "_Ta bort alla guider" +#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 +#: plug-ins/script-fu/scripts/image-structure.scm.h:1 +msgid "/Script-Fu/Utils" +msgstr "/Script-Fu/Verktyg" + #: plug-ins/script-fu/scripts/hsv-graph.scm.h:2 msgid "BG opacity" msgstr "Bakgrundsopacitet" @@ -2068,6 +2038,10 @@ msgid "Brush name" msgstr "Penselnamn" +#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 +msgid "File name" +msgstr "Filnamn" + #: plug-ins/script-fu/scripts/select-to-brush.scm.h:5 msgid "To _Brush..." msgstr "Till _pensel..." @@ -2076,6 +2050,10 @@ msgid "To _Image" msgstr "Till _bild" +#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 +msgid "Filename" +msgstr "Filnamn" + #: plug-ins/script-fu/scripts/select-to-pattern.scm.h:3 msgid "Pattern name" msgstr "Mönsternamn" @@ -2534,6 +2512,15 @@ msgid "_Xach-Effect..." msgstr "_Xach-effekt..." +#~ msgid "Buffer amount (% height of text)" +#~ msgstr "Buffertmängd (% höjd av text)" + +#~ msgid "_ASCII to Image..." +#~ msgstr "_ASCII till bild..." + +#~ msgid "_ASCII to Layer..." +#~ msgstr "_ASCII till bildlager..." + #~ msgid "Copy _Visible" #~ msgstr "Kopiera synligt" diff -uraN gimp-2.2.0/po-script-fu/tr.gmo gimp-2.2.1/po-script-fu/tr.gmo --- gimp-2.2.0/po-script-fu/tr.gmo 2004-12-19 03:34:33.000000000 +0100 +++ gimp-2.2.1/po-script-fu/tr.gmo 2004-12-28 16:59:17.000000000 +0100 @@ -38,7 +38,7 @@   Y*Wm8X9I ', ]r-)^`oT&v;[EARbsg<U.tMBCucSO@Jhal d\!iLq"4=Z+:/$(eP#Q5j%36Gf7nD>?K _1F Hkp2VN0%s:/Script-Fu/AmplitudeAngleAntialiasAuthor:AzimuthBackground ColorBackground ImageBehaviourBlur XBlur YColorColor 1Color 2Color 3ColumnsCopyright:Current CommandCustom GradientDate:DefocusDensity (%)DepthDetail in MiddleDiameterDownElevationEnd XEnd YEraseEvenFG-BG-HSVFG-BG-RGBFG-TransparentFadeoutFeatheringFilenameFill with BGFontFramesGradientGranularityGranularity (1 is Low)HeightHexagonsIIRImage Types:InvertInvert directionLeftLighting (degrees)LoopedMottleNumberOctagonsOddOffset (pixels)Offset XOffset YOffsets (pixels * 2)OpacityOrientationPaddingPadding XPadding YPatternPixelizePrepare for GIFPressedRLERadiusRadius (pixels)RandomnessRightRoughnessRowsSIOD OutputScale XScale YScript ArgumentsScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Server OptionsScript-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSeedSepiaServer Logfile:Server Port:ShadowSharpness (degrees)SizeSmoothSpacingSpeed (pixels/frame)Spots density XSpots density YSpreadSquaresStainsStart XStart YSupersampleTextThicknessTileUpWavelengthWidthProject-Id-Version: GIMP 1.3.5 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:48+0100 +POT-Creation-Date: 2004-12-28 15:42+0100 PO-Revision-Date: 2002-04-28 04:07+0200 Last-Translator: Ömer Fadıl USTA Language-Team: Turkish diff -uraN gimp-2.2.0/po-script-fu/tr.po gimp-2.2.1/po-script-fu/tr.po --- gimp-2.2.0/po-script-fu/tr.po 2004-12-19 03:34:31.000000000 +0100 +++ gimp-2.2.1/po-script-fu/tr.po 2004-12-28 16:59:15.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: GIMP 1.3.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:48+0100\n" +"POT-Creation-Date: 2004-12-28 15:42+0100\n" "PO-Revision-Date: 2002-04-28 04:07+0200\n" "Last-Translator: Ömer Fadıl USTA \n" "Language-Team: Turkish \n" @@ -331,7 +331,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:5 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:4 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:6 -#: plug-ins/script-fu/scripts/asc2img.scm.h:8 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:4 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:5 #: plug-ins/script-fu/scripts/beveled-button.scm.h:3 @@ -372,7 +371,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:6 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:5 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:7 -#: plug-ins/script-fu/scripts/asc2img.scm.h:9 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:5 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:6 #: plug-ins/script-fu/scripts/beveled-button.scm.h:4 @@ -506,7 +504,6 @@ #: plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:2 #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:3 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:4 -#: plug-ins/script-fu/scripts/asc2img.scm.h:3 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:3 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:4 #: plug-ins/script-fu/scripts/blended-logo.scm.h:3 @@ -744,7 +741,6 @@ msgstr "Tampon" #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:11 -#: plug-ins/script-fu/scripts/asc2img.scm.h:10 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:7 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:8 #: plug-ins/script-fu/scripts/beveled-button.scm.h:10 @@ -793,53 +789,6 @@ msgid "Width of gaps" msgstr "Boşlukların Genişliği" -#: plug-ins/script-fu/scripts/asc2img.scm.h:1 -#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 -#: plug-ins/script-fu/scripts/image-structure.scm.h:1 -#, fuzzy -msgid "/Script-Fu/Utils" -msgstr "/Script-Fu/Araçlar/ASCII'den Resim Katmanına..." - -#: plug-ins/script-fu/scripts/asc2img.scm.h:2 -#: plug-ins/script-fu/scripts/font-map.scm.h:1 -#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 -#, fuzzy -msgid "/Xtns/Script-Fu/Utils" -msgstr "/Xtns/Script-Fu/Logolar/Lamba..." - -#: plug-ins/script-fu/scripts/asc2img.scm.h:5 -#, fuzzy, no-c-format -msgid "Buffer amount (% height of text)" -msgstr "Önbellek Miktarı (Metin Yüksekliği Yüzdesi)" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:6 -#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 -#, fuzzy -msgid "File name" -msgstr "Dosya İsmi" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:7 -#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 -msgid "Filename" -msgstr "Dosya İsmi" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:11 -#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 -#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 -#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 -#, fuzzy -msgid "Transparent background" -msgstr "Şeffaf Arkaplan" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:12 -msgid "_ASCII to Image..." -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:13 -#, fuzzy -msgid "_ASCII to Layer..." -msgstr "/Script-Fu/Araçlar/ASCII'den Resim Katmanına..." - #: plug-ins/script-fu/scripts/basic1-logo.scm.h:8 msgid "_Basic I..." msgstr "" @@ -895,6 +844,13 @@ msgid "Diameter" msgstr "Çevre" +#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 +#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 +#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 +#, fuzzy +msgid "Transparent background" +msgstr "Şeffaf Arkaplan" + #: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:4 msgid "H_eading..." msgstr "" @@ -1553,6 +1509,12 @@ msgid "_Flatland..." msgstr "" +#: plug-ins/script-fu/scripts/font-map.scm.h:1 +#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 +#, fuzzy +msgid "/Xtns/Script-Fu/Utils" +msgstr "/Xtns/Script-Fu/Logolar/Lamba..." + #: plug-ins/script-fu/scripts/font-map.scm.h:2 #, fuzzy msgid "Active colors" @@ -1857,6 +1819,12 @@ msgid "_Remove all Guides" msgstr "" +#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 +#: plug-ins/script-fu/scripts/image-structure.scm.h:1 +#, fuzzy +msgid "/Script-Fu/Utils" +msgstr "/Script-Fu/Araçlar/ASCII'den Resim Katmanına..." + #: plug-ins/script-fu/scripts/hsv-graph.scm.h:2 #, fuzzy msgid "BG opacity" @@ -2279,6 +2247,11 @@ msgid "Brush name" msgstr "Fırça" +#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 +#, fuzzy +msgid "File name" +msgstr "Dosya İsmi" + #: plug-ins/script-fu/scripts/select-to-brush.scm.h:5 #, fuzzy msgid "To _Brush..." @@ -2288,6 +2261,10 @@ msgid "To _Image" msgstr "" +#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 +msgid "Filename" +msgstr "Dosya İsmi" + #: plug-ins/script-fu/scripts/select-to-pattern.scm.h:3 #, fuzzy msgid "Pattern name" @@ -2810,6 +2787,14 @@ msgstr "" #, fuzzy +#~ msgid "Buffer amount (% height of text)" +#~ msgstr "Önbellek Miktarı (Metin Yüksekliği Yüzdesi)" + +#, fuzzy +#~ msgid "_ASCII to Layer..." +#~ msgstr "/Script-Fu/Araçlar/ASCII'den Resim Katmanına..." + +#, fuzzy #~ msgid "/Xtns/Script-Fu/_Refresh Scripts" #~ msgstr "/Xtns/Script-Fu/Tazele..." diff -uraN gimp-2.2.0/po-script-fu/uk.gmo gimp-2.2.1/po-script-fu/uk.gmo --- gimp-2.2.0/po-script-fu/uk.gmo 2004-12-19 03:34:33.000000000 +0100 +++ gimp-2.2.1/po-script-fu/uk.gmo 2004-12-28 16:59:17.000000000 +0100 @@ -23,7 +23,7 @@ %s %sEvenFG-BG-HSVFG-BG-RGBFG-TransparentFadeoutFeatheringFilenameFill with BGFontFrameFramesGradientGradient: Loop SawtoothGradient: Loop TriangleGranularityGranularity (1 is Low)HeightHexagonHexagonsIIRImage Types:InvertInvert directionLeftLighting (degrees)LissajousLoopedMargin (pixels)MottleNo matchesNumberOctagonsOddOffset (pixels)Offset XOffset YOffsets (pixels * 2)OpacityOrientationPaddingPadding XPadding YPatternPencilPentagonPixelizePolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPrepare for GIFPressedRLERadiusRadius (pixels)RandomnessRightRoughnessRowsSIOD OutputScale XScale YScript ArgumentsScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Server OptionsScript-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSepiaServer Logfile:Server Port:ShadowShapeSharpness (degrees)SizeSmearSmoothSolid ColorSpacingSpeed (pixels/frame)Spots density XSpots density YSpreadSpyrographSquareSquaresStainsStart XStart YSupersampleTextThicknessTileToolTriangleTypeUpWavelengthWidthWrap_Border (pixels)_Filter (regexp)_Labels_Search:_TextProject-Id-Version: gimp-script-fu-2.0.0 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:48+0100 +POT-Creation-Date: 2004-12-28 15:42+0100 PO-Revision-Date: 2004-04-14 17:54+0200 Last-Translator: Maxim Dziumanenko Language-Team: Ukrainian diff -uraN gimp-2.2.0/po-script-fu/uk.po gimp-2.2.1/po-script-fu/uk.po --- gimp-2.2.0/po-script-fu/uk.po 2004-12-19 03:34:31.000000000 +0100 +++ gimp-2.2.1/po-script-fu/uk.po 2004-12-28 16:59:15.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: gimp-script-fu-2.0.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:48+0100\n" +"POT-Creation-Date: 2004-12-28 15:42+0100\n" "PO-Revision-Date: 2004-04-14 17:54+0200\n" "Last-Translator: Maxim Dziumanenko \n" "Language-Team: Ukrainian \n" @@ -326,7 +326,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:5 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:4 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:6 -#: plug-ins/script-fu/scripts/asc2img.scm.h:8 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:4 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:5 #: plug-ins/script-fu/scripts/beveled-button.scm.h:3 @@ -367,7 +366,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:6 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:5 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:7 -#: plug-ins/script-fu/scripts/asc2img.scm.h:9 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:5 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:6 #: plug-ins/script-fu/scripts/beveled-button.scm.h:4 @@ -501,7 +499,6 @@ #: plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:2 #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:3 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:4 -#: plug-ins/script-fu/scripts/asc2img.scm.h:3 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:3 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:4 #: plug-ins/script-fu/scripts/blended-logo.scm.h:3 @@ -736,7 +733,6 @@ msgstr "Заповнення" #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:11 -#: plug-ins/script-fu/scripts/asc2img.scm.h:10 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:7 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:8 #: plug-ins/script-fu/scripts/beveled-button.scm.h:10 @@ -785,53 +781,6 @@ msgid "Width of gaps" msgstr "Ширина зазору" -#: plug-ins/script-fu/scripts/asc2img.scm.h:1 -#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 -#: plug-ins/script-fu/scripts/image-structure.scm.h:1 -#, fuzzy -msgid "/Script-Fu/Utils" -msgstr "/Скрипт-Фу/Утиліти/_ASCII у шар зображення..." - -#: plug-ins/script-fu/scripts/asc2img.scm.h:2 -#: plug-ins/script-fu/scripts/font-map.scm.h:1 -#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 -#, fuzzy -msgid "/Xtns/Script-Fu/Utils" -msgstr "/Розш./Скрипт-Фу/Емблеми/_Неон..." - -#: plug-ins/script-fu/scripts/asc2img.scm.h:5 -#, fuzzy, no-c-format -msgid "Buffer amount (% height of text)" -msgstr "Розмір буферу (% висоти тексту)" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:6 -#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 -#, fuzzy -msgid "File name" -msgstr "Назва файлу" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:7 -#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 -msgid "Filename" -msgstr "Назва файлу" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:11 -#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 -#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 -#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 -#, fuzzy -msgid "Transparent background" -msgstr "Прозоре тло" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:12 -msgid "_ASCII to Image..." -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:13 -#, fuzzy -msgid "_ASCII to Layer..." -msgstr "/Скрипт-Фу/Утиліти/_ASCII у шар зображення..." - #: plug-ins/script-fu/scripts/basic1-logo.scm.h:8 msgid "_Basic I..." msgstr "" @@ -887,6 +836,13 @@ msgid "Diameter" msgstr "Діаметр" +#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 +#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 +#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 +#, fuzzy +msgid "Transparent background" +msgstr "Прозоре тло" + #: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:4 msgid "H_eading..." msgstr "" @@ -1545,6 +1501,12 @@ msgid "_Flatland..." msgstr "" +#: plug-ins/script-fu/scripts/font-map.scm.h:1 +#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 +#, fuzzy +msgid "/Xtns/Script-Fu/Utils" +msgstr "/Розш./Скрипт-Фу/Емблеми/_Неон..." + #: plug-ins/script-fu/scripts/font-map.scm.h:2 #, fuzzy msgid "Active colors" @@ -1851,6 +1813,12 @@ msgid "_Remove all Guides" msgstr "" +#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 +#: plug-ins/script-fu/scripts/image-structure.scm.h:1 +#, fuzzy +msgid "/Script-Fu/Utils" +msgstr "/Скрипт-Фу/Утиліти/_ASCII у шар зображення..." + #: plug-ins/script-fu/scripts/hsv-graph.scm.h:2 #, fuzzy msgid "BG opacity" @@ -2272,6 +2240,11 @@ msgid "Brush name" msgstr "Назва пензля" +#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 +#, fuzzy +msgid "File name" +msgstr "Назва файлу" + #: plug-ins/script-fu/scripts/select-to-brush.scm.h:5 #, fuzzy msgid "To _Brush..." @@ -2281,6 +2254,10 @@ msgid "To _Image" msgstr "" +#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 +msgid "Filename" +msgstr "Назва файлу" + #: plug-ins/script-fu/scripts/select-to-pattern.scm.h:3 #, fuzzy msgid "Pattern name" @@ -2795,6 +2772,14 @@ msgid "_Xach-Effect..." msgstr "" +#, fuzzy +#~ msgid "Buffer amount (% height of text)" +#~ msgstr "Розмір буферу (% висоти тексту)" + +#, fuzzy +#~ msgid "_ASCII to Layer..." +#~ msgstr "/Скрипт-Фу/Утиліти/_ASCII у шар зображення..." + #~ msgid "/Xtns/Script-Fu/_Refresh Scripts" #~ msgstr "/Розш./Скрипт-Фу/_Оновити сценарії" diff -uraN gimp-2.2.0/po-script-fu/vi.gmo gimp-2.2.1/po-script-fu/vi.gmo --- gimp-2.2.0/po-script-fu/vi.gmo 2004-12-19 03:34:33.000000000 +0100 +++ gimp-2.2.1/po-script-fu/vi.gmo 2004-12-28 16:59:17.000000000 +0100 @@ -41,7 +41,7 @@   bJ$g% `6?IaM KS=] (0O4BXA>7P[\@cf)/Q_RCF&d5N,.;HE"'8WV *ZGL!+U-12Y9< : eD#3T^%s:/Script-Fu/AmplitudeAngleAntialiasAuthor:AzimuthBackground ColorBackground ImageBehaviourColorColor 1Color 2Color 3ColumnsCopyright:Current CommandCustom GradientDate:Density (%)DiameterDownEraseEvenFG-BG-HSVFG-BG-RGBFG-TransparentFadeoutFilenameFill with BGFontFramesGradientGranularityHeightHexagonsIIRImage Types:InvertInvert directionLeftLoopedNo matchesNumberOctagonsOddOffset (pixels)Offset XOffset YOffsets (pixels * 2)OpacityOrientationPaddingPatternPixelizePrepare for GIFPressedRLERadiusRandomnessRightRowsSIOD OutputScale XScale YScript ArgumentsScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Server OptionsScript-Fu: %sScript-fu Pattern SelectionSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSepiaServer Logfile:Server Port:ShadowSharpness (degrees)SizeSmoothSpeed (pixels/frame)Spots density XSpots density YSquaresStainsStart XStart YSupersampleTextThicknessUpWavelengthWidth_Search:Project-Id-Version: Gimp-scriptfu for Gnome 2.x Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:48+0100 +POT-Creation-Date: 2004-12-28 15:42+0100 PO-Revision-Date: 2002-07-20 15:36+0700 Last-Translator: Trinh Minh Thanh Language-Team: Gnome-Vi Team diff -uraN gimp-2.2.0/po-script-fu/vi.po gimp-2.2.1/po-script-fu/vi.po --- gimp-2.2.0/po-script-fu/vi.po 2004-12-19 03:34:31.000000000 +0100 +++ gimp-2.2.1/po-script-fu/vi.po 2004-12-28 16:59:15.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: Gimp-scriptfu for Gnome 2.x\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:48+0100\n" +"POT-Creation-Date: 2004-12-28 15:42+0100\n" "PO-Revision-Date: 2002-07-20 15:36+0700\n" "Last-Translator: Trinh Minh Thanh \n" "Language-Team: Gnome-Vi Team \n" @@ -326,7 +326,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:5 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:4 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:6 -#: plug-ins/script-fu/scripts/asc2img.scm.h:8 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:4 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:5 #: plug-ins/script-fu/scripts/beveled-button.scm.h:3 @@ -367,7 +366,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:6 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:5 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:7 -#: plug-ins/script-fu/scripts/asc2img.scm.h:9 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:5 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:6 #: plug-ins/script-fu/scripts/beveled-button.scm.h:4 @@ -501,7 +499,6 @@ #: plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:2 #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:3 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:4 -#: plug-ins/script-fu/scripts/asc2img.scm.h:3 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:3 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:4 #: plug-ins/script-fu/scripts/blended-logo.scm.h:3 @@ -737,7 +734,6 @@ msgstr "Padding" #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:11 -#: plug-ins/script-fu/scripts/asc2img.scm.h:10 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:7 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:8 #: plug-ins/script-fu/scripts/beveled-button.scm.h:10 @@ -786,53 +782,6 @@ msgid "Width of gaps" msgstr "Độ rộng của Khe" -#: plug-ins/script-fu/scripts/asc2img.scm.h:1 -#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 -#: plug-ins/script-fu/scripts/image-structure.scm.h:1 -#, fuzzy -msgid "/Script-Fu/Utils" -msgstr "/Script-Fu/Tiện ích/ASCII cho Lớp Ảnh..." - -#: plug-ins/script-fu/scripts/asc2img.scm.h:2 -#: plug-ins/script-fu/scripts/font-map.scm.h:1 -#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 -#, fuzzy -msgid "/Xtns/Script-Fu/Utils" -msgstr "/Xtns/Script-Fu/Logos/Neon Lạ..." - -#: plug-ins/script-fu/scripts/asc2img.scm.h:5 -#, fuzzy, no-c-format -msgid "Buffer amount (% height of text)" -msgstr "Số lượng Buffer (% Chiều cao của Văn bản)" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:6 -#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 -#, fuzzy -msgid "File name" -msgstr "Tên Tập Tin" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:7 -#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 -msgid "Filename" -msgstr "Tên Tập Tin" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:11 -#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 -#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 -#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 -#, fuzzy -msgid "Transparent background" -msgstr "Nền Trong Suốt" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:12 -msgid "_ASCII to Image..." -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:13 -#, fuzzy -msgid "_ASCII to Layer..." -msgstr "/Script-Fu/Tiện ích/ASCII cho Lớp Ảnh..." - #: plug-ins/script-fu/scripts/basic1-logo.scm.h:8 msgid "_Basic I..." msgstr "" @@ -888,6 +837,13 @@ msgid "Diameter" msgstr "Đường kính" +#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 +#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 +#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 +#, fuzzy +msgid "Transparent background" +msgstr "Nền Trong Suốt" + #: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:4 msgid "H_eading..." msgstr "" @@ -1525,6 +1481,12 @@ msgid "_Flatland..." msgstr "" +#: plug-ins/script-fu/scripts/font-map.scm.h:1 +#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 +#, fuzzy +msgid "/Xtns/Script-Fu/Utils" +msgstr "/Xtns/Script-Fu/Logos/Neon Lạ..." + #: plug-ins/script-fu/scripts/font-map.scm.h:2 #, fuzzy msgid "Active colors" @@ -1821,6 +1783,12 @@ msgid "_Remove all Guides" msgstr "" +#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 +#: plug-ins/script-fu/scripts/image-structure.scm.h:1 +#, fuzzy +msgid "/Script-Fu/Utils" +msgstr "/Script-Fu/Tiện ích/ASCII cho Lớp Ảnh..." + #: plug-ins/script-fu/scripts/hsv-graph.scm.h:2 #, fuzzy msgid "BG opacity" @@ -2238,6 +2206,11 @@ msgid "Brush name" msgstr "Dùng Bút Vẽ" +#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 +#, fuzzy +msgid "File name" +msgstr "Tên Tập Tin" + #: plug-ins/script-fu/scripts/select-to-brush.scm.h:5 #, fuzzy msgid "To _Brush..." @@ -2247,6 +2220,10 @@ msgid "To _Image" msgstr "" +#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 +msgid "Filename" +msgstr "Tên Tập Tin" + #: plug-ins/script-fu/scripts/select-to-pattern.scm.h:3 #, fuzzy msgid "Pattern name" @@ -2753,6 +2730,14 @@ msgstr "" #, fuzzy +#~ msgid "Buffer amount (% height of text)" +#~ msgstr "Số lượng Buffer (% Chiều cao của Văn bản)" + +#, fuzzy +#~ msgid "_ASCII to Layer..." +#~ msgstr "/Script-Fu/Tiện ích/ASCII cho Lớp Ảnh..." + +#, fuzzy #~ msgid "/Xtns/Script-Fu/_Refresh Scripts" #~ msgstr "/Xtns/Script-Fu/Làm tươi lại" diff -uraN gimp-2.2.0/po-script-fu/yi.gmo gimp-2.2.1/po-script-fu/yi.gmo --- gimp-2.2.0/po-script-fu/yi.gmo 2004-12-19 03:34:33.000000000 +0100 +++ gimp-2.2.1/po-script-fu/yi.gmo 2004-12-28 16:59:17.000000000 +0100 @@ -7,7 +7,7 @@ *3     Author:ColorColumnsFilenameFontHeightLeftOrientationPaddingPatternRightRowsSizeSpacingTextWidthWrapProject-Id-Version: 1.0 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:48+0100 +POT-Creation-Date: 2004-12-28 15:42+0100 PO-Revision-Date: 2003-03-19 Last-Translator: Raphael Finkel Language-Team: Yiddish diff -uraN gimp-2.2.0/po-script-fu/yi.po gimp-2.2.1/po-script-fu/yi.po --- gimp-2.2.0/po-script-fu/yi.po 2004-12-19 03:34:31.000000000 +0100 +++ gimp-2.2.1/po-script-fu/yi.po 2004-12-28 16:59:15.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: 1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:48+0100\n" +"POT-Creation-Date: 2004-12-28 15:42+0100\n" "PO-Revision-Date: 2003-03-19\n" "Last-Translator: Raphael Finkel \n" "Language-Team: Yiddish \n" @@ -313,7 +313,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:5 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:4 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:6 -#: plug-ins/script-fu/scripts/asc2img.scm.h:8 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:4 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:5 #: plug-ins/script-fu/scripts/beveled-button.scm.h:3 @@ -354,7 +353,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:6 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:5 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:7 -#: plug-ins/script-fu/scripts/asc2img.scm.h:9 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:5 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:6 #: plug-ins/script-fu/scripts/beveled-button.scm.h:4 @@ -482,7 +480,6 @@ #: plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:2 #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:3 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:4 -#: plug-ins/script-fu/scripts/asc2img.scm.h:3 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:3 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:4 #: plug-ins/script-fu/scripts/blended-logo.scm.h:3 @@ -698,7 +695,6 @@ msgstr "לײדיק אָרט" #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:11 -#: plug-ins/script-fu/scripts/asc2img.scm.h:10 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:7 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:8 #: plug-ins/script-fu/scripts/beveled-button.scm.h:10 @@ -742,49 +738,6 @@ msgid "Width of gaps" msgstr "" -#: plug-ins/script-fu/scripts/asc2img.scm.h:1 -#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 -#: plug-ins/script-fu/scripts/image-structure.scm.h:1 -msgid "/Script-Fu/Utils" -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:2 -#: plug-ins/script-fu/scripts/font-map.scm.h:1 -#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 -msgid "/Xtns/Script-Fu/Utils" -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:5 -#, no-c-format -msgid "Buffer amount (% height of text)" -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:6 -#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 -#, fuzzy -msgid "File name" -msgstr "נאָמען פֿון טעקע" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:7 -#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 -msgid "Filename" -msgstr "נאָמען פֿון טעקע" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:11 -#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 -#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 -#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 -msgid "Transparent background" -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:12 -msgid "_ASCII to Image..." -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:13 -msgid "_ASCII to Layer..." -msgstr "" - #: plug-ins/script-fu/scripts/basic1-logo.scm.h:8 msgid "_Basic I..." msgstr "" @@ -834,6 +787,12 @@ msgid "Diameter" msgstr "" +#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 +#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 +#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 +msgid "Transparent background" +msgstr "" + #: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:4 msgid "H_eading..." msgstr "" @@ -1427,6 +1386,11 @@ msgid "_Flatland..." msgstr "" +#: plug-ins/script-fu/scripts/font-map.scm.h:1 +#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 +msgid "/Xtns/Script-Fu/Utils" +msgstr "" + #: plug-ins/script-fu/scripts/font-map.scm.h:2 #, fuzzy msgid "Active colors" @@ -1702,6 +1666,11 @@ msgid "_Remove all Guides" msgstr "" +#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 +#: plug-ins/script-fu/scripts/image-structure.scm.h:1 +msgid "/Script-Fu/Utils" +msgstr "" + #: plug-ins/script-fu/scripts/hsv-graph.scm.h:2 msgid "BG opacity" msgstr "" @@ -2080,6 +2049,11 @@ msgid "Brush name" msgstr "" +#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 +#, fuzzy +msgid "File name" +msgstr "נאָמען פֿון טעקע" + #: plug-ins/script-fu/scripts/select-to-brush.scm.h:5 msgid "To _Brush..." msgstr "" @@ -2088,6 +2062,10 @@ msgid "To _Image" msgstr "" +#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 +msgid "Filename" +msgstr "נאָמען פֿון טעקע" + #: plug-ins/script-fu/scripts/select-to-pattern.scm.h:3 #, fuzzy msgid "Pattern name" diff -uraN gimp-2.2.0/po-script-fu/zh_CN.gmo gimp-2.2.1/po-script-fu/zh_CN.gmo --- gimp-2.2.0/po-script-fu/zh_CN.gmo 2004-12-19 03:34:33.000000000 +0100 +++ gimp-2.2.1/po-script-fu/zh_CN.gmo 2004-12-28 16:59:17.000000000 +0100 @@ -1,50 +1,52 @@ -' ''' ' ''((*(J(f(~((((() )=)#\))!))3)8*9L* * **** -**** -++ (+2+ 8+B+\+z+++ -+ + -+++++ -+ -, -, ,%,>, W,c,i, x,,,, -, -,,, , ,- - #---=- L- Z- h- u--- --!- --- -. ..4.:.B.J. R._.g.v.~. -.. .E. -.///./ -B/<M///// // // /// 0010F0^0p0 00 0 0 -0000 1%1 :1D1^1d1 j1 t11 -1111 1 11 1 1 12 2 -2 "2,252 -J2 U2 b2p2u2 -2222 2 -2222 3 -3!3 -13 <3H3_3h3{333 333 3 4444&464 -?4 -J4U4 Y4 f4 -s4 ~4 4 444 444455 "5.535 F5T5[5 b5n555 5 55555556 )676'I6 -q6|6 6666666667(71757E7N7 W7e7z77 7 77 77 7 7 7 8 8 8%8 -98D8L8^8p8 888 8888888 99)919C9G9 -N9Y9 i9 -u999999 9: ::#: 5: ?:K:a: f: p:|:::::::: ;';@;];y;;6;9; <$< @<J<[<k< <<<<<<< ===,=<= O=\= l=y= ======== => > >->=>M>T>[> c>q> x>>> > >> > >>>?? -?"?6? L? Y?c?r? ?#?? ? ?????@#@;@@@ C@O@d@u@@@+@(@ A A -)A4A HA UAaAgA vA AA(AAA A AA -B -B -&B1B @B JB VBcB tBBBBBBBB C C -"C-C>CVC _CiCqCzCC CCC CCCC DD"D4D =DGD -XDcDvDD DDDD D DD kFxF~F F FFFF!FFG/GHGaGzG#GG$G$G*H$JH$oH$H7H=H;/I kIxII I I I IIIIJJ J 'J4JPJ nJ xJ JJJ J J J J J J J KKK,K AKNK UK bKpKKK K KKK K K K K L L &L4LDL TL aLnLL L&L LLL LM MM0M7M@MIM RM_McMtMxMMM M*M MM MNN )N?3N sN}NNN NN NNNNNNN OO 0O=O PO ZO gO tO OOOOOOPP&P/P8PKP^P eP$sPP PPP PP P PP QQ Q #Q-Q CQPQ `QmQtQ QQ QQ Q QQQ Q R R R .R ;RHRaRhR |RRRRRR R RR S S S 'S 1S>SESIS YS fS sS SSSSSSS SS S S T TT-T4T ;THT]TmT|T TTTTTT$T U&U=U MU nU{U UUUUU U UU U U UV VV$V -V:VMV `VmVtV{V VV V VVVVVVWWW$W3W BWOW VW `W jWtWWWWWWWWW XX X!X0X @XJXaXwX XX X X XX X X XXYY Y&Y/Y 8Y EYRYiYYYYYYY -Z$Z+RUe<"lCbsuG:ZY$K -S?).it2qfIb95x@=Xc8V\*9eG w- 8^IdzHqytNk&LD =}QOaBJT;  ~+F2+6x|']![H|_7Q0A(`{v,~#nNg" %jOM@s0oPWZhX*$7ka\Y# -6yuL/ij54rf:Sn'lEF;4 UE<r[1P)D3J3pWc,(} .mKgBM v>{&A]Cw1!^_` %V/Ro-dmhp?zT%d Procedures%s:(none)/Script-Fu/1 Procedure3D _Outline...3_D Truchet.../Script-Fu/Alchemy/Script-Fu/Alpha to Logo/Script-Fu/Animators/Script-Fu/Decor/Script-Fu/Render/Script-Fu/Selection/Script-Fu/Shadow/Script-Fu/Utils/Help/The GIMP Online/Xtns/Script-Fu/Xtns/Script-Fu/Buttons/Xtns/Script-Fu/Logos/Xtns/Script-Fu/Make Brush/Xtns/Script-Fu/Misc/Xtns/Script-Fu/Patterns/Xtns/Script-Fu/Utils/Xtns/Script-Fu/Web Page Themes/Alien Glow/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/Xtns/Script-Fu/Web Page Themes/Classic.Gimp.OrgActive colorsAdd B_evel...Add _Border...Add backgroundAdd drop-shadowAdd shadowAdditional InformationAirbrushAlien _Glow...Alien _Neon...Allow resizingAmplitudeAngleAntialiasApply generated layermaskApply layer mask (or discard)Author:AutocropAzimuthBG opacityB_asic II...B_utton...Background ColorBackground ImageBackground colorBackground imageBar heightBar lengthBase colorBehaviourBevel height (Sharpness)Bevel height (sharpness)Bevel widthBlackBlack on whiteBlen_ded...Blend gradient (Text)Blend gradient (outline)Blend gradient (text)Blend modeBlock sizeBlur XBlur YBlur amountBlur borderBlur horizontallyBlur radiusBlur typeBlur verticallyBo_vination...Border X sizeBorder Y sizeBorder colorBorder sizeBorder size (pixels)BrushBrush nameBumpmap (alpha layer) blur radiusBurst colorCarve raised textCell size (pixels)Chalk colorCircleCircuit seedClear unselected maskareaColorColor 1Color 2Color 3Color methodColumnsComic Boo_k...ConcaveCool _Metal...Copyright:Create new imageCreate shadowCreates four Guides around the bounding box of the current selection.Crystal...CubicCurrent CommandCustom GradientCustom _Gradient...Dark colorDarken only +wx' y''' ' '''''((6(O(k(((( ((#)8)!V)x)3)8)9* >* L*Z*i*x* +****** ** **+2+:+C+ +K+ V+ +c+n++++ ++ ++ ++ +++ ,,!, 0,<,R,k, +, +,,, , ,, , ,,, - - - --9-N- +T-!_- --- -- -----. +.....6. +E.P. a.Eo. +..... +.</B/H/a/i/ ~// // /// ////0(0 <0H0 W0 a0 +m0x00000 0011 "1 ,191 +?1J1f1k1 t1 ~11 1 1 11 1 +1 111 +2 2 2(2-2 +A2L2_2p2 v2 +2222 2 +22 +2 233 333D3\3 t333 3 333333 +3 +4 4 4 4 ++4 64 B4 N4Z4m4 444444 444 4 55 5&5;5M5 ]5 j5t5555555 55'6 +)646 96E6Z6a6s66666666667 7727C7 K7 W7c7 w77 7 7 77 7 77 +7788(8 78D8K8 T8a8j8|8888888888 +99 !9 +-989S9p999 99 999 9 9:: : (:4:<:D:U:e:::::::;1;J;6];9; ;; ;<<#< ;<\<|<<<<< <<<<< == $=1= 7=D=]=w=|==== === ===> >> >)> 0>>>F> N> Z>f> u> >>>>> +>>> ? ??*? ;?#I?m? r? ????????? ?@@-@B@Y@+o@(@@@ +@@ A AAA .A DTD eD oDyD E +FF F "F.F?FQF!mFFFFFF G#%GIG$gG$G*G$G$H$&H7KH=H;H H +II 2I ?I LI YIfImIIIII III J +J J!J4J EJ SJ ]J jJ tJ J J JJJJ JJ J JKK,K AK NK[KdK mK wK K K K K KKK K KLL L&)L PL]LpL LL LLLLLL LLLM +MM.M >M*KM vMM MMM M?M NN(N/N ?NIN PN]NdNkNoNNNNN NN N N N O O O9OSOlOOOOOOOOO O$P*P 1P?PQP cPqP xP PP PP P PP PP PPQ Q,Q AQKQ RQ _QlQsQ Q Q Q Q Q QQQQ RR4RMRTReR vR RR R R R R RRRR R R S SS&S9SLSSSZS aSnS S SSSSSS SSSST !T.TATWT^ToT$vTTTT T U U UU-U4UCU RU _UlU sU U UUUUU UUU UUV V V-V @V MVZVmVtV}VVVVVVV VV V V VWW*W^o)q-AJy"8z.XR +myD3Y)4[Biiw\f] Me; =[# 'Ll`zw||.n(2C}TvVt?u9{BkWbOHYs&/8:SUc$^Obr;IT/?0,~&MQh0 c-53q=UCdA+WZ`hrx>ZpN{FL!]lt%d Procedures%s:(none)/Script-Fu/1 Procedure3D _Outline...3_D Truchet.../Script-Fu/Alchemy/Script-Fu/Alpha to Logo/Script-Fu/Animators/Script-Fu/Decor/Script-Fu/Render/Script-Fu/Selection/Script-Fu/Shadow/Script-Fu/Utils/Help/The GIMP Online/Xtns/Script-Fu/Xtns/Script-Fu/Buttons/Xtns/Script-Fu/Logos/Xtns/Script-Fu/Make Brush/Xtns/Script-Fu/Misc/Xtns/Script-Fu/Patterns/Xtns/Script-Fu/Utils/Xtns/Script-Fu/Web Page Themes/Alien Glow/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/Xtns/Script-Fu/Web Page Themes/Classic.Gimp.OrgActive colorsAdd B_evel...Add _Border...Add backgroundAdd drop-shadowAdd shadowAdditional InformationAirbrushAlien _Glow...Alien _Neon...Allow resizingAmplitudeAngleAntialiasApply generated layermaskApply layer mask (or discard)Author:AutocropAzimuthBG opacityB_asic II...B_utton...Background ColorBackground ImageBackground colorBackground imageBar heightBar lengthBase colorBehaviourBevel height (Sharpness)Bevel height (sharpness)Bevel widthBlackBlack on whiteBlen_ded...Blend gradient (Text)Blend gradient (outline)Blend gradient (text)Blend modeBlock sizeBlur XBlur YBlur amountBlur borderBlur horizontallyBlur radiusBlur typeBlur verticallyBo_vination...Border X sizeBorder Y sizeBorder colorBorder sizeBorder size (pixels)BrushBrush nameBumpmap (alpha layer) blur radiusBurst colorCarve raised textCell size (pixels)Chalk colorCircleCircuit seedClear unselected maskareaColorColor 1Color 2Color 3Color methodColumnsComic Boo_k...ConcaveCool _Metal...Copyright:Create new imageCreate shadowCreates four Guides around the bounding box of the current selection.Crystal...CubicCurrent CommandCustom GradientCustom _Gradient...Dark colorDarken only (Better, but only for images with alot of white)Date:Default bumpmap settingsDefocusDelta value on colorDensity (%)DepthDetail levelDiameterDirectionDownDraw _HSV Graph...Drop shadowDrop shadow X offsetDrop shadow Y offsetDrop shadow blur radiusDrop shadow colorDrop shadow opacityEdge amountEdge behaviourEdge onlyEdge radiusEdge widthEffect size (pixels * 3)Effect size (pixels * 30)Effect size (pixels * 4)Effect size (pixels * 5)Effect size (pixels)ElevationElli_ptical, Feathered...End XEnd YEnd blendEnding blendEraseErase/fillError while executing %s -%sEvenEven/oddFG-BG-HSVFG-BG-RGBFG-TransparentFade awayFade from %Fade to %FadeoutFadeout widthFeatheringFile nameFilenameFill BG with patternFill angleFill with BGFlatten imageFontFont _size (pixels)Font colorFont size (pixels)Foreground colorFrameFrame colorFrame sizeFramesFrom top-left to bottom-rightGIMP ExtensionGIMP Plug-InGlo_ssy...Glo_wing Hot...Glow colorGlow radiusGlow size (pixels * 4)GradientGradient Beve_l...Gradient reverseGradient: Loop SawtoothGradient: Loop TriangleGranularityGranularity (1 is Low)Granularity (1 is low)Graph scaleH_eading...HeightHexagonHexagonsHighlight colorHit rateHole ratioHorizontalIIRImage Types:Image heightImage sizeImage widthIndex imageInner teethInsert layer namesInternal GIMP procedureInterpolationInvertInvert directionKeep backgroundKeep bump layerKeep selectionLand heightLeftLighting (degrees)Line _Nova...LinearLoopedLower colorLower color (active)Lower-right colorMargin (pixels)Mask opacityMask sizeMax. blur radiusMosaic tile typeMottleN_eon...NameNew Guide (by _Percent)...New Guides from _SelectionNew _Guide...Newsprint Text...No background (only for separate layer)No matchesNoneNot pressedNot pressed (active)NumberNumber of X tilesNumber of Y tilesNumber of bandsNumber of colorsNumber of framesNumber of linesNumber of times to whirlOctagonsOddOffset (pixels)Offset XOffset YOffset radiusOffsets (pixels * 2)Oilify mask sizeOpacityOrientationOuter teethOutline blur radiusOutline colorOutline gradient reverseOutline sizePad colorPad opacityPaddingPadding XPadding YPadding around textParametersPatternPattern (outline)Pattern (overlay)Pattern (text)Pattern namePencilPentagonPixel amountPixelizePlug-in _RegistryPolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPosition (in %)Prepare for GIFPressedProcedure BrowserRLERadiusRadius (%)Radius (pixels)Random seedRandomnessRe_ctangular, Feathered...Relative distance of horizonRelative length of shadowRemove backgroundRender _Map...Return ValuesRibbon spacingRibbon widthRightRippling strengthRoughnessRound ratioRounded R_ectangle...RowsRows/colsSIOD OutputScale XScale YScript ArgumentsScript ProgressScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Palette SelectionScript-Fu Server OptionsScript-Fu _ConsoleScript-Fu cannot process two scripts at the same time.Script-Fu console mode allows only interactive invocationScript-Fu: %sScript-fu Pattern SelectionSea depthSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSelect-by-color thresholdSeparate layerSepiaServer Logfile:Server Port:ShadowShadow X offsetShadow Y offsetShadow blur radiusShadow colorShadow darknessShadow depthShapeShear lengthShow Image _Structure...Simple _Beveled Button...SizeSmearSmoothSmooth horizontallySmooth verticallySolid ColorSpacingSpeed (pixels/frame)Sphere colorSpots density XSpots density YSpreadSquareSquaresSta_rscape...StainsStarb_urst...Start XStart YStart angleStart blendStarting blendSupersampleT_ruchet...T_ube Sub-Button Label...Temporary ProcedureTextText Circle...Text colorText color (active)Text gradient reverseText patternThicknessThread densityThread intensityThread lengthThreshold (bigger 1<-->255 smaller)TileTo _Brush...To _ImageTo _Pattern...ToolTransparent backgroundTriangleTub_e Sub-Sub-Button Label...Turn from left to rightTypeUpUpper colorUpper color (active)Upper-left colorUse current gradientUse font _name as textUse growing selectionUse pattern for outline instead of gradientUse pattern for text instead of gradientUse pattern overlayVerticalWavelengthWeb Title Header...Whirl amountWhirl angleWidthWidth of bandsWidth of gapsWork on copyWrapYou are already running the "%s" script._ASCII to Image..._ASCII to Layer..._Arrow..._Basic I..._Big Header..._Border (pixels)_Browse..._Bullet..._Camouflage..._Chalk..._Circuit..._Clothify..._Coffee Stain..._Color scheme_Developer Web Site_Distress Selection..._Drop-Shadow..._Elliptical..._Erase every other Row..._Fade Outline..._Filter (regexp)_Flatland..._Font Map..._Frosty..._Fuzzy Border..._General Tube Labels..._Grid..._Hrule..._Labels_Land..._Lava..._Main Web Site_Old Photo..._Particle Trace..._Perspective..._Predator..._Rectangular..._Refresh Scripts_Remove all Guides_Rippling..._Round Button..._Round Corners..._Search:_Slide..._Small Header..._Sphere..._Spinning Globe..._Start Server..._Text_Textured..._Tileable Blur..._Tube Button Label..._Unsharp Mask..._Waves..._Weave...Project-Id-Version: gimp-script-fu +%sEvenEven/oddFG-BG-HSVFG-BG-RGBFG-TransparentFade awayFade from %Fade to %FadeoutFadeout widthFeatheringFile nameFilenameFill BG with patternFill angleFill with BGFlatten imageFontFont _size (pixels)Font colorFont size (pixels)Foreground colorFrameFrame colorFrame sizeFramesFrom top-left to bottom-rightGIMP ExtensionGIMP Plug-InGlo_ssy...Glo_wing Hot...Glow colorGlow radiusGlow size (pixels * 4)GradientGradient Beve_l...Gradient reverseGradient: Loop SawtoothGradient: Loop TriangleGranularityGranularity (1 is Low)Granularity (1 is low)Graph scaleH_eading...HeightHexagonHexagonsHighlight colorHit rateHole ratioHorizontalIIRImage Types:Image heightImage sizeImage widthIndex imageInner teethInsert layer namesInternal GIMP procedureInterpolationInvertInvert directionKeep backgroundKeep bump layerKeep selectionLand heightLeftLighting (degrees)Line _Nova...LinearLoopedLower colorLower color (active)Lower-right colorMargin (pixels)Mask opacityMask sizeMax. blur radiusMosaic tile typeMottleN_eon...NameNew Guide (by _Percent)...New Guides from _SelectionNew _Guide...Newsprint Text...No background (only for separate layer)No matchesNoneNot pressedNot pressed (active)NumberNumber of X tilesNumber of Y tilesNumber of bandsNumber of colorsNumber of framesNumber of linesNumber of times to whirlOctagonsOddOffset (pixels)Offset XOffset YOffset radiusOffsets (pixels * 2)Oilify mask sizeOpacityOrientationOuter teethOutline blur radiusOutline colorOutline gradient reverseOutline sizePad colorPad opacityPaddingPadding XPadding YPadding around textParametersPatternPattern (outline)Pattern (overlay)Pattern (text)Pattern namePencilPentagonPixel amountPixelizePlug-in _RegistryPolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPosition (in %)Prepare for GIFPressedProcedure BrowserRLERadiusRadius (%)Radius (pixels)Random seedRandomnessRe_ctangular, Feathered...Relative distance of horizonRelative length of shadowRemove backgroundRender _Map...Return ValuesRibbon spacingRibbon widthRightRippling strengthRoughnessRound ratioRounded R_ectangle...RowsRows/colsSIOD OutputScale XScale YScript ArgumentsScript ProgressScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Palette SelectionScript-Fu Server OptionsScript-Fu _ConsoleScript-Fu cannot process two scripts at the same time.Script-Fu console mode allows only interactive invocationScript-Fu: %sScript-fu Pattern SelectionSea depthSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSelect-by-color thresholdSeparate layerSepiaServer Logfile:Server Port:ShadowShadow X offsetShadow Y offsetShadow blur radiusShadow colorShadow darknessShadow depthShapeShear lengthShow Image _Structure...Simple _Beveled Button...SizeSmearSmoothSmooth horizontallySmooth verticallySolid ColorSpacingSpeed (pixels/frame)Sphere colorSpots density XSpots density YSpreadSquareSquaresSta_rscape...StainsStarb_urst...Start XStart YStart angleStart blendStarting blendSupersampleT_ruchet...T_ube Sub-Button Label...Temporary ProcedureTextText Circle...Text colorText color (active)Text gradient reverseText patternThicknessThread densityThread intensityThread lengthThreshold (bigger 1<-->255 smaller)TileTo _Brush...To _ImageTo _Pattern...ToolTransparent backgroundTriangleTub_e Sub-Sub-Button Label...Turn from left to rightTypeUpUpper colorUpper color (active)Upper-left colorUse current gradientUse font _name as textUse growing selectionUse pattern for outline instead of gradientUse pattern for text instead of gradientUse pattern overlayVerticalWavelengthWeb Title Header...Whirl amountWhirl angleWidthWidth of bandsWidth of gapsWork on copyWrapYou are already running the "%s" script._Arrow..._Basic I..._Big Header..._Border (pixels)_Browse..._Bullet..._Camouflage..._Chalk..._Circuit..._Clothify..._Coffee Stain..._Color scheme_Developer Web Site_Distress Selection..._Drop-Shadow..._Elliptical..._Erase every other Row..._Fade Outline..._Filter (regexp)_Flatland..._Font Map..._Frosty..._Fuzzy Border..._General Tube Labels..._Grid..._Hrule..._Labels_Land..._Lava..._Main Web Site_Old Photo..._Particle Trace..._Perspective..._Predator..._Rectangular..._Refresh Scripts_Remove all Guides_Rippling..._Round Button..._Round Corners..._Search:_Slide..._Small Header..._Sphere..._Spinning Globe..._Start Server..._Text_Textured..._Tileable Blur..._Tube Button Label..._Unsharp Mask..._Waves..._Weave...Project-Id-Version: gimp-script-fu Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:48+0100 +POT-Creation-Date: 2004-12-28 15:42+0100 PO-Revision-Date: 2004-11-24 19:30+0800 Last-Translator: Yuheng Xie Language-Team: zh_CN @@ -55,4 +57,4 @@ %d 个过程%s:(无)/Script-Fu/1 个过程3D 轮廓(_O)...3D Truchet(_D).../Script-Fu/炼金术/Script-Fu/Alpha 到徽标/Script-Fu/动画/Script-Fu/装饰/Script-Fu/绘制/Script-Fu/选区/Script-Fu/阴影/Script-Fu/工具/帮助(H)/The GIMP 在线/扩展(X)/Script-Fu/扩展(X)/Script-Fu/按钮/扩展(X)/Script-Fu/徽标/扩展(X)/Script-Fu/制作画笔/扩展(X)/Script-Fu/杂项/扩展(X)/Script-Fu/图案/扩展(X)/Script-Fu/工具/扩展(X)/Script-Fu/网页主题/奇异炽光/扩展(X)/Script-Fu/网页主题/带斜面的图案/扩展(X)/Script-Fu/网页主题/Classic.Gimp.Org活动颜色添加斜面(_E)...添加边框(_B)...添加背景添加投影添加阴影附加信息喷枪奇异炽光(_G)...奇异霓虹灯(_N)...允许改变大小振幅角度边缘平滑应用生成的图层蒙板应用图层蒙板(或丢弃)作者:自动剪裁方位角背景不透明度基本 II(_A)...按钮(_U)...背景色背景图像背景色背景图像条高度条长度基本颜色表现斜面高度(锐度)斜面高度(锐度)斜面宽度黑色白底黑字混和(_D)...混和渐变(文字)混和渐变(轮廓)混和渐变(文字)混和模式方块大小模糊 X模糊 Y模糊量边缘模糊水平模糊模糊半径模糊类型垂直模糊奶牛(_V)...边框 X 大小边框 Y 大小边框颜色边缘大小边缘大小(像素)画笔画笔名字凹凸贴图(Alpha 图层)模糊半径爆发颜色雕刻凸起文字格点大小(像素)粉笔颜色圆电路种子清除未选中的蒙板区域颜色颜色 1颜色 2颜色 3着色方法列漫画书(_K)...凹冰凉金属(_M)...版权所有:创建新图像创建阴影沿当前选区的四边创建参考线。晶体...立方当前命令自定义渐变自定义渐变(_G)...深颜色仅进行加深 (好一些,但只对有许多白色的图像)日期:默认凹凸贴图设置模糊颜色变化量密度(%)深度细节等级直径方向下绘制 HSV 图线(_H)...投影投影 X 偏移投影 Y 偏移投影模糊半径投影颜色投影不透明度边缘量边缘表现只有边缘边缘半径边缘宽度效果大小(像素 * 3)效果大小(像素 * 30)效果大小(像素 * 4)效果大小(像素 * 5)效果大小(像素)仰角椭圆、羽化(_P)...终止 X终止 Y混和终止颜色混和终止颜色擦除擦除/填充执行以下命令时出错: %s -%s偶数偶数/奇数前景-背景-HSV前景-背景-RGB前景-透明淡出淡出从 %淡出到 %淡出淡出宽度羽化文件名文件名以图案填充背景填充角度以背景填充平整图像字体字体大小(像素)(_S)字体颜色字体大小(像素)前景色边框框架颜色框架大小帧数从左上方到右下方GIMP 扩展GIMP 插件光泽(_S)...炽热(_W)...炽光颜色炽光半径炽光大小(像素 * 4)渐变渐变斜面(_L)...反向渐变渐变:锯齿式循环渐变:三角式循环粒度粒度(1 为低)粒度(1 为低)图像缩放标题(_E)...高度六边形六边形高亮颜色击中率孔的比率水平IIR图像类型:图像高度图像大小图像宽度索引图像内齿插入图层名字内部 GIMP 过程插值反转反向保持背景保持凹凸图层保持选区地面高度左光照(角度)新星线(_N)...线性循环下方颜色下方颜色(活动)右下方颜色边空(像素)蒙板不透明度蒙板大小最大模糊半径马赛克瓦片类型斑迹霓虹灯(_E)...名字新建参考线(按百分比)(_P)...从选区新建参考线(_S)新建参考线(_G)...新闻印刷...没有背景(只对分离图层)没有匹配无未按下未按下(活动)数字X 方向块数Y 方向块数波带数量颜色数量帧数线的数量旋转次数八边形奇数位移(像素)位移 X位移 Y位移半径位移(像素 * 2)油画蒙板大小不透明度方向外齿轮廓模糊半径轮廓颜色反转轮廓渐变轮廓大小衬垫颜色衬垫不透明度衬距衬垫 X衬垫 Y文字衬垫宽度参数图案图案(轮廓)图案(覆盖)图案(文字)图案名字铅笔五边形像素量像素化插件注册(_R)多边形:10 边多边形:7 边多边形:8 边多边形:9 边位置(按百分比)为 GIF 作准备按下过程浏览器RLE半径半径(%)半径(像素)随机数种子随机度矩形、羽化(_C)...水平的相对距离阴影的相对长度去除背景绘制地图(_M)...返回值织条间距织条宽度右荡漾强度粗略度圆角比率圆角矩形(_E)...行行/列SIOD 输出缩放 X缩放 Y脚本参数脚本进度Script-Fu 画笔选择Script-Fu 颜色选择Script-Fu 控制台Script-Fu 文件选择Script-Fu 文件夹选择Script-Fu 字体选择Script-Fu 渐变选择Script-Fu 色板选择Script-Fu 服务器选项Script-Fu 控制台(_C)Script-Fu 无法同时处理两个脚本。Script-Fu 控制台模式仅允许交互式激活Script-Fu:%sScript-Fu 图案选择海洋深度按描述搜索(_B)按名字搜索(_N)正在搜索 - 请等待正在按描述搜索 - 请等待正在按名字搜索 - 请等待种子按颜色选择阈值分离图层褐色服务器日志文件:服务器端口:阴影阴影 X 偏移阴影 Y 偏移阴影模糊半径阴影颜色阴影颜色深度阴影凹陷深度形状切变长度显示图像结构(_S)...简单斜面按钮(_B)...大小涂抹平滑水平平滑垂直平滑纯色间距速度(像素/帧)球体颜色斑块密度 X斑块密度 Y延伸方形方块恒星景色(_R)...迹数恒星爆发(_U)...起始 X起始 Y起始角度混和起始颜色混和起始颜色超级采样Truchet(_R)...管状子按钮标签(_U)...临时过程文字文字环...文字颜色文字颜色(活动)反转文字渐变文字图案厚度线密度线亮度线长度阈值(更大 1<-->255 更小)平铺到画笔(_B)...到图像(_I)...到图案(_P)...工具透明背景三角形管状子子按钮标签(_E)...从左往右转类型上上方颜色上方颜色(活动)左上方颜色使用当前渐变使用字体名字作为文字(_N)使用增长的选区对轮廓使用图案而不是渐变对文字使用图案而不是渐变使用覆盖图案垂直波长网页题头...旋转量旋转角度宽度波带宽度间隙宽度在副本中操作环绕你已经正在运行“%s”脚本。ASCII 到图像(_A)...ASCII 到图层(_A)...箭头(_A)...基本 I(_B)...大标题(_B)...边缘(像素)(_B)浏览(_B)...列表符号(_B)...迷彩(_C)...粉笔(_C)...电路(_C)...布状效果(_C)...咖啡迹(_C)...颜色方案(_C)开发者网站(_D)花式选区(_D)...投影(_D)...椭圆(_E)...隔行擦除(_E)...轮廓淡出(_F)...过滤器(regexp)(_F)平面地图(_F)...字体表(_F)...霜冻(_F)...边缘模糊(_F)...普通管状标签(_G)...网格(_G)...水平分隔条(_H)...标记(_L)凹凸地图(_L)...熔岩(_L)...主网站(_M)老照片(_O)...粒子径迹(_P)...透视(_P)...掠夺者(_P)...矩形(_R)...刷新脚本(_R)删除所有参考线(_R)波纹(_R)...圆角按钮(_R)...圆角(_R)...搜索(_S):幻灯片(_S)...小标题(_S)...球体(_S)...旋转球(_S)...启动服务器(_S)...文字(_T)材质(_T)...可平铺模糊(_T)...管状按钮标签(_T)...虚光蒙板(_U)...波(_W)...编织(_W)... \ No newline at end of file +%s偶数偶数/奇数前景-背景-HSV前景-背景-RGB前景-透明淡出淡出从 %淡出到 %淡出淡出宽度羽化文件名文件名以图案填充背景填充角度以背景填充平整图像字体字体大小(像素)(_S)字体颜色字体大小(像素)前景色边框框架颜色框架大小帧数从左上方到右下方GIMP 扩展GIMP 插件光泽(_S)...炽热(_W)...炽光颜色炽光半径炽光大小(像素 * 4)渐变渐变斜面(_L)...反向渐变渐变:锯齿式循环渐变:三角式循环粒度粒度(1 为低)粒度(1 为低)图像缩放标题(_E)...高度六边形六边形高亮颜色击中率孔的比率水平IIR图像类型:图像高度图像大小图像宽度索引图像内齿插入图层名字内部 GIMP 过程插值反转反向保持背景保持凹凸图层保持选区地面高度左光照(角度)新星线(_N)...线性循环下方颜色下方颜色(活动)右下方颜色边空(像素)蒙板不透明度蒙板大小最大模糊半径马赛克瓦片类型斑迹霓虹灯(_E)...名字新建参考线(按百分比)(_P)...从选区新建参考线(_S)新建参考线(_G)...新闻印刷...没有背景(只对分离图层)没有匹配无未按下未按下(活动)数字X 方向块数Y 方向块数波带数量颜色数量帧数线的数量旋转次数八边形奇数位移(像素)位移 X位移 Y位移半径位移(像素 * 2)油画蒙板大小不透明度方向外齿轮廓模糊半径轮廓颜色反转轮廓渐变轮廓大小衬垫颜色衬垫不透明度衬距衬垫 X衬垫 Y文字衬垫宽度参数图案图案(轮廓)图案(覆盖)图案(文字)图案名字铅笔五边形像素量像素化插件注册(_R)多边形:10 边多边形:7 边多边形:8 边多边形:9 边位置(按百分比)为 GIF 作准备按下过程浏览器RLE半径半径(%)半径(像素)随机数种子随机度矩形、羽化(_C)...水平的相对距离阴影的相对长度去除背景绘制地图(_M)...返回值织条间距织条宽度右荡漾强度粗略度圆角比率圆角矩形(_E)...行行/列SIOD 输出缩放 X缩放 Y脚本参数脚本进度Script-Fu 画笔选择Script-Fu 颜色选择Script-Fu 控制台Script-Fu 文件选择Script-Fu 文件夹选择Script-Fu 字体选择Script-Fu 渐变选择Script-Fu 色板选择Script-Fu 服务器选项Script-Fu 控制台(_C)Script-Fu 无法同时处理两个脚本。Script-Fu 控制台模式仅允许交互式激活Script-Fu:%sScript-Fu 图案选择海洋深度按描述搜索(_B)按名字搜索(_N)正在搜索 - 请等待正在按描述搜索 - 请等待正在按名字搜索 - 请等待种子按颜色选择阈值分离图层褐色服务器日志文件:服务器端口:阴影阴影 X 偏移阴影 Y 偏移阴影模糊半径阴影颜色阴影颜色深度阴影凹陷深度形状切变长度显示图像结构(_S)...简单斜面按钮(_B)...大小涂抹平滑水平平滑垂直平滑纯色间距速度(像素/帧)球体颜色斑块密度 X斑块密度 Y延伸方形方块恒星景色(_R)...迹数恒星爆发(_U)...起始 X起始 Y起始角度混和起始颜色混和起始颜色超级采样Truchet(_R)...管状子按钮标签(_U)...临时过程文字文字环...文字颜色文字颜色(活动)反转文字渐变文字图案厚度线密度线亮度线长度阈值(更大 1<-->255 更小)平铺到画笔(_B)...到图像(_I)...到图案(_P)...工具透明背景三角形管状子子按钮标签(_E)...从左往右转类型上上方颜色上方颜色(活动)左上方颜色使用当前渐变使用字体名字作为文字(_N)使用增长的选区对轮廓使用图案而不是渐变对文字使用图案而不是渐变使用覆盖图案垂直波长网页题头...旋转量旋转角度宽度波带宽度间隙宽度在副本中操作环绕你已经正在运行“%s”脚本。箭头(_A)...基本 I(_B)...大标题(_B)...边缘(像素)(_B)浏览(_B)...列表符号(_B)...迷彩(_C)...粉笔(_C)...电路(_C)...布状效果(_C)...咖啡迹(_C)...颜色方案(_C)开发者网站(_D)花式选区(_D)...投影(_D)...椭圆(_E)...隔行擦除(_E)...轮廓淡出(_F)...过滤器(regexp)(_F)平面地图(_F)...字体表(_F)...霜冻(_F)...边缘模糊(_F)...普通管状标签(_G)...网格(_G)...水平分隔条(_H)...标记(_L)凹凸地图(_L)...熔岩(_L)...主网站(_M)老照片(_O)...粒子径迹(_P)...透视(_P)...掠夺者(_P)...矩形(_R)...刷新脚本(_R)删除所有参考线(_R)波纹(_R)...圆角按钮(_R)...圆角(_R)...搜索(_S):幻灯片(_S)...小标题(_S)...球体(_S)...旋转球(_S)...启动服务器(_S)...文字(_T)材质(_T)...可平铺模糊(_T)...管状按钮标签(_T)...虚光蒙板(_U)...波(_W)...编织(_W)... \ No newline at end of file diff -uraN gimp-2.2.0/po-script-fu/zh_CN.po gimp-2.2.1/po-script-fu/zh_CN.po --- gimp-2.2.0/po-script-fu/zh_CN.po 2004-12-19 03:34:32.000000000 +0100 +++ gimp-2.2.1/po-script-fu/zh_CN.po 2004-12-28 16:59:15.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: gimp-script-fu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:48+0100\n" +"POT-Creation-Date: 2004-12-28 15:42+0100\n" "PO-Revision-Date: 2004-11-24 19:30+0800\n" "Last-Translator: Yuheng Xie \n" "Language-Team: zh_CN \n" @@ -317,7 +317,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:5 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:4 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:6 -#: plug-ins/script-fu/scripts/asc2img.scm.h:8 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:4 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:5 #: plug-ins/script-fu/scripts/beveled-button.scm.h:3 @@ -358,7 +357,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:6 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:5 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:7 -#: plug-ins/script-fu/scripts/asc2img.scm.h:9 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:5 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:6 #: plug-ins/script-fu/scripts/beveled-button.scm.h:4 @@ -486,7 +484,6 @@ #: plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:2 #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:3 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:4 -#: plug-ins/script-fu/scripts/asc2img.scm.h:3 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:3 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:4 #: plug-ins/script-fu/scripts/blended-logo.scm.h:3 @@ -699,7 +696,6 @@ msgstr "衬距" #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:11 -#: plug-ins/script-fu/scripts/asc2img.scm.h:10 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:7 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:8 #: plug-ins/script-fu/scripts/beveled-button.scm.h:10 @@ -742,48 +738,6 @@ msgid "Width of gaps" msgstr "间隙宽度" -#: plug-ins/script-fu/scripts/asc2img.scm.h:1 -#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 -#: plug-ins/script-fu/scripts/image-structure.scm.h:1 -msgid "/Script-Fu/Utils" -msgstr "/Script-Fu/工具" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:2 -#: plug-ins/script-fu/scripts/font-map.scm.h:1 -#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 -msgid "/Xtns/Script-Fu/Utils" -msgstr "/扩展(X)/Script-Fu/工具" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:5 -#, fuzzy, no-c-format -msgid "Buffer amount (% height of text)" -msgstr "边空大小(文字高度的百分比)" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:6 -#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 -msgid "File name" -msgstr "文件名" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:7 -#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 -msgid "Filename" -msgstr "文件名" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:11 -#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 -#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 -#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 -msgid "Transparent background" -msgstr "透明背景" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:12 -msgid "_ASCII to Image..." -msgstr "ASCII 到图像(_A)..." - -#: plug-ins/script-fu/scripts/asc2img.scm.h:13 -msgid "_ASCII to Layer..." -msgstr "ASCII 到图层(_A)..." - #: plug-ins/script-fu/scripts/basic1-logo.scm.h:8 msgid "_Basic I..." msgstr "基本 I(_B)..." @@ -833,6 +787,12 @@ msgid "Diameter" msgstr "直径" +#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 +#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 +#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 +msgid "Transparent background" +msgstr "透明背景" + #: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:4 msgid "H_eading..." msgstr "标题(_E)..." @@ -1432,6 +1392,11 @@ msgid "_Flatland..." msgstr "平面地图(_F)..." +#: plug-ins/script-fu/scripts/font-map.scm.h:1 +#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 +msgid "/Xtns/Script-Fu/Utils" +msgstr "/扩展(X)/Script-Fu/工具" + #: plug-ins/script-fu/scripts/font-map.scm.h:2 msgid "Active colors" msgstr "活动颜色" @@ -1699,6 +1664,11 @@ msgid "_Remove all Guides" msgstr "删除所有参考线(_R)" +#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 +#: plug-ins/script-fu/scripts/image-structure.scm.h:1 +msgid "/Script-Fu/Utils" +msgstr "/Script-Fu/工具" + #: plug-ins/script-fu/scripts/hsv-graph.scm.h:2 msgid "BG opacity" msgstr "背景不透明度" @@ -2074,6 +2044,10 @@ msgid "Brush name" msgstr "画笔名字" +#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 +msgid "File name" +msgstr "文件名" + #: plug-ins/script-fu/scripts/select-to-brush.scm.h:5 msgid "To _Brush..." msgstr "到画笔(_B)..." @@ -2082,6 +2056,10 @@ msgid "To _Image" msgstr "到图像(_I)..." +#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 +msgid "Filename" +msgstr "文件名" + #: plug-ins/script-fu/scripts/select-to-pattern.scm.h:3 msgid "Pattern name" msgstr "图案名字" @@ -2543,6 +2521,16 @@ msgid "_Xach-Effect..." msgstr "" +#, fuzzy +#~ msgid "Buffer amount (% height of text)" +#~ msgstr "边空大小(文字高度的百分比)" + +#~ msgid "_ASCII to Image..." +#~ msgstr "ASCII 到图像(_A)..." + +#~ msgid "_ASCII to Layer..." +#~ msgstr "ASCII 到图层(_A)..." + #~ msgid "Copy _Visible" #~ msgstr "可见复制(_V)" diff -uraN gimp-2.2.0/po-script-fu/zh_TW.gmo gimp-2.2.1/po-script-fu/zh_TW.gmo --- gimp-2.2.0/po-script-fu/zh_TW.gmo 2004-12-19 03:34:33.000000000 +0100 +++ gimp-2.2.1/po-script-fu/zh_TW.gmo 2004-12-28 16:59:17.000000000 +0100 @@ -29,7 +29,7 @@ %s %sEvenEven/oddFG-BG-HSVFG-BG-RGBFG-TransparentFade awayFadeoutFeatheringFile nameFilenameFill BG with patternFill angleFill with BGFlatten imageFontFont _size (pixels)Font colorFont size (pixels)Foreground colorFrame colorFramesFrom top-left to bottom-rightGlow colorGlow radiusGlow size (pixels * 4)GradientGradient reverseGranularityGranularity (1 is Low)Granularity (1 is low)Graph scaleHeightHexagonHexagonsHighlight X offsetHighlight Y offsetHighlight colorHighlight opacityHit rateIIRImage Types:Image heightImage sizeImage to carveImage widthIndex imageIndex to n colors (0 = remain RGB)Insert layer namesIntermediate framesInvert directionKeep backgroundKeep selectionLand heightLeftLighting (degrees)LissajousLoopedLower colorLower color (active)Lower-right colorMake new backgroundMask opacityMask sizeMax. blur radiusMosaic tile typeMottleNo matchesNot pressedNot pressed (active)NumberNumber of X tilesNumber of Y tilesNumber of bandsNumber of colorsNumber of framesNumber of linesNumber of times to whirlOctagonsOddOffset (pixels)Offset XOffset YOffsets (pixels * 2)OpacityOrientationOutline blur radiusOutline colorOutline gradient reversePad colorPad opacityPaddingPadding XPadding YPadding around textPadding for transparent regionsPatternPattern (outline)Pattern (text)Pattern namePencilPentagonPixel amountPixelizePolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPrepare for GIFPressedQuarter sizeRLERadiusRadius (pixels)Random seedRandomnessRelative length of shadowRemove backgroundRibbon spacingRibbon widthRightRippling strengthRoughnessRound ratioRowsRows/colsSIOD OutputScale XScale YScript ArgumentsScript ProgressScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Palette SelectionScript-Fu Server OptionsScript-Fu _ConsoleScript-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSea depthSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSelect-by-color thresholdSeparate layerSepiaServer Logfile:Server Port:ShadowShadow X offsetShadow Y offsetShadow blur radiusShadow colorShadow darknessShadow depthShapeShear lengthSizeSmoothSolid ColorSpace between layersSpacingSphere colorSpots density XSpots density YSpyrographSquareSquaresStainsStart XStart YStart angleStart blendStarting blendSupersampleTextText colorText color (active)Text gradient reverseText patternThicknessThread densityThread lengthThreshold (bigger 1<-->255 smaller)TileToolTransparent backgroundTriangleTurn from left to rightTypeUpUpper colorUpper color (active)Upper-left colorUse current gradientUse font _name as textUse pattern for outline instead of gradientUse pattern for text instead of gradientUse selection bounds instead of belowsWavelengthWhirl angleWidthWidth of bandsWidth of gapsWork on copyWrapX divisionsY divisions_Border (pixels)_Color scheme_Filter (regexp)_Labels_Search:_Start Server..._TextProject-Id-Version: gimp-script-fu 2.1.6 Report-Msgid-Bugs-To: -POT-Creation-Date: 2004-12-18 01:48+0100 +POT-Creation-Date: 2004-12-28 15:42+0100 PO-Revision-Date: 2004-09-28 11:10+0800 Last-Translator: Abel Cheung Language-Team: Chinese (traditional) diff -uraN gimp-2.2.0/po-script-fu/zh_TW.po gimp-2.2.1/po-script-fu/zh_TW.po --- gimp-2.2.0/po-script-fu/zh_TW.po 2004-12-19 03:34:32.000000000 +0100 +++ gimp-2.2.1/po-script-fu/zh_TW.po 2004-12-28 16:59:15.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: gimp-script-fu 2.1.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-18 01:48+0100\n" +"POT-Creation-Date: 2004-12-28 15:42+0100\n" "PO-Revision-Date: 2004-09-28 11:10+0800\n" "Last-Translator: Abel Cheung \n" "Language-Team: Chinese (traditional) \n" @@ -321,7 +321,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:5 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:4 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:6 -#: plug-ins/script-fu/scripts/asc2img.scm.h:8 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:4 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:5 #: plug-ins/script-fu/scripts/beveled-button.scm.h:3 @@ -362,7 +361,6 @@ #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:6 #: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:5 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:7 -#: plug-ins/script-fu/scripts/asc2img.scm.h:9 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:5 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:6 #: plug-ins/script-fu/scripts/beveled-button.scm.h:4 @@ -491,7 +489,6 @@ #: plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:2 #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:3 #: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:4 -#: plug-ins/script-fu/scripts/asc2img.scm.h:3 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:3 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:4 #: plug-ins/script-fu/scripts/blended-logo.scm.h:3 @@ -711,7 +708,6 @@ msgstr "留邊" #: plug-ins/script-fu/scripts/alien-glow-button.scm.h:11 -#: plug-ins/script-fu/scripts/asc2img.scm.h:10 #: plug-ins/script-fu/scripts/basic1-logo.scm.h:7 #: plug-ins/script-fu/scripts/basic2-logo.scm.h:8 #: plug-ins/script-fu/scripts/beveled-button.scm.h:10 @@ -754,51 +750,6 @@ msgid "Width of gaps" msgstr "間隔寬度" -#: plug-ins/script-fu/scripts/asc2img.scm.h:1 -#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 -#: plug-ins/script-fu/scripts/image-structure.scm.h:1 -#, fuzzy -msgid "/Script-Fu/Utils" -msgstr "/Script-Fu/工具/_ASCII 轉為圖層..." - -#: plug-ins/script-fu/scripts/asc2img.scm.h:2 -#: plug-ins/script-fu/scripts/font-map.scm.h:1 -#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 -#, fuzzy -msgid "/Xtns/Script-Fu/Utils" -msgstr "/擴展/Script-Fu" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:5 -#, fuzzy, no-c-format -msgid "Buffer amount (% height of text)" -msgstr "緩衝區大小(文字高度的百分比)" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:6 -#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 -msgid "File name" -msgstr "檔案名稱" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:7 -#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 -msgid "Filename" -msgstr "檔案名稱" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:11 -#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 -#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 -#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 -msgid "Transparent background" -msgstr "透明背景" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:12 -msgid "_ASCII to Image..." -msgstr "" - -#: plug-ins/script-fu/scripts/asc2img.scm.h:13 -#, fuzzy -msgid "_ASCII to Layer..." -msgstr "/Script-Fu/工具/_ASCII 轉為圖層..." - #: plug-ins/script-fu/scripts/basic1-logo.scm.h:8 msgid "_Basic I..." msgstr "" @@ -851,6 +802,12 @@ msgid "Diameter" msgstr "直徑" +#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 +#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 +#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 +msgid "Transparent background" +msgstr "透明背景" + #: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:4 msgid "H_eading..." msgstr "" @@ -1456,6 +1413,12 @@ msgid "_Flatland..." msgstr "" +#: plug-ins/script-fu/scripts/font-map.scm.h:1 +#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 +#, fuzzy +msgid "/Xtns/Script-Fu/Utils" +msgstr "/擴展/Script-Fu" + #: plug-ins/script-fu/scripts/font-map.scm.h:2 msgid "Active colors" msgstr "文字顏色" @@ -1736,6 +1699,12 @@ msgid "_Remove all Guides" msgstr "" +#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 +#: plug-ins/script-fu/scripts/image-structure.scm.h:1 +#, fuzzy +msgid "/Script-Fu/Utils" +msgstr "/Script-Fu/工具/_ASCII 轉為圖層..." + #: plug-ins/script-fu/scripts/hsv-graph.scm.h:2 msgid "BG opacity" msgstr "背景透明度" @@ -2115,6 +2084,10 @@ msgid "Brush name" msgstr "筆刷名稱" +#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 +msgid "File name" +msgstr "檔案名稱" + #: plug-ins/script-fu/scripts/select-to-brush.scm.h:5 #, fuzzy msgid "To _Brush..." @@ -2124,6 +2097,10 @@ msgid "To _Image" msgstr "" +#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 +msgid "Filename" +msgstr "檔案名稱" + #: plug-ins/script-fu/scripts/select-to-pattern.scm.h:3 msgid "Pattern name" msgstr "圖樣名稱" @@ -2590,6 +2567,14 @@ msgid "_Xach-Effect..." msgstr "" +#, fuzzy +#~ msgid "Buffer amount (% height of text)" +#~ msgstr "緩衝區大小(文字高度的百分比)" + +#, fuzzy +#~ msgid "_ASCII to Layer..." +#~ msgstr "/Script-Fu/工具/_ASCII 轉為圖層..." + #~ msgid "/Xtns/Script-Fu/_Refresh Scripts" #~ msgstr "/擴展/Script-Fu/重新整理(_R)" diff -uraN gimp-2.2.0/tips/ChangeLog gimp-2.2.1/tips/ChangeLog --- gimp-2.2.0/tips/ChangeLog 2004-12-02 11:25:10.000000000 +0100 +++ gimp-2.2.1/tips/ChangeLog 2004-12-27 20:42:17.000000000 +0100 @@ -1,3 +1,7 @@ +2004-12-20 Jarkko Ranta + + * fi.po: Updated Finnish translation by Mikko Paananen. + 2004-12-02 Laszlo Dvornik * hu.po: Hungarian translation updated by Arpad Biro. diff -uraN gimp-2.2.0/tips/sv.po gimp-2.2.1/tips/sv.po --- gimp-2.2.0/tips/sv.po 2004-12-19 03:12:42.000000000 +0100 +++ gimp-2.2.1/tips/sv.po 2004-12-28 15:42:54.000000000 +0100 @@ -3,7 +3,7 @@ # Christian Rose , 2002, 2003. # Jan Morén , 2004. # -# $Id: sv.po,v 1.28 2004/11/20 00:26:55 neo Exp $ +# $Id: sv.po,v 1.29 2004/12/19 02:37:28 neo Exp $ # msgid "" msgstr ""